blob: b7f51ec2343de2bf18588be03fce93603e3318cc [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 * - François B
15 * - John Corrigan
16 * - François B
17 */
18return [
19 'year' => ':count tau',
20 'a_year' => '{1}he tau|:count tau',
21 'month' => ':count marama',
22 'a_month' => '{1}he marama|:count marama',
23 'week' => ':count wiki',
24 'a_week' => '{1}he wiki|:count wiki',
25 'day' => ':count ra',
26 'a_day' => '{1}he ra|:count ra',
27 'hour' => ':count haora',
28 'a_hour' => '{1}te haora|:count haora',
29 'minute' => ':count meneti',
30 'a_minute' => '{1}he meneti|:count meneti',
31 'second' => ':count hēkona',
32 'a_second' => '{1}te hēkona ruarua|:count hēkona',
33 'ago' => ':time i mua',
34 'from_now' => 'i roto i :time',
35 'diff_yesterday' => 'inanahi',
36 'diff_yesterday_regexp' => 'inanahi(?:\\s+i)?',
37 'diff_today' => 'i teie',
38 'diff_today_regexp' => 'i teie(?:\\s+mahana,)?(?:\\s+i)?',
39 'diff_tomorrow' => 'apopo',
40 'diff_tomorrow_regexp' => 'apopo(?:\\s+i)?',
41 'formats' => [
42 'LT' => 'HH:mm',
43 'LTS' => 'HH:mm:ss',
44 'L' => 'DD/MM/YYYY',
45 'LL' => 'D MMMM YYYY',
46 'LLL' => 'D MMMM YYYY [i] HH:mm',
47 'LLLL' => 'dddd, D MMMM YYYY [i] HH:mm',
48 ],
49 'calendar' => [
50 'sameDay' => '[i teie mahana, i] LT',
51 'nextDay' => '[apopo i] LT',
52 'nextWeek' => 'dddd [i] LT',
53 'lastDay' => '[inanahi i] LT',
54 'lastWeek' => 'dddd [whakamutunga i] LT',
55 'sameElse' => 'L',
56 ],
57 'ordinal' => ':numberº',
58 'months' => ['Kohi-tāte', 'Hui-tanguru', 'Poutū-te-rangi', 'Paenga-whāwhā', 'Haratua', 'Pipiri', 'Hōngoingoi', 'Here-turi-kōkā', 'Mahuru', 'Whiringa-ā-nuku', 'Whiringa-ā-rangi', 'Hakihea'],
59 'months_short' => ['Kohi', 'Hui', 'Pou', 'Pae', 'Hara', 'Pipi', 'Hōngoi', 'Here', 'Mahu', 'Whi-nu', 'Whi-ra', 'Haki'],
60 'weekdays' => ['Rātapu', 'Mane', 'Tūrei', 'Wenerei', 'Tāite', 'Paraire', 'Hātarei'],
61 'weekdays_short' => ['Ta', 'Ma', 'Tū', 'We', 'Tāi', 'Pa', 'Hā'],
62 'weekdays_min' => ['Ta', 'Ma', 'Tū', 'We', 'Tāi', 'Pa', 'Hā'],
63 'first_day_of_week' => 1,
64 'day_of_first_week_of_year' => 4,
65 'list' => [', ', ' me te '],
66];