blob: aa0221404e03d8ce8f679dd7e475cc9804dcd86a [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 * - Akademe ya Luganda Kizito Birabwa kompyuta@kizito.uklinux.net
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['Janwaliyo', 'Febwaliyo', 'Marisi', 'Apuli', 'Maayi', 'Juuni', 'Julaayi', 'Agusito', 'Sebuttemba', 'Okitobba', 'Novemba', 'Desemba'],
21 'months_short' => ['Jan', 'Feb', 'Mar', 'Apu', 'Maa', 'Juu', 'Jul', 'Agu', 'Seb', 'Oki', 'Nov', 'Des'],
22 'weekdays' => ['Sabiiti', 'Balaza', 'Lwakubiri', 'Lwakusatu', 'Lwakuna', 'Lwakutaano', 'Lwamukaaga'],
23 'weekdays_short' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'],
24 'weekdays_min' => ['Sab', 'Bal', 'Lw2', 'Lw3', 'Lw4', 'Lw5', 'Lw6'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'month' => ':count njuba', // less reliable
29 'm' => ':count njuba', // less reliable
30 'a_month' => ':count njuba', // less reliable
31
32 'year' => ':count mwaaka',
33 'y' => ':count mwaaka',
34 'a_year' => ':count mwaaka',
35
36 'week' => ':count sabbiiti',
37 'w' => ':count sabbiiti',
38 'a_week' => ':count sabbiiti',
39
40 'day' => ':count lunaku',
41 'd' => ':count lunaku',
42 'a_day' => ':count lunaku',
43
44 'hour' => 'saawa :count',
45 'h' => 'saawa :count',
46 'a_hour' => 'saawa :count',
47
48 'minute' => 'ddakiika :count',
49 'min' => 'ddakiika :count',
50 'a_minute' => 'ddakiika :count',
51
52 'second' => ':count kyʼokubiri',
53 's' => ':count kyʼokubiri',
54 'a_second' => ':count kyʼokubiri',
55]);