blob: 139b813b2624051778430ae93e6a36d4ceac607f [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 * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YYYY',
19 ],
20 'months' => ['janvye', 'fevriye', 'mas', 'avril', 'me', 'jen', 'jiyè', 'out', 'septanm', 'oktòb', 'novanm', 'desanm'],
21 'months_short' => ['jan', 'fev', 'mas', 'avr', 'me', 'jen', 'jiy', 'out', 'sep', 'okt', 'nov', 'des'],
22 'weekdays' => ['dimanch', 'lendi', 'madi', 'mèkredi', 'jedi', 'vandredi', 'samdi'],
23 'weekdays_short' => ['dim', 'len', 'mad', 'mèk', 'jed', 'van', 'sam'],
24 'weekdays_min' => ['dim', 'len', 'mad', 'mèk', 'jed', 'van', 'sam'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'year' => ':count lane',
29 'y' => ':count lane',
30 'a_year' => ':count lane',
31
32 'month' => 'mwa :count',
33 'm' => 'mwa :count',
34 'a_month' => 'mwa :count',
35
36 'week' => 'semèn :count',
37 'w' => 'semèn :count',
38 'a_week' => 'semèn :count',
39
40 'day' => ':count jou',
41 'd' => ':count jou',
42 'a_day' => ':count jou',
43
44 'hour' => ':count lè',
45 'h' => ':count lè',
46 'a_hour' => ':count lè',
47
48 'minute' => ':count minit',
49 'min' => ':count minit',
50 'a_minute' => ':count minit',
51
52 'second' => ':count segonn',
53 's' => ':count segonn',
54 'a_second' => ':count segonn',
55]);