mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-19 23:49:36 +02:00
IDE: improved project inspector localization, bug #26434
git-svn-id: trunk@45799 -
This commit is contained in:
parent
f5577943cc
commit
7ebb36ec75
@ -4347,6 +4347,7 @@ resourcestring
|
||||
|
||||
// project inspector
|
||||
lisProjInspConfirmDeletingDependency = 'Confirm deleting dependency';
|
||||
lisProjInspRemoveItemsF = 'Remove %s items from project?';
|
||||
lisProjInspConfirmRemovingFile = 'Confirm removing file';
|
||||
lisProjInspDeleteDependencyFor = 'Delete dependency for %s?';
|
||||
lisProjInspRemoveFileFromProject = 'Remove file %s from project?';
|
||||
|
@ -725,7 +725,7 @@ begin
|
||||
// ask for confirmation
|
||||
if DeleteCount=0 then exit;
|
||||
if DeleteCount>1 then
|
||||
Msg:='Remove '+IntToStr(DeleteCount)+' items from project?';
|
||||
Msg:=Format(lisProjInspRemoveItemsF, [IntToStr(DeleteCount)]);
|
||||
if IDEMessageDialog(lisProjInspConfirmDeletingDependency,
|
||||
Msg, mtConfirmation,[mbYes,mbNo])<>mrYes then exit;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user