wconstse.inc 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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_foldboundsarenotvalid = 'Fold bounds are not valid';
  54. msg_notenoughmemoryforthisoperation = 'Not enough memory for this operation.';
  55. msg_errorreadingfile = 'Error reading file %s.';
  56. msg_errorwritingfile = 'Error writing file %s.';
  57. msg_errorsavingfile = 'Error saving file %s.';
  58. msg_errorcreatingfile = 'Error creating file %s.';
  59. msg_filehasbeenmodifiedsave = '%s has been modified. Save?';
  60. msg_saveuntitledfile = 'Save untitled file?';
  61. msg_filehadtoolonglines = #3'File %s had too long lines'#13+
  62. #3'first such line is %d';
  63. msg_filewasmodified = #3'File %s '#13+
  64. #3'was modified by another program.'#13+
  65. #3'Overwrite new version?';
  66. dialog_savefileas = 'Save File As';
  67. dialog_writeblocktofile = 'Write Block to File';
  68. dialog_readblockfromfile = 'Read Block from File';
  69. label_name = '~N~ame';
  70. msg_searchstringnotfound = 'Search string not found.';
  71. msg_replacethisoccourence = 'Replace this occurence?';
  72. msg_fileexistsoverwrite = 'File %s already exists. Overwrite?';
  73. { Help system }
  74. msg_nohelpfilesinstalled = 'No help files installed.';
  75. msg_helpindex = 'Help index';
  76. msg_nohelpavailabelforthistopic = 'No help available for this topic.';
  77. msg_pagenotavailable = 'Page not available';
  78. msg_cantaccessurl = 'Sorry, can''t access the URL: %s ...';
  79. { WUtils }
  80. msg_bugcheckfailed = 'Bug check failed: %s'#13+
  81. 'Please report to author!';
  82. msg_functionnotimplemented = #3'This function is not'#13+
  83. #3+'yet implemented...'#13+
  84. #3+'Sorry';
  85. {
  86. $Log$
  87. Revision 1.2 2000-10-31 22:35:55 pierre
  88. * New big merge from fixes branch
  89. Revision 1.1.2.1 2000/09/18 13:20:55 pierre
  90. New bunch of Gabor changes
  91. Revision 1.1 2000/07/13 09:48:37 michael
  92. + Initial import
  93. Revision 1.1 2000/06/16 09:30:01 pierre
  94. * new files from Gabor
  95. }