home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / BBS_UTIL / FDL_V410.ZIP / FDL.LAN < prev    next >
Text File  |  1994-04-03  |  27KB  |  618 lines

  1. %***********************************************************************
  2. % FILEDOOR.LAN    - V 4.10    /  04-03-94                              *
  3. %                 - Author : R.W. van Hoeven                           *
  4. %                 - Changes: Added ' ' macro description               *
  5. %                 - Comment: Same as ENGLISH.LAN, this is the default  *
  6. %***********************************************************************
  7.  
  8. %***********************************************************************
  9. %* Description of usage                                                *
  10. %* --------------------                                                *
  11. %*                                                                     *
  12. %* All empty lines and lines starting with % are treated as comment    *
  13. %* lines. All other lines are used by the compiler. The general format *
  14. %* is:                                                                 *
  15. %*                                                                     *
  16. %* [number] [text]                                                     *
  17. %*                                                                     *
  18. %* [number] is the message number and refers to a fixed point in the   *
  19. %*          program. New numbers are only generated by the author. The *
  20. %*          number can be from 1 to 5 digits but only numbers 1 to 400 *
  21. %*          are used (currently up to 310). Some numbers are left out  *
  22. %*          to have some space for new messages at logical locations.  *
  23. %*                                                                     *
  24. %* [text]   is the text that is related to [number]. You can use the   *
  25. %*          FILEDOOR.LAN file as a reference to the text conceirned.   *
  26. %*          You can even leave out [text] at all in which case these   *
  27. %*          lines are NOT displayed (though some CRLF combinations are *
  28. %*          FIXED INSIDE the program). Lines can be up to 250 bytes !  *
  29. %*                                                                     *
  30. %*                                                                     *
  31. %* Each text-line can contain text and macros. Macros are expanded by  *
  32. %* filedoor itself. Currently the following macros are available:      *
  33. %*                                                                     *
  34. %* ^A    Replaced by the normal      color (low)                       *
  35. %* ^B    Replaced by the normal      color (high)                      *
  36. %* ^C    Replaced by the attention   color                             *
  37. %* ^D    Replaced by the status-bar  color                             *
  38. %* ^E    Replaced by the error       color                             *
  39. %* ^F    Replaced by the text-1      color                             *
  40. %* ^G    Replaced by the text-2      color                             *
  41. %* ^H    Replaced by the text-3      color                             *
  42. %* ^I    Replaced by the text-4      color                             *
  43. %* ^J    Replaced by the text-5      color                             *
  44. %* ^O    Replaced by the startup     color                             *
  45. %* ^Txx  Start following text on column 'xx'                           *
  46. %* ^7    Replaced by a beep (CTRL-7) at the remote side                *
  47. %* |     Replaced by a CRLF combination                                *
  48. %*       Replaced by a clear screen (ANSI or ASCII)                    *
  49. %* _     Replaced by a space (when needed only at the end of the line) *
  50. %* $1/$4 Replaced by a variable INSIDE FileDoor. Look at FILEDOOR.LAN  *
  51. %*                     to see the maximum number of variables needed   *
  52. %*                     for each line (most of them don't need them at  *
  53. %*                     all)                                            *
  54. %*                                                                     *
  55. %* If you would like to add a completely new line after an existing    *
  56. %* one, you can do the following:                                      *
  57. %*                                                                     *
  58. %* ^AFile: ^C$1 ^ASize: ^C$2|
  59. %*                                                                     *
  60. %* will display                                                        *
  61. %*                                                                     *
  62. %* 'File: xxxxxxxx.xxx Size: xxxxxx                                    *
  63. %*                                                                     *
  64. %* enhance it to                                                       *
  65. %*                                                                     *
  66. %* ^AFile: ^C$1 ^ASize: ^C$2|As you can see|
  67. %*                                                                     *
  68. %* and the result is                                                   *
  69. %*                                                                     *
  70. %* 'File: xxxxxxxx.xxx Size: xxxxxx'                                   *
  71. %* 'As you can see'                                                    *
  72. %*                                                                     *
  73. %* So now 1 line is extended into 2 lines. Play with it as you like !  *
  74. %*                                                                     *
  75. %*                                                                     *
  76. %* A special case are the questions ! Also questions are implemented   *
  77. %* as language supported items. There is a special macro '[[value]]'   *
  78. %* (without the quotes) that can be used. Only one rule applies and    *
  79. %* that is, that you must follow the exact order in which the answer   *
  80. %* is processed. Again use FILEDOOR.LAN as an example. The special     *
  81. %* macro contains all letters (in the combination that FILEDOOR uses)  *
  82. %* of the possible answers but the FIRST letter is the default answer  *
  83. %* when the user presses [ENTER].                                      *
  84. %*                                                                     *
  85. %* An example of a question:                                           *
  86. %*                                                                     *
  87. %* ^ADo you want to download <m>ale or <F>emale files : [[FMF]]        *
  88. %*                                                                     *
  89. %* The order inside FileDoor is fixed and set to 'M'(ale)/'F'(emale).  *
  90. %* When the user presses [ENTER], 'F'(emale) is the default answer).   *
  91. %* Now translated to dutch (where 'male' is 'mannelijke' and 'female'  *
  92. %* is 'vrouwelijke' it will result in:                                 *
  93. %*                                                                     *
  94. %* ^AWilt U <m>annelijke of <V>rouwelijke files downloaden: [[VMV]]    *
  95. %*                                                                     *
  96. %* As you can see, the 'F' in the [[value]] macro is replaced twice    *
  97. %* into 'V' (the first replacement for the default, the second for     *
  98. %* the actual choice).                                                 *
  99. %*                                                                     *
  100. %* Watch the following:                                                *
  101. %*                                                                     *
  102. %* ^ADo you want to download <m>ale or <F>emale files : [[FFM]]        *
  103. %*                                                                     *
  104. %* As you can see, the order FMF is changed to FFM. This will cause    *
  105. %* problems ! FileDoor expects the first answer (the second letter)    *
  106. %* to by the synonym for 'male' and the second (the third letter) to   *
  107. %* by the 'female' synonym. Now you have altered the MF into FM and    *
  108. %* when the user pressed 'F', FileDoor will think 'Male' and not       *
  109. %* 'Female'.                                                           *
  110. %*                                                                     *
  111. %* If you change FMF into MMF, nothing will go wrong. You only have    *
  112. %* told FileDoor that [ENTER] will result in answer 'M' (is male).     *
  113. %* So you can NOT change the order, you CAN change the letters and     *
  114. %* you CAN change the default !                                        *
  115. %*                                                                     *
  116. %* Last case. If you specify AMF and not FMF or MFM, FileDoor will use *
  117. %* 'A' as the default. 'A' is not one of the letters that can be used  *
  118. %* so the question will stay on screen or will be repeated until the   *
  119. %* 'M' or 'F' is used. In this way you even can deny the usage of the  *
  120. %* [ENTER] sequence.                                                   *
  121. %*                                                                     *
  122. %* Be VERY carefull to include ALL replies. If you supply MM or even M *
  123. %* only ONE answer (in the MM case) or nothing at all (in the M case)  *
  124. %* can be used. The last case will force FileDoor to 'hang' on the     *
  125. %* question until the user drops the carrier ! The first case can be   *
  126. %* used if you want to exclude specific actions inside FileDoor. For   *
  127. %* example the question to select a file contains 'Y', 'N', 'Q' (for   *
  128. %* quit) and 'I' (for Info). If you leave out the 'I' and the 'Q',     *
  129. %* only 'Y' and 'N' can be used (please alter the text also). You can  *
  130. %* NOT leave out the 'N' because in this case the other letters (Q and *
  131. %* I) will shift place. You can remove the 'N' but in this case you    *
  132. %* need to supply a 'high' character like [YYßQI]. ß can not be used   *
  133. %* at the remote side and the order is still ok.                       *
  134. %***********************************************************************
  135.  
  136. %***********************************************************************
  137. %* META-options available during compilation :                         *
  138. %*                                                                     *
  139. %* !NAME    Name of the author that created the language file          *
  140. %* !VERS    Version number of this language file                       *
  141. %* !PROT    Protect the compiled file against disassemble (N/A yet)    *
  142. %* !CYRL    Cyrillic uppercase routines ?                              *
  143. %* !FONT    Display the 'change-font' (number 400) message ?           *
  144. %***********************************************************************
  145.  
  146. !NAME R.W. van Hoeven
  147. !VERS _4.10__
  148. !PROT NO
  149. !CYRL NO
  150. !FONT NO
  151.  
  152. %***********************************************************************
  153. %*  XFD_UPRE                                                           *
  154. %***********************************************************************
  155. 00001 Download
  156.  
  157. 00002 Upload
  158.  
  159. 00003 |||^C$1^E is not possible right now, press any key to continue ....|
  160.  
  161. 00004 ^C|Overruled in local operations, press any key to continue ....|
  162.  
  163. 00005 |||^C$1^E is not allowed at this modemspeed, press any key to continue ....|
  164.  
  165. 00006 ^BThere are still ^CABORTED ^Afiles present from previous uploads by YOU, which CAN|be resumed. Please complete these files (go into upload mode) as soon you can !|
  166.  
  167. 00007 ^AFile: ^C$1 ^ASize: ^C$2|
  168.  
  169. 00008 ^A|                           Hit ^C[ENTER]^A to continue ....|
  170.  
  171. 00009 ^Afile(s) - Choose method below||
  172.  
  173. 00010 ^A<^C$1^A> Help on   FileDoor <tm>|^A<^C$2^A> Terminate FileDoor <tm>||
  174.  
  175. 00011 ^ASelect : ^C
  176.  
  177. 00012 |||^EThere is NO help-information available. Hit any key to continue ....||
  178.  
  179.  
  180. 00013 ^AProtocol : ^C $1|
  181.  
  182. 00014 |^ADo you want descriptions of downloaded files to be sent to you [^CY/n^A] : ^B[[YYN]]
  183.  
  184. 00015 |^AAppend the comments to the information file of previous session [^CY/n^A] : ^B[[YYN]]
  185.  
  186. %***********************************************************************
  187. %*  XFD_UDNL                                                           *
  188. %***********************************************************************
  189.  
  190. 00020 ||^EYou did not select any file to download !|||
  191.  
  192. 00021 ^ADownloaded ^B$1^A kb, ^B$2^A files.|
  193. 00022 ^AUploaded    ^B$1^A kb, ^B$2^A files.|
  194. 00023 ^AAny uploads have a upload credit of ^B$1^A% in bytes!|
  195. 00024 ^AAny uploads have a upload credit of ^B$1^A% in time !|
  196.  
  197. %***********************************************************************
  198. %*  XFD_USDN                                                           *
  199. %***********************************************************************
  200.  
  201. 00030 ^AUse ^C/$1^Ato select ^B$2|
  202. 00031 ^C/$1^Ato select ^B$2|
  203. 00032 ^AUse_
  204.  
  205. 00033 ^C/NEW(A)   ^Ato select ^Ball new files (with area-select)|
  206.  
  207. 00034 ^C/TAG      ^Ato use a  ^Bcreated tag-file as input|
  208.  
  209. 00035 ^C/INFO     ^Ato select ^Bfile with comments of downloaded files ^C<--|
  210.  
  211. 00036 ^C/USER     ^Ato SELECT ^Bfiles that are made available for you  ^C<--|
  212.  
  213. 00037 ^C/UDEL     ^Ato DELETE ^Bfiles that are made available for you  ^C<--|
  214.  
  215. 00038 ^C/CONFIG   ^Ato enter  ^Bthe FileDoor configuration menu|
  216.  
  217. 00039 ^ENon available to you ....|
  218.  
  219.  
  220. 00040 ^EInvalid magical name ....||
  221.  
  222. 00041 ^AEnter password                   : ^B
  223.  
  224. 00042 ||^EInvalid password !|||
  225.  
  226. 00043 ^AGive filespec or ^C[ENTER]^A to quit : ^B
  227.  
  228. 00044 ^AFile ^C$1^A select [^Cy/N/q^A]: ^B[[NYNQ]]
  229.  
  230. 00045 ^EFile(s) not found ....||
  231.  
  232. 00050 ^A*                       ^CBIDIRECTIONAL: FILES TO DOWNLOAD^A                      *|
  233.  
  234. 00051 ^AYou must select ^Cat least 1 file ^Afor download. Use [^C?^A] to get help-info !||
  235.  
  236. 00052 ^AYou ^Cdo not have to select ^Afiles for download. Use [^C?^A] to get help-info !||
  237.  
  238. 00053 ^AValid DOS wildcards as well as ^Cextended ^Awildcards (^C*MT*.*^A to search|
  239.  
  240. 00054 ^Aall files containing MT, and ^C=MT ^Awhich does the same) are allowed !||
  241.  
  242. 00055 ^ADefault extension(s) (when none supplied) : ^B
  243.  
  244. 00056 ^AUse ^C/? ^A       to display ^Cmagical names ^A!||
  245.  
  246. 00060 ^AThere are ^Cfiles ^Aset aside ^Cfor you^A. Another user has set aside some files for|^Ayou to download now or at a later moment.||
  247.  
  248. 00061 ^ANumber of files/bytes : ^B$1|
  249.  
  250. 00062 ^ASet aside by           : ^B$1|
  251.  
  252. 00063 ^AShort comment          : ^B$1||
  253.  
  254. 00064 ^BYou can use ^E/USER ^Bto select and ^E/UDEL ^Bto delete these files !!||
  255.  
  256. 00070 ^ARemaining   : ^C$1 ^Amin / ^C$2 ^AKB.____
  257.  
  258. 00071 |^CAfter ^Aselecting files, use [^CENTER^A] or [^C/QUIT^A] to jump to the next menu !||
  259.  
  260. 00072 ^AFilename(s), ^C/? ^Aor ^C?^A; [^CENTER or /QUIT^A] to transfer : ^B
  261.  
  262. 00073 ^AFilename(s), ^C/? ^Aor ^C? ^A: ^B
  263.  
  264. 00074 ^E*.* and ????????.??? or extended wildcards are not allowed !||
  265.  
  266. 00075 ^AMagical names that will allow a fast selection|
  267.  
  268. 00076 ^A----------------------------------------------|
  269.  
  270. 00077 ^ATag-file origin   : ^B$1
  271.  
  272. 00078 ^ADescription       : ^B$1||
  273.  
  274. 00079 ^EToo many selections !||
  275.  
  276. 00080 ^AWould you like to search from the last time on   [^CY/n^A] : ^B[[YYN]]
  277.  
  278. 00081 ^AEnter date to search from                     [^Cmmddyy^A] : ^B
  279.  
  280. 00082 |^EInvalid date format supplied !||
  281.  
  282. 00083 |^EInfo-file is already selected !|||
  283.  
  284. 00084 |^CInfo-file is selected but you can still add files that will be included !|||
  285.  
  286. 00085 ^AAre you sure you want to delete ^CALL ^Athese files [^Cy/N^A] : ^B[[NYN]]
  287.  
  288. 00086 |^EUser terminated the selection !^7|||
  289.  
  290. 00087 |^ENo file(s) found !^7|||
  291.  
  292. 00088 |^EDon't start your download overhere, finish the menus first !||
  293.  
  294. 00089 |^EEMSI-chat or EMSI commands don't work inside FileDoor <tm> !||
  295.  
  296. 00090 ^E// is not allowed with your security level ...||
  297.  
  298. 00091 |^ENo file(s) found, not all areas scanned because of security level!^7|||
  299.  
  300.  
  301. %***********************************************************************
  302. %*  XFD_UFIL                                                           *
  303. %***********************************************************************
  304.  
  305. 00100 ^FContents of     : ^B$1|
  306.  
  307. 00101 ^FType of archive : ^B
  308.  
  309. 00102 ^A--Filename--  OrgSize  ArcSize  --Date--  -Tme-  AV  Enc  --Compression type--|
  310.  
  311. 00103 ^B------------  -------  -------  --------  -----  --  ---  --------------------|
  312.  
  313. 00104 ^FDimensions       : ^J
  314.  
  315. 00105 |^E$1 is not an archive (normal file)||
  316.  
  317. 00106 ^CExternal viewer is loading, one moment please ....|
  318.  
  319. 00107 ^EUnable to call external viewer !||
  320.  
  321. 00110 ^EFile ^B$1
  322.  
  323. 00111 ^EMore than 10 files skipped, display of errors is suspended !^7|
  324.  
  325. 00112 ^AArea : ^B$1|
  326.  
  327. 00113 ^ASearch for ^CNEW ^Afiles in this area [^CY/n/q^A] : ^B[[YYNQ]]
  328.  
  329. 00114 ^Ealready selected !|
  330.  
  331. 00115 ^Eexceeds download ratio !|
  332.  
  333. 00116 ^Eexceeds download limit !|
  334.  
  335. 00117 ^Eexceeds session time !|
  336.  
  337. 00118 ^AFile ^C$1^Aselected !|
  338.  
  339. 00120 ^ARemaining   : ^C$1^A min / ^C$2^A KB.____
  340.  
  341. 00121 ^AFound file  : ^B$1(^A$2^B)|
  342.  
  343. 00122 ^ASize/Time   : ^B$1^A($2 min)
  344.  
  345. 00123 ^C <Free file>|
  346.  
  347. 00125 ^ASelect file : ^C[Y]^Aes, ^C[n]^Ao, ^C[v]^Aiew, ^C[i]^Anfo, ^C[q]^Auit, ^C[?]^Ahelp or ^C[s]^Aelect : ^B[[YYNVIQ?S]]
  348.  
  349. 00130 ^ABBS-Area description      : ^B$1|
  350.  
  351. 00131 ^AFilename                  : ^C$1  ^H($2 bytes)|
  352.  
  353. 00132 ^ACreated on date/time      : ^I$1 / ^J$2||
  354.  
  355. 00133 ^A-----------------------------------1200---2400---4800---9600--14400--16800|
  356.  
  357. 00134 ^AFile  Xfer time (this protocol):
  358.  
  359. 00135 ^ATotal Xfer time (this protocol):
  360.  
  361. 00136 ^ATotal Xfer time (fastest prot.):
  362.  
  363. 00137 ^AFastest protocol available     : ^H$1|
  364.  
  365. 00138 ^A--------------------------------------------------------------------------||
  366.  
  367. 00139 ^AFull description of file : ^F
  368.  
  369. %!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  370. %! DON'T USE ANY OTHER MACROS OVERHERE (140) IN THIS GAMMA VERSION     !
  371. %!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  372. 00140 ^AIn list, use Y/N for selection, Q to quit list, V to view the file, I to|^Adisplay extended info about this file. S is the same as Y  but will stop|^Asearching !||
  373.  
  374. 00141 ^AFile is ^Cprotected^A, enter password : ^B
  375.  
  376. 00142 ^ATry again, try ^C$1^A                   : ^B
  377.  
  378. 00143 ^E(invalid)^7|
  379.  
  380. 00144 ^B(validated)|
  381.  
  382. 00145 |^EToo many tries for a valid password, file NOT selected (deselected)^7|
  383.  
  384. 00146 ^EDenied by exit ....||
  385.  
  386. 00147 ^AFile  Xfer time (fastest prot.):
  387. %***********************************************************************
  388. %*  XFD_USUP                                                           *
  389. %***********************************************************************
  390.  
  391. 00150 ^A*                       ^CBIDIRECTIONAL: FILES  TO  UPLOAD^A                      *|
  392.  
  393. 00151 ^AEnter the ^Cname of the file ^A(no wildcards allowed) that you are going to upload.||
  394. 00152 ^AYou can (optionally) give the name(s) of the file(s) that you are going to|
  395. 00153 ^Aupload in a moment. If you include them, you can be sure that FileDoor <tm>|
  396. 00154 ^Awill give a warning if the file is unwanted or duplicate. You can always send|
  397. 00155 ^Amore files than you have supplied but in that case, checking of those files|
  398. 00156 ^Awill be done afterwards !|
  399.  
  400. 00157 ^AFileDoor will reject files matching    : ^C
  401.  
  402. 00158 ^AFiledoor will reject files older than : ^C$1||
  403.  
  404. 00159 ^AIf you ^Cdo not ^Awant to supply the filenames IN ADVANCE, press [^CENTER^A] now !||
  405.  
  406. 00160 ^AFilename, [^CENTER^A] or [^C/?^A]      : ^B
  407.  
  408. 00161 ^Econtains invalid characters !|
  409.  
  410. 00162 ^Eunwanted on this BBS !|
  411.  
  412. 00163 ^Ealready present on this BBS !|
  413.  
  414. 00164 ^Ealready supplied before !|
  415.  
  416. 00165 ^ADescription (^C/ ^Amakes private)  : ^A
  417.  
  418. 00166 ^ADescription                    : ^A
  419.  
  420. 00167 ^BMust be between ^C$1^B-^C$2^B chars  : ^A
  421.  
  422. 00168 |^EDon't start your upload overhere, finish the menus first !||
  423.  
  424. 00169 |^EEMSI-chat or EMSI commands don't work inside FileDoor <tm> !||
  425.  
  426. %***********************************************************************
  427. %*  XFD_UDIS                                                           *
  428. %***********************************************************************
  429.  
  430. 00170 ^AWarn  : ^EMaximum files selected for PROTOCOL !|
  431.  
  432. 00171 ^AWarn  : ^EMaximum files selected for FILEDOOR !|
  433.  
  434. 00172 ^AInfo  : ^CSysop added some files in DNLD-list !|
  435.  
  436. 00173 ^AInfo  : ^CInfo file is added to the DNLD-list !|
  437.  
  438. 00174 ^CNone selected|
  439.  
  440. 00175 ^CNone supplied|
  441.  
  442. 00176 ^C$1 ^Akb, ^C$2 ^Aminutes at ^C$3 ^ABPS__
  443.  
  444. 00177 ^EMax. session time ^C$1 ^Emin|^ADisk  : ^C$2 ^AKb left on upload drive|
  445.  
  446. 00178 ^AMethod: ^C$1||
  447.  
  448. %------------------------------------------------------------------------
  449. % Be carefull with this one. You have the option to select 1 to 4 of the
  450. % various options BUT the FIRST MUST always be the start of the transfer
  451. % and you CANNOT change the default (ENTER is the default to start the
  452. % protocol, and will be the same as the first real letter (not the leading
  453. % default-character) !
  454. %------------------------------------------------------------------------
  455. 00179 ^AUser  : <^CENTER^A> to start, <^CG^A>oodbye after XFer, <^CB^A>ack to selection, <^CA^A>bort : ^B[[YYGBA]]
  456.  
  457. 00180 ^ATime  :_
  458.  
  459. %***********************************************************************
  460. %*  XFD_UEXE                                                           *
  461. %***********************************************************************
  462.  
  463. 00190 ||^ANow fetching protocol-program, FileDoor <tm> is ready to ^C*SEND*^O||
  464.  
  465. 00191 ||^ANow fetching protocol-program, FileDoor <tm> is ready to ^C *RECEIVE*^O||
  466.  
  467. 00192 |^EPanic, the protocol program could not be found, mission aborted !||
  468.  
  469. 00193 ^ACurrent action : ^BTesting for aborted uploads|
  470.  
  471. 00194 ^ACheck file      : ^C$1
  472.  
  473. 00195 ^E, is aborted. You CAN resume this transfer !|
  474.  
  475. 00196 ^E, is aborted. You can NOT resume this transfer !|
  476.  
  477. 00197 ^E, is aborted and a dupe. You can NOT resume this transfer !|
  478.  
  479. %***********************************************************************
  480. %*  XFD_UTDN                                                           *
  481. %***********************************************************************
  482.  
  483. 00200 ^AUser file      : ^C$1^Adeleted !|
  484.  
  485. 00201 ^ATemporary file : ^C$1^Adeleted !|
  486.  
  487. 00202 ^ACurrent action : ^BTesting the download, can take a while ....||
  488.  
  489. 00203 |^ENo downloaded files found !||
  490.  
  491. 00204 |^ADownloaded file: ^C$1 ^Bcontains comments of the other downloaded files||
  492.  
  493. 00205 |^EError while data was (being) transmitted. Nothing calculated !||
  494.  
  495. 00206 |^ETransmission took shorter than expected. Nothing calculated !||
  496.  
  497. %***********************************************************************
  498. %*  XFD_UTUP                                                           *
  499. %***********************************************************************
  500.  
  501. 00210 ^ACurrent action : ^BTesting the uploads||
  502.  
  503. 00211 ^E, is 0-length, removed and not counted !|
  504.  
  505. 00212 ^E, is not archived, only $1% credit given !|^A_______________________________
  506.  
  507. 00213 ^E, is too old, removed and not counted !|
  508.  
  509. 00214 ^E, is unwanted, removed and not counted !|
  510.  
  511. 00215 ^E, is a dupe, removed and not counted !|
  512.  
  513. %***********************************************************************
  514. %*  XFD_UFDN                                                           *
  515. %***********************************************************************
  516.  
  517. 00220 ^ACurrent action : ^BUpdating BBS files-list||
  518.  
  519. %***********************************************************************
  520. %*  XFD_UFUP                                                           *
  521. %***********************************************************************
  522. 00230 ^ACurrent action : ^BUpdating BBS files-list for uploaded files||
  523.  
  524. 00231 ^AName of uploaded file         : ^C$1|
  525.  
  526. 00232 ^ADescription (^C/ ^Amakes private) : ^B
  527.  
  528. 00233 ^ADescription                     : ^B
  529.  
  530. 00234 ^CFile-comment obtained from archive|
  531.  
  532. 00235 |^AIs this file a private (SYSOP-only) file [^Cy/N^A] : ^B[[NYN]]
  533.  
  534. 00236 |^AThis is a ^Cprivate^A file for the SysOp !||
  535.  
  536. %***********************************************************************
  537. %*  XFD_UUPL                                                           *
  538. %***********************************************************************
  539.  
  540. 00240 ||^ENot enough disk-space left to upload files !||
  541.  
  542. 00241 ||^EYou did not supply a filename (needed for this protocol) !|||
  543.  
  544. %***********************************************************************
  545. %*  XFD_M3xx                                                           *
  546. %***********************************************************************
  547. 00250 ^APerform another file-transfer now                   [^Cy/N^A][[NYN]]
  548.  
  549. 00251 ^APress [^CENTER^A] to continue !
  550.  
  551. 00252 |^AInfo-file not (yet) downloaded, restart to collect  [^CY/n^A][[YYN]]
  552.  
  553. %***********************************************************************
  554. %*  XFD_UTUR                                                           *
  555. %***********************************************************************
  556.  
  557. 00260 ^ACurrent action : ^BTesting the upload, can take a while ....||
  558.  
  559. %***********************************************************************
  560. %*  XFD_UCOM                                                           *
  561. %***********************************************************************
  562.  
  563. 00300 ^APress [^C!^A] (or wait) to hangup, [^CESC^A] to return to BBS|
  564.  
  565. 00301 ^ACountdown ^C
  566.  
  567. 00302 ^AExit is called for ^B$1^A, one moment please ....|
  568.  
  569. 00303 |^AExit to check uploads (nr.^B$1^A) is called, one moment please ....|
  570.  
  571. 00304 ^Asearching_
  572.  
  573. 00305 |||^ESession is pending to terminate within 1 min. FileDoor is disabled !|
  574.  
  575. 00306 |||^EAborted due to inactivity !
  576.  
  577. 00307 ^COne moment please, serializing $1 ....|
  578.  
  579. 00308 ^ACurrent action : ^BTesting user-directory
  580.  
  581. 00309 ^A, found and deleted !||
  582.  
  583. 00310 ^A, found but still contains files !||
  584.  
  585. 00311 ^ECurrent *KB's* ratio: ^C$1:1 ^E(Max $2:1)
  586.  
  587. 00312 ^ECurrent *FILE* ratio: ^C$1:1 ^E(Max $2:1)
  588.  
  589. 00313 |^AExit to prepare downloads is called, one moment please ....|
  590.  
  591. 00314 |^AExit to update Remote Access is called, one moment please ....|
  592.  
  593. 00315 ^ASearching_(use ^CESC ^Ato stop search)__
  594.  
  595. %***********************************************************************
  596. %*  XFD_UROF                                                           *
  597. %***********************************************************************
  598.  
  599. 00320 ^AFileDoor is checking for files on ^CRead-Only ^Adrives !||
  600.  
  601. 00321 ^B$1^Ais a file on a ^CREADONLY^A-drive, one moment, file-copy started ...|
  602.  
  603. 00322 ^A_____________exit is called to process ^CREADONLY ^Afiles, one moment please ...||
  604.  
  605. %***********************************************************************
  606. %*  Added later                                                        *
  607. %***********************************************************************
  608.  
  609. 00350 ^BOK|
  610.  
  611. 00351 ^EInvalid filename supplied !||
  612.  
  613. %***********************************************************************
  614. %*  FILELANG specific                                                  *
  615. %***********************************************************************
  616.  
  617. 00400 ||||^C^T19Change your font to ENGLISH and hit [ENTER]|||
  618.