blob: 620b5795429b43a6184e3a54af5e302673fb242b [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 */
11
12/*
13 * Authors:
14 * - ANLoc Martin Benjamin locales@africanlocalization.net
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'MM/DD/YYYY',
19 ],
20 'months' => ['Januari', 'Februari', 'Machi', 'Epreo', 'Mei', 'Juni', 'Julai', 'Ogasti', 'Septemba', 'Oktoba', 'Novemba', 'Disemba'],
21 'months_short' => ['Jan', 'Feb', 'Mac', 'Epr', 'Mei', 'Jun', 'Jul', 'Oga', 'Sep', 'Okt', 'Nov', 'Dis'],
22 'weekdays' => ['Pa Mulungu', 'Palichimo', 'Palichibuli', 'Palichitatu', 'Palichine', 'Palichisano', 'Pachibelushi'],
23 'weekdays_short' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
24 'weekdays_min' => ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27 'meridiem' => ['uluchelo', 'akasuba'],
28
29 'year' => 'myaka :count',
30 'y' => 'myaka :count',
31 'a_year' => 'myaka :count',
32
33 'month' => 'myeshi :count',
34 'm' => 'myeshi :count',
35 'a_month' => 'myeshi :count',
36
37 'week' => 'umulungu :count',
38 'w' => 'umulungu :count',
39 'a_week' => 'umulungu :count',
40
41 'day' => 'inshiku :count',
42 'd' => 'inshiku :count',
43 'a_day' => 'inshiku :count',
44
45 'hour' => 'awala :count',
46 'h' => 'awala :count',
47 'a_hour' => 'awala :count',
48
49 'minute' => 'miniti :count',
50 'min' => 'miniti :count',
51 'a_minute' => 'miniti :count',
52
53 'second' => 'sekondi :count',
54 's' => 'sekondi :count',
55 'a_second' => 'sekondi :count',
56]);