blob: 781518694ece878a85fa441e835f4f79c364d27a [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 'meridiem' => ['ⵜⵉⴼⴰⵡⵜ', 'ⵜⴰⴷⴳⴳⵯⴰⵜ'],
14 'weekdays' => ['ⴰⵙⴰⵎⴰⵙ', 'ⴰⵢⵏⴰⵙ', 'ⴰⵙⵉⵏⴰⵙ', 'ⴰⴽⵕⴰⵙ', 'ⴰⴽⵡⴰⵙ', 'ⵙⵉⵎⵡⴰⵙ', 'ⴰⵙⵉⴹⵢⴰⵙ'],
15 'weekdays_short' => ['ⴰⵙⴰ', 'ⴰⵢⵏ', 'ⴰⵙⵉ', 'ⴰⴽⵕ', 'ⴰⴽⵡ', 'ⴰⵙⵉⵎ', 'ⴰⵙⵉⴹ'],
16 'weekdays_min' => ['ⴰⵙⴰ', 'ⴰⵢⵏ', 'ⴰⵙⵉ', 'ⴰⴽⵕ', 'ⴰⴽⵡ', 'ⴰⵙⵉⵎ', 'ⴰⵙⵉⴹ'],
17 'months' => ['ⵉⵏⵏⴰⵢⵔ', 'ⴱⵕⴰⵢⵕ', 'ⵎⴰⵕⵚ', 'ⵉⴱⵔⵉⵔ', 'ⵎⴰⵢⵢⵓ', 'ⵢⵓⵏⵢⵓ', 'ⵢⵓⵍⵢⵓⵣ', 'ⵖⵓⵛⵜ', 'ⵛⵓⵜⴰⵏⴱⵉⵔ', 'ⴽⵜⵓⴱⵔ', 'ⵏⵓⵡⴰⵏⴱⵉⵔ', 'ⴷⵓⵊⴰⵏⴱⵉⵔ'],
18 'months_short' => ['ⵉⵏⵏ', 'ⴱⵕⴰ', 'ⵎⴰⵕ', 'ⵉⴱⵔ', 'ⵎⴰⵢ', 'ⵢⵓⵏ', 'ⵢⵓⵍ', 'ⵖⵓⵛ', 'ⵛⵓⵜ', 'ⴽⵜⵓ', 'ⵏⵓⵡ', 'ⴷⵓⵊ'],
19 'first_day_of_week' => 6,
20 'weekend' => [5, 6],
21 'formats' => [
22 'LT' => 'HH:mm',
23 'LTS' => 'HH:mm:ss',
24 'L' => 'D/M/YYYY',
25 'LL' => 'D MMM, YYYY',
26 'LLL' => 'D MMMM YYYY HH:mm',
27 'LLLL' => 'dddd D MMMM YYYY HH:mm',
28 ],
29
30 'year' => ':count aseggwas',
31 'y' => ':count aseggwas',
32 'a_year' => ':count aseggwas',
33
34 'month' => ':count ayyur',
35 'm' => ':count ayyur',
36 'a_month' => ':count ayyur',
37
38 'week' => ':count imalass',
39 'w' => ':count imalass',
40 'a_week' => ':count imalass',
41
42 'day' => ':count ass',
43 'd' => ':count ass',
44 'a_day' => ':count ass',
45
46 'hour' => ':count urɣ', // less reliable
47 'h' => ':count urɣ', // less reliable
48 'a_hour' => ':count urɣ', // less reliable
49
50 'minute' => ':count ⴰⵎⵥⵉ', // less reliable
51 'min' => ':count ⴰⵎⵥⵉ', // less reliable
52 'a_minute' => ':count ⴰⵎⵥⵉ', // less reliable
53
54 'second' => ':count sin', // less reliable
55 's' => ':count sin', // less reliable
56 'a_second' => ':count sin', // less reliable
57]);