PluginProbe
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution / 1.5.22
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution v1.5.22
2.5.0 2.4.0 2.3.0 2.2.5 2.2.0 2.1.2 2.1.1 trunk 1.10.0 1.10.01 1.10.02 1.5.0 1.5.01 1.5.02 1.5.1 1.5.10 1.5.20 1.5.21 1.5.22 1.5.23 1.5.24 1.5.25 1.6.0 1.7.0 1.7.1 All 34 releases
fluent-booking / app / Services / Libs / RRule / i18n / nl.php

nl.php in Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution 1.5.22, at app/Services/Libs/RRule/i18n/nl.php

160 lines 4.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Translation file for Dutch language.
4 * Provided by Peter Melis <[email protected]>
5 *
6 * Most strings can be an array, with a value as the key. The system will
7 * pick the translation corresponding to the key. The key "else" will be picked
8 * if no matching value is found. This is useful for plurals.
9 *
10 * Licensed under the MIT license.
11 *
12 * For the full copyright and license information, please view the LICENSE file.
13 *
14 * @author Rémi Lanvin <[email protected]>
15 * @link https://github.com/rlanvin/php-rrule
16 */
17 return array(
18 'yearly' => array(
19 '1' => 'jaarlijks',
20 'else' => 'elke %{interval} jaar'
21 ),
22 'monthly' => array(
23 '1' => 'maandelijks',
24 'else' => 'elke %{interval} maanden'
25 ),
26 'weekly' => array(
27 '1' => 'wekelijks',
28 '2' => 'om de week',
29 'else' => 'elke %{interval} weken'
30 ),
31 'daily' => array(
32 '1' => 'dagelijks',
33 '2' => 'om de dag',
34 'else' => 'elke %{interval} dagen'
35 ),
36 'hourly' => array(
37 '1' => 'elk uur',
38 'else' => 'elke %{interval} uur'
39 ),
40 'minutely' => array(
41 '1' => 'elke minuut',
42 'else' => 'elke %{interval} minuten'
43 ),
44 'secondly' => array(
45 '1' => 'elke seconde',
46 'else' => 'elke %{interval} seconden'
47 ),
48 'dtstart' => ', wordt gestart vanaf %{date}',
49 'infinite' => ', oneindig',
50 'until' => ', tot en met %{date}',
51 'count' => array(
52 '1' => ', één keer',
53 'else' => ', %{count} keren'
54 ),
55 'and' => 'en ',
56 'x_of_the_y' => array(
57 'yearly' => '%{x} van het jaar', // e.g. the first Monday of the year, or the first day of the year
58 'monthly' => '%{x} van de maand',
59 ),
60 'bymonth' => ' in %{months}',
61 'months' => array(
62 1 => 'Januari',
63 2 => 'Februari',
64 3 => 'Maart',
65 4 => 'April',
66 5 => 'Mei',
67 6 => 'Juni',
68 7 => 'Juli',
69 8 => 'Augustus',
70 9 => 'September',
71 10 => 'Oktober',
72 11 => 'November',
73 12 => 'December',
74 ),
75 'byweekday' => ' op %{weekdays}',
76 'weekdays' => array(
77 1 => 'Maandag',
78 2 => 'Dinsdag',
79 3 => 'Woensdag',
80 4 => 'Donderdag',
81 5 => 'Vrijdag',
82 6 => 'Zaterdag',
83 7 => 'Zondag',
84 ),
85 'nth_weekday' => array(
86 '1' => 'de eerste %{weekday}', // e.g. the first Monday
87 '2' => 'de tweede %{weekday}',
88 '3' => 'de derde %{weekday}',
89 '8' => 'de achtste %{weekday}',
90 'else' => 'de %{n}e %{weekday}'
91 ),
92 '-nth_weekday' => array(
93 '-1' => 'de laatste %{weekday}', // e.g. the last Monday
94 '-2' => 'de voorlaatste %{weekday}',
95 '-3' => 'de twee-na-laatste %{weekday}',
96 'else' => 'de %{n}e dag de laatste %{weekday}'
97 ),
98 'byweekno' => array(
99 '1' => ' in week %{weeks}',
100 'else' => ' in week nummer %{weeks}'
101 ),
102 'nth_weekno' => '%{n}',
103 'bymonthday' => ' op %{monthdays}',
104 'nth_monthday' => array(
105 'else' => 'de %{n}e'
106 ),
107 '-nth_monthday' => array(
108 '-1' => 'de laatste dag', // not so many options necessary for NL translation, but none removed
109 '-2' => 'de voorlaatste dag',
110 '-3' => 'de twee-na-laatste dag',
111 'else' => 'de %{n}e tot de laatste dag'
112 ),
113 'byyearday' => array(
114 '1' => ' op dag %{yeardays}',
115 'else' => ' op de dagen %{yeardays}'
116 ),
117 'nth_yearday' => array(
118 '1' => 'de eerste',
119 '2' => 'de tweede',
120 '3' => 'de derde',
121 '8' => 'de achtste',
122 'else' => 'de %{n}e'
123 ),
124 '-nth_yearday' => array(
125 '-1' => 'de laatste',
126 '-2' => 'de voorlaatste',
127 '-3' => 'de twee-na-laatste',
128 'else' => 'de %{n}e tot de laatste'
129 ),
130 'byhour' => array(
131 '1' => ' op uur %{hours}',
132 'else' => ' op uren %{hours}'
133 ),
134 'nth_hour' => '%{n}u',
135 'byminute' => array(
136 '1' => ' op minuut %{minutes}',
137 'else' => ' op minuten %{minutes}'
138 ),
139 'nth_minute' => '%{n}',
140 'bysecond' => array(
141 '1' => ' op seconde %{seconds}',
142 'else' => ' op seconden %{seconds}'
143 ),
144 'nth_second' => '%{n}',
145 'bysetpos' => ', maar alleen %{setpos} match van deze set',
146 'nth_setpos' => array(
147 '1' => 'de eerste',
148 '2' => 'de tweede',
149 '3' => 'de derde',
150 '8' => 'de achtste,',
151 'else' => 'de %{n}e'
152 ),
153 '-nth_setpos' => array(
154 '-1' => 'de laatste',
155 '-2' => 'de voorlaatste',
156 '-3' => 'de twee-na-laatste',
157 'else' => 'de %{n}e tot de laatste'
158 )
159 );
160