mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-01 01:25:19 +02:00
JCF2: localized Any Word Capitalisation tab
git-svn-id: trunk@24398 -
This commit is contained in:
parent
d69055d322
commit
f043c539c7
@ -209,6 +209,12 @@ resourcestring
|
|||||||
lisCapsConstants = 'Constants';
|
lisCapsConstants = 'Constants';
|
||||||
lisCapsTypes = 'Types';
|
lisCapsTypes = 'Types';
|
||||||
|
|
||||||
|
//Any Word Capitalisation tab
|
||||||
|
lisCapsAnyWordAnyWord = 'Any Word';
|
||||||
|
lisCapsAnyWordEnable = 'Enable';
|
||||||
|
lisCapsAnyWordSetCapitalisationOnTheseWords = 'Set capitalisation on these '
|
||||||
|
+'words:';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
@ -60,7 +60,7 @@ implementation
|
|||||||
{$R *.lfm}
|
{$R *.lfm}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
JcfHelp, JcfSettings;
|
JcfHelp, JcfSettings, jcfuiconsts;
|
||||||
|
|
||||||
constructor TfrAnyCapsSettings.Create(AOwner: TComponent);
|
constructor TfrAnyCapsSettings.Create(AOwner: TComponent);
|
||||||
begin
|
begin
|
||||||
@ -70,12 +70,14 @@ end;
|
|||||||
|
|
||||||
function TfrAnyCapsSettings.GetTitle: String;
|
function TfrAnyCapsSettings.GetTitle: String;
|
||||||
begin
|
begin
|
||||||
Result := 'Any Word';
|
Result := lisCapsAnyWordAnyWord;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TfrAnyCapsSettings.Setup(ADialog: TAbstractOptionsEditorDialog);
|
procedure TfrAnyCapsSettings.Setup(ADialog: TAbstractOptionsEditorDialog);
|
||||||
begin
|
begin
|
||||||
inherited Setup(ADialog);
|
inherited Setup(ADialog);
|
||||||
|
cbEnableAnyWords.Caption := lisCapsAnyWordEnable;
|
||||||
|
Label1.Caption := lisCapsAnyWordSetCapitalisationOnTheseWords;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user