lazarus-ccr/applications/khexeditor/res.pas
sekelsenmat e9ceae06ca Initial commit of khexeditor
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1773 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-08-02 08:35:53 +00:00

37 lines
1.0 KiB
ObjectPascal

unit Res;
interface
resourcestring
{main}
sAppName = 'Hex Editor';
sNeedSaveQuestion = 'File "%s" has been changed. Do you want to save it?';
sStatusDigit = 'Digit: %d';
sStatusPosDec = 'Pos: %d';
sStatusPosHex = 'Pos: %x';
sModified = 'Modified';
sOverwrite = 'Overwrite';
sInsert = 'Insert';
sNoname = 'new file';
sReplaceQuestion = 'Replace this occurence of "%s"?';
sReplace = '&Replace';
sReplaceAll = 'Replace &all';
sReplaceSkip = '&Skip';
sPrintedPageAndCopy = 'Printing page %d from %d. Actual copy: %d from %d.';
{printsetup}
sPSAllPages = 'All pages (%d)';
{errors}
sErrOpenError = 'Can''t open file "%s".';
sErrSaveError = 'Can''t save file "%s".';
sErrTextNotFound = 'The text "%s" was not found.';
sErrNoDigitsInText = 'The text "%s" can''t be interpreted as hexadecimal digits.';
sErrIntegerValue = 'Bad integer value.';
sErrIntegerValueOutOfRange = 'Integer value out of range %d to %d.';
sErrNoPrinterInstalled = 'No printer is installed on this computer.';
implementation
end.