blob: 5bce7f20f6f0df48dbb1c6aab61071d8a68ea890 [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' => ['Pherekgong', 'Hlakola', 'Tlhakubele', 'Mmese', 'Motsheanong', 'Phupjane', 'Phupu', 'Phato', 'Leotse', 'Mphalane', 'Pudungwana', 'Tshitwe'],
21 'months_short' => ['Phe', 'Hla', 'TlH', 'Mme', 'Mot', 'Jan', 'Upu', 'Pha', 'Leo', 'Mph', 'Pud', 'Tsh'],
22 'weekdays' => ['Sontaha', 'Mantaha', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Moqebelo'],
23 'weekdays_short' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'],
24 'weekdays_min' => ['Son', 'Mma', 'Bed', 'Rar', 'Ne', 'Hla', 'Moq'],
25 'day_of_first_week_of_year' => 1,
26
27 'week' => ':count Sontaha', // less reliable
28 'w' => ':count Sontaha', // less reliable
29 'a_week' => ':count Sontaha', // less reliable
30
31 'day' => ':count letsatsi', // less reliable
32 'd' => ':count letsatsi', // less reliable
33 'a_day' => ':count letsatsi', // less reliable
34
35 'hour' => ':count sešupanako', // less reliable
36 'h' => ':count sešupanako', // less reliable
37 'a_hour' => ':count sešupanako', // less reliable
38
39 'minute' => ':count menyane', // less reliable
40 'min' => ':count menyane', // less reliable
41 'a_minute' => ':count menyane', // less reliable
42
43 'second' => ':count thusa', // less reliable
44 's' => ':count thusa', // less reliable
45 'a_second' => ':count thusa', // less reliable
46
47 'year' => ':count selemo',
48 'y' => ':count selemo',
49 'a_year' => ':count selemo',
50
51 'month' => ':count kgwedi',
52 'm' => ':count kgwedi',
53 'a_month' => ':count kgwedi',
54]);