Merge "Warn if stateful ParserOutput transforms are used"
[lhc/web/wiklou.git] / includes / collation / AbkhazUppercaseCollation.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @since 1.31
19 *
20 * @file
21 */
22
23 class AbkhazUppercaseCollation extends CustomUppercaseCollation {
24
25 public function __construct() {
26 parent::__construct( [
27 'А',
28 'Б',
29 'В',
30 'Г',
31 'Гь',
32 'Гә',
33 'Ҕ',
34 'Ҕь',
35 'Ҕә',
36 'Д',
37 'Дә',
38 'Е',
39 'Ж',
40 'Жь',
41 'Жә',
42 'З',
43 'Ӡ',
44 'Ӡә',
45 'И',
46 'К',
47 'Кь',
48 'Кә',
49 'Қ',
50 'Қь',
51 'Қә',
52 'Ҟ',
53 'Ҟь',
54 'Ҟә',
55 'Л',
56 'М',
57 'Н',
58 'О',
59 'П',
60 'Ҧ',
61 'Р',
62 'С',
63 'Т',
64 'Тә',
65 'Ҭ',
66 'Ҭә',
67 'У',
68 'Ф',
69 'Х',
70 'Хь',
71 'Хә',
72 'Ҳ',
73 'Ҳә',
74 'Ц',
75 'Цә',
76 'Ҵ',
77 'Ҵә',
78 'Ч',
79 'Ҷ',
80 'Ҽ',
81 'Ҿ',
82 'Ш',
83 'Шь',
84 'Шә',
85 'Ы',
86 'Ҩ',
87 'Џ',
88 'Џь',
89 'ь',
90 'ә',
91 ], Language::factory( 'ab' ) );
92 }
93 }