diff options
author | Khaled Hosny <khaled@aliftype.com> | 2023-03-25 23:29:48 +0200 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2023-03-26 01:23:38 +0000 |
commit | ced4a9221329b88484f90ab6d00d797f024585bb (patch) | |
tree | 044778d618e8bc2edb7a3760ef0f505bc2acd608 /sw/inc/strings.hrc | |
parent | 67bb7f71b785d3d831ffaa47262b6cbd84e71c42 (diff) |
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 <fitojb@ubuntu.com>
Diffstat (limited to 'sw/inc/strings.hrc')
-rw-r--r-- | sw/inc/strings.hrc | 12 |
1 files changed, 6 insertions, 6 deletions
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") |