From: Bartosz Dziewoński Date: Wed, 19 Jul 2017 19:48:56 +0000 (+0200) Subject: IcuCollation: Fix diacritic characters for Aromanian (rup) and Moldovan (mo) headings X-Git-Tag: 1.31.0-rc.0~2661^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles%22%2C%22id_article=%24id_article%22%29%20.%20%22?a=commitdiff_plain;h=98627d4cabec4fe1d786aec4aeff429146d93805;p=lhc%2Fweb%2Fwiklou.git 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 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 --- 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' => [ 'Á', 'Č', 'Æ·', 'Ç®', 'Đ', 'Ǧ', 'Ǥ', 'Ǩ', 'Ŋ',