blob: cd8e34d0d5b1847e7c4ce68d37fa9ff51e00e7e3 [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 * - pablo@mandriva.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'LT' => 'HH:mm',
19 'LTS' => 'HH:mm:ss',
20 'L' => 'D/M/YYYY',
21 'LL' => 'D MMM, YYYY',
22 'LLL' => 'D MMMM, YYYY HH:mm',
23 'LLLL' => 'dddd, D MMMM, YYYY HH:mm',
24 ],
25 'months' => ['Janairu', 'Faburairu', 'Maris', 'Afirilu', 'Mayu', 'Yuni', 'Yuli', 'Agusta', 'Satumba', 'Oktoba', 'Nuwamba', 'Disamba'],
26 'months_short' => ['Jan', 'Fab', 'Mar', 'Afi', 'May', 'Yun', 'Yul', 'Agu', 'Sat', 'Okt', 'Nuw', 'Dis'],
27 'weekdays' => ['Lahadi', 'Litini', 'Talata', 'Laraba', 'Alhamis', 'Jumaʼa', 'Asabar'],
28 'weekdays_short' => ['Lah', 'Lit', 'Tal', 'Lar', 'Alh', 'Jum', 'Asa'],
29 'weekdays_min' => ['Lh', 'Li', 'Ta', 'Lr', 'Al', 'Ju', 'As'],
30 'first_day_of_week' => 1,
31 'day_of_first_week_of_year' => 1,
32
33 'year' => 'shekara :count',
34 'y' => 'shekara :count',
35 'a_year' => 'shekara :count',
36
37 'month' => ':count wátàa',
38 'm' => ':count wátàa',
39 'a_month' => ':count wátàa',
40
41 'week' => ':count mako',
42 'w' => ':count mako',
43 'a_week' => ':count mako',
44
45 'day' => ':count rana',
46 'd' => ':count rana',
47 'a_day' => ':count rana',
48
49 'hour' => ':count áwàa',
50 'h' => ':count áwàa',
51 'a_hour' => ':count áwàa',
52
53 'minute' => 'minti :count',
54 'min' => 'minti :count',
55 'a_minute' => 'minti :count',
56
57 'second' => ':count ná bíyú',
58 's' => ':count ná bíyú',
59 'a_second' => ':count ná bíyú',
60]);