home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 1 / Mecomp-CD.iso / amiga / tools / utillities / vinced / localize! / prefs.construct next >
Text File  |  1997-05-31  |  45KB  |  1,370 lines

  1. ;*************************************************************************
  2. ;** Locale constructor V40.16 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.16 (40 is internal for release 3)
  35.  
  36. ;
  37. ;*************** Edit this line below *************************************
  38.  CreateCatalog vl:prefs.construct ram:VNC.prefs.catalog deutsch 40 16
  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. ;SetVNC failed writing the line buffer.\n\r
  425. ;A generic IO error generated if something went wrong while writing
  426. ;some part of the buffer lines, either the history or the screen.
  427. 'SetVNC kann den Zeilenbuffer nicht schreiben.\n\r
  428.  
  429. ;SetVNC failed reading the line buffer.\n\r
  430. ;Another generic error if something went wrong while reading a line
  431. ;buffer, either the history or the screen.
  432. 'SetVNC kann den Zeilenbuffer nicht lesen.\n\r
  433.  
  434. ;SetVNC failed to open %s\n\r
  435. ;This error is generated if SetVNC failed to open the buffer file, i.e.
  436. ;can't create a line buffer file for writing or failed to open the buffer
  437. ;file for reading. %s is replaced by the name of the file.
  438. 'SetVNC kann %s nicht öffnen.\n\r
  439.  
  440. ;***************************************************************************
  441. ;Strings used in the pages
  442. ;***************************************************************************
  443. ;
  444. ; the next strings are put into the pages, mostly as
  445. ; gadget names. So please try if the strings are "short enough" to
  446. ; fit into the buttons. The spacing is *worst* for fixed-width fonts
  447. ; but the actual point size does not matter since everything gets
  448. ; rescaled automagically. Proportional fonts tend to give a
  449. ; more relaxed spacing, so you should try this with topaz.8
  450. ; although this font is usually "too tiny".
  451. ;
  452. ;***************************************************************************
  453. ;Strings common to all pages: The bottom bar
  454. ;***************************************************************************
  455. ;
  456. ;!!! Warning: The "Save" string has moved TO THE END of this collection!!!
  457. ;
  458. #257
  459. ;Use                            Use prefs globally
  460. 'Benutzen
  461.  
  462. ;To Window                      Try in window SetVNC was called from only.
  463. 'im Fenster
  464.  
  465. ;Cancel                         Abort SetVNC without saving
  466. 'Abbrechen
  467.  
  468. ;***************************************************************************
  469. ;Buttons in the about page
  470. ;***************************************************************************
  471. ;
  472. ;
  473. ;Last Saved                     Reload prefs from default location
  474. 'Zuvor gsp.
  475.  
  476. ;Last Used                      Reload global prefs
  477. 'Benutzten
  478.  
  479. ;Window                         Reload prefs from the window SetVNC was invoked from.
  480. 'Fenster
  481.  
  482. ;Default                        Load defaults.
  483. 'Standard
  484.  
  485. ;Restore settings from:         This text is put in front of the button above. Propably this
  486. ;together with the gadget text should form a sentence.
  487. 'Voreinstellungen einlesen vom :
  488.  
  489. ;About                          Loads the main node of the VNC.guide.
  490. 'Über...
  491.  
  492. ;***************************************************************************
  493. ;The save button was moved to this place...
  494. ;***************************************************************************
  495.  
  496. ;Save                           Save prefs to default location (ENVARC: & ENV:)
  497. 'Speichern
  498.  
  499. ;***************************************************************************
  500. ;Buttons in the macros pages
  501. ;***************************************************************************
  502. ;
  503. ;
  504. ;
  505. #272
  506. ;ViNCEd Macros Page 1 (of 2) :          The page title, giving the name 
  507. ;of the page, the number if there's more than one page for the topic
  508. ;plus the total number of pages for this topic.
  509. 'ViNCEd Makros Seite 1 (von 2) :
  510.  
  511. ;Help...                                Common to all pages: The HELP button
  512. ;it loads the VNC.Guide and displays the node for the page this button is on.
  513. 'Hilfe...
  514.  
  515. ;2nd Page »                             The link to the other page. This
  516. ;button is also very common.
  517. '2. Seite »
  518.  
  519. ;Macro 0                        These gadgets just count thru the
  520. ;number of macros. 0-4 are on the first page
  521. 'Makro 0
  522.  
  523. ;Macro 1
  524. 'Makro 1
  525.  
  526. ;Macro 2
  527. 'Makro 2
  528.  
  529. ;Macro 3
  530. 'Makro 3
  531.  
  532. ;Macro 4
  533. 'Makro 4
  534.  
  535. ;***************************************************************************
  536. ;
  537. ;Second macro page
  538. ;
  539. #288
  540. ;ViNCEd Macros Page 2 (of 2) :
  541. 'ViNCEd Makros Seite 2 (von 2) :
  542.  
  543. ;Help
  544. 'Hilfe...
  545.  
  546. ;« 1st Page                     ;Link back. Note that the arrow points
  547. ;to the opposide direction.
  548. '« 1. Seite
  549.  
  550. ;Macro 5
  551. 'Makro 5
  552.  
  553. ;Macro 6
  554. 'Makro 6
  555.  
  556. ;Macro 7
  557. 'Makro 7
  558.  
  559. ;Macro 8
  560. 'Makro 8
  561.  
  562. ;Macro 9
  563. 'Makro 9
  564.  
  565. ;***************************************************************************
  566. ;Buttons in the buttons page
  567. ;***************************************************************************
  568. ;
  569. ;There's only one page, so no link buttons...
  570. ;
  571. #304
  572. ;ViNCEd Button Page :
  573. 'ViNCEd Knöpfe :
  574.  
  575. ;Help...
  576. 'Hilfe...
  577.  
  578. ;Button title :"
  579. ;Put in front of the gadget that contains the name of a button, i.e. what
  580. ;gets printed in the title bar.
  581. 'Titel :
  582.  
  583. ;Remove
  584. ;A button to remove a button from the list
  585. 'Entfernen
  586.  
  587. ;Insert
  588. ;A button to insert a new button between others
  589. 'Einfügen
  590.  
  591. ;Command :
  592. ;The text of the macro. This one will be expanded and executed by,
  593. ;well usually the shell.
  594. 'Kommando :
  595.  
  596. ;« Prev
  597. ;A button to go backwards (towards the first) button in the list
  598. '« Zurück
  599.  
  600. ;Next »
  601. ;A button to go forwards (towards the last) button
  602. 'Vorwärts »
  603.  
  604. ;The next one is new to 40.30:
  605. ;"Key : F%ld "
  606. ;This one expands into the key related to the current button in the
  607. ;window. "%ld" is replaced by a number from 1 to 10. Please note the
  608. ;space at the end, which is needed!
  609. '"Taste : F%ld "
  610.  
  611. ;***************************************************************************
  612. ;Buttons in the edit pages
  613. ;***************************************************************************
  614. ;
  615. ;These strings are used in the four pages for editor features.
  616. ;
  617. ;A fourth page has been added in 40.33 which is now at the end of this
  618. ;file.
  619. ;A fifth page was added in 40.41!
  620. ;
  621. ;
  622. #320
  623. ;ViNCEd Edit Page 1 (of 5) :                    The title
  624. 'ViNCEd Editor Seite 1 (von 5) :
  625.  
  626. ;Help...
  627. 'Hilfe...
  628.  
  629. ;2nd Page »
  630. '2. Seite »
  631.  
  632. ;Unrestricted cursor movement
  633. ;Same as the "DOS Cursor mode" in the menu. Used to move the cursor 
  634. ;like the DOS, without restrictions. For example, backspace does not
  635. ;stop on the shell prompt if this is turned on.
  636. 'Uneingeschränkte Cursorbewegung
  637.  
  638. ;CR inserts below at start of line
  639. ;What happends if return gets pressed at the beginning of a line
  640. ;If this is turned on, a RETURN key press is not special at the beginning of
  641. ;a line. If turned off, it will insert a line on top instead of below.
  642. 'CR fügt am Zeilenanfang unterhalb ein
  643.  
  644. ;TAB moves, no insertion
  645. ;Determinates the operation of the TAB key
  646. 'TAB bewegt den Cursor und fügt nicht ein
  647.  
  648. ;Overwrite Text
  649. ;Insertion mode (off) vs. overwrite mode (on):
  650. 'Text überschreiben
  651.  
  652. ;History buffer wraps around
  653. ;The operation of the command history and of the TAB expansion. If turned
  654. ;on, and you reached one end of the history / list of possible expansions,
  655. ;the buffer will wrap around, i.e. starts again at the beginning
  656. 'Eingabebuffer ist zyklisch
  657.  
  658. ;***************************************************************************
  659. ;
  660. ;
  661. #336
  662. ;ViNCEd Edit Page 2 (of 5) :
  663. 'ViNCEd Editor Seite 2 (von 5) :
  664.  
  665. ;Help...
  666. 'Hilfe...
  667.  
  668. ;3rd Page »
  669. '3. Seite »
  670.  
  671. ;Don't write printed text into clipboard
  672. ;Like "Cut inputs only" in the menu: Put only user input into the clipboard
  673. 'Gedruckten Text nicht in die Zwischenablage
  674.  
  675. ;Implicit copy after text marking
  676. ;Copy the marked area immediately into the clipboard, don't wait for a copy
  677. 'Markierten Text sofort in die Zwischenablage
  678.  
  679. ;Swap ALT-cursor and cursor keys
  680. ;History movement by cursor keys, cursor movement by ALT+Cursor if on
  681. 'ALT-Cursortasten mit Cursortasten vertauschen
  682.  
  683. ;Underline cursor
  684. ;instead of a block cursor
  685. 'Unterstrich-Cursor
  686.  
  687. ;Blinking cursor
  688. ;make the cursor blink. Speed is setup in the timing page
  689. 'Blinkender Cursor
  690.  
  691. ;***************************************************************************
  692. ;
  693. ;
  694. #344
  695. ;ViNCEd Edit Page 3 (of 5) :
  696. 'ViNCEd Editor Seite 3 (von 5) :
  697.  
  698. ;Help
  699. 'Hilfe...
  700.  
  701. ;4th Page »
  702. '4. Seite »
  703.  
  704. ;XTerm cursor mode
  705. ;The cursor gets frozen and does not move if you scroll the window or
  706. ;mark a block
  707. 'Cursorbewegung wie in XTerm
  708.  
  709.  
  710.  
  711. ;The next two are new in 40.30:
  712.  
  713. ;Disable middle mouse button
  714. ;Use the MMB for other programs, not for unix like clipboard control
  715. ;The replacement Ctrl+Left works, however
  716. 'Mittlere Maustaste ignorieren
  717.  
  718. ;Disable BS at start of line
  719. ;Do not join lines if BS is pressed at the start of the line. Ignore
  720. ;it instead!
  721. 'Backspace am Zeilenanfang ausschalten
  722.  
  723.  
  724. ;Extensions made to 40.33:
  725.  
  726.  
  727. ;ANSI colors as default
  728. ;Use the ANSI coloring sheme by default. Can be enabled by hand with the
  729. ;CSI >?8h sequence, see the guide for more on that.
  730. 'ANSI-Farben als Voreinstellung
  731.  
  732. ;Don't scroll into the border
  733. ;Enable hard window scroll borders. Prevent the cursor from goining into
  734. ;"blank" lines and stop scrolling at these boundaries.
  735. 'Nicht in den Rand scrollen
  736.  
  737. ;***************************************************************************
  738. ;There's also a fourth editor page which has been added later on. It is
  739. ;for that reason below in this file...
  740.  
  741. ;***************************************************************************
  742. ;Buttons in the shell page
  743. ;***************************************************************************
  744. ;
  745. ;These pages setup functions related to the shell mode of ViNCEd
  746. ;like TAB expansion and requesters
  747. ;Please note that in 40.30 a fourth one was added to the shell pages,
  748. ;so the titles changed a bit...
  749. ;A fifth page was added to 40.41...
  750. ;
  751. ;
  752. #352
  753. ;ViNCEd Shell Page 1 (of 5) :
  754. 'ViNCEd Shell Seite 1 (von 5) :
  755.  
  756. ;Help...
  757. 'Hilfe...
  758.  
  759. ;2nd Page »
  760. '2. Seite »
  761.  
  762. ;Call macro to close window
  763. ;Like "Smart Close" in the menu
  764. 'Makro zum Fensterschließen aufrufen
  765.  
  766. ;Prevent accidental window closing
  767. ;Like "Safer Close" in the menu: Do not close if more than one process
  768. ;posesses the window
  769. 'Versehendliches Fensterschließen verhindern
  770.  
  771. ;Don't send EOF until everybody waits
  772. ;A very technical setting, determinates what should happen if more than
  773. ;one process is in the window and the user closes the window
  774. 'EOF nur senden, falls alle Prozesse warten
  775.  
  776. ;Don't add close gadget by default
  777. ;If turned on, you must explicitly ask for a CLOSE gadget in the path to
  778. ;get one. By default (since 1.00), ViNCEd windows come always with a 
  779. ;close gadget.
  780. 'Close-Gadget nur auf Anfrage erzeugen
  781.  
  782. ;Don't add iconify gadget by default
  783. ;If turned on, you must ask for a iconify gadget. The default is that all
  784. ;windows that appear on the workbench or that have the FALLBACK option
  785. ;turned on will get an iconifier.
  786. 'Iconifizierungs-Gadget nur auf Anfrage
  787.  
  788. ;**************************************************************************
  789. ;
  790. ;
  791. #368
  792. ;ViNCEd Shell Page 2 (of 5) :
  793. 'ViNCEd Shell Seite 2 (von 5) :
  794.  
  795. ;Help...
  796. 'Hilfe...
  797.  
  798. ;3rd Page »
  799. '3. Seite »
  800.  
  801. ;TAB filename expansion
  802. ;Use TAB instead of Ctrl+TAB in the SHELL mode for file name expansion
  803. 'Filenamen-Erweiterung mit TAB
  804.  
  805. ;Double TAB requester
  806. ;Display a requester if TAB is pressed twice within the double 
  807. ;click interval
  808. 'Doppel-TAB Dateirequester
  809.  
  810. ;First TAB expands fully
  811. ;If not turned on, ViNCEd will try a partial expansion first.
  812. 'Erstes TAB ergänzt vollständig
  813.  
  814. ;Requester if expansion is ambigious
  815. ;If turned on, ViNCEd will display a requester if more than one expansion
  816. ;is possible
  817. 'Requester, falls Ergänzung nicht eindeutig
  818.  
  819. ;Show ViNCEd matches, not directories
  820. ;Don't use a directory requester for the matches, but show the list
  821. ;that ViNCEd generated interally. Additional entries in this list (that
  822. ;can't be shown by a standard requester) are devices, assigns and resident
  823. ;modules. However, you can't go into a directory with this requester
  824. 'ViNCEd Ergänzungen in den Requester
  825.  
  826. ;*************************************************************************
  827. ;
  828. ;
  829. #376
  830. ;ViNCEd Shell Page 3 (of 5) :
  831. 'ViNCEd Shell Seite 3 (von 5) :
  832.  
  833. ;Help...
  834. 'Hilfe...
  835.  
  836. ;4th Page »
  837. '4. Seite »
  838.  
  839. ;Use shell mode by default
  840. ;Turn on shell mode even if the SHELL keyword is missing in the PATH
  841. 'Shell-Modus als Voreinstellung
  842.  
  843. ;The next ones are new to 40.30:
  844.  
  845. ;Search commands in currernt and C: only
  846. ;Speed up TAB expansion of commands by searching them in the
  847. ;current directory and C: only.
  848. 'Nur in C: und im aktuellen Pfad suchen
  849.  
  850. ;Show matching directories first
  851. ;When expanding by hand, the directories are sorted in prior to
  852. ;the devices. THIS DOES NOT change the sorting of the strings
  853. ;in the requester, since this is up to reqtools/asl - only the
  854. ;manual list is sorted differently.
  855. 'Directories zu Beginn einsortieren
  856.  
  857.  
  858. ;Enable close requester
  859. ;Turn on the requester warning if the user wants to close a shell
  860. ;with more than one process running in it.
  861. ;REMARK: The "safer close" setting must be turned on as well, to
  862. ;see this requester.
  863. 'Close-Requester einschalten
  864.  
  865. ;Devices don't match implicitly
  866. ;Don't sort devices into the ViNCEd requester unless the user asked for
  867. ;devices explicitly by giving a ":" as the last part of the search pattern.
  868. 'Devices nicht implizit einsortieren
  869.  
  870.  
  871. ;***************************************************************************
  872. ; The forth & fifth shell page, new to 40.30 is located AT THE END of this
  873. ; file...
  874.  
  875.  
  876. ;***************************************************************************
  877. ;Buttons in the window page
  878. ;***************************************************************************
  879. ;
  880. ;This page is used to setup the size of various buffers for ViNCEd,
  881. ;namely the command history and the visual history, upper and lower part.
  882. ;
  883. ;More is here in 40.30, and a second and third page is available as well
  884. ;The third page was added in 40.33, so please check out to change the titles!
  885. ;
  886. ;
  887. #384
  888. ;ViNCEd Window Page 1 (of 3) :
  889. 'ViNCEd Fenster Seite 1 (von 3) :
  890.  
  891. ;Help...
  892. 'Hilfe...
  893.  
  894. ;History lines :
  895. ;The size of the command history in lines
  896. 'Größe der History :
  897.  
  898. ;Upper Display size :
  899. ;The number of lines that are kept above the visual window, i.e. maximal
  900. ;number of lines scrolled off the window.
  901. 'Obere Zeilen  :
  902.  
  903. ;Lower Display size :
  904. ;The number of lines kept in the opposide direction, including the lines
  905. ;actually visible plus the lines kept below the visible window.
  906. 'Untere Zeilen :
  907.  
  908. ;2nd Page »
  909. ;located at an usual place since I added this later
  910. '2. Seite »
  911.  
  912. ;Monitor
  913. ;The name of the screen mode button
  914. 'Monitor
  915.  
  916. ;Font
  917. ;The contents of the font selection button
  918. 'Schrift
  919.  
  920. ;***************************************************************************
  921. ;The second and third window page is at the end of this file!
  922. ;
  923.  
  924. ;***************************************************************************
  925. ;Buttons in the timing page
  926. ;***************************************************************************
  927. ;
  928. ;Various timing rates are setup with this page
  929. ;
  930. ;
  931. #400
  932. ;ViNCEd Timing Page :
  933. 'ViNCEd Timing Seite :
  934.  
  935. ;Help...
  936. 'Hilfe...
  937.  
  938. ;Cursor blink speed        :
  939. ;Setup the blink interval. Units are milliseconds (1 ms = 1 thousands of a second)
  940. 'Cursor-Blinkzeit (in ms)  :
  941.  
  942. ;Vertical scroll threshold :
  943. ;If vertical scrolling is slower than this, ViNCEd will delay the refresh 
  944. ;to speedup scrolling. Again measured in ms.
  945. 'Schranke für Scrollzeit   :
  946.  
  947. ;Rebuild delay             :
  948. ;If this time has passed, ViNCEd will refresh the window. Again in ms.
  949. 'Zeit bis Wiederaufbau     :
  950.  
  951. ;Intuition delay (1.3 only):
  952. ;Only used with kickstart 1.3 and below. This should be setup to the
  953. ;usual time needed for intuition to do a window operation, i.e. resize.
  954. ;Usually the interval of the input device, i.e. 1/10th of a second.
  955. 'Intuition-Verzögerung(1.3):
  956.  
  957. ;Allow delayed window refresh
  958. ;A checkmark. Must be turned on to allow a delayed refresh and to make use
  959. ;of the settings above.
  960. 'Verzögerter Wiederaufbau
  961.  
  962. ;***************************************************************************
  963. ;Buttons in the system pages
  964. ;***************************************************************************
  965. ;
  966. ;The four system pages setup internal ViNCEd stuff that does not fit
  967. ;into the other categories.
  968. ;
  969. ;
  970. #416
  971. ;ViNCEd System Page 1 (of 4) :
  972. 'ViNCEd System Seite 1 (von 4) :
  973.  
  974. ;Help...
  975. 'Hilfe...
  976.  
  977. ;2nd Page »
  978. '2. Seite »
  979.  
  980. ;ViNCEd Guide Path :
  981. ;This gadget is used to setup the path of the VNC.guide.
  982. 'ViNCED Hilfe-Datei :
  983.  
  984. ;Chunky pixel graphics
  985. ;If set, ViNCEd does not use the bitplane mask to scroll only used
  986. ;bitplanes. Useful for gfx cards.
  987. 'Chunky Pixel Graphik
  988.  
  989. ;Line break at right border
  990. ;Break DOS output at the right window border. This line break operation
  991. ;is a bit different from what CON: does, since it is permanently. Lines
  992. ;won't get reorganized if the window gets resized.
  993. ;This one shouldn't be turned on!
  994. 'Zeilenumbruch am Fensterrand
  995.  
  996. ;Inhibit horiz. scrolling by DOS output
  997. ;Do not scroll the window by DOS output. This avoids some flicker, but
  998. ;may move the cursor to invisible areas.
  999. ;This one shouldn't be turned on!
  1000. 'Keine horizontales Scrolling durch das DOS
  1001.  
  1002. ;VT-220 compatibility mode
  1003. ;Some control sequences are interpretated differently if this is turned on.
  1004. ;Also not useful if you want to run a shell in this window.
  1005. 'VT-220 Kompatibilitätsmodus
  1006.  
  1007. ;***************************************************************************
  1008. ;
  1009. ;
  1010. #432
  1011. ;ViNCEd System Page 2 (of 4 ) :
  1012. 'ViNCEd System Seite 2 (von 4) :
  1013.  
  1014. ;Help...
  1015. 'Hilfe...
  1016.  
  1017. ;3rd Page »
  1018. '3. Seite »
  1019.  
  1020. ;Destructive DEL and BS
  1021. ;Usually a printed backspace moves the cursor backwards and does nothing else.
  1022. ;If turned on, it will erase characters. The DEL is usually printed as a
  1023. ;smear symbol. If turned on, it will erase characters.
  1024. ;Not useful for the shell!
  1025. 'DEL und BS löschen beim Ausdruck
  1026.  
  1027. ;Insertion mode for DOS output
  1028. ;If turned on, DOS output will be inserted into the window data instead of
  1029. ;overwriting it. Since this is never done by CON:, leave this flag
  1030. ;off for the shell.
  1031. 'Einfügemodus für DOS Ausgaben
  1032.  
  1033. ;Notify DOS about paste
  1034. ;Do not paste if the user asks to do so, instead send a paste request
  1035. ;to the reading program. THIS IS NOT USEFUL FOR THE SHELL.
  1036. 'Paste Kommando an DOS schicken
  1037.  
  1038. ;Disable full screen edit
  1039. ;Totally forbid cursor movement thru cursor keys AND RETURN! This might
  1040. ;be useful for programs that read masks, BUT IT IS NOT USEFUL for the
  1041. ;shell. LEAVE IT OFF.
  1042. 'Auf Zeilenbasis edieren
  1043.  
  1044.  
  1045. ;***************************************************************************
  1046. ;
  1047. ;
  1048. #448
  1049. ;ViNCEd System Page 3 (of 4) :
  1050. 'ViNCEd System Seite 3 (von 4) :
  1051.  
  1052. ;Help...
  1053. 'Hilfe...
  1054.  
  1055. ;4th Page »
  1056. '4. Seite »
  1057.  
  1058. ;Quit shell    :
  1059. ;This is a system macro invoked if the user presses the close window
  1060. ;gadget in an active shell.
  1061. 'Beende Shell  :
  1062.  
  1063. ;New Window    :
  1064. ;A system macro expanded by the "New Window" item in the project menu.
  1065. 'Neues Fenster :
  1066.  
  1067. ;Get Help      :
  1068. ;A macro that should call the VNC.guide. Usually set to "SetVNC HELP"
  1069. 'Hilfe aufrufen:
  1070.  
  1071. ;Edit settings :
  1072. ;A macro used to invoke the prefs editor. Usually "SetVNC". Called if
  1073. ;the user select the "Settings" item in the project menu.
  1074. 'Einstellungen :
  1075.  
  1076. ;Fork new shell:
  1077. ;Another macro used to build a new shell on Ctrl-Z. This one is unique 
  1078. ;since it is not expanded as a keyboard sequence, but Execute()-d 
  1079. ;instead (so use \n to terminate it instead of \r). Should be something
  1080. ;like newcli.
  1081. 'Shell erzeugen:
  1082.  
  1083. ;***************************************************************************
  1084. ;
  1085. ;
  1086. ;
  1087. #464
  1088. ;ViNCEd system page 4 (of 4) :
  1089. 'ViNCEd System Seite 4 (von 4) :
  1090.  
  1091. ;Help...
  1092. 'Hilfe...
  1093.  
  1094. ;« 1st Page
  1095. '« 1. Seite
  1096.  
  1097. ;Quit program  :
  1098. ;Another system macro that is called if a running program in a ViNCEd shell
  1099. ;should be terminated. Called if the close gadget is pressed and a command
  1100. ;is loaded.
  1101. 'Beende Progr. :
  1102.  
  1103. ;Icon path     :
  1104. ;This is the path of the icon that is displayed if a ViNCEd window gets
  1105. ;iconified. It is a standard workbench icon, without the ".info".
  1106. 'Iconpfad      :
  1107.  
  1108. ;Icon title    :
  1109. ;The title that is shown under the icon. Defaults to the window title or
  1110. ;to the title that is set by some XTerm control sequence.
  1111. 'Icontitel     :
  1112.  
  1113. ;************************************************************************
  1114. ;The second window page, located here since I added it later
  1115. ;************************************************************************
  1116. #472
  1117.  
  1118. ;ViNCEd Window page 2 (of 3):
  1119. 'ViNCEd Fenster Seite 2 (von 3) :
  1120.  
  1121. ;Help
  1122. 'Hilfe...
  1123.  
  1124. ;3rd Page »
  1125. '3. Seite »
  1126.  
  1127. ;Sample color
  1128. ;Title of the box with the sample of the new color you can choose with
  1129. ;the sliders for custom screens
  1130. 'Farbbeispiel
  1131.  
  1132. ;Color    :%2ld
  1133. ;The current pen to be edited. The cryptic "%2ld" gets expanded to a
  1134. ;number between 0 and 15, i.e. the actual pen number.
  1135. 'Farbe    :%2ld
  1136.  
  1137. ;Custom Screen Colors:
  1138. ;Title on top of the red,green,blue sliders
  1139. ;This string is no longer printed because there's no room left....
  1140. 'Bildschirmfarben
  1141.  
  1142. ;Red    :
  1143. ;The title in front of the slider for the red component
  1144. 'Rot    :
  1145.  
  1146. ;Green  :
  1147. ;Same for the green slider
  1148. 'Grün   :
  1149.  
  1150. ;Blue   :
  1151. ;Same for the blue slider.
  1152. 'Blau   :
  1153.  
  1154. ;The next ones display a percent value, namely the contribution of
  1155. ;red,green and blue, respectively, to the current color.
  1156. ;There's usually no need to change them...
  1157. ;%% is expanded into a single percent sign, by the way.
  1158. ;%-3ld results in a three digit decimal number.
  1159.  
  1160. ;%-3ld%%
  1161. '%-3ld%%
  1162.  
  1163. ;%-3ld%%
  1164. '%-3ld%%
  1165.  
  1166. ;%-3ld%%
  1167. '%-3ld%%
  1168.  
  1169. ;Load this register
  1170. ;A checkmark, used to indicate if the current pen should be set by
  1171. ;ViNCEd. The sliders are unaccessable unless this one is checked.
  1172. 'Dieses Register setzen
  1173.  
  1174. ;« Prev
  1175. ;Move to the previous pen
  1176. '« Zurück
  1177.  
  1178. ;Next »
  1179. ;Edit the next pen
  1180. 'Vorwärts »
  1181.  
  1182.  
  1183. ;Set ANSI mapping
  1184. ;A checkmark added to the 40.15 release of ViNCEd. If set, this color
  1185. ;defines not an hardware register, but the software ANSI mapping, i.e.
  1186. ;the ANSI pen of the same color index.
  1187. 'ANSI Farbe definieren
  1188.  
  1189. ;**************************************************************************
  1190. ;The fourth shell page, also added for 40.30
  1191. ;**************************************************************************
  1192.  
  1193. #488
  1194. ;ViNCEd Shell Page 5 (of 5) :
  1195. 'ViNCEd Shell Seite 5 (von 5) :
  1196.  
  1197. ;Help...
  1198. 'Hilfe...
  1199.  
  1200. ;« 1st Page
  1201. '« 1. Seite
  1202.  
  1203. ;Name only qualifier
  1204. ;Setup the qualifier for icon-drop, used to indicate that the user wants
  1205. ;to insert the name of the dropped icon only.
  1206. 'Nur Namen einfügen
  1207.  
  1208. ;Path only qualifier
  1209. ;The same, but for the path-only icon drop modifier
  1210. 'Nur Pfad einfügen
  1211.  
  1212. ;The names of the keys. Shouldn't change until they are labeled
  1213. ;differently at your local keyboard. All are present twice, once for
  1214. ;the name only and once for path only. Please change both if you
  1215. ;have to change them at all.
  1216.  
  1217. ;Shift
  1218. 'Shift
  1219.  
  1220. ;Shift
  1221. 'Shift
  1222.  
  1223. ;Control
  1224. 'Control
  1225.  
  1226. ;Control
  1227. 'Control
  1228.  
  1229. ;Alt
  1230. 'Alt
  1231.  
  1232. ;Alt
  1233. 'Alt
  1234.  
  1235. ;Commodore
  1236. ;The left amiga key
  1237. 'Commodore
  1238.  
  1239. ;Commodore
  1240. 'Commodore
  1241.  
  1242. ;************************************************************************
  1243. ;The fourth edit page, also added later on
  1244. ;************************************************************************
  1245.  
  1246. #504
  1247. ;ViNCEd Edit page 4 (of 5) :
  1248. 'ViNCEd Editor Seite 4 (von 5) :
  1249.  
  1250. ;Help
  1251. 'Hilfe...
  1252.  
  1253. ;5th page »
  1254. '5. Seite »
  1255.  
  1256. ;Invisible type ahead
  1257. ;Enable the type ahead. Typing while no input is requested won't go into
  1258. ;the window, it is instead buffered and displayed as soon as some
  1259. ;program wants to read keyboard input.
  1260. 'Asynchroner Tastaturbuffer
  1261.  
  1262. ;Enable scrollers in RAW mode
  1263. ;Allow scroller usage, even in RAW mode. The scrollers are usually
  1264. ;ghosted (disabled), but when this flag is turned on you MAY scroll
  1265. ;in the window. This works like an implicit XTerm mode for RAW windows.
  1266. 'Scroller im RAW Modus verwendbar
  1267.  
  1268. ;Inverse ANSI coloring
  1269. ;Swap the meaning of ANSI black and white for better readability. Does
  1270. ;work ONLY in the ANSI mode.
  1271. 'Inverse ANSI-Farben
  1272.  
  1273. ;Numeric keypad cursor control
  1274. ;Use the numeric keypad for cursor and history movement, not for number
  1275. ;input. 8 and 2 replace ALT+cursor, 4 and 6 the left and right cursor keys
  1276. ;7 and 1 scroll to the top / end of the buffer, 9 and 3 scroll upwards and
  1277. ;downwards one page. 5 moves to the end of the line, and 0 toggles 
  1278. ;overwrite/insert mode
  1279. 'Cursorsteuerung durch Ziffernblock
  1280.  
  1281. ;************************************************************************
  1282. ;The third window page
  1283. ;************************************************************************
  1284. ;
  1285. ;Some miscellaneous window control flags have been added here. This page
  1286. ;is new to 40.33
  1287. ;
  1288. #513
  1289. ;ViNCEd window page 3 (of 3):
  1290. 'ViNCEd Fenster Seite 3 (von 3) :
  1291.  
  1292. ;Help...
  1293. 'Hilfe...
  1294.  
  1295. ;« 1st Page
  1296. '« 1. Seite
  1297.  
  1298. ;Disable horizontal scroller
  1299. ;Prevents ViNCEd from adding a horizontal scroller by default.
  1300. ;The scroller can be requested with a PROPX in the window open path
  1301. ;explicitly.
  1302. 'Keinen horizontalen Scroller
  1303.  
  1304. ;Disable vertical scroller
  1305. ;Same for the vertical scroll bar.
  1306. 'Keinen vertikalen Scroller
  1307.  
  1308. ;************************************************************************
  1309. ;The fifth edit page, new to 40.15
  1310. ;************************************************************************
  1311.  
  1312. #528
  1313. ;ViNCEd Edit page 5 (of 5) :
  1314. 'ViNCEd Editor Seite 5 (von 5) :
  1315.  
  1316. ;Help
  1317. 'Hilfe...
  1318.  
  1319. ;« 1st page
  1320. '« 1. Seite
  1321.  
  1322.  
  1323. ;Exchange A+BS/Del with S+A+BS/Del
  1324. ;Swap the keyboard layout of these two delete-related settings.
  1325. ;If checked, Alt+Del and Alt+Bs erase the end/beginning of the line
  1326. ;Delete user input and delete word are mapped to the same keys with
  1327. ;Shift as additional qualifier
  1328. 'Vertausche A+BS/Del mit S+A+BS/Del
  1329.  
  1330. ;Keep bottom of window adjusted
  1331. ;The bottom line of the window will be scrolled down to the bottom border
  1332. ;of the window on resize, giving the old CON: behaiviour.
  1333. 'Unterste Zeile am Rand ausrichten
  1334.  
  1335. ;************************************************************************
  1336. ;The fourth shell page, new to 40.15
  1337. ;************************************************************************
  1338. ;
  1339. ;This page was inserted between the third and forth shell page in 40.15.
  1340. ;The former forth page is now the fifth page and defined above...
  1341. ;
  1342.  
  1343. #544
  1344. ;ViNCEd Shell page 4 (of 5) :
  1345. 'ViNCEd Shell Seite 4 (von 5) :
  1346.  
  1347. ;Help
  1348. 'Hilfe...
  1349.  
  1350. ;5th page »
  1351. '5. Seite »
  1352.  
  1353.  
  1354. ;Icon files don't match implicitly
  1355. ;Don't add ".info" files to the TAB expansion list unless the user asks
  1356. ;for them by giving a pattern ending with .info
  1357. '".info" Dateien nicht implizit einsortieren
  1358.  
  1359. ;Shorter command search paths
  1360. ;Truncate the search path for commands even more. If this is enabled,
  1361. ;the "Partial Path" C: and CurrentDir() is used with the 
  1362. ;"Search commands in current and C: only" disabled, and only the current
  1363. ;dir is used if both flags are enabled.
  1364. 'Noch kürzere Suchpfade für Kommandos
  1365.  
  1366.  
  1367. ;************************************************************************
  1368. ;That's all folks!
  1369. ;
  1370.