mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 04:07:57 +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);
|
||||
begin
|
||||
inherited Create(TheOwner);
|
||||
Caption := lisMenuDiff;
|
||||
Caption := lisCaptionDiff;
|
||||
IDEDialogLayoutList.ApplyLayout(Self,600,500);
|
||||
SetupComponents;
|
||||
end;
|
||||
|
@ -409,7 +409,8 @@ resourcestring
|
||||
lisMenuGuessUnclosedBlock = 'Guess unclosed block';
|
||||
lisMenuGuessMisplacedIFDEF = 'Guess misplaced IFDEF/ENDIF';
|
||||
lisMenuMakeResourceString = 'Make Resource String ...';
|
||||
lisMenuDiff = 'Diff';
|
||||
lisCaptionDiff = 'Diff';
|
||||
lisMenuDiff = 'Diff ...';
|
||||
lisMenuConvertDFMtoLFM = 'Convert binary DFM file to text LFM and check syntax ...';
|
||||
lisMenuCheckLFM = 'Check LFM file in editor';
|
||||
lisMenuConvertDelphiUnit = 'Convert Delphi unit to Lazarus unit ...';
|
||||
|
@ -737,7 +737,7 @@ begin
|
||||
ParentMI:=itmSecondaryTools;
|
||||
|
||||
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');
|
||||
ParentMI:=itmDelphiConversion;
|
||||
|
Loading…
Reference in New Issue
Block a user