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