blob: db048342cd2d1f78ea2df5660c745e67e6aa5f5f [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 * - Philippe Vaucher
15 * - Tsutomu Kuroda
16 * - dan-nl
17 * - Simon Lelorrain (slelorrain)
18 */
19return [
20 'year' => ':count Joer',
21 'y' => ':countJ',
22 'month' => ':count Mount|:count Méint',
23 'm' => ':countMo',
24 'week' => ':count Woch|:count Wochen',
25 'w' => ':countWo|:countWo',
26 'day' => ':count Dag|:count Deeg',
27 'd' => ':countD',
28 'hour' => ':count Stonn|:count Stonnen',
29 'h' => ':countSto',
30 'minute' => ':count Minutt|:count Minutten',
31 'min' => ':countM',
32 'second' => ':count Sekonn|:count Sekonnen',
33 's' => ':countSek',
34
35 'ago' => 'virun :time',
36 'from_now' => 'an :time',
37 'before' => ':time virdrun',
38 'after' => ':time duerno',
39
40 'diff_today' => 'Haut',
41 'diff_yesterday' => 'Gëschter',
42 'diff_yesterday_regexp' => 'Gëschter(?:\\s+um)?',
43 'diff_tomorrow' => 'Muer',
44 'diff_tomorrow_regexp' => 'Muer(?:\\s+um)?',
45 'diff_today_regexp' => 'Haut(?:\\s+um)?',
46 'formats' => [
47 'LT' => 'H:mm [Auer]',
48 'LTS' => 'H:mm:ss [Auer]',
49 'L' => 'DD.MM.YYYY',
50 'LL' => 'D. MMMM YYYY',
51 'LLL' => 'D. MMMM YYYY H:mm [Auer]',
52 'LLLL' => 'dddd, D. MMMM YYYY H:mm [Auer]',
53 ],
54
55 'calendar' => [
56 'sameDay' => '[Haut um] LT',
57 'nextDay' => '[Muer um] LT',
58 'nextWeek' => 'dddd [um] LT',
59 'lastDay' => '[Gëschter um] LT',
60 'lastWeek' => function (\Carbon\CarbonInterface $date) {
61 // Different date string for 'Dënschdeg' (Tuesday) and 'Donneschdeg' (Thursday) due to phonological rule
62 switch ($date->dayOfWeek) {
63 case 2:
64 case 4:
65 return '[Leschten] dddd [um] LT';
66 default:
67 return '[Leschte] dddd [um] LT';
68 }
69 },
70 'sameElse' => 'L',
71 ],
72
73 'months' => ['Januar', 'Februar', 'Mäerz', 'Abrëll', 'Mee', 'Juni', 'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'],
74 'months_short' => ['Jan.', 'Febr.', 'Mrz.', 'Abr.', 'Mee', 'Jun.', 'Jul.', 'Aug.', 'Sept.', 'Okt.', 'Nov.', 'Dez.'],
75 'weekdays' => ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'],
76 'weekdays_short' => ['So.', 'Mé.', 'Dë.', 'Më.', 'Do.', 'Fr.', 'Sa.'],
77 'weekdays_min' => ['So', 'Mé', 'Dë', 'Më', 'Do', 'Fr', 'Sa'],
78 'ordinal' => ':number.',
79 'first_day_of_week' => 1,
80 'day_of_first_week_of_year' => 4,
81 'list' => [', ', ' an '],
82 'meridiem' => ['moies', 'mëttes'],
83 'weekdays_short_standalone' => ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'],
84 'months_short_standalone' => ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
85];