From 3d7966d28c7ac020d8836b7aad33d37c8385b7da Mon Sep 17 00:00:00 2001 From: MatmaRex Date: Thu, 21 Mar 2013 00:12:00 +0100 Subject: [PATCH] IcuCollation::$tailoringFirstLetters: letter removal rules for Finnish MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Four non-ASCII letters - Ǥ, Ŋ, Ŧ, Ʒ - are sorted the same as their unaccented base ASCII versions - G, N, T, Z - causing unexpected output on category pages. Bug: 46330 Change-Id: I976dedfdc651fcc96a2291934924aa40b27f4c2f --- includes/Collation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/Collation.php b/includes/Collation.php index a0e1d2d113..2cbe3c10dc 100644 --- a/includes/Collation.php +++ b/includes/Collation.php @@ -208,6 +208,7 @@ class IcuCollation extends Collation { 'be-tarask' => array( "Ё" ), 'en' => array(), 'fi' => array( "Å", "Ä", "Ö" ), + '-fi' => array( "Ǥ", "Ŋ", "Ŧ", "Ʒ" ), // sorted like G, N, T, Z - bug 46330 'hu' => array( "Cs", "Dz", "Dzs", "Gy", "Ly", "Ny", "Ö", "Sz", "Ty", "Ü", "Zs" ), 'it' => array(), 'pl' => array( "Ą", "Ć", "Ę", "Ł", "Ń", "Ó", "Ś", "Ź", "Ż" ), -- 2.20.1