mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 21:41:35 +02:00
IDE Create a new resourse string for 'Diff ...' instead of adding the dots in code.
git-svn-id: trunk@29139 -
This commit is contained in:
parent
308aadebb3
commit
4f21afddf1
@ -341,7 +341,7 @@ end;
|
|||||||
constructor TDiffDlg.Create(TheOwner: TComponent);
|
constructor TDiffDlg.Create(TheOwner: TComponent);
|
||||||
begin
|
begin
|
||||||
inherited Create(TheOwner);
|
inherited Create(TheOwner);
|
||||||
Caption := lisMenuDiff;
|
Caption := lisCaptionDiff;
|
||||||
IDEDialogLayoutList.ApplyLayout(Self,600,500);
|
IDEDialogLayoutList.ApplyLayout(Self,600,500);
|
||||||
SetupComponents;
|
SetupComponents;
|
||||||
end;
|
end;
|
||||||
|
@ -409,7 +409,8 @@ resourcestring
|
|||||||
lisMenuGuessUnclosedBlock = 'Guess unclosed block';
|
lisMenuGuessUnclosedBlock = 'Guess unclosed block';
|
||||||
lisMenuGuessMisplacedIFDEF = 'Guess misplaced IFDEF/ENDIF';
|
lisMenuGuessMisplacedIFDEF = 'Guess misplaced IFDEF/ENDIF';
|
||||||
lisMenuMakeResourceString = 'Make Resource String ...';
|
lisMenuMakeResourceString = 'Make Resource String ...';
|
||||||
lisMenuDiff = 'Diff';
|
lisCaptionDiff = 'Diff';
|
||||||
|
lisMenuDiff = 'Diff ...';
|
||||||
lisMenuConvertDFMtoLFM = 'Convert binary DFM file to text LFM and check syntax ...';
|
lisMenuConvertDFMtoLFM = 'Convert binary DFM file to text LFM and check syntax ...';
|
||||||
lisMenuCheckLFM = 'Check LFM file in editor';
|
lisMenuCheckLFM = 'Check LFM file in editor';
|
||||||
lisMenuConvertDelphiUnit = 'Convert Delphi unit to Lazarus unit ...';
|
lisMenuConvertDelphiUnit = 'Convert Delphi unit to Lazarus unit ...';
|
||||||
|
@ -737,7 +737,7 @@ begin
|
|||||||
ParentMI:=itmSecondaryTools;
|
ParentMI:=itmSecondaryTools;
|
||||||
|
|
||||||
CreateMenuItem(ParentMI,itmToolMakeResourceString,'itmToolMakeResourceString',lisMenuMakeResourceString, 'menu_tool_make_resourcestring');
|
CreateMenuItem(ParentMI,itmToolMakeResourceString,'itmToolMakeResourceString',lisMenuMakeResourceString, 'menu_tool_make_resourcestring');
|
||||||
CreateMenuItem(ParentMI,itmToolDiff,'itmToolDiff',lisMenuDiff+' ...', 'menu_tool_diff');
|
CreateMenuItem(ParentMI,itmToolDiff,'itmToolDiff',lisMenuDiff, 'menu_tool_diff');
|
||||||
|
|
||||||
CreateMenuSeparatorSection(mnuTools,itmDelphiConversion,'itmDelphiConversion');
|
CreateMenuSeparatorSection(mnuTools,itmDelphiConversion,'itmDelphiConversion');
|
||||||
ParentMI:=itmDelphiConversion;
|
ParentMI:=itmDelphiConversion;
|
||||||
|
Loading…
Reference in New Issue
Block a user