blob: 08ddbf1300965ef3ee1d88844840b60ef2c5e618 [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' => ['Subbaahi', 'Zaarikay b'],
13 'weekdays' => ['Alhadi', 'Atinni', 'Atalaata', 'Alarba', 'Alhamisi', '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 'year' => ':count hari', // less reliable
29 'y' => ':count hari', // less reliable
30 'a_year' => ':count hari', // less reliable
31
32 'week' => ':count alzuma', // less reliable
33 'w' => ':count alzuma', // less reliable
34 'a_week' => ':count alzuma', // less reliable
35
36 'second' => ':count atinni', // less reliable
37 's' => ':count atinni', // less reliable
38 'a_second' => ':count atinni', // less reliable
39]);