blob: d86afc5000e529e76fec5f38a88c293baff363cb [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' => ['Kiroko', 'Hwaĩ-inĩ'],
14 'weekdays' => ['Kiumia', 'Njumatatũ', 'Njumaine', 'Njumatana', 'Aramithi', 'Njumaa', 'Njumamothi'],
15 'weekdays_short' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'],
16 'weekdays_min' => ['KMA', 'NTT', 'NMN', 'NMT', 'ART', 'NMA', 'NMM'],
17 'months' => ['Njenuarĩ', 'Mwere wa kerĩ', 'Mwere wa gatatũ', 'Mwere wa kana', 'Mwere wa gatano', 'Mwere wa gatandatũ', 'Mwere wa mũgwanja', 'Mwere wa kanana', 'Mwere wa kenda', 'Mwere wa ikũmi', 'Mwere wa ikũmi na ũmwe', 'Ndithemba'],
18 'months_short' => ['JEN', 'WKR', 'WGT', 'WKN', 'WTN', 'WTD', 'WMJ', 'WNN', 'WKD', 'WIK', 'WMW', 'DIT'],
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 'year' => ':count mĩaka', // less reliable
29 'y' => ':count mĩaka', // less reliable
30 'a_year' => ':count mĩaka', // less reliable
31
32 'month' => ':count mweri', // less reliable
33 'm' => ':count mweri', // less reliable
34 'a_month' => ':count mweri', // less reliable
35
36 'week' => ':count kiumia', // less reliable
37 'w' => ':count kiumia', // less reliable
38 'a_week' => ':count kiumia', // less reliable
39
40 'day' => ':count mũthenya', // less reliable
41 'd' => ':count mũthenya', // less reliable
42 'a_day' => ':count mũthenya', // less reliable
43
44 'hour' => ':count thaa', // less reliable
45 'h' => ':count thaa', // less reliable
46 'a_hour' => ':count thaa', // less reliable
47
48 'minute' => ':count mundu', // less reliable
49 'min' => ':count mundu', // less reliable
50 'a_minute' => ':count mundu', // less reliable
51
52 'second' => ':count igego', // less reliable
53 's' => ':count igego', // less reliable
54 'a_second' => ':count igego', // less reliable
55]);