Version Description
Fixed: Events of the same day of the previous year were visible in popup
Updated: Italian translation thanks to Marco Moniga
Download this release
Release Info
Developer | webdorado |
Plugin | Calendar by WD – Responsive Event Calendar |
Version | 1.5.60 |
Comparing to | |
See all releases |
Code changes from version 1.5.59 to 1.5.60
- calendar.php +2 -2
- front_end/frontend_functions.php +12 -13
- languages/sp_calendar-it_IT.mo +0 -0
- languages/sp_calendar-it_IT.po +757 -216
- readme.txt +5 -1
calendar.php
CHANGED
@@ -3,12 +3,12 @@
|
|
3 |
Plugin Name: Spider Event Calendar
|
4 |
Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
|
5 |
Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
|
6 |
-
Version: 1.5.
|
7 |
Author: WebDorado
|
8 |
Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
-
$wd_spider_calendar_version="1.5.
|
12 |
// LANGUAGE localization.
|
13 |
function sp_calendar_language_load() {
|
14 |
load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
|
3 |
Plugin Name: Spider Event Calendar
|
4 |
Plugin URI: https://web-dorado.com/products/wordpress-calendar.html
|
5 |
Description: Spider Event Calendar is a highly configurable product which allows you to have multiple organized events. Spider Event Calendar is an extraordinary user friendly extension.
|
6 |
+
Version: 1.5.60
|
7 |
Author: WebDorado
|
8 |
Author URI: https://web-dorado.com/wordpress-plugins-bundle.html
|
9 |
License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
+
$wd_spider_calendar_version="1.5.60";
|
12 |
// LANGUAGE localization.
|
13 |
function sp_calendar_language_load() {
|
14 |
load_plugin_textdomain('sp_calendar', FALSE, basename(dirname(__FILE__)) . '/languages');
|
front_end/frontend_functions.php
CHANGED
@@ -99,13 +99,13 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
99 |
else{
|
100 |
$order_by = " ORDER BY STR_TO_DATE( SUBSTRING( time, 1, 7 ) , '%h:%i%p' )";
|
101 |
}
|
102 |
-
|
103 |
if($cat_ids!='' and preg_match("/^[0-9\,]+$/", $cat_ids)) {
|
104 |
-
|
105 |
-
|
106 |
-
else{
|
107 |
-
|
108 |
-
|
109 |
$rows = $wpdb->get_results($query." ".$order_by);
|
110 |
|
111 |
|
@@ -592,13 +592,12 @@ $cat_ids = substr($cat_ids, 0,-1);
|
|
592 |
$order_by = " ORDER BY STR_TO_DATE( SUBSTRING( time, 1, 7 ) , '%h:%i%p' )";
|
593 |
}
|
594 |
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
}
|
602 |
$rows = $wpdb->get_results($query." ".$order_by);
|
603 |
|
604 |
|
99 |
else{
|
100 |
$order_by = " ORDER BY STR_TO_DATE( SUBSTRING( time, 1, 7 ) , '%h:%i%p' )";
|
101 |
}
|
102 |
+
|
103 |
if($cat_ids!='' and preg_match("/^[0-9\,]+$/", $cat_ids)) {
|
104 |
+
|
105 |
+
$query = $wpdb->prepare ("SELECT " . $wpdb->prefix . "spidercalendar_event.*," . $wpdb->prefix . "spidercalendar_event_category.color from " . $wpdb->prefix . "spidercalendar_event JOIN " . $wpdb->prefix . "spidercalendar_event_category ON " . $wpdb->prefix . "spidercalendar_event.category = " . $wpdb->prefix . "spidercalendar_event_category.id where " . $wpdb->prefix . "spidercalendar_event_category.published=1 and " . $wpdb->prefix . "spidercalendar_event.category IN (".$cat_ids.") and " . $wpdb->prefix . "spidercalendar_event.published=1 and ( ( (date<=%s or date like %s) and (date_end>=%s ) or (date_end='0000-00-00' and date like %s) ) or ( date_end is Null and date like %s ) ) and calendar=%d", date("n", strtotime($date ." +1 month")),substr( $date,0,7)."%",date("n", strtotime($date ." -1 month")),substr( $date,0,7).'-01',substr( $date,0,7)."%",$calendar);
|
106 |
+
} else {
|
107 |
+
$query = $wpdb->prepare("SELECT * from " . $wpdb->prefix . "spidercalendar_event where published=1 and ( ( (date<=%s or date like %s) and date_end>=%s) or ( date_end is Null and date like %s ) ) and calendar=%d ", "" . substr($date, 0, 7) . "-01", "" . substr($date, 0, 7) . "%", "" . substr($date, 0, 7) . "-01", "" . substr($date, 0, 7) . "%", $calendar);
|
108 |
+
}
|
109 |
$rows = $wpdb->get_results($query." ".$order_by);
|
110 |
|
111 |
|
592 |
$order_by = " ORDER BY STR_TO_DATE( SUBSTRING( time, 1, 7 ) , '%h:%i%p' )";
|
593 |
}
|
594 |
|
595 |
+
if($cat_ids!='' and preg_match("/^[0-9\,]+$/", $cat_ids)) {
|
596 |
+
|
597 |
+
$query = $wpdb->prepare ("SELECT " . $wpdb->prefix . "spidercalendar_event.*," . $wpdb->prefix . "spidercalendar_event_category.color from " . $wpdb->prefix . "spidercalendar_event JOIN " . $wpdb->prefix . "spidercalendar_event_category ON " . $wpdb->prefix . "spidercalendar_event.category = " . $wpdb->prefix . "spidercalendar_event_category.id where " . $wpdb->prefix . "spidercalendar_event_category.published=1 and " . $wpdb->prefix . "spidercalendar_event.category IN (".$cat_ids.") and " . $wpdb->prefix . "spidercalendar_event.published=1 and ( ( (date<=%s or date like %s) and (date_end>=%s ) or (date_end='0000-00-00' and date like %s) ) or ( date_end is Null and date like %s ) ) and calendar=%d", date("n", strtotime($date ." +1 month")),substr( $date,0,7)."%",date("n", strtotime($date ." -1 month")),substr( $date,0,7).'-01',substr( $date,0,7)."%",$calendar);
|
598 |
+
} else {
|
599 |
+
$query = $wpdb->prepare("SELECT * from " . $wpdb->prefix . "spidercalendar_event where published=1 and ( ( (date<=%s or date like %s) and date_end>=%s) or ( date_end is Null and date like %s ) ) and calendar=%d ", "" . substr($date, 0, 7) . "-01", "" . substr($date, 0, 7) . "%", "" . substr($date, 0, 7) . "-01", "" . substr($date, 0, 7) . "%", $calendar);
|
600 |
+
}
|
|
|
601 |
$rows = $wpdb->get_results($query." ".$order_by);
|
602 |
|
603 |
|
languages/sp_calendar-it_IT.mo
CHANGED
Binary file
|
languages/sp_calendar-it_IT.po
CHANGED
@@ -2,349 +2,890 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: spider_calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n"
|
14 |
-
"X-Poedit-Basepath:
|
15 |
-
"X-Generator: Poedit
|
16 |
-
"X-Poedit-SearchPath-0:
|
17 |
-
"\\spider-event-calendar\n"
|
18 |
|
19 |
-
#:
|
20 |
-
msgid "
|
21 |
-
|
|
|
|
|
22 |
|
23 |
-
#:
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
#:
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
msgstr "Ripetere ogni"
|
31 |
|
32 |
-
#:
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:387
|
40 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:235
|
41 |
-
msgid "Day"
|
42 |
-
msgstr "Giorno"
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
-
msgstr "
|
47 |
|
48 |
-
#:
|
49 |
-
|
50 |
-
|
51 |
-
msgstr "Mesi su"
|
52 |
|
53 |
-
#:
|
54 |
-
|
55 |
-
msgid "
|
56 |
-
|
|
|
57 |
|
58 |
-
#:
|
59 |
-
|
60 |
-
|
61 |
-
msgstr "sulla"
|
62 |
|
63 |
-
#:
|
64 |
-
msgid "
|
65 |
-
msgstr "
|
66 |
|
67 |
-
#:
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
-
#:
|
72 |
-
#:
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
#:
|
77 |
-
|
78 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
msgid "January"
|
80 |
msgstr "Gennaio"
|
81 |
|
82 |
-
#:
|
83 |
-
#:
|
84 |
-
#:
|
85 |
-
#:
|
86 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:81
|
87 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:44
|
88 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:79
|
89 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:45
|
90 |
msgid "February"
|
91 |
msgstr "Febbraio"
|
92 |
|
93 |
-
#:
|
94 |
-
#:
|
95 |
-
#:
|
96 |
-
#:
|
97 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:82
|
98 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:45
|
99 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:80
|
100 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:46
|
101 |
msgid "March"
|
102 |
msgstr "Marzo"
|
103 |
|
104 |
-
#:
|
105 |
-
#:
|
106 |
-
#:
|
107 |
-
#:
|
108 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:83
|
109 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:46
|
110 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:81
|
111 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:47
|
112 |
msgid "April"
|
113 |
msgstr "Aprile"
|
114 |
|
115 |
-
#:
|
116 |
-
#:
|
117 |
-
#:
|
118 |
-
#:
|
119 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:84
|
120 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:47
|
121 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:82
|
122 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:48
|
123 |
msgid "May"
|
124 |
msgstr "Maggio"
|
125 |
|
126 |
-
#:
|
127 |
-
#:
|
128 |
-
#:
|
129 |
-
#:
|
130 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:85
|
131 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:48
|
132 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:83
|
133 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:49
|
134 |
msgid "June"
|
135 |
msgstr "Giugno"
|
136 |
|
137 |
-
#:
|
138 |
-
#:
|
139 |
-
#:
|
140 |
-
#:
|
141 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:86
|
142 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:49
|
143 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:84
|
144 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:50
|
145 |
msgid "July"
|
146 |
msgstr "Luglio"
|
147 |
|
148 |
-
#:
|
149 |
-
#:
|
150 |
-
#:
|
151 |
-
#:
|
152 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:87
|
153 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:50
|
154 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:85
|
155 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:51
|
156 |
msgid "August"
|
157 |
msgstr "Agosto"
|
158 |
|
159 |
-
#:
|
160 |
-
#:
|
161 |
-
#:
|
162 |
-
#:
|
163 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:88
|
164 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:51
|
165 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:86
|
166 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:52
|
167 |
msgid "September"
|
168 |
msgstr "Settembre"
|
169 |
|
170 |
-
#:
|
171 |
-
#:
|
172 |
-
#:
|
173 |
-
#:
|
174 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:89
|
175 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:52
|
176 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:87
|
177 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:53
|
178 |
msgid "October"
|
179 |
msgstr "Ottobre"
|
180 |
|
181 |
-
#:
|
182 |
-
#:
|
183 |
-
#:
|
184 |
-
#:
|
185 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:90
|
186 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:53
|
187 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:88
|
188 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:54
|
189 |
msgid "November"
|
190 |
msgstr "Novembre"
|
191 |
|
192 |
-
#:
|
193 |
-
#:
|
194 |
-
#:
|
195 |
-
#:
|
196 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:91
|
197 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:54
|
198 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:89
|
199 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:55
|
200 |
msgid "December"
|
201 |
msgstr "Dicembre"
|
202 |
|
203 |
-
#:
|
204 |
-
#:
|
205 |
-
#:
|
206 |
-
#:
|
207 |
-
#:
|
208 |
-
#:
|
209 |
-
#:
|
210 |
-
#:
|
211 |
-
#:
|
212 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
msgid "Week"
|
214 |
msgstr "Settimana"
|
215 |
|
216 |
-
#:
|
217 |
-
#:
|
218 |
-
#:
|
219 |
-
#:
|
220 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:288
|
221 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:226
|
222 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:412
|
223 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:260
|
224 |
msgid "List"
|
225 |
msgstr "Lista"
|
226 |
|
227 |
-
#:
|
228 |
-
#:
|
229 |
-
#:
|
230 |
-
#:
|
231 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth.php:300
|
232 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:238
|
233 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek.php:424
|
234 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarweek_widget.php:272
|
235 |
msgid "Month"
|
236 |
msgstr "Mese"
|
237 |
|
238 |
-
#:
|
239 |
-
#:
|
240 |
-
|
241 |
-
|
242 |
-
msgid "There Is No Event In This Day"
|
243 |
msgstr "Non ci sono eventi in questo giorno"
|
244 |
|
245 |
-
#:
|
246 |
-
#:
|
247 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
msgstr "Non ci sono eventi in questo mese"
|
249 |
|
250 |
-
#:
|
251 |
-
#:
|
252 |
-
#:
|
253 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:328
|
254 |
msgid "Su"
|
255 |
msgstr "Dom"
|
256 |
|
257 |
-
#:
|
258 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:309
|
259 |
msgid "Mo"
|
260 |
msgstr "Lun"
|
261 |
|
262 |
-
#:
|
263 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:312
|
264 |
msgid "Tu"
|
265 |
msgstr "Mar"
|
266 |
|
267 |
-
#:
|
268 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:315
|
269 |
msgid "We"
|
270 |
msgstr "Mer"
|
271 |
|
272 |
-
#:
|
273 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:318
|
274 |
msgid "Th"
|
275 |
msgstr "Gio"
|
276 |
|
277 |
-
#:
|
278 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:321
|
279 |
msgid "Fr"
|
280 |
msgstr "Ven"
|
281 |
|
282 |
-
#:
|
283 |
-
#: C:\wamp\www\wordpress3.5\wp-content\plugins\spider-event-calendar/front_end/bigcalendarmonth_widget.php:324
|
284 |
msgid "Sa"
|
285 |
msgstr "Sab"
|
286 |
|
287 |
-
#:
|
288 |
-
#:
|
289 |
-
#:
|
290 |
-
#:
|
291 |
-
#:
|
292 |
-
#:
|
293 |
#, fuzzy
|
294 |
msgid "See more"
|
295 |
msgstr "Scopri di più ..."
|
296 |
|
297 |
-
#:
|
|
|
298 |
msgid "First"
|
299 |
msgstr "Primi"
|
300 |
|
301 |
-
#:
|
|
|
302 |
msgid "Second"
|
303 |
msgstr "Secondo"
|
304 |
|
305 |
-
#:
|
|
|
306 |
msgid "Third"
|
307 |
msgstr "Terzo"
|
308 |
|
309 |
-
#:
|
|
|
310 |
msgid "Fourth"
|
311 |
msgstr "Quarto"
|
312 |
|
313 |
-
#:
|
|
|
314 |
msgid "Last"
|
315 |
msgstr "Ultimo"
|
316 |
|
317 |
-
#:
|
|
|
318 |
msgid "Monday"
|
319 |
msgstr "Lunedì"
|
320 |
|
321 |
-
#:
|
|
|
322 |
msgid "Tuesday"
|
323 |
msgstr "Martedì"
|
324 |
|
325 |
-
#:
|
|
|
326 |
msgid "Wednesday"
|
327 |
msgstr "Mercoledì"
|
328 |
|
329 |
-
#:
|
|
|
330 |
msgid "Thursday"
|
331 |
msgstr "Giovedì"
|
332 |
|
333 |
-
#:
|
|
|
334 |
msgid "Friday"
|
335 |
msgstr "Venerdì"
|
336 |
|
337 |
-
#:
|
|
|
338 |
msgid "Saturday"
|
339 |
msgstr "Sabato"
|
340 |
|
341 |
-
#:
|
|
|
342 |
msgid "Sunday"
|
343 |
msgstr "Domenica"
|
344 |
|
345 |
-
#:
|
346 |
-
|
347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
#~ msgid "No Repeat"
|
350 |
#~ msgstr "Nessuna ripetizione"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: spider_calendar\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-03-19 13:34+0400\n"
|
6 |
+
"PO-Revision-Date: 2018-03-19 13:34+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: it\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_attr_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Generator: Poedit 2.0.1\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
|
|
17 |
|
18 |
+
#: calendar.php:621
|
19 |
+
msgid ""
|
20 |
+
"This is the best WordPress event Calendar plugin available in WordPress "
|
21 |
+
"Directory."
|
22 |
+
msgstr ""
|
23 |
|
24 |
+
#: calendar.php:626
|
25 |
+
msgid "Responsive"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: calendar.php:627
|
29 |
+
msgid ""
|
30 |
+
"Spider Calendar plugin is fully responsive and mobile-ready. Thus a "
|
31 |
+
"beautiful display on all types of devices and screens is guaranteed."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: calendar.php:630
|
35 |
+
msgid "Unlimited Calendars & Events"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: calendar.php:631
|
39 |
+
msgid ""
|
40 |
+
"The calendar plugin allows you to create as many calendars as you want and "
|
41 |
+
"add unlimited number of events in each calendar. Customize the design of "
|
42 |
+
"each calendar, create events for each calendar separately and show multiple "
|
43 |
+
"calendars on one page."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: calendar.php:634
|
47 |
+
#, fuzzy
|
48 |
+
#| msgid "All categories"
|
49 |
+
msgid "Event Categories"
|
50 |
+
msgstr "Tutte le categorie"
|
51 |
+
|
52 |
+
#: calendar.php:635
|
53 |
+
msgid ""
|
54 |
+
"You can assign categories to your events by adding titles, descriptions and "
|
55 |
+
"category colors from the website admin panel. The plugin allows you "
|
56 |
+
"customize the calendars to show events from all or just a few categories."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: calendar.php:638
|
60 |
+
msgid "Themes"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: calendar.php:639
|
64 |
+
msgid ""
|
65 |
+
"Choose among 17 different calendar themes to make sure the calendar fits "
|
66 |
+
"perfectly with your website design. Add your own style to the themes by "
|
67 |
+
"customizing almost everything or easily create your own theme."
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: calendar.php:642
|
71 |
+
#, fuzzy
|
72 |
+
#| msgid "Repeat Every"
|
73 |
+
msgid "Repeat Events"
|
74 |
msgstr "Ripetere ogni"
|
75 |
|
76 |
+
#: calendar.php:643
|
77 |
+
msgid ""
|
78 |
+
"If you have events in your calendar that occur regularly you can choose to "
|
79 |
+
"use the recurring events option. You can set the events to repeat daily, "
|
80 |
+
"weekly, monthly, yearly on specific days of the week, specific days of the "
|
81 |
+
"month or year."
|
82 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
83 |
|
84 |
+
#: calendar.php:649
|
85 |
+
msgid "Creating/Editing Calendars"
|
86 |
+
msgstr ""
|
87 |
|
88 |
+
#: calendar.php:654
|
89 |
+
msgid "Creating/Editing Events"
|
90 |
+
msgstr ""
|
|
|
91 |
|
92 |
+
#: calendar.php:659
|
93 |
+
#, fuzzy
|
94 |
+
#| msgid "All categories"
|
95 |
+
msgid "Adding Event Category"
|
96 |
+
msgstr "Tutte le categorie"
|
97 |
|
98 |
+
#: calendar.php:664
|
99 |
+
msgid "Adding Themes"
|
100 |
+
msgstr ""
|
|
|
101 |
|
102 |
+
#: calendar.php:668 calendar.php:694
|
103 |
+
msgid "General Parameters"
|
104 |
+
msgstr ""
|
105 |
|
106 |
+
#: calendar.php:672
|
107 |
+
msgid "Header Parameters"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: calendar.php:676 calendar.php:702
|
111 |
+
msgid "Body Parameters"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: calendar.php:680 calendar.php:698
|
115 |
+
msgid "Popup Window Parameters"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: calendar.php:684
|
119 |
+
msgid "Other Views Parameters of the Wordpress Calendar"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: calendar.php:690
|
123 |
+
msgid "Adding Themes for a widget view"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: calendar.php:708
|
127 |
+
msgid "Publishing the Created Calendar in a Page or a Post"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: calendar.php:713
|
131 |
+
msgid "Publishing the Created Calendar in the Widget"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: calendar.php:718
|
135 |
+
msgid "Publishing the Upcoming Events widget"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: calendar.php:1318
|
139 |
+
msgid "This section allows you to create calendars."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: calendar.php:1319 calendar.php:1327 calendar.php:1335
|
143 |
+
#: calendar_functions.html.php:1161 calendar_functions.html.php:1579
|
144 |
+
#: calendar_functions.html.php:2076
|
145 |
+
msgid "Read More in User Manual."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: calendar.php:1326
|
149 |
+
msgid "This section allows you to create event categories."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: calendar.php:1334
|
153 |
+
msgid ""
|
154 |
+
"This section will allow exporting Spider Calendar data for further import to "
|
155 |
+
"Event Calendar WD."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: calendar.php:1358 calendar_functions.html.php:1169
|
159 |
+
#: calendar_functions.html.php:1587 calendar_functions.html.php:2084
|
160 |
+
#: wd/templates/display_overview_user_guide.php:33
|
161 |
+
msgid "Support Forum"
|
162 |
+
msgstr ""
|
163 |
|
164 |
+
#: calendar.php:1363 calendar_functions.html.php:1174
|
165 |
+
#: calendar_functions.html.php:1592 calendar_functions.html.php:2089
|
166 |
+
msgid "UPGRADE TO PAID VERSION"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: calendar.php:1373
|
170 |
+
#, php-format
|
171 |
+
msgid ""
|
172 |
+
"This is FREE version, Customizing %s is available only in the PAID version."
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: calendar.php:1544
|
176 |
+
msgid ""
|
177 |
+
"Spider Event Calendar advises:Optimize your web pages for search engines "
|
178 |
+
"with the"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: calendar.php:1545
|
182 |
+
msgid "More details"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: calendar.php:1546
|
186 |
+
msgid "FREE SEO"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: calendar.php:1547
|
190 |
+
msgid "plugin."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: calendar.php:1550
|
194 |
+
msgid "Install"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: calendar_functions.html.php:1160 calendar_functions.html.php:1578
|
198 |
+
#: calendar_functions.html.php:2075
|
199 |
+
msgid ""
|
200 |
+
"This section allows you to create/edit the events of a particular calendar."
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: front_end/bigcalendarday.php:155 front_end/bigcalendarday_widget.php:114
|
204 |
+
#: front_end/bigcalendarlist.php:156 front_end/bigcalendarlist_widget.php:113
|
205 |
+
#: front_end/bigcalendarmonth.php:168 front_end/bigcalendarmonth_widget.php:111
|
206 |
+
#: front_end/bigcalendarweek.php:156 front_end/bigcalendarweek_widget.php:109
|
207 |
msgid "January"
|
208 |
msgstr "Gennaio"
|
209 |
|
210 |
+
#: front_end/bigcalendarday.php:156 front_end/bigcalendarday_widget.php:115
|
211 |
+
#: front_end/bigcalendarlist.php:157 front_end/bigcalendarlist_widget.php:114
|
212 |
+
#: front_end/bigcalendarmonth.php:169 front_end/bigcalendarmonth_widget.php:112
|
213 |
+
#: front_end/bigcalendarweek.php:157 front_end/bigcalendarweek_widget.php:110
|
|
|
|
|
|
|
|
|
214 |
msgid "February"
|
215 |
msgstr "Febbraio"
|
216 |
|
217 |
+
#: front_end/bigcalendarday.php:157 front_end/bigcalendarday_widget.php:116
|
218 |
+
#: front_end/bigcalendarlist.php:158 front_end/bigcalendarlist_widget.php:115
|
219 |
+
#: front_end/bigcalendarmonth.php:170 front_end/bigcalendarmonth_widget.php:113
|
220 |
+
#: front_end/bigcalendarweek.php:158 front_end/bigcalendarweek_widget.php:111
|
|
|
|
|
|
|
|
|
221 |
msgid "March"
|
222 |
msgstr "Marzo"
|
223 |
|
224 |
+
#: front_end/bigcalendarday.php:158 front_end/bigcalendarday_widget.php:117
|
225 |
+
#: front_end/bigcalendarlist.php:159 front_end/bigcalendarlist_widget.php:116
|
226 |
+
#: front_end/bigcalendarmonth.php:171 front_end/bigcalendarmonth_widget.php:114
|
227 |
+
#: front_end/bigcalendarweek.php:159 front_end/bigcalendarweek_widget.php:112
|
|
|
|
|
|
|
|
|
228 |
msgid "April"
|
229 |
msgstr "Aprile"
|
230 |
|
231 |
+
#: front_end/bigcalendarday.php:159 front_end/bigcalendarday_widget.php:118
|
232 |
+
#: front_end/bigcalendarlist.php:160 front_end/bigcalendarlist_widget.php:117
|
233 |
+
#: front_end/bigcalendarmonth.php:172 front_end/bigcalendarmonth_widget.php:115
|
234 |
+
#: front_end/bigcalendarweek.php:160 front_end/bigcalendarweek_widget.php:113
|
|
|
|
|
|
|
|
|
235 |
msgid "May"
|
236 |
msgstr "Maggio"
|
237 |
|
238 |
+
#: front_end/bigcalendarday.php:160 front_end/bigcalendarday_widget.php:119
|
239 |
+
#: front_end/bigcalendarlist.php:161 front_end/bigcalendarlist_widget.php:118
|
240 |
+
#: front_end/bigcalendarmonth.php:173 front_end/bigcalendarmonth_widget.php:116
|
241 |
+
#: front_end/bigcalendarweek.php:161 front_end/bigcalendarweek_widget.php:114
|
|
|
|
|
|
|
|
|
242 |
msgid "June"
|
243 |
msgstr "Giugno"
|
244 |
|
245 |
+
#: front_end/bigcalendarday.php:161 front_end/bigcalendarday_widget.php:120
|
246 |
+
#: front_end/bigcalendarlist.php:162 front_end/bigcalendarlist_widget.php:119
|
247 |
+
#: front_end/bigcalendarmonth.php:174 front_end/bigcalendarmonth_widget.php:117
|
248 |
+
#: front_end/bigcalendarweek.php:162 front_end/bigcalendarweek_widget.php:115
|
|
|
|
|
|
|
|
|
249 |
msgid "July"
|
250 |
msgstr "Luglio"
|
251 |
|
252 |
+
#: front_end/bigcalendarday.php:162 front_end/bigcalendarday_widget.php:121
|
253 |
+
#: front_end/bigcalendarlist.php:163 front_end/bigcalendarlist_widget.php:120
|
254 |
+
#: front_end/bigcalendarmonth.php:175 front_end/bigcalendarmonth_widget.php:118
|
255 |
+
#: front_end/bigcalendarweek.php:163 front_end/bigcalendarweek_widget.php:116
|
|
|
|
|
|
|
|
|
256 |
msgid "August"
|
257 |
msgstr "Agosto"
|
258 |
|
259 |
+
#: front_end/bigcalendarday.php:163 front_end/bigcalendarday_widget.php:122
|
260 |
+
#: front_end/bigcalendarlist.php:164 front_end/bigcalendarlist_widget.php:121
|
261 |
+
#: front_end/bigcalendarmonth.php:176 front_end/bigcalendarmonth_widget.php:119
|
262 |
+
#: front_end/bigcalendarweek.php:164 front_end/bigcalendarweek_widget.php:117
|
|
|
|
|
|
|
|
|
263 |
msgid "September"
|
264 |
msgstr "Settembre"
|
265 |
|
266 |
+
#: front_end/bigcalendarday.php:164 front_end/bigcalendarday_widget.php:123
|
267 |
+
#: front_end/bigcalendarlist.php:165 front_end/bigcalendarlist_widget.php:122
|
268 |
+
#: front_end/bigcalendarmonth.php:177 front_end/bigcalendarmonth_widget.php:120
|
269 |
+
#: front_end/bigcalendarweek.php:165 front_end/bigcalendarweek_widget.php:118
|
|
|
|
|
|
|
|
|
270 |
msgid "October"
|
271 |
msgstr "Ottobre"
|
272 |
|
273 |
+
#: front_end/bigcalendarday.php:165 front_end/bigcalendarday_widget.php:124
|
274 |
+
#: front_end/bigcalendarlist.php:166 front_end/bigcalendarlist_widget.php:123
|
275 |
+
#: front_end/bigcalendarmonth.php:178 front_end/bigcalendarmonth_widget.php:121
|
276 |
+
#: front_end/bigcalendarweek.php:166 front_end/bigcalendarweek_widget.php:119
|
|
|
|
|
|
|
|
|
277 |
msgid "November"
|
278 |
msgstr "Novembre"
|
279 |
|
280 |
+
#: front_end/bigcalendarday.php:166 front_end/bigcalendarday_widget.php:125
|
281 |
+
#: front_end/bigcalendarlist.php:167 front_end/bigcalendarlist_widget.php:124
|
282 |
+
#: front_end/bigcalendarmonth.php:179 front_end/bigcalendarmonth_widget.php:122
|
283 |
+
#: front_end/bigcalendarweek.php:167 front_end/bigcalendarweek_widget.php:120
|
|
|
|
|
|
|
|
|
284 |
msgid "December"
|
285 |
msgstr "Dicembre"
|
286 |
|
287 |
+
#: front_end/bigcalendarday.php:570 front_end/bigcalendarday_widget.php:361
|
288 |
+
#: front_end/bigcalendarlist.php:553 front_end/bigcalendarlist_widget.php:336
|
289 |
+
#: front_end/bigcalendarmonth.php:552 front_end/bigcalendarmonth_widget.php:331
|
290 |
+
#: front_end/bigcalendarweek.php:599 front_end/bigcalendarweek_widget.php:359
|
291 |
+
#: functions_for_xml_and_ajax.php:358 functions_for_xml_and_ajax.php:610
|
292 |
+
#: spidercalendar_upcoming_events_widget.php:891
|
293 |
+
#: spidercalendar_upcoming_events_widget.php:963
|
294 |
+
#: spidercalendar_upcoming_events_widget.php:1441
|
295 |
+
#: spidercalendar_upcoming_events_widget.php:1852
|
296 |
+
msgid "Day"
|
297 |
+
msgstr "Giorno"
|
298 |
+
|
299 |
+
#: front_end/bigcalendarday.php:585 front_end/bigcalendarday_widget.php:376
|
300 |
+
#: front_end/bigcalendarlist.php:568 front_end/bigcalendarlist_widget.php:351
|
301 |
+
#: front_end/bigcalendarmonth.php:567 front_end/bigcalendarmonth_widget.php:345
|
302 |
+
#: front_end/bigcalendarweek.php:614 front_end/bigcalendarweek_widget.php:374
|
303 |
msgid "Week"
|
304 |
msgstr "Settimana"
|
305 |
|
306 |
+
#: front_end/bigcalendarday.php:599 front_end/bigcalendarday_widget.php:390
|
307 |
+
#: front_end/bigcalendarlist.php:582 front_end/bigcalendarlist_widget.php:365
|
308 |
+
#: front_end/bigcalendarmonth.php:581 front_end/bigcalendarmonth_widget.php:358
|
309 |
+
#: front_end/bigcalendarweek.php:628 front_end/bigcalendarweek_widget.php:388
|
|
|
|
|
|
|
|
|
310 |
msgid "List"
|
311 |
msgstr "Lista"
|
312 |
|
313 |
+
#: front_end/bigcalendarday.php:613 front_end/bigcalendarday_widget.php:404
|
314 |
+
#: front_end/bigcalendarlist.php:596 front_end/bigcalendarlist_widget.php:379
|
315 |
+
#: front_end/bigcalendarmonth.php:595 front_end/bigcalendarmonth_widget.php:371
|
316 |
+
#: front_end/bigcalendarweek.php:642 front_end/bigcalendarweek_widget.php:402
|
|
|
|
|
|
|
|
|
317 |
msgid "Month"
|
318 |
msgstr "Mese"
|
319 |
|
320 |
+
#: front_end/bigcalendarday.php:864 front_end/bigcalendarday_widget.php:523
|
321 |
+
#: front_end/bigcalendarweek.php:950 front_end/bigcalendarweek_widget.php:609
|
322 |
+
#, fuzzy
|
323 |
+
msgid "There are no events on this date"
|
|
|
324 |
msgstr "Non ci sono eventi in questo giorno"
|
325 |
|
326 |
+
#: front_end/bigcalendarday.php:1037 front_end/bigcalendarday_widget.php:712
|
327 |
+
#: front_end/bigcalendarlist.php:981 front_end/bigcalendarlist_widget.php:671
|
328 |
+
#: front_end/bigcalendarmonth.php:1410
|
329 |
+
#: front_end/bigcalendarmonth_widget.php:969 front_end/bigcalendarweek.php:1060
|
330 |
+
#: front_end/bigcalendarweek_widget.php:737
|
331 |
+
msgid "All categories"
|
332 |
+
msgstr "Tutte le categorie"
|
333 |
+
|
334 |
+
#: front_end/bigcalendarlist.php:813 front_end/bigcalendarlist_widget.php:482
|
335 |
+
#, fuzzy
|
336 |
+
#| msgid "There Is No Event In This Month"
|
337 |
+
msgid "There are no events for this month"
|
338 |
msgstr "Non ci sono eventi in questo mese"
|
339 |
|
340 |
+
#: front_end/bigcalendarmonth.php:774 front_end/bigcalendarmonth.php:797
|
341 |
+
#: front_end/bigcalendarmonth_widget.php:441
|
342 |
+
#: front_end/bigcalendarmonth_widget.php:464
|
|
|
343 |
msgid "Su"
|
344 |
msgstr "Dom"
|
345 |
|
346 |
+
#: front_end/bigcalendarmonth.php:778 front_end/bigcalendarmonth_widget.php:445
|
|
|
347 |
msgid "Mo"
|
348 |
msgstr "Lun"
|
349 |
|
350 |
+
#: front_end/bigcalendarmonth.php:781 front_end/bigcalendarmonth_widget.php:448
|
|
|
351 |
msgid "Tu"
|
352 |
msgstr "Mar"
|
353 |
|
354 |
+
#: front_end/bigcalendarmonth.php:784 front_end/bigcalendarmonth_widget.php:451
|
|
|
355 |
msgid "We"
|
356 |
msgstr "Mer"
|
357 |
|
358 |
+
#: front_end/bigcalendarmonth.php:787 front_end/bigcalendarmonth_widget.php:454
|
|
|
359 |
msgid "Th"
|
360 |
msgstr "Gio"
|
361 |
|
362 |
+
#: front_end/bigcalendarmonth.php:790 front_end/bigcalendarmonth_widget.php:457
|
|
|
363 |
msgid "Fr"
|
364 |
msgstr "Ven"
|
365 |
|
366 |
+
#: front_end/bigcalendarmonth.php:793 front_end/bigcalendarmonth_widget.php:460
|
|
|
367 |
msgid "Sa"
|
368 |
msgstr "Sab"
|
369 |
|
370 |
+
#: front_end/bigcalendarmonth.php:949 front_end/bigcalendarmonth.php:1013
|
371 |
+
#: front_end/bigcalendarmonth.php:1078 front_end/bigcalendarmonth.php:1144
|
372 |
+
#: front_end/bigcalendarmonth.php:1207 front_end/bigcalendarmonth.php:1273
|
373 |
+
#: spidercalendar_upcoming_events_widget.php:1048
|
374 |
+
#: spidercalendar_upcoming_events_widget.php:1526
|
375 |
+
#: spidercalendar_upcoming_events_widget.php:1936
|
376 |
#, fuzzy
|
377 |
msgid "See more"
|
378 |
msgstr "Scopri di più ..."
|
379 |
|
380 |
+
#: front_end/frontend_functions.php:1054
|
381 |
+
#: spidercalendar_upcoming_events_widget.php:263
|
382 |
msgid "First"
|
383 |
msgstr "Primi"
|
384 |
|
385 |
+
#: front_end/frontend_functions.php:1057
|
386 |
+
#: spidercalendar_upcoming_events_widget.php:266
|
387 |
msgid "Second"
|
388 |
msgstr "Secondo"
|
389 |
|
390 |
+
#: front_end/frontend_functions.php:1060
|
391 |
+
#: spidercalendar_upcoming_events_widget.php:269
|
392 |
msgid "Third"
|
393 |
msgstr "Terzo"
|
394 |
|
395 |
+
#: front_end/frontend_functions.php:1063
|
396 |
+
#: spidercalendar_upcoming_events_widget.php:272
|
397 |
msgid "Fourth"
|
398 |
msgstr "Quarto"
|
399 |
|
400 |
+
#: front_end/frontend_functions.php:1066
|
401 |
+
#: spidercalendar_upcoming_events_widget.php:275
|
402 |
msgid "Last"
|
403 |
msgstr "Ultimo"
|
404 |
|
405 |
+
#: front_end/frontend_functions.php:1072
|
406 |
+
#: spidercalendar_upcoming_events_widget.php:284
|
407 |
msgid "Monday"
|
408 |
msgstr "Lunedì"
|
409 |
|
410 |
+
#: front_end/frontend_functions.php:1075
|
411 |
+
#: spidercalendar_upcoming_events_widget.php:287
|
412 |
msgid "Tuesday"
|
413 |
msgstr "Martedì"
|
414 |
|
415 |
+
#: front_end/frontend_functions.php:1078
|
416 |
+
#: spidercalendar_upcoming_events_widget.php:290
|
417 |
msgid "Wednesday"
|
418 |
msgstr "Mercoledì"
|
419 |
|
420 |
+
#: front_end/frontend_functions.php:1081
|
421 |
+
#: spidercalendar_upcoming_events_widget.php:293
|
422 |
msgid "Thursday"
|
423 |
msgstr "Giovedì"
|
424 |
|
425 |
+
#: front_end/frontend_functions.php:1084
|
426 |
+
#: spidercalendar_upcoming_events_widget.php:296
|
427 |
msgid "Friday"
|
428 |
msgstr "Venerdì"
|
429 |
|
430 |
+
#: front_end/frontend_functions.php:1087
|
431 |
+
#: spidercalendar_upcoming_events_widget.php:299
|
432 |
msgid "Saturday"
|
433 |
msgstr "Sabato"
|
434 |
|
435 |
+
#: front_end/frontend_functions.php:1090
|
436 |
+
#: spidercalendar_upcoming_events_widget.php:302
|
437 |
msgid "Sunday"
|
438 |
msgstr "Domenica"
|
439 |
|
440 |
+
#: functions_for_xml_and_ajax.php:358 functions_for_xml_and_ajax.php:362
|
441 |
+
#: functions_for_xml_and_ajax.php:374 functions_for_xml_and_ajax.php:379
|
442 |
+
#: functions_for_xml_and_ajax.php:383 functions_for_xml_and_ajax.php:389
|
443 |
+
#: functions_for_xml_and_ajax.php:610 functions_for_xml_and_ajax.php:613
|
444 |
+
#: functions_for_xml_and_ajax.php:627 functions_for_xml_and_ajax.php:630
|
445 |
+
#: functions_for_xml_and_ajax.php:633 functions_for_xml_and_ajax.php:636
|
446 |
+
#: spidercalendar_upcoming_events_widget.php:891
|
447 |
+
#: spidercalendar_upcoming_events_widget.php:897
|
448 |
+
#: spidercalendar_upcoming_events_widget.php:927
|
449 |
+
#: spidercalendar_upcoming_events_widget.php:931
|
450 |
+
#: spidercalendar_upcoming_events_widget.php:937
|
451 |
+
#: spidercalendar_upcoming_events_widget.php:943
|
452 |
+
#: spidercalendar_upcoming_events_widget.php:963
|
453 |
+
#: spidercalendar_upcoming_events_widget.php:969
|
454 |
+
#: spidercalendar_upcoming_events_widget.php:999
|
455 |
+
#: spidercalendar_upcoming_events_widget.php:1005
|
456 |
+
#: spidercalendar_upcoming_events_widget.php:1011
|
457 |
+
#: spidercalendar_upcoming_events_widget.php:1017
|
458 |
+
#: spidercalendar_upcoming_events_widget.php:1441
|
459 |
+
#: spidercalendar_upcoming_events_widget.php:1447
|
460 |
+
#: spidercalendar_upcoming_events_widget.php:1477
|
461 |
+
#: spidercalendar_upcoming_events_widget.php:1483
|
462 |
+
#: spidercalendar_upcoming_events_widget.php:1489
|
463 |
+
#: spidercalendar_upcoming_events_widget.php:1495
|
464 |
+
#: spidercalendar_upcoming_events_widget.php:1852
|
465 |
+
#: spidercalendar_upcoming_events_widget.php:1858
|
466 |
+
#: spidercalendar_upcoming_events_widget.php:1888
|
467 |
+
#: spidercalendar_upcoming_events_widget.php:1893
|
468 |
+
#: spidercalendar_upcoming_events_widget.php:1898
|
469 |
+
#: spidercalendar_upcoming_events_widget.php:1903
|
470 |
+
msgid "Repeat Every"
|
471 |
+
msgstr "Ripetere ogni"
|
472 |
+
|
473 |
+
#: functions_for_xml_and_ajax.php:362 functions_for_xml_and_ajax.php:613
|
474 |
+
#: spidercalendar_upcoming_events_widget.php:897
|
475 |
+
#: spidercalendar_upcoming_events_widget.php:969
|
476 |
+
#: spidercalendar_upcoming_events_widget.php:1447
|
477 |
+
#: spidercalendar_upcoming_events_widget.php:1858
|
478 |
+
msgid "Week(s) on"
|
479 |
+
msgstr "Settimane su"
|
480 |
+
|
481 |
+
#: functions_for_xml_and_ajax.php:374 functions_for_xml_and_ajax.php:379
|
482 |
+
#: functions_for_xml_and_ajax.php:627 functions_for_xml_and_ajax.php:630
|
483 |
+
#: spidercalendar_upcoming_events_widget.php:927
|
484 |
+
#: spidercalendar_upcoming_events_widget.php:931
|
485 |
+
#: spidercalendar_upcoming_events_widget.php:999
|
486 |
+
#: spidercalendar_upcoming_events_widget.php:1005
|
487 |
+
#: spidercalendar_upcoming_events_widget.php:1477
|
488 |
+
#: spidercalendar_upcoming_events_widget.php:1483
|
489 |
+
#: spidercalendar_upcoming_events_widget.php:1888
|
490 |
+
#: spidercalendar_upcoming_events_widget.php:1893
|
491 |
+
msgid "Month(s) on the"
|
492 |
+
msgstr "Mesi su"
|
493 |
+
|
494 |
+
#: functions_for_xml_and_ajax.php:383 functions_for_xml_and_ajax.php:389
|
495 |
+
#: functions_for_xml_and_ajax.php:633 functions_for_xml_and_ajax.php:636
|
496 |
+
#: spidercalendar_upcoming_events_widget.php:937
|
497 |
+
#: spidercalendar_upcoming_events_widget.php:943
|
498 |
+
#: spidercalendar_upcoming_events_widget.php:1011
|
499 |
+
#: spidercalendar_upcoming_events_widget.php:1017
|
500 |
+
#: spidercalendar_upcoming_events_widget.php:1489
|
501 |
+
#: spidercalendar_upcoming_events_widget.php:1495
|
502 |
+
#: spidercalendar_upcoming_events_widget.php:1898
|
503 |
+
#: spidercalendar_upcoming_events_widget.php:1903
|
504 |
+
msgid "Year(s) in"
|
505 |
+
msgstr "Anni in"
|
506 |
+
|
507 |
+
#: functions_for_xml_and_ajax.php:383 functions_for_xml_and_ajax.php:389
|
508 |
+
#: functions_for_xml_and_ajax.php:633 functions_for_xml_and_ajax.php:636
|
509 |
+
#: spidercalendar_upcoming_events_widget.php:937
|
510 |
+
#: spidercalendar_upcoming_events_widget.php:943
|
511 |
+
#: spidercalendar_upcoming_events_widget.php:1011
|
512 |
+
#: spidercalendar_upcoming_events_widget.php:1017
|
513 |
+
#: spidercalendar_upcoming_events_widget.php:1489
|
514 |
+
#: spidercalendar_upcoming_events_widget.php:1495
|
515 |
+
#: spidercalendar_upcoming_events_widget.php:1898
|
516 |
+
#: spidercalendar_upcoming_events_widget.php:1903
|
517 |
+
msgid "on the"
|
518 |
+
msgstr "sulla"
|
519 |
+
|
520 |
+
#: functions_for_xml_and_ajax.php:603
|
521 |
+
msgid "Date"
|
522 |
+
msgstr "Data"
|
523 |
+
|
524 |
+
#: functions_for_xml_and_ajax.php:646
|
525 |
+
msgid "There Is No Text For This Event"
|
526 |
+
msgstr "Non esiste un testo per questo evento"
|
527 |
+
|
528 |
+
#: functions_for_xml_and_ajax.php:662
|
529 |
+
msgid "Back to event list"
|
530 |
+
msgstr "Ritorna alla lista eventi"
|
531 |
+
|
532 |
+
#: wd/includes/deactivate.php:35
|
533 |
+
msgid "Technical problems / hard to use"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: wd/includes/deactivate.php:39
|
537 |
+
msgid "Free version is limited"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: wd/includes/deactivate.php:43
|
541 |
+
msgid "Premium is expensive"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: wd/includes/deactivate.php:47
|
545 |
+
msgid "Upgrading to paid version"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: wd/includes/deactivate.php:51
|
549 |
+
msgid "Temporary deactivation"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: wd/includes/notices.php:211
|
553 |
+
msgid "Leave A Review?"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: wd/includes/notices.php:212
|
557 |
+
#, php-format
|
558 |
+
msgid ""
|
559 |
+
"We hope you've enjoyed using WordPress %s! Would you consider leaving us a "
|
560 |
+
"review on WordPress.org?"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: wd/includes/notices.php:213
|
564 |
+
msgid "Sure! I'd love to!"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: wd/includes/notices.php:214
|
568 |
+
msgid "I've already left a review"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: wd/includes/notices.php:215
|
572 |
+
msgid "Maybe Later"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: wd/includes/notices.php:216
|
576 |
+
msgid "Never show again"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: wd/includes/overview.php:27
|
580 |
+
msgid "Welcome"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: wd/includes/overview.php:31
|
584 |
+
msgid "User Guide"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: wd/includes/overview.php:35
|
588 |
+
msgid "Deals"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: wd/includes/overview.php:39
|
592 |
+
msgid "Support"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: wd/includes/overview.php:43
|
596 |
+
msgid "Submit Your Idea"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: wd/includes/overview.php:47
|
600 |
+
msgid "Forum"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: wd/includes/overview.php:87
|
604 |
+
msgid "Wordpress form builder plugin"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: wd/includes/overview.php:88
|
608 |
+
msgid ""
|
609 |
+
"Form Maker is a modern and advanced tool for creating WordPress forms easily "
|
610 |
+
"and fast."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: wd/includes/overview.php:93
|
614 |
+
msgid "WordPress Photo Gallery plugin"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: wd/includes/overview.php:94
|
618 |
+
msgid ""
|
619 |
+
"Photo Gallery is a fully responsive WordPress Gallery plugin with advanced "
|
620 |
+
"functionality."
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: wd/includes/overview.php:99
|
624 |
+
msgid "WordPress calendar plugin"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: wd/includes/overview.php:100
|
628 |
+
msgid ""
|
629 |
+
"Organize and publish your events in an easy and elegant way using Event "
|
630 |
+
"Calendar WD."
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: wd/includes/overview.php:105
|
634 |
+
msgid "WD Google Maps plugin"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: wd/includes/overview.php:106
|
638 |
+
msgid ""
|
639 |
+
"Google Maps WD is an intuitive tool for creating Google maps with advanced "
|
640 |
+
"markers, custom layers and overlays for your website."
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: wd/includes/overview.php:111
|
644 |
+
msgid "WordPress slider plugin"
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: wd/includes/overview.php:112
|
648 |
+
msgid ""
|
649 |
+
"Create responsive, highly configurable sliders with various effects for your "
|
650 |
+
"WordPress site."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: wd/includes/overview.php:117
|
654 |
+
msgid "WordPress event calendar plugin"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: wd/includes/overview.php:118
|
658 |
+
msgid ""
|
659 |
+
"Spider Event Calendar is a highly configurable product which allows you to "
|
660 |
+
"have multiple organized events."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: wd/includes/overview.php:123
|
664 |
+
msgid "WordPress Instagram Feed plugin"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: wd/includes/overview.php:124
|
668 |
+
msgid ""
|
669 |
+
"WD Instagram Feed is a user-friendly tool for displaying user or hashtag-"
|
670 |
+
"based feeds on your website."
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: wd/includes/overview.php:177
|
674 |
+
msgid "Not set"
|
675 |
+
msgstr ""
|
676 |
+
|
677 |
+
#: wd/includes/overview.php:182
|
678 |
+
msgid "On"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: wd/includes/overview.php:184
|
682 |
+
msgid "Off"
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: wd/includes/overview.php:193 wd/includes/overview.php:201
|
686 |
+
#: wd/includes/overview.php:208 wd/includes/overview.php:215
|
687 |
+
#: wd/includes/overview.php:223 wd/includes/overview.php:230
|
688 |
+
msgid "N/A"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: wd/includes/overview.php:228
|
692 |
+
msgid " MByte"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: wd/includes/overview.php:235 wd/includes/overview.php:242
|
696 |
+
#: wd/includes/overview.php:249 wd/includes/overview.php:259
|
697 |
+
msgid "Yes"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: wd/includes/overview.php:237 wd/includes/overview.php:244
|
701 |
+
#: wd/includes/overview.php:251 wd/includes/overview.php:254
|
702 |
+
#: wd/includes/overview.php:259
|
703 |
+
msgid "No"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: wd/includes/subscribe.php:43
|
707 |
+
msgid "Your name &"
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: wd/includes/subscribe.php:44
|
711 |
+
msgid "Email address"
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: wd/includes/subscribe.php:48
|
715 |
+
msgid "Site URL"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: wd/includes/subscribe.php:49
|
719 |
+
msgid "Wordpress version"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: wd/includes/subscribe.php:53
|
723 |
+
msgid "List of plugins"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: wd/templates/display_deactivation_popup.php:8
|
727 |
+
msgid ""
|
728 |
+
"Please let us know why you are deactivating. Your answer will help us to "
|
729 |
+
"serve you better"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: wd/templates/display_deactivation_popup.php:21
|
733 |
+
msgid "Skip and deactivate"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: wd/templates/display_deactivation_popup.php:22
|
737 |
+
msgid "Submit and deactivate"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: wd/templates/display_overview.php:8
|
741 |
+
#, php-format
|
742 |
+
msgid "Welcome to %s"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: wd/templates/display_overview.php:16
|
746 |
+
#, php-format
|
747 |
+
msgid "CONGRATS! You've successfully installed %s WordPress plugin."
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: wd/templates/display_overview_deals.php:12
|
751 |
+
#, php-format
|
752 |
+
msgid "Get %s"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: wd/templates/display_overview_deals.php:13
|
756 |
+
msgid "plugins"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: wd/templates/display_overview_deals.php:14
|
760 |
+
#: wd/templates/display_overview_deals.php:58
|
761 |
+
msgid "for"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: wd/templates/display_overview_deals.php:14
|
765 |
+
#: wd/templates/display_overview_deals.php:58
|
766 |
+
msgid "only"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: wd/templates/display_overview_deals.php:16
|
770 |
+
msgid "Save 80%"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: wd/templates/display_overview_deals.php:35
|
774 |
+
msgid "Download"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: wd/templates/display_overview_deals.php:45
|
778 |
+
msgid "Get all plugins"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: wd/templates/display_overview_deals.php:57
|
782 |
+
msgid "Get all 11 themes"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: wd/templates/display_overview_deals.php:60
|
786 |
+
msgid "Save 70%"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: wd/templates/display_overview_deals.php:77
|
790 |
+
msgid "Find out more"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: wd/templates/display_overview_support.php:3
|
794 |
+
#, php-format
|
795 |
+
msgid ""
|
796 |
+
"You may contact us by filling in this form or by email %s any time you need "
|
797 |
+
"professional support or have any questions. You can also fill in the form to "
|
798 |
+
"leave your comments or feedback."
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: wd/templates/display_overview_support.php:6
|
802 |
+
msgid "Site Details"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: wd/templates/display_overview_support.php:8
|
806 |
+
msgid ""
|
807 |
+
"When contacting support, consider copying and pasting this information in "
|
808 |
+
"your support request."
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: wd/templates/display_overview_support.php:10
|
812 |
+
msgid "It helps us troubleshoot more quickly."
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: wd/templates/display_overview_support.php:17
|
816 |
+
msgid "Copy to Clipboard"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: wd/templates/display_overview_support.php:20
|
820 |
+
msgid "Server Settings"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: wd/templates/display_overview_support.php:26
|
824 |
+
msgid "Graphic Library"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: wd/templates/display_overview_support.php:41
|
828 |
+
msgid "Contact us"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: wd/templates/display_overview_user_guide.php:26
|
832 |
+
msgid "Demo"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: wd/templates/display_overview_user_guide.php:36
|
836 |
+
msgid "FAQ"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: wd/templates/display_overview_user_guide.php:40
|
840 |
+
msgid "Addons"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: wd/templates/display_overview_welcome.php:18
|
844 |
+
msgid "Run Install Wizard "
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: wd/templates/display_overview_welcome.php:26
|
848 |
+
msgid "More features"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: wd/templates/display_subscribe.php:9
|
852 |
+
msgid "Hi there"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: wd/templates/display_subscribe.php:11
|
856 |
+
#, php-format
|
857 |
+
msgid ""
|
858 |
+
"Allow %s to collect some usage data. This will allow you to get more out of "
|
859 |
+
"your plugin experience - get awesome customer support, receive exclusive "
|
860 |
+
"deals and discounts on premium products and more. You can choose to skip "
|
861 |
+
"this step, %s will still work just fine."
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: wd/templates/display_subscribe.php:19
|
865 |
+
msgid "What data is being collected?"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: wd/templates/display_subscribe.php:36
|
869 |
+
msgid "Privacy Policy"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: wd/templates/display_subscribe.php:42
|
873 |
+
msgid "Terms of Use"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: wd/wd.php:72
|
877 |
+
msgid "Overview"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#, fuzzy
|
881 |
+
#~| msgid "There Is No Text For This Event"
|
882 |
+
#~ msgid "There Is No Event In This Day"
|
883 |
+
#~ msgstr "Non esiste un testo per questo evento"
|
884 |
+
|
885 |
+
#, fuzzy
|
886 |
+
#~| msgid "There Is No Text For This Event"
|
887 |
+
#~ msgid "There Is No Event In This Month"
|
888 |
+
#~ msgstr "Non esiste un testo per questo evento"
|
889 |
|
890 |
#~ msgid "No Repeat"
|
891 |
#~ msgstr "Nessuna ripetizione"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: webdorado, wdsupport, 10web
|
|
3 |
Tags: calendar, event, event calendar, events, events calendar, calendars, event manager, calendar widget, event management, free calendar, Calender, upcoming events
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.9
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -74,6 +74,10 @@ If you think you found a bug in the plugin or have any problem/question concerni
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
|
|
77 |
= 1.5.59 =
|
78 |
Fixed: register_activation_hook not being called because of conflict with some plugins
|
79 |
|
3 |
Tags: calendar, event, event calendar, events, events calendar, calendars, event manager, calendar widget, event management, free calendar, Calender, upcoming events
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.9
|
6 |
+
Stable tag: 1.5.60
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= 1.5.60 =
|
78 |
+
Fixed: Events of the same day of the previous year were visible in popup
|
79 |
+
Updated: Italian translation thanks to Marco Moniga
|
80 |
+
|
81 |
= 1.5.59 =
|
82 |
Fixed: register_activation_hook not being called because of conflict with some plugins
|
83 |
|