mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-01 22:00:20 +02:00
JCF2: localized Uses tab
git-svn-id: trunk@24452 -
This commit is contained in:
parent
8b24486ec9
commit
10fb108607
@ -235,6 +235,13 @@ resourcestring
|
||||
lisFindReplaceEnableFindAndReplace = 'Enable find and replace';
|
||||
lisFindReplaceWordList = 'Word list:';
|
||||
|
||||
//Uses tab
|
||||
lisUsesUses = 'Uses';
|
||||
lisUsesRemove = 'Remove';
|
||||
lisUsesInsertIntoInterface = 'Insert into Interface';
|
||||
lisUsesInsertIntoImplementation = 'Insert into Implementation';
|
||||
lisUsesReplace = 'Replace';
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -68,7 +68,7 @@ implementation
|
||||
{$R *.lfm}
|
||||
|
||||
uses
|
||||
JcfHelp, JcfSettings;
|
||||
JcfHelp, JcfSettings, jcfuiconsts;
|
||||
|
||||
constructor TfUses.Create(AOwner: TComponent);
|
||||
begin
|
||||
@ -78,12 +78,15 @@ end;
|
||||
|
||||
function TfUses.GetTitle: String;
|
||||
begin
|
||||
Result := 'Uses';
|
||||
Result := lisUsesUses;
|
||||
end;
|
||||
|
||||
procedure TfUses.Setup(ADialog: TAbstractOptionsEditorDialog);
|
||||
begin
|
||||
//
|
||||
cbRemoveEnabled.Caption := lisUsesRemove;
|
||||
cbInsertInterface.Caption := lisUsesInsertIntoInterface;
|
||||
cbInsertImplementation.Caption := lisUsesInsertIntoImplementation;
|
||||
cbFindReplace.Caption := lisUsesReplace;
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user