blob: f769856284f113fc90c3bb61cbc9ee06b8b3a817 [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 * - ANCHR
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'YYYY.DD.MM',
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 'year' => ':count шо',
29 'y' => ':count шо',
30 'a_year' => ':count шо',
31
32 'month' => ':count бутт',
33 'm' => ':count бутт',
34 'a_month' => ':count бутт',
35
36 'week' => ':count кӏира',
37 'w' => ':count кӏира',
38 'a_week' => ':count кӏира',
39
40 'day' => ':count де',
41 'd' => ':count де',
42 'a_day' => ':count де',
43
44 'hour' => ':count сахьт',
45 'h' => ':count сахьт',
46 'a_hour' => ':count сахьт',
47
48 'minute' => ':count минот',
49 'min' => ':count минот',
50 'a_minute' => ':count минот',
51
52 'second' => ':count секунд',
53 's' => ':count секунд',
54 'a_second' => ':count секунд',
55]);