mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 04:16:06 +02:00
IDE Caption text for groupbox in Other Options frame.
git-svn-id: trunk@42076 -
This commit is contained in:
parent
9e7a4be0ab
commit
31c891f4be
@ -31,14 +31,14 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
TabOrder = 0
|
||||
end
|
||||
end
|
||||
object ConditionalsGroupBox: TGroupBox
|
||||
object grpConditionals: TGroupBox
|
||||
Left = 0
|
||||
Height = 206
|
||||
Top = 240
|
||||
Width = 594
|
||||
Align = alBottom
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Caption = 'ConditionalsGroupBox'
|
||||
Caption = 'grpConditionals'
|
||||
ClientHeight = 187
|
||||
ClientWidth = 590
|
||||
TabOrder = 1
|
||||
@ -717,13 +717,13 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
Align = alBottom
|
||||
ResizeAnchor = akBottom
|
||||
end
|
||||
object AllOptionsGroupBox: TGroupBox
|
||||
object grpAllOptions: TGroupBox
|
||||
Left = 0
|
||||
Height = 147
|
||||
Top = 0
|
||||
Width = 594
|
||||
Align = alClient
|
||||
Caption = 'AllOptionsGroupBox'
|
||||
Caption = 'grpAllOptions'
|
||||
ClientHeight = 128
|
||||
ClientWidth = 590
|
||||
TabOrder = 4
|
||||
|
@ -41,11 +41,11 @@ type
|
||||
TCompilerOtherOptionsFrame = class(TAbstractIDEOptionsEditor)
|
||||
btnGetAll: TButton;
|
||||
ConditionalsSplitter: TSplitter;
|
||||
AllOptionsGroupBox: TGroupBox;
|
||||
grpAllOptions: TGroupBox;
|
||||
grpCustomOptions: TGroupBox;
|
||||
lblStatus: TLabel;
|
||||
memCustomOptions: TMemo;
|
||||
ConditionalsGroupBox: TGroupBox;
|
||||
grpConditionals: TGroupBox;
|
||||
CondStatusbar: TStatusBar;
|
||||
CondSynEdit: TSynEdit;
|
||||
CustomSplitter: TSplitter;
|
||||
@ -745,8 +745,6 @@ begin
|
||||
fDefaultVariables:=TCTCfgScriptVariables.Create;
|
||||
fEngine:=TIDECfgScriptEngine.Create;
|
||||
|
||||
ConditionalsGroupBox.Caption:=lisConditionals;
|
||||
|
||||
CondSynEdit.OnStatusChange:=@CondSynEditStatusChange;
|
||||
|
||||
fSynCompletion:=TSynCompletion.Create(Self);
|
||||
@ -785,8 +783,10 @@ end;
|
||||
|
||||
procedure TCompilerOtherOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
||||
begin
|
||||
grpAllOptions.Caption := lisAllOptions;
|
||||
grpCustomOptions.Caption := lisCustomOptions2;
|
||||
memCustomOptions.Hint := lisCustomOptHint;
|
||||
grpConditionals.Caption := lisConditionals;
|
||||
end;
|
||||
|
||||
procedure TCompilerOtherOptionsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
|
||||
|
@ -2093,6 +2093,7 @@ resourcestring
|
||||
dlgConfigFiles = 'Config files';
|
||||
dlgUseFpcCfg = 'Use standard compiler config file (fpc.cfg)';
|
||||
dlgUseCustomConfig = 'Use additional compiler config file';
|
||||
lisAllOptions = 'All Options';
|
||||
lisCustomOptions2 = 'Custom options';
|
||||
lisCustomOptHint = 'These options are passed directly to the compiler. Macros ' +
|
||||
'are replaced, line breaks are replaced with single spaces.';
|
||||
|
Loading…
Reference in New Issue
Block a user