diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2022-12-09 13:12:11 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-12-12 11:29:06 +0000 |
commit | 1f77a3c5d4d71d868cad47bf0d16d6177753b79e (patch) | |
tree | 6b0d1affc2ef25ab04145d1a74770887eb1aa08e /wizards | |
parent | 7757e5844a6e9f6e039f4a28e7803319bb094d94 (diff) |
PRODUCTNAME -> %PRODUCTNAME
Spotted thanks to:
grep -nR PRODUCTNAME *|grep -v \%PRODUCTNAME|grep -v '${PRODUCTNAME}'|grep -v '\[PRODUCTNAME\]'|grep -v '\[FULLPRODUCTNAME\]'
suggested in tdf#152265 UI: "tip of the day: placeholder "PRODUCTNAME" in text of the tip"
Change-Id: I5292eeb1767404f2aa31f4b51b410a29afafcd6d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143851
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/common/strings.hrc | 10 | ||||
-rw-r--r-- | wizards/source/resources/resources_en_US.properties | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/wizards/com/sun/star/wizards/common/strings.hrc b/wizards/com/sun/star/wizards/common/strings.hrc index bb3f07237961..d176df485b50 100644 --- a/wizards/com/sun/star/wizards/common/strings.hrc +++ b/wizards/com/sun/star/wizards/common/strings.hrc @@ -30,11 +30,11 @@ def NC_(context, string): # common section RID_COMMON_START_0 = NC_("RID_COMMON_START_0", "The directory '%1' could not be created.<BR>There may not be enough space left on your hard disk.") -RID_COMMON_START_1 = NC_("RID_COMMON_START_1", "The text document could not be created.<BR>Please check if the module 'PRODUCTNAME Writer' is installed.") -RID_COMMON_START_2 = NC_("RID_COMMON_START_2", "The spreadsheet could not be created.<BR>Please check if the module 'PRODUCTNAME Calc' is installed.") -RID_COMMON_START_3 = NC_("RID_COMMON_START_3", "The presentation could not be created.<BR>Please check if the module 'PRODUCTNAME Impress' is installed.") -RID_COMMON_START_4 = NC_("RID_COMMON_START_4", "The drawing could not be created.<BR>Please check if the module 'PRODUCTNAME Draw' is installed.") -RID_COMMON_START_5 = NC_("RID_COMMON_START_5", "The formula could not be created.<BR>Please check if the module 'PRODUCTNAME Math' is installed.") +RID_COMMON_START_1 = NC_("RID_COMMON_START_1", "The text document could not be created.<BR>Please check if the module '%PRODUCTNAME Writer' is installed.") +RID_COMMON_START_2 = NC_("RID_COMMON_START_2", "The spreadsheet could not be created.<BR>Please check if the module '%PRODUCTNAME Calc' is installed.") +RID_COMMON_START_3 = NC_("RID_COMMON_START_3", "The presentation could not be created.<BR>Please check if the module '%PRODUCTNAME Impress' is installed.") +RID_COMMON_START_4 = NC_("RID_COMMON_START_4", "The drawing could not be created.<BR>Please check if the module '%PRODUCTNAME Draw' is installed.") +RID_COMMON_START_5 = NC_("RID_COMMON_START_5", "The formula could not be created.<BR>Please check if the module '%PRODUCTNAME Math' is installed.") RID_COMMON_START_6 = NC_("RID_COMMON_START_6", "The files required could not be found.<BR>Please start the %PRODUCTNAME Setup and choose 'Repair'.") RID_COMMON_START_7 = NC_("RID_COMMON_START_7", "The file '<PATH>' already exists.<BR><BR>Would you like to overwrite the existing file?") RID_COMMON_START_8 = NC_("RID_COMMON_START_8", "Yes") diff --git a/wizards/source/resources/resources_en_US.properties b/wizards/source/resources/resources_en_US.properties index 8649b2500e6a..d75cb03bdf05 100644 --- a/wizards/source/resources/resources_en_US.properties +++ b/wizards/source/resources/resources_en_US.properties @@ -23,11 +23,11 @@ # resources for com.sun.star.wizards # RID_COMMON_0=The directory '%1' could not be created.<BR>There may not be enough space left on your hard disk. -RID_COMMON_1=The text document could not be created.<BR>Please check if the module 'PRODUCTNAME Writer' is installed. -RID_COMMON_2=The spreadsheet could not be created.<BR>Please check if the module 'PRODUCTNAME Calc' is installed. -RID_COMMON_3=The presentation could not be created.<BR>Please check if the module 'PRODUCTNAME Impress' is installed. -RID_COMMON_4=The drawing could not be created.<BR>Please check if the module 'PRODUCTNAME Draw' is installed. -RID_COMMON_5=The formula could not be created.<BR>Please check if the module 'PRODUCTNAME Math' is installed. +RID_COMMON_1=The text document could not be created.<BR>Please check if the module '%PRODUCTNAME Writer' is installed. +RID_COMMON_2=The spreadsheet could not be created.<BR>Please check if the module '%PRODUCTNAME Calc' is installed. +RID_COMMON_3=The presentation could not be created.<BR>Please check if the module '%PRODUCTNAME Impress' is installed. +RID_COMMON_4=The drawing could not be created.<BR>Please check if the module '%PRODUCTNAME Draw' is installed. +RID_COMMON_5=The formula could not be created.<BR>Please check if the module '%PRODUCTNAME Math' is installed. RID_COMMON_6=The files required could not be found.<BR>Please start the %PRODUCTNAME Setup and choose 'Repair'. RID_COMMON_7=The file '<PATH>' already exists.<BR><BR>Would you like to overwrite the existing file? RID_COMMON_8=Yes |