blob: d3229189353009ffbf20bdfd334e9a6ea5b92648 [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 * - Sugar Labs // OLPC sugarlabs.org libc-alpha@sourceware.org
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['iniru', 'phiwriru', 'marsu', 'awril', 'mayu', 'huniyu', 'huliyu', 'agustu', 'siptiyimri', 'uktuwri', 'nuwiyimri', 'tisiyimri'],
21 'months_short' => ['ini', 'phi', 'mar', 'awr', 'may', 'hun', 'hul', 'agu', 'sip', 'ukt', 'nuw', 'tis'],
22 'weekdays' => ['tuminku', 'lunis', 'martis', 'miyirkulis', 'juywis', 'wiyirnis', 'sawatu'],
23 'weekdays_short' => ['tum', 'lun', 'mar', 'miy', 'juy', 'wiy', 'saw'],
24 'weekdays_min' => ['tum', 'lun', 'mar', 'miy', 'juy', 'wiy', 'saw'],
25 'day_of_first_week_of_year' => 1,
26
27 'minute' => ':count uchuy', // less reliable
28 'min' => ':count uchuy', // less reliable
29 'a_minute' => ':count uchuy', // less reliable
30
31 'year' => ':count wata',
32 'y' => ':count wata',
33 'a_year' => ':count wata',
34
35 'month' => ':count killa',
36 'm' => ':count killa',
37 'a_month' => ':count killa',
38
39 'week' => ':count simana',
40 'w' => ':count simana',
41 'a_week' => ':count simana',
42
43 'day' => ':count pʼunchaw',
44 'd' => ':count pʼunchaw',
45 'a_day' => ':count pʼunchaw',
46
47 'hour' => ':count ura',
48 'h' => ':count ura',
49 'a_hour' => ':count ura',
50
51 'second' => ':count iskay ñiqin',
52 's' => ':count iskay ñiqin',
53 'a_second' => ':count iskay ñiqin',
54]);