blob: c5c850edb1e95a0d4662fd25d6b3ed305e517238 [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 * - Christopher Dell
15 * - Akira Matsuda
16 * - Enrique Vidal
17 * - Simone Carletti
18 * - Henning Kiel
19 * - Aaron Patterson
20 * - Florian Hanke
21 */
22return [
23 'year' => ':count Johr',
24 'month' => ':count Monet',
25 'week' => ':count Woche',
26 'day' => ':count Tag',
27 'hour' => ':count Schtund',
28 'minute' => ':count Minute',
29 'second' => ':count Sekunde',
30 'weekdays' => ['Sunntig', 'Mäntig', 'Ziischtig', 'Mittwuch', 'Dunschtig', 'Friitig', 'Samschtig'],
31 'weekdays_short' => ['Su', 'Mä', 'Zi', 'Mi', 'Du', 'Fr', 'Sa'],
32 'weekdays_min' => ['Su', 'Mä', 'Zi', 'Mi', 'Du', 'Fr', 'Sa'],
33 'months' => ['Januar', 'Februar', 'März', 'April', 'Mai', 'Juni', 'Juli', 'Auguscht', 'September', 'Oktober', 'November', 'Dezember'],
34 'months_short' => ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
35 'meridiem' => ['am Vormittag', 'am Namittag'],
36 'ordinal' => ':number.',
37 'list' => [', ', ' und '],
38 'diff_now' => 'now',
39 'diff_yesterday' => 'geschter',
40 'diff_tomorrow' => 'moorn',
41 'formats' => [
42 'LT' => 'HH:mm',
43 'LTS' => 'HH:mm:ss',
44 'L' => 'DD.MM.YYYY',
45 'LL' => 'Do MMMM YYYY',
46 'LLL' => 'Do MMMM, HH:mm [Uhr]',
47 'LLLL' => 'dddd, Do MMMM YYYY, HH:mm [Uhr]',
48 ],
49];