home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / top2src.zip / STTNGGER.LNG < prev    next >
Text File  |  1996-11-09  |  57KB  |  1,043 lines

  1. ; Raumschiff Enterprise - Das n. Jahrhundert - Sprachdatei für "The Online Pub"
  2. ; -----------------------------------------------------------------------------
  3. ;
  4. ; Dieses Sprachfile wurde erstellt von:
  5. ; Mark Söntges
  6. ; für
  7. ; THE ONLINE PUB V2.00 (Final Version!)
  8. ; Der Author (Mark Söntges) ist erreichbar unter folgenden Adressen:
  9. ; BBS :        Picard @ MSCS VIP-BOX Duisburg, Germany  +49 - 203 - 777344/48
  10. ; FIDO: Mark Soentges @ 2:2448/803 (Zottel BBS)
  11. ; INET:         marks @ metronet.de
  12. ; Der Author ist in folgenden Mailboxen regelmäßig anzutreffen:
  13. ; SYSTEM NAME + ADRESSE:             MODEM NR.:          User-Id:
  14. ; -----------------------------------------------------------------------------
  15. ; MSCS VIP-BOX Duisburg, Germany     0203-777344/48      Picard
  16. ; Zottel BBS, Duisburg, Germany      0203-426270         Mark Soentges
  17. ; Zottel BBS, Duisburg, Germany      0203-412983/84      Mark Soentges
  18. ;
  19. ; COPYRIGHT & GEWÄHRLEISTUNG:
  20. ; Dieses Sprachfile wird OHNE IRGENDWELCHE Garantien und ohne Haftbarkeit
  21. ; bei Folgeschäden zur Verfügung gestellt. Dafür darf das File von Privat-
  22. ; Personen in Hobby-Mailboxen gebührenfrei verwendet werden.
  23. ; Für kommerzielle Nutzung gilt Copyright (C) 1996 by MSCS Mark Söntges
  24. ; Kommerzielle Nutzung ist NICHT KOSTENLOS! Bei Interesse schreiben Sie
  25. ; an (min. eine der) obengenannte Andressen!
  26. ; -----------------------------------------------------------------------------
  27. ;     The language file consists of "language items".  Each time TOP wants to
  28. ; display text, it looks in the language file for a language item, identified
  29. ; by a unique keyword, and displays the text associated with that item.  Each
  30. ; line of this file is one language item, except for lines (like this one) that
  31. ; begin with a semi-colon.  Lines beginning with semi-colons are comments, and
  32. ; are ignored by TOP.  NOTE:  DO NOT USE BLANK LINES WHEN FORMATTING!  Blank
  33. ; lines will work, but they will waste memory.  If you want to format this file
  34. ; for readability, use lines with just a semi-colon on them (as this file
  35. ; does), instead of blank lines.
  36. ;
  37. ;     The format of a language item is this:
  38. ;
  39. ;     <name> <text>
  40. ;
  41. ;     <name> is a special keyword that TOP will look for when it needs to use
  42. ; the language item.  <text> is the actual language text, also called a string.
  43. ; Note that <name> is always one "word" long, so <text> always starts on the
  44. ; second word.  As in this file, you may use extra space between <name> and
  45. ; <text> to improve readability.
  46. ;
  47. ;      The language items in this file are grouped into categories.  A comment
  48. ; following each category name describes what the items in the categories are
  49. ; used for.  The categories that you'll most likely want or need to change
  50. ; appear at the top of this file, with categories that will rarely need
  51. ; changing in the middle and categories that will probably never need changing
  52. ; towards the end. Note that the category names are just comments, and do not
  53. ; actually affect the way TOP reads the language items. The actual order of
  54. ; appearance of the language items is not important, and you may regroup them
  55. ; in any way you like.  Also, some blocks of items are preceeded by comments to
  56. ; let you know in general what they do.
  57. ;
  58. ;     Throughout this language file, special character combinations are used.
  59. ; These combinations are called "Language Tokens", and each one performs a
  60. ; special function, as described below.  All language tokens are
  61. ; case-insensitive, i.e. @b and @B are the same.
  62. ;
  63. ;    Token      Function
  64. ; ------------|-----------------------
  65. ;      @1       *Replaced with the first special parameter for that item.
  66. ;               Special parameters are used by language items in much the same
  67. ;               way that batch files use DOS command line parameters. Each
  68. ;               parameter has a number from 1 to 9, and you can use (display)
  69. ;               these parameters by inserting the corresponding language token,
  70. ;               i.e. @1 to @9.  The contents of the special parameters vary for
  71. ;               each language item.  Unfortunately, as this is a gamma version
  72. ;               of TOP, there are currently no descriptions of what these
  73. ;               parameters are for each item, so you will have to use a
  74. ;               combination of common sense and expirimentation to figure out
  75. ;               exactly what they are used for in each item.  To be safe, try
  76. ;               to build new strings around these parameter tokens.  NOTE:
  77. ;               Although it is rarely necessary to use each parameter token
  78. ;               more than once, you can use any parameter token as many times
  79. ;               as needed.
  80. ;  @2 thru @9   *Replaced with parameters 2 through 9, as described above.
  81. ;      @<       Replaced with a destructive backspace.  A destructive backspace
  82. ;               is actually a sequence of three ASCII characters: 008
  83. ;               (backspace), 032 (space), and 008 (backspace).  This ensures
  84. ;               that the character under the cursor after the backspace will be
  85. ;               removed from the screen.  If you wish to use a non-destructive
  86. ;               backspace, use @X008 (see @X description below).
  87. ;      @B       Replaced with a Ctrl-G (ASCII 007), producing a BEEP noise. Do
  88. ;               not use too many of these codes in a row, because the beeping
  89. ;               can be annoying and can delay the user's terminal (and in rare
  90. ;               cases even crash it).  This is because the actual noise
  91. ;               generated is system-dependant, and may sound different or have
  92. ;               different lengths on different computers. Also, the noise
  93. ;               generated on the remote system can sound different as well.
  94. ;               Furthermore, some terminal programs allow the user to disable
  95. ;               the beeps, so do not rely on them to get a user's attention -
  96. ;               use some text as well.
  97. ;      @C       CR/LF (ASCII 013/010).  Advances the cursor to the next line.
  98. ;      @D       Deletes from the cursor to the end of the current line.
  99. ;               Ignored if ANSI or AVATAR is not being used.
  100. ;      @E       Erases the screen.  NOTE:  May not work on all terminals!  Do
  101. ;               not rely on a screen clear to set up a display or the display
  102. ;               may be corrupted if the user's terminal does not support screen
  103. ;               clearing!
  104. ;   @L"Name"    Displays the language item named Name.  Name may be any valid
  105. ;               <name> word that appears in this language file, or one of your
  106. ;               own language item names.  The quotation marks ARE REQUIRED.
  107. ;               NOTE:  This token is never used by any of the language files
  108. ;               included with TOP, but is available in case you want to put
  109. ;               headers or footers or other common text strings in certain
  110. ;               items.  IF YOU USE YOUR OWN CUSTOM LANGUAGE ITEM NAME, BE SURE
  111. ;               TO DEFINE IT IN YOUR LANGUAGE FILE!  Language Item Names are
  112. ;               limited to 30 characters or less.  WARNING:  Do not use this
  113. ;               token to display language items that require parameters!
  114. ;               There is no way for TOP to know to pass the parameters and as
  115. ;               a result TOP may display garbage or crash.
  116. ;    @P0102     Position Cursor.  Positions the cursor at (2,1).  The first
  117. ;               two digits indicate the row (y-coordinate) to position the
  118. ;               cursor at, and the second two digits indicate the column
  119. ;               (x-coordinate) to position the cursor at.  The first number can
  120. ;               be from 01 to 25 (SEE NOTE), and the second can be from 01 to
  121. ;               80.  If the number for either position is less than 10, it must
  122. ;               have a zero in front of it.  Examples:  0135 (35,1) instead of
  123. ;               135, 1005 (5,10) instead of 105, and 0101 (2,1) instead of 11.
  124. ;               As this corresponds to a graphical code, it will be ignored if
  125. ;               ANSI or AVATAR is not available to the user.  Many language
  126. ;               items that use this token by default have non-graphical
  127. ;               equivalents, or are not used at all in non-graphical mode.
  128. ;               NOTE:  Though values from 01 to 25 are valid for the row
  129. ;               position, the number must also not exceed both the user's
  130. ;               defined screen size, and, if Snoop mode is on, the current
  131. ;               local screen size.  Unless absolutely required, you should try
  132. ;               to keep this value limited to 23 or less, as graphical modes
  133. ;               will not be permitted by TOP if the user has a screen size less
  134. ;               than 23.
  135. ;    @R123      Repeat Indicator.  Repeats the next character 123 times.  123
  136. ;               can be any 3 digit number from 000 to 255, and must be
  137. ;               zero-padded (003 instead of 3, and 075 instead of 75).  The
  138. ;               number cannot be greater than 500.  This token should be used
  139. ;               when a character has to be repeated many times (eg. seperator
  140. ;               lines).  It saves memory space, and it can provide faster
  141. ;               displaying time.
  142. ;      @S       Space character.  Use this if you need to put a space character
  143. ;               at the beginning of a language item.  If you don't, TOP will
  144. ;               think the space is just for formatting purposes and disregard
  145. ;               it.  You can also use this token at the end of language items
  146. ;               if your editor trims spaces from the end of each line.  It is
  147. ;               recommended that you use this token at the end of items even if
  148. ;               your editor doesn't do this, because one day you may edit the
  149. ;               language file using a different editor (one which does trim
  150. ;               spaces) and cause problems for yourself.  Plus, it makes it
  151. ;               more apparent that a space is there.
  152. ;    @X123      Displays ASCII character #123.  123 can be any 3 digit number
  153. ;               from 000 to 255.  Note that it must be zero-padded (003 instead
  154. ;               of 3 and 075 instead of 75).  Useful for embedding raw ANSI
  155. ;               codes, although this is not recommended.
  156. ;
  157. ;   * For each of the Parameter Tokens (@1 thru @9), modifiers may be used to
  158. ;     control the display.  These modifiers and their functions are listed
  159. ;     below.  C and C++ programmers will find these somewhat familiar.
  160. ;
  161. ;   Modifier    Function
  162. ; ------------|------------------------
  163. ;     .##       Forces display length to be ## characters long and
  164. ;               right-justifies the parameter text, filling the unused portion
  165. ;               with spaces.  Longer strings will be clipped to ## characters.
  166. ;               ## may be from 1 to 32767.
  167. ;    .0##       Same as .##, but fills the remaining display (if any) with
  168. ;               zeroes instead of spaces.
  169. ;    .-##       Same as .##, but left-justifies the result.
  170. ;     ..        Use two periods if you need to display a period immediately
  171. ;               after using a parameter token that uses no modifiers.
  172. ;
  173. ;     Examples of Language Token and Parameter Token Modifier usage appear
  174. ; throughout this file.
  175. ;
  176. ; -----------------------------------------------------------------------------
  177. ;
  178. ; Item Name Explanations
  179. ;
  180. ;     While it is neither required nor recommended that you be familliar with
  181. ; the item name (<name>) of each of the language items, there are some
  182. ; conventions used when naming the items that you should be aware of.  Note
  183. ; that these items pertain only to TOP's default items and do not have to be
  184. ; applied to your own names.  The conventions are as follows:
  185. ;
  186. ;     - Names starting with "Cmds" indicate command word items.
  187. ;     - Names ending in "Keys" or "Char" indicate command key items.  For
  188. ; "Keys" items, the order of the characters is important!
  189. ;     - Names ending in "Prompt" indicate prompts.  They almost always end in
  190. ; either a space (@s) token, or @s plus a colour code.
  191. ;     - Names ending in "Prefix" and "Suffix" (or "Pref" and "Suf" in some
  192. ; cases) indicate formatting items.  "Prefix" items naturally come before
  193. ; complex displays, while "Suffix" items come after.  In some cases the Prefix
  194. ; items also include the item being prefixed, thus acting as a "shell" to
  195. ; display text that you might want to change the colour/appearance of.
  196. ;     - Names starting with "Log" indicate log items that are written to the
  197. ; system log.
  198. ;     - Names ending in "Sep" indicate seperator items (normally a line of
  199. ; hyphens) used purely for cosmetic formatting.
  200. ;     - Names are grouped with the common bond appearing first in the name.
  201. ; For example, "CmdsChangeChatMode" and "CmdsChangeEMessage" are first bonded
  202. ; by "Cmds" and then by "Change" (the CHANGE command).
  203. ;
  204. ;     When looking for specific items to change, it is recommended that you
  205. ; search for specific text and not for a language item name, because the item
  206. ; names are usually cryptic and hard to remember.  The items are named for
  207. ; brevity and not appearance.  Use the item name only as a limited guide when
  208. ; changing an item.
  209. ;
  210. ;     A complete guide to all language item names, uses, and parameters will
  211. ; appear in a configuration program, to be released with a future version of
  212. ; TOP.
  213. ;
  214. ; -----------------------------------------------------------------------------
  215. ;
  216. ; Cosmetic / Atmosphere
  217. ;
  218. ; These items have no practical merit and exist only to provide atmosphere.
  219. ;
  220. SitDown             @c@c^jDu betrittst 10 Vorne und setzt Dich an die Bar.@c
  221. BroughtToYouBy      @c^nDu bist an Bord der U.S.S. Enterprise (NCC-1701D).@c
  222. Goodbye             Vielen Dank für Deinen Besuch in 10 Vorne! Komm bald wieder!@c@c
  223. ;
  224. ; General Information
  225. ;
  226. ; These items tell the user about what's going on with regards to the system.
  227. ;
  228. Searching           ^pSuche in der elektronischen Gäste-Liste nach ^p@1^p...
  229. Setup               ^mBitte warten, verarbeite Daten...
  230. Creating            @c@c^jErstelle Deinen neuen Eintrag in der Gäaste-Liste...
  231. LookUpSearching     @c^jDurchsuche die Gäste-Liste von 10 Vorne nach ^o@1^j...@c
  232. DateTime            @c^nDas aktuelle Datum ist ^o@2.02.@1.02.@3.04^n und die Zeit ist ^o@4.02:@5.02:@6.02^n nach dem alten Erdenkalender.@c
  233. TimeIn              ^jDu bist seit ^p@1^j Minuten in 10 Vorne und hast noch ^p@2^j Minuten,@cbevor Dein Dienst wieder beginnt.@c
  234. LoggedOnNode        ^nDu bist auf Frequenz ^p@1^n dieses Systems.@c
  235. CreditDisplay       ^pDu hast noch ^p@1^p Bits.@c
  236. Greeting            @c@c^jHallo, ^o@1^j!@cDeine Dienstnummer ist @2. Zuletzt warst Du vor @3 Tagen in 10 Vorne.@c
  237. YoureInChannel      ^jDu bist in 10 Vorne an Tisch #^p@1^j.@c
  238. ChannelTopic        ^jThema an diesem Tisch: "^p@1^j"@c
  239. YoureInConference   ^jDu bist am ^p@1^j Konferenztisch.@c
  240. ConferenceTopic     ^jThema der Konferenz: "^p@1^j"@c
  241. YoureInUserChannel  ^jDu bist an ^p@1^j's persönlich reserviertem Tisch.@cWenn dies Dein eigener Tisch ist, kannst Du andere Gäste in 10 VORNE@cmit ^p/M INV Gast^j einladen oder mit ^p/M UNINV Gast^j ausladen.@c
  242. UserChannelTopic    ^jThema: "^p@1^j"@c
  243. LookAround          ^jAn diesem Tisch sitzt außer Dir:@s@s
  244. LookAroundNobody    ^jAußer Dir sitzt niemand an diesem Tisch.
  245. ShortHelp           ^nGib ^p?^n für eine Kurzhilfe ein, ^p/A LIST^n für die Action-Liste,@coder ^pX^n um zu Deinen Pflichten zurückzukehren.@c
  246. ReturnToBBS         ^nDu verläßt 10 Vorne und wendest Dich wieder Deinen Pflichten zu...^h@c@c
  247. NoLongerOnSystem    @c^o@1^m ist nicht mehr an Bord des Schiffes!
  248. ReturnToMain        @c^nDu setzt Dich wieder an die Bar von 10 Vorne...
  249. ;
  250. ; User Actions
  251. ;
  252. ; Whenever a user does something, including talking, these items are used.
  253. ; These are some of the items most frequently used by TOP!
  254. ;
  255. MsgPrefix           ***@c^A^oVon ^l@1^o: @2
  256. WhisperPrefix       ***@c^A^oVon ^l@1^j (geflüstert)^o: @2
  257. DirectedPrefix      ***@c^A^oVon ^l@1^o, an ^l@2^o: ^k@3
  258. TalkTypePrefix      ***@c^A^jVon ^o@1^j: ^l@2
  259. GAPrefix            ***@c^l@1^o @2
  260. GA2Prefix           ***@c^l@1^o's @2
  261. EMessage            ***@c^o@1^m ist gerade in 10 Vorne angekommen!
  262. XMessage            ***@c^o@1^m ist gerade zu seinen Pflichten zurückgekehrt!
  263. TossOut             ***@c^o@1^m mußte sich unerwartet wieder um seine Pflichten kümmern!
  264. InProf              ***@c^o@1^n ist in den Profil-Editor verschwunden, kommt aber bald wieder.
  265. OutProf             ***@c^o@1^n ist aus dem Profil-Editor zurückgekehrt!
  266. HandleChangeMsg     ***@c^o@1^n hat seinen Spitznamen ^p@2^n in ^o@3^n geändert!
  267. EXMsgChange         ***@c^o@1^n hat gerade ^p@2^n Ein/Ausgangssprüche geändert!
  268. SexChangeMsg        ***@c^o@1^n wurde holografisch umgewandelt und ist nun @2^n!
  269. DescChangeMsg       ***@c^o@1^n hat ^p@2^n Beschreibung geändert in:@c\"^j@3^n\"
  270. PersActChangeMsg    ***@c^o@1^n hat ^p@2^n persönlichen Actions geändert!
  271. Secretly            @<^j...^I^pheimlich!
  272. PrivChatIn          ^o@1^n ist gerade in einen Privat-Chat verschwunden.
  273. PrivChatOut         ^o@1^n ist gerade aus einem Privat-Chat zurückgekehrt.
  274. PrivChatRequested   @b^o@1^n erbittet einen PRIVATEN CHAT mit Dir!@cGib ^pCHAT @1^n ein, um den Chat zu starten, oder ^pNOCHAT^n um abzulehnen.
  275. PrivChatDenied      ^nSorry, ^o@1^n hat Deine Bitte um einen Privat-Chat abgelehnt.
  276. ChannelIn           ^o@1^m hat sich gerade an diesen Tisch gesetzt!
  277. ChannelOut          ^o@1^m hat sich an einen anderen Tisch gesetzt!
  278. LinkOn              ^o@1^m hat gerade eine Subraumverbindung zu ^p@2^m gestartet!
  279. LinkPrefix          ^j(^p@1^j): @2
  280. LinkOff             ^mDie Subraumverbindung zu ^p@1^m wurde unterbrochen!
  281. HasTossed           ^j@1^j hat Dich zu Deinen Pflichten zurückbeordert!@c
  282. HasZapped           ^j@1^j hat Dich in Dein Quartier zurückgeschickt!@c
  283. TossComment         ^nKommentar:  ^o@1@c
  284. HasCleared          ^mFrequenz ^p@1^m (^o@2^m) wurde von ^o@3^m resettet und neu freigegeben!
  285. SecChangeMsg        ^o@1^n hat Deinen Level für 10 Vorne geändert in ^p@2^n!
  286. TopicChangeMsg      ^o@1^n hat das Thema für diesen Tisch geändert in:@c^g"^p@2^g"
  287. ModChangeMsg        ^o@1^n hat ^p@2^n soeben als neuen Moderator dieses Tisches ernannt!
  288. HasBeenBanned       ^o@1^n wurde soeben von diesem Tisch ^I^mverbannt^A^n durch ^p@2^n!
  289. HasBeenUnBanned     ^o@1^n hat ^p@2^n soeben wieder an diesem Tisch ^pzugelassen^n!
  290. HasBeenInvited      ^o@1^n hat ^p@2^n soeben zu diesem Tisch ^peingeladen^n!
  291. HasBeenUnInvited    ^o@1^n hat soeben die ^I^mEinladung^A^n an ^p@2^n wiederrufen!
  292. YouBannedChan       ^nDu wurdest von Tisch ^p@1^n ^I^mverbannt^A^n!
  293. YouBannedUserChan   ^nDu wurdest von ^p@1^n's Tisch ^I^mverbannt^A^n!
  294. YouBannedConf       ^nDu wurdest von der Konferenz ^p@1^n ^I^mverbannt^A^n!
  295. YouUnBannedChan     ^nDie ^pVerbannung^n von Tisch ^p@1^n wurde aufgehoben!
  296. YouUnBannedUsChan   ^nDie ^pVerbannung^n von ^p@1^n's Tisch wurde aufgehoben!
  297. YouUnBannedConf     ^nDie ^pVerbannung^n von der Konferenz ^p@1^n wurde aufgehoben!
  298. YouInvitedChan      ^nDu wurdest gerade ^peingeladen^n an Tisch ^p@1^n!
  299. YouInvitedUsChan    ^nDu wurdest gerade ^peingeladen^n an ^p@1^n's Tisch!
  300. YouInvitedConf      ^nDu wurdest gerade ^peingeladen^n zur ^p@1^n Konferenz!
  301. YouUnInvitedChan    ^nDu wurdest gerade ^I^mrausgeschmissen^A^n von Tisch ^p@1^n!
  302. YouUnInvitedUsCh    ^nDu wurdest gerade ^I^mrausgeschmissen^A^n von ^p@1^n's Tisch!
  303. YouUnInvitedConf    ^nDu wurdest gerade ^I^mrausgeschmissen^A^n aus der Konferenz ^p@1^n!
  304. ;
  305. ; Action Confirmation
  306. ;
  307. ; When a user issues a successful command, one of these items is shown.  They
  308. ; are pretty generic.
  309. ;
  310. WhisperSent         ^m-- Text geflüstert an ^o@1^m --@c
  311. DirectedSent        ^m-- Text gerichtet an ^o@1^m --@c
  312. GASent              ^m-- GA-Action gesendet --@c
  313. MsgSent             ^m-- Text gesendet --@c
  314. TalkTypeActionSent  ^m-- TalkType Action gesendet --@c
  315. TalkTypeMsgSent     ^m-- TalkType Text gesendet --@c
  316. Forgotten           ^nOkay, der Computer wird alle Texte und Actions von ^o@1^n herausfiltern. Genieß den Frieden und die Ruhe!@c
  317. Remembered          ^nOkay, der Computer filtert Texte und Actions von ^o@1^n nicht mehr heraus.@c
  318. ChangedHandle       ^nOkay, Du wirst nun unter dem Namen ^o@1^n gegenüber der Besatzung angezeigt.@c
  319. ChangedEMessage     ^nOkay, Dein Eingangsspruch für 10 Vorne wurde geändert.@c
  320. ChangedXMessage     ^nOkay, Dein Ausgangsspruch für 10 Vorne wurde geändert.@c
  321. EMessageCleared     ^nOkay, Dein Eingangsspruch für 10 Vorne wurde ^pGELÖSCHT^n.@c
  322. XMessageCleared     ^nOkay, Dein Ausgangsspruch für 10 Vorne wurde ^pGELÖSCHT^n.@c
  323. ChangedSex          ^nOkay, Du bist anderen gegenüber jetzt ^p@1^n.@c
  324. ChangedChatMode     ^nOkay, Du arbeitest jetzt im ^p@1^n Modus.@c
  325. ChangedListed       ^nOkay, Dein Tischname / Deine Tischnummer wird jetzt anderen ^p@1^n.@c
  326. DirectLogOffMsg     ^mOkay, bis zum nächsten Mal. Laß Dich bald wieder blicken!@c
  327. HasBeenTossed       ^kOkay, ^o@1^k muß jetzt seinen Pflichten nachgehen!@c
  328. HasBeenZapped       ^kOkay, ^o@1^k wurde in sein Quartier geschickt!@c
  329. NodeCleared         ^kOkay, Frequenz ^o@1^k wurde resettet und neu freigegeben.@c
  330. SecHasBeenSetAt     ^kOkay, ^o@1^k's Level ist jetzt ^p@2^k.@c
  331. PrivChatReqOK       ^nOkay, ^o@1^n hat Deine Bitte um einen Privat-Chat bekommen.@c
  332. PrivChatDenyOK      ^nOkay, Du hast ^p@1^n's Anfrage zum Privat-Chat abgelehnt.@c
  333. NowInConference     ^pDu gehst zum Konferenztisch ^o@1^p und nimmst Platz.@c
  334. NowInChannel        ^pDu gehst zu Tisch  #^o@1^p und nimmst Platz.@c
  335. NowInUserChannel    ^pDu gehst zu ^o@1^p's persönlich reserviertem Tisch und nimmst Platz.@c
  336. BannedUser          ^pOkay, ^o@1^p ist von diesem Tisch verbannt worden.@c
  337. UnBannedUser        ^pOkay, ^o@1^p ist nicht länger von diesem Tisch verbannt.@c
  338. InvitedUser         ^pOkay, ^o@1^p ist an diesen Tisch eingeladen worden.@c
  339. UnInvitedUser       ^pOkay, ^o@1^p ist nicht mehr an diesen Tisch eingeladen.@c
  340. ChangedTopic        ^pOkay, das Thema dieses Tisches wurde geändert.@c
  341. ChangedMod          ^pOkay, ^o@1^p ist jetzt der Moderator dieses Tisches.
  342. ActionsNowOff       ^pOkay, Du hast alle Actions auf ^mAUS^p geschaltet. Du kannst keine Actions@c      mehr senden und kannst auch keine Actions anderer empfangen!@c
  343. ActionsNowOn        ^pOkay, Du hast alle Actions auf ^oEIN^p geschaltet und @c      kannst wieder Actions senden und empfangen!@c
  344. JustTo              ^j...^pund nur an ^o@1^p!
  345. ;
  346. ; Prompts
  347. ;
  348. ; When TOP requires interaction with the user, it shows one of these items.
  349. ; These are also pretty generic.
  350. ;
  351. EnterName           ^jBitte gib Deinen Vor- und Nachnamen ein --->@s^p
  352. EnterPW             ^jBitte gib Deinen Sicherheitscode ein    --->@s^p
  353. EnterNewPW          @c^jBitte gib einen Sicherheitscode ein,@cmit dem Dein Zugang gesichert werden soll            --->@s^n
  354. ConfirmPW           @c@c^jBitte erneut eingeben, um Tippfehler auszuschließen! --->@s^n
  355. GenderPrompt        @c^jHey, bist Du (^nM^j)ännlich oder (^nW^j)eiblich?
  356. EnterHandle         ^jBitte gib Deinen Spitznamen ein (30 Zeichen max., ENTER für ENDE)@c--->@s^o
  357. EnterDescPrompt     @c^jBitte gib eine kurze Beschreibung von Dir ein (60 Zeichen max., ENTER für KEINE)@c--->@s^o
  358. LookUpPrompt        @c^jBitte einen Namen für die Suche eingeben, oder Enter für eine komplette Liste.@c--->@s^o
  359. MorePrompt          Weiter (J/n/=)?
  360. PressAnyKey         Drücke eine beliebige Taste...
  361. DefaultPrompt       ^A^h@1:^p@s
  362. ;
  363. ; Command Words
  364. ;
  365. ; These items work differently from those above.  These items are the words and
  366. ; shortcuts used to trigger every command available from TOP.  Each word is
  367. ; considered a synonym for the command, with the "main" command word appearing
  368. ; first in the item.  Note that commands may not contain spaces, although some
  369. ; commands are specifically set up as two word commands.
  370. ;
  371. CmdsQuit            EXIT X QUARTERS
  372. CmdsCommands        HELP ?
  373. CmdsColourHelp      COLOURHELP COLORHELP *
  374. CmdsTime            TIME DATE STARDATE
  375. CmdsWho             SCAN /S
  376. CmdsProfile         PROFILE EDIT /E
  377. CmdsLookUp          REGISTER USERREG GÄSTEBUCH /R
  378. CmdsNodes           USERS #
  379. CmdsPage            PAGE /P
  380. CmdsForget          FORGET /F
  381. CmdsRemember        REMEMBER /R
  382. CmdsLogOff          !!LOG!!
  383. CmdsWhisperLong1    WHISPER
  384. CmdsWhisperLong2    TO AT
  385. CmdsDirectedLong1   DIRECT
  386. CmdsDirectedLong2   TO AT
  387. CmdsGA              GA
  388. CmdsGA2             GA'S
  389. CmdsHelp            LONGHELP !
  390. CmdsHelpActions     ACTIONS
  391. CmdsHelpGeneral     GENERAL TOP MAIN INDEX
  392. CmdsHelpChannels    CHANNELS TABLES
  393. CmdsHelpTopics      TOPICS TOPIC
  394. CmdsAction          ACTION /A
  395. CmdsActionList      LIST
  396. CmdsActionListAll   ALL
  397. CmdsActionOn        ON
  398. CmdsActionOff       OFF
  399. CmdsActionAll       ALL ALLE
  400. CmdsActionSecretly  SECRETLY /S
  401. CmdsSysop           SYSOP \S
  402. CmdsSysopClear      CLEAR C
  403. CmdsSysopToss       TOSS T
  404. CmdsSysopZap        ZAP Z
  405. CmdsSysopSetSec     SETSEC SEC S
  406. CmdsChange          CHANGE /-
  407. CmdsChangeHandle    HANDLE H
  408. CmdsChangeEMessage  ENTRY E
  409. CmdsChangeXMessage  EXIT X
  410. CmdsChangeSex       SEX S
  411. CmdsChangeChatMode  CHATMODE MODE M
  412. CmdsChangeListed    LISTED L
  413. CmdsPrivChat        CHAT /C
  414. CmdsPrivDenyChat    NOCHAT
  415. CmdsJoin            JOIN /J
  416. CmdsConfList        CONFLIST /CL
  417. CmdsModerator       MODERATOR /M
  418. CmdsModTopicChg     SETTOPIC TOPIC T
  419. CmdsModModChg       SETMOD MOD M
  420. CmdsModBan          BAN
  421. CmdsModUnBan        UNBAN
  422. CmdsModInvite       INVITE INV
  423. CmdsModUnInvite     UNINVITE UNINV
  424. ;
  425. ; Command Keys
  426. ;
  427. ; These are the keys that TOP uses for some single-key options.  IMPORTANT:  Be
  428. ; sure to keep the order of the keys the same, otherwise you may end up having
  429. ; a situation where, for example, Y will mean "no" and vice-versa.
  430. ;
  431. GenderKeys          MW
  432. MoreKeys            JN=@x013
  433. YesNoKeys           JN@x013
  434. DirectedShortChar   >
  435. WhisperShortChar    /
  436. ;
  437. ; Error, Invalid Command, and Warning Messages
  438. ;
  439. ; These messages are displayed whenever the user does something wrong.
  440. ;
  441. InvalidPW           @c@c^I^mFalscher Sicherheits-Code!!^A@s@c@c
  442. MaxPW               ^nSorry, @1 Versuche sind maximal möglich!
  443. PWNoMatch           @c@c^I^mCodes stimmen nicht überein!!^A^m  Auf ein neues!@c
  444. CmdNotAvail         ^mSorry, dieser Befehl steht hier an Bord NICHT zur Verfügung.@c
  445. NotLoggedIn         ^mSorry, ^o@1^m ist nicht an Bord.@c
  446. NotSpecific         ^mSorry, der von Dir eingegebene Name ^o@1^m ist nicht genau genug.@cBitte nochmal mit mehr Buchstaben versuchen!@c
  447. HandleInUse         ^I^pDieser Name wird schon von jemand anders genutzt!^A^j  Auf ein neues!@c
  448. HandleNotSpecified  ^mDu mußt mit ^oCHANGE HANDLE^m einen Spitznamen definieren!@c
  449. ActionsNotAllowed   ^mSorry, Actions sind hier an Bord nicht zulässig.@c
  450. DualWindowNoGfx     ^mSorry, ohne ANSI-Codes kannst Du den 2-Fenster-Chatmodus nicht nutzen.@c
  451. ChgSexNotAllowed    ^mSorry, holografisches Ändern Deines Geschlechts ist hier an Bord nicht erlaubt.@c
  452. ChgEXMsgNotAllowed  ^mSorry, persönliche Ein-/Ausgangstexte sind hier an Bord nicht zugelassen.@c
  453. ChgHandNotAllowed   ^mSorry, Du darfst Deinen Spitznamen hier an Bord nicht selbst ändern.@c
  454. NoAccTalk           ^mSorry, Dein Rang in 10 Vorne ich nicht hoch genug,@cum in 10 Vorne zu reden. Du darfst aber zuhören!@c
  455. NoAccChgHandle      ^mSorry, Dein Rang in 10 Vorne ich nicht hoch genug,@cum Deinen Spitznamen zu ändern.@c
  456. NoAccChgSex         ^mSorry, Dein Rang in 10 Vorne ich nicht hoch genug,@cum Dein Geschlecht holografisch zu ändern.@c
  457. NoAccChgEXMsg       ^mSorry, Dein Rang in 10 Vorne ich nicht hoch genug,@cum Ein-/Ausgangssprüche zu definieren.@c
  458. NoAccPrivMsg        ^mSorry, Dein Rang in 10 Vorne ich nicht hoch genug,@cum private Texte zu senden.@c
  459. NoAccActUse         ^mSorry, Dein Rang in 10 Vorne ich nicht hoch genug,@cum Actions zu senden.@c
  460. PrivChatCantReq1    ^mKann Chat-Anfrage nicht senden!@c^o@1^n will immer noch mit Dir reden!@c
  461. PrivChatCantReq2    ^mKann Chat-Anfrage nicht senden!@c^o@1^n hat noch nicht auf Deine letzte Privat-Chat Anfrage geantwortet!@c
  462. PrivChatCantDeny    ^mKann Chat-Anfrage nicht ablehnen!@cNiemand hat Dich um einen Privat-Chat gebeten!@c
  463. NotInYourChannel    ^mSorry, ^o@1^m sitzt nicht an Deinem Tisch!@c
  464. NoHelpAvailable     ^mSorry, darüber gibt es nicht genügend Daten.@c
  465. BadListName         ^I^mUngültiger Listen-Name!^A  Gib ^o/A LIST^m (ohne Namen)@cfür eine Aufstellung aller Actions-Listen ein.@c
  466. BadChannelSec       ^mSorry, Dein Rang in 10 Vorne reicht für diesen Tisch nicht aus.@c
  467. BadChannelName      ^mUngültige Tisch-Bezeichnung (Name oder Nummer)!@c
  468. BadContext          ^A^mSorry, ^p@1^m @2 kann in dieser Weise nicht verwendet werden.@c
  469. HasForgotYou        ^mSorry, ^o@1^m nutzt den Computer, um Texte von Dir abzublocken.@c
  470. WhisperNotSent      ^m-- Flüstern erfolglos abgebrochen. --@c
  471. DirectedNotSent     ^m-- Text an Person erfolglos abgebrochen. --@c
  472. GANotSent           ^m-- GA-Action erfolglos abgebrochen. --@c
  473. Banned              ^mSorry, Sie wurden von diesem Tisch ^I^pverbannt^A^m!@c
  474. CantBanFromHere     ^mSorry, Sie können niemanden von diesem Tisch verbannen!@c
  475. WasntBanned         ^o@1^m ist von diesem Tisch nicht verbannt!@c
  476. CantBan             ^mKann ^o@1^m nicht verbannen!  Es sind schon zu viele Personen verbannt!@c
  477. NotInvited          ^mSorry, aber Du bist für diesen Tisch nicht eingeladen!@c
  478. CantInvFromHere     ^mSorry, aber Du kannst niemanden an diesen Tisch einladen!@c
  479. WasntInvited        ^o@1^m ist nicht an diesen Tisch eingeladen!@c
  480. CantInvite          ^mKann ^o@1^m nicht einladen!  Es sind schon zu viele Personen eingeladen!@c
  481. NotModerator        ^mSorry, Du verfügst an diesem Tisch über keine Moderator-Rechte!@c
  482. CantModInMain       ^mSorry, Moderator-Befehle können an der Bar nicht genutzt werden!@cBenutze die ^pSYSOP^m Kommandos, wenn Du Personen an der Bar verwalten willst.@c
  483. CantModToSysop      ^mSorry, diesen Moderator-Befehl kannst Du auf einen Admiral nicht anwenden!@c
  484. CantDoCmdToSelf     ^mSorry, diesen Befehl kannst Du nicht auf Dich selbst anwenden!@c
  485. CantDoCmdToSysop    ^mSorry, diesen Befehl kannst Du auf einen Admiral nicht anwenden!@c
  486. ;
  487. ; Commonly Used Words, Phrases, and Symbols
  488. ;
  489. ; These are words, symbols, and frequently used expressions that TOP uses for
  490. ; specific displays.
  491. ;
  492. Female              ^E^pWeiblich^A^h
  493. Male                ^B^pMännlich^A^h
  494. His                 ^pseinem/n
  495. Her                 ^pihrem/n
  496. Himself             ^psich selbst
  497. Herself             ^psich selbst
  498. He                  ^per
  499. She                 ^psie
  500. You                 ^pyou
  501. All                 ^ojeden
  502. YourSuffix          ^o·
  503. Pers3Suffix         ^j's
  504. Normal              Normal
  505. Action              Action
  506. TalkType            TalkType
  507. ChannelListed       getarnt
  508. ChannelUnlisted     sichtbar
  509. SingularHas         @shat
  510. PluralHave          @shaben
  511. NormalChatMode      Normal
  512. DualWindowChatMode  2-Fenster
  513. UserChanShortName   ^o@1^n
  514. PWEcho              #
  515. PersActListName     PERSONAL
  516. PersActListDesc     Deine Persönlichen Actions
  517. Yes                 Ja
  518. No                  Nein
  519. On                  EIN
  520. Off                 AUS
  521. ;
  522. ; BBS-specific
  523. ;
  524. ; These items are used only by BBS-specific functions inside TOP.  If you run
  525. ; an unsupported BBS type or are not using the BBS-specific features, you can
  526. ; comment this section out to reduce TOP's memory requirements.
  527. ;
  528. NodeNotInUse        @c^mSorry, auf Frequenz @1 ist niemand!@c@c
  529. NodeDND             @c^mSorry, der Gast auf Frequenz @1 will nicht gestört werden!@c@c
  530. CantPage            ^m -- ^I^mKANN KEINE Nachricht an Frequenz @1 senden!!!^A^m --@c@c
  531. Paged               ^m-- Nachricht gesendet an Frequenz @1 --@c@c
  532. InvalidNode         ^mUngültige Frequenz-Nr.!  Zulässig sind Nummern von ^p1^m bis ^p@1^m.@c
  533. RAEnter             ^jDrücke ENTER für weiter:
  534. RAOnNode            auf Frequenz
  535. RaMsgFrom           Nachricht von
  536. RAJustPosted        hat gerade eine e-mail an Dich geschickt in Bereich
  537. PageStatYes         ^p Ja
  538. PageStatNo          ^mNee
  539. NotAvailToPage      ^mSorry, Frequenz @1 kann nicht gerufen werden.
  540. NodeStatus          10 Vorne
  541. EnterPageSep        @c^c@r078-^p@c
  542. NodesNodeDisp       ^j@1.5@s
  543. NodesHandleDisp     ^o@1.-25@s
  544. NodesRealNameDisp   ^o@1.-25@s
  545. NodesSpeedDisp      ^p@1.6@s
  546. NodesLocationDisp   ^n@1.-20@s
  547. NodesStatusDisp     ^p@1.-10@s
  548. NodesPageStatDisp   ^m @1.3@s
  549. NodesGenderDisp     ^j@1@s
  550. NodesNumCallsDisp   ^m@1@s
  551. NodesNodeHdr        ^pFreq.@s
  552. NodesHandleHdr      ^pSpitzname                @s
  553. NodesRealNameHdr    ^pName                     @s
  554. NodesSpeedHdr       ^p Speed@s
  555. NodesLocationHdr    ^pStandort           @s
  556. NodesStatusHdr      ^p Status   @s
  557. NodesPageStatHdr    ^pPAGE?@s
  558. NodesGenderHdr      ^pGeschlecht@s
  559. NodesNumCallsHdr    ^pAnrufe@s
  560. NodesNodeSep        ^c@r006-
  561. NodesHandleSep      ^c@r026-
  562. NodesRealNameSep    ^c@r026-
  563. NodesSpeedSep       ^c@r007-
  564. NodesLocationSep    ^c@r021-
  565. NodesStatusSep      ^c@r011-
  566. NodesPageStatSep    ^c@r006-
  567. NodesGenderSep      ^c@r007-
  568. NodesNumCallsSep    ^c@r006-
  569. PageWho             @c^nWelche Frequenz rufen (? für eine Liste, ENTER = ABBRUCH)?@s^p
  570. EnterPage           @c^jGib die Nachricht an Frequenz @1 ein. Ende mit einer LEERZEILE.
  571. InvalidNode         @c^I^mUnzulässige Frequenz-Nummer!^A@s@c
  572. SBBSRecvPageHdr     ^jNachricht von ^o@1^j auf Frequenz ^p@2^j (in ^n10 Vorne^j):^p
  573. NoMemToPage         ^I^mNicht genug Speicher um jemanden zu rufen!^A@s
  574. PageAborted         @c@c^m-- ^IRuf abgebrochen^A --@c
  575. NodesListEndLine    @c
  576. NodesListAfterKey   @c@c
  577. NodesHdrPrefix      @c
  578. NodesHdrSuffix      @c
  579. NodesSepPrefix
  580. NodesSepSuffix      @c
  581. RAPageRecvPrefix    @c^p
  582. RAEnterSuffix       @c
  583. RAPageRecvSuffix    @c
  584. RAStatusType0       Im Menü
  585. RAStatusType1       Datei Xfer
  586. RAStatusType2       E-Mail
  587. RAStatusType3       Ext.Progr.
  588. RAStatusType4       Sysop Chat
  589. RAStatusType5       Fragebogen
  590. RAStatusType6       Konferenz
  591. RAStatusType7       Neuer Gast
  592. SBBSStatusType0     Im Menü
  593. SBBSStatusType1     Download
  594. SBBSStatusType2     Upload
  595. SBBSStatusType3     Ließt Mail
  596. SBBSStatusType4     SendetMail
  597. SBBSStatusType5     Sysop Chat
  598. SBBSStatusType6     Ext.Progr.
  599. SBBSStatusType7     Neuer Gast
  600. SBBSStatusType8     QWK Mail
  601. SBBSStatusType9     Dateiliste
  602. SBBSStatusType10    Node Chat
  603. ; The page headers and footers contain BBS-specific codes and should not be
  604. ; modified unless you know exactly what you are doing.
  605. RAPageHeader        @x010@x011[0E@b@x011]497 @x011[0B@1@x011[0E @x011]496 @x011[0A@2@x011[0E (in @x011[0D10 Vorne@x011[0E):@x011[0F@x010
  606. RAPageFooter        @x010@x011[0E@x011]258@x001@x010
  607. MaxPageHeader       @c@x022@x001@x014@bNachricht von @x022@x001@x011@1@x022@x001@x014 auf Frequenz @x022@x001@x010@2@x022@x001@x014 (In @x022@x001@x01310 Vorne@x022@x001@x014):@x022@x001@x015@c
  608. SBBSPageHeader      /MESSAGE,@1,@2/@x010
  609. SBBSPageFooter      /END/@x010
  610. ;
  611. ; System Messages
  612. ;
  613. ; These are messages triggered by events not related to chatting, and are
  614. ; usually error messages.
  615. ;
  616. FileErrorPrefix     @c
  617. CantOpen            ^I^nKann Datei nicht öffnen:  ^p@1^n!!
  618. CantRead            ^nKann Datei nicht lesen:  ^p@1^n!!
  619. CantWrite           ^nKann Datei nicht schreiben:  ^p@1^n!!
  620. CantAccess          ^nZugriffsfehler Datei:  ^p@1^n!!
  621. CantClose           ^nKann Datei nicht schließen:  ^p@1^n!!
  622. FileErrorMsgPrefix  @c
  623. FileErrorMsgSuffix  ^h@c@c
  624. NoFreeNode          @c@c^M^pKann keine freie Frequenz finden!@c
  625. ContactSuper        ^A^oBitte verständige den Sysop, damit das Problem behoben werden kann!@c@c
  626. CantInitFiles       @c@c^I^mKann Dateien nicht initialisieren!^A^m Bitte informiere den Sysop!@c@c
  627. InformSysop         ^A^oBitte verständige umgehend den Sysop!!
  628. CantDoAction        @c^mKANN ACTION NICHT AUSFÜHREN!  Bitte erzähl' das dem Sysop!
  629. PrivChatNoMem       @c^mNicht genug Speicher für einen Privat-Chat!  Bitte informiere den Sysop!@c
  630. PrivChatCantOpen    @c^mKann ^p@1^n nicht für einen Privat-Chat öffnen!  Bitte informiere den Sysop!@c
  631. PrivChatBufProb     @c^mPrivat-Chat Puffer-Überlauf! Bitte informiere den Sysop!@c
  632. NodeInUse           @c@c^mDie Frequenz auf der Du bist, ^o@1^m, ist schon in Gebrauch!
  633. NodeInUseContact    Kontaktiere Deinen Sysop, damit das Problem behoben werden kann.
  634. CrashToss           ^mDie Person auf Frequenz ^o@1^m ist auf mysteriöse Weise aus 10 Vorne verschwunden!@c
  635. AccessProblem       @c^oThe Online Pub^p hat Probleme mit dem Datei-Zugriff.@c
  636. AccessPrompt        Drücke ESC für Abbruch, oder warte bis sich das Problem von selbst löst.@c
  637. AccessShutDown      @c^mFATAL - PROGRAMMABBRUCH!  Bitte informiere den Sysop über diesen Vorfall.@c@c
  638. OutOfCredits        @c^mSorry, Du hast keine Bits mehr!@cNotgedrungen verläßt Du 10 Vorne um wieder Deinen Pflichten nachzugehen...@c@c
  639. OutOfMemory         ^I^mDem Computer für 10 Vorne ist der Speicher ausgegangen!!!^A^p
  640. CantJoin            ^mKann nicht an diesen Tisch wechseln!  Kann keinen Eintrag dafür erstellen!@cMöglicherweise hat der 10 Vorne Computer keinen Platz mehr in der Datenbank!@c
  641. SevereJoinError     @c^I^mKann nicht an den eigenen Tisch wechseln!^A^m  CHANIDX.TCH könnte beschädigt sein!@c^pBitte verständige den Sysop UMGEHEND!@c@c
  642. JoinError           @c^mKann nicht an diesen Tisch wechseln!  Bitte Sysop benachrichtigen!@c
  643. UnJoinError         @c^mKann den jetztigen Tisch nicht erfolgreich verlassen!@cBitte den Sysop informieren!@cVersuche, angewählten Tisch zu erreichen...@c
  644. CantJoinAtStart     @c^mKann nicht zurück an die Bar!  Bitte den Sysop informieren!@cVersuche, Deinen persönlichen Tisch zu erreichen...@c@c
  645. CantDoModCmd        ^I^mKann Moderator-Befehl nicht durchführen!^A  Bitte informiere den Sysop!@c
  646. CanReJoin           @c^I^mKann nicht zum letzten Tisch zurück!^A  Bitte informiere SOFORT den Sysop!@c^j10 Vorne Computer-Fehler!@cNotgedrungen gehst Du wieder Deinen Pflichten an Bord nach...@c@c
  647. ;
  648. ; Displays and Colouring
  649. ;
  650. ; These items make up some of the displays in TOP, including the larger list
  651. ; displays.  NOTE:  Do not change or remove any of the @ tokens unless you have
  652. ; studied the language token explanations at the start of this file and know
  653. ; precisely what you are doing!
  654. ;
  655. LookUpRealName      Real-Name
  656. LookUpHandle        Spitzname
  657. LookUpDisplay1      ^nSerial #^p@1.-5  ^n@2.10: ^o@3.-36   ^nSex: ^p@4@c
  658. LookUpDisplay2      ^nZuletzt hier:  ^p@1.02/@2.02/@3.04@c
  659. LookUpDisplay3      ^nBeschreibung: ^j@1.-60@c
  660. LookUpSep           ^c@r078-@c
  661. ChannelListHdr      @c^mTisch Name/Nummer     Thema@c
  662. ChannelListSep      ^c@r078-@c
  663. ChannelListFormat   ^n@1.-20  ^j@2@c
  664. ScanHeader          ^p@cSpitzname                          Tisch    Status@c
  665. ScanHeaderSep       ^c@r078-@c
  666. ScanInfo            ^o@1.-30  ^n@2.10  ^m@3@c
  667. ScanUnlistedChan    ^mGetarnt
  668. ScanEditing         Editiert@s
  669. ScanNotEditing
  670. ScanPrivChat        Chatet@s
  671. ScanNotPrivChat
  672. ActFileListPrefix   @c^pVerfügbare Action Listen@c@c
  673. ActFileListHdr      ^mName       Beschreibung@c
  674. ActFileListSep      ^c@r078-@c
  675. ActFileListItem     ^o@1.-8 ^g- ^n@2@c
  676. ActFileListSuffix   @c^jGib ^jACTION LIST <Name>^j ein, um die Actions einer speziellen Liste@canzuzeigen, oder ^jACTION LIST ALL^j um alle Actions anzuzeigen.@c@c
  677. ActListHeader       ^jActions in Liste "^j@1^j" (^p@2^j)@c@c
  678. ActListLegend       ^p+^m kennzeichnet TalkType Actions.@c
  679. ActListSep          @c
  680. ActListItem         ^n@1.-10
  681. ActListCharNormal   @s
  682. ActListCharTType    ^p+
  683. ActListItemSep      @s
  684. DWRestoreInput      ^A^p
  685. DWInputCurPos       @p0201^A^p
  686. DWTopDisplay        @p0101^E^p@r079 @p0102Eingabe-Fenster  -  Gib ^o?^p oder ^oENTER^p für Hilfe ein .
  687. DWMiddleDisplay     @p0601^B^p@r079 @p060210 Vorne Fenster -  Gib X ein, um 10 Vorne zu verlassen.
  688. DWBottomDisplay
  689. DWClearInput        @p0201^A^m@d@c@d@c@d@c@d@c
  690. DWPrepareInput      @p0101^A^m@d@c@d@c@d@c@d@c@d@c@d@c
  691. DWOutputPrepare     @e
  692. DWOutputSetCurPos   @p0701
  693. DWOutputPrefix      ^A^j
  694. DWRestorePrefix     @c
  695. LookAroundList      @1^o@2
  696. LookAroundSep       ^j,
  697. ActionListHeader    @c^jListe der ^nActions^j und ^pTalkTypes^j:@c
  698. ActionListAction    ^n @1.-10@s
  699. ActionListTalkType  ^p @1.-10@s
  700. Personals           @c^jPersönlich-->
  701. PersUndefined       ^h<Undefiniert>
  702. PrivChatPrefix      @c^o--- Privat-Chat gestartet ---@c@c^mDrücke ESC für Ende.@c@c
  703. PrivChatSuffix      @c@c^o--- Privat-Chat beendet ---@c@c
  704. PrivChatSuffix2     @c@c^o--- @1 hat den Privat-Chat beendet --@c@c
  705. PrivChatCol1        ^l
  706. PrivChatCol2        ^p
  707. CommandListPrefix   ^A^p @c
  708. ActionResponse      ^n@1
  709. MorePromptSuffix    @<@<@<@<@<@<@<@<@<@<@<@<@<
  710. EMsgPrefix          ^m@1
  711. XMsgPrefix          ^m@1
  712. ActionMe            ^o@1^j
  713. ActionYouPrefix     ^o
  714. ActionYouSuffix     ^j
  715. ActionHisHerPrefix  ^p
  716. ActionHisHerSuffix  ^j
  717. ActionHeShePrefix   ^p
  718. ActionHeSheSuffix   ^j
  719. ActionSelfPrefix    ^p
  720. ActionSelfSuffix    ^j
  721. ActionYour          ^o@1^j
  722. ActionPossessive    @1
  723. ;
  724. ; Display Formatting
  725. ;
  726. ; These items are mostly linefeeds and insignificant formatting items.  They are
  727. ; mostly part of displays that are used multiple times or under conditional
  728. ; circumstances, when attaching the formatting codes to a main item is not
  729. ; always desirable.
  730. ;
  731. MsgSentPrefix
  732. MsgDisplayPrefix    @c
  733. WhisperSentPrefix
  734. WhisperNotSentPref
  735. GASentPrefix
  736. GANotSentPrefix
  737. LookUpPrefix
  738. LookUpSuffix1       @c
  739. LookUpSuffix2       @c@c
  740. ActionListBeforeKey @c
  741. ActionListAfterKey  @c@c
  742. ActionUseSuffix     @c
  743. ActionSuffix        @c
  744. MoreAbortSuffix     @c@c
  745. ActionListBlockSep  @c
  746. ActListPrefix       @c
  747. ActListLineEnd      @c
  748. ActListSuffix       @c
  749. LookAroundFirst
  750. LookAroundAfter     @c
  751. ColourHelpPrefix
  752. ColourHelpSuffix    @c
  753. MessageTrailer      @c
  754. DelPromptPrefix
  755. DelPrompt           @<
  756. DelPromptSuffix     
  757. ShowFilePrefix
  758. ShowFileSuffix
  759. PressAnyKeySuffix   @c
  760. ChanSummaryPrefix
  761. OpeningSuffix       @c
  762. HelpPrefix          @c
  763. HelpSuffix
  764. DirectNotSentPref
  765. DirectedSentPrefix
  766. NewUserScrnPrefix   @c
  767. PrivChatEndLine     @c
  768. PWBackSpace         @<
  769. InputPrefix         @c
  770. GenderPromptSuffix  @c
  771. LocalLANStartPref   @c
  772. ResponsePrefix      @c
  773. ;
  774. ; Log Messages
  775. ;
  776. ; These messages are shown to the sysop in the log.
  777. ;
  778. LogMaxPW            !!!! Failed to enter the correct password!
  779. LogHandle           Using handle: @1
  780. LogStartSignOn      Began New User sign-on
  781. LogAbortSignOn      Aborted New User sign-on
  782. LogEnded            TOP v@1 ended successfully
  783. LogAlert            !!!!
  784. LogCouldntAccess    Could not access a file!
  785. LogLocal            Running in LOCAL mode
  786. LogLAN              Running in LAN mode
  787. LogDoor             Running in DOOR mode
  788. LogCantDoAction     !!!! CAN'T DO ACTION:  @1
  789. LogNodeInUse        !!!! Node @1 already in use!
  790. LogNameUsed         Logged in using the name: @1
  791. LogSentPage         Sent page to node @1
  792. LogCantPage         !!!! Can't page node @1!
  793. LogChangedHandle    Changed handle to @1
  794. LogOutOfMemory      !!!! OUT OF MEMORY!
  795. LogCantLoadLang     !!!! Can't load language file!  (May be out of memory.)
  796. LogCantLoadChan     !!!! Can't load channel definitions!  (May be out of memory.)
  797. LogNoFreeNode       !!!! Can't find a free node!
  798. LogOneRunMode       Task initiated from command line.
  799. LogCantLoadActs     !!!! Can't load action file(s)!
  800. LogOutOfCredits     Ran out of credits, exiting
  801. LogDelUser          Deleted user "@1"
  802. LogPacking          Packing User File...
  803. LogPrevCrashDetect  Previous run of this node crashed!
  804. LogSevereJoinErr    !!!! Can't Join own channel!
  805. LogEnterPrivChat    Entered private chat with node @1
  806. LogPrivChatFileErr  !!!! Can't open Private Chat files!
  807. LogEndPrivChat      Ended private chat mode
  808. LogFoundCrashed     Detected crashed node @1, clearing
  809. LogTossed           Tossed "@1" out of door
  810. LogZapped           Zapped "@1" off of system
  811. LogClearedNode      Cleared node @1
  812. ;
  813. ; Profile Editor
  814. ;
  815. ; These items are all used by the Profile Editor.  They are seperated into the
  816. ; sections in which they are used to aid editing.
  817. ;
  818. ProfEditPrefix      @c
  819. ;
  820. ProfMainPrefix      @c
  821. ProfMainPersAct     ^pA^j) Ändern der ^oPERSÖNLICHEN ACTIONS@c
  822. ProfMainDesc        ^pB^j) Ändern Deiner ^oBESCHREIBUNG@c
  823. ProfMainGender      ^pG^j) Ändern Deines ^oGESCHLECHTS^p [holografisch! ;-) ]@c
  824. ProfMainHandle      ^pN^j) Ändern Deines ^oSPITZNAMENS@c
  825. ProfMainEXMsg       ^pS^j) Deine ^oEIN- UND AUSGANGSSPRÜCHE@c
  826. ProfMainPref        ^pC^j) Bearbeiten der ^oCHAT EINSTELLUNGEN@c
  827. ProfMainPW          ^pP^j) ^oPASSWORT-WECHSEL@c
  828. ProfMainQuit        ^pZ^j) Zurück nach ^o10 VORNE@c
  829. ProfMainPrompt      @c^mWähle --->@s
  830. ProfMainKeys        ABGNSCPZ
  831. ProfMainShowKey      ^p@1
  832. ;
  833. ProfPActHeader      @c@c^jAktuelle Einstellung Deiner PERSÖNLICHEN ACTIONS:@c@c
  834. ProfPActNumber      ^c--- ^p@1^c ---@c
  835. ProfPActVerbType    ^n  Action    : ^j@1.-10    ^nTyp:  ^o@2@c
  836. ProfPActResponse    ^n  Antwort   : "^j@1^n"@c
  837. ProfPActSingular    ^n  Einzeln   : "^j@1^n"@c
  838. ProfPActPlural      ^n  Kombiniert: "^j@1^n"@c
  839. ProfPActPrompt      @c^j(^jL^j)öschen, (^jB^j)earbeiten, oder (^jE^j)nde --->@s^p
  840. ProfPActKeys        LBE
  841. ;
  842. ProfClearAction     Action LÖSCHEN
  843. ProfClActNumPrompt  @c@c^jWelches Actions soll gelöscht werden (1-4)? --->@s
  844. ProfClActShowNum    ^p@1
  845. ProfClActOKPrompt   @c@c^jLösche Action #^p@1^j, Bist Du sicher? (j/N)?@s
  846. ProfClActCleared    @c@c^mAction #^p@1^m GELÖSCHT.
  847. ;
  848. ProfEditAction      Action bearbeiten
  849. ProfEdActNumPrompt  @c@c^jWelches Action soll bearbeitet werden (1-4)? --->@s
  850. ProfEdActShowNum    ^p@1
  851. ProfEdActHeader     @c@c^jBearbeite Action #^p@1@c@c
  852. ProfEdActCurSet     Aktuelle Einstellungen:@c
  853. ProfEdActPrefix     @c
  854. ProfEdActType       ^pT^j) ^oTYPE^p ändern@c
  855. ProfEdActVerb       ^pC^j) ^oACTION^p Codewort ändern@c
  856. ProfEdActResponse   ^pA^j) ^oANTWORT^p an Dich@c
  857. ProfEdActSingular   ^pE^j) ^oEINZEL-TEXT^p ändern@c
  858. ProfEdActPlural     ^pK^j) ^oKOMBI-TEXT^p ändern@c
  859. ProfEdActHelp       @c^pH^j) Personal Action Editor ^oHILFE@c
  860. ProfEdActQuit       ^pZ^j) Zurück@c
  861. ProfEdActPrompt     @c^mWähle --->@s
  862. ProfEdActKeys       TCAEKHZ
  863. ProfEdActShowKey    ^p@1
  864. ;
  865. ProfEdActEdCurType  @c@c^mAktueller Typ: ^p@1@c
  866. ProfEdActEdTPrompt  ^jSoll dieses Action ein (^jN^j)^oormales^j Action oder ein (^jT^j)^oalkType^j sein?@s
  867. ProfEdActEdTypKeys  NT
  868. ProfEdActEdNewType  ^p@1@c
  869. ProfEdActEdCurVerb  @c@c^mAktuelles Action-Codewort     : ^j@1@c
  870. ProfEdActEdVPrompt  ^nGib das neue  ^oACTION WORT ^n für das Action ein (10 Zeichen max., ENTER=ABBRUCH)@c--->@s^p
  871. ProfEdActEdCurResp  @c@c^mAktuelles Antwort-Text an Dich:@c^j@1@c
  872. ProfEdActEdRPrompt  ^nGib den neuen ^oANTWORT-TEXT^n für das Action ein (60 Zeichen max., ENTER=ABBRUCH)@c--->@s^p
  873. ProfEdActEdCurSing  @c@c^mAktueller EINZEL-TEXT         :@c^j@1@c
  874. ProfEdActEdSPrompt  ^nGib den neuen ^oEINZEL-TEXT ^n für das Action ein (60 Zeichen max., ENTER=ABBRUCH)@c--->@s^p
  875. ProfEdActEdCurPlur  @c@c^mAktueller KOMBI-TEXT          :@c^j@1@c
  876. ProfEdActEdPPrompt  ^nGib den neuen ^oKOMBI-TEXT  ^n für das Action ein (60 Zeichen max., ENTER=ABBRUCH)@c--->@s^p
  877. ProfEdActEdHlpPref  @c@c
  878. ProfEdActQuitMsg    Ende@c
  879. ;
  880. ProfEdDescPrompt    @c@c^jBitte gib eine kurze Beschreibung von Dir ein (60 Zeichen max., ENTER=ABBRUCH)@c--->@s^o
  881. ProfEdSexPrompt     @c@c^jBist Du (^nM^j)ännlich oder (^nW^j)eiblich?@s
  882. ProfEdSexKeys       MW
  883. ProfEdSexSuffix     ^A@s@c
  884. ProfEdHandlePrompt  @c@c^jBitte gib Deinen neuen Spitznamen ein (30 Zeichen max., ENTER=ABBRUCH)@c--->@s^o
  885. ;
  886. ProfEdEXMsgPrefix   @c@c
  887. ProfEdEXMsgCurEMsg  ^A^nAktueller Eingangsspruch:@c^p@1^n@c@c
  888. ProfEdEXMsgCurXMsg  ^A^nAktueller Ausgangsspruch:@c^p@1^n@c@c
  889. ProfEdEXMsgEMsg     ^pE^j) ^oEINGANGSSPRUCH^j ändern@c
  890. ProfEdEXMsgXMsg     ^pA^j) ^oAUSGANGSSPRUCH^j ändern@c
  891. ProfEdEXMsgQuit     ^pZ^j) Zurück
  892. ProfEdEXMsgPrompt   @c^mWähle --->@s
  893. ProfEdEXMsgKeys     EAZ
  894. ProfEdEXMsgShowKey  ^p@1
  895. ProfEdEXMsgSuffix    @c
  896. ;
  897. ProfEdEXMEdCurEnt   @c@c^mDein Eingangsspruch ist im Moment:@c^j@1^m@c
  898. ProfEdEXMEdEPrompt  ^nNeuer ^oEINGANGSSPRUCH^n (ENTER zum Löschen)?@c--->@s
  899. ProfEdEXMEdCurExit  @c@c^mDein Ausgangsspruch ist im Moment:@c^j@1^m@c
  900. ProfEdEXMEdXPrompt  ^nNeuer ^oAUSGANGSSPRUCH^n (ENTER zum Löschen)?@c--->@s
  901. ;
  902. ProfEdPrefPrefix    @c@c
  903. ProfEdPrefActEcho   ^pA^j) Ein/Aus ^o"ACTION" BESTÄTIGUNG^j (Im Moment ^p@1^j)@c
  904. ProfEdPrefTActEcho  ^pB^j) Ein/Aus ^o"TALKTYPE ACTION" BESTÄTIGUNG^j (Im Moment ^p@1^j)@c
  905. ProfEdPrefTMsgEcho  ^pC^j) Ein/Aus ^o"TALKTYPE TEXT" BESTÄTIGUNG^j (Im Moment ^p@1^j)@c
  906. ProfEdPrefMsgSent   ^pD^j) Ein/Aus ^o"TEXT GESENDET" BESTÄTIGUNG^j (Im Moment ^p@1^j)@c
  907. ProfEdPrefGAEcho    ^pE^j) Ein/Aus ^o"GENERAL ACTION" BESTÄTIGUNG^j (Im Moment ^p@1^j)@c
  908. ProfEdPrefTTSent    ^pF^j) Ein/Aus ^o"TALKTYPE GESENDET" BESTÄTIGUNG^j (Im Moment ^p@1^j)@c
  909. ProfEdPrefDualWin   ^pG^j) Ein/Aus ^o2-FENSTER CHAT MODUS^j (Im Moment ^p@1^j)@c
  910. ProfEdPrefBlockTxt  ^pH^j) Ein/Aus ^oKEIN TEXTEMPFANG BEIM SCHREIBEN^j (Im Moment ^p@1^j)@c
  911. ProfEdPrefListed    ^pI^j) Ein/Aus ^oCHAT-KANAL ANZEIGE AN ANDERE GÄSTE^j (Im Moment ^p@1^j)@c
  912. ProfEdPrefEchoOwn   ^pJ^j) Ein/Aus ^oECHO DES EIGENEN TEXTES^j (Im Moment ^p@1^j)@c
  913. ProfEdPrefActions   ^pK^j) Ein/Aus ^oACTION SENDE-/EMPFANGSSPERRE^j (Im Moment ^p@1^j)@c
  914. ProfEdPrefQuit      ^pZ^j) Zurück
  915. ProfEdPrefPrompt    @c^mWähle --->@s
  916. ProfEdPrefKeys      ABCDEFGHIJKZ
  917. ProfEdPrefShowKey   ^p@1
  918. ProfEdPrefSuffix    @c
  919. ;
  920. ProfEdPWCurPrompt   @c@c^jBitte aktuellen Sicherheits-Code eingeben --->@s^n
  921. ProfEdPWBadPW       @c@c^I^mFalscher Sicherheits-Code!!!^A^m@c
  922. ProfEdPWNewPrompt   @c@c^jBitte gib einen Sicherheits-Code für Deinen 10 Vorne Zugang ein --->@s^n
  923. ProfEdPWConfPrompt  @c@c^jBitte zur Sicherheit noch einmal wiederholen                    --->@s^n
  924. ProfEdPWNoMatch     @c@c^I^mDie Sicherheits-Codes waren verschieden!!!^A^m@c
  925. ProfEdPWSuffix      @c
  926. ;
  927. ProfEditSuffix      @c@c
  928. ;
  929. ; New and Unsorted Items
  930. ;
  931. ; These items were added at the last minute.
  932. EnterPageFS         @c^oBitte die Mitteilung an Frequenz @1 eingeben.@cDrücke ESC oder STRG+Z wenn fertig.
  933. EnterPageFSSep      @c^c@r078-^p@c
  934. LogCantLoadCWords   WARNUNG:  Kann CENSON.CFG nicht laden!
  935. CensorToss1         ^mSorry, Du kannst das Wort "^p@1&C^m" UNTER KEINEN UMSTÄNDEN hier nutzen!@cBitte ruf erst wieder hier an, wenn Du über Dein Verhalten nachgedacht hast...@c@c
  936. CensorWarn2         ^mBitte benutze hier nicht das Wort "^p@1&C^m"!@cBitte formuliere Deinen Text NEU ohne dieses Wort.@c
  937. CensorToss2         ^mSorry, Deine Sprache wird etwas ZU VULGÄR!@cBitte ruf erst wieder hier an, wenn Du über Dein Verhalten nachgedacht hast...@c@c
  938. CensorWarn3         ^mBitte benutze hier nicht das Wort "^p@1&C^m"!@cBitte formuliere Deinen Text NEU ohne dieses Wort.@c
  939. CensorWarn4         ^mBitte vermeide in Zukunft das Wort "^p@1&C^m".@c
  940. CensorToss4         ^mSorry, Deine Sprache wird etwas ZU VULGÄR!@cBitte ruf erst wieder hier an, wenn Du über Dein Verhalten nachgedacht hast...@c@c
  941. CensorWarn5         ^mBitte vermeide in Zukunft das Wort "^p@1&C^m".@c
  942. CensorReplace       ^mDieses Wort wurde durch ein passenderes ersetzt.@c
  943. BioUserHasNone      ^mSorry, dieser Gast hat seinen Gästeeintrag noch nicht ausgefüllt.@cSprich ihn/sie ruhig mal darauf an!@c
  944. BioUserNotFound     ^mSorry, ^l@1^m ist kein gültiger Name.@cBitte erneut versuchen oder ^pGLISTE^m für eine Gästeliste eingeben.@c
  945. BioDispPrefix       @c^kGästeeintrag von ^p@1^k:@c@c
  946. BioQuesNumber       ^o@1.2^j)@s
  947. BioRespPrefix       ^n@1^j:@s
  948. BioResp             ^l@1&L
  949. BioNoResp           ^h<< ^pKEIN EINTRAG ^h>>
  950. BioRespSuffix       @c
  951. BioDispSuffix
  952. BioNumRespPrompt    ^nFrage #^l@1^n - ^o@2@c^kBitte eine NUMERISCHE Antowrt--->@s^p
  953. BioStrRespPrompt    ^nFrage #^l@1^n - ^o@2@c^k--->@s^p
  954. BioBadNumResp       @c^mSorry, die Antwort auf diese Frage muß ein Wert von ^o@1^m bis ^o@2^m sein.@cBitte nochmal!@c
  955. BioBadStrResp       @c^mSorry, die Antwort auf diese Frage muß mindestens ^o@1^m Zeichen lang sein.@cBitte nochmal!@c
  956. BioRespSuffix       @c
  957. BioGetAllPrefix     @c^pDas Gästebuch soll anderen Gästen ein paar Informationen über Dich geben.@cBitte antworte stets der Wahrheit entsprechend.@cWenn Du ein Feld auslassen möchtest, gib "." ein (oder "0" bei Zahlenwerten).@c@c
  958. BioGetAllSuffix     @c
  959. BioEditPrompt       @c^oGib eine Feldnummer ein oder R um Deinen Gästebucheintrag erneut anzuzeigen,@cC um alle verbleibenden Felder auszufüllen oder X um den Editor zu verlassen.@c
  960. BioEditQuitKeys     QX
  961. BioEditShowKeys     R
  962. BioEditCompKeys     C
  963. BioBadEditQNum      @c^mSorry, das ist keine gültige Feldnummer!@c
  964. BioEditDoAllPrompt  @c^nDu hast Deinen Gästebucheintrag noch nicht ausgefüllt.@cMöchtest Du dies ^pJETZT^n tun (J/n)?--->@s^l
  965. BioEditDoAllSuffix  @c
  966. BioEditSuffix       @c
  967. CmdsBio             BUCHEDIT /B
  968. LogCantLoadBioQues  WARNUNG:  Kann BIOQUES.CFG nicht laden!
  969. LookUpSuffix        @c
  970. EnterPageLinPrompt  @c^oBitte gib die Nachricht an Frequenz @1 ein.@c--->@s^k
  971. EnterPageLinSuffix  @c
  972. Interrupt           ^p***
  973. CmdsUserList        USERLIST /U GLISTE
  974. UserListHeader      @c@cGästename                      @1@c
  975. UserListSep         ^c@r078-@c
  976. UserListEntry       ^l@1.-30 ^o@2@c
  977. UserListSuffix      @c
  978. InBioEditor         ^l@1^n bearbeitet nun den Gästebuch-Eintrag.
  979. OutBioEditor        ^l@1^n hat die Bearbeitung des Gästebuch-Eintrags abgeschlossen!
  980. TimeMsgPrefix       ^E^p@1^A
  981. TimeMsgForcePrefix  @c^E^p@1^A@c
  982. BioForceAllNotDone  @c^mDu hast nicht alle Felder Deines Gästebuch-Eintrags ausgefüllt!@cDu MUSST alle Felder ausfüllen, bevor Du chatten darfst!@c@c
  983. BioChangeMsg        ^l@1^n hat eine Änderung im Gästebuch vorgenommen!
  984. BioForcePrefix      @c
  985. SharingVioError     @c@c^I^mDateizugriffs-Fehler!^A@cDATEI:  ^p@1^m@cBitte informiere den Sysop, damit das Problem behoben werden kann!@c@c
  986. LogSharingVioError  !!!! SHARING VIOLATION ERROR!
  987. LogSharingVioFile   !!!! File:  @1
  988. ProfEdActEdBadSing  @c^mSorry, der Einzel-Text aller persönlichen Actions ^IMUSS^A den Zeichencode@c^p%m^m ("ich") enthalten!  Bitte versuche es erneut oder drücke ^oH^m wenn@cDu Hilfe brauchst.  Es wurde nichts geändert.@c
  989. ProfEdActEdBadPlur  @c^mSorry, der Kombi-Text aller persönlichen Actions ^IMUSS^A den Zeichencode@c^p%m^m ("ich") enthalten!  Bitte versuche es erneut oder drücke ^oH^m wenn@cDu Hilfe brauchst.  Es wurde nichts geändert.@c
  990. MaxPageFooter       @c
  991. ;
  992. ;     The items below have changed.  Please edit these items to your liking,
  993. ; then uncomment them and replace the items above with these new ones.
  994. ;
  995. ;MsgPrefix           ^A^oFrom ^l@1^o: @2&L
  996. ;WhisperPrefix       ^A^oFrom ^l@1^j (whispered)^o: @2&L
  997. ;DirectedPrefix      ^A^oFrom ^l@1^o, to ^l@2^o: ^k@3&L
  998. ;GAPrefix            ^l@1^o @2&L
  999. ;GA2Prefix           ^l@1^o's @2&L
  1000. ;PageWho             @c^nPage user on which node (? for a list, ENTER to abort)?@s^p
  1001. ;
  1002. ;     The following items are no longer used by TOP.  You can delete them to
  1003. ; save memory.
  1004. ;
  1005. ; LookUpSearching     DescChangeMsg     EnterDescPrompt     LookUpPrompt
  1006. ; LookUpRealName      LookUpHandle      LookUpDisplay1      LookUpDisplay2
  1007. ; LookUpDisplay3      LookUpSep         LookUpPrefix        LookUpSuffix1
  1008. ; LookUpSuffix2       ProfMainDesc      ProfEdDescPrompt
  1009. ;
  1010. ;     The following text describes the new ampersand (&) modifier tokens for
  1011. ; language parameters.  It is recommended that you cut the paragraph and chart
  1012. ; below and paste it right below the chart for the period (.) modifier tokens.
  1013. ;
  1014. ;     There are also three other modifiers which can be used to disable
  1015. ; processing of colour, language, or action tokens for certain parameters.
  1016. ; These are usually used when the parameter to be displayed is text sent by the
  1017. ; user, where processing of tokens (especially language and action tokens) is
  1018. ; not desirable.  These modifiers work like the modifiers above, and are listed
  1019. ; below.  NOTE:  If you need to use both a period modifier (above) and an
  1020. ; ampersand modifier (below) for the same parameter, put the ampersand modifier
  1021. ; FIRST, then the period modifier.  Multiple ampersand modifiers are permitted.
  1022. ; These modifiers won't normally have to be used in instances other than those
  1023. ; in which they already appear.
  1024. ; Some examples:  @1&C&L   @1&L.-40   @1&C&L&A.010
  1025. ;
  1026. ;  Modifier    Function
  1027. ; -----------|-------------------------
  1028. ;     &A       Disables processing of action (%) tokens for the parameter.
  1029. ;     &L       Disables processing of language (@) tokens for the parameter.
  1030. ;     &C       Disables processing of PubColour(TM) (^) tokens for the
  1031. ;              parameter.
  1032. ;     &&       Use two ampersands if you need to display an ampersand
  1033. ;              immediately after a parameter token that uses no modifiers.
  1034.