blob: 9592d15d569538492234b0e99f6ff6663424b0ba [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/**
4 * This file is part of the Carbon package.
5 *
6 * (c) Brian Nesbitt <brian@nesbot.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12/*
13 * Authors:
14 * - bug-glibc-locales@gnu.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['январы', 'февралы', 'мартъийы', 'апрелы', 'майы', 'июны', 'июлы', 'августы', 'сентябры', 'октябры', 'ноябры', 'декабры'],
21 'months_short' => ['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'],
22 'weekdays' => ['Хуыцаубон', 'Къуырисæр', 'Дыццæг', 'Æртыццæг', 'Цыппæрæм', 'Майрæмбон', 'Сабат'],
23 'weekdays_short' => ['Хцб', 'Крс', 'Дцг', 'Æрт', 'Цпр', 'Мрб', 'Сбт'],
24 'weekdays_min' => ['Хцб', 'Крс', 'Дцг', 'Æрт', 'Цпр', 'Мрб', 'Сбт'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'minute' => ':count гыццыл', // less reliable
29 'min' => ':count гыццыл', // less reliable
30 'a_minute' => ':count гыццыл', // less reliable
31
32 'second' => ':count æндæр', // less reliable
33 's' => ':count æндæр', // less reliable
34 'a_second' => ':count æндæр', // less reliable
35
36 'year' => ':count аз',
37 'y' => ':count аз',
38 'a_year' => ':count аз',
39
40 'month' => ':count мӕй',
41 'm' => ':count мӕй',
42 'a_month' => ':count мӕй',
43
44 'week' => ':count къуыри',
45 'w' => ':count къуыри',
46 'a_week' => ':count къуыри',
47
48 'day' => ':count бон',
49 'd' => ':count бон',
50 'a_day' => ':count бон',
51
52 'hour' => ':count сахат',
53 'h' => ':count сахат',
54 'a_hour' => ':count сахат',
55]);