blob: 37a24ec49b7ced63b246c9ffaeca21d4a2373d43 [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 * - Zuza Software Foundation (Translate.org.za) Dwayne Bailey dwayne@translate.org.za
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YYYY',
19 ],
20 'months' => ['Sunguti', 'Nyenyenyani', 'Nyenyankulu', 'Dzivamisoko', 'Mudyaxihi', 'Khotavuxika', 'Mawuwani', 'Mhawuri', 'Ndzhati', 'Nhlangula', 'Hukuri', 'N\'wendzamhala'],
21 'months_short' => ['Sun', 'Yan', 'Kul', 'Dzi', 'Mud', 'Kho', 'Maw', 'Mha', 'Ndz', 'Nhl', 'Huk', 'N\'w'],
22 'weekdays' => ['Sonto', 'Musumbhunuku', 'Ravumbirhi', 'Ravunharhu', 'Ravumune', 'Ravuntlhanu', 'Mugqivela'],
23 'weekdays_short' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'],
24 'weekdays_min' => ['Son', 'Mus', 'Bir', 'Har', 'Ne', 'Tlh', 'Mug'],
25 'day_of_first_week_of_year' => 1,
26
27 'year' => 'malembe ya :count',
28 'y' => 'malembe ya :count',
29 'a_year' => 'malembe ya :count',
30
31 'month' => 'tin’hweti ta :count',
32 'm' => 'tin’hweti ta :count',
33 'a_month' => 'tin’hweti ta :count',
34
35 'week' => 'mavhiki ya :count',
36 'w' => 'mavhiki ya :count',
37 'a_week' => 'mavhiki ya :count',
38
39 'day' => 'masiku :count',
40 'd' => 'masiku :count',
41 'a_day' => 'masiku :count',
42
43 'hour' => 'tiawara ta :count',
44 'h' => 'tiawara ta :count',
45 'a_hour' => 'tiawara ta :count',
46
47 'minute' => 'timinete ta :count',
48 'min' => 'timinete ta :count',
49 'a_minute' => 'timinete ta :count',
50
51 'second' => 'tisekoni ta :count',
52 's' => 'tisekoni ta :count',
53 'a_second' => 'tisekoni ta :count',
54]);