mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-24 15:16:01 +02:00
IDE: Unite duplicate (single word) resourcestrings and name them consistently.
git-svn-id: trunk@35486 -
This commit is contained in:
parent
55e336c787
commit
a0fb17b27e
@ -107,9 +107,9 @@ begin
|
|||||||
FileFilterLabel.Caption:=lisFilter;
|
FileFilterLabel.Caption:=lisFilter;
|
||||||
RegExprCheckBox.Caption:=lisRegularExpression;
|
RegExprCheckBox.Caption:=lisRegularExpression;
|
||||||
|
|
||||||
CloseButton.Caption:=lisMenuClose;
|
CloseButton.Caption:=lisClose;
|
||||||
ApplyButton.Caption:=lisConvert;
|
ApplyButton.Caption:=lisConvert;
|
||||||
HelpButton.Caption:=dlgGroupHelp;
|
HelpButton.Caption:=lisHelp;
|
||||||
CloseButton.LoadGlyphFromLazarusResource('btn_close');
|
CloseButton.LoadGlyphFromLazarusResource('btn_close');
|
||||||
ApplyButton.LoadGlyphFromLazarusResource('btn_ok');
|
ApplyButton.LoadGlyphFromLazarusResource('btn_ok');
|
||||||
HelpButton.LoadGlyphFromLazarusResource('btn_help');
|
HelpButton.LoadGlyphFromLazarusResource('btn_help');
|
||||||
|
@ -720,8 +720,8 @@ begin
|
|||||||
FuncReplaceButton.Caption:=lisEdit;
|
FuncReplaceButton.Caption:=lisEdit;
|
||||||
FuncReplaceDivider.Hint:=lisConvFuncReplHint;
|
FuncReplaceDivider.Hint:=lisConvFuncReplHint;
|
||||||
FuncReplaceButton.Hint:=lisConvFuncReplHint;
|
FuncReplaceButton.Hint:=lisConvFuncReplHint;
|
||||||
FuncReplaceComboBox.Items.Add(lisDisabled); // 'Disabled'
|
FuncReplaceComboBox.Items.Add(lisDisabled);
|
||||||
FuncReplaceComboBox.Items.Add(lisEnabled); // 'Enabled'
|
FuncReplaceComboBox.Items.Add(lisEnabled);
|
||||||
// Coordinate Offsets
|
// Coordinate Offsets
|
||||||
CoordOffsDivider.Caption:=lisConvCoordOffs;
|
CoordOffsDivider.Caption:=lisConvCoordOffs;
|
||||||
CoordOffsButton.Caption:=lisEdit;
|
CoordOffsButton.Caption:=lisEdit;
|
||||||
|
@ -337,19 +337,19 @@ begin
|
|||||||
actDisableSelected.Hint := lisDbgItemDisableHint;
|
actDisableSelected.Hint := lisDbgItemDisableHint;
|
||||||
actDisableSelected.ImageIndex := IDEImages.LoadImage(16, 'debugger_disable');
|
actDisableSelected.ImageIndex := IDEImages.LoadImage(16, 'debugger_disable');
|
||||||
|
|
||||||
actDeleteSelected.Caption := liswlDelete; //lisDbgItemDelete;
|
actDeleteSelected.Caption := lisBtnDelete;
|
||||||
actDeleteSelected.Hint := lisDbgItemDeleteHint;
|
actDeleteSelected.Hint := lisDbgItemDeleteHint;
|
||||||
actDeleteSelected.ImageIndex := IDEImages.LoadImage(16, 'laz_delete');
|
actDeleteSelected.ImageIndex := IDEImages.LoadImage(16, 'laz_delete');
|
||||||
|
|
||||||
actEnableAll.Caption := lisEnableAll; //lisDbgAllItemEnable;
|
actEnableAll.Caption := lisEnableAll;
|
||||||
actEnableAll.Hint := lisDbgAllItemEnableHint;
|
actEnableAll.Hint := lisDbgAllItemEnableHint;
|
||||||
actEnableAll.ImageIndex := IDEImages.LoadImage(16, 'debugger_enable_all');
|
actEnableAll.ImageIndex := IDEImages.LoadImage(16, 'debugger_enable_all');
|
||||||
|
|
||||||
actDisableAll.Caption := liswlDIsableAll; //lisDbgAllItemDisable;
|
actDisableAll.Caption := liswlDIsableAll;
|
||||||
actDisableAll.Hint := lisDbgAllItemDisableHint;
|
actDisableAll.Hint := lisDbgAllItemDisableHint;
|
||||||
actDisableAll.ImageIndex := IDEImages.LoadImage(16, 'debugger_disable_all');
|
actDisableAll.ImageIndex := IDEImages.LoadImage(16, 'debugger_disable_all');
|
||||||
|
|
||||||
actDeleteAll.Caption := lisDeleteAll; //lisDbgAllItemDelete;
|
actDeleteAll.Caption := lisDeleteAll;
|
||||||
actDeleteAll.Hint := lisDbgAllItemDeleteHint;
|
actDeleteAll.Hint := lisDbgAllItemDeleteHint;
|
||||||
actDeleteAll.ImageIndex := IDEImages.LoadImage(16, 'menu_clean');
|
actDeleteAll.ImageIndex := IDEImages.LoadImage(16, 'menu_clean');
|
||||||
|
|
||||||
@ -357,7 +357,7 @@ begin
|
|||||||
actProperties.Hint := lisDbgBreakpointPropertiesHint;
|
actProperties.Hint := lisDbgBreakpointPropertiesHint;
|
||||||
actProperties.ImageIndex := IDEImages.LoadImage(16, 'menu_environment_options');
|
actProperties.ImageIndex := IDEImages.LoadImage(16, 'menu_environment_options');
|
||||||
|
|
||||||
actToggleCurrentEnable.Caption:= liswlEnabled;
|
actToggleCurrentEnable.Caption:= lisBtnEnabled;
|
||||||
|
|
||||||
actEnableAllInSrc.Caption:= lisEnableAllInSameSource;
|
actEnableAllInSrc.Caption:= lisEnableAllInSameSource;
|
||||||
actDisableAllInSrc.Caption:= lisDisableAllInSameSource;
|
actDisableAllInSrc.Caption:= lisDisableAllInSameSource;
|
||||||
|
@ -192,10 +192,10 @@ begin
|
|||||||
actPower.Caption := lisDbgWinPower;
|
actPower.Caption := lisDbgWinPower;
|
||||||
actPower.Hint := lisDbgWinPowerHint;
|
actPower.Hint := lisDbgWinPowerHint;
|
||||||
|
|
||||||
actAddWatch.Caption:=liswlAdd;
|
actAddWatch.Caption:=lisBtnAdd;
|
||||||
actAddWatch.ImageIndex := IDEImages.LoadImage(16, 'laz_add');
|
actAddWatch.ImageIndex := IDEImages.LoadImage(16, 'laz_add');
|
||||||
|
|
||||||
actToggleCurrentEnable.Caption := liswlEnabled;
|
actToggleCurrentEnable.Caption := lisBtnEnabled;
|
||||||
|
|
||||||
actEnableSelected.Caption := lisDbgItemEnable;
|
actEnableSelected.Caption := lisDbgItemEnable;
|
||||||
actEnableSelected.Hint := lisDbgItemEnableHint;
|
actEnableSelected.Hint := lisDbgItemEnableHint;
|
||||||
@ -205,7 +205,7 @@ begin
|
|||||||
actDisableSelected.Hint := lisDbgItemDisableHint;
|
actDisableSelected.Hint := lisDbgItemDisableHint;
|
||||||
actDisableSelected.ImageIndex := IDEImages.LoadImage(16, 'debugger_disable');
|
actDisableSelected.ImageIndex := IDEImages.LoadImage(16, 'debugger_disable');
|
||||||
|
|
||||||
actDeleteSelected.Caption := liswlDelete; //lisDbgItemDelete;
|
actDeleteSelected.Caption := lisBtnDelete;
|
||||||
actDeleteSelected.Hint := lisDbgItemDeleteHint;
|
actDeleteSelected.Hint := lisDbgItemDeleteHint;
|
||||||
actDeleteSelected.ImageIndex := IDEImages.LoadImage(16, 'laz_delete');
|
actDeleteSelected.ImageIndex := IDEImages.LoadImage(16, 'laz_delete');
|
||||||
|
|
||||||
|
@ -998,14 +998,14 @@ begin
|
|||||||
case TemplateMenuForm.GetSelectedMenuTemplate of
|
case TemplateMenuForm.GetSelectedMenuTemplate of
|
||||||
1: Begin
|
1: Begin
|
||||||
// Change a caption of selected designermenuitem fo "File"
|
// Change a caption of selected designermenuitem fo "File"
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateFile);
|
ChangeCaption (temp_designermenuitem, lisFile);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add an submenu with first item and set it's caption to "New"
|
// Add an submenu with first item and set it's caption to "New"
|
||||||
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
||||||
AddSubMenuClick(self);
|
AddSubMenuClick(self);
|
||||||
temp_designermenuitem:=temp_designermenuitem.SubMenu;
|
temp_designermenuitem:=temp_designermenuitem.SubMenu;
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateNew);
|
ChangeCaption (temp_designermenuitem, lisNew);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add new separator
|
// Add new separator
|
||||||
@ -1019,7 +1019,7 @@ begin
|
|||||||
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
||||||
AddNewItemAfterClick(self);
|
AddNewItemAfterClick(self);
|
||||||
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateOpen);
|
ChangeCaption (temp_designermenuitem, lisOpen);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add new item and set it's caption to "Open Recent"
|
// Add new item and set it's caption to "Open Recent"
|
||||||
@ -1033,21 +1033,21 @@ begin
|
|||||||
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
||||||
AddNewItemAfterClick(self);
|
AddNewItemAfterClick(self);
|
||||||
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateSave);
|
ChangeCaption (temp_designermenuitem, lisSave);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add new item and set it's caption to "Save As"
|
// Add new item and set it's caption to "Save As"
|
||||||
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
||||||
AddNewItemAfterClick(self);
|
AddNewItemAfterClick(self);
|
||||||
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateSaveAs);
|
ChangeCaption (temp_designermenuitem, lisSaveAs);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add new item and set it's caption to "Close"
|
// Add new item and set it's caption to "Close"
|
||||||
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
||||||
AddNewItemAfterClick(self);
|
AddNewItemAfterClick(self);
|
||||||
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateClose);
|
ChangeCaption (temp_designermenuitem, lisClose);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add new separator
|
// Add new separator
|
||||||
@ -1061,7 +1061,7 @@ begin
|
|||||||
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
SelectedDesignerMenuItem:=temp_designermenuitem.ID;
|
||||||
AddNewItemAfterClick(self);
|
AddNewItemAfterClick(self);
|
||||||
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
temp_designermenuitem:=temp_designermenuitem.NextItem;
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateExit);
|
ChangeCaption (temp_designermenuitem, lisExit);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
end;
|
end;
|
||||||
2: begin
|
2: begin
|
||||||
@ -1134,7 +1134,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
3: begin
|
3: begin
|
||||||
// Change a caption of selected designermenuitem fo "Help"
|
// Change a caption of selected designermenuitem fo "Help"
|
||||||
ChangeCaption (temp_designermenuitem, lisMenuTemplateHelp);
|
ChangeCaption (temp_designermenuitem, lisHelp);
|
||||||
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
UpdateMenu(fMenu.Items, temp_designermenuitem, 1, 6);
|
||||||
|
|
||||||
// Add an submenu with first item and set it's caption to "Contents"
|
// Add an submenu with first item and set it's caption to "Contents"
|
||||||
@ -2117,16 +2117,16 @@ begin
|
|||||||
begin
|
begin
|
||||||
case default_template of
|
case default_template of
|
||||||
1: begin
|
1: begin
|
||||||
ListBoxView.Items.Add(lisMenuTemplateFile);
|
ListBoxView.Items.Add(lisFile);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateNew);
|
ListBoxView.Items.Add(' ' + lisNew);
|
||||||
ListBoxView.Items.Add(' -');
|
ListBoxView.Items.Add(' -');
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateOpen);
|
ListBoxView.Items.Add(' ' + lisOpen);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateOpenRecent);
|
ListBoxView.Items.Add(' ' + lisMenuTemplateOpenRecent);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateSave);
|
ListBoxView.Items.Add(' ' + lisSave);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateSaveAs);
|
ListBoxView.Items.Add(' ' + lisSaveAs);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateClose);
|
ListBoxView.Items.Add(' ' + lisClose);
|
||||||
ListBoxView.Items.Add(' -');
|
ListBoxView.Items.Add(' -');
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateExit);
|
ListBoxView.Items.Add(' ' + lisExit);
|
||||||
end;
|
end;
|
||||||
2: begin
|
2: begin
|
||||||
ListBoxView.Items.Add(lisEdit);
|
ListBoxView.Items.Add(lisEdit);
|
||||||
@ -2141,7 +2141,7 @@ begin
|
|||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateFindNext);
|
ListBoxView.Items.Add(' ' + lisMenuTemplateFindNext);
|
||||||
end;
|
end;
|
||||||
3: begin
|
3: begin
|
||||||
ListBoxView.Items.Add(lisMenuTemplateHelp);
|
ListBoxView.Items.Add(lisHelp);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateContents);
|
ListBoxView.Items.Add(' ' + lisMenuTemplateContents);
|
||||||
ListBoxView.Items.Add(' ' + lisMenuTemplateTutorial);
|
ListBoxView.Items.Add(' ' + lisMenuTemplateTutorial);
|
||||||
ListBoxView.Items.Add(' -');
|
ListBoxView.Items.Add(' -');
|
||||||
|
@ -189,7 +189,7 @@ begin
|
|||||||
|
|
||||||
LoadContributors;
|
LoadContributors;
|
||||||
LoadAcknowledgements;
|
LoadAcknowledgements;
|
||||||
CloseButton.Caption:=lisClose;
|
CloseButton.Caption:=lisBtnClose;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TAboutForm.FormClose(Sender: TObject; var CloseAction: TCloseAction);
|
procedure TAboutForm.FormClose(Sender: TObject; var CloseAction: TCloseAction);
|
||||||
|
@ -85,7 +85,7 @@ begin
|
|||||||
|
|
||||||
ModeLabel.Caption:=lisBuildModeDiffMode;
|
ModeLabel.Caption:=lisBuildModeDiffMode;
|
||||||
DiffsGroupBox.Caption:=lisBuildModeDiffDifferencesToOtherBuildModes;
|
DiffsGroupBox.Caption:=lisBuildModeDiffDifferencesToOtherBuildModes;
|
||||||
ButtonPanel.CloseButton.Caption:=lisClose;
|
ButtonPanel.CloseButton.Caption:=lisBtnClose;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TBuildModeDiffDialog.ModeComboBoxChange(Sender: TObject);
|
procedure TBuildModeDiffDialog.ModeComboBoxChange(Sender: TObject);
|
||||||
|
@ -101,7 +101,7 @@ procedure TCharacterMapDialog.FormCreate(Sender: TObject);
|
|||||||
begin
|
begin
|
||||||
Caption := lisCharacterMap;
|
Caption := lisCharacterMap;
|
||||||
ButtonPanel.HelpButton.Caption:=lisMenuHelp;
|
ButtonPanel.HelpButton.Caption:=lisMenuHelp;
|
||||||
ButtonPanel.CloseButton.Caption:=lisClose;
|
ButtonPanel.CloseButton.Caption:=lisBtnClose;
|
||||||
|
|
||||||
//EnvironmentOptions.IDEWindowLayoutList.Apply(Self, Name);
|
//EnvironmentOptions.IDEWindowLayoutList.Apply(Self, Name);
|
||||||
CharInfoLabel.Caption := '-';
|
CharInfoLabel.Caption := '-';
|
||||||
|
@ -467,7 +467,7 @@ begin
|
|||||||
ExpandAllClassesMenuItem.Caption:=lisExpandAllClasses;
|
ExpandAllClassesMenuItem.Caption:=lisExpandAllClasses;
|
||||||
CollapseAllClassesMenuItem.Caption:=lisCollapseAllClasses;
|
CollapseAllClassesMenuItem.Caption:=lisCollapseAllClasses;
|
||||||
ExportMenuItem.Caption:=lisExport;
|
ExportMenuItem.Caption:=lisExport;
|
||||||
OpenMenuItem.Caption:=lisHintOpen;
|
OpenMenuItem.Caption:=lisOpen;
|
||||||
// UsePkgInProjectMenuItem.Caption: see PopupMenu1Popup
|
// UsePkgInProjectMenuItem.Caption: see PopupMenu1Popup
|
||||||
// UsePkgInCurUnitMenuItem.Caption: see PopupMenu1Popup
|
// UsePkgInCurUnitMenuItem.Caption: see PopupMenu1Popup
|
||||||
// UseUnitInCurUnitMenuItem.Caption: see PopupMenu1Popup
|
// UseUnitInCurUnitMenuItem.Caption: see PopupMenu1Popup
|
||||||
|
@ -170,9 +170,9 @@ var
|
|||||||
begin
|
begin
|
||||||
NewTestGroupBox.Caption := rsCreateNewDefine;
|
NewTestGroupBox.Caption := rsCreateNewDefine;
|
||||||
Caption := rsConditionalDefines;
|
Caption := rsConditionalDefines;
|
||||||
AddBtn.Caption := liswlAdd;
|
AddBtn.Caption := lisBtnAdd;
|
||||||
AddInverse.Caption := rsAddInverse;
|
AddInverse.Caption := rsAddInverse;
|
||||||
RemoveBtn.Caption := rsRemove;
|
RemoveBtn.Caption := lisBtnRemove;
|
||||||
ButtonPanel.HelpButton.OnClick := @HelpButtonClick;
|
ButtonPanel.HelpButton.OnClick := @HelpButtonClick;
|
||||||
try
|
try
|
||||||
XMLConfig:=CreateXMLConfig;
|
XMLConfig:=CreateXMLConfig;
|
||||||
|
@ -271,9 +271,9 @@ begin
|
|||||||
|
|
||||||
// buttons
|
// buttons
|
||||||
CancelScanningButton.LoadGlyphFromLazarusResource('btn_cancel');
|
CancelScanningButton.LoadGlyphFromLazarusResource('btn_cancel');
|
||||||
CloseButton.Caption:=lisMenuClose;
|
CloseButton.Caption:=lisClose;
|
||||||
OpenInEditorButton.Caption:=lisDiffDlgOpenDiffInEditor;
|
OpenInEditorButton.Caption:=lisDiffDlgOpenDiffInEditor;
|
||||||
SaveDiffButton.Caption:=lisSave;
|
SaveDiffButton.Caption:=lisDlgSave;
|
||||||
HelpButton.Caption:=lisMenuHelp;
|
HelpButton.Caption:=lisMenuHelp;
|
||||||
|
|
||||||
OpenInEditorButton.LoadGlyphFromStock(idButtonOpen);
|
OpenInEditorButton.LoadGlyphFromStock(idButtonOpen);
|
||||||
|
@ -91,7 +91,7 @@ begin
|
|||||||
// Captions
|
// Captions
|
||||||
Caption:=lisEditorWindowManager;
|
Caption:=lisEditorWindowManager;
|
||||||
ActivateMenuItem.Caption:=lisActivate;
|
ActivateMenuItem.Caption:=lisActivate;
|
||||||
CloseMenuItem.Caption:=lisMenuClose;
|
CloseMenuItem.Caption:=lisClose;
|
||||||
SelectAllCheckBox.Caption:=lisCheckAll;
|
SelectAllCheckBox.Caption:=lisCheckAll;
|
||||||
SaveCheckedButton.Caption:=lisSaveAllChecked;
|
SaveCheckedButton.Caption:=lisSaveAllChecked;
|
||||||
CloseCheckedButton.Caption:=lisCloseAllChecked;
|
CloseCheckedButton.Caption:=lisCloseAllChecked;
|
||||||
|
@ -535,7 +535,7 @@ const
|
|||||||
|
|
||||||
EditorOptionsFoldInfoDiff: Array [0..2] of TEditorOptionsFoldInfo
|
EditorOptionsFoldInfoDiff: Array [0..2] of TEditorOptionsFoldInfo
|
||||||
= (
|
= (
|
||||||
( Name: dlgFoldDiffFile;
|
( Name: lisFile;
|
||||||
Xml: 'File';
|
Xml: 'File';
|
||||||
Index: ord(cfbtDiffFile);
|
Index: ord(cfbtDiffFile);
|
||||||
Enabled: True
|
Enabled: True
|
||||||
@ -1779,7 +1779,7 @@ begin
|
|||||||
EditorOptionsFoldInfoXML[3].Name := dlgFoldXmlDocType;
|
EditorOptionsFoldInfoXML[3].Name := dlgFoldXmlDocType;
|
||||||
EditorOptionsFoldInfoXML[4].Name := dlgFoldXmlProcess;
|
EditorOptionsFoldInfoXML[4].Name := dlgFoldXmlProcess;
|
||||||
|
|
||||||
EditorOptionsFoldInfoDiff[0].Name := dlgFoldDiffFile;
|
EditorOptionsFoldInfoDiff[0].Name := lisFile;
|
||||||
EditorOptionsFoldInfoDiff[1].Name := dlgFoldDiffChunk;
|
EditorOptionsFoldInfoDiff[1].Name := dlgFoldDiffChunk;
|
||||||
EditorOptionsFoldInfoDiff[2].Name := dlgFoldDiffChunkSect;
|
EditorOptionsFoldInfoDiff[2].Name := dlgFoldDiffChunkSect;
|
||||||
|
|
||||||
|
@ -274,7 +274,7 @@ begin
|
|||||||
OpenXMLButton.Enabled:=false;
|
OpenXMLButton.Enabled:=false;
|
||||||
SaveButton.Caption := '';
|
SaveButton.Caption := '';
|
||||||
SaveButton.Enabled:=false;
|
SaveButton.Enabled:=false;
|
||||||
SaveButton.Hint:=lisHintSave;
|
SaveButton.Hint:=lisSave;
|
||||||
SaveButton.ShowHint:=true;
|
SaveButton.ShowHint:=true;
|
||||||
|
|
||||||
BrowseExampleButton.Caption := lisCodeHelpBrowseExampleButton;
|
BrowseExampleButton.Caption := lisCodeHelpBrowseExampleButton;
|
||||||
|
@ -102,7 +102,7 @@ end;
|
|||||||
|
|
||||||
class function THelpOptions.GetGroupCaption: string;
|
class function THelpOptions.GetGroupCaption: string;
|
||||||
begin
|
begin
|
||||||
Result := dlgGroupHelp;
|
Result := lisHelp;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
class function THelpOptions.GetInstance: TAbstractIDEOptions;
|
class function THelpOptions.GetInstance: TAbstractIDEOptions;
|
||||||
|
@ -246,7 +246,7 @@ procedure TCompileInfoDlg.SetCanClose;
|
|||||||
begin
|
begin
|
||||||
ToAbort := False;
|
ToAbort := False;
|
||||||
BClose.Kind := bkOk;
|
BClose.Kind := bkOk;
|
||||||
BClose.Caption := lisMenuClose;
|
BClose.Caption := lisClose;
|
||||||
if cbAutoCloseOnSuccess.Checked and (NErrors = 0) then
|
if cbAutoCloseOnSuccess.Checked and (NErrors = 0) then
|
||||||
tmrCloseForm.Enabled := True;
|
tmrCloseForm.Enabled := True;
|
||||||
end;
|
end;
|
||||||
|
@ -241,7 +241,7 @@ begin
|
|||||||
Result:=sddqWrongVersion;
|
Result:=sddqWrongVersion;
|
||||||
exit;
|
exit;
|
||||||
end;
|
end;
|
||||||
Note:=rsOk;
|
Note:=lisOk;
|
||||||
Result:=sddqCompatible;
|
Result:=sddqCompatible;
|
||||||
except
|
except
|
||||||
on E: Exception do begin
|
on E: Exception do begin
|
||||||
@ -411,7 +411,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
Note:=rsOk;
|
Note:=lisOk;
|
||||||
Result:=sddqCompatible;
|
Result:=sddqCompatible;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -674,7 +674,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
Note:=rsOk;
|
Note:=lisOk;
|
||||||
Result:=sddqCompatible;
|
Result:=sddqCompatible;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -427,14 +427,14 @@ begin
|
|||||||
ecNewForm : Result:= lisMenuNewForm;
|
ecNewForm : Result:= lisMenuNewForm;
|
||||||
ecOpen : Result:= lisMenuOpen;
|
ecOpen : Result:= lisMenuOpen;
|
||||||
ecRevert : Result:= lisMenuRevert;
|
ecRevert : Result:= lisMenuRevert;
|
||||||
ecSave : Result:= srkmecSave;
|
ecSave : Result:= lisSave;
|
||||||
ecSaveAs : Result:= lisMenuSaveAs;
|
ecSaveAs : Result:= lisMenuSaveAs;
|
||||||
ecSaveAll : Result:= lisMenuSaveAll;
|
ecSaveAll : Result:= lisSaveAll;
|
||||||
ecClose : Result:= lisMenuClose;
|
ecClose : Result:= lisClose;
|
||||||
ecCloseAll : Result:= lisMenuCloseAll;
|
ecCloseAll : Result:= lisMenuCloseAll;
|
||||||
ecCleanDirectory : Result:= lisMenuCleanDirectory;
|
ecCleanDirectory : Result:= lisMenuCleanDirectory;
|
||||||
ecRestart : Result:= lisMenuRestart;
|
ecRestart : Result:= lisRestart;
|
||||||
ecQuit : Result:= srkmecQuit;
|
ecQuit : Result:= lisQuit;
|
||||||
|
|
||||||
// edit menu
|
// edit menu
|
||||||
ecSelectionUpperCase : Result:= lisMenuUpperCaseSelection;
|
ecSelectionUpperCase : Result:= lisMenuUpperCaseSelection;
|
||||||
@ -2727,19 +2727,19 @@ begin
|
|||||||
|
|
||||||
// file menu
|
// file menu
|
||||||
C:=Categories[AddCategory('FileMenu',srkmCatFileMenu,nil)];
|
C:=Categories[AddCategory('FileMenu',srkmCatFileMenu,nil)];
|
||||||
AddDefault(C, 'New', lisMenuTemplateNew, ecNew);
|
AddDefault(C, 'New', lisNew, ecNew);
|
||||||
AddDefault(C, 'NewUnit', lisKMNewUnit, ecNewUnit);
|
AddDefault(C, 'NewUnit', lisKMNewUnit, ecNewUnit);
|
||||||
AddDefault(C, 'NewForm', lisMenuNewForm, ecNewForm);
|
AddDefault(C, 'NewForm', lisMenuNewForm, ecNewForm);
|
||||||
AddDefault(C, 'Open', lisHintOpen, ecOpen);
|
AddDefault(C, 'Open', lisOpen, ecOpen);
|
||||||
AddDefault(C, 'Revert', lisMenuRevert, ecRevert);
|
AddDefault(C, 'Revert', lisMenuRevert, ecRevert);
|
||||||
AddDefault(C, 'Save', srkmecSave, ecSave);
|
AddDefault(C, 'Save', lisSave, ecSave);
|
||||||
AddDefault(C, 'SaveAs', lisKMSaveAs, ecSaveAs);
|
AddDefault(C, 'SaveAs', lisKMSaveAs, ecSaveAs);
|
||||||
AddDefault(C, 'SaveAll', lisKMSaveAll, ecSaveAll);
|
AddDefault(C, 'SaveAll', lisKMSaveAll, ecSaveAll);
|
||||||
AddDefault(C, 'Close', lisMenuClose, ecClose);
|
AddDefault(C, 'Close', lisClose, ecClose);
|
||||||
AddDefault(C, 'CloseAll', lisKMCloseAll, ecCloseAll);
|
AddDefault(C, 'CloseAll', lisCloseAll, ecCloseAll);
|
||||||
AddDefault(C, 'Clean Directory', lisClDirCleanDirectory, ecCleanDirectory);
|
AddDefault(C, 'Clean Directory', lisClDirCleanDirectory, ecCleanDirectory);
|
||||||
AddDefault(C, 'Restart', lisMenuRestart, ecRestart);
|
AddDefault(C, 'Restart', lisRestart, ecRestart);
|
||||||
AddDefault(C, 'Quit', srkmecQuit, ecQuit);
|
AddDefault(C, 'Quit', lisQuit, ecQuit);
|
||||||
|
|
||||||
// view menu
|
// view menu
|
||||||
C:=Categories[AddCategory(CommandCategoryViewName,srkmCatViewMenu,nil)];
|
C:=Categories[AddCategory(CommandCategoryViewName,srkmCatViewMenu,nil)];
|
||||||
|
@ -43,28 +43,47 @@ resourcestring
|
|||||||
// Common strings that can be used around Lazarus:
|
// Common strings that can be used around Lazarus:
|
||||||
lisLazarus = 'Lazarus';
|
lisLazarus = 'Lazarus';
|
||||||
lisAdd = 'Add';
|
lisAdd = 'Add';
|
||||||
|
lisBtnAdd = '&Add';
|
||||||
lisInsert = 'Insert';
|
lisInsert = 'Insert';
|
||||||
lisChange = 'Change';
|
lisChange = 'Change';
|
||||||
lisDelete = 'Delete';
|
lisDelete = 'Delete';
|
||||||
|
lisBtnDelete = '&Delete';
|
||||||
lisRemove = 'Remove';
|
lisRemove = 'Remove';
|
||||||
|
lisBtnRemove = '&Remove';
|
||||||
lisRename = 'Rename';
|
lisRename = 'Rename';
|
||||||
lisReplace = 'Replace';
|
lisReplace = 'Replace';
|
||||||
|
lisBtnReplace = '&Replace';
|
||||||
|
lisBtnDlgReplace = '&Replace ...';
|
||||||
lisEdit = 'Edit';
|
lisEdit = 'Edit';
|
||||||
|
lisOpen = 'Open';
|
||||||
|
lisSave = 'Save';
|
||||||
|
lisDlgSave = 'Save ...';
|
||||||
|
lisSaveAs = 'Save As';
|
||||||
|
lisSaveAll = 'Save All';
|
||||||
|
lisCloseAll = 'Close All';
|
||||||
|
lisFile = 'File';
|
||||||
|
lisNew = 'New';
|
||||||
|
lisClose = 'Close';
|
||||||
|
lisBtnClose = '&Close';
|
||||||
|
lisOk = 'OK';
|
||||||
lisMenuOk = '&OK';
|
lisMenuOk = '&OK';
|
||||||
rsOk = 'OK';
|
|
||||||
lisCancel = 'Cancel';
|
lisCancel = 'Cancel';
|
||||||
// lisYes = 'Yes';
|
// lisYes = 'Yes';
|
||||||
lisNo = 'No';
|
lisNo = 'No';
|
||||||
lisContinue = 'Continue';
|
lisContinue = 'Continue';
|
||||||
lisBreak = 'Break';
|
lisBreak = 'Break';
|
||||||
lisExit = 'Exit';
|
lisExit = 'Exit';
|
||||||
|
lisQuit = 'Quit';
|
||||||
|
lisBtnQuit = '&Quit';
|
||||||
|
lisRestart = 'Restart';
|
||||||
|
lisHelp = 'Help';
|
||||||
|
lisEnabled = 'Enabled';
|
||||||
|
lisBtnEnabled = '&Enabled';
|
||||||
lisUndo = 'Undo';
|
lisUndo = 'Undo';
|
||||||
lisRedo = 'Redo';
|
lisRedo = 'Redo';
|
||||||
lisCut = 'Cut';
|
lisCut = 'Cut';
|
||||||
lisCopy = 'Copy';
|
lisCopy = 'Copy';
|
||||||
lisPaste = 'Paste';
|
lisPaste = 'Paste';
|
||||||
|
|
||||||
lisDown = 'Down';
|
lisDown = 'Down';
|
||||||
lisUp = 'Up';
|
lisUp = 'Up';
|
||||||
lisRight = 'Right';
|
lisRight = 'Right';
|
||||||
@ -205,19 +224,14 @@ resourcestring
|
|||||||
lisDoNotCloseTheProject = 'Do not close the project';
|
lisDoNotCloseTheProject = 'Do not close the project';
|
||||||
lisDoNotCloseTheIDE = 'Do not close the IDE';
|
lisDoNotCloseTheIDE = 'Do not close the IDE';
|
||||||
lisMenuSaveAs = 'Save &As ...';
|
lisMenuSaveAs = 'Save &As ...';
|
||||||
lisMenuSaveAll = 'Save All';
|
|
||||||
lisMenuClose = 'Close';
|
|
||||||
lisConvert = 'Convert';
|
lisConvert = 'Convert';
|
||||||
lisPLDOnlyExistingFiles = 'Only existing files';
|
lisPLDOnlyExistingFiles = 'Only existing files';
|
||||||
lisPLDShowGlobalLinks = 'Show global links';
|
lisPLDShowGlobalLinks = 'Show global links';
|
||||||
lisPLDShowUserLinks = 'Show user links';
|
lisPLDShowUserLinks = 'Show user links';
|
||||||
lisPLDGlobal = 'Global';
|
lisPLDGlobal = 'Global';
|
||||||
lisKMCloseAll = 'Close All';
|
|
||||||
lisCTDefDefineTemplates = 'Define templates';
|
lisCTDefDefineTemplates = 'Define templates';
|
||||||
lisMenuCloseAll = 'Close A&ll Editor Files';
|
lisMenuCloseAll = 'Close A&ll Editor Files';
|
||||||
lisMenuCleanDirectory = 'Clean Directory ...';
|
lisMenuCleanDirectory = 'Clean Directory ...';
|
||||||
lisMenuQuit = '&Quit';
|
|
||||||
lisMenuRestart = 'Restart';
|
|
||||||
|
|
||||||
lisMenuIndentSelection = 'Indent Selection';
|
lisMenuIndentSelection = 'Indent Selection';
|
||||||
lisMenuUnindentSelection = 'Unindent Selection';
|
lisMenuUnindentSelection = 'Unindent Selection';
|
||||||
@ -274,9 +288,7 @@ resourcestring
|
|||||||
lisMenuFind2 = '&Find ...';
|
lisMenuFind2 = '&Find ...';
|
||||||
lisMenuFindPrevious = 'Find &Previous';
|
lisMenuFindPrevious = 'Find &Previous';
|
||||||
lisMenuFindInFiles = 'Find &in Files ...';
|
lisMenuFindInFiles = 'Find &in Files ...';
|
||||||
lisBtnReplace = '&Replace';
|
|
||||||
lisMenuIncrementalFind = 'Incremental Find';
|
lisMenuIncrementalFind = 'Incremental Find';
|
||||||
lisMenuReplace2 = '&Replace ...';
|
|
||||||
lisMenuGotoLine = 'Goto Line ...';
|
lisMenuGotoLine = 'Goto Line ...';
|
||||||
lisMenuJumpBack = 'Jump Back';
|
lisMenuJumpBack = 'Jump Back';
|
||||||
lisMenuJumpForward = 'Jump Forward';
|
lisMenuJumpForward = 'Jump Forward';
|
||||||
@ -787,8 +799,7 @@ resourcestring
|
|||||||
lisError = 'Error: ';
|
lisError = 'Error: ';
|
||||||
lisWarning = 'Warning: ';
|
lisWarning = 'Warning: ';
|
||||||
lisSaveChanges = 'Save changes?';
|
lisSaveChanges = 'Save changes?';
|
||||||
lisSaveFileBeforeClosingForm =
|
lisSaveFileBeforeClosingForm = 'Save file %s%s%s%sbefore closing form %s%s%s?';
|
||||||
'Save file %s%s%s%sbefore closing form %s%s%s?';
|
|
||||||
lisUnableToRenameFormInSource = 'Unable to rename form in source.';
|
lisUnableToRenameFormInSource = 'Unable to rename form in source.';
|
||||||
lisTheComponentIsInheritedFromToRenameAnInheritedComp = 'The component %s '
|
lisTheComponentIsInheritedFromToRenameAnInheritedComp = 'The component %s '
|
||||||
+'is inherited from %s.%sTo rename an inherited component open the '
|
+'is inherited from %s.%sTo rename an inherited component open the '
|
||||||
@ -897,7 +908,6 @@ resourcestring
|
|||||||
lisDate = 'Date';
|
lisDate = 'Date';
|
||||||
lisFPCVersion = 'FPC Version: ';
|
lisFPCVersion = 'FPC Version: ';
|
||||||
lisSVNRevision = 'SVN Revision: ';
|
lisSVNRevision = 'SVN Revision: ';
|
||||||
lisClose = '&Close';
|
|
||||||
lisAboutLazarusMsg =
|
lisAboutLazarusMsg =
|
||||||
'License: GPL/LGPL. See Lazarus and Free Pascal sources for license details.'
|
'License: GPL/LGPL. See Lazarus and Free Pascal sources for license details.'
|
||||||
+'%s'
|
+'%s'
|
||||||
@ -932,8 +942,6 @@ resourcestring
|
|||||||
lisActivateSelected = 'Activate Selected';
|
lisActivateSelected = 'Activate Selected';
|
||||||
|
|
||||||
// hints
|
// hints
|
||||||
lisHintOpen = 'Open';
|
|
||||||
lisHintSave = 'Save';
|
|
||||||
lisHintSaveAll = 'Save all';
|
lisHintSaveAll = 'Save all';
|
||||||
lisHintToggleFormUnit = 'Toggle Form/Unit';
|
lisHintToggleFormUnit = 'Toggle Form/Unit';
|
||||||
lisHintViewUnits = 'View Units';
|
lisHintViewUnits = 'View Units';
|
||||||
@ -1023,7 +1031,6 @@ resourcestring
|
|||||||
lisUnexpectedResultTheDebuggerWillTerminate = 'Unexpected result:%sThe '
|
lisUnexpectedResultTheDebuggerWillTerminate = 'Unexpected result:%sThe '
|
||||||
+'debugger will terminate';
|
+'debugger will terminate';
|
||||||
lisResponseContinue = 'Response: %sContinue ?';
|
lisResponseContinue = 'Response: %sContinue ?';
|
||||||
dlgGroupHelp = 'Help';
|
|
||||||
|
|
||||||
// Options dialog
|
// Options dialog
|
||||||
dlgIDEOptions = 'IDE Options';
|
dlgIDEOptions = 'IDE Options';
|
||||||
@ -1225,10 +1232,7 @@ resourcestring
|
|||||||
dlgPropNameColor = 'Property Name';
|
dlgPropNameColor = 'Property Name';
|
||||||
dlgGutterEdgeColor = 'Gutter Edge Color';
|
dlgGutterEdgeColor = 'Gutter Edge Color';
|
||||||
|
|
||||||
liswlAdd = '&Add';
|
|
||||||
liswlProperties = '&Properties';
|
liswlProperties = '&Properties';
|
||||||
liswlEnabled = '&Enabled';
|
|
||||||
liswlDelete = '&Delete';
|
|
||||||
liswlDIsableAll = 'D&isable All';
|
liswlDIsableAll = 'D&isable All';
|
||||||
liswlENableAll = 'E&nable All';
|
liswlENableAll = 'E&nable All';
|
||||||
liswlDeLeteAll = 'De&lete All';
|
liswlDeLeteAll = 'De&lete All';
|
||||||
@ -1663,7 +1667,6 @@ resourcestring
|
|||||||
dlgFoldHtmlComment = 'Comment';
|
dlgFoldHtmlComment = 'Comment';
|
||||||
dlgFoldHtmlAsp = 'ASP';
|
dlgFoldHtmlAsp = 'ASP';
|
||||||
|
|
||||||
dlgFoldDiffFile = 'File';
|
|
||||||
dlgFoldDiffChunk = 'Chunk';
|
dlgFoldDiffChunk = 'Chunk';
|
||||||
dlgFoldDiffChunkSect = 'Chunk section';
|
dlgFoldDiffChunkSect = 'Chunk section';
|
||||||
|
|
||||||
@ -1676,7 +1679,6 @@ resourcestring
|
|||||||
|
|
||||||
dlgMouseFoldGroup1 = 'Setting 1';
|
dlgMouseFoldGroup1 = 'Setting 1';
|
||||||
dlgMouseFoldGroup2 = 'Setting 2';
|
dlgMouseFoldGroup2 = 'Setting 2';
|
||||||
dlgMouseFoldEnabled = 'Enabled';
|
|
||||||
dlgMouseFoldButton = 'Button';
|
dlgMouseFoldButton = 'Button';
|
||||||
dlgMouseFoldButtonLeft = 'Left';
|
dlgMouseFoldButtonLeft = 'Left';
|
||||||
dlgMouseFoldButtonMiddle = 'Middle';
|
dlgMouseFoldButtonMiddle = 'Middle';
|
||||||
@ -2542,9 +2544,6 @@ resourcestring
|
|||||||
srkmecBlockIndent = 'Indent block';
|
srkmecBlockIndent = 'Indent block';
|
||||||
srkmecBlockUnindent = 'Unindent block';
|
srkmecBlockUnindent = 'Unindent block';
|
||||||
|
|
||||||
srkmecSave = 'Save';
|
|
||||||
srkmecQuit = 'Quit';
|
|
||||||
|
|
||||||
srkmecBlockSetBegin = 'Set block begin';
|
srkmecBlockSetBegin = 'Set block begin';
|
||||||
srkmecBlockSetEnd = 'Set block end';
|
srkmecBlockSetEnd = 'Set block end';
|
||||||
srkmecBlockToggleHide = 'Toggle block';
|
srkmecBlockToggleHide = 'Toggle block';
|
||||||
@ -2906,7 +2905,6 @@ resourcestring
|
|||||||
|
|
||||||
// Unit dependencies
|
// Unit dependencies
|
||||||
dlgUnitDepCaption = 'Unit Dependencies';
|
dlgUnitDepCaption = 'Unit Dependencies';
|
||||||
dlgUnitDepBrowse = 'Open';
|
|
||||||
dlgUnitDepRefresh = 'Refresh';
|
dlgUnitDepRefresh = 'Refresh';
|
||||||
|
|
||||||
// Doc Editor
|
// Doc Editor
|
||||||
@ -3252,7 +3250,6 @@ resourcestring
|
|||||||
lisDiffDlgIgnoreIfSpaceCharsWereAdd = 'Ignore amount of space chars';
|
lisDiffDlgIgnoreIfSpaceCharsWereAdd = 'Ignore amount of space chars';
|
||||||
lisDiffDlgIgnoreSpaces = 'Ignore spaces (newline chars not included)';
|
lisDiffDlgIgnoreSpaces = 'Ignore spaces (newline chars not included)';
|
||||||
lisDiffDlgOpenDiffInEditor = 'Open Diff in editor';
|
lisDiffDlgOpenDiffInEditor = 'Open Diff in editor';
|
||||||
lisSave = 'Save ...';
|
|
||||||
|
|
||||||
// packages
|
// packages
|
||||||
lisPkgFileTypeUnit = 'Unit';
|
lisPkgFileTypeUnit = 'Unit';
|
||||||
@ -4083,7 +4080,6 @@ resourcestring
|
|||||||
lisClickToSeeThePossibleUses = 'Click to see the possible uses';
|
lisClickToSeeThePossibleUses = 'Click to see the possible uses';
|
||||||
lisPckEditEditGeneralOptions = 'Edit General Options';
|
lisPckEditEditGeneralOptions = 'Edit General Options';
|
||||||
lisPckEditCompOpts = 'Compiler Options';
|
lisPckEditCompOpts = 'Compiler Options';
|
||||||
lisPckEditHelp = 'Help';
|
|
||||||
lisPkgEdThereAreMoreFunctionsInThePopupmenu = 'There are more functions in '
|
lisPkgEdThereAreMoreFunctionsInThePopupmenu = 'There are more functions in '
|
||||||
+'the popupmenu';
|
+'the popupmenu';
|
||||||
lisPckEditMore = 'More >>';
|
lisPckEditMore = 'More >>';
|
||||||
@ -4219,30 +4215,16 @@ resourcestring
|
|||||||
|
|
||||||
// Standard File menu
|
// Standard File menu
|
||||||
lisMenuTemplateDescriptionStandardFileMenu = 'Standard File Menu';
|
lisMenuTemplateDescriptionStandardFileMenu = 'Standard File Menu';
|
||||||
lisMenuTemplateFile = 'File';
|
|
||||||
lisMenuTemplateNew = 'New';
|
|
||||||
lisKMNewUnit = 'New Unit';
|
lisKMNewUnit = 'New Unit';
|
||||||
lisMenuTemplateOpen = 'Open';
|
|
||||||
lisMenuTemplateOpenRecent = 'Open Recent';
|
lisMenuTemplateOpenRecent = 'Open Recent';
|
||||||
lisMenuTemplateSave = 'Save';
|
|
||||||
lisMenuTemplateSaveAs = 'Save As';
|
|
||||||
lisMenuTemplateClose = 'Close';
|
|
||||||
lisMenuTemplateExit = 'Exit';
|
|
||||||
|
|
||||||
// Standard Edit menu
|
// Standard Edit menu
|
||||||
lisMenuTemplateDescriptionStandardEditMenu = 'Standard Edit Menu';
|
lisMenuTemplateDescriptionStandardEditMenu = 'Standard Edit Menu';
|
||||||
//lisMenuTemplateEdit = 'Edit';
|
|
||||||
//lisMenuTemplateUndo = 'Undo';
|
|
||||||
//lisMenuTemplateRedo = 'Redo';
|
|
||||||
//lisMenuTemplateCut = 'Cut';
|
|
||||||
//lisMenuTemplateCopy = 'Copy';
|
|
||||||
//lisMenuTemplatePaste = 'Paste';
|
|
||||||
lisMenuTemplateFind = 'Find';
|
lisMenuTemplateFind = 'Find';
|
||||||
lisMenuTemplateFindNext = 'Find Next';
|
lisMenuTemplateFindNext = 'Find Next';
|
||||||
|
|
||||||
// Standard Help menu
|
// Standard Help menu
|
||||||
lisMenuTemplateDescriptionStandardHelpMenu = 'Standard Help Menu';
|
lisMenuTemplateDescriptionStandardHelpMenu = 'Standard Help Menu';
|
||||||
lisMenuTemplateHelp = 'Help';
|
|
||||||
lisMenuTemplateContents = 'Contents';
|
lisMenuTemplateContents = 'Contents';
|
||||||
lisMenuTemplateTutorial = 'Tutorial';
|
lisMenuTemplateTutorial = 'Tutorial';
|
||||||
lisMenuTemplateAbout = 'About';
|
lisMenuTemplateAbout = 'About';
|
||||||
@ -4486,7 +4468,6 @@ resourcestring
|
|||||||
lisOpenXML = 'Open XML';
|
lisOpenXML = 'Open XML';
|
||||||
lisCodeHelpInsertALink = 'Insert a link ...';
|
lisCodeHelpInsertALink = 'Insert a link ...';
|
||||||
lisCodeHelpInsertParagraphFormattingTag = 'Insert paragraph formatting tag';
|
lisCodeHelpInsertParagraphFormattingTag = 'Insert paragraph formatting tag';
|
||||||
lisCodeHelpSaveButton = 'Save';
|
|
||||||
lisCodeHelpExampleTag = 'Example';
|
lisCodeHelpExampleTag = 'Example';
|
||||||
lisCodeHelpBrowseExampleButton = 'Browse';
|
lisCodeHelpBrowseExampleButton = 'Browse';
|
||||||
lisLDMoveEntriesToInherited = 'Move entries to inherited';
|
lisLDMoveEntriesToInherited = 'Move entries to inherited';
|
||||||
@ -4526,7 +4507,6 @@ resourcestring
|
|||||||
lisLeftSiblingComboBoxHint = 'This is the sibling control to which the left side is anchored. Leave empty for parent.';
|
lisLeftSiblingComboBoxHint = 'This is the sibling control to which the left side is anchored. Leave empty for parent.';
|
||||||
lisBorderSpace = 'Border space';
|
lisBorderSpace = 'Border space';
|
||||||
lisSibling = 'Sibling';
|
lisSibling = 'Sibling';
|
||||||
lisEnabled = 'Enabled';
|
|
||||||
lisRightAnchoring = 'Right anchoring';
|
lisRightAnchoring = 'Right anchoring';
|
||||||
lisTopAnchoring = 'Top anchoring';
|
lisTopAnchoring = 'Top anchoring';
|
||||||
lisLeftGroupBoxCaption = 'Left anchoring';
|
lisLeftGroupBoxCaption = 'Left anchoring';
|
||||||
@ -4610,7 +4590,6 @@ resourcestring
|
|||||||
rsCreateNewDefine = 'Create new define';
|
rsCreateNewDefine = 'Create new define';
|
||||||
rsConditionalDefines = 'Conditional defines';
|
rsConditionalDefines = 'Conditional defines';
|
||||||
rsAddInverse = 'Add Inverse';
|
rsAddInverse = 'Add Inverse';
|
||||||
rsRemove = '&Remove';
|
|
||||||
lisAutomaticallyOnLineBreak = 'line break';
|
lisAutomaticallyOnLineBreak = 'line break';
|
||||||
lisAutomaticallyOnSpace = 'space';
|
lisAutomaticallyOnSpace = 'space';
|
||||||
lisAutomaticallyOnWordEnd = 'word end';
|
lisAutomaticallyOnWordEnd = 'word end';
|
||||||
|
@ -1937,8 +1937,8 @@ begin
|
|||||||
MainIDEBar.NewUnitSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'NewUnitSpeedBtn' , 'item_unit' , @mnuNewUnitClicked, lisMenuNewUnit);
|
MainIDEBar.NewUnitSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'NewUnitSpeedBtn' , 'item_unit' , @mnuNewUnitClicked, lisMenuNewUnit);
|
||||||
MainIDEBar.NewFormSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'NewFormSpeedBtn' , 'item_form' , @mnuNewFormClicked, lisMenuNewForm);
|
MainIDEBar.NewFormSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'NewFormSpeedBtn' , 'item_form' , @mnuNewFormClicked, lisMenuNewForm);
|
||||||
MainIDEBar.tbDivider1 := CreateDivider(MainIDEBar.tbStandard);
|
MainIDEBar.tbDivider1 := CreateDivider(MainIDEBar.tbStandard);
|
||||||
MainIDEBar.OpenFileSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'OpenFileSpeedBtn' , 'laz_open' , @mnuOpenClicked, lisHintOpen);
|
MainIDEBar.OpenFileSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'OpenFileSpeedBtn' , 'laz_open' , @mnuOpenClicked, lisOpen);
|
||||||
MainIDEBar.SaveSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'SaveSpeedBtn' , 'laz_save' , @mnuSaveClicked, lisHintSave);
|
MainIDEBar.SaveSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'SaveSpeedBtn' , 'laz_save' , @mnuSaveClicked, lisSave);
|
||||||
MainIDEBar.SaveAllSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'SaveAllSpeedBtn' , 'menu_save_all' , @mnuSaveAllClicked, lisHintSaveAll);
|
MainIDEBar.SaveAllSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'SaveAllSpeedBtn' , 'menu_save_all' , @mnuSaveAllClicked, lisHintSaveAll);
|
||||||
MainIDEBar.tbDivider2 := CreateDivider(MainIDEBar.tbStandard);
|
MainIDEBar.tbDivider2 := CreateDivider(MainIDEBar.tbStandard);
|
||||||
MainIDEBar.ToggleFormSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'ToggleFormSpeedBtn' , 'menu_view_toggle_form_unit', @mnuToggleFormUnitCLicked, lisHintToggleFormUnit);
|
MainIDEBar.ToggleFormSpeedBtn := CreateButton(MainIDEBar.tbStandard , 'ToggleFormSpeedBtn' , 'menu_view_toggle_form_unit', @mnuToggleFormUnitCLicked, lisHintToggleFormUnit);
|
||||||
@ -3011,7 +3011,7 @@ begin
|
|||||||
r := QuestionDlg(lisSourceModified,
|
r := QuestionDlg(lisSourceModified,
|
||||||
Format(lisSourceOfPageHasChangedSaveExtended, ['"', Ed.PageName, '"', NeedSave]),
|
Format(lisSourceOfPageHasChangedSaveExtended, ['"', Ed.PageName, '"', NeedSave]),
|
||||||
mtConfirmation,
|
mtConfirmation,
|
||||||
[mrYes, lisMenuSave, mrAll, lisMenuSaveAll,
|
[mrYes, lisMenuSave, mrAll, lisSaveAll,
|
||||||
mrNo, lisDiscardChanges, mrIgnore, lisDiscardChangesAll,
|
mrNo, lisDiscardChanges, mrIgnore, lisDiscardChangesAll,
|
||||||
mrAbort], 0);
|
mrAbort], 0);
|
||||||
case r of
|
case r of
|
||||||
@ -3098,7 +3098,7 @@ begin
|
|||||||
r := QuestionDlg(lisSourceModified,
|
r := QuestionDlg(lisSourceModified,
|
||||||
Format(lisSourceOfPageHasChangedSaveExtended, ['"', Ed.PageName, '"', NeedSave]),
|
Format(lisSourceOfPageHasChangedSaveExtended, ['"', Ed.PageName, '"', NeedSave]),
|
||||||
mtConfirmation,
|
mtConfirmation,
|
||||||
[mrYes, lisMenuSave, mrAll, lisMenuSaveAll,
|
[mrYes, lisMenuSave, mrAll, lisSaveAll,
|
||||||
mrNo, lisDiscardChanges, mrIgnore, lisDiscardChangesAll,
|
mrNo, lisDiscardChanges, mrIgnore, lisDiscardChangesAll,
|
||||||
mrAbort], 0);
|
mrAbort], 0);
|
||||||
case r of
|
case r of
|
||||||
|
@ -380,8 +380,8 @@ begin
|
|||||||
CreateMenuSubSection(ParentMI,itmFileRecentOpen,'itmFileRecentOpen',lisMenuOpenRecent);
|
CreateMenuSubSection(ParentMI,itmFileRecentOpen,'itmFileRecentOpen',lisMenuOpenRecent);
|
||||||
CreateMenuItem(ParentMI,itmFileSave,'itmFileSave',lisMenuSave,'laz_save');
|
CreateMenuItem(ParentMI,itmFileSave,'itmFileSave',lisMenuSave,'laz_save');
|
||||||
CreateMenuItem(ParentMI,itmFileSaveAs,'itmFileSaveAs',lisMenuSaveAs,'menu_saveas');
|
CreateMenuItem(ParentMI,itmFileSaveAs,'itmFileSaveAs',lisMenuSaveAs,'menu_saveas');
|
||||||
CreateMenuItem(ParentMI,itmFileSaveAll,'itmFileSaveAll',lisMenuSaveAll,'menu_save_all');
|
CreateMenuItem(ParentMI,itmFileSaveAll,'itmFileSaveAll',lisSaveAll,'menu_save_all');
|
||||||
CreateMenuItem(ParentMI,itmFileClose,'itmFileClose',lisMenuClose,'menu_close',false);
|
CreateMenuItem(ParentMI,itmFileClose,'itmFileClose',lisClose,'menu_close',false);
|
||||||
CreateMenuItem(ParentMI,itmFileCloseAll,'itmFileCloseAll',lisMenuCloseAll,'menu_close_all',false);
|
CreateMenuItem(ParentMI,itmFileCloseAll,'itmFileCloseAll',lisMenuCloseAll,'menu_close_all',false);
|
||||||
|
|
||||||
CreateMenuSeparatorSection(mnuFile,itmFileDirectories,'itmFileDirectories');
|
CreateMenuSeparatorSection(mnuFile,itmFileDirectories,'itmFileDirectories');
|
||||||
@ -390,8 +390,8 @@ begin
|
|||||||
|
|
||||||
CreateMenuSeparatorSection(mnuFile,itmFileIDEStart,'itmFileIDEStart');
|
CreateMenuSeparatorSection(mnuFile,itmFileIDEStart,'itmFileIDEStart');
|
||||||
ParentMI:=itmFileIDEStart;
|
ParentMI:=itmFileIDEStart;
|
||||||
CreateMenuItem(ParentMI,itmFileRestart,'itmFileRestart',lisMenuRestart, 'laz_refresh');
|
CreateMenuItem(ParentMI,itmFileRestart,'itmFileRestart',lisRestart, 'laz_refresh');
|
||||||
CreateMenuItem(ParentMI,itmFileQuit,'itmFileQuit',lisMenuQuit, 'menu_exit');
|
CreateMenuItem(ParentMI,itmFileQuit,'itmFileQuit',lisBtnQuit, 'menu_exit');
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -452,8 +452,7 @@ begin
|
|||||||
CreateMenuItem(ParentMI,itmSearchFindNext,'itmSearchFindNext',lisMenuFindNext, 'menu_search_find_next');
|
CreateMenuItem(ParentMI,itmSearchFindNext,'itmSearchFindNext',lisMenuFindNext, 'menu_search_find_next');
|
||||||
CreateMenuItem(ParentMI,itmSearchFindPrevious,'itmSearchFindPrevious',lisMenuFindPrevious, 'menu_search_find_previous');
|
CreateMenuItem(ParentMI,itmSearchFindPrevious,'itmSearchFindPrevious',lisMenuFindPrevious, 'menu_search_find_previous');
|
||||||
CreateMenuItem(ParentMI,itmSearchFindInFiles,'itmSearchFindInFiles',lisMenuFindInFiles, 'menu_search_files');
|
CreateMenuItem(ParentMI,itmSearchFindInFiles,'itmSearchFindInFiles',lisMenuFindInFiles, 'menu_search_files');
|
||||||
CreateMenuItem(ParentMI, itmSearchReplace, 'itmSearchReplace',
|
CreateMenuItem(ParentMI, itmSearchReplace, 'itmSearchReplace', lisBtnDlgReplace, 'menu_search_replace');
|
||||||
lisMenuReplace2, 'menu_search_replace');
|
|
||||||
CreateMenuItem(ParentMI,itmIncrementalFind,'itmIncrementalFind',lisMenuIncrementalFind, 'menu_search_incremental');
|
CreateMenuItem(ParentMI,itmIncrementalFind,'itmIncrementalFind',lisMenuIncrementalFind, 'menu_search_incremental');
|
||||||
|
|
||||||
CreateMenuSeparatorSection(mnuSearch,itmJumpings,'itmJumpings');
|
CreateMenuSeparatorSection(mnuSearch,itmJumpings,'itmJumpings');
|
||||||
|
@ -271,7 +271,7 @@ begin
|
|||||||
MsgCopyAllMenuItem := RegisterIDEMenuCommand(Path, 'Copy all',lisCopyAllShownMessagesToClipboard);
|
MsgCopyAllMenuItem := RegisterIDEMenuCommand(Path, 'Copy all',lisCopyAllShownMessagesToClipboard);
|
||||||
MsgCopyAllAndHiddenMenuItem := RegisterIDEMenuCommand(Path,
|
MsgCopyAllAndHiddenMenuItem := RegisterIDEMenuCommand(Path,
|
||||||
'Copy all, including hidden messages',lisCopyAllShownAndHiddenMessagesToClipboard);
|
'Copy all, including hidden messages',lisCopyAllShownAndHiddenMessagesToClipboard);
|
||||||
MsgHelpMenuItem := RegisterIDEMenuCommand(Path, 'Help for message',lisPckEditHelp);
|
MsgHelpMenuItem := RegisterIDEMenuCommand(Path, 'Help for message',lisHelp);
|
||||||
MsgEditHelpMenuItem := RegisterIDEMenuCommand(Path, 'Edit help for messages',lisEditHelp);
|
MsgEditHelpMenuItem := RegisterIDEMenuCommand(Path, 'Edit help for messages',lisEditHelp);
|
||||||
MsgSaveAllToFileMenuItem :=
|
MsgSaveAllToFileMenuItem :=
|
||||||
RegisterIDEMenuCommand(Path, 'Copy selected',lisSaveAllMessagesToFile);
|
RegisterIDEMenuCommand(Path, 'Copy selected',lisSaveAllMessagesToFile);
|
||||||
|
@ -88,7 +88,7 @@ begin
|
|||||||
CmdLineGroupBox.Caption:=dlgCommandLineParameters;
|
CmdLineGroupBox.Caption:=dlgCommandLineParameters;
|
||||||
Self.Caption:=dlgCompilerOptions;
|
Self.Caption:=dlgCompilerOptions;
|
||||||
RelativePathsCheckBox.Caption:=lisRelativePaths;
|
RelativePathsCheckBox.Caption:=lisRelativePaths;
|
||||||
CloseButton.Caption:=lisClose;
|
CloseButton.Caption:=lisBtnClose;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TShowCompilerOptionsDlg.SetCompilerOpts(
|
procedure TShowCompilerOptionsDlg.SetCompilerOpts(
|
||||||
|
@ -422,10 +422,10 @@ begin
|
|||||||
|
|
||||||
RefreshHistoryList;
|
RefreshHistoryList;
|
||||||
|
|
||||||
SelectUnitButton.Caption:=dlgUnitDepBrowse;
|
SelectUnitButton.Caption:=lisOpen;
|
||||||
RefreshButton.Caption:=dlgUnitDepRefresh;
|
RefreshButton.Caption:=dlgUnitDepRefresh;
|
||||||
ShowProjectButton.Caption:=dlgEnvProject;
|
ShowProjectButton.Caption:=dlgEnvProject;
|
||||||
CloseButton.Caption:=lisClose;
|
CloseButton.Caption:=lisBtnClose;
|
||||||
UnitTreeView.Images := IDEImages.Images_16;
|
UnitTreeView.Images := IDEImages.Images_16;
|
||||||
ToolBar.Images := IDEImages.Images_16;
|
ToolBar.Images := IDEImages.Images_16;
|
||||||
ShowProjectButton.ImageIndex := IDEImages.LoadImage(16, 'item_project');
|
ShowProjectButton.ImageIndex := IDEImages.LoadImage(16, 'item_project');
|
||||||
|
@ -212,7 +212,7 @@ procedure TAddFileToAPackageDialog.SetupComponents;
|
|||||||
var
|
var
|
||||||
pft: TPkgFileType;
|
pft: TPkgFileType;
|
||||||
begin
|
begin
|
||||||
FileGroupBox.Caption:=dlgFoldDiffFile;
|
FileGroupBox.Caption:=lisFile;
|
||||||
FileNameEdit.Text:='';
|
FileNameEdit.Text:='';
|
||||||
UnitNameLabel.Caption:=lisAF2PUnitName;
|
UnitNameLabel.Caption:=lisAF2PUnitName;
|
||||||
UnitNameEdit.Text:='';
|
UnitNameEdit.Text:='';
|
||||||
|
@ -156,9 +156,9 @@ begin
|
|||||||
NewColumn.Width:=300;
|
NewColumn.Width:=300;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
OpenButton.Caption:=lisMenuTemplateOpen;
|
OpenButton.Caption:=lisOpen;
|
||||||
CancelButton.Caption:=lisCancel;
|
CancelButton.Caption:=lisCancel;
|
||||||
HelpButton.Caption:=dlgGroupHelp;
|
HelpButton.Caption:=lisHelp;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TOpenInstalledPackagesDlg.HelpButtonClick(Sender: TObject);
|
procedure TOpenInstalledPackagesDlg.HelpButtonClick(Sender: TObject);
|
||||||
|
@ -99,7 +99,7 @@ end;
|
|||||||
procedure TPackageLinksDialog.FormCreate(Sender: TObject);
|
procedure TPackageLinksDialog.FormCreate(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Caption:=lisPLDPackageLinks;
|
Caption:=lisPLDPackageLinks;
|
||||||
CloseBitBtn.Caption:=lisMenuClose;
|
CloseBitBtn.Caption:=lisClose;
|
||||||
ScopeGroupBox.Caption:=dlgScope;
|
ScopeGroupBox.Caption:=dlgScope;
|
||||||
FileMustExistCheckBox.Caption:=lisPLDOnlyExistingFiles;
|
FileMustExistCheckBox.Caption:=lisPLDOnlyExistingFiles;
|
||||||
ShowGlobalLinksCheckBox.Caption:=lisPLDShowGlobalLinks
|
ShowGlobalLinksCheckBox.Caption:=lisPLDShowGlobalLinks
|
||||||
|
Loading…
Reference in New Issue
Block a user