fpstring.pas 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Integrated Development Environment
  4. Copyright (c) 2000 by Florian Klaempfl
  5. Strings for menus, dialogs etc
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {$i globdir.inc}
  13. {$ifdef USERESSTRINGS}{$mode objfpc}{$endif}
  14. unit fpstring;
  15. interface
  16. uses
  17. fpconst;
  18. {$ifdef USERESSTRINGS}
  19. resourcestring
  20. {$else}
  21. const
  22. {$endif}
  23. { menu entries }
  24. menu_file = '~F~ile';
  25. menu_file_new = '~N~ew';
  26. menu_file_template = 'New from ~t~emplate...';
  27. menu_file_open = '~O~pen...';
  28. menu_file_save = '~S~ave';
  29. menu_file_saveas = 'Save ~a~s...';
  30. menu_file_saveall = 'Save a~l~l';
  31. menu_file_changedir = '~C~hange dir...';
  32. menu_file_dosshell = '~D~OS shell';
  33. menu_file_exit = 'E~x~it';
  34. menu_edit = '~E~dit';
  35. menu_edit_copywin = 'Cop~y~ to Windows';
  36. menu_edit_pastewin = 'Paste from ~W~indows';
  37. menu_edit_undo = '~U~ndo';
  38. menu_edit_redo = '~R~edo';
  39. menu_edit_cut = 'Cu~t~';
  40. menu_edit_copy = '~C~opy';
  41. menu_edit_paste = '~P~aste';
  42. menu_edit_clear = 'C~l~ear';
  43. menu_edit_showclipboard= '~S~how clipboard';
  44. menu_search = '~S~earch';
  45. menu_search_find = '~F~ind...';
  46. menu_search_replace = '~R~eplace...';
  47. menu_search_searchagain= '~S~earch again';
  48. menu_search_jumpline = '~G~o to line number...';
  49. menu_search_findproc = 'Find ~p~rocedure...';
  50. menu_search_objects = '~O~bjects';
  51. menu_search_modules = 'Mod~u~les';
  52. menu_search_globals = 'G~l~obals';
  53. menu_search_symbol = 'S~y~mbol';
  54. menu_run = '~R~un';
  55. menu_run_run = '~R~un';
  56. menu_run_stepover = '~S~tep over';
  57. menu_run_traceinto = '~T~race into';
  58. menu_run_conttocursor = '~G~oto Cursor';
  59. menu_run_untilreturn = '~U~ntil return';
  60. menu_run_parameters = 'P~a~rameters...';
  61. menu_run_resetdebugger = '~P~rogram reset';
  62. menu_compile = '~C~ompile';
  63. menu_compile_compile = '~C~ompile';
  64. menu_compile_make = '~M~ake';
  65. menu_compile_build = '~B~uild';
  66. menu_compile_target = '~T~arget...';
  67. menu_compile_primaryfile = '~P~rimary file...';
  68. menu_compile_clearprimaryfile = 'C~l~ear primary file';
  69. menu_compile_information = '~I~nformation...';
  70. menu_compile_compilermessages = 'C~o~mpiler messages';
  71. menu_debug = '~D~ebug';
  72. menu_debug_output = '~O~utput';
  73. menu_debug_userscreen = '~U~ser screen';
  74. menu_debug_breakpoint = '~B~reakpoint';
  75. menu_debug_callstack = '~C~all stack';
  76. menu_debug_registers = '~R~egisters';
  77. menu_debug_addwatch = '~A~dd Watch';
  78. menu_debug_watches = '~W~atches';
  79. menu_debug_breakpointlist = 'Breakpoint ~L~ist';
  80. menu_debug_gdbwindow = '~G~DB window';
  81. menu_tools = '~T~ools';
  82. menu_tools_messages = '~M~essages';
  83. menu_tools_msgnext = 'Goto ~n~ext';
  84. menu_tools_msgprev = 'Goto ~p~revious';
  85. menu_tools_grep = '~G~rep';
  86. menu_tools_calculator = '~C~alculator';
  87. menu_tools_asciitable = 'Ascii ~t~able';
  88. menu_options = '~O~ptions';
  89. menu_options_mode = 'Mode~.~..';
  90. menu_options_compiler = '~C~ompiler...';
  91. menu_options_memory = '~M~emory sizes...';
  92. menu_options_linker = '~L~inker...';
  93. menu_options_debugger = 'De~b~ugger...';
  94. menu_options_directories = '~D~irectories...';
  95. menu_options_browser = 'Bro~w~ser...';
  96. menu_options_tools = '~T~ools...';
  97. menu_options_env = '~E~nvironment';
  98. menu_options_env_preferences = '~P~references...';
  99. menu_options_env_editor= '~E~ditor...';
  100. menu_options_env_codecomplete = 'Code~C~omplete...';
  101. menu_options_env_codetemplates = 'Code~T~emplates...';
  102. menu_options_env_desktop = '~D~esktop...';
  103. menu_options_env_mouse = '~M~ouse...';
  104. menu_options_env_startup = '~S~tartup...';
  105. menu_options_env_colors= '~C~olors';
  106. menu_options_open = '~O~pen...';
  107. menu_options_save = '~S~ave';
  108. menu_options_saveas = 'Save ~a~s...';
  109. menu_window = '~W~indow';
  110. menu_window_tile = '~T~ile';
  111. menu_window_cascade = 'C~a~scade';
  112. menu_window_closeall = 'Cl~o~se all';
  113. menu_window_resize = '~S~ize/Move';
  114. menu_window_zoom = '~Z~oom';
  115. menu_window_next = '~N~ext';
  116. menu_window_previous = '~P~revious';
  117. menu_window_close = '~C~lose';
  118. menu_window_list = '~L~ist...';
  119. menu_window_update = '~R~efresh display';
  120. menu_help = '~H~elp';
  121. menu_help_contents = '~C~ontents';
  122. menu_help_index = '~I~ndex';
  123. menu_help_topicsearch = '~T~opic search';
  124. menu_help_prevtopic = '~P~revious topic';
  125. menu_help_using = '~U~sing help';
  126. menu_help_files = '~F~iles...';
  127. menu_help_about = '~A~bout...';
  128. { short cut entries in menu }
  129. menu_key_file_open = 'F3';
  130. menu_key_file_save = 'F2';
  131. menu_key_file_exit = 'Alt+X';
  132. menu_key_edit_undo = 'Alt+BkSp';
  133. menu_key_edit_cut = 'Shift+Del';
  134. menu_key_edit_copy = 'Ctrl+Ins';
  135. menu_key_edit_paste = 'Shift+Ins';
  136. menu_key_edit_clear = 'Ctrl+Del';
  137. menu_key_run_run = 'Ctrl+F9';
  138. menu_key_run_stepover = 'F8';
  139. menu_key_run_traceinto = 'F7';
  140. menu_key_run_conttocursor = 'F4';
  141. menu_key_run_resetdebugger = 'Ctrl+F2';
  142. menu_key_compile_compile = 'Alt+F9';
  143. menu_key_compile_make = 'F9';
  144. menu_key_compile_compilermessages = 'F12';
  145. menu_key_debug_userscreen = 'Alt+F5';
  146. menu_key_debug_breakpoint = 'Ctrl+F8';
  147. menu_key_debug_callstack = 'Ctrl+F3';
  148. menu_key_debug_addwatch = 'Ctrl+F7';
  149. menu_key_tools_messages= 'F11';
  150. menu_key_tools_msgnext = 'Alt+F8';
  151. menu_key_tools_msgprev = 'Alt+F7';
  152. menu_key_tools_grep = 'Shift+F2';
  153. menu_key_window_resize = 'Ctrl+F5';
  154. menu_key_window_zoom = 'F5';
  155. menu_key_window_next = 'F6';
  156. menu_key_window_previous = 'Shift+F6';
  157. menu_key_window_close = 'Alt+F3';
  158. menu_key_window_list = 'Alt+0';
  159. menu_key_help_helpindex= 'Shift+F1';
  160. menu_key_help_topicsearch = 'Ctrl+F1';
  161. menu_key_help_prevtopic= 'Alt+F1';
  162. dialog_codecomplete_add = 'Add new keyword';
  163. label_codecomplete_add_keyword = 'Keyword';
  164. dialog_codecomplete_edit = 'Edit keyword';
  165. label_codecomplete_edit_keyword = 'Keyword';
  166. dialog_codetemplates_add = 'Add new template';
  167. dialog_codetemplates_edit = 'Edit template';
  168. { status line entries }
  169. status_help = '~F1~ Help';
  170. status_help_on_help = '~F1~ Help on help';
  171. status_help_previoustopic = '~Alt+F1~ Previous topic';
  172. status_help_index = '~Shift+F1~ Help index';
  173. status_help_close = '~Esc~ Close help';
  174. status_save = '~F2~ Save';
  175. status_open = '~F3~ Open';
  176. status_compile = '~Alt+F9~ Compile';
  177. status_make = '~F9~ Make';
  178. status_localmenu = '~Alt+F10~ Local menu';
  179. status_transferchar = '~Ctrl+Enter~ Transfer char';
  180. status_msggotosource = '~'+EnterSign+'~ Goto source';
  181. status_msgtracksource = '~Space~ Track source';
  182. status_close = '~Esc~ Close';
  183. status_calculatorpaste = '~Ctrl+Enter~ Transfer result';
  184. { error messages }
  185. error_saving_cfg_file = 'Error saving configuration.';
  186. error_saving_dsk_file = 'Error saving desktop file.'#13+
  187. 'Desktop layout could not be stored.';
  188. error_user_screen_not_avail = 'Sorry, user screen not available.';
  189. implementation
  190. end.
  191. {
  192. $Log$
  193. Revision 1.2 2000-02-07 08:29:13 michael
  194. [*] the fake (!) TOKENS.PAS still contained the typo bug
  195. FSplit(,n,d,e) (correctly FSplit(,d,n,e))
  196. [*] CodeComplete had a very ugly bug - coordinates were document-relative
  197. (instead of being screen-relative)
  198. [*] TResourceStream didn't count the size of the resource names when
  199. determining the file size and this could lead to the last resources not
  200. loaded correctly
  201. [+] Ctrl-Enter in editor now tries to open the file at cursor
  202. [+] CodeComplete option added to Options|Environment|Editor
  203. [+] user interface for managing CodeComplete implemented
  204. [+] user interface for CodeTemplates implemented
  205. [+] CodeComplete wordlist and CodeTemplates stored in desktop file
  206. [+] help topic size no longer limited to 64KB when compiled with FPC
  207. Revision 1.1 2000/01/23 21:25:17 florian
  208. + start of internationalization support
  209. }