From 9c6655adb2c49f0b92553cefec0a48d185948ab3 Mon Sep 17 00:00:00 2001 From: MatmaRex Date: Mon, 18 Mar 2013 13:24:25 +0100 Subject: [PATCH] IcuCollation::$tailoringFirstLetters: 'sv', 'vi' verified MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * sv: per Lejonel in comments on bug 45446 * vi: per Minh Nguyễn in comments on bug 45979 Change-Id: I96bbcd73e75f9fc85a5c0b402eae87e5cda2259e --- includes/Collation.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Collation.php b/includes/Collation.php index a0e1d2d113..bed4632a40 100644 --- a/includes/Collation.php +++ b/includes/Collation.php @@ -213,7 +213,10 @@ class IcuCollation extends Collation { 'pl' => array( "Ą", "Ć", "Ę", "Ł", "Ń", "Ó", "Ś", "Ź", "Ż" ), 'pt' => array(), 'ru' => array(), + 'sv' => array( "Å", "Ä", "Ö" ), + '-sv' => array( "Þ" ), // sorted as "th" in Swedish, causing unexpected output - bug 45446 'uk' => array( "Ґ", "Ь" ), + 'vi' => array( "Ă", "Â", "Đ", "Ê", "Ô", "Ơ", "Ư" ), // Not verified, but likely correct 'af' => array(), 'ast' => array( "Ch", "Ll", "Ñ" ), @@ -266,14 +269,11 @@ class IcuCollation extends Collation { 'smn' => array( "Á", "Č", "Đ", "Ŋ", "Š", "Ŧ", "Ž", "Æ", "Ø", "Å", "Ä", "Ö" ), 'sq' => array( "Ç", "Dh", "Ë", "Gj", "Ll", "Nj", "Rr", "Sh", "Th", "Xh", "Zh" ), 'sr' => array(), - 'sv' => array( "Å", "Ä", "Ö" ), - '-sv' => array( "Þ" ), // sorted as "th" in Swedish, causing unexpected output - bug 45446 'tk' => array( "Ç", "Ä", "Ž", "Ň", "Ö", "Ş", "Ü", "Ý" ), 'tl' => array( "Ñ", "Ng" ), 'tr' => array( "Ç", "Ğ", "İ", "Ö", "Ş", "Ü" ), 'tt' => array( "Ә", "Ө", "Ү", "Җ", "Ң", "Һ" ), 'uz' => array( "Ch", "G'", "Ng", "O'", "Sh" ), - 'vi' => array( "Ă", "Â", "Đ", "Ê", "Ô", "Ơ", "Ư" ), ); const RECORD_LENGTH = 14; -- 2.20.1