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