blob: 95457e243560712cea672ecfcd18ecc7353f34ac [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 */
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010011
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020012return array_replace_recursive(require __DIR__.'/en.php', [
13 'meridiem' => ['v.M.', 'n.M.'],
14 'weekdays' => ['Sunndaach', 'Mohndaach', 'Dinnsdaach', 'Metwoch', 'Dunnersdaach', 'Friidaach', 'Samsdaach'],
15 'weekdays_short' => ['Su.', 'Mo.', 'Di.', 'Me.', 'Du.', 'Fr.', 'Sa.'],
16 'weekdays_min' => ['Su', 'Mo', 'Di', 'Me', 'Du', 'Fr', 'Sa'],
17 'months' => ['Jannewa', 'Fäbrowa', 'Määz', 'Aprell', 'Mai', 'Juuni', 'Juuli', 'Oujoß', 'Septämber', 'Oktohber', 'Novämber', 'Dezämber'],
18 'months_short' => ['Jan', 'Fäb', 'Mäz', 'Apr', 'Mai', 'Jun', 'Jul', 'Ouj', 'Säp', 'Okt', 'Nov', 'Dez'],
19 'months_short_standalone' => ['Jan.', 'Fäb.', 'Mäz.', 'Apr.', 'Mai', 'Jun.', 'Jul.', 'Ouj.', 'Säp.', 'Okt.', 'Nov.', 'Dez.'],
20 'first_day_of_week' => 1,
21 'formats' => [
22 'LT' => 'HH:mm',
23 'LTS' => 'HH:mm:ss',
24 'L' => 'D. M. YYYY',
25 'LL' => 'D. MMM. YYYY',
26 'LLL' => 'D. MMMM YYYY HH:mm',
27 'LLLL' => 'dddd, [dä] D. MMMM YYYY HH:mm',
28 ],
29
30 'year' => ':count Johr',
31 'y' => ':count Johr',
32 'a_year' => ':count Johr',
33
34 'month' => ':count Moohnd',
35 'm' => ':count Moohnd',
36 'a_month' => ':count Moohnd',
37
38 'week' => ':count woch',
39 'w' => ':count woch',
40 'a_week' => ':count woch',
41
42 'day' => ':count Daach',
43 'd' => ':count Daach',
44 'a_day' => ':count Daach',
45
46 'hour' => ':count Uhr',
47 'h' => ':count Uhr',
48 'a_hour' => ':count Uhr',
49
50 'minute' => ':count Menutt',
51 'min' => ':count Menutt',
52 'a_minute' => ':count Menutt',
53
54 'second' => ':count Sekůndt',
55 's' => ':count Sekůndt',
56 'a_second' => ':count Sekůndt',
57]);