blob: 0034e35d8e809817300b6c3fe61550ec069a27fe [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 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['Jenụwarị', 'Febrụwarị', 'Maachị', 'Eprel', 'Mee', 'Juun', 'Julaị', 'Ọgọọst', 'Septemba', 'Ọktoba', 'Novemba', 'Disemba'],
21 'months_short' => ['Jen', 'Feb', 'Maa', 'Epr', 'Mee', 'Juu', 'Jul', 'Ọgọ', 'Sep', 'Ọkt', 'Nov', 'Dis'],
22 'weekdays' => ['sọnde', 'mọnde', 'tuzde', 'wenzde', 'tọsde', 'fraịde', 'satọde'],
23 'weekdays_short' => ['sọn', 'mọn', 'tuz', 'wen', 'tọs', 'fra', 'sat'],
24 'weekdays_min' => ['sọn', 'mọn', 'tuz', 'wen', 'tọs', 'fra', 'sat'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'year' => 'afo :count',
29 'y' => 'afo :count',
30 'a_year' => 'afo :count',
31
32 'month' => 'önwa :count',
33 'm' => 'önwa :count',
34 'a_month' => 'önwa :count',
35
36 'week' => 'izu :count',
37 'w' => 'izu :count',
38 'a_week' => 'izu :count',
39
40 'day' => 'ụbọchị :count',
41 'd' => 'ụbọchị :count',
42 'a_day' => 'ụbọchị :count',
43
44 'hour' => 'awa :count',
45 'h' => 'awa :count',
46 'a_hour' => 'awa :count',
47
48 'minute' => 'minit :count',
49 'min' => 'minit :count',
50 'a_minute' => 'minit :count',
51
52 'second' => 'sekọnd :count',
53 's' => 'sekọnd :count',
54 'a_second' => 'sekọnd :count',
55]);