blob: b08fe6dcd84cc0a3aadeb1834e49a8eca896dffd [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' => ['Janaware', 'Febereware', 'Matšhe', 'Aprele', 'Mei', 'June', 'Julae', 'Agostose', 'Setemere', 'Oktobere', 'Nofemere', 'Disemere'],
21 'months_short' => ['Jan', 'Feb', 'Mat', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Set', 'Okt', 'Nof', 'Dis'],
22 'weekdays' => ['LaMorena', 'Mošupologo', 'Labobedi', 'Laboraro', 'Labone', 'Labohlano', 'Mokibelo'],
23 'weekdays_short' => ['Son', 'Moš', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'],
24 'weekdays_min' => ['Son', 'Moš', 'Bed', 'Rar', 'Ne', 'Hla', 'Mok'],
25 'day_of_first_week_of_year' => 1,
26
27 'year' => ':count ngwaga',
28 'y' => ':count ngwaga',
29 'a_year' => ':count ngwaga',
30
31 'month' => ':count Kgwedi',
32 'm' => ':count Kgwedi',
33 'a_month' => ':count Kgwedi',
34
35 'week' => ':count Beke',
36 'w' => ':count Beke',
37 'a_week' => ':count Beke',
38
39 'day' => ':count Letšatši',
40 'd' => ':count Letšatši',
41 'a_day' => ':count Letšatši',
42
43 'hour' => ':count Iri',
44 'h' => ':count Iri',
45 'a_hour' => ':count Iri',
46
47 'minute' => ':count Motsotso',
48 'min' => ':count Motsotso',
49 'a_minute' => ':count Motsotso',
50
51 'second' => ':count motsotswana',
52 's' => ':count motsotswana',
53 'a_second' => ':count motsotswana',
54]);