blob: 371353ef8778f3c452a699b1ddd5a720c88e93ac [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 * - Cherokee Nation Joseph Erb josepherb7@gmail.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'MM/DD/YYYY',
19 ],
20 'months' => ['ᎤᏃᎸᏔᏅ', 'ᎧᎦᎵ', 'ᎠᏅᏱ', 'ᎧᏬᏂ', 'ᎠᏂᏍᎬᏘ', 'ᏕᎭᎷᏱ', 'ᎫᏰᏉᏂ', 'ᎦᎶᏂ', 'ᏚᎵᏍᏗ', 'ᏚᏂᏅᏗ', 'ᏅᏓᏕᏆ', 'ᎥᏍᎩᏱ'],
21 'months_short' => ['ᎤᏃ', 'ᎧᎦ', 'ᎠᏅ', 'ᎧᏬ', 'ᎠᏂ', 'ᏕᎭ', 'ᎫᏰ', 'ᎦᎶ', 'ᏚᎵ', 'ᏚᏂ', 'ᏅᏓ', 'ᎥᏍ'],
22 'weekdays' => ['ᎤᎾᏙᏓᏆᏍᎬ', 'ᎤᎾᏙᏓᏉᏅᎯ', 'ᏔᎵᏁᎢᎦ', 'ᏦᎢᏁᎢᎦ', 'ᏅᎩᏁᎢᎦ', 'ᏧᎾᎩᎶᏍᏗ', 'ᎤᎾᏙᏓᏈᏕᎾ'],
23 'weekdays_short' => ['ᏆᏍᎬ', 'ᏉᏅᎯ', 'ᏔᎵᏁ', 'ᏦᎢᏁ', 'ᏅᎩᏁ', 'ᏧᎾᎩ', 'ᏈᏕᎾ'],
24 'weekdays_min' => ['ᏆᏍᎬ', 'ᏉᏅᎯ', 'ᏔᎵᏁ', 'ᏦᎢᏁ', 'ᏅᎩᏁ', 'ᏧᎾᎩ', 'ᏈᏕᎾ'],
25 'day_of_first_week_of_year' => 1,
26 'meridiem' => ['ᏌᎾᎴ', 'ᏒᎯᏱᎢᏗᏢ', 'ꮜꮎꮄ', 'ꮢꭿᏹꭲꮧꮲ'],
27
28 'second' => ':count ᏐᎢ', // less reliable
29 's' => ':count ᏐᎢ', // less reliable
30 'a_second' => ':count ᏐᎢ', // less reliable
31
32 'year' => ':count ᏑᏕᏘᏴᏓ',
33 'y' => ':count ᏑᏕᏘᏴᏓ',
34 'a_year' => ':count ᏑᏕᏘᏴᏓ',
35
36 'month' => ':count ᏏᏅᏙ',
37 'm' => ':count ᏏᏅᏙ',
38 'a_month' => ':count ᏏᏅᏙ',
39
40 'week' => ':count ᏑᎾᏙᏓᏆᏍᏗ',
41 'w' => ':count ᏑᎾᏙᏓᏆᏍᏗ',
42 'a_week' => ':count ᏑᎾᏙᏓᏆᏍᏗ',
43
44 'day' => ':count ᎢᎦ',
45 'd' => ':count ᎢᎦ',
46 'a_day' => ':count ᎢᎦ',
47
48 'hour' => ':count ᏑᏟᎶᏛ',
49 'h' => ':count ᏑᏟᎶᏛ',
50 'a_hour' => ':count ᏑᏟᎶᏛ',
51
52 'minute' => ':count ᎢᏯᏔᏬᏍᏔᏅ',
53 'min' => ':count ᎢᏯᏔᏬᏍᏔᏅ',
54 'a_minute' => ':count ᎢᏯᏔᏬᏍᏔᏅ',
55
56 'ago' => ':time ᏥᎨᏒ',
57 'from_now' => 'ᎾᎿ :time',
58]);