wconstse.inc 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Integrated Development Environment
  4. Copyright (c) 2000 by Berczi Gabor
  5. Strings for utilities
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. **********************************************************************}
  10. {$undef USERESSTRINGS} { this doesn't compile under FP!!! why? }
  11. {$ifdef USERESSTRINGS}
  12. resourcestring
  13. {$else}
  14. const
  15. {$endif}
  16. btn_OK = 'O~K';
  17. btn_Cancel = 'Cancel';
  18. dialog_find = 'Find';
  19. label_find_options = 'Options';
  20. label_find_texttofind = '~T~ext to find';
  21. label_find_casesensitive = '~C~ase sensitive';
  22. label_find_wholewordsonly = '~W~hole words only';
  23. label_find_useregexp = '~U~se regular expr.';
  24. label_find_direction = 'Direction';
  25. label_find_forward = 'Forwar~d~';
  26. label_find_backward = '~B~ackward';
  27. label_find_scope = 'Scope';
  28. label_find_global = '~G~lobal';
  29. label_find_selectedtext = '~S~elected text';
  30. label_find_origin = 'Origin';
  31. label_find_fromcursor = '~F~rom cursor';
  32. label_find_entirescope = '~E~ntire scope';
  33. dialog_replace = 'Replace';
  34. label_replace_texttofind = label_find_texttofind;
  35. label_replace_newtext = ' ~N~ew text';
  36. label_replace_options = label_find_options;
  37. label_replace_casesensitive = label_find_casesensitive;
  38. label_replace_useregexp = label_find_useregexp;
  39. label_replace_wholewordsonly = label_find_wholewordsonly;
  40. label_replace_promptonreplace = '~P~rompt on replace';
  41. label_replace_direction = label_find_direction;
  42. label_replace_forward = label_find_forward;
  43. label_replace_backward = label_find_backward;
  44. label_replace_scope = label_find_scope;
  45. label_replace_global = label_find_global;
  46. label_replace_selectedtext = label_find_selectedtext;
  47. label_replace_origin = label_find_origin;
  48. label_replace_fromcursor = label_find_fromcursor;
  49. label_replace_entirescope = label_find_entirescope;
  50. btn_replace_changeall = 'Change ~a~ll';
  51. dialog_gotoline = 'Goto line';
  52. label_gotoline_linenumber = 'Enter new line ~n~umber';
  53. msg_invalidmarkindex = 'Invalid mark index (%d)';
  54. msg_marknotset = 'Mark %d not set.';
  55. msg_foldboundsarenotvalid = 'Fold bounds are not valid';
  56. msg_notenoughmemoryforthisoperation = 'Not enough memory for this operation.';
  57. msg_errorreadingfile = 'Error reading file %s.';
  58. msg_errorwritingfile = 'Error writing file %s.';
  59. msg_errorsavingfile = 'Error saving file %s.';
  60. msg_errorcreatingfile = 'Error creating file %s.';
  61. msg_filehasbeenmodifiedsave = '%s has been modified. Save?';
  62. msg_saveuntitledfile = 'Save untitled file?';
  63. msg_filehadtoolonglines = #3'File %s had too long lines'#13+
  64. #3'first such line is %d';
  65. msg_filewasmodified = #3'File %s '#13+
  66. #3'was modified by another program.'#13+
  67. #3'Overwrite new version?';
  68. msg_reloaddiskmodifiedfile = #3'File %s '#13+
  69. #3'was modified by another program.'#13+
  70. #3'Reload new version?';
  71. msg_reloaddiskandidemodifiedfile = #3'File %s '#13+
  72. #3'was modified by another program,'#13+
  73. #3'but the IDE version wasn''t saved before.'#13+
  74. #3'Reload new on disk version and loose IDE modifications?';
  75. dialog_savefileas = 'Save File As';
  76. dialog_writeblocktofile = 'Write Block to File';
  77. dialog_readblockfromfile = 'Read Block from File';
  78. label_name = '~N~ame';
  79. msg_searchstringnotfound = 'Search string not found.';
  80. msg_replacethisoccourence = 'Replace this occurence?';
  81. msg_fileexistsoverwrite = 'File %s already exists. Overwrite?';
  82. msg_readingwinclipboard = 'Reading windows clipboard';
  83. msg_copyingwinclipboard = 'Copying to windows clipboard';
  84. msg_pastingclipboard = 'Pasting clipboard';
  85. msg_copyingclipboard = 'Copying to clipboard';
  86. msg_cutting = 'Cutting';
  87. { Help system }
  88. msg_nohelpfilesinstalled = 'No help files installed.';
  89. msg_helpindex = 'Help index';
  90. msg_nohelpavailabelforthistopic = 'No help available for this topic.';
  91. msg_pagenotavailable = 'Page not available';
  92. msg_cantaccessurl = 'Sorry, can''t access the URL: %s ...';
  93. { WUtils }
  94. msg_bugcheckfailed = 'Bug check failed: %s'#13+
  95. 'Please report to author!';
  96. msg_functionnotimplemented = #3'This function is not'#13+
  97. #3+'yet implemented...'#13+
  98. #3+'Sorry';
  99. {
  100. $Log$
  101. Revision 1.2 2001-09-14 23:47:09 pierre
  102. + more regexp, options now in Find/Replace dialogs
  103. Revision 1.1 2001/08/04 11:30:25 peter
  104. * ide works now with both compiler versions
  105. Revision 1.1.2.3 2001/03/06 22:04:53 pierre
  106. * Avoid cursor updates when editor window is locked
  107. Revision 1.1.2.2 2001/02/19 10:40:51 pierre
  108. * Check for changed files after Running tool or shell
  109. Revision 1.1.2.1 2000/09/18 13:20:55 pierre
  110. New bunch of Gabor changes
  111. Revision 1.1 2000/07/13 09:48:37 michael
  112. + Initial import
  113. Revision 1.1 2000/06/16 09:30:01 pierre
  114. * new files from Gabor
  115. }