home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / top2src.zip / PUB.LNG < prev    next >
Text File  |  1996-10-14  |  52KB  |  985 lines

  1. ; Pub Chat Language File For The Online Pub
  2. ; -----------------------------------------
  3. ;
  4. ;     The PUB language file features the classic style and theme offered by the
  5. ; original version of this program (The RemoteAccess Pub).  A Neighbourhood Pub
  6. ; provides the theme for this language file.  This is the "default" language
  7. ; file.  It can serve as a framework for other language files as well.
  8. ;
  9. ;     The language file controls every character of text displayed by TOP, and
  10. ; may be freely changed by sysops.  This is handy if you want to edit TOP's
  11. ; display colours, command words, or want to change TOP's "theme" to match your
  12. ; own BBS's theme.  You can also use this file to translate TOP's text into
  13. ; different languages.
  14. ;
  15. ;     The language file consists of "language items".  Each time TOP wants to
  16. ; display text, it looks in the language file for a language item, identified
  17. ; by a unique keyword, and displays the text associated with that item.  Each
  18. ; line of this file is one language item, except for lines (like this one) that
  19. ; begin with a semi-colon.  Lines beginning with semi-colons are comments, and
  20. ; are ignored by TOP.  NOTE:  DO NOT USE BLANK LINES WHEN FORMATTING!  Blank
  21. ; lines will work, but they will waste memory.  If you want to format this file
  22. ; for readability, use lines with just a semi-colon on them (as this file
  23. ; does), instead of blank lines.
  24. ;
  25. ;     The format of a language item is this:
  26. ;
  27. ;     <name> <text>
  28. ;
  29. ;     <name> is a special keyword that TOP will look for when it needs to use
  30. ; the language item.  <text> is the actual language text, also called a string.
  31. ; Note that <name> is always one "word" long, so <text> always starts on the
  32. ; second word.  As in this file, you may use extra space between <name> and
  33. ; <text> to improve readability.
  34. ;
  35. ;      The language items in this file are grouped into categories.  A comment
  36. ; following each category name describes what the items in the categories are
  37. ; used for.  The categories that you'll most likely want or need to change
  38. ; appear at the top of this file, with categories that will rarely need
  39. ; changing in the middle and categories that will probably never need changing
  40. ; towards the end. Note that the category names are just comments, and do not
  41. ; actually affect the way TOP reads the language items. The actual order of
  42. ; appearance of the language items is not important, and you may regroup them
  43. ; in any way you like.  Also, some blocks of items are preceeded by comments to
  44. ; let you know in general what they do.
  45. ;
  46. ;     Throughout this language file, special character combinations are used.
  47. ; These combinations are called "Language Tokens", and each one performs a
  48. ; special function, as described below.  All language tokens are
  49. ; case-insensitive, i.e. @b and @B are the same.
  50. ;
  51. ;    Token      Function
  52. ; ------------|-----------------------
  53. ;      @1       *Replaced with the first special parameter for that item.
  54. ;               Special parameters are used by language items in much the same
  55. ;               way that batch files use DOS command line parameters. Each
  56. ;               parameter has a number from 1 to 9, and you can use (display)
  57. ;               these parameters by inserting the corresponding language token,
  58. ;               i.e. @1 to @9.  The contents of the special parameters vary for
  59. ;               each language item.  Unfortunately, as this is a gamma version
  60. ;               of TOP, there are currently no descriptions of what these
  61. ;               parameters are for each item, so you will have to use a
  62. ;               combination of common sense and expirimentation to figure out
  63. ;               exactly what they are used for in each item.  To be safe, try
  64. ;               to build new strings around these parameter tokens.  NOTE:
  65. ;               Although it is rarely necessary to use each parameter token
  66. ;               more than once, you can use any parameter token as many times
  67. ;               as needed.
  68. ;  @2 thru @9   *Replaced with parameters 2 through 9, as described above.
  69. ;      @<       Replaced with a destructive backspace.  A destructive backspace
  70. ;               is actually a sequence of three ASCII characters: 008
  71. ;               (backspace), 032 (space), and 008 (backspace).  This ensures
  72. ;               that the character under the cursor after the backspace will be
  73. ;               removed from the screen.  If you wish to use a non-destructive
  74. ;               backspace, use @X008 (see @X description below).
  75. ;      @B       Replaced with a Ctrl-G (ASCII 007), producing a BEEP noise. Do
  76. ;               not use too many of these codes in a row, because the beeping
  77. ;               can be annoying and can delay the user's terminal (and in rare
  78. ;               cases even crash it).  This is because the actual noise
  79. ;               generated is system-dependant, and may sound different or have
  80. ;               different lengths on different computers. Also, the noise
  81. ;               generated on the remote system can sound different as well.
  82. ;               Furthermore, some terminal programs allow the user to disable
  83. ;               the beeps, so do not rely on them to get a user's attention -
  84. ;               use some text as well.
  85. ;      @C       CR/LF (ASCII 013/010).  Advances the cursor to the next line.
  86. ;      @D       Deletes from the cursor to the end of the current line.
  87. ;               Ignored if ANSI or AVATAR is not being used.
  88. ;      @E       Erases the screen.  NOTE:  May not work on all terminals!  Do
  89. ;               not rely on a screen clear to set up a display or the display
  90. ;               may be corrupted if the user's terminal does not support screen
  91. ;               clearing!
  92. ;   @L"Name"    Displays the language item named Name.  Name may be any valid
  93. ;               <name> word that appears in this language file, or one of your
  94. ;               own language item names.  The quotation marks ARE REQUIRED.
  95. ;               NOTE:  This token is never used by any of the language files
  96. ;               included with TOP, but is available in case you want to put
  97. ;               headers or footers or other common text strings in certain
  98. ;               items.  IF YOU USE YOUR OWN CUSTOM LANGUAGE ITEM NAME, BE SURE
  99. ;               TO DEFINE IT IN YOUR LANGUAGE FILE!  Language Item Names are
  100. ;               limited to 30 characters or less.  WARNING:  Do not use this
  101. ;               token to display language items that require parameters!
  102. ;               There is no way for TOP to know to pass the parameters and as
  103. ;               a result TOP may display garbage or crash.
  104. ;    @P0102     Position Cursor.  Positions the cursor at (2,1).  The first
  105. ;               two digits indicate the row (y-coordinate) to position the
  106. ;               cursor at, and the second two digits indicate the column
  107. ;               (x-coordinate) to position the cursor at.  The first number can
  108. ;               be from 01 to 25 (SEE NOTE), and the second can be from 01 to
  109. ;               80.  If the number for either position is less than 10, it must
  110. ;               have a zero in front of it.  Examples:  0135 (35,1) instead of
  111. ;               135, 1005 (5,10) instead of 105, and 0101 (2,1) instead of 11.
  112. ;               As this corresponds to a graphical code, it will be ignored if
  113. ;               ANSI or AVATAR is not available to the user.  Many language
  114. ;               items that use this token by default have non-graphical
  115. ;               equivalents, or are not used at all in non-graphical mode.
  116. ;               NOTE:  Though values from 01 to 25 are valid for the row
  117. ;               position, the number must also not exceed both the user's
  118. ;               defined screen size, and, if Snoop mode is on, the current
  119. ;               local screen size.  Unless absolutely required, you should try
  120. ;               to keep this value limited to 23 or less, as graphical modes
  121. ;               will not be permitted by TOP if the user has a screen size less
  122. ;               than 23.
  123. ;    @R123      Repeat Indicator.  Repeats the next character 123 times.  123
  124. ;               can be any 3 digit number from 000 to 255, and must be
  125. ;               zero-padded (003 instead of 3, and 075 instead of 75).  The
  126. ;               number cannot be greater than 500.  This token should be used
  127. ;               when a character has to be repeated many times (eg. seperator
  128. ;               lines).  It saves memory space, and it can provide faster
  129. ;               displaying time.
  130. ;      @S       Space character.  Use this if you need to put a space character
  131. ;               at the beginning of a language item.  If you don't, TOP will
  132. ;               think the space is just for formatting purposes and disregard
  133. ;               it.  You can also use this token at the end of language items
  134. ;               if your editor trims spaces from the end of each line.  It is
  135. ;               recommended that you use this token at the end of items even if
  136. ;               your editor doesn't do this, because one day you may edit the
  137. ;               language file using a different editor (one which does trim
  138. ;               spaces) and cause problems for yourself.  Plus, it makes it
  139. ;               more apparent that a space is there.
  140. ;    @X123      Displays ASCII character #123.  123 can be any 3 digit number
  141. ;               from 000 to 255.  Note that it must be zero-padded (003 instead
  142. ;               of 3 and 075 instead of 75).  Useful for embedding raw ANSI
  143. ;               codes, although this is not recommended.
  144. ;
  145. ;   * For each of the Parameter Tokens (@1 thru @9), modifiers may be used to
  146. ;     control the display.  These modifiers and their functions are listed
  147. ;     below.  C and C++ programmers will find these somewhat familiar.
  148. ;
  149. ;   Modifier    Function
  150. ; ------------|------------------------
  151. ;     .##       Forces display length to be ## characters long and
  152. ;               right-justifies the parameter text, filling the unused portion
  153. ;               with spaces.  Longer strings will be clipped to ## characters.
  154. ;               ## may be from 1 to 32767.
  155. ;    .0##       Same as .##, but fills the remaining display (if any) with
  156. ;               zeroes instead of spaces.
  157. ;    .-##       Same as .##, but left-justifies the result.
  158. ;     ..        Use two periods if you need to display a period immediately
  159. ;               after using a parameter token that uses no modifiers.
  160. ;
  161. ;     There are also three other modifiers which can be used to disable
  162. ; processing of colour, language, or action tokens for certain parameters.
  163. ; These are usually used when the parameter to be displayed is text sent by the
  164. ; user, where processing of tokens (especially language and action tokens) is
  165. ; not desirable.  These modifiers work like the modifiers above, and are listed
  166. ; below.  NOTE:  If you need to use both a period modifier (above) and an
  167. ; ampersand modifier (below) for the same parameter, put the ampersand modifier
  168. ; FIRST, then the period modifier.  Multiple ampersand modifiers are permitted.
  169. ; These modifiers won't normally have to be used in instances other than those
  170. ; in which they already appear.
  171. ; Some examples:  @1&C&L   @1&L.-40   @1&C&L&A.010
  172. ;
  173. ;  Modifier    Function
  174. ; -----------|-------------------------
  175. ;     &A       Disables processing of action (%) tokens for the parameter.
  176. ;     &L       Disables processing of language (@) tokens for the parameter.
  177. ;     &C       Disables processing of PubColour(TM) (^) tokens for the
  178. ;              parameter.
  179. ;     &&       Use two ampersands if you need to display an ampersand
  180. ;              immediately after a parameter token that uses no modifiers.
  181. ;
  182. ;     Examples of Language Token and Parameter Token Modifier usage appear
  183. ; throughout this file.
  184. ;
  185. ; -----------------------------------------------------------------------------
  186. ;
  187. ; Item Name Explanations
  188. ;
  189. ;     While it is neither required nor recommended that you be familliar with
  190. ; the item name (<name>) of each of the language items, there are some
  191. ; conventions used when naming the items that you should be aware of.  Note
  192. ; that these items pertain only to TOP's default items and do not have to be
  193. ; applied to your own names.  The conventions are as follows:
  194. ;
  195. ;     - Names starting with "Cmds" indicate command word items.
  196. ;     - Names ending in "Keys" or "Char" indicate command key items.  For
  197. ; "Keys" items, the order of the characters is important!
  198. ;     - Names ending in "Prompt" indicate prompts.  They almost always end in
  199. ; either a space (@s) token, or @s plus a colour code.
  200. ;     - Names ending in "Prefix" and "Suffix" (or "Pref" and "Suf" in some
  201. ; cases) indicate formatting items.  "Prefix" items naturally come before
  202. ; complex displays, while "Suffix" items come after.  In some cases the Prefix
  203. ; items also include the item being prefixed, thus acting as a "shell" to
  204. ; display text that you might want to change the colour/appearance of.
  205. ;     - Names starting with "Log" indicate log items that are written to the
  206. ; system log.
  207. ;     - Names ending in "Sep" indicate seperator items (normally a line of
  208. ; hyphens) used purely for cosmetic formatting.
  209. ;     - Names are grouped with the common bond appearing first in the name.
  210. ; For example, "CmdsChangeChatMode" and "CmdsChangeEMessage" are first bonded
  211. ; by "Cmds" and then by "Change" (the CHANGE command).
  212. ;
  213. ;     When looking for specific items to change, it is recommended that you
  214. ; search for specific text and not for a language item name, because the item
  215. ; names are usually cryptic and hard to remember.  The items are named for
  216. ; brevity and not appearance.  Use the item name only as a limited guide when
  217. ; changing an item.
  218. ;
  219. ;     A complete guide to all language item names, uses, and parameters will
  220. ; appear in a configuration program, to be released with a future version of
  221. ; TOP.
  222. ;
  223. ; -----------------------------------------------------------------------------
  224. ;
  225. ; Cosmetic / Atmosphere
  226. ;
  227. ; These items have no practical merit and exist only to provide atmosphere.
  228. ;
  229. SitDown             @c@c^oYou find a seat near the bar and sit down.@c
  230. BroughtToYouBy      @c^nBrought to you courtesy of ^p@1^n here at ^p@2^n.@c
  231. Goodbye             Thanks for stopping by!@c@c
  232. ;
  233. ; General Information
  234. ;
  235. ; These items tell the user about what's going on with regards to the system.
  236. ;
  237. Searching           ^kSearching User File for ^p@1^k...
  238. Setup               ^mPlease wait, setting up...
  239. Creating            @c@c^oStand by, creating...
  240. DateTime            @c^nThe date is ^l@1.02/@2.02/@3.04^n and the time is ^l@4.02:@5.02:@6.02^n.@c
  241. TimeIn              ^jYou have been in The Online Pub for ^p@1^j minutes and have ^p@2^j minutes remaining.@c
  242. LoggedOnNode        ^nYou are logged on to Node ^p@1^n of this system.@c
  243. CreditDisplay       ^pYou have ^k@1^p credits remaining.@c
  244. Greeting            @c@c^oHello, ^l@1^o!  You are user @2, last called @3 days ago.@c
  245. YoureInChannel      ^oYou're at Table #^p@1^o.@c
  246. ChannelTopic        ^oTable Topic: "^k@1^o"@c
  247. YoureInConference   ^oYou're at the ^p@1^o Conference Table.@c
  248. ConferenceTopic     ^oConference Topic: "^k@1^o"@c
  249. YoureInUserChannel  ^oYou're at ^p@1^o's Private Table.@c
  250. UserChannelTopic    ^oTopic: "^k@1^o"@c
  251. LookAround          ^oLooking around this Table, you see:@s@s
  252. LookAroundNobody    ^oThere is nobody else at this Table at the moment.
  253. ShortHelp           ^nType ^pCOMMANDS^n for command list, ^pHELP^n for extensive help,@cor ^pQUIT^n to return to the BBS.
  254. ReturnToBBS         ^nWe now return you to ^l@1^n...^h@c@c
  255. NoLongerOnSystem    @c^l@1^m is no longer on the system!
  256. ReturnToMain        @c^nReturning to the main table...
  257. ;
  258. ; User Actions
  259. ;
  260. ; Whenever a user does something, including talking, these items are used.
  261. ; These are some of the items most frequently used by TOP!
  262. ;
  263. MsgPrefix           ^A^oFrom ^l@1^o: @2&L
  264. WhisperPrefix       ^A^oFrom ^l@1^j (whispered)^o: @2&L
  265. DirectedPrefix      ^A^oFrom ^l@1^o, to ^l@2^o: ^k@3&L
  266. TalkTypePrefix      ^A^oFrom ^l@1^o: ^k@2
  267. GAPrefix            ^l@1^o @2&L
  268. GA2Prefix           ^l@1^o's @2&L
  269. EMessage            ^l@1^m just sauntered into the Pub!
  270. XMessage            ^l@1^m just staggered out of the Pub.
  271. InProf              ^l@1^n has entered the Profile Editor.
  272. OutProf             ^l@1^n has returned from the Profile Editor!
  273. HandleChangeMsg     ^l@1^n has changed ^p@2^n handle to ^l@3^n!
  274. EXMsgChange         ^l@1^n just updated ^p@2^n entry/exit messages!
  275. SexChangeMsg        ^l@1^n just got a sex change and is now @2^n!
  276. PersActChangeMsg    ^l@1^n just updated ^p@2^n personal actions!
  277. Secretly            @<^j...^I^psecretly!
  278. PrivChatIn          ^l@1^n has just entered a private chat.
  279. PrivChatOut         ^l@1^n has just returned from a private chat.
  280. PrivChatRequested   @b^l@1^n is requesting a private chat with you!@cType ^pCHAT @1^n to accept, or ^pDENYCHAT^n to decline.
  281. PrivChatDenied      ^nSorry, ^l@1^n has denied your request for a private chat.
  282. ChannelIn           ^l@1^m has just changed to this table!
  283. ChannelOut          ^l@1^m has just changed to another table.
  284. LinkOn              ^l@1^m has just transformed into a link to ^p@2^m!
  285. LinkPrefix          ^o(^p@1^o): @2
  286. LinkOff             ^mThe link to ^p@1^m has just disintegrated!
  287. HasTossed           ^o@1^j has just tossed you out of the Pub!@c
  288. HasZapped           ^o@1^j has just zapped you straight out of the Pub!@c
  289. TossOut             ^mThe bartender just tossed ^l@1^m out of the Pub!
  290. TossComment         ^nComment:  ^l@1@c
  291. HasCleared          ^mNode ^p@1^m (^l@2^m) has just been cleared by ^l@3^m!
  292. SecChangeMsg        ^l@1^n has changed your security level to ^p@2^n!
  293. TopicChangeMsg      ^l@1^n has just changed the topic for this table to:@c^g"^p@2^g"
  294. ModChangeMsg        ^l@1^n has just appointed ^p@2^n the new moderator of this table!
  295. HasBeenBanned       ^l@1^n has just ^I^mbanned^A^n ^p@2^n from this table!
  296. HasBeenUnBanned     ^l@1^n has just ^kunbanned^n ^p@2^n from this table!
  297. HasBeenInvited      ^l@1^n has just ^kinvited^n ^p@2^n to this table!
  298. HasBeenUnInvited    ^l@1^n has just ^I^muninvited^A^n ^p@2^n from this table!
  299. YouBannedChan       ^nYou have just been ^I^mbanned^A^n from table ^p@1^n!
  300. YouBannedUserChan   ^nYou have just been ^I^mbanned^A^n from ^p@1^n's table!
  301. YouBannedConf       ^nYou have just been ^I^mbanned^A^n from the ^p@1^n conference!
  302. YouUnBannedChan     ^nYou have just been ^kunbanned^n from table ^p@1^n!
  303. YouUnBannedUsChan   ^nYou have just been ^kunbanned^n from ^p@1^n's table!
  304. YouUnBannedConf     ^nYou have just been ^kunbanned^n from the ^p@1^n conference!
  305. YouInvitedChan      ^nYou have just been ^kinvited^n to table ^p@1^n!
  306. YouInvitedUsChan    ^nYou have just been ^kinvited^n to ^p@1^n's table!
  307. YouInvitedConf      ^nYou have just been ^kinvited^n to the ^p@1^n conference!
  308. YouUnInvitedChan    ^nYou have just been ^I^muninvited^A^n from table ^p@1^n!
  309. YouUnInvitedUsCh    ^nYou have just been ^I^muninvited^A^n from ^p@1^n's table!
  310. YouUnInvitedConf    ^nYou have just been ^I^muninvited^A^n from the ^p@1^n conference!
  311. ;
  312. ; Action Confirmation
  313. ;
  314. ; When a user issues a successful command, one of these items is shown.  They
  315. ; are pretty generic.
  316. ;
  317. WhisperSent         ^m-- Message Sent Only To ^l@1^m --@c
  318. DirectedSent        ^m-- Message Directed At ^l@1^m --@c
  319. GASent              ^m-- General Action Sent --@c
  320. MsgSent             ^m-- Message Sent --@c
  321. TalkTypeActionSent  ^m-- TalkType Action Sent --@c
  322. TalkTypeMsgSent     ^m-- TalkType Message Sent --@c
  323. Forgotten           ^nOkay, you will no longer receive any messages, actions, or whispers from ^l@1^n.  Enjoy the peace and quiet!@c
  324. Remembered          ^nOkay, you have no longer forgotten ^l@1^n.@c
  325. ChangedHandle       ^nOkay, you will now be known as ^l@1^n.@c
  326. ChangedEMessage     ^nOkay, your entry message has been changed.@c
  327. ChangedXMessage     ^nOkay, your exit message has been changed.@c
  328. EMessageCleared     ^nOkay, your entry message has been cleared.@c
  329. XMessageCleared     ^nOkay, your exit message has been cleared.@c
  330. ChangedSex          ^nOkay, you will now be shown as @1.@c
  331. ChangedChatMode     ^nOkay, TOP will now operate in ^k@1^n mode.@c
  332. ChangedListed       ^nOkay, your table name/number will be ^k@1^n.@c
  333. DirectLogOffMsg     ^mOkay, see you later!@c
  334. HasBeenTossed       ^jOkay, ^o@1^j is outta here!@c
  335. HasBeenZapped       ^jOkay, ^o@1^j has been zapped off of the system!@c
  336. NodeCleared         ^jOkay, node ^o@1^j is now cleared.@c
  337. SecHasBeenSetAt     ^jOkay, ^o@1^j's security is now ^p@2^j.@c
  338. PrivChatReqOK       ^nOkay, ^l@1^n has been notified of your request for a private chat.@c
  339. PrivChatDenyOK      ^nOkay, you've denied ^k@1^n's private chat request.@c
  340. NowInConference     ^pYou move to the ^k@1^p Conference Table and sit down.@c
  341. NowInChannel        ^pYou move to Table #^k@1^p and sit down.@c
  342. NowInUserChannel    ^pYou move to ^k@1^p's Private Table and sit down.@c
  343. BannedUser          ^pOkay, ^l@1^p is now banned from this table.@c
  344. UnBannedUser        ^pOkay, ^l@1^p is no longer banned from this table.@c
  345. InvitedUser         ^pOkay, ^l@1^p is now invited to this table.@c
  346. UnInvitedUser       ^pOkay, ^l@1^p is no longer invited to this table.@c
  347. ChangedTopic        ^pOkay, the topic for this table has been changed.@c
  348. ChangedMod          ^pOkay, ^l@1^p is now the moderator of this table.
  349. ActionsNowOff       ^pOkay, you have now turned actions ^mOFF^p.  This means that you will no longer@creceieve actions from any user, and you will not be able to send any actions@cyourself, including general actions.@c
  350. ActionsNowOn        ^pOkay, you have now turned actions ^kON^p, and will be able to receive and send@cactions again.@c
  351. JustTo              ^j...^pand just to ^l@1^p!
  352. ;
  353. ; Prompts
  354. ;
  355. ; When TOP requires interaction with the user, it shows one of these items.
  356. ; These are also pretty generic.
  357. ;
  358. EnterName           ^jPlease enter your full name--->@s^p
  359. EnterPW             ^oPlease enter your password--->@s^p
  360. EnterNewPW          @c^oPlease enter a password to secure your account--->@s^n
  361. ConfirmPW           @c@c^oRe-Enter that password to confirm it          --->@s^n
  362. GenderPrompt        @c^oAre you (^nM^o)ale or (^nF^o)emale?
  363. EnterHandle         ^oPlease enter your handle (30 chars. max., ENTER to quit)@c--->@s^l
  364. MorePrompt          ^eMore (Y/n/=)?
  365. PressAnyKey         ^ePress any key to continue...
  366. DefaultPrompt       ^A^k@1:@s
  367. ;
  368. ; Command Words
  369. ;
  370. ; These items work differently from those above.  These items are the words and
  371. ; shortcuts used to trigger every command available from TOP.  Each word is
  372. ; considered a synonym for the command, with the "main" command word appearing
  373. ; first in the item.  Note that commands may not contain spaces, although some
  374. ; commands are specifically set up as two word commands.
  375. ;
  376. CmdsQuit            QUIT Q EXIT X
  377. CmdsCommands        COMMANDS !
  378. CmdsColourHelp      COLOURHELP COLORHELP COLHELP @
  379. CmdsTime            TIME /TIME DATE /DATE CREDITS /$ $ /* *
  380. CmdsWho             SCAN WHO /S
  381. CmdsProfile         PROFILE EDIT /E
  382. CmdsLookUp          LOOKUP /L
  383. CmdsNodes           NODES # /# USERS
  384. CmdsPage            PAGE /P
  385. CmdsForget          FORGET /F
  386. CmdsRemember        REMEMBER /R
  387. CmdsLogOff          /LOGOFF /!
  388. CmdsWhisperLong1    WHISPER
  389. CmdsWhisperLong2    TO AT
  390. CmdsDirectedLong1   DIRECT
  391. CmdsDirectedLong2   TO AT
  392. CmdsGA              GA
  393. CmdsGA2             GA'S
  394. CmdsHelp            HELP ? /?
  395. CmdsHelpActions     ACTIONS
  396. CmdsHelpGeneral     GENERAL TOP
  397. CmdsHelpChannels    CHANNELS TABLES
  398. CmdsHelpTopics      TOPICS TOPIC
  399. CmdsAction          ACTION /A
  400. CmdsActionList      LIST
  401. CmdsActionListAll   ALL
  402. CmdsActionOn        ON
  403. CmdsActionOff       OFF
  404. CmdsActionAll       ALL EVERYONE /A /E
  405. CmdsActionSecretly  SECRETLY /S
  406. CmdsSysop           SYSOP /.
  407. CmdsSysopClear      CLEAR C
  408. CmdsSysopToss       TOSS T
  409. CmdsSysopZap        ZAP Z
  410. CmdsSysopSetSec     SETSEC SEC S
  411. CmdsChange          CHANGE /-
  412. CmdsChangeHandle    HANDLE
  413. CmdsChangeEMessage  EMESSAGE ENTRYMSG ENTRY EMSG ENTRYMESSAGE
  414. CmdsChangeXMessage  XMESSAGE EXITMSG EXIT XMSG EXITMESSAGE
  415. CmdsChangeSex       SEX GENDER
  416. CmdsChangeChatMode  CHATMODE MODE
  417. CmdsChangeListed    LISTED LISTSTATUS
  418. CmdsPrivChat        CHAT /C PRIVCHAT
  419. CmdsPrivDenyChat    DENYCHAT
  420. CmdsJoin            JOIN /J
  421. CmdsConfList        CONFLIST /CL
  422. CmdsModerator       MODERATOR MODERATE MOD /M
  423. CmdsModTopicChg     SETTOPIC TOPIC TOPICSET TOPSET TOP T
  424. CmdsModModChg       SETMOD CHGMOD CHANGEMOD MOD M
  425. CmdsModBan          BAN
  426. CmdsModUnBan        UNBAN
  427. CmdsModInvite       INVITE INV
  428. CmdsModUnInvite     UNINVITE UNINV
  429. ;
  430. ; Command Keys
  431. ;
  432. ; These are the keys that TOP uses for some single-key options.  IMPORTANT:  Be
  433. ; sure to keep the order of the keys the same, otherwise you may end up having
  434. ; a situation where, for example, Y will mean "no" and vice-versa.
  435. ;
  436. GenderKeys          MF
  437. MoreKeys            YN=@x013
  438. YesNoKeys           YN@x013
  439. DirectedShortChar   >
  440. WhisperShortChar    /
  441. ;
  442. ; Error, Invalid Command, and Warning Messages
  443. ;
  444. ; These messages are displayed whenever the user does something wrong.
  445. ;
  446. InvalidPW           @c@c^I^mInvalid Password!!^A@s@c@c
  447. MaxPW               ^nSorry, @1 tries is all you are allowed!
  448. PWNoMatch           @c@c^I^mPasswords do not match!!^A^m  Try again.@c
  449. CmdNotAvail         ^mSorry, that command is not available on this system.@c
  450. NotLoggedIn         ^mSorry, ^l@1^m is not logged into The Online Pub at the moment.@c
  451. NotSpecific         ^mSorry, the name you specified, ^l@1^m, is not specific enough.  Please try again using more letters.@c
  452. HandleInUse         ^I^kThat handle is already in use here!^A^o  Try again.@c
  453. HandleNotSpecified  ^mYou must specify a handle with the ^lCHANGE HANDLE^m command!@c
  454. ActionsNotAllowed   ^mSorry, actions are not permitted on this system.@c
  455. DualWindowNoGfx     ^mSorry, you can not use Dual Window chat mode without ANSI graphics@ccapability.@c
  456. ChgSexNotAllowed    ^mSorry, changing genders is not permitted on this system.@c
  457. ChgEXMsgNotAllowed  ^mSorry, custom entry/exit messages are not permitted on this system.@c
  458. ChgHandNotAllowed   ^mSorry, you are not allowed to change your handle on this system.@c
  459. NoAccTalk           ^mSorry, you do not have a high enough access level to talk in the Pub.  Feel@cfree to sit and listen, however.@c
  460. NoAccChgHandle      ^mSorry, you do not have a high enough access level to change your handle.@c
  461. NoAccChgSex         ^mSorry, you do not have a high enough access level to change your gender.@c
  462. NoAccChgEXMsg       ^mSorry, you do not have a high enough access level to change your entry or exit@cmessage.@c
  463. NoAccPrivMsg        ^mSorry, you do not have a high enough access level to send private messages.@c
  464. NoAccActUse         ^mSorry, you do not have a high enough access level to use Actions.@c
  465. PrivChatCantReq1    ^mCan't send chat request!@c^l@1^n still wants to chat with you!@c
  466. PrivChatCantReq2    ^mCan't send chat request!@c^l@1^n has not yet responded to your earlier chat request!@c
  467. PrivChatCantDeny    ^mCan't deny chat request!@cNobody has requested a chat with you!@c
  468. NotInYourChannel    ^mSorry, ^l@1^m is not at your table!@c
  469. NoHelpAvailable     ^mSorry, there is no help available for that command/topic.@c
  470. BadListName         ^I^mInvalid list name!^A  Type ^lACTION LIST^m (with no name) for a list of action lists.@c
  471. BadChannelSec       ^mSorry, you do not have the proper security level to access that table.@c
  472. BadChannelName      ^mBad table name/number!@c
  473. BadContext          ^A^mSorry, the ^p@1^m @2 cannot be used in that context.@c
  474. HasForgotYou        ^mSorry, ^l@1^m has decided to forget that you exist.@c
  475. WhisperNotSent      ^m-- Whisper ^I^pNOT^A^m Sent! --@c
  476. DirectedNotSent     ^m-- Directed Message ^I^pNOT^A^m Sent! --@c
  477. GANotSent           ^m-- General Action ^I^pNOT^A^m Sent! --@c
  478. Banned              ^mSorry, but you have been ^I^pbanned^A^m from that table!@c
  479. CantBanFromHere     ^mSorry, you cannot ban users from this table!@c
  480. WasntBanned         ^l@1^m is not banned from this table!@c
  481. CantBan             ^mCan't ban ^l@1^m!  Too many users already banned!@c
  482. NotInvited          ^mSorry, but you haven't been invited to that table!@c
  483. CantInvFromHere     ^mSorry, you cannot invite users to this table!@c
  484. WasntInvited        ^l@1^m is not invited to this table!@c
  485. CantInvite          ^mCan't invite ^l@1^m!  Too many users already invited!@c
  486. NotModerator        ^mSorry, you do not have moderator powers at this table!@c
  487. CantModInMain       ^mSorry, moderator commands cannot be used at the main table!@cUse the ^pSYSOP^m commands if you need to control users at the main table.@c
  488. CantModToSysop      ^mSorry, you can't do that moderator command to a sysop!@c
  489. CantDoCmdToSelf     ^mSorry, you can't do that command to yourself!@c
  490. CantDoCmdToSysop    ^mSorry, you can't do that command to a sysop!@c
  491. ;
  492. ; Commonly Used Words, Phrases, and Symbols
  493. ;
  494. ; These are words, symbols, and frequently used expressions that TOP uses for
  495. ; specific displays.
  496. ;
  497. Female              ^E^pFemale^A^h
  498. Male                ^B^pMale^A^h
  499. His                 ^phis
  500. Her                 ^pher
  501. Himself             ^phimself
  502. Herself             ^pherself
  503. He                  ^phe
  504. She                 ^pshe
  505. You                 ^lyou
  506. All                 ^leveryone
  507. YourSuffix          ^lr
  508. Pers3Suffix         ^o's
  509. Normal              Normal
  510. Action              Action
  511. TalkType            TalkType
  512. ChannelListed       listed
  513. ChannelUnlisted     unlisted
  514. SingularHas         @shas
  515. PluralHave          s have
  516. NormalChatMode      normal
  517. DualWindowChatMode  dual window
  518. UserChanShortName   ^l@1^n
  519. PWEcho              *
  520. PersActListName     PERSONAL
  521. PersActListDesc     Your Personal Actions
  522. Yes                 Yes
  523. No                  No
  524. On                  ON
  525. Off                 OFF
  526. ;
  527. ; BBS-specific
  528. ;
  529. ; These items are used only by BBS-specific functions inside TOP.  If you run
  530. ; an unsupported BBS type or are not using the BBS-specific features, you can
  531. ; comment this section out to reduce TOP's memory requirements.
  532. ;
  533. NodeNotInUse        @c^mSorry, node @1 is not currently in use!@c@c
  534. NodeDND             @c^mSorry, node @1 does not wish to be disturbed.@c@c
  535. CantPage            ^m-- ^I^mUNABLE to send message to node @1!!!^A^m --@c@c
  536. Paged               ^m-- Message sent to node @1 --@c@c
  537. InvalidNode         ^mInvalid node!  Must be from ^p1^m to ^p@1^m.@c
  538. RAEnter             ^oPress ENTER to continue:
  539. RAOnNode            on node
  540. RaMsgFrom           Message from
  541. RAJustPosted        has just posted a message to you in area
  542. PageStatYes         ^kYes
  543. PageStatNo          ^m No
  544. NotAvailToPage      ^mSorry, node @1 is not available to be paged.
  545. NodeStatus          Pub Chat
  546. EnterPageSep        @c^c@r078-^p@c
  547. NodesNodeDisp       ^o@1.5@s
  548. NodesHandleDisp     ^l@1.-25@s
  549. NodesRealNameDisp   ^l@1.-25@s
  550. NodesSpeedDisp      ^k@1.6@s
  551. NodesLocationDisp   ^n@1.-20@s
  552. NodesStatusDisp     ^p@1.-10@s
  553. NodesPageStatDisp   ^m @1.3@s
  554. NodesGenderDisp     ^o@1@s
  555. NodesNumCallsDisp   ^m@1@s
  556. NodesNodeHdr        ^p Node@s
  557. NodesHandleHdr      ^pHandle                   @s
  558. NodesRealNameHdr    ^pName                     @s
  559. NodesSpeedHdr       ^p Speed@s
  560. NodesLocationHdr    ^pLocation            @s
  561. NodesStatusHdr      ^pStatus    @s
  562. NodesPageStatHdr    ^pAvail@s
  563. NodesGenderHdr      ^pGender@s
  564. NodesNumCallsHdr    ^pCalls@s
  565. NodesNodeSep        ^c@r006-
  566. NodesHandleSep      ^c@r026-
  567. NodesRealNameSep    ^c@r026-
  568. NodesSpeedSep       ^c@r007-
  569. NodesLocationSep    ^c@r021-
  570. NodesStatusSep      ^c@r011-
  571. NodesPageStatSep    ^c@r006-
  572. NodesGenderSep      ^c@r007-
  573. NodesNumCallsSep    ^c@r006-
  574. PageWho             @c^nPage user on which node (? for a list, ENTER to abort)?@s^p
  575. EnterPage           @c^oEnter the message to send to node @1.  A blank line will end.
  576. InvalidNode         @c^I^mInvalid Node Number!^A@s@c
  577. SBBSRecvPageHdr     ^oMessage from ^l@1^o on node ^k@2^o (in ^nPub Chat^o):^p
  578. NoMemToPage         ^I^mNot enough memory to page other users!^A@s
  579. PageAborted         @c@c^m-- ^IPage Aborted^A --@c
  580. NodesListEndLine    @c
  581. NodesListAfterKey   @c@c
  582. NodesHdrPrefix      @c
  583. NodesHdrSuffix      @c
  584. NodesSepPrefix
  585. NodesSepSuffix      @c
  586. RAPageRecvPrefix    @c^p
  587. RAEnterSuffix       @c
  588. RAPageRecvSuffix    @c
  589. RAStatusType0       Browsing
  590. RAStatusType1       File Xfer
  591. RAStatusType2       Messages
  592. RAStatusType3       In a Door
  593. RAStatusType4       Sysop Chat
  594. RAStatusType5       Questions
  595. RAStatusType6       Conference
  596. RAStatusType7       New User
  597. SBBSStatusType0     Browsing
  598. SBBSStatusType1     D/loading
  599. SBBSStatusType2     Uploading
  600. SBBSStatusType3     Read Msgs.
  601. SBBSStatusType4     Write Msg.
  602. SBBSStatusType5     Sysop Chat
  603. SBBSStatusType6     In a Door
  604. SBBSStatusType7     New User
  605. SBBSStatusType8     QWK Mail
  606. SBBSStatusType9     File List
  607. SBBSStatusType10    Node Chat
  608. ; The page headers and footers contain BBS-specific codes and should not be
  609. ; modified unless you know exactly what you are doing.
  610. RAPageHeader        @x010@x011[0E@b@x011]497 @x011[0B@1@x011[0E @x011]496 @x011[0A@2@x011[0E (in @x011[0DPub Chat@x011[0E):@x011[0F@x010
  611. RAPageFooter        @x010@x011[0E@x011]258@x001@x010
  612. MaxPageHeader       @c@x022@x001@x014@bMessage from @x022@x001@x011@1@x022@x001@x014 on node @x022@x001@x010@2@x022@x001@x014 (In @x022@x001@x013Pub Chat@x022@x001@x014):@x022@x001@x015@c
  613. SBBSPageHeader      /MESSAGE,@1,@2/@x010
  614. SBBSPageFooter      /END/@x010
  615. ;
  616. ; System Messages
  617. ;
  618. ; These are messages triggered by events not related to chatting, and are
  619. ; usually error messages.
  620. ;
  621. FileErrorPrefix     @c
  622. CantOpen            ^I^nCan't open file:  ^p@1^n!!
  623. CantRead            ^nCan't read from file:  ^p@1^n!!
  624. CantWrite           ^nCan't write to file:  ^p@1^n!!
  625. CantAccess          ^nCan't access file:  ^p@1^n!!
  626. CantClose           ^nCan't close file:  ^p@1^n!!
  627. FileErrorMsgPrefix  @c
  628. FileErrorMsgSuffix  ^h@c@c
  629. NoFreeNode          @c@c^M^pCannot find a free node!@c
  630. ContactSuper        ^A^lPlease contact your Supervisor so this problem can be corrected!@c@c
  631. CantInitFiles       @c@c^I^mCan't initialize files!^A^m  Please inform your Sysop!@c@c
  632. InformSysop         ^A^lPlease inform your sysop immediately!!
  633. CantDoAction        @c^mCAN'T DO ACTION!  Please mention this to your Sysop!
  634. PrivChatNoMem       @c^mNot enough memory to enter private chat!  Please inform Sysop!@c
  635. PrivChatCantOpen    @c^mCan't open ^p@1^n for private chat!  Please inform Sysop!@c
  636. PrivChatBufProb     @c^mPrivate chat buffer overflow!  Please inform Sysop!@c
  637. NodeInUse           @c@c^mThe node you are on, ^l@1^m, is already in use!
  638. NodeInUseContact    Contact your Sysop so this problem can be fixed.
  639. CrashToss           ^mThe user on node ^l@1^m has mysteriously vanished from the Pub!  Please inform Sysop!
  640. AccessProblem       @c^pThe Online Pub is having a problem accessing a file.@c
  641. AccessPrompt        Press Esc to abort, or wait until the access attempt succeeds.@c
  642. AccessShutDown      @c^mShutting down.  Please inform your sysop of this problem.@c@c
  643. OutOfCredits        @c^mSorry, you have run out of credits!@cExitting TOP, returning to BBS...@c@c
  644. OutOfMemory         ^I^mOut of memory!!!^A^p
  645. CantJoin            ^mCan't join that table!  Unable to create record for it!  Odds are your sysop is out of disk space!@c
  646. SevereJoinError     @c^I^mCan't join own table!^A^m  CHANIDX.TCH may be corrupted!@c^pPlease inform your sysop immediately!@c@c
  647. JoinError           @c^mCan't join that table!  Please inform Sysop!@c
  648. UnJoinError         @c^mCan't unjoin current table successfully!  Please inform Sysop!@cAttempting to join requested table...@c
  649. CantJoinAtStart     @c^mCan't join main table!  Please inform Sysop!@cAttempting to join your personal table...@c@c
  650. CantDoModCmd        ^I^mCan't perform moderator command!^A  Please inform sysop!@c
  651. CanReJoin           @c^I^mCan't rejoin table!^A  Please inform your sysop immediately!@c^oReturning to BBS...@c@c
  652. ;
  653. ; Displays and Colouring
  654. ;
  655. ; These items make up some of the displays in TOP, including the larger list
  656. ; displays.  NOTE:  Do not change or remove any of the @ tokens unless you have
  657. ; studied the language token explanations at the start of this file and know
  658. ; precisely what you are doing!
  659. ;
  660. ChannelListHdr      @c^mTable Name/Number     Topic@c
  661. ChannelListSep      ^c@r078-@c
  662. ChannelListFormat   ^n@1.-20  ^o@2@c
  663. ScanHeader          ^p@cHandle                             Table    Status@c
  664. ScanHeaderSep       ^c@r078-@c
  665. ScanInfo            ^l@1.-30  ^n@2.10  ^m@3@c
  666. ScanUnlistedChan    ^mUnlisted
  667. ScanEditing         Editing@s
  668. ScanNotEditing
  669. ScanPrivChat        Chatting@s
  670. ScanNotPrivChat
  671. ActFileListPrefix   @c^pAvailable Action Lists@c@c
  672. ActFileListHdr      ^mName       Description@c
  673. ActFileListSep      ^c@r078-@c
  674. ActFileListItem     ^l@1.-8 ^g- ^n@2@c
  675. ActFileListSuffix   @c^jType ^oACTION LIST <name>^j to list the actions in a particular list, or ^oACTION LIST ALL^j to list all actions.@c@c
  676. ActListHeader       ^jActions in List "^o@1^j" (^p@2^j)@c@c
  677. ActListLegend       ^k+^m denotes TalkType.@c
  678. ActListSep          @c
  679. ActListItem         ^n@1.-10
  680. ActListCharNormal   @s
  681. ActListCharTType    ^k+
  682. ActListItemSep      @s
  683. DWRestoreInput      ^A^k
  684. DWInputCurPos       @p0201^A^k
  685. DWTopDisplay        @p0101^E^p@r079 @p0102Input Window   -   Type HELP and press ENTER for help.
  686. DWMiddleDisplay     @p0601^B^p@r079 @p0602Chat Window   -   Type QUIT to return to the BBS.
  687. DWBottomDisplay
  688. DWClearInput        @p0201^A^m@d@c@d@c@d@c@d@c
  689. DWPrepareInput      @p0101^A^m@d@c@d@c@d@c@d@c@d@c@d@c
  690. DWOutputPrepare     @e
  691. DWOutputSetCurPos   @p0701
  692. DWOutputPrefix      ^A^o
  693. DWRestorePrefix     @c
  694. LookAroundList      @1^l@2
  695. LookAroundSep       ^o,
  696. ActionListHeader    @c^jList of ^nActions^j and ^kTalkTypes^j:@c
  697. ActionListAction    ^n @1.-10@s
  698. ActionListTalkType  ^k @1.-10@s
  699. Personals           @c^jPersonals-->
  700. PersUndefined       ^h<Undefined>
  701. PrivChatPrefix      @c^l--- Private Chat entered ---@c^mPress ESC to exit.@c@c
  702. PrivChatSuffix      @c@c^l--- Private Chat Mode ended --@c@c
  703. PrivChatSuffix2     @c@c^l--- @1 has ended Private Chat Mode --@c@c
  704. PrivChatCol1        ^o
  705. PrivChatCol2        ^k
  706. CommandListPrefix   ^A^p @c
  707. ActionResponse      ^n@1
  708. MorePromptSuffix    @<@<@<@<@<@<@<@<@<@<@<@<@<
  709. EMsgPrefix          ^m@1
  710. XMsgPrefix          ^m@1
  711. ActionMe            ^l@1^o
  712. ActionYouPrefix     ^l
  713. ActionYouSuffix     ^o
  714. ActionHisHerPrefix  ^p
  715. ActionHisHerSuffix  ^o
  716. ActionHeShePrefix   ^p
  717. ActionHeSheSuffix   ^o
  718. ActionSelfPrefix    ^p
  719. ActionSelfSuffix    ^o
  720. ActionYour          ^l@1^o
  721. ActionPossessive    @1
  722. ;
  723. ; Display Formatting
  724. ;
  725. ; These items are mostly linefeeds and insignificant formatting items.  They are
  726. ; mostly part of displays that are used multiple times or under conditional
  727. ; circumstances, when attaching the formatting codes to a main item is not
  728. ; always desirable.
  729. ;
  730. MsgSentPrefix
  731. MsgDisplayPrefix    @c
  732. WhisperSentPrefix
  733. WhisperNotSentPref
  734. GASentPrefix
  735. GANotSentPrefix
  736. ActionListBeforeKey @c
  737. ActionListAfterKey  @c@c
  738. ActionUseSuffix     @c
  739. ActionSuffix        @c
  740. MoreAbortSuffix     @c@c
  741. ActionListBlockSep  @c
  742. ActListPrefix       @c
  743. ActListLineEnd      @c
  744. ActListSuffix       @c
  745. LookAroundFirst
  746. LookAroundAfter     @c
  747. ColourHelpPrefix
  748. ColourHelpSuffix    @c
  749. MessageTrailer      @c
  750. DelPromptPrefix
  751. DelPrompt           @<
  752. DelPromptSuffix
  753. ShowFilePrefix
  754. ShowFileSuffix      @c
  755. PressAnyKeySuffix   @c
  756. ChanSummaryPrefix
  757. OpeningSuffix       @c
  758. HelpPrefix          @c
  759. HelpSuffix          @c
  760. DirectNotSentPref
  761. DirectedSentPrefix
  762. NewUserScrnPrefix   @c
  763. PrivChatEndLine     @c
  764. PWBackSpace         @<
  765. InputPrefix         @c
  766. GenderPromptSuffix  @c
  767. LocalLANStartPref   @c
  768. ResponsePrefix      @c
  769. ;
  770. ; Log Messages
  771. ;
  772. ; These messages are shown to the sysop in the log.
  773. ;
  774. LogMaxPW            !!!! Failed to enter the correct password!
  775. LogHandle           Using handle: @1
  776. LogStartSignOn      Began New User sign-on
  777. LogAbortSignOn      Aborted New User sign-on
  778. LogEnded            TOP v@1 ended successfully
  779. LogAlert            !!!!
  780. LogCouldntAccess    Could not access a file!
  781. LogLocal            Running in LOCAL mode
  782. LogLAN              Running in LAN mode
  783. LogDoor             Running in DOOR mode
  784. LogCantDoAction     !!!! CAN'T DO ACTION:  @1
  785. LogNodeInUse        !!!! Node @1 already in use!
  786. LogNameUsed         Logged in using the name: @1
  787. LogSentPage         Sent page to node @1
  788. LogCantPage         !!!! Can't page node @1!
  789. LogChangedHandle    Changed handle to @1
  790. LogOutOfMemory      !!!! OUT OF MEMORY!
  791. LogCantLoadLang     !!!! Can't load language file!  (May be out of memory.)
  792. LogCantLoadChan     !!!! Can't load channel definitions!  (May be out of memory.)
  793. LogNoFreeNode       !!!! Can't find a free node!
  794. LogOneRunMode       Task initiated from command line.
  795. LogCantLoadActs     !!!! Can't load action file(s)!
  796. LogOutOfCredits     Ran out of credits, exiting
  797. LogDelUser          Deleted user "@1"
  798. LogPacking          Packing User File...
  799. LogPrevCrashDetect  Previous run of this node crashed!
  800. LogSevereJoinErr    !!!! Can't Join own channel!
  801. LogEnterPrivChat    Entered private chat with node @1
  802. LogPrivChatFileErr  !!!! Can't open Private Chat files!
  803. LogEndPrivChat      Ended private chat mode
  804. LogFoundCrashed     Detected crashed node @1, clearing
  805. LogTossed           Tossed "@1" out of door
  806. LogZapped           Zapped "@1" off of system
  807. LogClearedNode      Cleared node @1
  808. ;
  809. ; Profile Editor
  810. ;
  811. ; These items are all used by the Profile Editor.  They are seperated into the
  812. ; sections in which they are used to aid editing.
  813. ;
  814. ProfEditPrefix      @c
  815. ;
  816. ProfMainPrefix      @c
  817. ProfMainPersAct     ^kA^o) Edit your ^lPERSONAL ACTIONS@c
  818. ProfMainGender      ^kG^o) Change your ^lGENDER@c
  819. ProfMainHandle      ^kH^o) Edit your ^lHANDLE@c
  820. ProfMainEXMsg       ^kM^o) Edit ^lENTRANCE AND EXIT MESSAGES@c
  821. ProfMainPref        ^kO^o) Edit ^lPERSONAL PREFERENCE OPTIONS@c
  822. ProfMainPW          ^kP^o) Change your ^lACCESS PASSWORD@c
  823. ProfMainQuit        ^kQ^o) Quit back to ^lCHAT MODE@c
  824. ProfMainPrompt      @c^mSelect--->@s
  825. ProfMainKeys        ADGHMOPQ
  826. ProfMainShowKey      ^p@1
  827. ;
  828. ProfPActHeader      @c@c^oCurrent Personal Actions:@c@c
  829. ProfPActNumber      ^c--- ^p@1^c ---@c
  830. ProfPActVerbType    ^n  Verb    : ^o@1.-10    ^nType: ^l@2@c
  831. ProfPActResponse    ^n  Response: "^o@1^n"@c
  832. ProfPActSingular    ^n  Singular: "^o@1^n"@c
  833. ProfPActPlural      ^n  Plural  : "^o@1^n"@c
  834. ProfPActPrompt      @c^j(^oC^j)lear, (^oE^j)dit, or (^oQ^j)uit--->@s^k
  835. ProfPActKeys        CEQ
  836. ;
  837. ProfClearAction     Clear Action
  838. ProfClActNumPrompt  @c@c^oClear which action (1-4)--->@s
  839. ProfClActShowNum    ^k@1
  840. ProfClActOKPrompt   @c@c^oClear action #^p@1^o, Are You Sure (y/N)?@s
  841. ProfClActCleared    @c@c^mAction #^p@1^m Cleared.
  842. ;
  843. ProfEditAction      Edit Action
  844. ProfEdActNumPrompt  @c@c^oEdit which action (1-4)--->@s
  845. ProfEdActShowNum    ^k@1
  846. ProfEdActHeader     @c@c^oEditing Action #^p@1@c@c
  847. ProfEdActCurSet     Current Settings:@c
  848. ProfEdActPrefix     @c
  849. ProfEdActType       ^kT^o) Edit Action ^lTYPE@c
  850. ProfEdActVerb       ^kV^o) Edit Command ^lVERB@c
  851. ProfEdActResponse   ^kR^o) Edit ^lRESPONSE@c
  852. ProfEdActSingular   ^kS^o) Edit ^lSINGULAR TEXT@c
  853. ProfEdActPlural     ^kP^o) Edit ^lPLURAL TEXT@c
  854. ProfEdActHelp       @c^kH^o) Personal Action Editor ^lHELP@c
  855. ProfEdActQuit       ^kQ^o) Quit to ^lPREVIOUS MENU@c
  856. ProfEdActPrompt     @c^mSelect--->@s
  857. ProfEdActKeys       TVRSPHQ
  858. ProfEdActShowKey    ^k@1
  859. ;
  860. ProfEdActEdCurType  @c@c^mCurrent Type: ^k@1@c
  861. ProfEdActEdTPrompt  ^jShould this Personal Action be a (^oN^j)^lormal^j Action or a (^oT^j)^lalkType^j?@s
  862. ProfEdActEdTypKeys  NT
  863. ProfEdActEdNewType  ^p@1@c
  864. ProfEdActEdCurVerb  @c@c^mCurrent Verb:  ^o@1@c
  865. ProfEdActEdVPrompt  ^nEnter the new ^lCOMMAND VERB^n for this Action (10 chars. max., ENTER to abort)@c--->@s^p
  866. ProfEdActEdCurResp  @c@c^mCurrent Response Text:@c^o@1@c
  867. ProfEdActEdRPrompt  ^nEnter the new ^lRESPONSE TEXT^n for this Action (60 chars. max., ENTER to abort)@c--->@s^p
  868. ProfEdActEdCurSing  @c@c^mCurrent Singular Text:@c^o@1@c
  869. ProfEdActEdSPrompt  ^nEnter the new ^lSINGULAR TEXT^n for this Action (60 chars. max., ENTER to abort)@c--->@s^p
  870. ProfEdActEdCurPlur  @c@c^mCurrent Plural Text:@c^o@1@c
  871. ProfEdActEdPPrompt  ^nEnter the new ^lPLURAL TEXT^n for this Action (60 chars. max., ENTER to abort)@c--->@s^p
  872. ProfEdActEdHlpPref  @c@c
  873. ProfEdActQuitMsg    Quit@c
  874. ;
  875. ProfEdSexPrompt     @c@c^oAre you (^nM^o)ale or (^nF^o)emale?@s
  876. ProfEdSexKeys       MF
  877. ProfEdSexSuffix     ^A@s@c
  878. ProfEdHandlePrompt  @c@c^oPlease enter your new handle (30 chars. max., ENTER to abort)@c--->@s^l
  879. ;
  880. ProfEdEXMsgPrefix   @c@c
  881. ProfEdEXMsgCurEMsg  ^A^nCurrent Entry Message:@c^p@1^n@c@c
  882. ProfEdEXMsgCurXMsg  ^A^nCurrent Exit Message:@c^p@1^n@c@c
  883. ProfEdEXMsgEMsg     ^kE^o) Edit ^lENTRY MESSAGE@c
  884. ProfEdEXMsgXMsg     ^kX^o) Edit ^lEXIT MESSAGE@c
  885. ProfEdEXMsgQuit     ^kQ^o) Quit to ^lPREVIOUS MENU@c
  886. ProfEdEXMsgPrompt   @c^mSelect--->@s
  887. ProfEdEXMsgKeys     EXQ
  888. ProfEdEXMsgShowKey  ^p@1
  889. ProfEdEXMsgSuffix    @c
  890. ;
  891. ProfEdEXMEdCurEnt   @c@c^mCurrent Entry Message:@c^o@1^m@c
  892. ProfEdEXMEdEPrompt  ^nEnter your new ^lENTRY MESSAGE^n (ENTER to clear)@c--->@s
  893. ProfEdEXMEdCurExit  @c@c^mCurrent Exit Message:@c^o@1^m@c
  894. ProfEdEXMEdXPrompt  ^nEnter your new ^lEXIT MESSAGE^n (ENTER to clear)@c--->@s
  895. ;
  896. ProfEdPrefPrefix    @c@c
  897. ProfEdPrefActEcho   ^kA^o) Toggle ^lACTION ECHOING^o (Currently ^p@1^o)@c
  898. ProfEdPrefTActEcho  ^kB^o) Toggle ^lTALKTYPE ACTION ECHOING^o (Currently ^p@1^o)@c
  899. ProfEdPrefTMsgEcho  ^kC^o) Toggle ^lTALKTYPE MESSAGE ECHOING^o (Currently ^p@1^o)@c
  900. ProfEdPrefMsgSent   ^kD^o) Toggle ^lMESSAGE SENT RESPONSE^o (Currently ^p@1^o)@c
  901. ProfEdPrefGAEcho    ^kE^o) Toggle ^lGENERAL ACTION ECHOING^o (Currently ^p@1^o)@c
  902. ProfEdPrefTTSent    ^kF^o) Toggle ^lTALKTYPE SENT RESPONSE^o (Currently ^p@1^o)@c
  903. ProfEdPrefDualWin   ^kG^o) Toggle ^lDUAL WINDOW CHAT MODE^o (Currently ^p@1^o)@c
  904. ProfEdPrefBlockTxt  ^kH^o) Toggle ^lBLOCKING OF INCOMING TEXT WHILE TYPING^o (Currently ^p@1^o)@c
  905. ProfEdPrefListed    ^kI^o) Toggle ^lCHANNEL NUMBER DISPLAYING TO OTHER USERS^o (Currently ^p@1^o)@c
  906. ProfEdPrefEchoOwn   ^kJ^o) Toggle ^lECHOING OF OWN TEXT^o (Currently ^p@1^o)@c
  907. ProfEdPrefActions   ^kK^o) Toggile ^lACTION SEND/RECEIVE BLOCKING^o (Currently ^p@1^o)@c
  908. ProfEdPrefQuit      ^kQ^o) Quit to ^lPREVIOUS MENU@c
  909. ProfEdPrefPrompt    @c^mSelect--->@s
  910. ProfEdPrefKeys      ABCDEFGHIJKQ
  911. ProfEdPrefShowKey   ^p@1
  912. ProfEdPrefSuffix    @c
  913. ;
  914. ProfEdPWCurPrompt   @c@c^oPlease enter your current password--->@s^n
  915. ProfEdPWBadPW       @c@c^I^mIncorrect Password!!^A^m@c
  916. ProfEdPWNewPrompt   @c@c^oPlease enter a password to secure your account--->@s^n
  917. ProfEdPWConfPrompt  @c@c^oRe-Enter that password to confirm it          --->@s^n
  918. ProfEdPWNoMatch     @c@c^I^mPasswords do not match!!^A^m@c
  919. ProfEdPWSuffix      @c
  920. ;
  921. ProfEditSuffix      @c@c
  922. ;
  923. ; New and Unsorted Items
  924. ;
  925. ; These items were added at the last minute.
  926. EnterPageFS         @c^oEnter the message to send to node @1.  Press Esc or Ctrl-Z when done.
  927. EnterPageFSSep      @c^c@r078-^p@c
  928. LogCantLoadCWords   WARNING:  Can't load CENSOR.CFG
  929. CensorToss1         ^mSorry, you cannot use the word "^p@1&C^m" under any circumstances!@cPlease call back when you clean up your act...@c@c
  930. CensorWarn2         ^mPlease do not use the word "^p@1&C^m" here!@cPlease retype what you wish to say without using that word.@c
  931. CensorToss2         ^mSorry, your language is getting too filthy!@cPlease call back when you clean up your act...@c@c
  932. CensorWarn3         ^mPlease do not use the word "^p@1&C^m" here!@cPlease retype what you wish to say without using that word.@c
  933. CensorWarn4         ^mPlease avoid using the word "^p@1&C^m" in the future.@c
  934. CensorToss4         ^mSorry, you are getting too vulgar!@cPlease call back when you clean up your act...@c@c
  935. CensorWarn5         ^mPlease avoid using the word "^p@1&C^m" in the future.@c
  936. CensorReplace       ^mThat word has been replaced with something more appropriate.@c
  937. BioUserHasNone      ^mSorry, that user has not completed a biography.@c
  938. BioUserNotFound     ^mSorry, ^l@1^m is not a valid user name.  Please try again, or type ^pUSERLIST^m for a list of users.@c
  939. BioDispPrefix       @c^kBiography of ^p@1^k:@c@c
  940. BioQuesNumber       ^o@1.2^j)@s
  941. BioRespPrefix       ^n@1^j:@s
  942. BioResp             ^l@1
  943. BioNoResp           ^h<< ^pNone ^h>>
  944. BioRespSuffix       @c
  945. BioDispSuffix
  946. BioNumRespPrompt    ^nQuestion #^l@1^n - ^o@2@c^kPlease enter a NUMERIC response--->@s^p
  947. BioStrRespPrompt    ^nQuestion #^l@1^n - ^o@2@c^k--->@s^p
  948. BioBadNumResp       @c^mSorry, responses to this question must be from ^o@1^m to ^o@2^m.@cPlease try again.@c
  949. BioBadStrResp       @c^mSorry, responses to this question must be at least ^o@1^m characters long.@cPlease try again.@c
  950. BioRespSuffix       @c
  951. BioGetAllPrefix     @c^pThe biography is a way for other users to find out about you.  Please answer@ceach question truthfully.  If you wish to skip a question, enter "none" (or@c"0" for numeric responses).@c@c
  952. BioGetAllSuffix     @c
  953. BioEditPrompt       @c^oEnter a question number, R to redisplay your biography, C to complete all@cunanswered questions, or Q to quit--->@s^l
  954. BioEditQuitKeys     QX
  955. BioEditShowKeys     R
  956. BioEditCompKeys     C
  957. BioBadEditQNum      @c^mSorry, that is not a valid question number!@c
  958. BioEditDoAllPrompt  @c^nYou have not yet filled out your biography.@cDo you wish to answer ^pall^n of the questions now (Y/n)?--->@s^l
  959. BioEditDoAllSuffix  @c
  960. BioEditSuffix       @c
  961. CmdsBio             BIO BIOGRAPHY /B
  962. LogCantLoadBioQues  WARNING:  Can't load BIOQUES.CFG
  963. LookUpSuffix        @c
  964. EnterPageLinPrompt  @c^oEnter the message to send to node @1.@c--->@s^k
  965. EnterPageLinSuffix  @c
  966. Interrupt           ^p***
  967. CmdsUserList        USERLIST /U
  968. UserListHeader      @c@cUser Name                      @1@c
  969. UserListSep         ^c@r078-@c
  970. UserListEntry       ^l@1.-30 ^o@2@c
  971. UserListSuffix      @c
  972. InBioEditor         ^l@1^n has entered the Biography Editor.
  973. OutBioEditor        ^l@1^n has returned from the Biography Editor!
  974. TimeMsgPrefix       ^E^p@1^A
  975. TimeMsgForcePrefix  @c^E^p@1^A@c
  976. BioForceAllNotDone  @c^mYou did not complete all of the biography questions!@cYou must complete all remaining questions before you are allowed to chat!@c@c
  977. BioChangeMsg        ^l@1^n has just updated ^p@2^n biography!
  978. BioForcePrefix      @c
  979. SharingVioError     @c@c^I^mSharing Violation Error!^A@cFILE:  ^p@1^m@cPlease inform your sysop so this problem can be fixed!@c@c
  980. LogSharingVioError  !!!! SHARING VIOLATION ERROR!
  981. LogSharingVioFile   !!!! File:  @1
  982. ProfEdActEdBadSing  @c^mSorry, the singular text for all personal actions ^Imust^A contain the ^p%m^m ("me") action token!  Please try again, or press ^oH^m if you need help.  No changes have been made.@c
  983. ProfEdActEdBadPlur  @c^mSorry, the plural text for all personal actions ^Imust^A contain the ^p%m^m ("me") action token!  Please try again, or press ^oH^m if you need help.  No changes have been made.
  984. MaxPageFooter       @c
  985.