wconstse.inc 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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_direction = 'Direction';
  24. label_find_forward = 'Forwar~d~';
  25. label_find_backward = '~B~ackward';
  26. label_find_scope = 'Scope';
  27. label_find_global = '~G~lobal';
  28. label_find_selectedtext = '~S~elected text';
  29. label_find_origin = 'Origin';
  30. label_find_fromcursor = '~F~rom cursor';
  31. label_find_entirescope = '~E~ntire scope';
  32. dialog_replace = 'Replace';
  33. label_replace_texttofind = label_find_texttofind;
  34. label_replace_newtext = ' ~N~ew text';
  35. label_replace_options = label_find_options;
  36. label_replace_casesensitive = label_find_casesensitive;
  37. label_replace_wholewordsonly = label_find_wholewordsonly;
  38. label_replace_promptonreplace = '~P~rompt on replace';
  39. label_replace_direction = label_find_direction;
  40. label_replace_forward = label_find_forward;
  41. label_replace_backward = label_find_backward;
  42. label_replace_scope = label_find_scope;
  43. label_replace_global = label_find_global;
  44. label_replace_selectedtext = label_find_selectedtext;
  45. label_replace_origin = label_find_origin;
  46. label_replace_fromcursor = label_find_fromcursor;
  47. label_replace_entirescope = label_find_entirescope;
  48. btn_replace_changeall = 'Change ~a~ll';
  49. dialog_gotoline = 'Goto line';
  50. label_gotoline_linenumber = 'Enter new line ~n~umber';
  51. msg_invalidmarkindex = 'Invalid mark index (%d)';
  52. msg_marknotset = 'Mark %d not set.';
  53. msg_notenoughmemoryforthisoperation = 'Not enough memory for this operation.';
  54. msg_errorreadingfile = 'Error reading file %s.';
  55. msg_errorwritingfile = 'Error writing file %s.';
  56. msg_errorsavingfile = 'Error saving file %s.';
  57. msg_errorcreatingfile = 'Error creating file %s.';
  58. msg_filehasbeenmodifiedsave = '%s has been modified. Save?';
  59. msg_saveuntitledfile = 'Save untitled file?';
  60. msg_filehadtoolonglines = #3'File %s had too long lines'#13+
  61. #3'first such line is %d';
  62. msg_filewasmodified = #3'File %s '#13+
  63. #3'was modified by another program.'#13+
  64. #3'Overwrite new version?';
  65. dialog_savefileas = 'Save File As';
  66. dialog_writeblocktofile = 'Write Block to File';
  67. dialog_readblockfromfile = 'Read Block from File';
  68. label_name = '~N~ame';
  69. msg_searchstringnotfound = 'Search string not found.';
  70. msg_replacethisoccourence = 'Replace this occurence?';
  71. msg_fileexistsoverwrite = 'File %s already exists. Overwrite?';
  72. { Help system }
  73. msg_nohelpfilesinstalled = 'No help files installed.';
  74. msg_helpindex = 'Help index';
  75. msg_nohelpavailabelforthistopic = 'No help available for this topic.';
  76. msg_pagenotavailable = 'Page not available';
  77. msg_cantaccessurl = 'Sorry, can''t access the URL: %s ...';
  78. { WUtils }
  79. msg_bugcheckfailed = 'Bug check failed: %s'#13+
  80. 'Please report to author!';
  81. msg_functionnotimplemented = #3'This function is not'#13+
  82. #3+'yet implemented...'#13+
  83. #3+'Sorry';
  84. {
  85. $Log$
  86. Revision 1.1 2000-07-13 09:48:37 michael
  87. + Initial import
  88. Revision 1.1 2000/06/16 09:30:01 pierre
  89. * new files from Gabor
  90. }