IDE: improved Publish dialog i18n

git-svn-id: trunk@58879 -
This commit is contained in:
maxim 2018-09-05 23:10:11 +00:00
parent 91a120fae3
commit 0422d3bc70
2 changed files with 7 additions and 5 deletions

View File

@ -3877,10 +3877,11 @@ resourcestring
+'comma and semicolon separates alternatives. For example: Simple '
+'syntax *.pas;*.pp corresponds to ^(.*\.pas|.*\.pp)$';
lisUseFilterForExtraFiles = 'Use filter to include extra files';
lisCopyFilesFailed = 'Copying files failed';
lisCopyPackagesFailed = 'Copying packages failed';
lisWriteProjectInfoFailed = 'Writing the project info file failed';
lisWritePackageInfoFailed = 'Writing the package info file failed';
lisCopyFilesFailed = 'Copying files failed.';
lisCopyPackagesFailed = 'Copying packages failed.';
lisWriteProjectInfoFailed = 'Writing the project info file failed.';
lisWritePackageInfoFailed = 'Writing the package info file failed.';
lisPublishedTo = 'Published to %s';
lisIncludeFilter = 'Include filter';
lisInvalidPublishingDirectory = 'Invalid publishing Directory';
lisEmptyDestinationForPublishing = 'Destination directory for publishing'

View File

@ -528,7 +528,8 @@ begin
Result := Compress;
if Result = mrOK then
IDEMessageDialog(lisSuccess, 'Published to '+FDestDir, mtInformation,[mbOk]);
IDEMessageDialog(lisSuccess, Format(lisPublishedTo, [FDestDir]),
mtInformation, [mbOk]);
end;
{ TPublishModuleDialog }