Simple Calendar – Google Calendar Plugin - Version 2.1.7

Version Description

  • Restructured pagination JavaScript.
  • Updated Italian translation files.
Download this release

Release Info

Developer pderksen
Plugin Icon 128x128 Simple Calendar – Google Calendar Plugin
Version 2.1.7
Comparing to
See all releases

Code changes from version 2.1.6.1 to 2.1.7

README.txt CHANGED
@@ -89,6 +89,11 @@ There are three ways to install this plugin.
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
92
  = 2.1.6.1 =
93
 
94
  * More tooltip (qTip2) effects & styling.
89
 
90
  == Changelog ==
91
 
92
+ = 2.1.7 =
93
+
94
+ * Restructured pagination JavaScript.
95
+ * Updated Italian translation files.
96
+
97
  = 2.1.6.1 =
98
 
99
  * More tooltip (qTip2) effects & styling.
class-google-calendar-events.php CHANGED
@@ -18,7 +18,7 @@ class Google_Calendar_Events {
18
  *
19
  * @var string
20
  */
21
- protected $version = '2.1.6.1';
22
 
23
  /**
24
  * Unique identifier for the plugin.
18
  *
19
  * @var string
20
  */
21
+ protected $version = '2.1.7';
22
 
23
  /**
24
  * Unique identifier for the plugin.
google-calendar-events.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Google Calendar Events
13
  * Plugin URI: https://github.com/pderksen/WP-Google-Calendar-Events
14
  * Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
15
- * Version: 2.1.6.1
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
@@ -23,7 +23,7 @@
23
 
24
  // If this file is called directly, abort.
25
  if ( ! defined( 'WPINC' ) ) {
26
- die;
27
  }
28
 
29
  /*
12
  * Plugin Name: Google Calendar Events
13
  * Plugin URI: https://github.com/pderksen/WP-Google-Calendar-Events
14
  * Description: Parses Google Calendar feeds and displays the events as a calendar grid or list on a page, post or widget.
15
+ * Version: 2.1.7
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
23
 
24
  // If this file is called directly, abort.
25
  if ( ! defined( 'WPINC' ) ) {
26
+ die();
27
  }
28
 
29
  /*
includes/misc-functions.php CHANGED
@@ -205,7 +205,7 @@ function gce_ajax_list() {
205
  $d = new GCE_Display( explode( '-', $ids ), $title_text, $sort );
206
 
207
  echo $d->get_list( $grouped, $start, $paging, $paging_interval, $start_offset );
208
-
209
  die();
210
  }
211
  add_action( 'wp_ajax_nopriv_gce_ajax_list', 'gce_ajax_list' );
205
  $d = new GCE_Display( explode( '-', $ids ), $title_text, $sort );
206
 
207
  echo $d->get_list( $grouped, $start, $paging, $paging_interval, $start_offset );
208
+
209
  die();
210
  }
211
  add_action( 'wp_ajax_nopriv_gce_ajax_list', 'gce_ajax_list' );
js/gce-script.js CHANGED
@@ -1,3 +1,4 @@
 
1
 
2
  /**
3
  * Public JS functions
@@ -22,7 +23,11 @@
22
 
23
  var navLink = $(this);
24
 
25
- var id = navLink.closest('.gce-calendar').parent().attr('id');
 
 
 
 
26
 
27
  //Extract month and year
28
  var month_year = navLink.attr('name').split('-', 2);
@@ -60,18 +65,20 @@
60
  e.preventDefault();
61
 
62
  var navLink = $(this);
63
-
64
- var start = navLink.parent().parent().parent().data('gce-start');
65
- var grouped = navLink.parent().parent().parent().data('gce-grouped');
66
- var title_text = navLink.parent().parent().parent().data('gce-title');
67
- var feed_ids = navLink.parent().parent().parent().data( 'gce-feeds');
68
- var sort = navLink.parent().parent().parent().data('gce-sort');
69
- var paging = navLink.parent().parent().parent().data('gce-paging');
70
- var paging_interval = navLink.parent().parent().parent().data('gce-paging-interval');
 
 
71
  var paging_direction = navLink.data('gce-paging-direction');
72
- var start_offset = navLink.parent().parent().parent().data('gce-start-offset');
73
  var paging_type = navLink.data('gce-paging-type');
74
-
75
  //Add loading text to table caption
76
  navLink.parent().parent().parent().find('.gce-month-title').html(gce.loadingText);
77
 
1
+ /* global jQuery, gce, gce_grid */
2
 
3
  /**
4
  * Public JS functions
23
 
24
  var navLink = $(this);
25
 
26
+ var id = navLink.closest('.gce-page-grid').attr('id');
27
+
28
+ if( typeof id == 'undefined' ) {
29
+ id = navLink.closest('.gce-widget-grid').attr('id');
30
+ }
31
 
32
  //Extract month and year
33
  var month_year = navLink.attr('name').split('-', 2);
65
  e.preventDefault();
66
 
67
  var navLink = $(this);
68
+
69
+ var list = navLink.closest('.gce-list');
70
+
71
+ var start = list.data('gce-start');
72
+ var grouped = list.data('gce-grouped');
73
+ var title_text = list.data('gce-title');
74
+ var feed_ids = list.data( 'gce-feeds');
75
+ var sort = list.data('gce-sort');
76
+ var paging = list.data('gce-paging');
77
+ var paging_interval = list.data('gce-paging-interval');
78
  var paging_direction = navLink.data('gce-paging-direction');
79
+ var start_offset = list.data('gce-start-offset');
80
  var paging_type = navLink.data('gce-paging-type');
81
+
82
  //Add loading text to table caption
83
  navLink.parent().parent().parent().find('.gce-month-title').html(gce.loadingText);
84
 
languages/gce-it_IT.mo CHANGED
Binary file
languages/gce-it_IT.po CHANGED
@@ -1,32 +1,33 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
- "POT-Creation-Date: 2014-10-09 13:21-0700\n"
5
- "PO-Revision-Date: 2014-10-20 19:04+0100\n"
6
  "Last-Translator: Francesco Paccagnella <translations@pacca.it>\n"
7
  "Language-Team: \n"
8
  "Language: it\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.10\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: google-calendar-events/class-google-calendar-events-admin.php:64
19
- #: google-calendar-events/class-google-calendar-events-admin.php:65
20
- #: google-calendar-events/includes/register-settings.php:44
 
21
  msgid "General Settings"
22
  msgstr "Impostazioni Generali"
23
 
24
- #: google-calendar-events/class-google-calendar-events-admin.php:122
25
  #: google-calendar-events/views/widgets.php:27
26
  msgid "Google Calendar Events"
27
  msgstr "Eventi Google Calendar"
28
 
29
- #: google-calendar-events/class-google-calendar-events-admin.php:134
30
  msgid "Feeds"
31
  msgstr "Feeds"
32
 
@@ -34,88 +35,116 @@ msgstr "Feeds"
34
  msgid "Cache has been cleared for this feed."
35
  msgstr "La cache di questo feed è stata cancellata."
36
 
37
- #: google-calendar-events/includes/admin/admin-functions.php:74
38
- #: google-calendar-events/includes/gce-feed-cpt.php:252
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  msgid "Clear Cache"
40
  msgstr "Cancella Cache"
41
 
42
- #: google-calendar-events/includes/class-gce-display.php:188
43
- #: google-calendar-events/includes/class-gce-display.php:277
44
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:170
45
  #: google-calendar-events/views/widgets.php:252
46
  msgid "Back"
47
  msgstr "Precedente"
48
 
49
- #: google-calendar-events/includes/class-gce-display.php:192
50
- #: google-calendar-events/includes/class-gce-display.php:278
51
  msgid "Next"
52
  msgstr "Successivo"
53
 
54
- #: google-calendar-events/includes/class-gce-display.php:372
55
  msgid "No events to display."
56
  msgstr "Nessun evento da visualizzare."
57
 
58
- #: google-calendar-events/includes/class-gce-event.php:496
59
  #, php-format
60
  msgid "%s year"
61
  msgstr "%s anno"
62
 
63
- #: google-calendar-events/includes/class-gce-event.php:496
64
  #, php-format
65
  msgid "%s years"
66
  msgstr "%s anni"
67
 
68
- #: google-calendar-events/includes/class-gce-event.php:497
69
  #, php-format
70
  msgid "%s month"
71
  msgstr "%s mese"
72
 
73
- #: google-calendar-events/includes/class-gce-event.php:497
74
  #, php-format
75
  msgid "%s months"
76
  msgstr "%s mesi"
77
 
78
- #: google-calendar-events/includes/class-gce-event.php:498
79
  #, php-format
80
  msgid "%s week"
81
  msgstr "%s settimana"
82
 
83
- #: google-calendar-events/includes/class-gce-event.php:498
84
  #, php-format
85
  msgid "%s weeks"
86
  msgstr "%s settimane"
87
 
88
- #: google-calendar-events/includes/class-gce-event.php:499
89
  #, php-format
90
  msgid "%s day"
91
  msgstr "%s giorno"
92
 
93
- #: google-calendar-events/includes/class-gce-event.php:499
94
  #, php-format
95
  msgid "%s days"
96
  msgstr "%s giorni"
97
 
98
- #: google-calendar-events/includes/class-gce-event.php:500
99
  #, php-format
100
  msgid "%s hour"
101
  msgstr "%s ora"
102
 
103
- #: google-calendar-events/includes/class-gce-event.php:500
104
  #, php-format
105
  msgid "%s hours"
106
  msgstr "%s ore"
107
 
108
- #: google-calendar-events/includes/class-gce-event.php:501
109
  #, php-format
110
  msgid "%s min"
111
  msgstr "%s minuto"
112
 
113
- #: google-calendar-events/includes/class-gce-event.php:501
114
  #, php-format
115
  msgid "%s mins"
116
  msgstr "%s minuti"
117
 
118
- #: google-calendar-events/includes/class-gce-feed.php:82
119
  msgid ""
120
  "The feed URL has not been set. Please make sure to set it correctly in the "
121
  "Feed settings."
@@ -123,41 +152,21 @@ msgstr ""
123
  "L'indirizzo del feed non è stato impostato. Assicurarsi di averlo impostato "
124
  "correttamente nelle impostazioni dei Feed."
125
 
126
- #: google-calendar-events/includes/class-gce-feed.php:162
127
  msgid ""
128
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
129
- "your feed URL is correct."
130
  msgstr ""
131
- "E' stato ricevuto qualche dato, ma non può essere analizzato correttamente. "
132
- "Assicurarsi che l'indirizzo del feed sia corretto."
133
 
134
- #: google-calendar-events/includes/class-gce-feed.php:168
135
- msgid ""
136
- "The feed could not be found (404). Please ensure your feed URL is correct."
137
- msgstr ""
138
- "Il feed non è stato trovato (404). Assicurarsi che l'indirizzo del feed sia "
139
- "corretto."
140
-
141
- #: google-calendar-events/includes/class-gce-feed.php:171
142
- msgid ""
143
- "Access to this feed was denied (403). Please ensure you have public sharing "
144
- "enabled for your calendar."
145
- msgstr ""
146
- "Non è consentito l'accesso al feed (403). Assicurarsi che sia abilitata la "
147
- "condivisione pubblica nel calendario."
148
-
149
- #: google-calendar-events/includes/class-gce-feed.php:174
150
- #, php-format
151
- msgid ""
152
- "The feed data could not be retrieved. Error code: %s. Please ensure your "
153
- "feed URL is correct."
154
- msgstr ""
155
- "I dati del feed non possono essere recuperati. Codice errore: %s. "
156
- "Assicurarsi che l'indirizzo del feed sia corretto."
157
 
158
- #: google-calendar-events/includes/class-gce-feed.php:179
159
- msgid " Please ensure your feed URL is correct."
160
- msgstr "Assicurarsi che l'indirizzo del feed sia corretto."
161
 
162
  #: google-calendar-events/includes/gce-feed-cpt.php:21
163
  msgid "Google Calendar Feeds"
@@ -165,6 +174,7 @@ msgstr "Feed di Google Calendar"
165
 
166
  #: google-calendar-events/includes/gce-feed-cpt.php:22
167
  #: google-calendar-events/includes/gce-feed-cpt.php:24
 
168
  msgid "Feed"
169
  msgstr "Feed"
170
 
@@ -208,6 +218,10 @@ msgstr "Nessun feed trovato."
208
  msgid "No feeds found in Trash."
209
  msgstr "Nessun feed trovato nel Cestino."
210
 
 
 
 
 
211
  #: google-calendar-events/includes/gce-feed-cpt.php:75
212
  #: google-calendar-events/includes/gce-feed-cpt.php:76
213
  #, php-format
@@ -234,42 +248,88 @@ msgstr "%4$s inviato. %1$sVisualizza %2$s%3$s"
234
  msgid "%4$s draft updated. %1$sView %2$s%3$s"
235
  msgstr "%4$s bozza aggiornata. %1$sVisualizza %2$s%3$s"
236
 
237
- #: google-calendar-events/includes/gce-feed-cpt.php:205
 
 
 
 
 
 
 
 
 
 
 
 
238
  msgid "Feed ID"
239
  msgstr "ID del Feed"
240
 
241
- #: google-calendar-events/includes/gce-feed-cpt.php:206
242
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:61
243
  msgid "Feed Shortcode"
244
  msgstr "Shortcode del Feed"
245
 
246
- #: google-calendar-events/includes/gce-feed-cpt.php:207
247
  msgid "Display Type"
248
  msgstr "Tipo di Visualizzazione"
249
 
250
- #: google-calendar-events/includes/gce-feed-cpt.php:234
251
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:137
252
  #: google-calendar-events/views/widgets.php:218
253
  msgid "Grid"
254
  msgstr "Griglia"
255
 
256
- #: google-calendar-events/includes/gce-feed-cpt.php:236
257
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:138
258
  #: google-calendar-events/views/widgets.php:219
259
  msgid "List"
260
  msgstr "Lista"
261
 
262
- #: google-calendar-events/includes/gce-feed-cpt.php:238
263
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:139
264
  #: google-calendar-events/views/widgets.php:220
265
  msgid "Grouped List"
266
  msgstr "Lista Raggruppata"
267
 
 
 
 
 
268
  #: google-calendar-events/includes/register-settings.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  msgid "Save Settings"
270
  msgstr "Salva Impostazioni"
271
 
272
- #: google-calendar-events/includes/register-settings.php:30
273
  msgid ""
274
  "Save your settings when uninstalling this plugin. Useful when upgrading or "
275
  "re-installing."
@@ -277,7 +337,7 @@ msgstr ""
277
  "Salva le impostazioni alla disinstallazione del plugin. Utile quando si "
278
  "aggiorna o si reinstalla."
279
 
280
- #: google-calendar-events/includes/register-settings.php:132
281
  #, php-format
282
  msgid ""
283
  "The callback function used for the <strong>%s</strong> setting is missing."
@@ -285,6 +345,41 @@ msgstr ""
285
  "La funzione richiamata utilizzata per l'impostazione <strong>%s</strong> è "
286
  "assente."
287
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  #: google-calendar-events/views/admin/display-options-meta.php:39
289
  msgid ""
290
  "Check this box to use the simple display options below instead of the Event "
@@ -368,6 +463,18 @@ msgstr ""
368
  "testo o i caratteri da visualizzare tra l'ora e la data (includendo anche "
369
  "gli eventuali spazi)."
370
 
 
 
 
 
 
 
 
 
 
 
 
 
371
  #: google-calendar-events/views/admin/display-options-meta.php:88
372
  msgid "Description"
373
  msgstr "Descrizione"
@@ -407,7 +514,7 @@ msgstr "I link si aprono in una nuova finestra / tab?"
407
  msgid "The link text to be displayed."
408
  msgstr "Il testo del link da visualizzare."
409
 
410
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:42
411
  msgid ""
412
  "We're <strong>smack dab</strong> in the middle of building additional "
413
  "features for this plugin. Have ideas?"
@@ -415,59 +522,67 @@ msgstr ""
415
  "Siamo <strong>esattamente</strong> nel pieno dello sviluppo di funzioni "
416
  "aggiuntive per questo plugin. Qualche idea?"
417
 
418
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:45
419
  msgid "Visit our roadmap and tell us what you're looking for"
420
  msgstr "Visita la nostra roadmap e riportaci quello che stai cercando"
421
 
422
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:51
423
  msgid "Want to be in the know?"
424
  msgstr "Vuoi essere aggiornato?"
425
 
426
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:54
427
  msgid "Get notified when new features are released"
428
  msgstr "Ricevi notifiche delle nuove funzionalità"
429
 
430
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:64
431
  msgid ""
432
- "Copy and paste this shortcode to display this Google Calendar feed in any "
433
  "post or page."
434
  msgstr ""
435
  "Copia ed incolla questo shortcode per visualizzare questo feed di Google "
436
  "Calendar in qualsiasi post o pagina."
437
 
438
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:68
439
- msgid "GCal Feed URL"
440
- msgstr "Indirizzo del Feed GCal"
 
 
 
 
 
 
 
 
441
 
442
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:72
443
- msgid "The Google Calendar feed URL."
444
- msgstr "L'indirizzo del feed di Google Calendar."
445
 
446
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:73
447
  msgid "Example"
448
  msgstr "Esempio"
449
 
450
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:74
451
- msgid "How to find your GCal feed URL"
452
  msgstr "Come trovare l'indirizzo del proprio feed di GCal"
453
 
454
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:80
455
  msgid "Search Query"
456
  msgstr "Query di Ricerca"
457
 
458
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:83
459
  msgid "Find and show events based on a search query."
460
  msgstr "Trova e visualizza gli eventi basati su una query di ricerca."
461
 
462
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:88
463
  msgid "Expand Recurring Events?"
464
  msgstr "Espandere Eventi Ricorrenti?"
465
 
466
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:90
467
  msgid "Yes"
468
  msgstr "Sì"
469
 
470
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:91
471
  msgid ""
472
  "This will show recurring events each time they occur, otherwise it will only "
473
  "show the event the first time it occurs."
@@ -475,25 +590,30 @@ msgstr ""
475
  "Questo visualizzerà gli eventi ricorrenti ogni volta che accadono, "
476
  "altrimenti l'evento verrà visualizzato solamente la prima volta che accade."
477
 
478
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:96
479
  msgid "Date Format"
480
  msgstr "Formato Data"
481
 
482
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:100
483
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:111
484
  #, php-format
485
  msgid "Use %sPHP date formatting%s."
486
  msgstr "Usa il %sil formato data di PHP%s."
487
 
488
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:107
 
 
 
 
 
489
  msgid "Time Format"
490
  msgstr "Formato Ora"
491
 
492
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:118
493
  msgid "Cache Duration"
494
  msgstr "Durata della Cache"
495
 
496
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:121
497
  msgid ""
498
  "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
499
  "this feed changes regularly, you may want to reduce the cache duration."
@@ -502,15 +622,15 @@ msgstr ""
502
  "questo feed cambia regolarmente, potrebbe essere necessario ridurre la "
503
  "durata della cache."
504
 
505
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:126
506
  msgid "Multiple Day Events"
507
  msgstr "Eventi in Giorni Multipli"
508
 
509
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:128
510
  msgid "Show on each day"
511
  msgstr "Visualizza in ogni giorno"
512
 
513
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:129
514
  msgid ""
515
  "Show events that span multiple days on each day that they span, rather than "
516
  "just the first day."
@@ -518,62 +638,106 @@ msgstr ""
518
  "Visualizza gli eventi che durano più giorni in ogni giorno in cui accadono, "
519
  "anziché solamente nel primo giorno."
520
 
521
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:134
522
  msgid "Display Mode"
523
  msgstr "Modo di Visualizzazione"
524
 
525
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:141
526
  msgid "Choose how you want your calendar to be displayed."
527
  msgstr "Scegliere come vi vuole visualizzare il proprio calendario."
528
 
529
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:146
530
  msgid "Show Paging Links"
531
  msgstr "Visualizza Link di Pagina"
532
 
533
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:148
534
  #: google-calendar-events/views/widgets.php:227
535
  msgid "Check this option to display Next and Back navigation links."
536
  msgstr ""
537
  "Seleziona questa spunta per visualizzare i link di navigazione Precedente e "
538
  "Successivo"
539
 
540
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:153
541
  msgid "Number of Events per Page"
542
  msgstr "Numero di Eventi per Pagina"
543
 
544
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:157
545
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:168
 
 
546
  #: google-calendar-events/views/widgets.php:242
547
  #: google-calendar-events/views/widgets.php:250
548
  msgid "Days"
549
  msgstr "Giorni"
550
 
551
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:158
552
  #: google-calendar-events/views/widgets.php:243
553
  msgid "Events"
554
  msgstr "Eventi"
555
 
556
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:160
557
  msgid "How many events to display per page (List View only)."
558
  msgstr ""
559
  "Quanti eventi visualizzare per pagina (solo nella visualizzazione a lista)"
560
 
561
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:165
562
- msgid "Start Date Offset"
563
  msgstr "Offset Data di Inizio"
564
 
565
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:171
566
  #: google-calendar-events/views/widgets.php:253
567
  msgid "Ahead"
568
  msgstr "Avanti"
569
 
570
- #: google-calendar-events/views/admin/gce-feed-meta-display.php:173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
  msgid ""
572
- "If you need to show events starting on a day other than today. (List View "
573
- "only)."
574
  msgstr ""
575
- "Per visualizzare eventi che iniziano in un giorno diverso da oggi. (Solo "
576
- "nella visualizzazione a lista)"
577
 
578
  #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:6
579
  msgid "Documentation & getting started"
@@ -621,22 +785,30 @@ msgstr "Non è ancora stato creato alcun feed."
621
  msgid "Add your first feed!"
622
  msgstr "Aggiungere il primo feed!"
623
 
 
 
 
 
 
 
 
 
624
  #: google-calendar-events/views/widgets.php:211
625
- msgid "Feeds to display, as a comma separated list (e.g. 101,102,103):"
626
  msgstr ""
627
- "Feed da visualizzare, come lista separata da virgole (esempio 101,102,103)"
628
 
629
  #: google-calendar-events/views/widgets.php:216
630
- msgid "Display events as:"
631
- msgstr "Visualizza eventi come:"
632
 
633
  #: google-calendar-events/views/widgets.php:225
634
- msgid "Show paging links:"
635
- msgstr "Visualizza link di pagina:"
636
 
637
  #: google-calendar-events/views/widgets.php:231
638
- msgid "Sort order (List View only):"
639
- msgstr "Ordinamento (si applica soltanto alle liste):"
640
 
641
  #: google-calendar-events/views/widgets.php:233
642
  msgid "Ascending"
@@ -647,21 +819,103 @@ msgid "Descending"
647
  msgstr "Discendente"
648
 
649
  #: google-calendar-events/views/widgets.php:239
650
- msgid "Number of events per page (List View only):"
651
- msgstr "Numero di eventi per pagina (solo nella visualizzazione a lista):"
652
 
653
  #: google-calendar-events/views/widgets.php:248
654
- msgid "Start date offset (List View only):"
655
- msgstr "Offset della data di inizio (solo nella visualizzazione a lista):"
656
 
657
  #: google-calendar-events/views/widgets.php:258
658
  msgid ""
659
- "Display title on tooltip/list item (e.g. 'Events on 7th March'). Grouped "
660
  "lists always have a title displayed."
661
  msgstr ""
662
- "Visualizza il titolo su tooltip / lista (esempio 'Eventi del 7 Marzo'). Le "
663
  "liste raggruppate visualizzano sempre il titolo."
664
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
665
  #~ msgid ", "
666
  #~ msgstr ", "
667
 
@@ -707,9 +961,6 @@ msgstr ""
707
  #~ msgid "Maximum number of events to show."
708
  #~ msgstr "Massimo numero di eventi da visualizzare."
709
 
710
- #~ msgid "Leave blank to use the default."
711
- #~ msgstr "Lasciare vuoto per utilizzare il predefinito."
712
-
713
  #~ msgid "Timezone Adjustment"
714
  #~ msgstr "Regolazione del Fuso Orario"
715
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
+ "POT-Creation-Date: 2014-11-22 16:21-0700\n"
5
+ "PO-Revision-Date: 2014-12-10 14:43+0100\n"
6
  "Last-Translator: Francesco Paccagnella <translations@pacca.it>\n"
7
  "Language-Team: \n"
8
  "Language: it\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.1\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-KeywordsList: __;_e;_x\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: google-calendar-events/class-google-calendar-events-admin.php:128
19
+ #: google-calendar-events/class-google-calendar-events-admin.php:129
20
+ #: google-calendar-events/class-google-calendar-events-admin.php:200
21
+ #: google-calendar-events/includes/register-settings.php:54
22
  msgid "General Settings"
23
  msgstr "Impostazioni Generali"
24
 
25
+ #: google-calendar-events/class-google-calendar-events-admin.php:188
26
  #: google-calendar-events/views/widgets.php:27
27
  msgid "Google Calendar Events"
28
  msgstr "Eventi Google Calendar"
29
 
30
+ #: google-calendar-events/class-google-calendar-events-admin.php:201
31
  msgid "Feeds"
32
  msgstr "Feeds"
33
 
35
  msgid "Cache has been cleared for this feed."
36
  msgstr "La cache di questo feed è stata cancellata."
37
 
38
+ #: google-calendar-events/includes/admin/admin-functions.php:35
39
+ #: google-calendar-events/includes/admin/admin-functions.php:57
40
+ msgid "Starts:"
41
+ msgstr "Inizia:"
42
+
43
+ #: google-calendar-events/includes/admin/admin-functions.php:36
44
+ #: google-calendar-events/includes/admin/admin-functions.php:59
45
+ msgid "Ends:"
46
+ msgstr "Finisce:"
47
+
48
+ #: google-calendar-events/includes/admin/admin-functions.php:37
49
+ #: google-calendar-events/includes/admin/admin-functions.php:61
50
+ msgid "Location:"
51
+ msgstr "Luogo:"
52
+
53
+ #: google-calendar-events/includes/admin/admin-functions.php:38
54
+ #: google-calendar-events/includes/admin/admin-functions.php:62
55
+ msgid "Description:"
56
+ msgstr "Descrizione:"
57
+
58
+ #: google-calendar-events/includes/admin/admin-functions.php:39
59
+ msgid "More details..."
60
+ msgstr "Meggiori dettagli..."
61
+
62
+ #: google-calendar-events/includes/admin/admin-functions.php:64
63
+ msgid "More Details"
64
+ msgstr "Maggiori Dettagli"
65
+
66
+ #: google-calendar-events/includes/admin/admin-functions.php:78
67
+ #: google-calendar-events/includes/gce-feed-cpt.php:264
68
  msgid "Clear Cache"
69
  msgstr "Cancella Cache"
70
 
71
+ #: google-calendar-events/includes/class-gce-display.php:179
72
+ #: google-calendar-events/includes/class-gce-display.php:270
73
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:185
74
  #: google-calendar-events/views/widgets.php:252
75
  msgid "Back"
76
  msgstr "Precedente"
77
 
78
+ #: google-calendar-events/includes/class-gce-display.php:183
79
+ #: google-calendar-events/includes/class-gce-display.php:271
80
  msgid "Next"
81
  msgstr "Successivo"
82
 
83
+ #: google-calendar-events/includes/class-gce-display.php:371
84
  msgid "No events to display."
85
  msgstr "Nessun evento da visualizzare."
86
 
87
+ #: google-calendar-events/includes/class-gce-event.php:504
88
  #, php-format
89
  msgid "%s year"
90
  msgstr "%s anno"
91
 
92
+ #: google-calendar-events/includes/class-gce-event.php:504
93
  #, php-format
94
  msgid "%s years"
95
  msgstr "%s anni"
96
 
97
+ #: google-calendar-events/includes/class-gce-event.php:505
98
  #, php-format
99
  msgid "%s month"
100
  msgstr "%s mese"
101
 
102
+ #: google-calendar-events/includes/class-gce-event.php:505
103
  #, php-format
104
  msgid "%s months"
105
  msgstr "%s mesi"
106
 
107
+ #: google-calendar-events/includes/class-gce-event.php:506
108
  #, php-format
109
  msgid "%s week"
110
  msgstr "%s settimana"
111
 
112
+ #: google-calendar-events/includes/class-gce-event.php:506
113
  #, php-format
114
  msgid "%s weeks"
115
  msgstr "%s settimane"
116
 
117
+ #: google-calendar-events/includes/class-gce-event.php:507
118
  #, php-format
119
  msgid "%s day"
120
  msgstr "%s giorno"
121
 
122
+ #: google-calendar-events/includes/class-gce-event.php:507
123
  #, php-format
124
  msgid "%s days"
125
  msgstr "%s giorni"
126
 
127
+ #: google-calendar-events/includes/class-gce-event.php:508
128
  #, php-format
129
  msgid "%s hour"
130
  msgstr "%s ora"
131
 
132
+ #: google-calendar-events/includes/class-gce-event.php:508
133
  #, php-format
134
  msgid "%s hours"
135
  msgstr "%s ore"
136
 
137
+ #: google-calendar-events/includes/class-gce-event.php:509
138
  #, php-format
139
  msgid "%s min"
140
  msgstr "%s minuto"
141
 
142
+ #: google-calendar-events/includes/class-gce-event.php:509
143
  #, php-format
144
  msgid "%s mins"
145
  msgstr "%s minuti"
146
 
147
+ #: google-calendar-events/includes/class-gce-feed.php:89
148
  msgid ""
149
  "The feed URL has not been set. Please make sure to set it correctly in the "
150
  "Feed settings."
152
  "L'indirizzo del feed non è stato impostato. Assicurarsi di averlo impostato "
153
  "correttamente nelle impostazioni dei Feed."
154
 
155
+ #: google-calendar-events/includes/class-gce-feed.php:194
156
  msgid ""
157
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
158
+ "your feed settings are correct."
159
  msgstr ""
160
+ "Qualche dato è stato ricevuto, ma non può essere analizzato correttamente. "
161
+ "Assicurarsi che le impostazioni del feed siano corrette."
162
 
163
+ #: google-calendar-events/includes/class-gce-feed.php:197
164
+ msgid "An error has occured."
165
+ msgstr "Si è verificato un errore."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
 
167
+ #: google-calendar-events/includes/class-gce-feed.php:202
168
+ msgid " Please ensure your calendar ID is correct."
169
+ msgstr "Assicurarsi che l'ID del calendario sia corretto."
170
 
171
  #: google-calendar-events/includes/gce-feed-cpt.php:21
172
  msgid "Google Calendar Feeds"
174
 
175
  #: google-calendar-events/includes/gce-feed-cpt.php:22
176
  #: google-calendar-events/includes/gce-feed-cpt.php:24
177
+ #: google-calendar-events/includes/gce-feed-cpt.php:72
178
  msgid "Feed"
179
  msgstr "Feed"
180
 
218
  msgid "No feeds found in Trash."
219
  msgstr "Nessun feed trovato nel Cestino."
220
 
221
+ #: google-calendar-events/includes/gce-feed-cpt.php:70
222
+ msgid "feed"
223
+ msgstr "feed"
224
+
225
  #: google-calendar-events/includes/gce-feed-cpt.php:75
226
  #: google-calendar-events/includes/gce-feed-cpt.php:76
227
  #, php-format
248
  msgid "%4$s draft updated. %1$sView %2$s%3$s"
249
  msgstr "%4$s bozza aggiornata. %1$sVisualizza %2$s%3$s"
250
 
251
+ #: google-calendar-events/includes/gce-feed-cpt.php:94
252
+ msgid "Feed Settings"
253
+ msgstr "Impostazioni Feed"
254
+
255
+ #: google-calendar-events/includes/gce-feed-cpt.php:97
256
+ msgid "Helpful Links"
257
+ msgstr "Link utili"
258
+
259
+ #: google-calendar-events/includes/gce-feed-cpt.php:99
260
+ msgid "Display Options"
261
+ msgstr "Opzioni Visualizzazione"
262
+
263
+ #: google-calendar-events/includes/gce-feed-cpt.php:217
264
  msgid "Feed ID"
265
  msgstr "ID del Feed"
266
 
267
+ #: google-calendar-events/includes/gce-feed-cpt.php:218
268
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:73
269
  msgid "Feed Shortcode"
270
  msgstr "Shortcode del Feed"
271
 
272
+ #: google-calendar-events/includes/gce-feed-cpt.php:219
273
  msgid "Display Type"
274
  msgstr "Tipo di Visualizzazione"
275
 
276
+ #: google-calendar-events/includes/gce-feed-cpt.php:246
277
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:152
278
  #: google-calendar-events/views/widgets.php:218
279
  msgid "Grid"
280
  msgstr "Griglia"
281
 
282
+ #: google-calendar-events/includes/gce-feed-cpt.php:248
283
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:153
284
  #: google-calendar-events/views/widgets.php:219
285
  msgid "List"
286
  msgstr "Lista"
287
 
288
+ #: google-calendar-events/includes/gce-feed-cpt.php:250
289
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:154
290
  #: google-calendar-events/views/widgets.php:220
291
  msgid "Grouped List"
292
  msgstr "Lista Raggruppata"
293
 
294
+ #: google-calendar-events/includes/misc-functions.php:21
295
+ msgid "Loading..."
296
+ msgstr "Caricamento..."
297
+
298
  #: google-calendar-events/includes/register-settings.php:29
299
+ msgid "Google API Key"
300
+ msgstr "Chiave API Google"
301
+
302
+ #: google-calendar-events/includes/register-settings.php:30
303
+ msgid ""
304
+ "If left blank all displayed Google calendars will use a public Google API "
305
+ "key shared across all plugin users."
306
+ msgstr ""
307
+ "Se lasciato vuoto tutti i calendari Google visualizzati utilizzeranno una "
308
+ "chiave API Google pubblica condivisa tra tutti gli utenti del plugin."
309
+
310
+ #: google-calendar-events/includes/register-settings.php:31
311
+ msgid ""
312
+ "Currently the shared key is limited to 500,000 requests per day and 5 "
313
+ "requests per second."
314
+ msgstr ""
315
+ "Attualmente la chiave condivisa è limitata a 500.000 richieste al giorno e 5 "
316
+ "richieste al secondo."
317
+
318
+ #: google-calendar-events/includes/register-settings.php:32
319
+ #, php-format
320
+ msgid ""
321
+ "To avoid these limits <a href=\"%s\" target=\"_blank\">click here for "
322
+ "instructions on how to generate and use your own Google API key.</a>"
323
+ msgstr ""
324
+ "Per evitare questi limiti <a href=\"%s\" target=\"_blank\">cliccare qui per "
325
+ "ottenere istruzioni su come generare ed usare la propria chiave API Google "
326
+ "API.</a>"
327
+
328
+ #: google-calendar-events/includes/register-settings.php:39
329
  msgid "Save Settings"
330
  msgstr "Salva Impostazioni"
331
 
332
+ #: google-calendar-events/includes/register-settings.php:40
333
  msgid ""
334
  "Save your settings when uninstalling this plugin. Useful when upgrading or "
335
  "re-installing."
337
  "Salva le impostazioni alla disinstallazione del plugin. Utile quando si "
338
  "aggiorna o si reinstalla."
339
 
340
+ #: google-calendar-events/includes/register-settings.php:169
341
  #, php-format
342
  msgid ""
343
  "The callback function used for the <strong>%s</strong> setting is missing."
345
  "La funzione richiamata utilizzata per l'impostazione <strong>%s</strong> è "
346
  "assente."
347
 
348
+ #: google-calendar-events/views/admin/api-settings-notice.php:27
349
+ msgid "GCal Events Important Update (Nov. 19, 2014):"
350
+ msgstr "Aggiornamento Importante GCal Events (Nov. 19, 2014):"
351
+
352
+ #: google-calendar-events/views/admin/api-settings-notice.php:28
353
+ msgid ""
354
+ "GCal Events now uses the Google API version 3, which requires use of a "
355
+ "public key."
356
+ msgstr ""
357
+ "GCal Events ora utilizza le API Google versione 3, che richiedono l'utilizzo "
358
+ "di una chiave pubblica."
359
+
360
+ #: google-calendar-events/views/admin/api-settings-notice.php:29
361
+ msgid ""
362
+ "By default a shared key is used across all plugin users, which is limited to "
363
+ "500,000 requests per day and 5 requests per second."
364
+ msgstr ""
365
+ "Per impostazione predefinita una chiave condivisa è utilizzata da tutti gli "
366
+ "utenti del plugin ed è limitata a 500.000 richieste al giorno e 5 richieste "
367
+ "al secondo."
368
+
369
+ #: google-calendar-events/views/admin/api-settings-notice.php:30
370
+ msgid "To avoid these limits you can use your own Google API key."
371
+ msgstr ""
372
+ "Per evitare questi limiti è possibile utilizzare una propria chiave API "
373
+ "Google."
374
+
375
+ #: google-calendar-events/views/admin/api-settings-notice.php:33
376
+ msgid "Update your API settings now"
377
+ msgstr "Aggiorna ora le impostazioni API"
378
+
379
+ #: google-calendar-events/views/admin/api-settings-notice.php:34
380
+ msgid "Hide this"
381
+ msgstr "Nascondere questo"
382
+
383
  #: google-calendar-events/views/admin/display-options-meta.php:39
384
  msgid ""
385
  "Check this box to use the simple display options below instead of the Event "
463
  "testo o i caratteri da visualizzare tra l'ora e la data (includendo anche "
464
  "gli eventuali spazi)."
465
 
466
+ #: google-calendar-events/views/admin/display-options-meta.php:80
467
+ msgid "Location"
468
+ msgstr "Luogo"
469
+
470
+ #: google-calendar-events/views/admin/display-options-meta.php:82
471
+ msgid "Show the location of events?"
472
+ msgstr "Visualizzare il luogo dell'evento?"
473
+
474
+ #: google-calendar-events/views/admin/display-options-meta.php:83
475
+ msgid "Text to display before the location."
476
+ msgstr "Testo da visualizzare prima del luogo."
477
+
478
  #: google-calendar-events/views/admin/display-options-meta.php:88
479
  msgid "Description"
480
  msgstr "Descrizione"
514
  msgid "The link text to be displayed."
515
  msgstr "Il testo del link da visualizzare."
516
 
517
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:54
518
  msgid ""
519
  "We're <strong>smack dab</strong> in the middle of building additional "
520
  "features for this plugin. Have ideas?"
522
  "Siamo <strong>esattamente</strong> nel pieno dello sviluppo di funzioni "
523
  "aggiuntive per questo plugin. Qualche idea?"
524
 
525
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:57
526
  msgid "Visit our roadmap and tell us what you're looking for"
527
  msgstr "Visita la nostra roadmap e riportaci quello che stai cercando"
528
 
529
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:63
530
  msgid "Want to be in the know?"
531
  msgstr "Vuoi essere aggiornato?"
532
 
533
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:66
534
  msgid "Get notified when new features are released"
535
  msgstr "Ricevi notifiche delle nuove funzionalità"
536
 
537
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:77
538
  msgid ""
539
+ "Copy and paste this shortcode to display this Google Calendar feed on any "
540
  "post or page."
541
  msgstr ""
542
  "Copia ed incolla questo shortcode per visualizzare questo feed di Google "
543
  "Calendar in qualsiasi post o pagina."
544
 
545
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:78
546
+ msgid ""
547
+ "To avoid display issues, make sure to paste the shortcode in the Text tab of "
548
+ "the post editor."
549
+ msgstr ""
550
+ "Per evitare problemi di visualizzazione, assicurarsi di incollare il "
551
+ "shortcode nel tab Text dell'editor dei post."
552
+
553
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:83
554
+ msgid "Google Calendar ID"
555
+ msgstr "ID Calendario Google"
556
 
557
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:87
558
+ msgid "The Google Calendar ID."
559
+ msgstr "L'ID del Calendario Google"
560
 
561
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:87
562
  msgid "Example"
563
  msgstr "Esempio"
564
 
565
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:89
566
+ msgid "How to find your GCal calendar ID"
567
  msgstr "Come trovare l'indirizzo del proprio feed di GCal"
568
 
569
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:95
570
  msgid "Search Query"
571
  msgstr "Query di Ricerca"
572
 
573
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:98
574
  msgid "Find and show events based on a search query."
575
  msgstr "Trova e visualizza gli eventi basati su una query di ricerca."
576
 
577
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:103
578
  msgid "Expand Recurring Events?"
579
  msgstr "Espandere Eventi Ricorrenti?"
580
 
581
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:105
582
  msgid "Yes"
583
  msgstr "Sì"
584
 
585
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:106
586
  msgid ""
587
  "This will show recurring events each time they occur, otherwise it will only "
588
  "show the event the first time it occurs."
590
  "Questo visualizzerà gli eventi ricorrenti ogni volta che accadono, "
591
  "altrimenti l'evento verrà visualizzato solamente la prima volta che accade."
592
 
593
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:111
594
  msgid "Date Format"
595
  msgstr "Formato Data"
596
 
597
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:115
598
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:126
599
  #, php-format
600
  msgid "Use %sPHP date formatting%s."
601
  msgstr "Usa il %sil formato data di PHP%s."
602
 
603
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:116
604
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:127
605
+ msgid "Leave blank to use the default."
606
+ msgstr "Lasciare vuoto per utilizzare il predefinito."
607
+
608
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:122
609
  msgid "Time Format"
610
  msgstr "Formato Ora"
611
 
612
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:133
613
  msgid "Cache Duration"
614
  msgstr "Durata della Cache"
615
 
616
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:136
617
  msgid ""
618
  "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
619
  "this feed changes regularly, you may want to reduce the cache duration."
622
  "questo feed cambia regolarmente, potrebbe essere necessario ridurre la "
623
  "durata della cache."
624
 
625
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:141
626
  msgid "Multiple Day Events"
627
  msgstr "Eventi in Giorni Multipli"
628
 
629
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:143
630
  msgid "Show on each day"
631
  msgstr "Visualizza in ogni giorno"
632
 
633
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:144
634
  msgid ""
635
  "Show events that span multiple days on each day that they span, rather than "
636
  "just the first day."
638
  "Visualizza gli eventi che durano più giorni in ogni giorno in cui accadono, "
639
  "anziché solamente nel primo giorno."
640
 
641
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:149
642
  msgid "Display Mode"
643
  msgstr "Modo di Visualizzazione"
644
 
645
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:156
646
  msgid "Choose how you want your calendar to be displayed."
647
  msgstr "Scegliere come vi vuole visualizzare il proprio calendario."
648
 
649
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:161
650
  msgid "Show Paging Links"
651
  msgstr "Visualizza Link di Pagina"
652
 
653
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:163
654
  #: google-calendar-events/views/widgets.php:227
655
  msgid "Check this option to display Next and Back navigation links."
656
  msgstr ""
657
  "Seleziona questa spunta per visualizzare i link di navigazione Precedente e "
658
  "Successivo"
659
 
660
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:168
661
  msgid "Number of Events per Page"
662
  msgstr "Numero di Eventi per Pagina"
663
 
664
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:172
665
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:183
666
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:197
667
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:211
668
  #: google-calendar-events/views/widgets.php:242
669
  #: google-calendar-events/views/widgets.php:250
670
  msgid "Days"
671
  msgstr "Giorni"
672
 
673
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:173
674
  #: google-calendar-events/views/widgets.php:243
675
  msgid "Events"
676
  msgstr "Eventi"
677
 
678
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:175
679
  msgid "How many events to display per page (List View only)."
680
  msgstr ""
681
  "Quanti eventi visualizzare per pagina (solo nella visualizzazione a lista)"
682
 
683
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:180
684
+ msgid "Display Start Date Offset"
685
  msgstr "Offset Data di Inizio"
686
 
687
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:186
688
  #: google-calendar-events/views/widgets.php:253
689
  msgid "Ahead"
690
  msgstr "Avanti"
691
 
692
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:188
693
+ msgid ""
694
+ "Change if you need to initially display events on a date other than today "
695
+ "(List View only)."
696
+ msgstr ""
697
+ "Modificare per visualizzare eventi che iniziano in un giorno diverso da "
698
+ "oggi. (Solo nella visualizzazione a lista)"
699
+
700
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:193
701
+ msgid "Minimum Feed Start Date"
702
+ msgstr "Minima Data Inizio Feed"
703
+
704
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:198
705
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:212
706
+ msgid "Months"
707
+ msgstr "Mesi"
708
+
709
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:199
710
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:213
711
+ msgid "Years"
712
+ msgstr "Anni"
713
+
714
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:201
715
+ msgid "back"
716
+ msgstr "indietro"
717
+
718
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:202
719
+ msgid ""
720
+ "Set how far back to retrieve events regardless of month or page being "
721
+ "displayed."
722
+ msgstr ""
723
+ "Imposta quanto indietro recuperare gli eventi, indipendentemente dal mese o "
724
+ "dalla pagina visualizzati."
725
+
726
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:207
727
+ msgid "Maximum Feed End Date"
728
+ msgstr "Massima Data Fine Feed"
729
+
730
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:215
731
+ msgid "forward"
732
+ msgstr "avanti"
733
+
734
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:216
735
  msgid ""
736
+ "Set how far in the future to retrieve events regardless of month or page "
737
+ "being displayed."
738
  msgstr ""
739
+ "Imposta quanto lontano nel futuro recuperare gli eventi, indipendentemente "
740
+ "dal mese o pagina visualizzati."
741
 
742
  #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:6
743
  msgid "Documentation & getting started"
785
  msgid "Add your first feed!"
786
  msgstr "Aggiungere il primo feed!"
787
 
788
+ #: google-calendar-events/views/widgets.php:197
789
+ msgid "Events on"
790
+ msgstr "Eventi"
791
+
792
+ #: google-calendar-events/views/widgets.php:206
793
+ msgid "Title:"
794
+ msgstr "Titolo:"
795
+
796
  #: google-calendar-events/views/widgets.php:211
797
+ msgid "Feeds to Display (comma separated list - i.e. 101,102,103):"
798
  msgstr ""
799
+ "Feed da Visualizzare (come lista separata da virgole, esempio 101,102,103)"
800
 
801
  #: google-calendar-events/views/widgets.php:216
802
+ msgid "Display Events as:"
803
+ msgstr "Visualizza Eventi come:"
804
 
805
  #: google-calendar-events/views/widgets.php:225
806
+ msgid "Show Paging Links:"
807
+ msgstr "Visualizza Link di Pagina:"
808
 
809
  #: google-calendar-events/views/widgets.php:231
810
+ msgid "Sort Order (List View only):"
811
+ msgstr "Ordinamento (solo nella visualizzazione a lista):"
812
 
813
  #: google-calendar-events/views/widgets.php:233
814
  msgid "Ascending"
819
  msgstr "Discendente"
820
 
821
  #: google-calendar-events/views/widgets.php:239
822
+ msgid "Number of Events per Page (List View only):"
823
+ msgstr "Numero di Eventi per Pagina (solo nella visualizzazione a lista):"
824
 
825
  #: google-calendar-events/views/widgets.php:248
826
+ msgid "Display Start Date Offset (List View only):"
827
+ msgstr "Offset della Data di Inizio (solo nella visualizzazione a lista):"
828
 
829
  #: google-calendar-events/views/widgets.php:258
830
  msgid ""
831
+ "Display Title on Tooltip/List Item (e.g. 'Events on 7th March'). Grouped "
832
  "lists always have a title displayed."
833
  msgstr ""
834
+ "Visualizza il Titolo su Tooltip / Lista (esempio 'Eventi del 7 Marzo'). Le "
835
  "liste raggruppate visualizzano sempre il titolo."
836
 
837
+ #~ msgid ""
838
+ #~ "Some data was retrieved, but could not be parsed successfully. Please "
839
+ #~ "ensure your feed URL is correct."
840
+ #~ msgstr ""
841
+ #~ "E' stato ricevuto qualche dato, ma non può essere analizzato "
842
+ #~ "correttamente. Assicurarsi che l'indirizzo del feed sia corretto."
843
+
844
+ #~ msgid ""
845
+ #~ "The feed could not be found (404). Please ensure your feed URL is correct."
846
+ #~ msgstr ""
847
+ #~ "Il feed non è stato trovato (404). Assicurarsi che l'indirizzo del feed "
848
+ #~ "sia corretto."
849
+
850
+ #~ msgid ""
851
+ #~ "Access to this feed was denied (403). Please ensure you have public "
852
+ #~ "sharing enabled for your calendar."
853
+ #~ msgstr ""
854
+ #~ "Non è consentito l'accesso al feed (403). Assicurarsi che sia abilitata "
855
+ #~ "la condivisione pubblica nel calendario."
856
+
857
+ #~ msgid ""
858
+ #~ "The feed data could not be retrieved. Error code: %s. Please ensure your "
859
+ #~ "feed URL is correct."
860
+ #~ msgstr ""
861
+ #~ "I dati del feed non possono essere recuperati. Codice errore: %s. "
862
+ #~ "Assicurarsi che l'indirizzo del feed sia corretto."
863
+
864
+ #~ msgid " Please ensure your feed URL is correct."
865
+ #~ msgstr "Assicurarsi che l'indirizzo del feed sia corretto."
866
+
867
+ #~ msgid ""
868
+ #~ "Copy and paste this shortcode to display this Google Calendar feed in any "
869
+ #~ "post or page."
870
+ #~ msgstr ""
871
+ #~ "Copia ed incolla questo shortcode per visualizzare questo feed di Google "
872
+ #~ "Calendar in qualsiasi post o pagina."
873
+
874
+ #~ msgid "GCal Feed URL"
875
+ #~ msgstr "Indirizzo del Feed GCal"
876
+
877
+ #~ msgid "The Google Calendar feed URL."
878
+ #~ msgstr "L'indirizzo del feed di Google Calendar."
879
+
880
+ #~ msgid "How to find your GCal feed URL"
881
+ #~ msgstr "Come trovare l'indirizzo del proprio feed di GCal"
882
+
883
+ #~ msgid "Start Date Offset"
884
+ #~ msgstr "Offset Data di Inizio"
885
+
886
+ #~ msgid ""
887
+ #~ "If you need to show events starting on a day other than today. (List View "
888
+ #~ "only)."
889
+ #~ msgstr ""
890
+ #~ "Per visualizzare eventi che iniziano in un giorno diverso da oggi. (Solo "
891
+ #~ "nella visualizzazione a lista)"
892
+
893
+ #~ msgid "Feeds to display, as a comma separated list (e.g. 101,102,103):"
894
+ #~ msgstr ""
895
+ #~ "Feed da visualizzare, come lista separata da virgole (esempio 101,102,103)"
896
+
897
+ #~ msgid "Display events as:"
898
+ #~ msgstr "Visualizza eventi come:"
899
+
900
+ #~ msgid "Show paging links:"
901
+ #~ msgstr "Visualizza link di pagina:"
902
+
903
+ #~ msgid "Sort order (List View only):"
904
+ #~ msgstr "Ordinamento (si applica soltanto alle liste):"
905
+
906
+ #~ msgid "Number of events per page (List View only):"
907
+ #~ msgstr "Numero di eventi per pagina (solo nella visualizzazione a lista):"
908
+
909
+ #~ msgid "Start date offset (List View only):"
910
+ #~ msgstr "Offset della data di inizio (solo nella visualizzazione a lista):"
911
+
912
+ #~ msgid ""
913
+ #~ "Display title on tooltip/list item (e.g. 'Events on 7th March'). Grouped "
914
+ #~ "lists always have a title displayed."
915
+ #~ msgstr ""
916
+ #~ "Visualizza il titolo su tooltip / lista (esempio 'Eventi del 7 Marzo'). "
917
+ #~ "Le liste raggruppate visualizzano sempre il titolo."
918
+
919
  #~ msgid ", "
920
  #~ msgstr ", "
921
 
961
  #~ msgid "Maximum number of events to show."
962
  #~ msgstr "Massimo numero di eventi da visualizzare."
963
 
 
 
 
964
  #~ msgid "Timezone Adjustment"
965
  #~ msgstr "Regolazione del Fuso Orario"
966