home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 106 / af106a.adf / archives / serious.lzx / ViNCEd / Localize! / prefs.construct next >
Text File  |  1997-11-19  |  49KB  |  1,482 lines

  1. ;*************************************************************************
  2. ;** Locale constructor V40.21 ViNCEd prefs part                         **
  3. ;**                                                                     **
  4. ;** This is a constructor/shell script for CreateCatalog. Please read   **
  5. ;** the instructions below carefully.                                   **
  6. ;*************************************************************************
  7. ;
  8. ;       This file has two purposes:
  9. ;
  10. ;       First it acts as a shell script that must be "execute"d to 
  11. ;       build the catalog with one command
  12. ;       Second, it tells CreateCatalog how to build the
  13. ;       catalog. Thus, this file gets a) executed by the shell
  14. ;       and b) is parsed by CreateCatalog. This is possible due to
  15. ;       the special syntax of CreateCatalog.
  16. ;       All lines starting with a semicolon or a blank space are comments
  17. ;       for CreateCatalog. Thus these lines and the lines that act as
  18. ;       a shell script are ignored by the catalog builder: The former
  19. ;       because they have the semicolon, the later because I added a
  20. ;       blank space at the beginning.
  21. ;
  22. ;       Shell script part of the catalog builder:
  23. ;       
  24. ; no assembler is needed for this part. This time the complete job can
  25. ; be done by CreateCatalog, and the strings of the locale are in 
  26. ; THIS file.
  27. ;
  28. ;       The next line starts the catalog builder:
  29. ;       The arguments are: This file (instructions how to build)
  30. ;                          the output file (will be put to RAM:)
  31. ;                          the language: Please change "deutsch" to
  32. ;                               your language, i.e. "italiano" or "français".
  33. ;                          and the version/revision of the catalog.
  34. ;                               Here version 40.21 (40 is internal for release 3)
  35.  
  36. ;
  37. ;*************** Edit this line below *************************************
  38.  vl:bin/CreateCatalog vl:prefs.construct ram:VNC.prefs.catalog deutsch 40 21
  39. ;                                                               ^^^^^
  40. ;                                                       This string must be
  41. ;                                                       adjusted !
  42.  quit 
  43. ;
  44. ; End of the shell script. quit is used to prevent the shell from parsing the
  45. ; lines below.
  46. ;
  47. ; Here we use another set of CreateCatalog commands.
  48. ; The '#' command sets the string counter to a specific value.
  49. ; There's no need to change these lines.
  50. ;
  51. ; The 'lines contain the actual strings that replace the english (default) strings
  52. ; The lines starting with a semicolon are again comments and ignored
  53. ; by the catalog builder. Thus you ONLY NEED TO EDIT the lines starting with
  54. ; the apostrophe '.
  55. ; Please note that unlike in the "sys" part of the localization, the
  56. ; reverse apostrophe ` IS NOT USED HERE!
  57. ;
  58. ; Please note that you MUST surround these strings with an additional pair
  59. ; of double quotes if you want to include leading/following blank spaces.
  60. ; The usual C style syntax is used for special charaters, like
  61. ; \r for carriage return        \n for newline
  62. ; \t for TAB                    \b for backspace
  63. ; \\ for the backslash itself. It is the same syntax that is used in the
  64. ; ViNCEd macros, so propably read this section of the guide.
  65. ;
  66. ;
  67. ; Since this is taken from the german localization, I put the original
  68. ; english strings ON TOP of the german ones, plus some information
  69. ; when this string gets printed/displayed.
  70. ;
  71. ;***************************************************************************
  72. ;Strings of the startup-segment
  73. ;***************************************************************************
  74. #1
  75. ;unkown command.                                Printed if you pass an illegal argument to SetVNC
  76. 'unbekanntes Kommando.
  77.  
  78. ;required subcommand missing                    Printed if a subcommand needs a sub argument that is missing.
  79. 'benötigtes Teilkommando fehlt.
  80.  
  81. ;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
  82. 'unbekanntes Teilkommando.
  83.  
  84. ;required argument missing                      Printing if a command takes an argument that is not present
  85. 'benötigtes Argument fehlt.
  86.  
  87. ;boolean value neither ON nor OFF.              The parser expected an ON or OFF as argument.
  88. 'boolscher Wert weder ON noch OFF.
  89.  
  90. ;invalid numeric value.                         The parser expected a number. The one supplied was invalid
  91. 'ungültiger Zahlenwert.
  92.  
  93. ;out of memory                                  SetVNC has not enough memory.
  94. 'Speicher fehlt.
  95.  
  96. ;Failed parsing "%s" : %s \n\r                  Printed if the parsing of an arugment failed. 
  97. ;The first %s is substituted with the argument name, the second with the failure type, from above.
  98. ;The \n\r code is a newline command. 
  99. ;(Here both, newline plus line feed since someone may have turned ViNCEd's
  100. ; auto CR off)
  101. 'Fehler beim Bearbeiten von "%s" : %s\n\r
  102.  
  103. ;SetVNC failure: Need AT LEAST vnc.library version 40.00.       Printed if SetVNC failed to open the vnc.library
  104. 'SetVNC Fehler: Es wird MINDESTENS die Version 40.00 der vnc.library benötigt.\n\r
  105.  
  106. ;SetVNC failure: Can't open needed libraries.                   Printed if some generic libs are missing (asl/dos/gfx/intuition)
  107. 'SetVNC Fehler: Benötigte Bibliotheken können nicht geöffnet werden.\n\r
  108.  
  109. ;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.
  110. 'SetVNC Fehler: Ein ViNCEd-Stream wird als Ausgabekanal benötigt.\n\r
  111.  
  112. ;"DOS failed    "               A generic failure message if some DOS function returned an error
  113. '"DOS Fehler    "
  114.  
  115. ;%s: error code %ld.\n\r        A generic error code if no standard fail message of the DOS could be found.
  116. ;       %s is substituted with the text above, and %ld is the DOS error number.
  117. '%s: Fehler-Code %ld.\n\r
  118.  
  119. ;"Usage: SetVNC "               The title of the text that is printed if you specify "?" as argument
  120. '"Aufruf: SetVNC "
  121.  
  122. ;" O.K. "                       This text is put into the fail requester (it has only one button)
  123. '" O.K. "
  124.  
  125. ;***************************************************************************
  126. ;Strings of the prefs-loader
  127. ;***************************************************************************
  128. ;
  129. ;these strings are printed if the loading/saving of some prefs can't be done
  130. ;
  131. #16
  132. ;"SetVNC failure: Unable to save preferences as "               Printed if SetVNC failed to save the prefs as a file.
  133. ;The actual file name is put behind this text.
  134. '"SetVNC-Fehler: Kann Voreinstellungen nicht abspeichern unter \n\r"
  135.  
  136. ;SetVNC failure: No memory for preferences.                     Due to a lack of memory ViNCed can't build them
  137. 'SetVNC-Fehler: Speicher für die Voreinstellungen fehlt.\n\r
  138.  
  139. ;SetVNC failure: Can't get preferences from active window.      SetVNC can't load the prefs of the window it was invoked in.
  140. 'SetVNC-Fehler: Voreinstellungen können nicht vom Fenster geholt werden.\n\r
  141.  
  142. ;SetVNC failure: Can't get global preferences.                  SetVNC can't load the global ("Used") prefs.
  143. 'SetVNC-Fehler: Die globalen Voreinstellungen können nicht geholt werden.\n\r
  144.  
  145. ;SetVNC failure: Can't get default preferences.                 The defaults were unavailable.
  146. 'SetVNC-Fehler: Die Standard-Voreinstellungen können nicht geholt werden.\n\r
  147.  
  148. ;"SetVNC failure: Can't get preferences from file "             SetVNC failed to load the prefs from a given file.
  149. ;The actual file name is printed behind this text
  150.  
  151. ;SetVNC failure: Can't get preferences from file                SetVNC failed to load a given prefs file.
  152. ;The file name is printed behind this text
  153. '"SetVNC-Fehler: Kann die Voreinstellungen nicht Lesen von der Datei "
  154.  
  155. ;SetVNC failure: Can't get last saved preferences.              SetVNC failed to load the prefs beeing saved as global prefs.
  156. 'SetVNC-Fehler: Die zuletzt gespeicherten Voreinstellungen können nicht gelesen werden.\n\r
  157.  
  158. ;SetVNC failure: Can't construct macro list.                    The list of the macros can't be setup
  159. 'SetVNC-Fehler: Kann die Makro-Liste nicht erstellen.\n\r
  160.  
  161. ;SetVNC failure: Can't build macros from list.                  The list of the macros can't be installed into the prefs.
  162. 'SetVNC-Fehler: Kann die Makro-Liste nicht in die Voreinstellungen einbauen.\n\r
  163.  
  164. ;SetVNC failure: Can't install preferences into active window.  The window SetVNC was invoked in did not accept the new prefs.
  165. 'SetVNC-Fehler: Kann die Voreinstellungen des aktiven Fensters nicht ändern.\n\r
  166.  
  167. ;SetVNC failure: Can't install preferences into library base.   The prefs have been rejected as global ("Used") prefs.
  168. 'SetVNC-Fehler: Kann die Voreinstellungen der Bibliothek nicht ändern.\n\r
  169.  
  170. ;***************************************************************************
  171. ;Strings of the shell-commands
  172. ;***************************************************************************
  173. ;
  174. ;Strings used for one of the many in-place actions.
  175. ;
  176. #32
  177. ;TabHook installed.             The TAB expansion has been turned on.
  178. ;The notation "TABHook" is a bit antique and due to some earlier release
  179. ;of ViNCEd, where this feature was done by an external "Hook" program.
  180. 'TabHook ist installiert.\n\r
  181.  
  182. ;TabHook removed.               The TAB expansion has been turned off.
  183. 'TabHook wurde entfernt.\n\r
  184.  
  185. ;"The TabHook is no longer driven by an external supervisor.\n\rThe "hook" is now removed and the command was ignored.\n\r
  186. ;This text explains that the TAB expansion has been removed, and that this
  187. ;feature is now internal - no external process is needed.
  188. 'Der TabHook wird nicht mehr von einem externen Prozeß gesteuert.\n\rDer "TabHook" wurde entfernt und das Kommando ignoriert.\n\r
  189.  
  190. ;The specified number of lines is invalid.      The size of a buffer given to SetVNC is too large or too small.
  191. 'Die angegebene Zeilenanzahl ist außerhalb des erlaubten Bereiches.\n\r
  192.  
  193. ;The specified time interval is invalid.        The time (blink speed/refresh interval etc..) is too short or too long.
  194. 'Das angegebene Zeitintervall ist außerhalb des erlaubten Bereiches.\n\r
  195.  
  196. ;*** The next ones are new to 40.12....
  197.  
  198. ;The specified monitor does not exist.          The monitor name was not found in the monitor data base.
  199. 'Der angegebene Monitor existiert nicht.
  200.  
  201. ;The 1.2/1.3 workbench does not support monitor names.\n\rUse MONITORID instead.\n\r
  202. ;SetVNC complains of a MONITOR argument which is useless with WB 1.2/1.3 since the monitor data
  203. ;base was introduced in 2.0
  204. 'Die 1.2/1.3 Workbench unterstützt keine Monitornamen.\n\rVerwenden Sie stattdessen MONITORID.\n\r
  205.  
  206. ;The specified qualifier is invalid.\n\r
  207. ;The user gave a qualifier for the icon drop modifier which is useless (like caps or the "number pad" qualifier).
  208. 'Der angegebene Qualifier ist ungültig.\n\r
  209.  
  210. ;***************************************************************************
  211. ;Strings of the mounter
  212. ;***************************************************************************
  213. ;
  214. ; This string is used by the "MOUNT" command on failure
  215. ;
  216. #64
  217. ;"Can't mount ViNCEd as "               Printed if mount failed.
  218. ;The device name which should be replaced by VNC: (usually CON:) is 
  219. ;printed BEHIND this text.
  220. '"ViNCEd kann nicht gemountet werden als "
  221.  
  222. ;***************************************************************************
  223. ;Strings for the job control functions fg,bg
  224. ;***************************************************************************
  225. ;
  226. ;
  227. #72
  228. ;SetVNC failure : Nothing found to put in foreground instead.\n\r       SetVNC's bg failed since
  229. ;there's no process that can't be put in foreground to replace the current one.
  230. 'SetVNC-Fehler: Es fehlt ein Prozeß, der stattdessen in den\n\rVordergrund geschickt werden kann.\n\r
  231.  
  232. ;SetVNC failure : Can't send this process to foreground.\n\r            The process can't be set
  233. ;to foreground for some reason.
  234. 'SetVNC-Fehler: Dieser Prozeß kann nicht in den Vordergrund geschickt werden.\n\r
  235.  
  236. ;SetVNC failure : CLI process not found.\n\r                            The CLI number of the process
  237. ;to set to foreground does not exist.
  238. 'SetVNC-Fehler: Der angegebene CLI-Prozeß existiert nicht.\n\r
  239.  
  240. ;SetVNC failure : This process is not under my control.\n\r             The process corresponding to
  241. ;the given CLI number exists, but was not under control of the ViNCEd process in the window
  242. ;SetVNC was invoked in - propably it is not under control of ViNCEd at all, or propably it runs
  243. ;in a different window.
  244. 'SetVNC-Fehler: Dieser Prozeß ist nicht unter meiner Kontrolle.\n\r
  245.  
  246. ;***************************************************************************
  247. ;Strings for the guide-loading module
  248. ;***************************************************************************
  249. ;
  250. ;
  251. #80
  252. ;SetVNC failure: Can't load help browser.\n\r                           The help program (usually MultiView)
  253. ;can't been loaded. Propably it is missing or its location (found in the "default tool") is
  254. ;wrong
  255. 'SetVNC-Fehler: Kann den Hilfstext-Browser nicht laden.\n\r
  256.  
  257. ;SetVNC failure: Can't find help database.\n\r          SetVNC was unable to locate the
  258. ;VNC.guide. It's location is kept in the tooltypes of the SetVNC program.
  259. 'SetVNC-Fehler: Kann den Hilfetext nicht finden.\n\r
  260.  
  261.  
  262. ;***************************************************************************
  263. ;Strings used by the prefs editor
  264. ;***************************************************************************
  265. ;
  266. ;
  267. ;
  268. #128
  269. ;SetVNC failure : Can't install the prefs requester.\n\r
  270. ;Printed if SetVNC failed to build its requester into the window.
  271. 'SetVNC-Fehler: Der Voreinstellungs-Requester\n\rkann nicht erstellt werden.\n\r
  272.  
  273. ;SetVNC failure : Can't build requester page.\n\r
  274. ;Printed if SetVNC failed to draw a "page" of the prefs, i.e. construction
  275. ;of the gadgets failed.
  276. 'SetVNC-Fehler: Die Voreinstellungs-Seite\n\rkann nicht aufgebaut werden.\n\r
  277.  
  278. ;SetVNC failure : Can't write string back into prefs.
  279. ;Printed if some of the strings (usually the macros) can't be re-installed
  280. ;to the prefs.
  281. 'SetVNC-Fehler: Die Änderung kann nicht in die\n\rVoreinstellungen zurückgeschrieben werden.\n\r
  282.  
  283. ;Please locate guide :
  284. ;This is the title of the file requester that appears to choose the VNC.Guide
  285. 'Bitte die Hilfe-Datei auswählen :
  286.  
  287. ;Please locate the guide path\n\rin the "System" menu.\n\r
  288. ;The contents of a failure requester in case the user requested for help,
  289. ;but SetVNC does not yet know the location of the VNC.guide.
  290. 'Bitte zuerst die Hilfe-Datei\n\rim "System"-Menü einstellen.\n\r
  291.  
  292. ;SetVNC failure : Out of chip mem for images.\n\r
  293. ;Chip memory failed for the magnification of the title picture
  294. ;(ViNCEd-logo & the Elf & THOR-Software text)
  295. 'SetVNC-Fehler: Chip-Speicher für die Bilder fehlt.\n\r
  296.  
  297. ;The next ones are new to 40.11
  298.  
  299.  
  300. ;The font name is invalid.\n\rPlease specify it as <name>.<size>\n\r
  301. ;SetVNC complains about an invalid font name in the font string gadget
  302. ;of the window page.
  303. 'Der Schriftname ist ungültig.\n\rBitte geben Sie ihn als <Name>.<Größe> an.\n\r
  304.  
  305. ;The specified font can't be found.\n\r
  306. ;SetVNC can't find the font the user requested.
  307. 'Die angegebene Schrift wurde nicht gefunden.\n\r
  308.  
  309. ;The specified monitor does not exist.\n\r
  310. ;The monitor id in the monitor string gadget
  311. 'Der angegebene Monitor wurde nicht gefunden.\n\r
  312.  
  313. ;ASL.library V37 is missing.\n\r
  314. ;SetVNC needs ASL 37.xx for the font requester.
  315. 'ASL.library V37 fehlt.\n\r
  316.  
  317. ;ASL.library V38 needed.\n\r
  318. ;The V38 version of ASL must be present for the screen mode requester.
  319. 'ASL.library V38 wird benötigt.\n\r
  320.  
  321. ;Select default font:
  322. ;The title of the font requester.
  323. 'Standardschrift wählen:
  324.  
  325. ;Default monitor ID:
  326. ;The title of the screen mode requester
  327. 'Standardmonitor wählen:
  328.  
  329. ;Can't create font requester.\n\r
  330. ;ASL returned a failure building the font requester, for what reason ever.
  331. 'Der Schriftrequester kann\n\rnicht aufgebaut werden.\n\r
  332.  
  333. ;Can't create screen mode requester.\n\r
  334. ;ASL failed to construct the screen mode requester.
  335. 'Der Monitorrequester kann\n\rnicht aufgebaut werden.\n\r
  336.  
  337. ;***************************************************************************
  338. ;The page names
  339. ;***************************************************************************
  340. ;
  341. ; The next ones are the page names that are printed in the
  342. ; top row of each page. PLEASE KEEP THEM VERY SHORT, since the
  343. ; room is limited.
  344. ; WARNING: One of the names changed in 40.30: The buffers page is
  345. ; now called "Window"
  346. ;
  347. ;
  348. ;Page-Names
  349. #192
  350. ;About          Title of the page that contains the logo.
  351. 'Über
  352.  
  353. ;Macros         The macros (for the menu) setup pages
  354. 'Makros
  355.  
  356. ;Buttons        The buttons (for the titlebar) setup pages
  357. 'Knöpfe
  358.  
  359. ;Edit           Lots of flags for the editor behaiviour
  360. 'Edit
  361.  
  362. ;Shell          Lots of stuff for the shell:TAB Expansion plus some more
  363. 'Shell
  364.  
  365. ;Window         The page to setup window related stuff, and custom screens (new to 40.30)
  366. 'Fenster
  367.  
  368. ;Timing         Blink speeds, rebuild delay setup
  369. 'Timing
  370.  
  371. ;System         A lot of internal system settings (system macros & flags)
  372. 'System
  373.  
  374. ;***************************************************************************
  375. ;Strings used by the on-line help
  376. ;***************************************************************************
  377. ;
  378. ; These strings are used whenever the user requested help thru one
  379. ; of the "HELP" buttons on the pages and the help failed for some
  380. ; reason. They are put into requesters with an "O.K." button.
  381. ; The text for the button is in one of the strings on top
  382. ;
  383. ;
  384. #208
  385. ;SetVNC failure : Need amigaguide.library V34 or better.\n\r
  386. ;The amigaguide.library which is used to display the VNC.guide is
  387. ;missing
  388. 'SetVNC-Fehler: Es wird die amigaguide.library\n\rVersion 34 oder besser benötigt.\n\r
  389.  
  390. ;SetVNC failure : Can't open the specified guide file.\n\r
  391. ;amigaguide.library failed to open the requested guide. Propably it is 
  392. ;missing, or the location (setup by in the system page) is not correct,
  393. ;or maybe it's the wrong file
  394. 'SetVNC-Fehler: Die angegebene Hilfe-Datei kann nicht geöffnet werden.\n\r
  395.  
  396. ;SetVNC failure : Can't find the requested help node.\n\r
  397. ;The help node requested is not in the guide. Propably the guide
  398. ;must be updated, since I added some nodes to it in the past...
  399. 'SetVNC-Fehler: Der benötigte Hilfe-Text fehlt.\n\r
  400.  
  401. ;"SetVNC failure : "
  402. ;Some error condition has occured. The string amigaguide returned as
  403. ;failure code is appended to this one and forms the complete fail
  404. ;message.
  405. '"SetVNC-Fehler: "
  406. ;
  407. ;Unknown amigaguide failure
  408. ;This one gets appended to the string on top if amigaguide did not
  409. ;return a readable failure code
  410. 'Unbekannter AmigaGuide-Fehler
  411.  
  412. ;***************************************************************************
  413. ;Strings used by the buffer load/save module. New to 40.35
  414. ;***************************************************************************
  415. ;
  416. ; These strings are used by the buffer saving/loading routine
  417. ; i.e. subcommands SetVNC get / put
  418. ;
  419. #224
  420. ;***Break\n\r
  421. ;Printed if the loading gets aborted
  422. '*** Abbruch\n\r
  423.  
  424. ;Some obsolete strings follow. They are partially replaced
  425. ;by strings in the ViNCEd module since bufferI/O is now
  426. ;a part of the library, not of SetVNC.
  427. ;SetVNC calls the proper library functions, that's all!
  428. ;
  429. ;*** this one is obsolete ***
  430. ;SetVNC failed writing the line buffer.\n\r
  431. ;A generic IO error generated if something went wrong while writing
  432. ;some part of the buffer lines, either the history or the screen.
  433. 'SetVNC kann den Zeilenbuffer nicht schreiben.\n\r
  434.  
  435. ;*** this one is obsolete ***
  436. ;SetVNC failed reading the line buffer.\n\r
  437. ;Another generic error if something went wrong while reading a line
  438. ;buffer, either the history or the screen.
  439. 'SetVNC kann den Zeilenbuffer nicht lesen.\n\r
  440.  
  441. ;*** this one is obsolete
  442. ;SetVNC failed to open %s\n\r
  443. ;This error is generated if SetVNC failed to open the buffer file, i.e.
  444. ;can't create a line buffer file for writing or failed to open the buffer
  445. ;file for reading. %s is replaced by the name of the file.
  446. 'SetVNC kann %s nicht öffnen.\n\r
  447.  
  448.  
  449. ;******* New strings in here!
  450. ;
  451. ;This text is printed if the new SetVNC release is 
  452. ;used with an obsolete library that does not provide the 
  453. ;buffer I/O functions. Please note the escaped line feeds
  454. ;at the end!
  455. ;You are using an obsolete version of ViNCEd!\
  456. ;\rBuffer I/O operations have to be supported by the library,\
  457. ;\rplease upgrade to 43.50 or better.\n\r
  458. 'Sie benutzen eine veraltete ViNCEd-Version!\
  459. \rDie Lade- und Speicherfunktionen müssen nun von der\
  460. \rBibliothek übernommen werden, bitte besorgen Sie\
  461. \rein Update auf 43.50 oder besser.\n\r
  462. ;
  463. ;
  464. ;The next strings are inserted as names of the failure operation
  465. ;this is the first "%s" in the text below.
  466. ;
  467. ;The first text is shown if the history can't be saved: 
  468. ;ViNCed failed to... (text goes here)
  469. ;save the history
  470. 'die History abspeichern
  471. ;
  472. ;Same for the window contents:
  473. ;save the line buffer
  474. 'den Fensterinhalt speichern
  475. ;
  476. ;Loading the history failed here
  477. ;load the history
  478. 'die History einladen
  479. ;
  480. ;Loading the screen failed
  481. ;load the line buffer
  482. 'den Fensterinhalt laden
  483. ;
  484. ;
  485. ;This is the first failure requester body. The first "%s" here is replaced
  486. ;by one of the strings shown above, related to which operation failed.
  487. ;The second "%s" is the file name.
  488. ;Try to formulate this in a way that you get a complete sentence that
  489. ;makes some sense! Note the escaped line feeds at the end!
  490. ;SetVNC failed to %s.\
  491. ;\rOut of memory while processing %s.\n\r
  492. 'SetVNC konnte nicht %s,\
  493. \res fehlt Speicher.\n\r
  494. ;
  495. ;
  496. ;The next one is printed if a file can't be opened. The first "%s" is
  497. ;replaced with one of the four operation strings above, the second
  498. ;"%s" is the file name.
  499. ;SetVNC failed to %s:\
  500. ;\rCan't open %s.\n\r
  501. 'SetVNC konnte nicht %s:\
  502. \r%s kann nicht geöffnet werden.\n\r
  503. ;
  504. ;
  505. ;The same, but the failure reason is this time located in a
  506. ;read error
  507. ;SetVNC failed to %s:\
  508. ;\rCan't read %s.\n\r
  509. 'SetVNC konnte nicht %s:\
  510. \r%s kann nicht gelesen werden.\n\r
  511. ;
  512. ;
  513. ;Again the same, but writing failed:
  514. ;SetVNC failed to %s: Can't write %s.\n\r
  515. 'SetVNC konnte nicht %s:\
  516. \r%s kann nicht geschrieben werden.\n\r
  517. ;
  518. ;
  519. ;And last but not least: A generic text if the failure
  520. ;condition is unkown. A DOS error code is appended.
  521. ;SetVNC failed to %s:\n\r
  522. 'SetVNC konnte nicht %s:\n\r
  523. ;
  524. ;
  525. ;
  526. ;
  527. ;***************************************************************************
  528. ;Strings used in the pages
  529. ;***************************************************************************
  530. ;
  531. ; the next strings are put into the pages, mostly as
  532. ; gadget names. So please try if the strings are "short enough" to
  533. ; fit into the buttons. The spacing is *worst* for fixed-width fonts
  534. ; but the actual point size does not matter since everything gets
  535. ; rescaled automagically. Proportional fonts tend to give a
  536. ; more relaxed spacing, so you should try this with topaz.8
  537. ; although this font is usually "too tiny".
  538. ;
  539. ;***************************************************************************
  540. ;Strings common to all pages: The bottom bar
  541. ;***************************************************************************
  542. ;
  543. ;!!! Warning: The "Save" string has moved TO THE END of this collection!!!
  544. ;
  545. #257
  546. ;Use                            Use prefs globally
  547. 'Benutzen
  548.  
  549. ;To Window                      Try in window SetVNC was called from only.
  550. 'im Fenster
  551.  
  552. ;Cancel                         Abort SetVNC without saving
  553. 'Abbrechen
  554.  
  555. ;***************************************************************************
  556. ;Buttons in the about page
  557. ;***************************************************************************
  558. ;
  559. ;
  560. ;Last Saved                     Reload prefs from default location
  561. 'Zuvor gsp.
  562.  
  563. ;Last Used                      Reload global prefs
  564. 'Benutzten
  565.  
  566. ;Window                         Reload prefs from the window SetVNC was invoked from.
  567. 'Fenster
  568.  
  569. ;Default                        Load defaults.
  570. 'Standard
  571.  
  572. ;Restore settings from:         This text is put in front of the button above. Propably this
  573. ;together with the gadget text should form a sentence.
  574. 'Voreinstellungen einlesen vom :
  575.  
  576. ;About                          Loads the main node of the VNC.guide.
  577. 'Über...
  578.  
  579. ;***************************************************************************
  580. ;The save button was moved to this place...
  581. ;***************************************************************************
  582.  
  583. ;Save                           Save prefs to default location (ENVARC: & ENV:)
  584. 'Speichern
  585.  
  586. ;***************************************************************************
  587. ;Buttons in the macros pages
  588. ;***************************************************************************
  589. ;
  590. ;
  591. ;
  592. #272
  593. ;ViNCEd Macros Page 1 (of 2) :          The page title, giving the name 
  594. ;of the page, the number if there's more than one page for the topic
  595. ;plus the total number of pages for this topic.
  596. 'ViNCEd Makros Seite 1 (von 2) :
  597.  
  598. ;Help...                                Common to all pages: The HELP button
  599. ;it loads the VNC.Guide and displays the node for the page this button is on.
  600. 'Hilfe...
  601.  
  602. ;2nd Page »                             The link to the other page. This
  603. ;button is also very common.
  604. ;New in 3.53: These strings are no longer needed. Leaving them
  605. ;empty is fine as well...
  606. '2. Seite »
  607.  
  608. ;Macro 0                        These gadgets just count thru the
  609. ;number of macros. 0-4 are on the first page
  610. 'Makro 0
  611.  
  612. ;Macro 1
  613. 'Makro 1
  614.  
  615. ;Macro 2
  616. 'Makro 2
  617.  
  618. ;Macro 3
  619. 'Makro 3
  620.  
  621. ;Macro 4
  622. 'Makro 4
  623.  
  624. ;***************************************************************************
  625. ;
  626. ;Second macro page
  627. ;
  628. #288
  629. ;ViNCEd Macros Page 2 (of 2) :
  630. 'ViNCEd Makros Seite 2 (von 2) :
  631.  
  632. ;Help
  633. 'Hilfe...
  634.  
  635. ;« 1st Page                     ;Link back. Note that the arrow points
  636. ;to the opposide direction.
  637. '« 1. Seite
  638.  
  639. ;Macro 5
  640. 'Makro 5
  641.  
  642. ;Macro 6
  643. 'Makro 6
  644.  
  645. ;Macro 7
  646. 'Makro 7
  647.  
  648. ;Macro 8
  649. 'Makro 8
  650.  
  651. ;Macro 9
  652. 'Makro 9
  653.  
  654. ;***************************************************************************
  655. ;Buttons in the buttons page
  656. ;***************************************************************************
  657. ;
  658. ;There's only one page, so no link buttons...
  659. ;
  660. #304
  661. ;ViNCEd Button Page :
  662. 'ViNCEd Knöpfe :
  663.  
  664. ;Help...
  665. 'Hilfe...
  666.  
  667. ;Button title :"
  668. ;Put in front of the gadget that contains the name of a button, i.e. what
  669. ;gets printed in the title bar.
  670. 'Titel :
  671.  
  672. ;Remove
  673. ;A button to remove a button from the list
  674. 'Entfernen
  675.  
  676. ;Insert
  677. ;A button to insert a new button between others
  678. 'Einfügen
  679.  
  680. ;Command :
  681. ;The text of the macro. This one will be expanded and executed by,
  682. ;well usually the shell.
  683. 'Kommando :
  684.  
  685. ;« Prev
  686. ;A button to go backwards (towards the first) button in the list
  687. '« Zurück
  688.  
  689. ;Next »
  690. ;A button to go forwards (towards the last) button
  691. 'Vorwärts »
  692.  
  693. ;The next one is new to 40.30:
  694. ;"Key : F%ld "
  695. ;This one expands into the key related to the current button in the
  696. ;window. "%ld" is replaced by a number from 1 to 10. Please note the
  697. ;space at the end, which is needed!
  698. '"Taste : F%ld "
  699.  
  700. ;***************************************************************************
  701. ;Buttons in the edit pages
  702. ;***************************************************************************
  703. ;
  704. ;These strings are used in the four pages for editor features.
  705. ;
  706. ;A fourth page has been added in 40.33 which is now at the end of this
  707. ;file.
  708. ;A fifth page was added in 40.41!
  709. ;
  710. ;
  711. #320
  712. ;ViNCEd Edit Page 1 (of 5) :                    The title
  713. 'ViNCEd Editor Seite 1 (von 5) :
  714.  
  715. ;Help...
  716. 'Hilfe...
  717.  
  718. ;2nd Page »
  719. '2. Seite »
  720.  
  721. ;Unrestricted cursor movement
  722. ;Same as the "DOS Cursor mode" in the menu. Used to move the cursor 
  723. ;like the DOS, without restrictions. For example, backspace does not
  724. ;stop on the shell prompt if this is turned on.
  725. 'Uneingeschränkte Cursorbewegung
  726.  
  727. ;CR inserts below at start of line
  728. ;What happends if return gets pressed at the beginning of a line
  729. ;If this is turned on, a RETURN key press is not special at the beginning of
  730. ;a line. If turned off, it will insert a line on top instead of below.
  731. 'CR fügt am Zeilenanfang unterhalb ein
  732.  
  733. ;TAB moves, no insertion
  734. ;Determinates the operation of the TAB key
  735. 'TAB bewegt den Cursor und fügt nicht ein
  736.  
  737. ;Overwrite Text
  738. ;Insertion mode (off) vs. overwrite mode (on):
  739. 'Text überschreiben
  740.  
  741. ;History buffer wraps around
  742. ;The operation of the command history and of the TAB expansion. If turned
  743. ;on, and you reached one end of the history / list of possible expansions,
  744. ;the buffer will wrap around, i.e. starts again at the beginning
  745. 'Eingabebuffer ist zyklisch
  746.  
  747. ;***************************************************************************
  748. ;
  749. ;
  750. #336
  751. ;ViNCEd Edit Page 2 (of 5) :
  752. 'ViNCEd Editor Seite 2 (von 5) :
  753.  
  754. ;Help...
  755. 'Hilfe...
  756.  
  757. ;3rd Page »
  758. '3. Seite »
  759.  
  760. ;Don't write printed text into clipboard
  761. ;Like "Cut inputs only" in the menu: Put only user input into the clipboard
  762. 'Gedruckten Text nicht in die Zwischenablage
  763.  
  764. ;Implicit copy after text marking
  765. ;Copy the marked area immediately into the clipboard, don't wait for a copy
  766. 'Markierten Text sofort in die Zwischenablage
  767.  
  768. ;Swap ALT-cursor and cursor keys
  769. ;History movement by cursor keys, cursor movement by ALT+Cursor if on
  770. 'ALT-Cursortasten mit Cursortasten vertauschen
  771.  
  772. ;Underline cursor
  773. ;instead of a block cursor
  774. 'Unterstrich-Cursor
  775.  
  776. ;Blinking cursor
  777. ;make the cursor blink. Speed is setup in the timing page
  778. 'Blinkender Cursor
  779.  
  780. ;***************************************************************************
  781. ;
  782. ;
  783. #344
  784. ;ViNCEd Edit Page 3 (of 5) :
  785. 'ViNCEd Editor Seite 3 (von 5) :
  786.  
  787. ;Help
  788. 'Hilfe...
  789.  
  790. ;4th Page »
  791. '4. Seite »
  792.  
  793. ;XTerm cursor mode
  794. ;The cursor gets frozen and does not move if you scroll the window or
  795. ;mark a block
  796. 'Cursorbewegung wie in XTerm/CON:
  797.  
  798.  
  799.  
  800. ;The next two are new in 40.30:
  801.  
  802. ;Disable middle mouse button
  803. ;Use the MMB for other programs, not for unix like clipboard control
  804. ;The replacement Ctrl+Left works, however
  805. 'Mittlere Maustaste ignorieren
  806.  
  807. ;Disable BS at start of line
  808. ;Do not join lines if BS is pressed at the start of the line. Ignore
  809. ;it instead!
  810. 'Backspace am Zeilenanfang ausschalten
  811.  
  812.  
  813. ;Extensions made to 40.33:
  814.  
  815.  
  816. ;ANSI colors as default
  817. ;Use the ANSI coloring sheme by default. Can be enabled by hand with the
  818. ;CSI >?8h sequence, see the guide for more on that.
  819. 'ANSI-Farben als Voreinstellung
  820.  
  821. ;Don't scroll into the border
  822. ;Enable hard window scroll borders. Prevent the cursor from goining into
  823. ;"blank" lines and stop scrolling at these boundaries.
  824. 'Nicht in den Rand scrollen
  825.  
  826. ;***************************************************************************
  827. ;There's also a fourth editor page which has been added later on. It is
  828. ;for that reason below in this file...
  829.  
  830. ;***************************************************************************
  831. ;Buttons in the shell page
  832. ;***************************************************************************
  833. ;
  834. ;These pages setup functions related to the shell mode of ViNCEd
  835. ;like TAB expansion and requesters
  836. ;Please note that in 40.30 a fourth one was added to the shell pages,
  837. ;so the titles changed a bit...
  838. ;A fifth page was added to 40.41...
  839. ;
  840. ;
  841. #352
  842. ;ViNCEd Shell Page 1 (of 5) :
  843. 'ViNCEd Shell Seite 1 (von 5) :
  844.  
  845. ;Help...
  846. 'Hilfe...
  847.  
  848. ;2nd Page »
  849. '2. Seite »
  850.  
  851. ;Call macro to close window
  852. ;Like "Smart Close" in the menu
  853. 'Makro zum Fensterschließen aufrufen
  854.  
  855. ;Prevent accidental window closing
  856. ;Like "Safer Close" in the menu: Do not close if more than one process
  857. ;posesses the window
  858. 'Versehentliches Fensterschließen verhindern
  859.  
  860. ;Don't send EOF until everybody waits
  861. ;A very technical setting, determinates what should happen if more than
  862. ;one process is in the window and the user closes the window
  863. 'EOF nur senden, falls alle Prozesse warten
  864.  
  865. ;Don't add close gadget by default
  866. ;If turned on, you must explicitly ask for a CLOSE gadget in the path to
  867. ;get one. By default (since 1.00), ViNCEd windows come always with a 
  868. ;close gadget.
  869. 'Close-Gadget nur auf Anfrage erzeugen
  870.  
  871. ;Don't add iconify gadget by default
  872. ;If turned on, you must ask for a iconify gadget. The default is that all
  873. ;windows that appear on the workbench or that have the FALLBACK option
  874. ;turned on will get an iconifier.
  875. 'Iconifizierungs-Gadget nur auf Anfrage
  876.  
  877. ;**************************************************************************
  878. ;
  879. ;
  880. #368
  881. ;ViNCEd Shell Page 2 (of 5) :
  882. 'ViNCEd Shell Seite 2 (von 5) :
  883.  
  884. ;Help...
  885. 'Hilfe...
  886.  
  887. ;3rd Page »
  888. '3. Seite »
  889.  
  890. ;TAB filename expansion
  891. ;Use TAB instead of Ctrl+TAB in the SHELL mode for file name expansion
  892. 'Filenamen-Erweiterung mit TAB
  893.  
  894. ;Double TAB requester
  895. ;Display a requester if TAB is pressed twice within the double 
  896. ;click interval
  897. 'Doppel-TAB Dateirequester
  898.  
  899. ;First TAB expands fully
  900. ;If not turned on, ViNCEd will try a partial expansion first.
  901. 'Erstes TAB ergänzt vollständig
  902.  
  903. ;Requester if expansion is ambigious
  904. ;If turned on, ViNCEd will display a requester if more than one expansion
  905. ;is possible
  906. 'Requester, falls Ergänzung nicht eindeutig
  907.  
  908. ;Show ViNCEd matches, not directories
  909. ;Don't use a directory requester for the matches, but show the list
  910. ;that ViNCEd generated interally. Additional entries in this list (that
  911. ;can't be shown by a standard requester) are devices, assigns and resident
  912. ;modules. However, you can't go into a directory with this requester
  913. 'ViNCEd Ergänzungen in den Requester
  914.  
  915. ;*************************************************************************
  916. ;
  917. ;
  918. #376
  919. ;ViNCEd Shell Page 3 (of 5) :
  920. 'ViNCEd Shell Seite 3 (von 5) :
  921.  
  922. ;Help...
  923. 'Hilfe...
  924.  
  925. ;4th Page »
  926. '4. Seite »
  927.  
  928. ;Use shell mode by default
  929. ;Turn on shell mode even if the SHELL keyword is missing in the PATH
  930. 'Shell-Modus als Voreinstellung
  931.  
  932. ;The next ones are new to 40.30:
  933.  
  934. ;Search commands in currernt and C: only
  935. ;Speed up TAB expansion of commands by searching them in the
  936. ;current directory and C: only.
  937. 'Nur in C: und im aktuellen Pfad suchen
  938.  
  939. ;Show matching directories first
  940. ;When expanding by hand, the directories are sorted in prior to
  941. ;the devices. THIS DOES NOT change the sorting of the strings
  942. ;in the requester, since this is up to reqtools/asl - only the
  943. ;manual list is sorted differently.
  944. 'Directories zu Beginn einsortieren
  945.  
  946.  
  947. ;Enable close requester
  948. ;Turn on the requester warning if the user wants to close a shell
  949. ;with more than one process running in it.
  950. ;REMARK: The "safer close" setting must be turned on as well, to
  951. ;see this requester.
  952. 'Close-Requester einschalten
  953.  
  954. ;Devices don't match implicitly
  955. ;Don't sort devices into the ViNCEd requester unless the user asked for
  956. ;devices explicitly by giving a ":" as the last part of the search pattern.
  957. 'Devices nicht implizit einsortieren
  958.  
  959.  
  960. ;***************************************************************************
  961. ; The forth & fifth shell page, new to 40.30 is located AT THE END of this
  962. ; file...
  963.  
  964.  
  965. ;***************************************************************************
  966. ;Buttons in the window page
  967. ;***************************************************************************
  968. ;
  969. ;This page is used to setup the size of various buffers for ViNCEd,
  970. ;namely the command history and the visual history, upper and lower part.
  971. ;
  972. ;More is here in 40.30, and a second and third page is available as well
  973. ;The third page was added in 40.33, so please check out to change the titles!
  974. ;
  975. ;
  976. #384
  977. ;ViNCEd Window Page 1 (of 3) :
  978. 'ViNCEd Fenster Seite 1 (von 3) :
  979.  
  980. ;Help...
  981. 'Hilfe...
  982.  
  983. ;History lines :
  984. ;The size of the command history in lines
  985. 'Größe der History :
  986.  
  987. ;Upper Display size :
  988. ;The number of lines that are kept above the visual window, i.e. maximal
  989. ;number of lines scrolled off the window.
  990. 'Obere Zeilen  :
  991.  
  992. ;Lower Display size :
  993. ;The number of lines kept in the opposide direction, including the lines
  994. ;actually visible plus the lines kept below the visible window.
  995. 'Untere Zeilen :
  996.  
  997. ;2nd Page »
  998. ;located at an usual place since I added this later
  999. '2. Seite »
  1000.  
  1001. ;Monitor
  1002. ;The name of the screen mode button
  1003. 'Monitor
  1004.  
  1005. ;Font
  1006. ;The contents of the font selection button
  1007. 'Schrift
  1008.  
  1009. ;***************************************************************************
  1010. ;The second and third window page is at the end of this file!
  1011. ;
  1012.  
  1013. ;***************************************************************************
  1014. ;Buttons in the timing page
  1015. ;***************************************************************************
  1016. ;
  1017. ;Various timing rates are setup with this page
  1018. ;
  1019. ;
  1020. #400
  1021. ;ViNCEd Timing Page :
  1022. 'ViNCEd Timing Seite :
  1023.  
  1024. ;Help...
  1025. 'Hilfe...
  1026.  
  1027. ;Cursor blink speed        :
  1028. ;Setup the blink interval. Units are milliseconds (1 ms = 1 thousands of a second)
  1029. 'Cursor-Blinkzeit (in ms)  :
  1030.  
  1031. ;Vertical scroll threshold :
  1032. ;If vertical scrolling is slower than this, ViNCEd will delay the refresh 
  1033. ;to speedup scrolling. Again measured in ms.
  1034. 'Schranke für Scrollzeit   :
  1035.  
  1036. ;Rebuild delay             :
  1037. ;If this time has passed, ViNCEd will refresh the window. Again in ms.
  1038. 'Zeit bis Wiederaufbau     :
  1039.  
  1040. ;Intuition delay (1.3 only):
  1041. ;Only used with kickstart 1.3 and below. This should be setup to the
  1042. ;usual time needed for intuition to do a window operation, i.e. resize.
  1043. ;Usually the interval of the input device, i.e. 1/10th of a second.
  1044. 'Intuition-Verzögerung(1.3):
  1045.  
  1046. ;Allow delayed window refresh
  1047. ;A checkmark. Must be turned on to allow a delayed refresh and to make use
  1048. ;of the settings above.
  1049. 'Verzögerter Wiederaufbau
  1050.  
  1051. ;***************************************************************************
  1052. ;Buttons in the system pages
  1053. ;***************************************************************************
  1054. ;
  1055. ;The four system pages setup internal ViNCEd stuff that does not fit
  1056. ;into the other categories.
  1057. ;
  1058. ;
  1059. #416
  1060. ;ViNCEd System Page 1 (of 4) :
  1061. 'ViNCEd System Seite 1 (von 4) :
  1062.  
  1063. ;Help...
  1064. 'Hilfe...
  1065.  
  1066. ;2nd Page »
  1067. '2. Seite »
  1068.  
  1069. ;ViNCEd Guide Path :
  1070. ;This gadget is used to setup the path of the VNC.guide.
  1071. 'ViNCED Hilfe-Datei :
  1072.  
  1073. ;Chunky pixel graphics
  1074. ;If set, ViNCEd does not use the bitplane mask to scroll only used
  1075. ;bitplanes. Useful for gfx cards.
  1076. 'Chunky Pixel Graphik
  1077.  
  1078. ;Line break at right border
  1079. ;Break DOS output at the right window border. This line break operation
  1080. ;is a bit different from what CON: does, since it is permanently. Lines
  1081. ;won't get reorganized if the window gets resized.
  1082. ;This one shouldn't be turned on!
  1083. 'Zeilenumbruch am Fensterrand
  1084.  
  1085. ;Inhibit horiz. scrolling by DOS output
  1086. ;Do not scroll the window by DOS output. This avoids some flicker, but
  1087. ;may move the cursor to invisible areas.
  1088. ;This one shouldn't be turned on!
  1089. 'Keine horizontales Scrolling durch das DOS
  1090.  
  1091. ;VT-220 compatibility mode
  1092. ;Some control sequences are interpretated differently if this is turned on.
  1093. ;Also not useful if you want to run a shell in this window.
  1094. 'VT-220 Kompatibilitätsmodus
  1095.  
  1096. ;***************************************************************************
  1097. ;
  1098. ;
  1099. #432
  1100. ;ViNCEd System Page 2 (of 4 ) :
  1101. 'ViNCEd System Seite 2 (von 4) :
  1102.  
  1103. ;Help...
  1104. 'Hilfe...
  1105.  
  1106. ;3rd Page »
  1107. '3. Seite »
  1108.  
  1109. ;Destructive DEL and BS
  1110. ;Usually a printed backspace moves the cursor backwards and does nothing else.
  1111. ;If turned on, it will erase characters. The DEL is usually printed as a
  1112. ;smear symbol. If turned on, it will erase characters.
  1113. ;Not useful for the shell!
  1114. 'DEL und BS löschen beim Ausdruck
  1115.  
  1116. ;Insertion mode for DOS output
  1117. ;If turned on, DOS output will be inserted into the window data instead of
  1118. ;overwriting it. Since this is never done by CON:, leave this flag
  1119. ;off for the shell.
  1120. 'Einfügemodus für DOS Ausgaben
  1121.  
  1122. ;Notify DOS about paste
  1123. ;Do not paste if the user asks to do so, instead send a paste request
  1124. ;to the reading program. THIS IS NOT USEFUL FOR THE SHELL.
  1125. 'Paste Kommando an DOS schicken
  1126.  
  1127. ;Disable full screen edit
  1128. ;Totally forbid cursor movement thru cursor keys AND RETURN! This might
  1129. ;be useful for programs that read masks, BUT IT IS NOT USEFUL for the
  1130. ;shell. LEAVE IT OFF.
  1131. 'Auf Zeilenbasis edieren
  1132.  
  1133.  
  1134. ;***************************************************************************
  1135. ;
  1136. ;
  1137. #448
  1138. ;ViNCEd System Page 3 (of 4) :
  1139. 'ViNCEd System Seite 3 (von 4) :
  1140.  
  1141. ;Help...
  1142. 'Hilfe...
  1143.  
  1144. ;4th Page »
  1145. '4. Seite »
  1146.  
  1147. ;Quit shell    :
  1148. ;This is a system macro invoked if the user presses the close window
  1149. ;gadget in an active shell.
  1150. 'Beende Shell  :
  1151.  
  1152. ;New Window    :
  1153. ;A system macro expanded by the "New Window" item in the project menu.
  1154. 'Neues Fenster :
  1155.  
  1156. ;Get Help      :
  1157. ;A macro that should call the VNC.guide. Usually set to "SetVNC HELP"
  1158. 'Hilfe aufrufen:
  1159.  
  1160. ;Edit settings :
  1161. ;A macro used to invoke the prefs editor. Usually "SetVNC". Called if
  1162. ;the user select the "Settings" item in the project menu.
  1163. 'Einstellungen :
  1164.  
  1165. ;Fork new shell:
  1166. ;Another macro used to build a new shell on Ctrl-Z. This one is unique 
  1167. ;since it is not expanded as a keyboard sequence, but Execute()-d 
  1168. ;instead (so use \n to terminate it instead of \r). Should be something
  1169. ;like newcli.
  1170. 'Shell erzeugen:
  1171.  
  1172. ;***************************************************************************
  1173. ;
  1174. ;
  1175. ;
  1176. #464
  1177. ;ViNCEd system page 4 (of 4) :
  1178. 'ViNCEd System Seite 4 (von 4) :
  1179.  
  1180. ;Help...
  1181. 'Hilfe...
  1182.  
  1183. ;« 1st Page
  1184. '« 1. Seite
  1185.  
  1186. ;Quit program  :
  1187. ;Another system macro that is called if a running program in a ViNCEd shell
  1188. ;should be terminated. Called if the close gadget is pressed and a command
  1189. ;is loaded.
  1190. 'Beende Progr. :
  1191.  
  1192. ;Icon path     :
  1193. ;This is the path of the icon that is displayed if a ViNCEd window gets
  1194. ;iconified. It is a standard workbench icon, without the ".info".
  1195. 'Iconpfad      :
  1196.  
  1197. ;Icon title    :
  1198. ;The title that is shown under the icon. Defaults to the window title or
  1199. ;to the title that is set by some XTerm control sequence.
  1200. 'Icontitel     :
  1201.  
  1202. ;************************************************************************
  1203. ;The second window page, located here since I added it later
  1204. ;************************************************************************
  1205. #472
  1206.  
  1207. ;ViNCEd Window page 2 (of 3):
  1208. 'ViNCEd Fenster Seite 2 (von 3) :
  1209.  
  1210. ;Help
  1211. 'Hilfe...
  1212.  
  1213. ;3rd Page »
  1214. '3. Seite »
  1215.  
  1216. ;Sample color
  1217. ;Title of the box with the sample of the new color you can choose with
  1218. ;the sliders for custom screens
  1219. 'Farbbeispiel
  1220.  
  1221. ;*** the next string changed ! ***
  1222. ;Color    :%s
  1223. ;The current pen to be edited. The cryptic "%s" gets expanded to a
  1224. ;number between 0 and 15, i.e. the actual pen number.
  1225. 'Farbe    :%s
  1226.  
  1227. ;Custom Screen Colors:
  1228. ;Title on top of the red,green,blue sliders
  1229. ;This string is no longer printed because there's no room left....
  1230. 'Bildschirmfarben
  1231.  
  1232. ;Red    :
  1233. ;The title in front of the slider for the red component
  1234. 'Rot    :
  1235.  
  1236. ;Green  :
  1237. ;Same for the green slider
  1238. 'Grün   :
  1239.  
  1240. ;Blue   :
  1241. ;Same for the blue slider.
  1242. 'Blau   :
  1243.  
  1244. ;The next ones display a percent value, namely the contribution of
  1245. ;red,green and blue, respectively, to the current color.
  1246. ;There's usually no need to change them...
  1247. ;%% is expanded into a single percent sign, by the way.
  1248. ;%-3ld results in a three digit decimal number.
  1249.  
  1250. ;%-3ld%%
  1251. '%-3ld%%
  1252.  
  1253. ;%-3ld%%
  1254. '%-3ld%%
  1255.  
  1256. ;%-3ld%%
  1257. '%-3ld%%
  1258.  
  1259. ;Load this register
  1260. ;A checkmark, used to indicate if the current pen should be set by
  1261. ;ViNCEd. The sliders are unaccessable unless this one is checked.
  1262. 'Dieses Register setzen
  1263.  
  1264. ;« Prev
  1265. ;Move to the previous pen
  1266. '« Zurück
  1267.  
  1268. ;Next »
  1269. ;Edit the next pen
  1270. 'Vorwärts »
  1271.  
  1272.  
  1273. ;Set ANSI mapping
  1274. ;A checkmark added to the 40.15 release of ViNCEd. If set, this color
  1275. ;defines not an hardware register, but the software ANSI mapping, i.e.
  1276. ;the ANSI pen of the same color index.
  1277. 'ANSI Farbe definieren
  1278.  
  1279. ;**************************************************************************
  1280. ;The fourth shell page, also added for 40.30
  1281. ;**************************************************************************
  1282.  
  1283. #488
  1284. ;ViNCEd Shell Page 5 (of 5) :
  1285. 'ViNCEd Shell Seite 5 (von 5) :
  1286.  
  1287. ;Help...
  1288. 'Hilfe...
  1289.  
  1290. ;« 1st Page
  1291. '« 1. Seite
  1292.  
  1293. ;Name only qualifier
  1294. ;Setup the qualifier for icon-drop, used to indicate that the user wants
  1295. ;to insert the name of the dropped icon only.
  1296. 'Nur Namen einfügen
  1297.  
  1298. ;Path only qualifier
  1299. ;The same, but for the path-only icon drop modifier
  1300. 'Nur Pfad einfügen
  1301.  
  1302. ;The names of the keys. Shouldn't change until they are labeled
  1303. ;differently at your local keyboard. All are present twice, once for
  1304. ;the name only and once for path only. Please change both if you
  1305. ;have to change them at all.
  1306.  
  1307. ;Shift
  1308. 'Shift
  1309.  
  1310. ;Shift
  1311. 'Shift
  1312.  
  1313. ;Control
  1314. 'Control
  1315.  
  1316. ;Control
  1317. 'Control
  1318.  
  1319. ;Alt
  1320. 'Alt
  1321.  
  1322. ;Alt
  1323. 'Alt
  1324.  
  1325. ;Commodore
  1326. ;The left amiga key
  1327. 'Commodore
  1328.  
  1329. ;Commodore
  1330. 'Commodore
  1331.  
  1332. ;************************************************************************
  1333. ;The fourth edit page, also added later on
  1334. ;************************************************************************
  1335.  
  1336. #504
  1337. ;ViNCEd Edit page 4 (of 5) :
  1338. 'ViNCEd Editor Seite 4 (von 5) :
  1339.  
  1340. ;Help
  1341. 'Hilfe...
  1342.  
  1343. ;5th page »
  1344. '5. Seite »
  1345.  
  1346. ;Invisible type ahead
  1347. ;Enable the type ahead. Typing while no input is requested won't go into
  1348. ;the window, it is instead buffered and displayed as soon as some
  1349. ;program wants to read keyboard input.
  1350. 'Asynchroner Tastaturbuffer
  1351.  
  1352. ;Enable scrollers in RAW mode
  1353. ;Allow scroller usage, even in RAW mode. The scrollers are usually
  1354. ;ghosted (disabled), but when this flag is turned on you MAY scroll
  1355. ;in the window. This works like an implicit XTerm mode for RAW windows.
  1356. 'Scroller im RAW Modus verwendbar
  1357.  
  1358. ;Inverse ANSI coloring
  1359. ;Swap the meaning of ANSI black and white for better readability. Does
  1360. ;work ONLY in the ANSI mode.
  1361. 'Inverse ANSI-Farben
  1362.  
  1363. ;Numeric keypad cursor control
  1364. ;Use the numeric keypad for cursor and history movement, not for number
  1365. ;input. 8 and 2 replace ALT+cursor, 4 and 6 the left and right cursor keys
  1366. ;7 and 1 scroll to the top / end of the buffer, 9 and 3 scroll upwards and
  1367. ;downwards one page. 5 moves to the end of the line, and 0 toggles 
  1368. ;overwrite/insert mode
  1369. 'Cursorsteuerung durch Ziffernblock
  1370.  
  1371. ;Mouse clicks do not block
  1372. ;If the XTerm mode is not enabled and you click into the window, the
  1373. ;output of a printing program is usually stopped, to allow user inter-
  1374. ;action. If, however, this flag is set, printing resumes immediately.
  1375. ;
  1376. ;New in 3.53: This flag is no longer supported
  1377. 'Mausklick stoppt nicht die Ausgabe
  1378.  
  1379.  
  1380. ;************************************************************************
  1381. ;The third window page
  1382. ;************************************************************************
  1383. ;
  1384. ;Some miscellaneous window control flags have been added here. This page
  1385. ;is new to 40.33
  1386. ;
  1387. #513
  1388. ;ViNCEd window page 3 (of 3):
  1389. 'ViNCEd Fenster Seite 3 (von 3) :
  1390.  
  1391. ;Help...
  1392. 'Hilfe...
  1393.  
  1394. ;« 1st Page
  1395. '« 1. Seite
  1396.  
  1397. ;Disable horizontal scroller
  1398. ;Prevents ViNCEd from adding a horizontal scroller by default.
  1399. ;The scroller can be requested with a PROPX in the window open path
  1400. ;explicitly.
  1401. 'Keinen horizontalen Scroller
  1402.  
  1403. ;Disable vertical scroller
  1404. ;Same for the vertical scroll bar.
  1405. 'Keinen vertikalen Scroller
  1406.  
  1407. ;************************************************************************
  1408. ;The fifth edit page, new to 40.15
  1409. ;************************************************************************
  1410.  
  1411. #528
  1412. ;ViNCEd Edit page 5 (of 5) :
  1413. 'ViNCEd Editor Seite 5 (von 5) :
  1414.  
  1415. ;Help
  1416. 'Hilfe...
  1417.  
  1418. ;« 1st page
  1419. '« 1. Seite
  1420.  
  1421.  
  1422. ;Exchange A+BS/Del with S+A+BS/Del
  1423. ;Swap the keyboard layout of these two delete-related settings.
  1424. ;If checked, Alt+Del and Alt+Bs erase the end/beginning of the line
  1425. ;Delete user input and delete word are mapped to the same keys with
  1426. ;Shift as additional qualifier
  1427. 'Vertausche A+BS/Del mit S+A+BS/Del
  1428.  
  1429. ;Keep bottom of window adjusted
  1430. ;The bottom line of the window will be scrolled down to the bottom border
  1431. ;of the window on resize, giving the old CON: behaiviour.
  1432. 'Unterste Zeile am Rand ausrichten
  1433.  
  1434. ;Rigid XTerm cursor
  1435. ;If selected, the cursor position can't be set with a mouse click
  1436. ;if the XTerm mode is enabled. Ignored if XTerm mode is not set.
  1437. 'Starrer XTerm-Cursor
  1438.  
  1439.  
  1440. ;************************************************************************
  1441. ;The fourth shell page, new to 40.15
  1442. ;************************************************************************
  1443. ;
  1444. ;This page was inserted between the third and forth shell page in 40.15.
  1445. ;The former forth page is now the fifth page and defined above...
  1446. ;
  1447.  
  1448. #544
  1449. ;ViNCEd Shell page 4 (of 5) :
  1450. 'ViNCEd Shell Seite 4 (von 5) :
  1451.  
  1452. ;Help
  1453. 'Hilfe...
  1454.  
  1455. ;5th page »
  1456. '5. Seite »
  1457.  
  1458.  
  1459. ;Icon files don't match implicitly
  1460. ;Don't add ".info" files to the TAB expansion list unless the user asks
  1461. ;for them by giving a pattern ending with .info
  1462. '".info" Dateien nicht implizit einsortieren
  1463.  
  1464. ;Shorter command search paths
  1465. ;Truncate the search path for commands even more. If this is enabled,
  1466. ;the "Partial Path" C: and CurrentDir() is used with the 
  1467. ;"Search commands in current and C: only" disabled, and only the current
  1468. ;dir is used if both flags are enabled.
  1469. 'Noch kürzere Suchpfade für Kommandos
  1470.  
  1471.  
  1472. ;New for 3.53
  1473. ;Keep duplicates in history
  1474. ;If two identical lines are entered, only the first one will go
  1475. ;to the history by default. If this flag is selected, both will
  1476. ;and ViNCEd won't scan any more for identical commands.
  1477. 'Identische Zeilen in die History aufnehmen
  1478.  
  1479. ;************************************************************************
  1480. ;That's all folks!
  1481. ;
  1482.