Merge "Convert article delete to use OOUI"
[lhc/web/wiklou.git] / includes / collation / BashkirUppercaseCollation.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.30
19 *
20 * @file
21 */
22
23 class BashkirUppercaseCollation 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 ], Language::factory( 'ba' ) );
70 }
71 }