blob: a4246c27764a8ad4ffc94b9d1d8a4118343d4917 [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 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010011
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020012return array_replace_recursive(require __DIR__.'/en.php', [
13 'meridiem' => ['ꎸꄑ', 'ꁯꋒ'],
14 'weekdays' => ['ꑭꆏꑍ', 'ꆏꊂꋍ', 'ꆏꊂꑍ', 'ꆏꊂꌕ', 'ꆏꊂꇖ', 'ꆏꊂꉬ', 'ꆏꊂꃘ'],
15 'weekdays_short' => ['ꑭꆏ', 'ꆏꋍ', 'ꆏꑍ', 'ꆏꌕ', 'ꆏꇖ', 'ꆏꉬ', 'ꆏꃘ'],
16 'weekdays_min' => ['ꑭꆏ', 'ꆏꋍ', 'ꆏꑍ', 'ꆏꌕ', 'ꆏꇖ', 'ꆏꉬ', 'ꆏꃘ'],
17 'months' => null,
18 'months_short' => ['ꋍꆪ', 'ꑍꆪ', 'ꌕꆪ', 'ꇖꆪ', 'ꉬꆪ', 'ꃘꆪ', 'ꏃꆪ', 'ꉆꆪ', 'ꈬꆪ', 'ꊰꆪ', 'ꊰꊪꆪ', 'ꊰꑋꆪ'],
19 'formats' => [
20 'LT' => 'h:mm a',
21 'LTS' => 'h:mm:ss a',
22 'L' => 'YYYY-MM-dd',
23 'LL' => 'YYYY MMM D',
24 'LLL' => 'YYYY MMMM D h:mm a',
25 'LLLL' => 'YYYY MMMM D, dddd h:mm a',
26 ],
27
28 'year' => ':count ꒉ', // less reliable
29 'y' => ':count ꒉ', // less reliable
30 'a_year' => ':count ꒉ', // less reliable
31
32 'month' => ':count ꆪ',
33 'm' => ':count ꆪ',
34 'a_month' => ':count ꆪ',
35
36 'week' => ':count ꏃ', // less reliable
37 'w' => ':count ꏃ', // less reliable
38 'a_week' => ':count ꏃ', // less reliable
39
40 'day' => ':count ꏜ', // less reliable
41 'd' => ':count ꏜ', // less reliable
42 'a_day' => ':count ꏜ', // less reliable
43
44 'hour' => ':count ꄮꈉ',
45 'h' => ':count ꄮꈉ',
46 'a_hour' => ':count ꄮꈉ',
47
48 'minute' => ':count ꀄꊭ', // less reliable
49 'min' => ':count ꀄꊭ', // less reliable
50 'a_minute' => ':count ꀄꊭ', // less reliable
51
52 'second' => ':count ꇅ', // less reliable
53 's' => ':count ꇅ', // less reliable
54 'a_second' => ':count ꇅ', // less reliable
55]);