blob: 2d27b4578d56369e6e550bc37099a88a4ca087bf [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 * - Samsung Electronics Co., Ltd. akhilesh.k@samsung.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['zanvie', 'fevriye', 'mars', 'avril', 'me', 'zin', 'zilye', 'out', 'septam', 'oktob', 'novam', 'desam'],
21 'months_short' => ['zan', 'fev', 'mar', 'avr', 'me', 'zin', 'zil', 'out', 'sep', 'okt', 'nov', 'des'],
22 'weekdays' => ['dimans', 'lindi', 'mardi', 'merkredi', 'zedi', 'vandredi', 'samdi'],
23 'weekdays_short' => ['dim', 'lin', 'mar', 'mer', 'ze', 'van', 'sam'],
24 'weekdays_min' => ['dim', 'lin', 'mar', 'mer', 'ze', 'van', 'sam'],
25
26 'year' => ':count banané',
27 'y' => ':count banané',
28 'a_year' => ':count banané',
29
30 'month' => ':count mwa',
31 'm' => ':count mwa',
32 'a_month' => ':count mwa',
33
34 'week' => ':count sémenn',
35 'w' => ':count sémenn',
36 'a_week' => ':count sémenn',
37
38 'day' => ':count zour',
39 'd' => ':count zour',
40 'a_day' => ':count zour',
41
42 'hour' => ':count -er-tan',
43 'h' => ':count -er-tan',
44 'a_hour' => ':count -er-tan',
45
46 'minute' => ':count minitt',
47 'min' => ':count minitt',
48 'a_minute' => ':count minitt',
49
50 'second' => ':count déziém',
51 's' => ':count déziém',
52 'a_second' => ':count déziém',
53]);