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