blob: 789bc391fe65fe6bc817cb7ade335478e461640b [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' => ['RW', 'TŊ'],
14 'weekdays' => ['Cäŋ kuɔth', 'Jiec la̱t', 'Rɛw lätni', 'Diɔ̱k lätni', 'Ŋuaan lätni', 'Dhieec lätni', 'Bäkɛl lätni'],
15 'weekdays_short' => ['Cäŋ', 'Jiec', 'Rɛw', 'Diɔ̱k', 'Ŋuaan', 'Dhieec', 'Bäkɛl'],
16 'weekdays_min' => ['Cäŋ', 'Jiec', 'Rɛw', 'Diɔ̱k', 'Ŋuaan', 'Dhieec', 'Bäkɛl'],
17 'months' => ['Tiop thar pɛt', 'Pɛt', 'Duɔ̱ɔ̱ŋ', 'Guak', 'Duät', 'Kornyoot', 'Pay yie̱tni', 'Tho̱o̱r', 'Tɛɛr', 'Laath', 'Kur', 'Tio̱p in di̱i̱t'],
18 'months_short' => ['Tiop', 'Pɛt', 'Duɔ̱ɔ̱', 'Guak', 'Duä', 'Kor', 'Pay', 'Thoo', 'Tɛɛ', 'Laa', 'Kur', 'Tid'],
19 'first_day_of_week' => 1,
20 'formats' => [
21 'LT' => 'h:mm a',
22 'LTS' => 'h:mm:ss a',
23 'L' => 'D/MM/YYYY',
24 'LL' => 'D MMM YYYY',
25 'LLL' => 'D MMMM YYYY h:mm a',
26 'LLLL' => 'dddd D MMMM YYYY h:mm a',
27 ],
28
29 'year' => ':count jiök', // less reliable
30 'y' => ':count jiök', // less reliable
31 'a_year' => ':count jiök', // less reliable
32
33 'month' => ':count pay', // less reliable
34 'm' => ':count pay', // less reliable
35 'a_month' => ':count pay', // less reliable
36]);