From d4ecf72cc190a03b53cb1f14992fa44b060e005a Mon Sep 17 00:00:00 2001 From: Maxim Ganetsky Date: Sun, 20 Oct 2024 21:54:59 +0300 Subject: [PATCH] Icons_to_html: restore resource strings after 464d4133ccae215e94a2e7e654b67bd6107962fc This reverts commit 464d4133ccae215e94a2e7e654b67bd6107962fc. --- tools/icons_to_html/main.pas | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/icons_to_html/main.pas b/tools/icons_to_html/main.pas index 9af84fd329..7ac2c5b3e3 100644 --- a/tools/icons_to_html/main.pas +++ b/tools/icons_to_html/main.pas @@ -61,13 +61,13 @@ implementation resourcestring rsInformation = 'Information'; rsError = 'Error'; - rsTheConfigurationCouldNotBeSaved = 'The configuration file could not be saved.'; - rsTheTempFileCouldNotBeDeleted = 'The temp file could not be deleted.'; + rsTheConfigurationCouldNotBeSaved = 'Configuration file could not be saved.'; + rsTheTempFileCouldNotBeDeleted = 'Temporary file could not be deleted.'; rsTheFileCouldNotBeSavedAs = 'The file could not be saved as: %s'; rsSavedAs = 'Saved as: %s'; - rsNoPngImageFilesFoundIn = 'No png image files found in %s'; - rsNoMatchingPngImageFilesFoundIn = 'No matching png image files found in %s'; - rsTheFolderDoesNotExist = 'The folder [%s] does not exist or is currently not available.'#13#13'Should it be removed from the list?'; + rsNoPngImageFilesFoundIn = 'No PNG image files found in %s'; + rsNoMatchingPngImageFilesFoundIn = 'No matching PNG image files found in %s'; + rsTheFolderDoesNotExist = 'Folder "%s" does not exist or is currently not available.'+LineEnding+LineEnding+'Should it be removed from the list?'; rsThisFolderContains = 'This folder contains %0:d icons in %1:d icon groups with %2:d icon sizes.'; rsSize = 'Size'; rsName = 'Name';