JCF2: localized Any Word Capitalisation tab

git-svn-id: trunk@24398 -
This commit is contained in:
maxim 2010-04-04 14:48:10 +00:00
parent d69055d322
commit f043c539c7
2 changed files with 10 additions and 2 deletions

View File

@ -209,6 +209,12 @@ resourcestring
lisCapsConstants = 'Constants';
lisCapsTypes = 'Types';
//Any Word Capitalisation tab
lisCapsAnyWordAnyWord = 'Any Word';
lisCapsAnyWordEnable = 'Enable';
lisCapsAnyWordSetCapitalisationOnTheseWords = 'Set capitalisation on these '
+'words:';
implementation
end.

View File

@ -60,7 +60,7 @@ implementation
{$R *.lfm}
uses
JcfHelp, JcfSettings;
JcfHelp, JcfSettings, jcfuiconsts;
constructor TfrAnyCapsSettings.Create(AOwner: TComponent);
begin
@ -70,12 +70,14 @@ end;
function TfrAnyCapsSettings.GetTitle: String;
begin
Result := 'Any Word';
Result := lisCapsAnyWordAnyWord;
end;
procedure TfrAnyCapsSettings.Setup(ADialog: TAbstractOptionsEditorDialog);
begin
inherited Setup(ADialog);
cbEnableAnyWords.Caption := lisCapsAnyWordEnable;
Label1.Caption := lisCapsAnyWordSetCapitalisationOnTheseWords;
end;