blob: 27771d7aac54238f118226e3eb32e2a61bdd4b2d [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 * - François B
15 * - JD Isaacks
16 * - Pierre du Plessis
17 */
18return [
19 'year' => ':count jaar',
20 'a_year' => '\'n jaar|:count jaar',
21 'y' => ':count j.',
22 'month' => ':count maand|:count maande',
23 'a_month' => '\'n maand|:count maande',
24 'm' => ':count maa.',
25 'week' => ':count week|:count weke',
26 'a_week' => '\'n week|:count weke',
27 'w' => ':count w.',
28 'day' => ':count dag|:count dae',
29 'a_day' => '\'n dag|:count dae',
30 'd' => ':count d.',
31 'hour' => ':count uur',
32 'a_hour' => '\'n uur|:count uur',
33 'h' => ':count u.',
34 'minute' => ':count minuut|:count minute',
35 'a_minute' => '\'n minuut|:count minute',
36 'min' => ':count min.',
37 'second' => ':count sekond|:count sekondes',
38 'a_second' => '\'n paar sekondes|:count sekondes',
39 's' => ':count s.',
40 'ago' => ':time gelede',
41 'from_now' => 'oor :time',
42 'after' => ':time na',
43 'before' => ':time voor',
44 'diff_now' => 'Nou',
45 'diff_today' => 'Vandag',
46 'diff_today_regexp' => 'Vandag(?:\\s+om)?',
47 'diff_yesterday' => 'Gister',
48 'diff_yesterday_regexp' => 'Gister(?:\\s+om)?',
49 'diff_tomorrow' => 'Môre',
50 'diff_tomorrow_regexp' => 'Môre(?:\\s+om)?',
51 'formats' => [
52 'LT' => 'HH:mm',
53 'LTS' => 'HH:mm:ss',
54 'L' => 'DD/MM/YYYY',
55 'LL' => 'D MMMM YYYY',
56 'LLL' => 'D MMMM YYYY HH:mm',
57 'LLLL' => 'dddd, D MMMM YYYY HH:mm',
58 ],
59 'calendar' => [
60 'sameDay' => '[Vandag om] LT',
61 'nextDay' => '[Môre om] LT',
62 'nextWeek' => 'dddd [om] LT',
63 'lastDay' => '[Gister om] LT',
64 'lastWeek' => '[Laas] dddd [om] LT',
65 'sameElse' => 'L',
66 ],
67 'ordinal' => function ($number) {
68 return $number.(($number === 1 || $number === 8 || $number >= 20) ? 'ste' : 'de');
69 },
70 'meridiem' => ['VM', 'NM'],
71 'months' => ['Januarie', 'Februarie', 'Maart', 'April', 'Mei', 'Junie', 'Julie', 'Augustus', 'September', 'Oktober', 'November', 'Desember'],
72 'months_short' => ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'],
73 'weekdays' => ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'],
74 'weekdays_short' => ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'],
75 'weekdays_min' => ['So', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Sa'],
76 'first_day_of_week' => 1,
77 'day_of_first_week_of_year' => 4,
78 'list' => [', ', ' en '],
79];