mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 10:09:32 +02:00
IDE: Improve some menu caption texts. Three dots only for modal dialogs.
git-svn-id: trunk@30361 -
This commit is contained in:
parent
53ccc4736f
commit
1a42821d9b
@ -356,7 +356,7 @@ begin
|
||||
if Fits('UnitDependencies',dlgUnitDepCaption) then exit;
|
||||
if Fits('CodeExplorerView',lisCodeExplorer) then exit;
|
||||
if Fits('FPDocEditor',lisCodeHelpMainFormCaption) then exit;
|
||||
if Fits('PkgGraphExplorer',dlgPackageGraph) then exit;
|
||||
if Fits('PkgGraphExplorer',lisMenuPackageGraph) then exit;
|
||||
if Fits('ProjectInspector',lisMenuProjectInspector) then exit;
|
||||
if Fits('DbgOutput',lisMenuViewDebugOutput) then exit;
|
||||
if Fits('DbgEvents',lisMenuViewDebugEvents) then exit;
|
||||
|
@ -2813,7 +2813,7 @@ begin
|
||||
AddDefault(C, 'Open package file', lisKMOpenPackageFile, ecOpenPackageFile);
|
||||
AddDefault(C, 'Open package of current unit', lisMenuOpenPackageOfCurUnit, ecOpenPackageOfCurUnit);
|
||||
AddDefault(C, 'Add active unit to a package', lisMenuAddCurUnitToPkg, ecAddCurUnitToPkg);
|
||||
AddDefault(C, 'Package graph', lisKMPackageGraph, ecPackageGraph);
|
||||
AddDefault(C, 'Package graph', lisMenuPackageGraph, ecPackageGraph);
|
||||
AddDefault(C, 'Configure installed packages', lisInstallUninstallPackages, ecEditInstallPkgs);
|
||||
AddDefault(C, 'Configure custom components', lisKMConfigureCustomComponents, ecConfigCustomComps);
|
||||
|
||||
|
@ -254,7 +254,7 @@ resourcestring
|
||||
lisMenuJumpBack = 'Jump back';
|
||||
lisMenuJumpForward = 'Jump forward';
|
||||
lisMenuAddJumpPointToHistory = 'Add jump point to history';
|
||||
lisMenuViewJumpHistory = 'Jump History ...';
|
||||
lisMenuViewJumpHistory = 'Jump History';
|
||||
lisMenuFindBlockOtherEndOfCodeBlock = 'Find other end of code block';
|
||||
lisMenuFindCodeBlockStart = 'Find code block start';
|
||||
lisMenuFindDeclarationAtCursor = 'Find Declaration at cursor';
|
||||
@ -279,7 +279,7 @@ resourcestring
|
||||
lisMenuViewForms = 'Forms...';
|
||||
lisMenuViewUnitDependencies = 'Unit Dependencies';
|
||||
lisKMViewUnitInfo = 'View Unit Info';
|
||||
lisMenuViewUnitInfo = 'Unit Information';
|
||||
lisMenuViewUnitInfo = 'Unit Information ...';
|
||||
lisMenuViewToggleFormUnit = 'Toggle form/unit view';
|
||||
lisMenuViewMessages = 'Messages';
|
||||
lisCopySelectedMessagesToClipboard = 'Copy selected messages to clipboard';
|
||||
@ -397,7 +397,7 @@ resourcestring
|
||||
lisMenuOpenRecentPkg = 'Open recent package';
|
||||
lisMenuOpenPackageFile = 'Open package file (.lpk) ...';
|
||||
lisMenuOpenPackageOfCurUnit = 'Open package of current unit';
|
||||
lisMenuAddCurUnitToPkg = 'Add active unit to a package';
|
||||
lisMenuAddCurUnitToPkg = 'Add active unit to a package ...';
|
||||
lisKMConfigureCustomComponents = 'Configure custom components';
|
||||
lisMenuConfigCustomComps = 'Configure custom components ...';
|
||||
|
||||
@ -4067,7 +4067,7 @@ resourcestring
|
||||
lisPckOptsPackageOptions = 'Package Options';
|
||||
|
||||
// package explorer (package graph)
|
||||
dlgPackageGraph = 'Package Graph';
|
||||
lisMenuPackageGraph = 'Package Graph';
|
||||
lisPckExplLoadedPackages = 'Loaded Packages:';
|
||||
lisPckExplIsRequiredBy = 'Selected package is required by:';
|
||||
lisPckExplPackageNotFound = 'Package %s not found';
|
||||
@ -4267,8 +4267,6 @@ resourcestring
|
||||
lisInstallUninstallPackages = 'Install/Uninstall packages';
|
||||
lisMenuEditInstallPkgs = 'Install/Uninstall packages ...';
|
||||
lisAvailablePackages = 'Available packages';
|
||||
lisKMPackageGraph = 'Package graph';
|
||||
lisMenuPackageGraph = 'Package Graph ...';
|
||||
lisExportList = 'Export list';
|
||||
lisDoNotInstall = 'Do not install';
|
||||
lisImportList = 'Import list';
|
||||
|
@ -385,7 +385,7 @@ begin
|
||||
FUpdateLock:=PackageGraph.UpdateLock;
|
||||
fSortedPackages:=TAVLTree.Create(@CompareLazPackageID);
|
||||
Name:=NonModalIDEWindowNames[nmiwPkgGraphExplorer];
|
||||
Caption:=dlgPackageGraph;
|
||||
Caption:=lisMenuPackageGraph;
|
||||
|
||||
SetupComponents;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user