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