blob: 6b1168f994bcc8c91ff46d1048780c8d46af1b33 [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 * - Alastair McKinstry bug-glibc-locales@gnu.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['Jerrey-geuree', 'Toshiaght-arree', 'Mayrnt', 'Averil', 'Boaldyn', 'Mean-souree', 'Jerrey-souree', 'Luanistyn', 'Mean-fouyir', 'Jerrey-fouyir', 'Mee Houney', 'Mee ny Nollick'],
21 'months_short' => ['J-guer', 'T-arree', 'Mayrnt', 'Avrril', 'Boaldyn', 'M-souree', 'J-souree', 'Luanistyn', 'M-fouyir', 'J-fouyir', 'M.Houney', 'M.Nollick'],
22 'weekdays' => ['Jedoonee', 'Jelhein', 'Jemayrt', 'Jercean', 'Jerdein', 'Jeheiney', 'Jesarn'],
23 'weekdays_short' => ['Jed', 'Jel', 'Jem', 'Jerc', 'Jerd', 'Jeh', 'Jes'],
24 'weekdays_min' => ['Jed', 'Jel', 'Jem', 'Jerc', 'Jerd', 'Jeh', 'Jes'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'year' => ':count blein',
29 'y' => ':count blein',
30 'a_year' => ':count blein',
31
32 'month' => ':count mee',
33 'm' => ':count mee',
34 'a_month' => ':count mee',
35
36 'week' => ':count shiaghtin',
37 'w' => ':count shiaghtin',
38 'a_week' => ':count shiaghtin',
39
40 'day' => ':count laa',
41 'd' => ':count laa',
42 'a_day' => ':count laa',
43
44 'hour' => ':count oor',
45 'h' => ':count oor',
46 'a_hour' => ':count oor',
47
48 'minute' => ':count feer veg',
49 'min' => ':count feer veg',
50 'a_minute' => ':count feer veg',
51
52 'second' => ':count derrey',
53 's' => ':count derrey',
54 'a_second' => ':count derrey',
55]);