From 486f64f28302ecceed04977180fd21470cb54c81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 19 Jul 2017 16:27:50 +0200 Subject: [PATCH] IcuCollation: Fix diacritic characters for Romanian (ro) 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 (Ş, Ţ). Bug: T168711 Change-Id: I6dc873c3ce93bca3e425439f70d0fb30aecc9533 --- includes/collation/IcuCollation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/collation/IcuCollation.php b/includes/collation/IcuCollation.php index e0eb1c13c8..84f71886da 100644 --- a/includes/collation/IcuCollation.php +++ b/includes/collation/IcuCollation.php @@ -196,7 +196,7 @@ class IcuCollation extends Collation { 'pl' => [ "Ą", "Ć", "Ę", "Ł", "Ń", "Ó", "Ś", "Ź", "Ż" ], 'pt' => [], 'rm' => [], // not in libicu - 'ro' => [ "Ă", "Â", "Î", "Ş", "Ţ" ], + 'ro' => [ "Ă", "Â", "Î", "Ș", "Ț" ], 'ru' => [], 'rup' => [ "Ă", "Â", "Î", "Ľ", "Ń", "Ş", "Ţ" ], // not in libicu 'sco' => [], -- 2.20.1