Packager: improved i18n, bug #28021

git-svn-id: trunk@48956 -
This commit is contained in:
maxim 2015-05-07 00:08:04 +00:00
parent 21558ffbba
commit d2b3e49003
2 changed files with 2 additions and 1 deletions

View File

@ -4181,6 +4181,7 @@ resourcestring
lisPkgMangTheFileOfPackageWasNotFound = 'The file "%s" of package %s was not found.';
lisPkgSysThePackageIsInstalledButNoValidPackageFileWasFound = 'The package "%s" is installed, '
+'but no valid package file (.lpk) was found.%sA broken dummy package was created.';
lisSkipTheseWarnings = 'Skip these warnings';
// package defs
lisPkgDefsOutputDirectory = 'Output directory';

View File

@ -5596,7 +5596,7 @@ begin
CurResult:=IDEQuestionDialog(lisPkgSysPackageFileNotFound,
Format(lisPkgSysThePackageIsInstalledButNoValidPackageFileWasFound,
[BrokenPackage.Name, LineEnding]),
mtError,[mrOk,mrYesToAll,'Skip these warnings']);
mtError, [mrOk, mrYesToAll, lisSkipTheseWarnings]);
if CurResult=mrYesToAll then
Quiet:=true;
end;