PluginProbe
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution / 2.5.0
Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution v2.5.0
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 / en.php

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

168 lines 4.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Translation file for English language.
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' => 'yearly',
20 'else' => 'every %{interval} years'
21 ),
22 'monthly' => array(
23 '1' => 'monthly',
24 'else' => 'every %{interval} months'
25 ),
26 'weekly' => array(
27 '1' => 'weekly',
28 '2' => 'every other week',
29 'else' => 'every %{interval} weeks'
30 ),
31 'daily' => array(
32 '1' => 'daily',
33 '2' => 'every other day',
34 'else' => 'every %{interval} days'
35 ),
36 'hourly' => array(
37 '1' => 'hourly',
38 'else' => 'every %{interval} hours'
39 ),
40 'minutely' => array(
41 '1' => 'minutely',
42 'else' => 'every %{interval} minutes'
43 ),
44 'secondly' => array(
45 '1' => 'secondly',
46 'else' => 'every %{interval} seconds'
47 ),
48 'dtstart' => ', starting from %{date}',
49 'infinite' => ', forever',
50 'until' => ', until %{date}',
51 'count' => array(
52 '1' => ', one time',
53 'else' => ', %{count} times'
54 ),
55 'and' => 'and ',
56 'x_of_the_y' => array(
57 'yearly' => '%{x} of the year', // e.g. the first Monday of the year, or the first day of the year
58 'monthly' => '%{x} of the month',
59 ),
60 'bymonth' => ' in %{months}',
61 'months' => array(
62 1 => 'January',
63 2 => 'February',
64 3 => 'March',
65 4 => 'April',
66 5 => 'May',
67 6 => 'June',
68 7 => 'July',
69 8 => 'August',
70 9 => 'September',
71 10 => 'October',
72 11 => 'November',
73 12 => 'December',
74 ),
75 'byweekday' => ' on %{weekdays}',
76 'weekdays' => array(
77 1 => 'Monday',
78 2 => 'Tuesday',
79 3 => 'Wednesday',
80 4 => 'Thursday',
81 5 => 'Friday',
82 6 => 'Saturday',
83 7 => 'Sunday',
84 ),
85 'nth_weekday' => array(
86 '1' => 'the first %{weekday}', // e.g. the first Monday
87 '2' => 'the second %{weekday}',
88 '3' => 'the third %{weekday}',
89 'else' => 'the %{n}th %{weekday}'
90 ),
91 '-nth_weekday' => array(
92 '-1' => 'the last %{weekday}', // e.g. the last Monday
93 '-2' => 'the penultimate %{weekday}',
94 '-3' => 'the antepenultimate %{weekday}',
95 'else' => 'the %{n}th to the last %{weekday}'
96 ),
97 'byweekno' => array(
98 '1' => ' on week %{weeks}',
99 'else' => ' on weeks number %{weeks}'
100 ),
101 'nth_weekno' => '%{n}',
102 'bymonthday' => ' on %{monthdays}',
103 'nth_monthday' => array(
104 '1' => 'the 1st',
105 '2' => 'the 2nd',
106 '3' => 'the 3rd',
107 '21' => 'the 21st',
108 '22' => 'the 22nd',
109 '23' => 'the 23rd',
110 '31' => 'the 31st',
111 'else' => 'the %{n}th'
112 ),
113 '-nth_monthday' => array(
114 '-1' => 'the last day',
115 '-2' => 'the penultimate day',
116 '-3' => 'the antepenultimate day',
117 '-21' => 'the 21st to the last day',
118 '-22' => 'the 22nd to the last day',
119 '-23' => 'the 23rd to the last day',
120 '-31' => 'the 31st to the last day',
121 'else' => 'the %{n}th to the last day'
122 ),
123 'byyearday' => array(
124 '1' => ' on %{yeardays} day',
125 'else' => ' on %{yeardays} days'
126 ),
127 'nth_yearday' => array(
128 '1' => 'the first',
129 '2' => 'the second',
130 '3' => 'the third',
131 'else' => 'the %{n}th'
132 ),
133 '-nth_yearday' => array(
134 '-1' => 'the last',
135 '-2' => 'the penultimate',
136 '-3' => 'the antepenultimate',
137 'else' => 'the %{n}th to the last'
138 ),
139 'byhour' => array(
140 '1' => ' at %{hours}',
141 'else' => ' at %{hours}'
142 ),
143 'nth_hour' => '%{n}h',
144 'byminute' => array(
145 '1' => ' at minute %{minutes}',
146 'else' => ' at minutes %{minutes}'
147 ),
148 'nth_minute' => '%{n}',
149 'bysecond' => array(
150 '1' => ' at second %{seconds}',
151 'else' => ' at seconds %{seconds}'
152 ),
153 'nth_second' => '%{n}',
154 'bysetpos' => ', but only %{setpos} instance of this set',
155 'nth_setpos' => array(
156 '1' => 'the first',
157 '2' => 'the second',
158 '3' => 'the third',
159 'else' => 'the %{n}th'
160 ),
161 '-nth_setpos' => array(
162 '-1' => 'the last',
163 '-2' => 'the penultimate',
164 '-3' => 'the antepenultimate',
165 'else' => 'the %{n}th to the last'
166 )
167 );
168