home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-11-19 | 46.3 KB | 1,470 lines |
- ;*************************************************************************
- ;** Locale constructor V40.21 ViNCEd prefs part **
- ;** **
- ;** This is a constructor/shell script for CreateCatalog. Please read **
- ;** the instructions below carefully. **
- ;*************************************************************************
- ;
- ; This file has two purposes:
- ;
- ; First it acts as a shell script that must be "execute"d to
- ; build the catalog with one command
- ; Second, it tells CreateCatalog how to build the
- ; catalog. Thus, this file gets a) executed by the shell
- ; and b) is parsed by CreateCatalog. This is possible due to
- ; the special syntax of CreateCatalog.
- ; All lines starting with a semicolon or a blank space are comments
- ; for CreateCatalog. Thus these lines and the lines that act as
- ; a shell script are ignored by the catalog builder: The former
- ; because they have the semicolon, the later because I added a
- ; blank space at the beginning.
- ;
- ; Shell script part of the catalog builder:
- ;
- ; no assembler is needed for this part. This time the complete job can
- ; be done by CreateCatalog, and the strings of the locale are in
- ; THIS file.
- ;
- ; The next line starts the catalog builder:
- ; The arguments are: This file (instructions how to build)
- ; the output file (will be put to RAM:)
- ; the language: Please change "deutsch" to
- ; your language, i.e. "italiano" or "français".
- ; and the version/revision of the catalog.
- ; Here version 40.21 (40 is internal for release 3)
-
- ;
- ;*************** Edit this line below *************************************
- vl:bin/CreateCatalog vl:prefs.construct ram:VNC.prefs.catalog svenska 40 21
- ; ^^^^^
- ; This string must be
- ; adjusted !
- copy ram:VNC.prefs.catalog locale:catalogs/svenska/vnc
- quit
- ;
- ; End of the shell script. quit is used to prevent the shell from parsing the
- ; lines below.
- ;
- ; Here we use another set of CreateCatalog commands.
- ; The '#' command sets the string counter to a specific value.
- ; There's no need to change these lines.
- ;
- ; The 'lines contain the actual strings that replace the english (default) strings
- ; The lines starting with a semicolon are again comments and ignored
- ; by the catalog builder. Thus you ONLY NEED TO EDIT the lines starting with
- ; the apostrophe '.
- ; Please note that unlike in the "sys" part of the localization, the
- ; reverse apostrophe ` IS NOT USED HERE!
- ;
- ; Please note that you MUST surround these strings with an additional pair
- ; of double quotes if you want to include leading/following blank spaces.
- ; The usual C style syntax is used for special charaters, like
- ; \r for carriage return \n for newline
- ; \t for TAB \b for backspace
- ; \\ for the backslash itself. It is the same syntax that is used in the
- ; ViNCEd macros, so propably read this section of the guide.
- ;
- ;
- ; Since this is taken from the german localization, I put the original
- ; english strings ON TOP of the german ones, plus some information
- ; when this string gets printed/displayed.
- ;
- ;***************************************************************************
- ;Strings of the startup-segment
- ;***************************************************************************
- #1
- ;unkown command. Printed if you pass an illegal argument to SetVNC
- 'okänt kommando.
-
- ;required subcommand missing Printed if a subcommand needs a sub argument that is missing.
- 'nödvändigt underkommando saknas.
-
- ;unknown subcommand Printed if the parser encountered a sub command (like the FROM to LOAD or the TO for SAVE) that it does not understand
- 'okänt underkommando.
-
- ;required argument missing Printing if a command takes an argument that is not present
- 'nödvändigt argument saknas.
-
- ;boolean value neither ON nor OFF. The parser expected an ON or OFF as argument.
- 'booleskt värde varken ON eller OFF.
-
- ;invalid numeric value. The parser expected a number. The one supplied was invalid
- 'ogiltigt numeriskt värde.
-
- ;out of memory SetVNC has not enough memory.
- 'slut på minne.
-
- ;Failed parsing "%s" : %s \n\r Printed if the parsing of an arugment failed.
- ;The first %s is substituted with the argument name, the second with the failure type, from above.
- ;The \n\r code is a newline command.
- ;(Here both, newline plus line feed since someone may have turned ViNCEd's
- ; auto CR off)
- 'Problem med att tolka "%s" : %s\n\r
-
- ;SetVNC failure: Need AT LEAST vnc.library version 40.00. Printed if SetVNC failed to open the vnc.library
- 'SetVNC misslyckades: MINST version 40.00 av vnc.library krävs.\n\r
-
- ;SetVNC failure: Can't open needed libraries. Printed if some generic libs are missing (asl/dos/gfx/intuition)
- 'SetVNC misslyckades: Nödvändiga libraries kunde ej öppnas.\n\r
-
- ;SetVNC failure: Need a ViNCEd stream as output handle. Printed if SetVNC found a non-VINCEd stream, i.e. hasn't been called from ViNCEd.
- 'SetVNC misslyckades: Kräver en ViNCEd-ström som output-kanal.\n\r
-
- ;"DOS failed " A generic failure message if some DOS function returned an error
- '"DOS-fel "
-
- ;%s: error code %ld.\n\r A generic error code if no standard fail message of the DOS could be found.
- ; %s is substituted with the text above, and %ld is the DOS error number.
- '%s: felkod %ld.\n\r
-
- ;"Usage: SetVNC " The title of the text that is printed if you specify "?" as argument
- '"Användande: SetVNC "
-
- ;" O.K. " This text is put into the fail requester (it has only one button)
- '" O.K. "
-
- ;***************************************************************************
- ;Strings of the prefs-loader
- ;***************************************************************************
- ;
- ;these strings are printed if the loading/saving of some prefs can't be done
- ;
- #16
- ;"SetVNC failure: Unable to save preferences as " Printed if SetVNC failed to save the prefs as a file.
- ;The actual file name is put behind this text.
- '"SetVNC-fel: Kan ej spara inställningar som \n\r"
-
- ;SetVNC failure: No memory for preferences. Due to a lack of memory ViNCed can't build them
- 'SetVNC-fel: Ej tillräckligt med minne för inställningar.\n\r
-
- ;SetVNC failure: Can't get preferences from active window. SetVNC can't load the prefs of the window it was invoked in.
- 'SetVNC-fel: Kan ej hämta inställningar från aktivt fönster.\n\r
-
- ;SetVNC failure: Can't get global preferences. SetVNC can't load the global ("Used") prefs.
- 'SetVNC-fel: Kan ej hämta globala inställningar.\n\r
-
- ;SetVNC failure: Can't get default preferences. The defaults were unavailable.
- 'SetVNC-fel: Kan ej hämta standardinställningar.\n\r
-
- ;"SetVNC failure: Can't get preferences from file " SetVNC failed to load the prefs from a given file.
- ;The actual file name is printed behind this text
- '"SetVNC-fel: Kan ej hämta inställningar från filen "
-
- ;SetVNC failure: Can't get last saved preferences. SetVNC failed to load the prefs beeing saved as global prefs.
- 'SetVNC-fel: Kan ej hämta senast sparade inställningar.
-
- ;SetVNC failure: Can't construct macro list. The list of the macros can't be setup
- 'SetVNC-fel: Kan ej konstruera makrolista.
-
- ;SetVNC failure: Can't build macros from list. The list of the macros can't be installed into the prefs.
- 'SetVNC-fel: Kan ej skapa makron från lista.
-
- ;SetVNC failure: Can't install preferences into active window. The window SetVNC was invoked in did not accept the new prefs.
- 'SetVNC-fel: Kan ej använda inställningar i aktivt fönster.
-
- ;SetVNC failure: Can't install preferences into library base. The prefs have been rejected as global ("Used") prefs.
- 'SetVNC-fel: Kan ej installera inställningar i library-basen.
-
- ;***************************************************************************
- ;Strings of the shell-commands
- ;***************************************************************************
- ;
- ;Strings used for one of the many in-place actions.
- ;
- #32
- ;TabHook installed. The TAB expansion has been turned on.
- ;The notation "TABHook" is a bit antique and due to some earlier release
- ;of ViNCEd, where this feature was done by an external "Hook" program.
- 'TabHook installerat.\n\r
-
- ;TabHook removed. The TAB expansion has been turned off.
- 'TabHook avstängt.\n\r
-
- ;"The TabHook is no longer driven by an external supervisor.\n\rThe "hook" is now removed and the command was ignored.\n\r
- ;This text explains that the TAB expansion has been removed, and that this
- ;feature is now internal - no external process is needed.
- 'TabHook är inte längre styrd av en extern övervakare\n\rTabHook är nu borta och kommandot ignorerades.\n\r
-
- ;The specified number of lines is invalid. The size of a buffer given to SetVNC is too large or too small.
- 'Det specifierade radantalet är ej tillåtet.\n\r
-
- ;The specified time interval is invalid. The time (blink speed/refresh interval etc..) is too short or too long.
- 'Det specifierade tidsintervallet är ej tillåtet.\n\r
-
- ;*** The next ones are new to 40.12....
-
- ;The specified monitor does not exist. The monitor name was not found in the monitor data base.
- 'Den specifierade monitorn existerar inte.\n\r
-
- ;The 1.2/1.3 workbench does not support monitor names.\n\rUse MONITORID instead.\n\r
- ;SetVNC complains of a MONITOR argument which is useless with WB 1.2/1.3 since the monitor data
- ;base was introduced in 2.0
- 'Workbench 1.2/1.3 stöder inte monitornamn.\n\rAnvänd MONITORID istället.\n\r
-
- ;The specified qualifier is invalid.\n\r
- ;The user gave a qualifier for the icon drop modifier which is useless (like caps or the "number pad" qualifier).
- 'Den specifierade qualifiern är ej tillåten.\n\r
-
- ;***************************************************************************
- ;Strings of the mounter
- ;***************************************************************************
- ;
- ; This string is used by the "MOUNT" command on failure
- ;
- #64
- ;"Can't mount ViNCEd as " Printed if mount failed.
- ;The device name which should be replaced by VNC: (usually CON:) is
- ;printed BEHIND this text.
- '"Kan ej montera ViNCEd som "
-
- ;***************************************************************************
- ;Strings for the job control functions fg,bg
- ;***************************************************************************
- ;
- ;
- #72
- ;SetVNC failure : Nothing found to put in foreground instead.\n\r SetVNC's bg failed since
- ;there's no process that can't be put in foreground to replace the current one.
- 'SetVNC-fel: Ingen process funnen at lägga i förgrunden.\n\r
-
- ;SetVNC failure : Can't send this process to foreground.\n\r The process can't be set
- ;to foreground for some reason.
- 'SetVNC-del: Kan ej lägga denna process i förgrunden.\n\r
-
- ;SetVNC failure : CLI process not found.\n\r The CLI number of the process
- ;to set to foreground does not exist.
- 'SetVNC-fel: CLI-processen ej funnen.\n\r
-
- ;SetVNC failure : This process is not under my control.\n\r The process corresponding to
- ;the given CLI number exists, but was not under control of the ViNCEd process in the window
- ;SetVNC was invoked in - propably it is not under control of ViNCEd at all, or propably it runs
- ;in a different window.
- 'SetVNC-fel: Denna process kan ej styras av mig.\n\r
-
- ;***************************************************************************
- ;Strings for the guide-loading module
- ;***************************************************************************
- ;
- ;
- #80
- ;SetVNC failure: Can't load help browser.\n\r The help program (usually MultiView)
- ;can't been loaded. Propably it is missing or its location (found in the "default tool") is
- ;wrong
- 'SetVNC-fel: Kan ej ladda in hjälpläsaren.\n\r
-
- ;SetVNC failure: Can't find help database.\n\r SetVNC was unable to locate the
- ;VNC.guide. It's location is kept in the tooltypes of the SetVNC program.
- 'SetVNC-fel: Hittar ej hjälpfilen.\n\r
-
-
- ;***************************************************************************
- ;Strings used by the prefs editor
- ;***************************************************************************
- ;
- ;
- ;
- #128
- ;SetVNC failure : Can't install the prefs requester.\n\r
- ;Printed if SetVNC failed to build its requester into the window.
- 'SetVNC-fel: Kan ej installera inställningsförfrågaren.\n\r
-
- ;SetVNC failure : Can't build requester page.\n\r
- ;Printed if SetVNC failed to draw a "page" of the prefs, i.e. construction
- ;of the gadgets failed.
- 'SetVNC-fel: Kan ej bygga valsida.\n\r
-
- ;SetVNC failure : Can't write string back into prefs.
- ;Printed if some of the strings (usually the macros) can't be re-installed
- ;to the prefs.
- 'SetVNC-fwl: Kan ej skriva tillbaka strängarna i inställningarna.\n\r
-
- ;Please locate guide :
- ;This is the title of the file requester that appears to choose the VNC.Guide
- 'Hitta hjälpfilen, tack :
-
- ;Please locate the guide path\n\rin the "System" menu.\n\r
- ;The contents of a failure requester in case the user requested for help,
- ;but SetVNC does not yet know the location of the VNC.guide.
- 'Var vänlig lokalisera hjälpfilens\n\rsökväg i "System"-menyn.\n\t
-
- ;SetVNC failure : Out of chip mem for images.\n\r
- ;Chip memory failed for the magnification of the title picture
- ;(ViNCEd-logo & the Elf & THOR-Software text)
- 'SetVNC-fel: Ej tillräckligt med chipminne för bilder.\n\r
-
- ;The next ones are new to 40.11
-
-
- ;The font name is invalid.\n\rPlease specify it as <name>.<size>\n\r
- ;SetVNC complains about an invalid font name in the font string gadget
- ;of the window page.
- 'Typsnittsnamnet är felaktigt.\n\rVar vänligt skriv det som <namn>.<storlek>\n\r
-
- ;The specified font can't be found.\n\r
- ;SetVNC can't find the font the user requested.
- 'Det specifierade typsnittet hittas ej.\n\r
-
- ;The specified monitor does not exist.\n\r
- ;The monitor id in the monitor string gadget
- 'Den specifierade monitorn existerar ej.\n\r
-
- ;ASL.library V37 is missing.\n\r
- ;SetVNC needs ASL 37.xx for the font requester.
- 'ASL.library V37 saknas.\n\r
-
- ;ASL.library V38 needed.\n\r
- ;The V38 version of ASL must be present for the screen mode requester.
- 'ASL.library V38 krävs.\n\r
-
- ;Select default font:
- ;The title of the font requester.
- 'Välj standardtypsnitt:
-
- ;Default monitor ID:
- ;The title of the screen mode requester
- 'Välj standardmonitor:
-
- ;Can't create font requester.\n\r
- ;ASL returned a failure building the font requester, for what reason ever.
- 'Kan ej skapa typsnittsväljare.\n\r
-
- ;Can't create screen mode requester.\n\r
- ;ASL failed to construct the screen mode requester.
- 'Der Monitorrequester kann\n\rnicht aufgebaut werden.\n\r
- 'Kan ej skapa monitorväljare.\n\r
-
- ;***************************************************************************
- ;The page names
- ;***************************************************************************
- ;
- ; The next ones are the page names that are printed in the
- ; top row of each page. PLEASE KEEP THEM VERY SHORT, since the
- ; room is limited.
- ; WARNING: One of the names changed in 40.30: The buffers page is
- ; now called "Window"
- ;
- ;
- ;Page-Names
- #192
- ;About Title of the page that contains the logo.
- 'Om
-
- ;Macros The macros (for the menu) setup pages
- 'Makron
-
- ;Buttons The buttons (for the titlebar) setup pages
- 'Knappar
-
- ;Edit Lots of flags for the editor behaiviour
- 'Redigering
-
- ;Shell Lots of stuff for the shell:TAB Expansion plus some more
- 'Shell
-
- ;Window The page to setup window related stuff, and custom screens (new to 40.30)
- 'Fönster
-
- ;Timing Blink speeds, rebuild delay setup
- 'Tider
-
- ;System A lot of internal system settings (system macros & flags)
- 'System
-
- ;***************************************************************************
- ;Strings used by the on-line help
- ;***************************************************************************
- ;
- ; These strings are used whenever the user requested help thru one
- ; of the "HELP" buttons on the pages and the help failed for some
- ; reason. They are put into requesters with an "O.K." button.
- ; The text for the button is in one of the strings on top
- ;
- ;
- #208
- ;SetVNC failure : Need amigaguide.library V34 or better.\n\r
- ;The amigaguide.library which is used to display the VNC.guide is
- ;missing
- 'SetVNC-fel: amigaguide.library V34 eller högre krävs.\n\r
-
- ;SetVNC failure : Can't open the specified guide file.\n\r
- ;amigaguide.library failed to open the requested guide. Propably it is
- ;missing, or the location (setup by in the system page) is not correct,
- ;or maybe it's the wrong file
- 'SetVNC-fel: Kan ej öppna den specifierade hjälpfilen.\n\r
-
- ;SetVNC failure : Can't find the requested help node.\n\r
- ;The help node requested is not in the guide. Propably the guide
- ;must be updated, since I added some nodes to it in the past...
- 'SetVNC-fel: Kan ej hitta sökt hjälpnod.\n\r
-
- ;"SetVNC failure : "
- ;Some error condition has occured. The string amigaguide returned as
- ;failure code is appended to this one and forms the complete fail
- ;message.
- '"SetVNC-fel: "
- ;
- ;Unknown amigaguide failure
- ;This one gets appended to the string on top if amigaguide did not
- ;return a readable failure code
- 'Okänt AmigaGuide-fel
-
- ;***************************************************************************
- ;Strings used by the buffer load/save module. New to 40.35
- ;***************************************************************************
- ;
- ; These strings are used by the buffer saving/loading routine
- ; i.e. subcommands SetVNC get / put
- ;
- #224
- ;***Break\n\r
- ;Printed if the loading gets aborted
- '*** Avbrott\n\r
-
- ;Some obsolete strings follow. They are partially replaced
- ;by strings in the ViNCEd module since bufferI/O is now
- ;a part of the library, not of SetVNC.
- ;SetVNC calls the proper library functions, that's all!
- ;
- ;*** this one is obsolete ***
- ;SetVNC failed writing the line buffer.\n\r
- ;A generic IO error generated if something went wrong while writing
- ;some part of the buffer lines, either the history or the screen.
- 'SetVNC kann den Zeilenbuffer nicht schreiben.\n\r
-
- ;*** this one is obsolete ***
- ;SetVNC failed reading the line buffer.\n\r
- ;Another generic error if something went wrong while reading a line
- ;buffer, either the history or the screen.
- 'SetVNC kann den Zeilenbuffer nicht lesen.\n\r
-
- ;*** this one is obsolete
- ;SetVNC failed to open %s\n\r
- ;This error is generated if SetVNC failed to open the buffer file, i.e.
- ;can't create a line buffer file for writing or failed to open the buffer
- ;file for reading. %s is replaced by the name of the file.
- 'SetVNC kann %s nicht öffnen.\n\r
-
-
- ;******* New strings in here!
- ;
- ;This text is printed if the new SetVNC release is
- ;used with an obsolete library that does not provide the
- ;buffer I/O functions. Please note the escaped line feeds
- ;at the end!
- ;You are using an obsolete version of ViNCEd!\
- ;\rBuffer I/O operations have to be supported by the library,\
- ;\rplease upgrade to 43.50 or better.\n\r
- 'Du använder en föråldrad ViNCEd-version!\
- \rBuffrad I/o måste stödas av libraryt,\
- \rvänligen uppgradera till 43.50 eller bättre.\n\r
- ;
- ;
- ;The next strings are inserted as names of the failure operation
- ;this is the first "%s" in the text below.
- ;
- ;The first text is shown if the history can't be saved:
- ;ViNCed failed to... (text goes here)
- ;save the history
- 'spara historien
- ;
- ;Same for the window contents:
- ;save the line buffer
- 'spara linjebufferten
- ;
- ;Loading the history failed here
- ;load the history
- 'hämta historien
- ;
- ;Loading the screen failed
- ;load the line buffer
- 'hämta fönsterinnehållet
- ;
- ;
- ;This is the first failure requester body. The first "%s" here is replaced
- ;by one of the strings shown above, related to which operation failed.
- ;The second "%s" is the file name.
- ;Try to formulate this in a way that you get a complete sentence that
- ;makes some sense! Note the escaped line feeds at the end!
- ;SetVNC failed to %s.\
- ;\rOut of memory while processing %s.\n\r
- 'SetVNC misslyckades med att %s.\
- \rEj tillräckligt med minne.\n\r
- ;
- ;
- ;The next one is printed if a file can't be opened. The first "%s" is
- ;replaced with one of the four operation strings above, the second
- ;"%s" is the file name.
- ;SetVNC failed to %s:\
- ;\rCan't open %s.\n\r
- 'SetVNC misslyckades med att %s:\
- \r%s kunde ej öppnas.\n\r
- ;
- ;
- ;The same, but the failure reason is this time located in a
- ;read error
- ;SetVNC failed to %s:\
- ;\rCan't read %s.\n\r
- 'SetVNC misslyckades med att %s:\
- \r%s kunde ej läsas.\n\r
- ;
- ;
- ;Again the same, but writing failed:
- ;SetVNC failed to %s: Can't write %s.\n\r
- 'SetVNC misslyckades med att %s:\
- \rKunde ej skriva till %s.\n\r
- ;
- ;
- ;And last but not least: A generic text if the failure
- ;condition is unkown. A DOS error code is appended.
- ;SetVNC failed to %s:\n\r
- 'SetVNC misslyckades med att %s:\
- ;
- ;
- ;
- ;
- ;***************************************************************************
- ;Strings used in the pages
- ;***************************************************************************
- ;
- ; the next strings are put into the pages, mostly as
- ; gadget names. So please try if the strings are "short enough" to
- ; fit into the buttons. The spacing is *worst* for fixed-width fonts
- ; but the actual point size does not matter since everything gets
- ; rescaled automagically. Proportional fonts tend to give a
- ; more relaxed spacing, so you should try this with topaz.8
- ; although this font is usually "too tiny".
- ;
- ;***************************************************************************
- ;Strings common to all pages: The bottom bar
- ;***************************************************************************
- ;
- ;!!! Warning: The "Save" string has moved TO THE END of this collection!!!
- ;
- #257
- ;Use Use prefs globally
- 'Använd
-
- ;To Window Try in window SetVNC was called from only.
- '-> Fönster
-
- ;Cancel Abort SetVNC without saving
- 'Avbryt
-
- ;***************************************************************************
- ;Buttons in the about page
- ;***************************************************************************
- ;
- ;
- ;Last Saved Reload prefs from default location
- 'Sist sparat
-
- ;Last Used Reload global prefs
- 'Sist använt
-
- ;Window Reload prefs from the window SetVNC was invoked from.
- 'Fönster
-
- ;Default Load defaults.
- 'Standard
-
- ;Restore settings from: This text is put in front of the button above. Propably this
- ;together with the gadget text should form a sentence.
- 'Återställ inställningar från:
-
- ;About Loads the main node of the VNC.guide.
- 'Om...
-
- ;***************************************************************************
- ;The save button was moved to this place...
- ;***************************************************************************
-
- ;Save Save prefs to default location (ENVARC: & ENV:)
- 'Spara
-
- ;***************************************************************************
- ;Buttons in the macros pages
- ;***************************************************************************
- ;
- ;
- ;
- #272
- ;ViNCEd Macros Page 1 (of 2) : The page title, giving the name
- ;of the page, the number if there's more than one page for the topic
- ;plus the total number of pages for this topic.
- 'ViNCEd Makron sida 1 (av 2) :
-
- ;Help... Common to all pages: The HELP button
- ;it loads the VNC.Guide and displays the node for the page this button is on.
- 'Hjälp...
-
- ;2nd Page » The link to the other page. This
- ;button is also very common.
- 'Sida 2 »
-
- ;Macro 0 These gadgets just count thru the
- ;number of macros. 0-4 are on the first page
- 'Makro 0
-
- ;Macro 1
- 'Makro 1
-
- ;Macro 2
- 'Makro 2
-
- ;Macro 3
- 'Makro 3
-
- ;Macro 4
- 'Makro 4
-
- ;***************************************************************************
- ;
- ;Second macro page
- ;
- #288
- ;ViNCEd Macros Page 2 (of 2) :
- 'ViNCEd Makros sida 2 (av 2) :
-
- ;Help
- 'Hjälp...
-
- ;« 1st Page ;Link back. Note that the arrow points
- ;to the opposide direction.
- '« Sida 1
-
- ;Macro 5
- 'Makro 5
-
- ;Macro 6
- 'Makro 6
-
- ;Macro 7
- 'Makro 7
-
- ;Macro 8
- 'Makro 8
-
- ;Macro 9
- 'Makro 9
-
- ;***************************************************************************
- ;Buttons in the buttons page
- ;***************************************************************************
- ;
- ;There's only one page, so no link buttons...
- ;
- #304
- ;ViNCEd Button Page :
- 'ViNCEd Knappsida :
-
- ;Help...
- 'Hjälp...
-
- ;Button title :"
- ;Put in front of the gadget that contains the name of a button, i.e. what
- ;gets printed in the title bar.
- 'Knapptitel :
-
- ;Remove
- ;A button to remove a button from the list
- 'Ta bort
-
- ;Insert
- ;A button to insert a new button between others
- 'Sätt in
-
- ;Command :
- ;The text of the macro. This one will be expanded and executed by,
- ;well usually the shell.
- 'Kommando :
-
- ;« Prev
- ;A button to go backwards (towards the first) button in the list
- '« Föreg.
-
- ;Next »
- ;A button to go forwards (towards the last) button
- 'Nästa »
-
- ;The next one is new to 40.30:
- ;"Key : F%ld "
- ;This one expands into the key related to the current button in the
- ;window. "%ld" is replaced by a number from 1 to 10. Please note the
- ;space at the end, which is needed!
- '"Tangent : F%ld "
-
- ;***************************************************************************
- ;Buttons in the edit pages
- ;***************************************************************************
- ;
- ;These strings are used in the four pages for editor features.
- ;
- ;A fourth page has been added in 40.33 which is now at the end of this
- ;file.
- ;A fifth page was added in 40.41!
- ;
- ;
- #320
- ;ViNCEd Edit Page 1 (of 5) : The title
- 'ViNCEd Redigering sida 1 (av 5) :
-
- ;Help...
- 'Hjälp...
-
- ;2nd Page »
- 'Sida 2 »
-
- ;Unrestricted cursor movement
- ;Same as the "DOS Cursor mode" in the menu. Used to move the cursor
- ;like the DOS, without restrictions. For example, backspace does not
- ;stop on the shell prompt if this is turned on.
- 'Obegränsad markörförflyttning
-
- ;CR inserts below at start of line
- ;What happends if return gets pressed at the beginning of a line
- ;If this is turned on, a RETURN key press is not special at the beginning of
- ;a line. If turned off, it will insert a line on top instead of below.
- 'CR lägger till under radstart
-
- ;TAB moves, no insertion
- ;Determinates the operation of the TAB key
- 'TAB flyttar, lägger ej till
-
- ;Overwrite Text
- ;Insertion mode (off) vs. overwrite mode (on):
- 'Skriv över text
-
- ;History buffer wraps around
- ;The operation of the command history and of the TAB expansion. If turned
- ;on, and you reached one end of the history / list of possible expansions,
- ;the buffer will wrap around, i.e. starts again at the beginning
- 'Historiebuffert börjar om
-
- ;***************************************************************************
- ;
- ;
- #336
- ;ViNCEd Edit Page 2 (of 5) :
- 'ViNCEd Redigering sida 2 (av 5) :
-
- ;Help...
- 'Hjälp...
-
- ;3rd Page »
- 'Sida 3 »
-
- ;Don't write printed text into clipboard
- ;Like "Cut inputs only" in the menu: Put only user input into the clipboard
- 'Lägg ej utskriven text i clipboard
-
- ;Implicit copy after text marking
- ;Copy the marked area immediately into the clipboard, don't wait for a copy
- 'Kopiera text direkt efter markering
-
- ;Swap ALT-cursor and cursor keys
- ;History movement by cursor keys, cursor movement by ALT+Cursor if on
- 'Byt ALT-markör och markörtangenter
-
- ;Underline cursor
- ;instead of a block cursor
- 'Underlinjerad markör
-
- ;Blinking cursor
- ;make the cursor blink. Speed is setup in the timing page
- 'Blinkande markör
-
- ;***************************************************************************
- ;
- ;
- #344
- ;ViNCEd Edit Page 3 (of 5) :
- 'ViNCEd Redigering sida 3 (av 5) :
-
- ;Help
- 'Hjälp...
-
- ;4th Page »
- 'Sida 4 »
-
- ;XTerm cursor mode
- ;The cursor gets frozen and does not move if you scroll the window or
- ;mark a block
- 'XTerm-markör läge
-
-
- ;The next two are new in 40.30:
-
- ;Disable middle mouse button
- ;Use the MMB for other programs, not for unix like clipboard control
- ;The replacement Ctrl+Left works, however
- 'Stäng av mellersta musknappen
-
- ;Disable BS at start of line
- ;Do not join lines if BS is pressed at the start of the line. Ignore
- ;it instead!
- 'Hindra Backspace vid början av rad
-
- ;Extensions made to 40.33:
-
-
- ;ANSI colors as default
- ;Use the ANSI coloring sheme by default. Can be enabled by hand with the
- ;CSI >?8h sequence, see the guide for more on that.
- 'ANSI-färger som standard
-
- ;Don't scroll into the border
- ;Enable hard window scroll borders. Prevent the cursor from goining into
- ;"blank" lines and stop scrolling at these boundaries.
- 'Skrolla ej in i fönsterramen
-
- ;***************************************************************************
- ;There's also a fourth editor page which has been added later on. It is
- ;for that reason below in this file...
-
- ;***************************************************************************
- ;Buttons in the shell page
- ;***************************************************************************
- ;
- ;These pages setup functions related to the shell mode of ViNCEd
- ;like TAB expansion and requesters
- ;Please note that in 40.30 a fourth one was added to the shell pages,
- ;so the titles changed a bit...
- ;A fifth page was added to 40.41...
- ;
- ;
- #352
- ;ViNCEd Shell Page 1 (of 5) :
- 'ViNCEd Shell sida 1 (av 5) :
-
- ;Help...
- 'Hjälp...
-
- ;2nd Page »
- 'Sida 2 »
-
- ;Call macro to close window
- ;Like "Smart Close" in the menu
- 'Anropa makro vid fönsterstängning
-
- ;Prevent accidental window closing
- ;Like "Safer Close" in the menu: Do not close if more than one process
- ;posesses the window
- 'Förhindra fönsterstängning av misstag
-
- ;Don't send EOF until everybody waits
- ;A very technical setting, determinates what should happen if more than
- ;one process is in the window and the user closes the window
- 'Vänta med att sända EOF tills alla väntar
-
- ;Don't add close gadget by default
- ;If turned on, you must explicitly ask for a CLOSE gadget in the path to
- ;get one. By default (since 1.00), ViNCEd windows come always with a
- ;close gadget.
- 'Lägg ej till stängningsknapp som standard
-
- ;Don't add iconify gadget by default
- ;If turned on, you must ask for a iconify gadget. The default is that all
- ;windows that appear on the workbench or that have the FALLBACK option
- ;turned on will get an iconifier.
- 'Lägg ej till ikonifieringsknapp som standard
-
- ;**************************************************************************
- ;
- ;
- #368
- ;ViNCEd Shell Page 2 (of 5) :
- 'ViNCEd Shell sida 2 (av 5) :
-
- ;Help...
- 'Hjälp...
-
- ;3rd Page »
- 'Sida 3 »
-
- ;TAB filename expansion
- ;Use TAB instead of Ctrl+TAB in the SHELL mode for file name expansion
- 'Filnamnexpansion med TAB
-
- ;Double TAB requester
- ;Display a requester if TAB is pressed twice within the double
- ;click interval
- 'Dubbel-TAB-filväljare
-
- ;First TAB expands fully
- ;If not turned on, ViNCEd will try a partial expansion first.
- 'Första TAB expanderar fullt
-
- ;Requester if expansion is ambigious
- ;If turned on, ViNCEd will display a requester if more than one expansion
- ;is possible
- 'Filväljare om det finns flera val
-
- ;Show ViNCEd matches, not directories
- ;Don't use a directory requester for the matches, but show the list
- ;that ViNCEd generated interally. Additional entries in this list (that
- ;can't be shown by a standard requester) are devices, assigns and resident
- ;modules. However, you can't go into a directory with this requester
- 'Visa ViNCEd-träffar, ej kataloger
-
- ;*************************************************************************
- ;
- ;
- #376
- ;ViNCEd Shell Page 3 (of 5) :
- 'ViNCEd Shell sida 3 (av 5) :
-
- ;Help...
- 'Hjälp...
-
- ;4th Page »
- 'Sida 4 »
-
- ;Use shell mode by default
- ;Turn on shell mode even if the SHELL keyword is missing in the PATH
- 'Använd Shell-läge som standard
-
- ;The next ones are new to 40.30:
-
- ;Search commands in currernt and C: only
- ;Speed up TAB expansion of commands by searching them in the
- ;current directory and C: only.
- 'Leta efter kommandon i nuvarande och C: endast
-
- ;Show matching directories first
- ;When expanding by hand, the directories are sorted in prior to
- ;the devices. THIS DOES NOT change the sorting of the strings
- ;in the requester, since this is up to reqtools/asl - only the
- ;manual list is sorted differently.
- 'Visa matchande kataloger först
-
- ;Enable close requester
- ;Turn on the requester warning if the user wants to close a shell
- ;with more than one process running in it.
- ;REMARK: The "safer close" setting must be turned on as well, to
- ;see this requester.
- 'Aktivera stängningsförfrågan
-
- ;Devices don't match implicitly
- ;Don't sort devices into the ViNCEd requester unless the user asked for
- ;devices explicitly by giving a ":" as the last part of the search pattern.
- 'Enheter matchar inte implicit
-
- ;***************************************************************************
- ; The forth & fifth shell page, new to 40.30 is located AT THE END of this
- ; file...
-
-
- ;***************************************************************************
- ;Buttons in the window page
- ;***************************************************************************
- ;
- ;This page is used to setup the size of various buffers for ViNCEd,
- ;namely the command history and the visual history, upper and lower part.
- ;
- ;More is here in 40.30, and a second and third page is available as well
- ;The third page was added in 40.33, so please check out to change the titles!
- ;
- ;
- #384
- ;ViNCEd Window Page 1 (of 3) :
- 'ViNCEd Fönster sida 1 (av 3) :
-
- ;Help...
- 'Hjälp...
-
- ;History lines :
- ;The size of the command history in lines
- 'Rader i historien :
-
- ;Upper Display size :
- ;The number of lines that are kept above the visual window, i.e. maximal
- ;number of lines scrolled off the window.
- 'Övre displaystorlek :
-
- ;Lower Display size :
- ;The number of lines kept in the opposide direction, including the lines
- ;actually visible plus the lines kept below the visible window.
- 'Undre displaystorlek :
-
- ;2nd Page »
- ;located at an usual place since I added this later
- 'Sida 2 »
-
- ;Monitor
- ;The name of the screen mode button
- 'Monitor
-
- ;Font
- ;The contents of the font selection button
- 'Typsnitt
-
- ;***************************************************************************
- ;The second and third window page is at the end of this file!
- ;
-
- ;***************************************************************************
- ;Buttons in the timing page
- ;***************************************************************************
- ;
- ;Various timing rates are setup with this page
- ;
- ;
- #400
- ;ViNCEd Timing Page :
- 'ViNCEd Tider :
-
- ;Help...
- 'Hjälp...
-
- ;Cursor blink speed :
- ;Setup the blink interval. Units are milliseconds (1 ms = 1 thousands of a second)
- 'Markörblinkning (i ms) :
-
- ;Vertical scroll threshold :
- ;If vertical scrolling is slower than this, ViNCEd will delay the refresh
- ;to speedup scrolling. Again measured in ms.
- 'Vert. skrollningströskel :
-
- ;Rebuild delay :
- ;If this time has passed, ViNCEd will refresh the window. Again in ms.
- 'Omritningpaus :
-
- ;Intuition delay (1.3 only):
- ;Only used with kickstart 1.3 and below. This should be setup to the
- ;usual time needed for intuition to do a window operation, i.e. resize.
- ;Usually the interval of the input device, i.e. 1/10th of a second.
- 'Intuition-paus (1.3) :
-
- ;Allow delayed window refresh
- ;A checkmark. Must be turned on to allow a delayed refresh and to make use
- ;of the settings above.
- 'Tillåt försenad fönsteromritning
-
- ;***************************************************************************
- ;Buttons in the system pages
- ;***************************************************************************
- ;
- ;The four system pages setup internal ViNCEd stuff that does not fit
- ;into the other categories.
- ;
- ;
- #416
- ;ViNCEd System Page 1 (of 4) :
- 'ViNCEd System sida 1 (av 4) :
-
- ;Help...
- 'Hjälp...
-
- ;2nd Page »
- 'Sida 2 »
-
- ;ViNCEd Guide Path :
- ;This gadget is used to setup the path of the VNC.guide.
- 'ViNCEd-hjälpfil :
-
- ;Chunky pixel graphics
- ;If set, ViNCEd does not use the bitplane mask to scroll only used
- ;bitplanes. Useful for gfx cards.
- 'Chunky Pixel-grafik
-
- ;Line break at right border
- ;Break DOS output at the right window border. This line break operation
- ;is a bit different from what CON: does, since it is permanently. Lines
- ;won't get reorganized if the window gets resized.
- ;This one shouldn't be turned on!
- 'Radbrott vid högra kanten
-
- ;Inhibit horiz. scrolling by DOS output
- ;Do not scroll the window by DOS output. This avoids some flicker, but
- ;may move the cursor to invisible areas.
- ;This one shouldn't be turned on!
- 'Hindra hotiz. skrollning av DOS-utskrift
-
- ;VT-220 compatibility mode
- ;Some control sequences are interpretated differently if this is turned on.
- ;Also not useful if you want to run a shell in this window.
- 'VT-220-kompatibelt läge
-
- ;***************************************************************************
- ;
- ;
- #432
- ;ViNCEd System Page 2 (of 4 ) :
- 'ViNCEd System sida 2 (av 4) :
-
- ;Help...
- 'Hjälp...
-
- ;3rd Page »
- 'Sida 3 »
-
- ;Destructive DEL and BS
- ;Usually a printed backspace moves the cursor backwards and does nothing else.
- ;If turned on, it will erase characters. The DEL is usually printed as a
- ;smear symbol. If turned on, it will erase characters.
- ;Not useful for the shell!
- 'Destruktiv DEL och BS
-
- ;Insertion mode for DOS output
- ;If turned on, DOS output will be inserted into the window data instead of
- ;overwriting it. Since this is never done by CON:, leave this flag
- ;off for the shell.
- 'Insättningläge för DOS-utskrift
-
- ;Notify DOS about paste
- ;Do not paste if the user asks to do so, instead send a paste request
- ;to the reading program. THIS IS NOT USEFUL FOR THE SHELL.
- 'Meddela DOS om inklistring
-
- ;Disable full screen edit
- ;Totally forbid cursor movement thru cursor keys AND RETURN! This might
- ;be useful for programs that read masks, BUT IT IS NOT USEFUL for the
- ;shell. LEAVE IT OFF.
- 'Stäng av fullskärmredigering
-
- ;***************************************************************************
- ;
- ;
- #448
- ;ViNCEd System Page 3 (of 4) :
- 'ViNCEd System sida 3 (av 4) :
-
- ;Help...
- 'Hjälp...
-
- ;4th Page »
- 'Sida 4 »
-
- ;Quit shell :
- ;This is a system macro invoked if the user presses the close window
- ;gadget in an active shell.
- 'Avsluta Shell :
-
- ;New Window :
- ;A system macro expanded by the "New Window" item in the project menu.
- 'Nytt fönster :
-
- ;Get Help :
- ;A macro that should call the VNC.guide. Usually set to "SetVNC HELP"
- 'Visa hjälp :
-
- ;Edit settings :
- ;A macro used to invoke the prefs editor. Usually "SetVNC". Called if
- ;the user select the "Settings" item in the project menu.
- 'Inställningar :
-
- ;Fork new shell:
- ;Another macro used to build a new shell on Ctrl-Z. This one is unique
- ;since it is not expanded as a keyboard sequence, but Execute()-d
- ;instead (so use \n to terminate it instead of \r). Should be something
- ;like newcli.
- 'Starta Shell :
-
- ;***************************************************************************
- ;
- ;
- ;
- #464
- ;ViNCEd system page 4 (of 4) :
- 'ViNCEd System sida 4 (av 4) :
-
- ;Help...
- 'Hjälp...
-
- ;« 1st Page
- '« Sida 1
-
- ;Quit program :
- ;Another system macro that is called if a running program in a ViNCEd shell
- ;should be terminated. Called if the close gadget is pressed and a command
- ;is loaded.
- 'Avsluta prog. :
-
- ;Icon path :
- ;This is the path of the icon that is displayed if a ViNCEd window gets
- ;iconified. It is a standard workbench icon, without the ".info".
- 'Ikonsökväg :
-
- ;Icon title :
- ;The title that is shown under the icon. Defaults to the window title or
- ;to the title that is set by some XTerm control sequence.
- 'Ikontitel :
-
- ;************************************************************************
- ;The second window page, located here since I added it later
- ;************************************************************************
- #472
-
- ;ViNCEd Window page 2 (of 3):
- 'ViNCEd Fönster sida 2 (av 3) :
-
- ;Help
- 'Hjälp...
-
- ;3rd Page »
- 'Sida 3 »
-
- ;Sample color
- ;Title of the box with the sample of the new color you can choose with
- ;the sliders for custom screens
- 'Exempelfärg
-
- ;*** the next string changed ! ***
- ;Color :%s
- ;The current pen to be edited. The cryptic "%s" gets expanded to a
- ;number between 0 and 15, i.e. the actual pen number.
- 'Färg :%s
-
- ;Custom Screen Colors:
- ;Title on top of the red,green,blue sliders
- ;This string is no longer printed because there's no room left....
- 'Egna skärmfärger
-
- ;Red :
- ;The title in front of the slider for the red component
- 'Röd :
-
- ;Green :
- ;Same for the green slider
- 'Grön :
-
- ;Blue :
- ;Same for the blue slider.
- 'Blå :
-
- ;The next ones display a percent value, namely the contribution of
- ;red,green and blue, respectively, to the current color.
- ;There's usually no need to change them...
- ;%% is expanded into a single percent sign, by the way.
- ;%-3ld results in a three digit decimal number.
-
- ;%-3ld%%
- '%-3ld%%
-
- ;%-3ld%%
- '%-3ld%%
-
- ;%-3ld%%
- '%-3ld%%
-
- ;Load this register
- ;A checkmark, used to indicate if the current pen should be set by
- ;ViNCEd. The sliders are unaccessable unless this one is checked.
- 'Ladda detta register
-
- ;« Prev
- ;Move to the previous pen
- '« Föreg.
-
- ;Next »
- ;Edit the next pen
- 'Nästa »
-
-
- ;Set ANSI mapping
- ;A checkmark added to the 40.15 release of ViNCEd. If set, this color
- ;defines not an hardware register, but the software ANSI mapping, i.e.
- ;the ANSI pen of the same color index.
- 'Definiera ANSI-färg
-
- ;**************************************************************************
- ;The fourth shell page, also added for 40.30
- ;**************************************************************************
-
- #488
- ;ViNCEd Shell Page 5 (of 5) :
- 'ViNCEd Shell sida 5 (av 5) :
-
- ;Help...
- 'Hjälp...
-
- ;« 1st Page
- '« Sida 1
-
- ;Name only qualifier
- ;Setup the qualifier for icon-drop, used to indicate that the user wants
- ;to insert the name of the dropped icon only.
- 'Namn-endast-tangent
-
- ;Path only qualifier
- ;The same, but for the path-only icon drop modifier
- 'Sökväg-endast-tangent
-
- ;The names of the keys. Shouldn't change until they are labeled
- ;differently at your local keyboard. All are present twice, once for
- ;the name only and once for path only. Please change both if you
- ;have to change them at all.
-
- ;Shift
- 'Shift
-
- ;Shift
- 'Shift
-
- ;Control
- 'Control
-
- ;Control
- 'Control
-
- ;Alt
- 'Alt
-
- ;Alt
- 'Alt
-
- ;Commodore
- ;The left amiga key
- 'Commodore
-
- ;Commodore
- 'Commodore
-
- ;************************************************************************
- ;The fourth edit page, also added later on
- ;************************************************************************
-
- #504
- ;ViNCEd Edit page 4 (of 5) :
- 'ViNCEd Redigering sida 4 (av 5) :
-
- ;Help
- 'Hjälp...
-
- ;5th page »
- 'Sida 5 »
-
- ;Invisible type ahead
- ;Enable the type ahead. Typing while no input is requested won't go into
- ;the window, it is instead buffered and displayed as soon as some
- ;program wants to read keyboard input.
- 'Buffrad förinskrivning
-
- ;Enable scrollers in RAW mode
- ;Allow scroller usage, even in RAW mode. The scrollers are usually
- ;ghosted (disabled), but when this flag is turned on you MAY scroll
- ;in the window. This works like an implicit XTerm mode for RAW windows.
- 'Draglister i RAW-läge
-
- ;Inverse ANSI coloring
- ;Swap the meaning of ANSI black and white for better readability. Does
- ;work ONLY in the ANSI mode.
- 'Inverterade ANSI-färger
-
- ;Numeric keypad cursor control
- ;Use the numeric keypad for cursor and history movement, not for number
- ;input. 8 and 2 replace ALT+cursor, 4 and 6 the left and right cursor keys
- ;7 and 1 scroll to the top / end of the buffer, 9 and 3 scroll upwards and
- ;downwards one page. 5 moves to the end of the line, and 0 toggles
- ;overwrite/insert mode
- 'Markörstyrning via numeriskt tangentbord
-
- ;Mouse clicks do not block
- ;If the XTerm mode is not enabled and you click into the window, the
- ;output of a printing program is usually stopped, to allow user inter-
- ;action. If, however, this flag is set, printing resumes immediately.
- 'Musklick blockerar ej
-
-
- ;************************************************************************
- ;The third window page
- ;************************************************************************
- ;
- ;Some miscellaneous window control flags have been added here. This page
- ;is new to 40.33
- ;
- #513
- ;ViNCEd window page 3 (of 3):
- 'ViNCEd Fönster sida 3 (av 3) :
-
- ;Help...
- 'Hjälp...
-
- ;« 1st Page
- '« Sida 1
-
- ;Disable horizontal scroller
- ;Prevents ViNCEd from adding a horizontal scroller by default.
- ;The scroller can be requested with a PROPX in the window open path
- ;explicitly.
- 'Ingen horizontell draglist
-
- ;Disable vertical scroller
- ;Same for the vertical scroll bar.
- 'Ingen vertikal draglist
-
- ;************************************************************************
- ;The fifth edit page, new to 40.15
- ;************************************************************************
-
- #528
- ;ViNCEd Edit page 5 (of 5) :
- 'ViNCEd Redigering sida 5 (av 5) :
-
- ;Help
- 'Hjälp...
-
- ;« 1st page
- '« Sida 1
-
-
- ;Exchange A+BS/Del with S+A+BS/Del
- ;Swap the keyboard layout of these two delete-related settings.
- ;If checked, Alt+Del and Alt+Bs erase the end/beginning of the line
- ;Delete user input and delete word are mapped to the same keys with
- ;Shift as additional qualifier
- 'Byt A+BS/Del och S+A+BS/Del
-
- ;Keep bottom of window adjusted
- ;The bottom line of the window will be scrolled down to the bottom border
- ;of the window on resize, giving the old CON: behaiviour.
- 'Justera fönstrets underkant
-
- ;Rigid XTerm cursor
- ;If selected, the cursor position can't be set with a mouse click
- ;if the XTerm mode is enabled. Ignored if XTerm mode is not set.
- 'Låst XTerm-markör
-
-
- ;************************************************************************
- ;The fourth shell page, new to 40.15
- ;************************************************************************
- ;
- ;This page was inserted between the third and forth shell page in 40.15.
- ;The former forth page is now the fifth page and defined above...
- ;
-
- #544
- ;ViNCEd Shell page 4 (of 5) :
- 'ViNCEd Shell sida 4 (av 5) :
-
- ;Help
- 'Hjälp...
-
- ;5th page »
- 'Sida 5 »
-
-
- ;Icon files don't match implicitly
- ;Don't add ".info" files to the TAB expansion list unless the user asks
- ;for them by giving a pattern ending with .info
- '.info-filer matchar inte implicit
-
- ;Shorter command search paths
- ;Truncate the search path for commands even more. If this is enabled,
- ;the "Partial Path" C: and CurrentDir() is used with the
- ;"Search commands in current and C: only" disabled, and only the current
- ;dir is used if both flags are enabled.
- 'Kortare kommandosökvägar
-
- ;New for 3.53
- ;Keep duplicates in history
- ;If two identical lines are entered, only the first one will go
- ;to the history by default. If this flag is selected, both will
- ;and ViNCEd won't scan any more for identical commands.
- 'Behåll dubletter i historien
-
- ;************************************************************************
- ;That's all folks!
- ;
-