blob: 796660be9bfb3307ea55f9b1ba223fcfe2b9580a [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 * - belkacem77@gmail.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YYYY',
19 ],
20 'months' => ['Yennayer', 'Fuṛar', 'Meɣres', 'Yebrir', 'Mayyu', 'Yunyu', 'Yulyu', 'ɣuct', 'Ctembeṛ', 'Tubeṛ', 'Wambeṛ', 'Dujembeṛ'],
21 'months_short' => ['Yen', 'Fur', 'Meɣ', 'Yeb', 'May', 'Yun', 'Yul', 'ɣuc', 'Cte', 'Tub', 'Wam', 'Duj'],
22 'weekdays' => ['Acer', 'Arim', 'Aram', 'Ahad', 'Amhad', 'Sem', 'Sed'],
23 'weekdays_short' => ['Ace', 'Ari', 'Ara', 'Aha', 'Amh', 'Sem', 'Sed'],
24 'weekdays_min' => ['Ace', 'Ari', 'Ara', 'Aha', 'Amh', 'Sem', 'Sed'],
25 'first_day_of_week' => 6,
26 'day_of_first_week_of_year' => 1,
27 'meridiem' => ['FT', 'MD'],
28
29 'year' => ':count n yiseggasen',
30 'y' => ':count n yiseggasen',
31 'a_year' => ':count n yiseggasen',
32
33 'month' => ':count n wayyuren',
34 'm' => ':count n wayyuren',
35 'a_month' => ':count n wayyuren',
36
37 'week' => ':count n ledwaṛ', // less reliable
38 'w' => ':count n ledwaṛ', // less reliable
39 'a_week' => ':count n ledwaṛ', // less reliable
40
41 'day' => ':count n wussan',
42 'd' => ':count n wussan',
43 'a_day' => ':count n wussan',
44
45 'hour' => ':count n tsaɛtin',
46 'h' => ':count n tsaɛtin',
47 'a_hour' => ':count n tsaɛtin',
48
49 'minute' => ':count n tedqiqin',
50 'min' => ':count n tedqiqin',
51 'a_minute' => ':count n tedqiqin',
52
53 'second' => ':count tasdidt', // less reliable
54 's' => ':count tasdidt', // less reliable
55 'a_second' => ':count tasdidt', // less reliable
56]);