blob: 6c5feb79fc45bd8d09325c0bae099f218a201d60 [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 * - information from Kenneth Christiansen Kenneth Christiansen, Pablo Saratxaga kenneth@gnu.org, pablo@mandriva.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['jannewarie', 'fibberwarie', 'miert', 'eprèl', 'meij', 'junie', 'julie', 'augustus', 'september', 'oktober', 'november', 'desember'],
21 'months_short' => ['jan', 'fib', 'mie', 'epr', 'mei', 'jun', 'jul', 'aug', 'sep', 'okt', 'nov', 'des'],
22 'weekdays' => ['zóndig', 'maondig', 'daensdig', 'goonsdig', 'dónderdig', 'vriedig', 'zaoterdig'],
23 'weekdays_short' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'],
24 'weekdays_min' => ['zón', 'mao', 'dae', 'goo', 'dón', 'vri', 'zao'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'minute' => ':count momênt', // less reliable
29 'min' => ':count momênt', // less reliable
30 'a_minute' => ':count momênt', // less reliable
31
32 'year' => ':count jaor',
33 'y' => ':count jaor',
34 'a_year' => ':count jaor',
35
36 'month' => ':count maond',
37 'm' => ':count maond',
38 'a_month' => ':count maond',
39
40 'week' => ':count waek',
41 'w' => ':count waek',
42 'a_week' => ':count waek',
43
44 'day' => ':count daag',
45 'd' => ':count daag',
46 'a_day' => ':count daag',
47
48 'hour' => ':count oer',
49 'h' => ':count oer',
50 'a_hour' => ':count oer',
51
52 'second' => ':count Secónd',
53 's' => ':count Secónd',
54 'a_second' => ':count Secónd',
55]);