From 98627d4cabec4fe1d786aec4aeff429146d93805 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 19 Jul 2017 21:48:56 +0200 Subject: [PATCH] IcuCollation: Fix diacritic characters for Aromanian (rup) and Moldovan (mo) headings MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit They should be Ș, Ț (comma-below) and instead they were cedilla-below (Ş, Ţ). Same as for Romanian (ro) in 486f64f28302ecceed04977180fd21470cb54c81. 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 --- includes/collation/IcuCollation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/collation/IcuCollation.php b/includes/collation/IcuCollation.php index 2661bad867..e2f82d4781 100644 --- a/includes/collation/IcuCollation.php +++ b/includes/collation/IcuCollation.php @@ -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' => [ 'Á', 'Č', 'Ʒ', 'Ǯ', 'Đ', 'Ǧ', 'Ǥ', 'Ǩ', 'Ŋ', -- 2.20.1