Debugger, Registers dialog: improved localization

git-svn-id: trunk@30450 -
This commit is contained in:
maxim 2011-04-24 13:34:14 +00:00
parent ab98f55da4
commit 58f490704b
2 changed files with 6 additions and 2 deletions

View File

@ -110,9 +110,9 @@ begin
ToolButtonDispType.Hint := regdlgDisplayTypeForSelectedRegisters;
DispDefault.Caption := dlgPasStringKeywordsOptDefault;
DispHex.Caption := regdlgHex;
DispBin.Caption := lisPkgFileTypeBinary;
DispBin.Caption := regdlgBinary;
DispOct.Caption := regdlgOctal;
DispDec.Caption := lisDecimal;
DispDec.Caption := regdlgDecimal;
DispRaw.Caption := regdlgRaw;
DispDefault.Tag := ord(rdDefault);

View File

@ -5261,9 +5261,13 @@ resourcestring
lisDebuggerFeedbackLess = 'Less';
lisDebuggerFeedbackMore = 'More';
lisDebuggerFeedbackOk = 'Ok';
//Registers dialog
regdlgDisplayTypeForSelectedRegisters = 'Display type for selected Registers';
regdlgHex = 'Hex';
regdlgDecimal = 'Decimal';
regdlgOctal = 'Octal';
regdlgBinary = 'Binary';
regdlgRaw = 'Raw';
implementation