From 402c1e6deaaa11e1608926e0951de225c44764f8 Mon Sep 17 00:00:00 2001 From: Maxim Ganetsky Date: Fri, 25 Oct 2024 15:39:11 +0300 Subject: [PATCH] Icons_to_html: adjusted resource strings to unify terminology with other IDE parts and avoid platform-specific lineendings --- tools/icons_to_html/main.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/icons_to_html/main.pas b/tools/icons_to_html/main.pas index 0d87249a76..b27a322eaf 100644 --- a/tools/icons_to_html/main.pas +++ b/tools/icons_to_html/main.pas @@ -90,13 +90,13 @@ resourcestring rsSize = 'Size'; rsName = 'Name'; rsInfoText1 = 'The images in this folder can be used in Lazarus applications as toolbar or button icons.'; - rsInfoText2 = 'The different sizes as required by LCL scaling for high-dpi screens can be used like this, for example:'; + rsInfoText2 = 'The different sizes as required by LCL scaling for Hi-DPI screens can be used like this, for example:'; rsSizeInfoSmall = '16x16, 24x24 and 32x32 pixels for "small" images,'; rsSizeInfoMedium = '24x24, 36x36 and 48x48 pixels for "medium" sized images,'; rsSizeInfoLarge = '32x32, 48x48 and 64x64 pixels for "large" images.'; rsImagesWereProvidedBy = 'The images were kindly provided by Roland Hahn (%s).'; - rsLicense = 'License:'#13'%s'; - rsFreelyAvailable = 'freely available, no restrictions in usage'; + rsLicense = 'License:' + LineEnding + '%s'; + rsFreelyAvailable = '(freely available, no restrictions in usage)'; { TMainForm }