blob: f96c5c9dc8cbefa8dd31a1886c77028db8a7109f [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 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010011
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020012return array_replace_recursive(require __DIR__.'/en.php', [
13 'meridiem' => ['ŋ', 'ɣ'],
14 'weekdays' => ['kɔsiɖa', 'dzoɖa', 'blaɖa', 'kuɖa', 'yawoɖa', 'fiɖa', 'memleɖa'],
15 'weekdays_short' => ['kɔs', 'dzo', 'bla', 'kuɖ', 'yaw', 'fiɖ', 'mem'],
16 'weekdays_min' => ['kɔs', 'dzo', 'bla', 'kuɖ', 'yaw', 'fiɖ', 'mem'],
17 'months' => ['dzove', 'dzodze', 'tedoxe', 'afɔfĩe', 'dama', 'masa', 'siamlɔm', 'deasiamime', 'anyɔnyɔ', 'kele', 'adeɛmekpɔxe', 'dzome'],
18 'months_short' => ['dzv', 'dzd', 'ted', 'afɔ', 'dam', 'mas', 'sia', 'dea', 'any', 'kel', 'ade', 'dzm'],
19 'first_day_of_week' => 1,
20 'formats' => [
21 'LT' => 'a [ga] h:mm',
22 'LTS' => 'a [ga] h:mm:ss',
23 'L' => 'M/D/YYYY',
24 'LL' => 'MMM D [lia], YYYY',
25 'LLL' => 'a [ga] h:mm MMMM D [lia] YYYY',
26 'LLLL' => 'a [ga] h:mm dddd, MMMM D [lia] YYYY',
27 ],
28
29 'year' => 'ƒe :count',
30 'y' => 'ƒe :count',
31 'a_year' => 'ƒe :count',
32
33 'month' => 'ɣleti :count',
34 'm' => 'ɣleti :count',
35 'a_month' => 'ɣleti :count',
36
37 'week' => 'kwasiɖa :count',
38 'w' => 'kwasiɖa :count',
39 'a_week' => 'kwasiɖa :count',
40
41 'day' => 'ŋkeke :count',
42 'd' => 'ŋkeke :count',
43 'a_day' => 'ŋkeke :count',
44
45 'hour' => 'gaƒoƒo :count',
46 'h' => 'gaƒoƒo :count',
47 'a_hour' => 'gaƒoƒo :count',
48
49 'minute' => 'miniti :count', // less reliable
50 'min' => 'miniti :count', // less reliable
51 'a_minute' => 'miniti :count', // less reliable
52
53 'second' => 'sɛkɛnd :count', // less reliable
54 's' => 'sɛkɛnd :count', // less reliable
55 'a_second' => 'sɛkɛnd :count', // less reliable
56]);