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