blob: eb6e77e61be74c68fd23239c0c88c5d3b2612833 [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@mandrakesoft.com
15 */
16return array_replace_recursive(require __DIR__.'/en.php', [
17 'formats' => [
18 'L' => 'DD.MM.YYYY',
19 ],
20 'months' => ['Jannuaar', 'Feberwaar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],
21 'months_short' => ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
22 'weekdays' => ['Sünndag', 'Maandag', 'Dingsdag', 'Middeweek', 'Dunnersdag', 'Freedag', 'Sünnavend'],
23 'weekdays_short' => ['Sdag', 'Maan', 'Ding', 'Migg', 'Dunn', 'Free', 'Svd.'],
24 'weekdays_min' => ['Sdag', 'Maan', 'Ding', 'Migg', 'Dunn', 'Free', 'Svd.'],
25 'first_day_of_week' => 1,
26 'day_of_first_week_of_year' => 4,
27
28 'year' => ':count Johr',
29 'y' => ':count Johr',
30 'a_year' => ':count Johr',
31
32 'month' => ':count Maand',
33 'm' => ':count Maand',
34 'a_month' => ':count Maand',
35
36 'week' => ':count Week',
37 'w' => ':count Week',
38 'a_week' => ':count Week',
39
40 'day' => ':count Dag',
41 'd' => ':count Dag',
42 'a_day' => ':count Dag',
43
44 'hour' => ':count Stünn',
45 'h' => ':count Stünn',
46 'a_hour' => ':count Stünn',
47
48 'minute' => ':count Minuut',
49 'min' => ':count Minuut',
50 'a_minute' => ':count Minuut',
51
52 'second' => ':count sekunn',
53 's' => ':count sekunn',
54 'a_second' => ':count sekunn',
55]);