sw/inc/strings.hrc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
New commits: commit ced4a9221329b88484f90ab6d00d797f024585bb Author: Khaled Hosny <[email protected]> AuthorDate: Sat Mar 25 23:29:48 2023 +0200 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Sun Mar 26 01:23:38 2023 +0000 tdf#133089: Use proper Unicode code points for bullet style names The names introduced in: commit 43c44f7c82fdcf7e5e6eccb0a80d5bb0e1e3a86c Date: Tue Apr 2 08:30:17 2019 +0100 tdf#124471 Change bullet styles names in Style section of Sidebar Use Private Use Area code points from OpenSymbol font for the bullets, but the code in sw/source/core/doc/DocumentStylePoolManager.cxx uses proper non-PUA code points. PUA is problematic because they are “private” as in Unicode does not define how they are interpret, so they are font-specific and many systems will not do font fallback for them because of this. The names now use the non-PUA code points. Change-Id: I462c054cff1ffbdfe66ad8d8172901b23fb4810c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149588 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc index 38cdabf8ba01..a7e7c88af83a 100644 --- a/sw/inc/strings.hrc +++ b/sw/inc/strings.hrc @@ -221,12 +221,12 @@ #define STR_POOLNUMRULE_BUL1 NC_("STR_POOLNUMRULE_BUL1", "Bullet •") //Bullet \u2013 #define STR_POOLNUMRULE_BUL2 NC_("STR_POOLNUMRULE_BUL2", "Bullet –") -//Bullet \uE4C4 -#define STR_POOLNUMRULE_BUL3 NC_("STR_POOLNUMRULE_BUL3", "Bullet ") -//Bullet \uE49E -#define STR_POOLNUMRULE_BUL4 NC_("STR_POOLNUMRULE_BUL4", "Bullet ") -//Bullet \uE20B -#define STR_POOLNUMRULE_BUL5 NC_("STR_POOLNUMRULE_BUL5", "Bullet ") +//Bullet \u2611 +#define STR_POOLNUMRULE_BUL3 NC_("STR_POOLNUMRULE_BUL3", "Bullet ☑") +//Bullet \u27A2 +#define STR_POOLNUMRULE_BUL4 NC_("STR_POOLNUMRULE_BUL4", "Bullet ➢") +//Bullet \u2717 +#define STR_POOLNUMRULE_BUL5 NC_("STR_POOLNUMRULE_BUL5", "Bullet ✗") #define STR_COLUMN_VALUESET_ITEM0 NC_("STR_COLUMN_VALUESET_ITEM0", "1 column") #define STR_COLUMN_VALUESET_ITEM1 NC_("STR_COLUMN_VALUESET_ITEM1", "2 columns with equal size") #define STR_COLUMN_VALUESET_ITEM2 NC_("STR_COLUMN_VALUESET_ITEM2", "3 columns with equal size")
