blob: 02c983aa51a3b50aacd1e74dee42cb6f7e61311e [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 */
11return array_replace_recursive(require __DIR__.'/en.php', [
12 'months' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
13 'months_short' => ['M01', 'M02', 'M03', 'M04', 'M05', 'M06', 'M07', 'M08', 'M09', 'M10', 'M11', 'M12'],
14 'first_day_of_week' => 1,
15 'formats' => [
16 'LT' => 'HH:mm',
17 'LTS' => 'HH:mm:ss',
18 'L' => 'YYYY-MM-DD',
19 'LL' => 'YYYY MMM D',
20 'LLL' => 'YYYY MMMM D HH:mm',
21 'LLLL' => 'YYYY MMMM D, dddd HH:mm',
22 ],
23
24 'year' => ':count лѣто',
25 'y' => ':count лѣто',
26 'a_year' => ':count лѣто',
27
28 'month' => ':count мѣсѧць',
29 'm' => ':count мѣсѧць',
30 'a_month' => ':count мѣсѧць',
31
32 'week' => ':count сєдмица',
33 'w' => ':count сєдмица',
34 'a_week' => ':count сєдмица',
35
36 'day' => ':count дьнь',
37 'd' => ':count дьнь',
38 'a_day' => ':count дьнь',
39
40 'hour' => ':count година',
41 'h' => ':count година',
42 'a_hour' => ':count година',
43
44 'minute' => ':count малъ', // less reliable
45 'min' => ':count малъ', // less reliable
46 'a_minute' => ':count малъ', // less reliable
47
48 'second' => ':count въторъ',
49 's' => ':count въторъ',
50 'a_second' => ':count въторъ',
51]);