blob: bb2a109b94cf615bdf840aadd474456c5443918d [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@mandriva.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['Siqiññaatchiaq', 'Siqiññaasrugruk', 'Paniqsiqsiivik', 'Qilġich Tatqiat', 'Suppivik', 'Iġñivik', 'Itchavik', 'Tiññivik', 'Amiġaiqsivik', 'Sikkuvik', 'Nippivik', 'Siqiñġiḷaq'],
21 'months_short' => ['Sñt', 'Sñs', 'Pan', 'Qil', 'Sup', 'Iġñ', 'Itc', 'Tiñ', 'Ami', 'Sik', 'Nip', 'Siq'],
22 'weekdays' => ['Minġuiqsioiq', 'Savałłiq', 'Ilaqtchiioiq', 'Qitchiioiq', 'Sisamiioiq', 'Tallimmiioiq', 'Maqinġuoiq'],
23 'weekdays_short' => ['Min', 'Sav', 'Ila', 'Qit', 'Sis', 'Tal', 'Maq'],
24 'weekdays_min' => ['Min', 'Sav', 'Ila', 'Qit', 'Sis', 'Tal', 'Maq'],
25 'day_of_first_week_of_year' => 1,
26
27 'year' => ':count ukiuq',
28 'y' => ':count ukiuq',
29 'a_year' => ':count ukiuq',
30
31 'month' => ':count Tatqiat',
32 'm' => ':count Tatqiat',
33 'a_month' => ':count Tatqiat',
34
35 'week' => ':count tatqiat', // less reliable
36 'w' => ':count tatqiat', // less reliable
37 'a_week' => ':count tatqiat', // less reliable
38
39 'day' => ':count siqiñiq', // less reliable
40 'd' => ':count siqiñiq', // less reliable
41 'a_day' => ':count siqiñiq', // less reliable
42
43 'hour' => ':count Siḷa', // less reliable
44 'h' => ':count Siḷa', // less reliable
45 'a_hour' => ':count Siḷa', // less reliable
46
47 'second' => ':count iġñiq', // less reliable
48 's' => ':count iġñiq', // less reliable
49 'a_second' => ':count iġñiq', // less reliable
50]);