blob: 6e7a697bd05f6d943025369f69c214665eb56fa3 [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 * - RockET Systems Emani Fakaotimanava-Lui emani@niue.nu
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD/MM/YY',
19 ],
20 'months' => ['Ianuali', 'Fepuali', 'Masi', 'Apelila', 'Me', 'Iuni', 'Iulai', 'Aokuso', 'Sepetema', 'Oketopa', 'Novema', 'Tesemo'],
21 'months_short' => ['Ian', 'Fep', 'Mas', 'Ape', 'Me', 'Iun', 'Iul', 'Aok', 'Sep', 'Oke', 'Nov', 'Tes'],
22 'weekdays' => ['Aho Tapu', 'Aho Gofua', 'Aho Ua', 'Aho Lotu', 'Aho Tuloto', 'Aho Falaile', 'Aho Faiumu'],
23 'weekdays_short' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'],
24 'weekdays_min' => ['Tapu', 'Gofua', 'Ua', 'Lotu', 'Tuloto', 'Falaile', 'Faiumu'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 1,
27
28 'year' => ':count tau',
29 'y' => ':count tau',
30 'a_year' => ':count tau',
31
32 'month' => ':count mahina',
33 'm' => ':count mahina',
34 'a_month' => ':count mahina',
35
36 'week' => ':count faahi tapu',
37 'w' => ':count faahi tapu',
38 'a_week' => ':count faahi tapu',
39
40 'day' => ':count aho',
41 'd' => ':count aho',
42 'a_day' => ':count aho',
43
44 'hour' => ':count e tulā',
45 'h' => ':count e tulā',
46 'a_hour' => ':count e tulā',
47
48 'minute' => ':count minuti',
49 'min' => ':count minuti',
50 'a_minute' => ':count minuti',
51
52 'second' => ':count sekone',
53 's' => ':count sekone',
54 'a_second' => ':count sekone',
55]);