blob: 9b3e06825f52af2650c48632bf33dc1411a5157e [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 * - Rwanda Steve Murphy murf@e-tools.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['Mutarama', 'Gashyantare', 'Werurwe', 'Mata', 'Gicuransi', 'Kamena', 'Nyakanga', 'Kanama', 'Nzeli', 'Ukwakira', 'Ugushyingo', 'Ukuboza'],
21 'months_short' => ['Mut', 'Gas', 'Wer', 'Mat', 'Gic', 'Kam', 'Nya', 'Kan', 'Nze', 'Ukw', 'Ugu', 'Uku'],
22 'weekdays' => ['Ku cyumweru', 'Kuwa mbere', 'Kuwa kabiri', 'Kuwa gatatu', 'Kuwa kane', 'Kuwa gatanu', 'Kuwa gatandatu'],
23 'weekdays_short' => ['Mwe', 'Mbe', 'Kab', 'Gtu', 'Kan', 'Gnu', 'Gnd'],
24 'weekdays_min' => ['Mwe', 'Mbe', 'Kab', 'Gtu', 'Kan', 'Gnu', 'Gnd'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'second' => ':count vuna', // less reliable
29 's' => ':count vuna', // less reliable
30 'a_second' => ':count vuna', // less reliable
31
32 'year' => 'aka :count',
33 'y' => 'aka :count',
34 'a_year' => 'aka :count',
35
36 'month' => 'ezi :count',
37 'm' => 'ezi :count',
38 'a_month' => 'ezi :count',
39
40 'week' => ':count icyumweru',
41 'w' => ':count icyumweru',
42 'a_week' => ':count icyumweru',
43
44 'day' => ':count nsi',
45 'd' => ':count nsi',
46 'a_day' => ':count nsi',
47
48 'hour' => 'saha :count',
49 'h' => 'saha :count',
50 'a_hour' => 'saha :count',
51
52 'minute' => ':count -nzinya',
53 'min' => ':count -nzinya',
54 'a_minute' => ':count -nzinya',
55]);