blob: 6ab7e1497fb3a5bff5c01beb6784bb1bebc9c24f [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 * - Pablo Saratxaga pablo@mandriva.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'MM/DD/YY',
19 ],
20 'months' => ['ᔮᓄᐊᓕ', 'ᕕᕗᐊᓕ', 'ᒪᔅᓯ', 'ᐃᐳᓗ', 'ᒪᐃ', 'ᔪᓂ', 'ᔪᓚᐃ', 'ᐊᒋᓯ', 'ᓯᑎᕙ', 'ᐊᑦᑐᕙ', 'ᓄᕕᕙ', 'ᑎᓯᕝᕙ'],
21 'months_short' => ['ᔮᓄ', 'ᕕᕗ', 'ᒪᔅ', 'ᐃᐳ', 'ᒪᐃ', 'ᔪᓂ', 'ᔪᓚ', 'ᐊᒋ', 'ᓯᑎ', 'ᐊᑦ', 'ᓄᕕ', 'ᑎᓯ'],
22 'weekdays' => ['ᓈᑦᑎᖑᔭᕐᕕᒃ', 'ᓇᒡᒐᔾᔭᐅ', 'ᓇᒡᒐᔾᔭᐅᓕᖅᑭᑦ', 'ᐱᖓᓲᓕᖅᓯᐅᑦ', 'ᕿᑎᖅᑰᑦ', 'ᐅᓪᓗᕈᓘᑐᐃᓇᖅ', 'ᓯᕙᑖᕕᒃ'],
23 'weekdays_short' => ['ᓈ', 'ᓇ', 'ᓕ', 'ᐱ', 'ᕿ', 'ᐅ', 'ᓯ'],
24 'weekdays_min' => ['ᓈ', 'ᓇ', 'ᓕ', 'ᐱ', 'ᕿ', 'ᐅ', 'ᓯ'],
25 'day_of_first_week_of_year' => 1,
26
27 'year' => ':count ᐅᑭᐅᖅ',
28 'y' => ':count ᐅᑭᐅᖅ',
29 'a_year' => ':count ᐅᑭᐅᖅ',
30
31 'month' => ':count qaammat',
32 'm' => ':count qaammat',
33 'a_month' => ':count qaammat',
34
35 'week' => ':count sapaatip akunnera',
36 'w' => ':count sapaatip akunnera',
37 'a_week' => ':count sapaatip akunnera',
38
39 'day' => ':count ulloq',
40 'd' => ':count ulloq',
41 'a_day' => ':count ulloq',
42
43 'hour' => ':count ikarraq',
44 'h' => ':count ikarraq',
45 'a_hour' => ':count ikarraq',
46
47 'minute' => ':count titiqqaralaaq', // less reliable
48 'min' => ':count titiqqaralaaq', // less reliable
49 'a_minute' => ':count titiqqaralaaq', // less reliable
50
51 'second' => ':count marluk', // less reliable
52 's' => ':count marluk', // less reliable
53 'a_second' => ':count marluk', // less reliable
54]);