blob: 6230165c10d2bfb9809ddbbb49cef527ebf501cd [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' => ['Ma', 'Mo'],
14 'weekdays' => ['Chumapiri', 'Chumatato', 'Chumaine', 'Chumatano', 'Aramisi', 'Ichuma', 'Esabato'],
15 'weekdays_short' => ['Cpr', 'Ctt', 'Cmn', 'Cmt', 'Ars', 'Icm', 'Est'],
16 'weekdays_min' => ['Cpr', 'Ctt', 'Cmn', 'Cmt', 'Ars', 'Icm', 'Est'],
17 'months' => ['Chanuari', 'Feburari', 'Machi', 'Apiriri', 'Mei', 'Juni', 'Chulai', 'Agosti', 'Septemba', 'Okitoba', 'Nobemba', 'Disemba'],
18 'months_short' => ['Can', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Cul', 'Agt', 'Sep', 'Okt', 'Nob', 'Dis'],
19 'formats' => [
20 'LT' => 'HH:mm',
21 'LTS' => 'HH:mm:ss',
22 'L' => 'DD/MM/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 omotunyi', // less reliable
29 'm' => ':count omotunyi', // less reliable
30 'a_month' => ':count omotunyi', // less reliable
31
32 'week' => ':count isano naibere', // less reliable
33 'w' => ':count isano naibere', // less reliable
34 'a_week' => ':count isano naibere', // less reliable
35
36 'second' => ':count ibere', // less reliable
37 's' => ':count ibere', // less reliable
38 'a_second' => ':count ibere', // less reliable
39
40 'year' => ':count omwaka',
41 'y' => ':count omwaka',
42 'a_year' => ':count omwaka',
43
44 'day' => ':count rituko',
45 'd' => ':count rituko',
46 'a_day' => ':count rituko',
47]);