JCF2: localized Identifiers Capitalisation tab

git-svn-id: trunk@24400 -
This commit is contained in:
maxim 2010-04-04 14:57:37 +00:00
parent d322ee0a2c
commit 8e8dfc3b3c
2 changed files with 9 additions and 3 deletions

View File

@ -215,6 +215,11 @@ resourcestring
lisCapsAnyWordSetCapitalisationOnTheseWords = 'Set capitalisation on these ' lisCapsAnyWordSetCapitalisationOnTheseWords = 'Set capitalisation on these '
+'words:'; +'words:';
//Identifiers Capitalisation tab
lisCapsIdentifiersIdentifiers = 'Identifiers';
lisCapsIdentifiersSetCapitalisationOnTheseIdentifiers = 'Set capitalisation '
+'on these identifiers:';
implementation implementation
end. end.

View File

@ -59,7 +59,7 @@ implementation
{$R *.lfm} {$R *.lfm}
uses uses
JcfHelp, JcfSettings; JcfHelp, JcfSettings, jcfuiconsts;
constructor TfIdentifierCapsSettings.Create(AOwner: TComponent); constructor TfIdentifierCapsSettings.Create(AOwner: TComponent);
begin begin
@ -69,12 +69,13 @@ end;
function TfIdentifierCapsSettings.GetTitle: String; function TfIdentifierCapsSettings.GetTitle: String;
begin begin
Result := 'Identifiers'; Result := lisCapsIdentifiersIdentifiers;
end; end;
procedure TfIdentifierCapsSettings.Setup(ADialog: TAbstractOptionsEditorDialog); procedure TfIdentifierCapsSettings.Setup(ADialog: TAbstractOptionsEditorDialog);
begin begin
// cbEnableAnyWords.Caption := lisCapsAnyWordEnable;
Label1.Caption := lisCapsIdentifiersSetCapitalisationOnTheseIdentifiers;
end; end;