home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / beav1402.zip / language.c < prev    next >
Text File  |  1993-04-16  |  13KB  |  334 lines

  1. /*
  2. *   This file contains all English language text srtings
  3. */
  4. #include    "def.h"
  5.  
  6. /* in basic.c */
  7. char MSG_mark_set[] = "Mark set";
  8. char MSG_no_mark[] = "No mark in this window";
  9. char MSG_go_b_n[] = "Goto byte number: ";
  10. char MSG_bad_num[] = "ERROR: Bad number";
  11.  
  12. /* in buffer.c */
  13. char MSG_use_b[] = "Enter name of buffer to goto: ";
  14. char MSG_kill_b[] = "Enter name of buffer to delete: ";
  15. char MSG_no_del_m[] = "ERROR: Can't delete 'main'";
  16. char MSG_buf_disp[] = "ERROR: Buffer is displayed - continue";
  17. char MSG_main[] = "main";
  18. char MSG_l_buf_h[] = "S T    Size  Buffer           File";
  19. char MSG_l_buf_h1[] = "- -   ------ ------           ----";
  20. char MSG_no_chg[] = "Discard changes";
  21. char MSG_yank_b[] = "Yank from buffer: ";
  22. char MSG_no_buf[] = "ERROR: no such buffer";
  23. char MSG_no_s_yank[] = "ERROR: can't yank to self!";
  24. char MSG_buf_nam[] = "Buffer name: ";
  25. char MSG_bad_l[] = "ERROR: Bad line!";
  26. char MSG_pick[] = "%s: G(oto) or K(ill) S(ave) ";
  27. char MSG_siz_chg[] = "Current buffer size may be changed";
  28. char MSG_no_siz_chg[] = "Current buffer size is locked";
  29. char MSG_cnt_al_b[] = "ERROR: Cannot allocate BUFFER block";
  30. char MSG_ins_cnt[] = "Insert %s bytes, Hit Ctl-G to quit.";
  31.  
  32. /* in display.c */
  33. char MSG_prn_to[] = "Print to: ";
  34. char MSG_prog_name[] = "BEAV";
  35. char MSG_disp_b_lst[] = " Buffer List ";
  36. char MSG_file[] = "File: ";
  37. char MSG_RO[] = " [RO]";
  38. char MSG_WL[] = " [WL]";
  39. char MSG_RW[] = " [RW]";
  40. char MSG_AU[] = "[AU]";
  41. char MSG_NOT_AU[] = "    ";
  42. char MSG_curs_asc[] = "CURSOR=%08lX,   ASCII";
  43. char MSG_curs_ebc[] = "CURSOR=%08lX,  EBCDIC";
  44. char MSG_curs_hex[] = "CURSOR=%08lX,%2X   HEX";
  45. char MSG_curs_bin[] = "CURSOR=%08lX,%2X   BIN";
  46. char MSG_curs_dec[] = "CURSOR=%08lu,%2u   DEC";
  47. char MSG_curs_flt[] = "CURSOR=%08lu,%2u FLOAT";
  48. char MSG_curs_oct[] = "CURSOR=%08lo,%2o OCTAL";
  49. char MSG_print1[] = "Writing: %s; Hit Ctl-G to quit";
  50. char MSG_print2[] = "Wrote %s lines";
  51. char MSG_cnt_al_v[] = "ERROR: Cannot allocate memory fot VIDEO";
  52.  
  53. /*  in ebcdic.c */
  54. #if RUNCHK
  55. char ERR_ebcdic[] =
  56. "ERROR: Character %s not found in EBCDIC table\n";
  57. #endif
  58.  
  59. /* in echo.c */
  60. char MSG_y_n[] = "%s [y/n]? ";
  61. char MSG_hit_key[] = "  Hit Ctl-G to continue";
  62.  
  63. /* in extend.c */
  64. char MSG_not_now[] = "Not now";
  65. char MSG_func[] = "Function: ";
  66. char MSG_unk_func[] = "ERROR: Unknown function for binding";
  67. char MSG_cmd_t_ex[] = "Command to execute: ";
  68. char MSG_unk_ext[] = "ERROR: Unknown extended command";
  69. char MSG_unk_rc[] = "ERROR: Unknown rc command: ";
  70. char MSG_d_b[] =
  71. "Display key binding for which key? (hit key now!)";
  72. char MSG_unbd[] = "%s is unbound";
  73. char MSG_bnd_to[] = "%s is bound to %s";
  74. char MSG_ins_self[] = "ins-self";
  75. char MSG_bnd_file[] = "Binding file: ";
  76. char MSG_bld_wall[] = "Building help buffer";
  77. char MSG_wall_head[] = "#  Function name                Key binding        Key code";
  78. char MSG_beavrc[] = "beavrc";
  79.  
  80.  
  81. /* in file.c */
  82. char MSG_rd_file[] = "Read file: ";
  83. char MSG_trash[] = "#tempbuf#";
  84. char MSG_ins_file[] = "Insert file: ";
  85. char MSG_not_fnd[] = "Not found";
  86. char MSG_visit[] = "Visit file: ";
  87. char MSG_view[] = "View file (read only): ";
  88. char MSG_buf_ex[] = "ERROR: Buffer exists";
  89. char MSG_old_buf[] = "ERROR: Old buffer";
  90. char MSG_cnt_cr[] = "ERROR: Cannot create buffer";
  91. char MSG_reading[] = "reading <%s>";
  92. char MSG_read_lx[] = "Read %s bytes, Hit Ctl-G to quit.";
  93. char MSG_no_mem_rd[] =
  94. "ERROR: Insufficient memory, buffer set to read only";
  95. char MSG_wr_file[] = "Write file: ";
  96. char MSG_no_fn[] = "ERROR: No file name";
  97. char MSG_bk_err[] = "ERROR: Backup error, save anyway";
  98. char MSG_writing[] = "writing <%s>";
  99. char MSG_wrot_n[] = "Wrote %s bytes, Hit Ctl-G to quit.";
  100. char MSG_fil_nam[] = "File name: ";
  101. #if RUNCHK
  102. char ERR_parse_fn[] =
  103. "ERROR: Starting address (%s) must preceede ending address (%s)";
  104. char ERR_addr_neg[] = "ERROR: Addresses cannot be negative";
  105. char ERR_f_size[] =
  106. "ERROR: Cannot access past end of file. (file size = %s)";
  107. #endif
  108.  
  109. /* in fileio.c */
  110. char MSG_cnt_wr[] = "ERROR: Cannot open file for writing";
  111. char MSG_wr_io_er[] = "ERROR: Write I/O error";
  112. char MSG_rd_er[] = "ERROR: File read error";
  113. #if UNIX
  114. char MSG_bak[] = ".~";
  115. #else
  116. char MSG_bak[] = ".bak";
  117. #endif
  118. char MSG_backup[] = "Back-up of %s to %s";
  119. char MSG_back_er[] = "ERROR: Back-up of %s to %s FAILED !!";
  120. char MSG_back_of[] = "%s - Back-up of  <%s> to <%s>\n";
  121.  
  122. /* in kbd.c */
  123. char MSG_tab[] = "Tab";
  124. char MSG_ret[] = "Return";
  125. char MSG_bksp[] = "Backspace";
  126. char MSG_space[] = "Space";
  127. char MSG_rubout[] = "Rubout";
  128.  
  129. /* in line.c */
  130. char MSG_cnt_alloc[] = "ERROR: Cannot allocate %s bytes for a line";
  131. char MSG_save_buf[] = "save-buffer";
  132.  
  133. /* in main.c */
  134. char MSG_ok[] = "ok";
  135. char MSG_no_mod[] = "ERROR: Buffer can not be modified";
  136. char MSG_no_s_chg[] = "ERROR: Buffer size can not be changed";
  137. char MSG_auto_fl[] = "Doing auto buffer flush";
  138. char MSG_quit[] = "quit-no-save";
  139. char MSG_st_mac[] = "Start macro";
  140. char MSG_end_mac[] = "End macro";
  141. char MSG_num_mod[] = "Number of modifcations per update: ";
  142. char version[] = "BEAV, Ver 1.40,  March 31, 1993";
  143.  
  144. /*  in random.c */
  145. char MSG_sh_pos[] =
  146. "Cursor: %s, Mark: %s,  Buffer Size: %s, File Size: %s";
  147. char MSG_sh_pos1[] =
  148. "Cursor: %s, No Mark, Buffer Size: %s, File Size: %s";
  149. char MSG_f_str[] = ", File: <%s>";
  150. char MSG_lnk[] = "All windows on buffer <%s> are %s";
  151. char MSG_unlink[] = "unlinked";
  152. char MSG_link[] = "linked";
  153. char MSG_bad_key[] = "ERROR: bad key = ";
  154. char MSG_esc[] = "Esc,";
  155. char MSG_ctl_x[] = "Ctl-X,";
  156. char MSG_ctl[] = "Ctl-";
  157. char MSG_fn[] = "FN,";
  158. char MSG_w_not_empty[] = "Destination buffer must be empty and modifiable";
  159. char MSG_procing[] = "Processing at %s, Hit Ctl-G to quit.";
  160. char MSG_edit_float[] = "ERROR: Cannot edit floating point display.";
  161.  
  162. /* in region.c */
  163. char MSG_sv_in_b[] = "Save in buffer: ";
  164. char MSG_sav_slf[] = "ERROR: Can't save to self!";
  165.  
  166. /* in search.c */
  167. char MSG_sch_str[] = " Search String";
  168. char MSG_bsrc_str[] = "Back Search String";
  169. char MSG_rpl_str[] = "Replace String";
  170. char MSG_pat_fnd[] = "Pattern found at %s";
  171. char MSG_no_srch[] = "ERROR: No last search";
  172. char MSG_fnd_at[] =
  173. "Found at %s, (R)eplace, (S)kip, (A)ll, (O)ne, (Q)uit.";
  174. char MSG_no_rpl[] = "No replacements done";
  175. char MSG_1_rpl[] = "1 replacement done";
  176. char MSG_n_rpl[] = "%s replacements done";
  177. char MSG_srcing[] = "Searching at %s, Hit Ctl-G to quit.";
  178. char MSG_curs[] = "%s; Curs = %s, %s Len = %s => ";
  179. char MSG_cmp_end[] = "Compare reached the end of a buffer";
  180. char MSG_cmp_term[] = "Compare terminated by user";
  181. char MSG_cmp_dif[] =
  182. "Difference is detected at the two cursor positions";
  183. char MSG_only_2[] =
  184. "ERROR: There must be exactly two windows displayed to use Compare";
  185. char MSG_cmping[] = "Comparing at %s, Hit Ctl-G to quit.";
  186.  
  187. /* in spawn.c */
  188. char MSG_shell[] = "COMSPEC";
  189. char MSG_def_shell[] = "/command.com";
  190. char MSG_pmpt[] = "PROMPT=[BEAV]";
  191. char MSG_pt[] = "PROMPT";
  192. char MSG_pme[] = "PROMPT=";
  193.  
  194. /* in symbol.c */
  195. char MSG_byte_shift[] = "display-byte-shift";
  196. char MSG_back_char[] = "move-back-char";
  197. char MSG_forw_del_char[] = "delete-forw-char";
  198. char MSG_toggle_swap[] = "display-swap-order";
  199. char MSG_forw_char[] = "move-forw-char";
  200. char MSG_abort[] = "abort-cmd";
  201. char MSG_back_del_char[] = "delete-back-char";
  202. char MSG_refresh[] = "refresh-screen";
  203. char MSG_forw_line[] = "move-forw-line";
  204. char MSG_back_line[] = "move-back-line";
  205. char MSG_quote[] = "insert-literally";
  206. char MSG_recall[] = "recall-srch-string";
  207. char MSG_twiddle[] = "unit-twiddle";
  208. char MSG_forw_page[] = "move-forw-page";
  209. char MSG_kill_region[] = "delete-mark-to-cursor";
  210. char MSG_yank[] = "yank";
  211. char MSG_down_window[] = "move-window-down";
  212. char MSG_ins_toggle[] = "insert-toggle";
  213. char MSG_display_buffers[] = "buffers-display";
  214. char MSG_exit_flush_all[] = "quit-save-all";
  215. char MSG_set_file_name[] = "buffer-set-file-name";
  216. char MSG_file_insert[] = "insert-file";
  217. char MSG_buf_size_lock[] = "buffer-size-lock";
  218. char MSG_flush_all[] = "save-all-buffers";
  219. char MSG_up_window[] = "move-window-up";
  220. char MSG_file_read[] = "file-read";
  221. char MSG_file_save[] = "file-save";
  222. char MSG_file_visit[] = "file-visit";
  223. char MSG_file_write[] = "file-write";
  224. char MSG_swap_dot_and_mark[] = "swap-cursor-and-mark";
  225. char MSG_shrink_window[] = "window-shrink";
  226. char MSG_display_position[] = "show-position";
  227. char MSG_start_macro[] = "macro-start";
  228. char MSG_end_macro[] = "macro-end";
  229. char MSG_help[] = "binding-for-key";
  230. char MSG_only_window[] = "window-single";
  231. char MSG_del_window[] = "window-delete";
  232. char MSG_split_window[] = "window-split";
  233. char MSG_scr_row[] = "screen-rows";
  234. char MSG_use_buffer[] = "change-buffer";
  235. char MSG_spawn_cli[] = "spawn-shell";
  236. char MSG_execute_macro[] = "macro-execute";
  237. char MSG_goto_line[] = "move-to-byte";
  238. char MSG_ins_unit[] = "insert-unit";
  239. char MSG_kill_buffer[] = "kill-buffer";
  240. char MSG_load_bindings[] = "bindings-load";
  241. char MSG_forw_window[] = "change-window-forw";
  242. char MSG_back_window[] = "change-window-back";
  243. char MSG_view_file[] = "file-view";
  244. char MSG_enlarge_window[] = "window-enlarge";
  245. char MSG_ascii_mode[] = "display-ascii";
  246. char MSG_binary_mode[] = "display-binary";
  247. char MSG_n_combine[] = "n-way-combine";
  248. char MSG_buffer_name[] = "buffer-set-name";
  249. char MSG_decimal_mode[] = "display-decimal";
  250. char MSG_ebcdic_mode[] = "display-ebcdic";
  251. char MSG_float_mode[] = "display-float";
  252. char MSG_hex_mode[] = "display-hex";
  253. char MSG_back_del_unit[] = "delete-back-unit";
  254. char MSG_octal_mode[] = "display-octal";
  255. char MSG_n_split[] = "n-way-split";
  256. char MSG_display_version[] = "show-version";
  257. char MSG_show_save_buf[] = "show-save-buf";
  258. char MSG_unit_size1[] = "display-bytes";
  259. char MSG_unit_size2[] = "display-words";
  260. char MSG_unit_size4[] = "display-double-words";
  261. char MSG_reposition_window[] = "window-reposition";
  262. char MSG_set_mark[] = "mark-set";
  263. char MSG_goto_eob[] = "move-to-end";
  264. char MSG_goto_bob[] = "move-to-begining";
  265. char MSG_next_buff[] = "change-to-next-buffer";
  266. char MSG_prev_buff[] = "change-to-prev-buffer";
  267. char MSG_query_replace[] = "replace";
  268. char MSG_display_bindings[] = "help";
  269. char MSG_auto_save[] = "auto-save";
  270. char MSG_back_unit[] = "move-back-unit";
  271. char MSG_compare[] = "compare";
  272. char MSG_forw_del_unit[] = "delete-forw-unit";
  273. char MSG_forw_unit[] = "move-forw-unit";
  274. char MSG_link_windows[] = "window-link";
  275. char MSG_print[] = "print-mark-to-cursor";
  276. char MSG_back_search[] = "search-back";
  277. char MSG_forw_search[] = "search-forw";
  278. char MSG_back_page[] = "move-back-page";
  279. char MSG_copy_region[] = "copy-mark-to-cursor";
  280. char MSG_extended_command[] = "extended-command";
  281. char MSG_search_again[] = "search-again";
  282. char MSG_bind_to_key[] = "bind-to-key";
  283. char MSG_file_visit_split[] = "file-visit-split";
  284. char MSG_yank_buffer[] = "yank-buffer";
  285. char MSG_save_region[] = "save-mark-to-cursor";
  286. char MSG_use_buffer_split[] = "move-to-buffer-split";
  287. char MSG_no_f_tb[] =
  288. "ERROR: Could not find <%s> in look up table\n";
  289.  
  290. /* in ttykbd.c */
  291. char MSG_sp_key[] = "%u special keys bound\n";
  292.  
  293. /* in window.c */
  294. char MSG_no_splt[] = "ERROR: Cannot split a %s line window";
  295. char MSG_cnt_al_w[] = "ERROR: Cannot allocate WINDOW block";
  296. char MSG_one_w[] = "ERROR: Only one window";
  297. char MSG_imp_chg[] = "ERROR: Impossible change";
  298. char MSG_scrn_rows[] = "Number of screen rows: ";
  299.  
  300. #if RUNCHK
  301. /* in basic.c */
  302. char ERR_bas_1[] = "ERROR: unknown r_type in basic #1";
  303.  
  304. /* in display.c */
  305. char ERR_disp_1[] = "ERROR: unknown r_type in display #1";
  306. char ERR_disp_2[] = "ERROR: unknown r_type in display #2";
  307. char ERR_disp_3[] = "ERROR: row less than zero\n";
  308. char ERR_disp_4[] = "ERROR: row greater then window size\n";
  309. char ERR_disp_5[] = "ERROR: unknown r_type in display #3";
  310. char ERR_disp_6[] = "ERROR: unknown r_size in display ";
  311.  
  312. /* in line.c */
  313. char ERR_no_alloc[] =
  314. "ERROR: new line was allocated during read pattern\n";
  315. char ERR_db_dalloc[] =
  316. "ERROR: line was deallocated during read pattern\n";
  317. char ERR_lock[] = "ERROR: This is size locked, cannot insert.";
  318. char ERR_lock_del[] = "ERROR: This is size locked, cannot delete.";
  319. /* in random.c */
  320. char ERR_rnd_1[] = "ERROR: unknown r_type in random #1";
  321. char ERR_rnd_2[] = "ERROR: unknown r_size in random #2";
  322. char ERR_rnd_3[] = "ERROR: unknown r_type in random #3";
  323. char ERR_rnd_4[] = "ERROR: unknown r_size in random #4";
  324. char ERR_rnd_5[] = "ERROR: unknown r_size in random #5";
  325. char ERR_rnd_6[] = "ERROR: unknown r_size in random #6";
  326. char ERR_rnd_7[] = "ERROR: unknown r_size in random #7";
  327. /* in search.c */
  328. char ERR_rdpat[] = "ERROR: bad r_type in readpattern\n";
  329. char ERR_mask[] = "ERROR: size of mask pattern, pat=%d, mask=%d\n";
  330. char ERR_m_cl[] = "ERROR: in ascii mode mask byte was not cleared\n";
  331. /* in ttyio.c */
  332. char ERR_bd_pl[] = "ERROR: bad call to putline\n";
  333. #endif
  334.