home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / top2src.zip / GENERIC.LNG < prev    next >
Text File  |  1996-10-16  |  50KB  |  963 lines

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