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 / it.php

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

157 lines 3.6 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 Italian language.
5 *
6 * @author Manuele Grueff <[email protected]>
7 * @link https://github.com/rlanvin/php-rrule
8 */
9 return array(
10 'yearly' => array(
11 '1' => 'annualmente',
12 'else' => 'ogni %{interval} anni'
13 ),
14 'monthly' => array(
15 '1' => 'mensilmente',
16 'else' => 'ogni %{interval} mesi'
17 ),
18 'weekly' => array(
19 '1' => 'settimanalmente',
20 '2' => 'a settimane alterne',
21 'else' => 'ogni %{interval} settimana'
22 ),
23 'daily' => array(
24 '1' => 'giornalmente',
25 '2' => 'a giorni alterni',
26 'else' => 'every %{interval} days'
27 ),
28 'hourly' => array(
29 '1' => 'ogni ora',
30 'else' => 'ogni %{interval} ore'
31 ),
32 'minutely' => array(
33 '1' => 'ogni minuto',
34 'else' => 'ogni %{interval} minuti'
35 ),
36 'secondly' => array(
37 '1' => 'ogni secondo',
38 'else' => 'ogni %{interval} secondi'
39 ),
40 'dtstart' => ', a partire dal %{date}',
41 'infinite' => ', per sempre',
42 'until' => ', fino al %{date}',
43 'count' => array(
44 '1' => ', una volta',
45 'else' => ', %{count} volte'
46 ),
47 'and' => 'e ',
48 'x_of_the_y' => array(
49 'yearly' => '%{x} dell\'anno', // e.g. the first Monday of the year, or the first day of the year
50 'monthly' => '%{x} del mese',
51 ),
52 'bymonth' => ' in %{months}',
53 'months' => array(
54 1 => 'Gennaio',
55 2 => 'Febbraio',
56 3 => 'Marzo',
57 4 => 'Aprile',
58 5 => 'Maggio',
59 6 => 'Giugno',
60 7 => 'Luglio',
61 8 => 'Agosto',
62 9 => 'Settembre',
63 10 => 'Ottobre',
64 11 => 'Novembre',
65 12 => 'Dicembre',
66 ),
67 'byweekday' => ' il %{weekdays}',
68 'weekdays' => array(
69 1 => 'Lunedì',
70 2 => 'Martedì',
71 3 => 'Mercoledì',
72 4 => 'Giovedì',
73 5 => 'Venerdì',
74 6 => 'Sabato',
75 7 => 'Domenica',
76 ),
77 'nth_weekday' => array(
78 '1' => 'il primo %{weekday}', // e.g. the first Monday
79 '2' => 'il secondo %{weekday}',
80 '3' => 'il terzo %{weekday}',
81 'else' => 'il %{n}o %{weekday}'
82 ),
83 '-nth_weekday' => array(
84 '-1' => 'l\'ultimo %{weekday}', // e.g. the last Monday
85 '-2' => 'il penultimo %{weekday}',
86 '-3' => 'il secondultimo %{weekday}',
87 'else' => '%{n} %{weekday} prima dell\'ultimo %{weekday}'
88 ),
89 'byweekno' => array(
90 '1' => ' nella %{weeks} settimana',
91 'else' => ' nelle settimane %{weeks}'
92 ),
93 'nth_weekno' => '%{n}',
94 'bymonthday' => ' il %{monthdays}',
95 'nth_monthday' => array(
96 '1' => 'il primo',
97 '2' => 'il secondo',
98 '3' => 'il terzo',
99 '21' => 'il ventunesimo',
100 '22' => 'il ventiduesimo',
101 '23' => 'il ventitresimo',
102 '31' => 'il trentunesimo',
103 'else' => 'il %{n}'
104 ),
105 '-nth_monthday' => array(
106 '-1' => 'l\'ultimo giorno',
107 '-2' => 'il penultimo giorno',
108 '-3' => 'il secondultimo giorno',
109 'else' => 'a %{n} giorni dalla fine mese'
110 ),
111 'byyearday' => array(
112 '1' => ' on %{yeardays} day',
113 'else' => ' on %{yeardays} days'
114 ),
115 'nth_yearday' => array(
116 '1' => 'il primo',
117 '2' => 'il secondo',
118 '3' => 'il terzo',
119 'else' => 'il %{n}o'
120 ),
121 '-nth_yearday' => array(
122 '-1' => 'l\'ultimo giorno',
123 '-2' => 'il penultimo giorno',
124 '-3' => 'il secondultimo giorno',
125 'else' => 'a %{n} giorni dalla fine anno'
126 ),
127 'byhour' => array(
128 '1' => ' alle %{hours}',
129 'else' => ' alle %{hours}'
130 ),
131 'nth_hour' => '%{n}h',
132 'byminute' => array(
133 '1' => ' al minuto %{minutes}',
134 'else' => ' ai minuti %{minutes}'
135 ),
136 'nth_minute' => '%{n}',
137 'bysecond' => array(
138 '1' => ' al secondo %{seconds}',
139 'else' => ' ai secondi %{seconds}'
140 ),
141 'nth_second' => '%{n}',
142 'bysetpos' => ', ma solo la %{setpos} occorrenza',
143 'nth_setpos' => array(
144 '1' => 'la prima',
145 '2' => 'la seconda',
146 '3' => 'la terza',
147 'else' => 'la %{n} occorrenza'
148 ),
149 '-nth_setpos' => array(
150 '-1' => 'la ultima',
151 '-2' => 'la penultima',
152 '-3' => 'la secondultima',
153 'else' => 'a %{n} occorrenze dall\'ultima'
154 )
155 );
156 ?>
157