blob: 9355184f7a2ba1dd77e391579f9ea7a9a410f005 [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 'meridiem' => ['Adduha', 'Aluula'],
13 'weekdays' => ['Alhadi', 'Atinni', 'Atalaata', 'Alarba', 'Alhamiisa', 'Alzuma', 'Asibti'],
14 'weekdays_short' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'],
15 'weekdays_min' => ['Alh', 'Ati', 'Ata', 'Ala', 'Alm', 'Alz', 'Asi'],
16 'months' => ['Žanwiye', 'Feewiriye', 'Marsi', 'Awiril', 'Me', 'Žuweŋ', 'Žuyye', 'Ut', 'Sektanbur', 'Oktoobur', 'Noowanbur', 'Deesanbur'],
17 'months_short' => ['Žan', 'Fee', 'Mar', 'Awi', 'Me', 'Žuw', 'Žuy', 'Ut', 'Sek', 'Okt', 'Noo', 'Dee'],
18 'first_day_of_week' => 1,
19 'formats' => [
20 'LT' => 'HH:mm',
21 'LTS' => 'HH:mm:ss',
22 'L' => 'D/M/YYYY',
23 'LL' => 'D MMM YYYY',
24 'LLL' => 'D MMMM YYYY HH:mm',
25 'LLLL' => 'dddd D MMMM YYYY HH:mm',
26 ],
27
28 'month' => ':count alaada', // less reliable
29 'm' => ':count alaada', // less reliable
30 'a_month' => ':count alaada', // less reliable
31
32 'hour' => ':count ɲaajin', // less reliable
33 'h' => ':count ɲaajin', // less reliable
34 'a_hour' => ':count ɲaajin', // less reliable
35
36 'minute' => ':count zarbu', // less reliable
37 'min' => ':count zarbu', // less reliable
38 'a_minute' => ':count zarbu', // less reliable
39
40 'year' => ':count jiiri',
41 'y' => ':count jiiri',
42 'a_year' => ':count jiiri',
43
44 'week' => ':count jirbiiyye',
45 'w' => ':count jirbiiyye',
46 'a_week' => ':count jirbiiyye',
47
48 'day' => ':count zaari',
49 'd' => ':count zaari',
50 'a_day' => ':count zaari',
51
52 'second' => ':count ihinkante',
53 's' => ':count ihinkante',
54 'a_second' => ':count ihinkante',
55]);