mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 22:19:18 +02:00
IDE: fixed/cleaned up embedded designer resource strings
git-svn-id: trunk@62736 -
This commit is contained in:
parent
e640958255
commit
c9b78527e8
@ -6,14 +6,15 @@ object IDEEmbeddedDesignerSettingsFrame: TIDEEmbeddedDesignerSettingsFrame
|
|||||||
ClientHeight = 443
|
ClientHeight = 443
|
||||||
ClientWidth = 435
|
ClientWidth = 435
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
DesignLeft = 324
|
DesignLeft = 261
|
||||||
DesignTop = 144
|
DesignTop = 191
|
||||||
object ButtonSetDafault: TButton
|
object ButtonSetDafault: TButton
|
||||||
Left = 10
|
Left = 10
|
||||||
Height = 25
|
Height = 25
|
||||||
Hint = 'Set Default'
|
Hint = 'Set Default'
|
||||||
Top = 240
|
Top = 240
|
||||||
Width = 126
|
Width = 111
|
||||||
|
AutoSize = True
|
||||||
Caption = 'Restore Defaults'
|
Caption = 'Restore Defaults'
|
||||||
OnClick = ButtonSetDafaultClick
|
OnClick = ButtonSetDafaultClick
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
|
@ -87,13 +87,13 @@ end;
|
|||||||
|
|
||||||
procedure TIDEEmbeddedDesignerSettingsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
procedure TIDEEmbeddedDesignerSettingsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
|
||||||
begin
|
begin
|
||||||
UseEmbeddedDesignerCheckBox.Caption := lisEmbDsgn_UseEmbeddedDesign;
|
UseEmbeddedDesignerCheckBox.Caption := lisEmbDsgn_EnableEmbeddedDesigner;
|
||||||
grOptions.Caption := lisEmbDsgn_Options;
|
grOptions.Caption := lisEmbDsgn_Options;
|
||||||
UseEmbeddedScreenPreviewCheckBox.Caption := lisEmbDsgn_UseScreenPreview;
|
UseEmbeddedScreenPreviewCheckBox.Caption := lisEmbDsgn_ShowScreenPreview;
|
||||||
UseDesignerBackColorText.Caption := lisEmbDsgn_BackColor;
|
UseDesignerBackColorText.Caption := lisEmbDsgn_BackColor;
|
||||||
UseSreenPreviewBackColorText.Caption := lisEmbDsgn_SreenPreviewBackColor;
|
UseSreenPreviewBackColorText.Caption := lisEmbDsgn_SreenPreviewBackColor;
|
||||||
UseInfopanelColorCheckText.Caption := lisEmbDsgn_InfopanelColor;
|
UseInfopanelColorCheckText.Caption := lisEmbDsgn_InfopanelColor;
|
||||||
ButtonSetDafault.Caption := lisEmbDsgn_SetDafault;
|
ButtonSetDafault.Caption := lisEmbDsgn_SetDefault;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TIDEEmbeddedDesignerSettingsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
|
procedure TIDEEmbeddedDesignerSettingsFrame.ReadSettings(AOptions: TAbstractIDEOptions);
|
||||||
@ -123,7 +123,7 @@ begin
|
|||||||
if Assigned(SourceEditorManagerIntf) then
|
if Assigned(SourceEditorManagerIntf) then
|
||||||
SourceEditorManagerIntf.UpdateEmbedFormDsgSettings;
|
SourceEditorManagerIntf.UpdateEmbedFormDsgSettings;
|
||||||
if FOldUseEmbeddedDesigner <> (AOptions as TEnvironmentOptions).UseEmbeddedDesigner then
|
if FOldUseEmbeddedDesigner <> (AOptions as TEnvironmentOptions).UseEmbeddedDesigner then
|
||||||
IDEMessageDialog(lisEmbDsgn_RestartIDECaption, lisEmbDsgn_RestartIDEText, mtInformation, [mbOk]);
|
IDEMessageDialog(lisInformation, lisEmbDsgn_RestartIDEText, mtInformation, [mbOk]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TIDEEmbeddedDesignerSettingsFrame.EnableDisableControls(
|
procedure TIDEEmbeddedDesignerSettingsFrame.EnableDisableControls(
|
||||||
|
@ -4950,14 +4950,13 @@ resourcestring
|
|||||||
//embedded designer
|
//embedded designer
|
||||||
lisEmbDsgn_Title = 'Embedded Designer';
|
lisEmbDsgn_Title = 'Embedded Designer';
|
||||||
lisEmbDsgn_Options = 'Options';
|
lisEmbDsgn_Options = 'Options';
|
||||||
lisEmbDsgn_UseEmbeddedDesign = 'Enable embedded design';
|
lisEmbDsgn_EnableEmbeddedDesigner = 'Enable embedded designer';
|
||||||
lisEmbDsgn_UseScreenPreview = 'Use/View Screen Preview';
|
lisEmbDsgn_ShowScreenPreview = 'Show screen preview';
|
||||||
lisEmbDsgn_BackColor = 'Designer Back Color';
|
lisEmbDsgn_BackColor = 'Designer Back Color';
|
||||||
lisEmbDsgn_SreenPreviewBackColor = 'Screen Preview Back Color';
|
lisEmbDsgn_SreenPreviewBackColor = 'Screen Preview Back Color';
|
||||||
lisEmbDsgn_InfopanelColor = 'Info Panel Color';
|
lisEmbDsgn_InfopanelColor = 'Info Panel Color';
|
||||||
lisEmbDsgn_SetDafault = 'Restore Defaults';
|
lisEmbDsgn_SetDefault = 'Restore Defaults';
|
||||||
lisEmbDsgn_RestartIDECaption = 'Information';
|
lisEmbDsgn_RestartIDEText = 'In order for the changes to take effect, please restart the IDE.';
|
||||||
lisEmbDsgn_RestartIDEText = 'In order for the chagnes to take effect, please restart the IDE.';
|
|
||||||
|
|
||||||
// Editor Toolbar
|
// Editor Toolbar
|
||||||
lisEditorToolbar = 'Editor ToolBar';
|
lisEditorToolbar = 'Editor ToolBar';
|
||||||
|
Loading…
Reference in New Issue
Block a user