IcuCollation: Fix diacritic characters for Aromanian (rup) and Moldovan (mo) headings
They should be Ș, Ț (comma-below) and instead they were cedilla-below (Ş, Ţ).
Same as for Romanian (ro) in 486f64f283.
Both of these languages are unsupported by libicu and so the collations
are unlikely to have been used in practice.
Bug: T171043
Bug: T171044
Change-Id: Idd0d593e73cd784fbef7b75e8985f988f5555e26
This commit is contained in:
parent
b9f2cca1f6
commit
98627d4cab
1 changed files with 2 additions and 2 deletions
|
|
@ -180,7 +180,7 @@ class IcuCollation extends Collation {
|
|||
'mk' => [ "Ѓ", "Ќ" ],
|
||||
'ml' => [],
|
||||
'mn' => [],
|
||||
'mo' => [ "Ă", "Â", "Î", "Ş", "Ţ" ], // not in libicu
|
||||
'mo' => [ "Ă", "Â", "Î", "Ș", "Ț" ], // not in libicu
|
||||
'mr' => [ "\xe0\xa4\x82", "\xe0\xa4\x83", "ळ", "क्ष", "ज्ञ" ],
|
||||
'ms' => [],
|
||||
'mt' => [ "Ċ", "Ġ", "Għ", "Ħ", "Ż" ],
|
||||
|
|
@ -198,7 +198,7 @@ class IcuCollation extends Collation {
|
|||
'rm' => [], // not in libicu
|
||||
'ro' => [ "Ă", "Â", "Î", "Ș", "Ț" ],
|
||||
'ru' => [],
|
||||
'rup' => [ "Ă", "Â", "Î", "Ľ", "Ń", "Ş", "Ţ" ], // not in libicu
|
||||
'rup' => [ "Ă", "Â", "Î", "Ľ", "Ń", "Ș", "Ț" ], // not in libicu
|
||||
'sco' => [],
|
||||
'se' => [
|
||||
'Á', 'Č', 'Ʒ', 'Ǯ', 'Đ', 'Ǧ', 'Ǥ', 'Ǩ', 'Ŋ',
|
||||
|
|
|
|||
Loading…
Reference in a new issue