blob: cdd36861ef2921bb34b69e2bc87bd054210549fe [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 'months' => ['Ianuali', 'Pepeluali', 'Malaki', 'ʻApelila', 'Mei', 'Iune', 'Iulai', 'ʻAukake', 'Kepakemapa', 'ʻOkakopa', 'Nowemapa', 'Kekemapa'],
14 'months_short' => ['Ian.', 'Pep.', 'Mal.', 'ʻAp.', 'Mei', 'Iun.', 'Iul.', 'ʻAu.', 'Kep.', 'ʻOk.', 'Now.', 'Kek.'],
15 'weekdays' => ['Lāpule', 'Poʻakahi', 'Poʻalua', 'Poʻakolu', 'Poʻahā', 'Poʻalima', 'Poʻaono'],
16 'weekdays_short' => ['LP', 'P1', 'P2', 'P3', 'P4', 'P5', 'P6'],
17 'weekdays_min' => ['S', 'M', 'T', 'W', 'T', 'F', 'S'],
18 'formats' => [
19 'LT' => 'h:mm a',
20 'LTS' => 'h:mm:ss a',
21 'L' => 'D/M/YYYY',
22 'LL' => 'D MMM YYYY',
23 'LLL' => 'D MMMM YYYY h:mm a',
24 'LLLL' => 'dddd, D MMMM YYYY h:mm a',
25 ],
26
27 'year' => ':count makahiki',
28 'y' => ':count makahiki',
29 'a_year' => ':count makahiki',
30
31 'month' => ':count mahina',
32 'm' => ':count mahina',
33 'a_month' => ':count mahina',
34
35 'week' => ':count pule',
36 'w' => ':count pule',
37 'a_week' => ':count pule',
38
39 'day' => ':count lā',
40 'd' => ':count lā',
41 'a_day' => ':count lā',
42
43 'hour' => ':count hola',
44 'h' => ':count hola',
45 'a_hour' => ':count hola',
46
47 'minute' => ':count minuke',
48 'min' => ':count minuke',
49 'a_minute' => ':count minuke',
50
51 'second' => ':count lua',
52 's' => ':count lua',
53 'a_second' => ':count lua',
54]);