mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-30 16:03:40 +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';
|
||||
lisCapsTypes = 'Types';
|
||||
|
||||
//Any Word Capitalisation tab
|
||||
lisCapsAnyWordAnyWord = 'Any Word';
|
||||
lisCapsAnyWordEnable = 'Enable';
|
||||
lisCapsAnyWordSetCapitalisationOnTheseWords = 'Set capitalisation on these '
|
||||
+'words:';
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -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;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user