blob: 54a326af0fb3a052e9c570ddea062cb69a9ed055 [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 * - somosazucar.org libc-alpha@sourceware.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['Petsatin', 'Kupitin', 'Uyaitin', 'Tayutin', 'Kegketin', 'Tegmatin', 'Kuntutin', 'Yagkujutin', 'Daiktatin', 'Ipamtatin', 'Shinutin', 'Sakamtin'],
21 'months_short' => ['Pet', 'Kup', 'Uya', 'Tay', 'Keg', 'Teg', 'Kun', 'Yag', 'Dait', 'Ipam', 'Shin', 'Sak'],
22 'weekdays' => ['Tuntuamtin', 'Achutin', 'Kugkuktin', 'Saketin', 'Shimpitin', 'Imaptin', 'Bataetin'],
23 'weekdays_short' => ['Tun', 'Ach', 'Kug', 'Sak', 'Shim', 'Im', 'Bat'],
24 'weekdays_min' => ['Tun', 'Ach', 'Kug', 'Sak', 'Shim', 'Im', 'Bat'],
25 'first_day_of_week' => 0,
26 'day_of_first_week_of_year' => 7,
27 'meridiem' => ['VM', 'NM'],
28
29 'year' => ':count yaya', // less reliable
30 'y' => ':count yaya', // less reliable
31 'a_year' => ':count yaya', // less reliable
32
33 'month' => ':count nantu', // less reliable
34 'm' => ':count nantu', // less reliable
35 'a_month' => ':count nantu', // less reliable
36
37 'day' => ':count nayaim', // less reliable
38 'd' => ':count nayaim', // less reliable
39 'a_day' => ':count nayaim', // less reliable
40
41 'hour' => ':count kuwiš', // less reliable
42 'h' => ':count kuwiš', // less reliable
43 'a_hour' => ':count kuwiš', // less reliable
44]);