mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 18:20:00 +02:00
IDE: Rename page "Other" to "Custom Options" in project options dialog. Easier to find.
git-svn-id: trunk@49719 -
This commit is contained in:
parent
647b02469b
commit
2f139b9be1
@ -1,30 +1,27 @@
|
||||
object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
Left = 0
|
||||
Height = 373
|
||||
Height = 407
|
||||
Top = 0
|
||||
Width = 521
|
||||
ClientHeight = 373
|
||||
ClientHeight = 407
|
||||
ClientWidth = 521
|
||||
TabOrder = 0
|
||||
DesignLeft = 444
|
||||
DesignTop = 275
|
||||
object grpConditionals: TGroupBox
|
||||
AnchorSideRight.Control = Owner
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 0
|
||||
Height = 166
|
||||
Top = 0
|
||||
Height = 194
|
||||
Top = 213
|
||||
Width = 521
|
||||
Align = alClient
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
Align = alBottom
|
||||
Caption = 'grpConditionals'
|
||||
ClientHeight = 150
|
||||
ClientHeight = 178
|
||||
ClientWidth = 519
|
||||
TabOrder = 0
|
||||
inline CondSynEdit: TSynEdit
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 0
|
||||
Height = 133
|
||||
Height = 161
|
||||
Top = 0
|
||||
Width = 519
|
||||
Align = alClient
|
||||
@ -655,7 +652,7 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
object CondStatusbar: TStatusBar
|
||||
Left = 0
|
||||
Height = 17
|
||||
Top = 133
|
||||
Top = 161
|
||||
Width = 519
|
||||
Panels = <
|
||||
item
|
||||
@ -674,20 +671,19 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
Cursor = crVSplit
|
||||
Left = 0
|
||||
Height = 5
|
||||
Top = 166
|
||||
Top = 208
|
||||
Width = 521
|
||||
Align = alBottom
|
||||
ResizeAnchor = akBottom
|
||||
end
|
||||
object grpCustomOptions: TGroupBox
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 0
|
||||
Height = 202
|
||||
Top = 171
|
||||
Height = 208
|
||||
Top = 0
|
||||
Width = 521
|
||||
Align = alBottom
|
||||
Align = alClient
|
||||
Caption = 'grpCustomOptions'
|
||||
ClientHeight = 186
|
||||
ClientHeight = 192
|
||||
ClientWidth = 519
|
||||
TabOrder = 2
|
||||
object memoCustomOptions: TMemo
|
||||
@ -695,7 +691,7 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
AnchorSideBottom.Control = grpCustomOptions
|
||||
AnchorSideBottom.Side = asrBottom
|
||||
Left = 0
|
||||
Height = 182
|
||||
Height = 188
|
||||
Top = 4
|
||||
Width = 363
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
@ -712,7 +708,7 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
AnchorSideRight.Control = btnDefines
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 369
|
||||
Height = 27
|
||||
Height = 23
|
||||
Top = 4
|
||||
Width = 150
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
@ -727,8 +723,8 @@ object CompilerOtherOptionsFrame: TCompilerOtherOptionsFrame
|
||||
AnchorSideTop.Side = asrBottom
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 369
|
||||
Height = 27
|
||||
Top = 37
|
||||
Height = 23
|
||||
Top = 33
|
||||
Width = 150
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
AutoSize = True
|
||||
|
@ -712,7 +712,7 @@ end;
|
||||
|
||||
function TCompilerOtherOptionsFrame.GetTitle: string;
|
||||
begin
|
||||
Result := dlgCOOther;
|
||||
Result := lisCustomOptions3;
|
||||
end;
|
||||
|
||||
procedure TCompilerOtherOptionsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
||||
|
@ -2136,7 +2136,6 @@ resourcestring
|
||||
dlgCOCfgCmpMessages = 'Messages';
|
||||
lisChooseAnFPCMessageFile = 'Choose an FPC message file';
|
||||
lisChooseAFileWithCodeToolsTemplates = 'Choose a file with CodeTools templates';
|
||||
dlgCOOther = 'Other';
|
||||
dlgCOCompilerCommands = 'Compiler Commands';
|
||||
lisUnitOutputDirectory = 'Unit Output directory';
|
||||
lisSelectANode = 'Select a node';
|
||||
@ -2227,6 +2226,7 @@ resourcestring
|
||||
lisShowOnlyModified = 'Show only modified';
|
||||
lisUseCommentsInCustomOptions = 'Use comments in custom options';
|
||||
lisCustomOptions2 = 'Custom options';
|
||||
lisCustomOptions3 = 'Custom Options';
|
||||
lisCustomOptHint = 'These options are passed to the compiler after macros are replaced.';
|
||||
dlgStopAfterNrErr = 'Stop after number of errors:';
|
||||
|
||||
@ -2367,8 +2367,7 @@ resourcestring
|
||||
+'does not look correct:%s%s';
|
||||
lisTheLazarusDirectoryDoesNotLookCorrect = 'The Lazarus directory "%s" does '
|
||||
+'not look correct:%s%s';
|
||||
lisTheContainsANotExistingDirectory = 'The %s contains a nonexistent '
|
||||
+'directory:%s%s';
|
||||
lisTheContainsANotExistingDirectory = 'The %s contains a nonexistent directory:%s%s';
|
||||
lisTheProjectDoesNotUseTheLCLUnitInterfacesButItSeems = 'The project does '
|
||||
+'not use the LCL unit interfaces, which is required by LCLBase.%sYou will '
|
||||
+'get strange linker errors if you use the LCL without interfaces.';
|
||||
|
Loading…
Reference in New Issue
Block a user