Simple Calendar – Google Calendar Plugin - Version 2.2.1

Version Description

  • February 28, 2015 =

  • Enqueue scripts & styles on all posts & pages temporarily until better detection can be put in place.

  • Fixed GCal ID encoding in feed settings.

  • Updated Italian translation.

  • Updated French translation.

Download this release

Release Info

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

Code changes from version 2.2.0 to 2.2.1

README.txt CHANGED
@@ -89,6 +89,13 @@ There are three ways to install this plugin.
89
 
90
  == Changelog ==
91
 
 
 
 
 
 
 
 
92
  = 2.2.0 - February 25, 2015 =
93
 
94
  * Added custom date range options.
89
 
90
  == Changelog ==
91
 
92
+ = 2.2.1 - February 28, 2015 =
93
+
94
+ * Enqueue scripts & styles on all posts & pages temporarily until better detection can be put in place.
95
+ * Fixed GCal ID encoding in feed settings.
96
+ * Updated Italian translation.
97
+ * Updated French translation.
98
+
99
  = 2.2.0 - February 25, 2015 =
100
 
101
  * Added custom date range options.
class-google-calendar-events.php CHANGED
@@ -18,7 +18,7 @@ class Google_Calendar_Events {
18
  *
19
  * @var string
20
  */
21
- protected $version = '2.2.0';
22
 
23
  /**
24
  * Unique identifier for the plugin.
@@ -38,7 +38,7 @@ class Google_Calendar_Events {
38
  */
39
  protected static $instance = null;
40
 
41
- protected $show_scripts = false;
42
 
43
  /**
44
  * Initialize the plugin by setting localization and loading public scripts
@@ -77,7 +77,7 @@ class Google_Calendar_Events {
77
 
78
  public function localize_main_script() {
79
 
80
- if( $this->show_scripts ) {
81
  global $localize;
82
 
83
  wp_localize_script( GCE_PLUGIN_SLUG . '-public', 'gce_grid', $localize );
@@ -89,28 +89,40 @@ class Google_Calendar_Events {
89
  'ajaxnonce' => wp_create_nonce( 'gce_ajax_nonce' ),
90
  'loadingText' => __( 'Loading...', 'gce' )
91
  ) );
92
- }
93
  }
94
 
95
  public function load_scripts( $posts ) {
96
 
97
- if ( empty( $posts ) ) {
98
- return $posts;
99
- }
100
-
101
- foreach ( $posts as $post ){
102
- if ( ( strpos( $post->post_content, '[gcal' ) !== false ) || ( $post->post_type == 'gce_feed' ) ) {
103
  // Load CSS
104
  wp_enqueue_style( $this->plugin_slug . '-public' );
105
 
106
  // Load JS
107
  wp_enqueue_script( $this->plugin_slug . '-public' );
108
 
109
- $this->show_scripts = true;
110
 
111
- break;
112
- }
 
 
 
113
  }
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
  return $posts;
116
  }
18
  *
19
  * @var string
20
  */
21
+ protected $version = '2.2.1';
22
 
23
  /**
24
  * Unique identifier for the plugin.
38
  */
39
  protected static $instance = null;
40
 
41
+ public $show_scripts = false;
42
 
43
  /**
44
  * Initialize the plugin by setting localization and loading public scripts
77
 
78
  public function localize_main_script() {
79
 
80
+ //if( $this->show_scripts ) {
81
  global $localize;
82
 
83
  wp_localize_script( GCE_PLUGIN_SLUG . '-public', 'gce_grid', $localize );
89
  'ajaxnonce' => wp_create_nonce( 'gce_ajax_nonce' ),
90
  'loadingText' => __( 'Loading...', 'gce' )
91
  ) );
92
+ //}
93
  }
94
 
95
  public function load_scripts( $posts ) {
96
 
97
+ //global $gce_options;
98
+
99
+ //if( isset( $gce_options['always_enqueue'] ) ) {
 
 
 
100
  // Load CSS
101
  wp_enqueue_style( $this->plugin_slug . '-public' );
102
 
103
  // Load JS
104
  wp_enqueue_script( $this->plugin_slug . '-public' );
105
 
106
+ //$this->show_scripts = true;
107
 
108
+ //return $posts;
109
+ //}
110
+
111
+ /*if ( empty( $posts ) ) {
112
+ return $posts;
113
  }
114
+
115
+ global $post;
116
+
117
+ if ( ( strpos( $post->post_content, '[gcal' ) !== false ) || ( $post->post_type == 'gce_feed' ) ) {
118
+ // Load CSS
119
+ wp_enqueue_style( $this->plugin_slug . '-public' );
120
+
121
+ // Load JS
122
+ wp_enqueue_script( $this->plugin_slug . '-public' );
123
+
124
+ $this->show_scripts = true;
125
+ }*/
126
 
127
  return $posts;
128
  }
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.2.0
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
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.2.1
16
  * Author: Phil Derksen
17
  * Author URI: http://philderksen.com
18
  * License: GPL-2.0+
includes/gce-feed-cpt.php CHANGED
@@ -195,17 +195,26 @@ function gce_save_meta( $post_id ) {
195
  if ( isset( $_POST[$pmf] ) && ! empty( $_POST[$pmf] ) ) {
196
  if( $pmf == 'gce_feed_url' ) {
197
 
198
- $str = $_POST[$pmf];
199
 
200
  // convert from URL if user enters a URL link (like the old versions required)
201
- $id = str_replace( 'https://www.google.com/calendar/feeds/', '', $str );
202
- $id = str_replace( '/public/basic', '', $id );
203
- $id = str_replace( '%40', '@', $id );
 
 
204
 
205
  // decode first before re-encoding it
206
  $id = urldecode( $id );
 
207
 
208
- update_post_meta( $post_id, $pmf, urlencode( trim( $id ) ) );
 
 
 
 
 
 
209
  } else {
210
  update_post_meta( $post_id, $pmf, stripslashes( $_POST[$pmf] ) );
211
  }
195
  if ( isset( $_POST[$pmf] ) && ! empty( $_POST[$pmf] ) ) {
196
  if( $pmf == 'gce_feed_url' ) {
197
 
198
+ $id = $_POST[$pmf];
199
 
200
  // convert from URL if user enters a URL link (like the old versions required)
201
+ if ( strpos( $id, 'https://www.google.com/calendar/feeds/' ) !== false ) {
202
+ $id = str_replace( 'https://www.google.com/calendar/feeds/', '', $id );
203
+ $id = str_replace( '/public/basic', '', $id );
204
+ $id = str_replace( '%40', '@', $id );
205
+ }
206
 
207
  // decode first before re-encoding it
208
  $id = urldecode( $id );
209
+ $id = trim( $id );
210
 
211
+ $at = strpos( $id, '@' );
212
+
213
+ if ( $at !== false ) {
214
+ $id = substr_replace( $id, urlencode( substr( $id, 0, $at ) ), 0, $at );
215
+ }
216
+
217
+ update_post_meta( $post_id, $pmf, $id );
218
  } else {
219
  update_post_meta( $post_id, $pmf, stripslashes( $_POST[$pmf] ) );
220
  }
includes/register-settings.php CHANGED
@@ -34,6 +34,12 @@ function gce_register_settings() {
34
  'size' => 'regular-text',
35
  'type' => 'text'
36
  ),
 
 
 
 
 
 
37
  'save_settings' => array(
38
  'id' => 'save_settings',
39
  'name' => __( 'Save Settings', 'gce' ),
34
  'size' => 'regular-text',
35
  'type' => 'text'
36
  ),
37
+ /*'always_enqueue' => array(
38
+ 'id' => 'always_enqueue',
39
+ 'name' => __( 'Always Enqueue Scripts & Styles', 'sc' ),
40
+ 'desc' => __( sprintf( 'Enqueue this plugin\'s scripts and styles on every post and page. Useful if using shortcodes in widgets or other non-standard locations.' ), 'gce' ),
41
+ 'type' => 'checkbox'
42
+ ),*/
43
  'save_settings' => array(
44
  'id' => 'save_settings',
45
  'name' => __( 'Save Settings', 'gce' ),
languages/gce-fr_FR.mo CHANGED
Binary file
languages/gce-fr_FR.po CHANGED
@@ -1,118 +1,191 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
- "POT-Creation-Date: 2014-12-03 07:50+0100\n"
5
- "PO-Revision-Date: 2014-12-03 07:50+0100\n"
6
  "Last-Translator: Vincent B <vincent@yahoo.fr>\n"
7
  "Language-Team: Jojaba <jojaba@gmail.com>\n"
8
  "Language: fr\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.5.7\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
16
  "X-Poedit-SearchPath-0: google-calendar-events\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
- #: ../class-google-calendar-events-admin.php:128
20
- #: ../class-google-calendar-events-admin.php:129
21
- #: ../class-google-calendar-events-admin.php:200
22
  #: ../includes/register-settings.php:54
23
  msgid "General Settings"
24
  msgstr "Paramètres généraux"
25
 
26
- #: ../class-google-calendar-events-admin.php:188 ../views/widgets.php:27
27
  msgid "Google Calendar Events"
28
  msgstr "Google Calendar Events"
29
 
30
- #: ../class-google-calendar-events-admin.php:201
31
  msgid "Feeds"
32
  msgstr "Flux"
33
 
34
- #: ../includes/class-gce-display.php:179 ../includes/class-gce-display.php:270
35
- #: ../views/widgets.php:252 ../views/admin/gce-feed-meta-display.php:185
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgid "Back"
37
  msgstr "Préc."
38
 
39
- #: ../includes/class-gce-display.php:183 ../includes/class-gce-display.php:271
40
  msgid "Next"
41
  msgstr "Suiv."
42
 
43
- #: ../includes/class-gce-display.php:371
44
  msgid "No events to display."
45
  msgstr "Aucun évènement à afficher."
46
 
47
- #: ../includes/class-gce-event.php:504
48
  #, php-format
49
  msgid "%s year"
50
  msgstr "%s année"
51
 
52
- #: ../includes/class-gce-event.php:504
53
  #, php-format
54
  msgid "%s years"
55
  msgstr "%s années"
56
 
57
- #: ../includes/class-gce-event.php:505
58
  #, php-format
59
  msgid "%s month"
60
  msgstr "%s mois"
61
 
62
- #: ../includes/class-gce-event.php:505
63
  #, php-format
64
  msgid "%s months"
65
  msgstr "%s mois"
66
 
67
- #: ../includes/class-gce-event.php:506
68
  #, php-format
69
  msgid "%s week"
70
  msgstr "%s semaine"
71
 
72
- #: ../includes/class-gce-event.php:506
73
  #, php-format
74
  msgid "%s weeks"
75
  msgstr "%s semaines"
76
 
77
- #: ../includes/class-gce-event.php:507
78
  #, php-format
79
  msgid "%s day"
80
  msgstr "%s jour"
81
 
82
- #: ../includes/class-gce-event.php:507
83
  #, php-format
84
  msgid "%s days"
85
  msgstr "%s jours"
86
 
87
- #: ../includes/class-gce-event.php:508
88
  #, php-format
89
  msgid "%s hour"
90
  msgstr "%s heure"
91
 
92
- #: ../includes/class-gce-event.php:508
93
  #, php-format
94
  msgid "%s hours"
95
  msgstr "%s heures"
96
 
97
- #: ../includes/class-gce-event.php:509
98
  #, php-format
99
  msgid "%s min"
100
  msgstr "%s minute"
101
 
102
- #: ../includes/class-gce-event.php:509
103
  #, php-format
104
  msgid "%s mins"
105
  msgstr "%s minutes"
106
 
107
- #: ../includes/class-gce-feed.php:89
108
  msgid ""
109
- "The feed URL has not been set. Please make sure to set it correctly in the "
110
- "Feed settings."
111
  msgstr ""
112
  "L'ID de l'agenda n'a pas été indiqué. Veuillez vérifier qu'il est défini "
113
  "correctement dans la configuration."
114
 
115
- #: ../includes/class-gce-feed.php:194
116
  msgid ""
117
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
118
  "your feed settings are correct."
@@ -120,11 +193,11 @@ msgstr ""
120
  "Des données ont été retrouvées mais n'ont pu être analysées. Assurez-vous "
121
  "que les paramètres de votre agenda sont corrects."
122
 
123
- #: ../includes/class-gce-feed.php:197
124
  msgid "An error has occured."
125
  msgstr "Une erreur est survenue."
126
 
127
- #: ../includes/class-gce-feed.php:202
128
  msgid " Please ensure your calendar ID is correct."
129
  msgstr "Assurez-vous que l'ID de votre agenda est correcte."
130
 
@@ -218,42 +291,33 @@ msgstr "Liens utiles"
218
  msgid "Display Options"
219
  msgstr "Options d'affichage"
220
 
221
- #: ../includes/gce-feed-cpt.php:217
222
  msgid "Feed ID"
223
  msgstr "ID de l'agenda"
224
 
225
- #: ../includes/gce-feed-cpt.php:218
226
- #: ../views/admin/gce-feed-meta-display.php:73
227
  msgid "Feed Shortcode"
228
  msgstr "Shortcode de l'agenda"
229
 
230
- #: ../includes/gce-feed-cpt.php:219
231
  msgid "Display Type"
232
  msgstr "Type d'affichage"
233
 
234
- #: ../includes/gce-feed-cpt.php:246 ../views/widgets.php:218
235
- #: ../views/admin/gce-feed-meta-display.php:152
236
  msgid "Grid"
237
  msgstr "Tableau"
238
 
239
- #: ../includes/gce-feed-cpt.php:248 ../views/widgets.php:219
240
- #: ../views/admin/gce-feed-meta-display.php:153
241
  msgid "List"
242
  msgstr "Liste"
243
 
244
- #: ../includes/gce-feed-cpt.php:250 ../views/widgets.php:220
245
- #: ../views/admin/gce-feed-meta-display.php:154
246
  msgid "Grouped List"
247
  msgstr "Liste groupée"
248
 
249
- #: ../includes/gce-feed-cpt.php:264 ../includes/admin/admin-functions.php:78
250
- msgid "Clear Cache"
251
- msgstr "Vider le cache"
252
-
253
- #: ../includes/misc-functions.php:18
254
- msgid "Loading..."
255
- msgstr "Chargement..."
256
-
257
  #: ../includes/register-settings.php:29
258
  msgid "Google API Key"
259
  msgstr "Clé d'API Google"
@@ -304,172 +368,14 @@ msgstr ""
304
  "La fonction de rappel utilisée pour la configuration de <strong>%s</strong> "
305
  "est introuvable."
306
 
307
- #: ../includes/admin/admin-functions.php:20
308
- msgid "Cache has been cleared for this feed."
309
- msgstr "Le cache a été vidé pour cet agenda."
310
-
311
- #: ../includes/admin/admin-functions.php:35
312
- #: ../includes/admin/admin-functions.php:57
313
- msgid "Starts:"
314
- msgstr "Début :"
315
-
316
- #: ../includes/admin/admin-functions.php:36
317
- #: ../includes/admin/admin-functions.php:59
318
- msgid "Ends:"
319
- msgstr "Fin :"
320
-
321
- #: ../includes/admin/admin-functions.php:37
322
- #: ../includes/admin/admin-functions.php:61
323
- msgid "Location:"
324
- msgstr "Lieu :"
325
-
326
- #: ../includes/admin/admin-functions.php:38
327
- #: ../includes/admin/admin-functions.php:62
328
- msgid "Description:"
329
- msgstr "Description :"
330
-
331
- #: ../includes/admin/admin-functions.php:39
332
- msgid "More details..."
333
- msgstr "Plus de détails..."
334
-
335
- #: ../includes/admin/admin-functions.php:64
336
- msgid "More Details"
337
- msgstr "Plus de détails"
338
-
339
- #: ../views/widgets.php:28
340
- msgid ""
341
- "Display a list or calendar grid of events from one or more Google Calendar "
342
- "feeds you have added"
343
- msgstr ""
344
- "Affiche une liste ou un tableau d'évènements à partir d'un ou plusieurs "
345
- "agendas Google ajoutés par vos soins."
346
-
347
- #: ../views/widgets.php:111
348
- msgid ""
349
- "No valid Feed IDs have been entered for this widget. Please check that you "
350
- "have entered the IDs correctly in the widget settings (Appearance > "
351
- "Widgets), and that the Feeds have not been deleted."
352
- msgstr ""
353
- "Aucune ID d'agenda valide n'a été ajoutée pour ce widget. Merci de vérifier "
354
- "que l'ID est correctement définie dans la configuration (Apparence > "
355
- "Widgets) et que les agendas n'ont pas été supprimés."
356
-
357
- #: ../views/widgets.php:144
358
- msgid "You have not added any feeds yet."
359
- msgstr "Vous n'avez pas encore ajouté d'agenda."
360
-
361
- #: ../views/widgets.php:186
362
- msgid "There are no feeds created yet."
363
- msgstr "Aucun agenda n'a encore été créé."
364
-
365
- #: ../views/widgets.php:187
366
- msgid "Add your first feed!"
367
- msgstr "Ajoutez votre premier agenda !"
368
-
369
- #: ../views/widgets.php:197
370
- msgid "Events on"
371
- msgstr "Évènements le"
372
-
373
- #: ../views/widgets.php:206
374
- msgid "Title:"
375
- msgstr "Titre :"
376
-
377
- #: ../views/widgets.php:211
378
- msgid "Feeds to Display (comma separated list - i.e. 101,102,103):"
379
- msgstr ""
380
- "Agendas à afficher (liste séparée par une virgule - ex.&nbsp;: 101,102,103) :"
381
-
382
- #: ../views/widgets.php:216
383
- msgid "Display Events as:"
384
- msgstr "Afficher les évènements comme&nbsp;:"
385
-
386
- #: ../views/widgets.php:225
387
- msgid "Show Paging Links:"
388
- msgstr "Afficher les liens de pagination&nbsp;:"
389
-
390
- #: ../views/widgets.php:227 ../views/admin/gce-feed-meta-display.php:163
391
- msgid "Check this option to display Next and Back navigation links."
392
- msgstr ""
393
- "Cocher cette option pour afficher les boutons «&nbsp;suiv.&nbsp;» et «&nbsp;"
394
- "préc.&nbsp;» afin de naviguer de mois en mois."
395
-
396
- #: ../views/widgets.php:231
397
- msgid "Sort Order (List View only):"
398
- msgstr "Ordre de tri (uniquement pour les listes)&nbsp;:"
399
-
400
- #: ../views/widgets.php:233
401
- msgid "Ascending"
402
- msgstr "Croissant"
403
-
404
- #: ../views/widgets.php:234
405
- msgid "Descending"
406
- msgstr "Décroissant"
407
-
408
- #: ../views/widgets.php:239
409
- msgid "Number of Events per Page (List View only):"
410
- msgstr "Nombre d'évènements par page (uniquement pour les listes)&nbsp;:"
411
-
412
- #: ../views/widgets.php:242 ../views/widgets.php:250
413
- #: ../views/admin/gce-feed-meta-display.php:172
414
- #: ../views/admin/gce-feed-meta-display.php:183
415
- #: ../views/admin/gce-feed-meta-display.php:197
416
- #: ../views/admin/gce-feed-meta-display.php:211
417
- msgid "Days"
418
- msgstr "Jours"
419
-
420
- #: ../views/widgets.php:243 ../views/admin/gce-feed-meta-display.php:173
421
- msgid "Events"
422
- msgstr "Évènements"
423
-
424
- #: ../views/widgets.php:248
425
- msgid "Display Start Date Offset (List View only):"
426
- msgstr "Date de début d'affichage (uniquement pour les listes)&nbsp;:"
427
-
428
- #: ../views/widgets.php:253 ../views/admin/gce-feed-meta-display.php:186
429
- msgid "Ahead"
430
- msgstr "Après"
431
-
432
- #: ../views/widgets.php:258
433
- msgid ""
434
- "Display Title on Tooltip/List Item (e.g. 'Events on 7th March'). Grouped "
435
- "lists always have a title displayed."
436
- msgstr ""
437
- "Afficher le titre dans l'infobulle / l'élément de liste (ex.&nbsp;: "
438
- "'Évènements du 7 mars'). Les listes groupées affichent toujours un titre."
439
-
440
- #: ../views/admin/api-settings-notice.php:27
441
- msgid "GCal Events Important Update (Nov. 19, 2014):"
442
- msgstr "GCal Events, mise à jour importante (19 nov. 2014)&nbsp;:"
443
-
444
- #: ../views/admin/api-settings-notice.php:28
445
  msgid ""
446
- "GCal Events now uses the Google API version 3, which requires use of a "
447
- "public key."
448
  msgstr ""
449
- "GCal Events utilise à présent la version 3 de l'API Google, qui nécessite "
450
- "l'utilisation d'une clé publique."
451
-
452
- #: ../views/admin/api-settings-notice.php:29
453
- msgid ""
454
- "By default a shared key is used across all plugin users, which is limited to "
455
- "500,000 requests per day and 5 requests per second."
456
- msgstr ""
457
- "Par défaut, une clé commune à tous les utilisateurs du plugin est utilisée. "
458
- "Elle limite son utilisation à 500&nbsp;000 requêtes par jour et 5 requêtes "
459
- "par seconde."
460
-
461
- #: ../views/admin/api-settings-notice.php:30
462
- msgid "To avoid these limits you can use your own Google API key."
463
- msgstr ""
464
- "Pour éviter ces limites, vous pouvez utiliser votre propre clé d'API Google."
465
-
466
- #: ../views/admin/api-settings-notice.php:33
467
- msgid "Update your API settings now"
468
- msgstr "Mettre à jour vos paramètres d'API maintenant"
469
-
470
- #: ../views/admin/api-settings-notice.php:34
471
- msgid "Hide this"
472
- msgstr "Masquer"
473
 
474
  #: ../views/admin/display-options-meta.php:39
475
  msgid ""
@@ -604,28 +510,16 @@ msgstr "Ouvrir les liens dans une nouvelle fenêtre / un nouvel onglet ?"
604
  msgid "The link text to be displayed."
605
  msgstr "Le texte du lien à afficher."
606
 
607
- #: ../views/admin/gce-feed-meta-display.php:54
608
- msgid ""
609
- "We're <strong>smack dab</strong> in the middle of building additional "
610
- "features for this plugin. Have ideas?"
611
- msgstr ""
612
- "Nous sommes actuellement en train d'ajouter des fonctionnalités pour ce "
613
- "plugin. Des suggestions ?"
614
-
615
- #: ../views/admin/gce-feed-meta-display.php:57
616
- msgid "Visit our roadmap and tell us what you're looking for"
617
- msgstr "Visitez notre plan de route et dites-nous ce que vous souhaiteriez."
618
-
619
- #: ../views/admin/gce-feed-meta-display.php:63
620
  msgid "Want to be in the know?"
621
  msgstr "Vous souhaitez être tenu informé ?"
622
 
623
- #: ../views/admin/gce-feed-meta-display.php:66
624
  msgid "Get notified when new features are released"
625
  msgstr ""
626
  "Soyez informé lors de la mise à disposition de nouvelles fonctionnalités."
627
 
628
- #: ../views/admin/gce-feed-meta-display.php:77
629
  msgid ""
630
  "Copy and paste this shortcode to display this Google Calendar feed on any "
631
  "post or page."
@@ -633,7 +527,7 @@ msgstr ""
633
  "Copier / coller ce shortcode afin d'afficher l'agenda Google dans n'importe "
634
  "quel article ou page."
635
 
636
- #: ../views/admin/gce-feed-meta-display.php:78
637
  msgid ""
638
  "To avoid display issues, make sure to paste the shortcode in the Text tab of "
639
  "the post editor."
@@ -641,185 +535,398 @@ msgstr ""
641
  "Pour éviter des problèmes d'affichage, copier ce shortcode dans l'onglet "
642
  "«&nbsp;Texte&nbsp;» de l'éditeur d'article."
643
 
644
- #: ../views/admin/gce-feed-meta-display.php:83
645
  msgid "Google Calendar ID"
646
  msgstr "ID de l'agenda Google"
647
 
648
- #: ../views/admin/gce-feed-meta-display.php:87
649
  msgid "The Google Calendar ID."
650
  msgstr "l'ID de l'agenda Google."
651
 
652
- #: ../views/admin/gce-feed-meta-display.php:87
653
  msgid "Example"
654
  msgstr "Exemple"
655
 
656
- #: ../views/admin/gce-feed-meta-display.php:89
657
- msgid "How to find your GCal calendar ID"
658
- msgstr "Comment trouver l'ID de votre agenda GCal ?"
659
 
660
- #: ../views/admin/gce-feed-meta-display.php:95
661
  msgid "Search Query"
662
  msgstr "Requête de recherche"
663
 
664
- #: ../views/admin/gce-feed-meta-display.php:98
665
  msgid "Find and show events based on a search query."
666
  msgstr ""
667
  "Trouver et afficher les évènements à partir de la requête indiquée dans ce "
668
  "champ."
669
 
670
- #: ../views/admin/gce-feed-meta-display.php:103
671
  msgid "Expand Recurring Events?"
672
  msgstr "Évènements réccurents étendus ?"
673
 
674
- #: ../views/admin/gce-feed-meta-display.php:105
675
  msgid "Yes"
676
  msgstr "Oui"
677
 
678
- #: ../views/admin/gce-feed-meta-display.php:106
679
  msgid ""
680
- "This will show recurring events each time they occur, otherwise it will only "
681
- "show the event the first time it occurs."
682
  msgstr ""
683
  "Cette option affiche les évènements récurrents à chaque fois qu'ils se "
684
  "produisent. Sinon ils ne sont affichés que pour la 1<sup>ère</sup> "
685
  "occurrence."
686
 
687
- #: ../views/admin/gce-feed-meta-display.php:111
688
- msgid "Date Format"
689
- msgstr "Format de date"
690
-
691
- #: ../views/admin/gce-feed-meta-display.php:115
692
- #: ../views/admin/gce-feed-meta-display.php:126
693
- #, php-format
694
- msgid "Use %sPHP date formatting%s."
695
- msgstr "Utiliser le %sformat de date PHP%s."
696
-
697
- #: ../views/admin/gce-feed-meta-display.php:116
698
- #: ../views/admin/gce-feed-meta-display.php:127
699
- msgid "Leave blank to use the default."
700
- msgstr "Laisser vide pour utiliser le paramètre par défaut."
701
-
702
- #: ../views/admin/gce-feed-meta-display.php:122
703
- msgid "Time Format"
704
- msgstr "Format d'heure"
705
-
706
- #: ../views/admin/gce-feed-meta-display.php:133
707
- msgid "Cache Duration"
708
- msgstr "Durée du cache"
709
-
710
- #: ../views/admin/gce-feed-meta-display.php:136
711
- msgid ""
712
- "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
713
- "this feed changes regularly, you may want to reduce the cache duration."
714
- msgstr ""
715
- "La durée en secondes de conservation du flux en cache (43200 = 12 heures). "
716
- "Si ce flux change fréquemment, réduisez cette durée."
717
-
718
- #: ../views/admin/gce-feed-meta-display.php:141
719
  msgid "Multiple Day Events"
720
  msgstr "Évènements sur plusieurs jours"
721
 
722
- #: ../views/admin/gce-feed-meta-display.php:143
723
  msgid "Show on each day"
724
  msgstr "Afficher chaque jour"
725
 
726
- #: ../views/admin/gce-feed-meta-display.php:144
727
  msgid ""
728
- "Show events that span multiple days on each day that they span, rather than "
729
- "just the first day."
730
  msgstr ""
731
- "Affiche les évènements ayant lieu sur plusieurs jours chaque jour, plutôt "
732
- "qu'uniquement sur le premier jour."
 
733
 
734
- #: ../views/admin/gce-feed-meta-display.php:149
735
  msgid "Display Mode"
736
  msgstr "Mode d'affichage"
737
 
738
- #: ../views/admin/gce-feed-meta-display.php:156
739
- msgid "Choose how you want your calendar to be displayed."
740
- msgstr "Choisissez comment vous souhaitez afficher votre agenda."
741
 
742
- #: ../views/admin/gce-feed-meta-display.php:161
743
- msgid "Show Paging Links"
744
- msgstr "Afficher les liens de pagination"
 
 
 
 
 
 
 
 
745
 
746
- #: ../views/admin/gce-feed-meta-display.php:168
747
- msgid "Number of Events per Page"
 
 
 
 
748
  msgstr "Nombre d'évènements par page"
749
 
750
- #: ../views/admin/gce-feed-meta-display.php:175
 
 
 
 
 
 
 
 
751
  msgid "How many events to display per page (List View only)."
752
  msgstr "Nombre d'évènements par page à afficher (uniquement pour les listes)"
753
 
754
- #: ../views/admin/gce-feed-meta-display.php:180
755
  msgid "Display Start Date Offset"
756
  msgstr "Date de début d'affichage"
757
 
758
- #: ../views/admin/gce-feed-meta-display.php:188
 
 
 
 
 
 
 
 
 
 
759
  msgid ""
760
- "Change if you need to initially display events on a date other than today "
761
- "(List View only)."
762
  msgstr ""
763
  "A modifier si vous souhaitez afficher la date de début d'affichage à une "
764
  "autre date qu'aujourd'hui. (uniquement pour les listes)"
765
 
766
- #: ../views/admin/gce-feed-meta-display.php:193
767
- msgid "Minimum Feed Start Date"
768
  msgstr "Date de début de l'agenda"
769
 
770
- #: ../views/admin/gce-feed-meta-display.php:198
771
- #: ../views/admin/gce-feed-meta-display.php:212
772
- msgid "Months"
773
- msgstr "Mois"
774
-
775
- #: ../views/admin/gce-feed-meta-display.php:199
776
- #: ../views/admin/gce-feed-meta-display.php:213
777
- msgid "Years"
778
- msgstr "Années"
779
 
780
- #: ../views/admin/gce-feed-meta-display.php:201
781
- msgid "back"
782
- msgstr "Avant"
783
 
784
- #: ../views/admin/gce-feed-meta-display.php:202
785
- msgid ""
786
- "Set how far back to retrieve events regardless of month or page being "
787
- "displayed."
788
  msgstr ""
789
  "Définir de combien de temps revenir en arrière pour retrouver les évènements "
790
  "passés quel que soit l'affichage (mois ou page)."
791
 
792
- #: ../views/admin/gce-feed-meta-display.php:207
793
- msgid "Maximum Feed End Date"
794
  msgstr "Date de fin de l'agenda"
795
 
796
- #: ../views/admin/gce-feed-meta-display.php:215
797
- msgid "forward"
798
- msgstr "Après"
 
 
 
 
799
 
800
- #: ../views/admin/gce-feed-meta-display.php:216
801
  msgid ""
802
- "Set how far in the future to retrieve events regardless of month or page "
803
- "being displayed."
804
  msgstr ""
805
  "Définir de combien de temps aller en avant pour retrouver les évènements "
806
  "quel que soit l'affichage (mois ou page)."
807
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
  #: ../views/admin/gce-feed-sidebar-help.php:6
809
  msgid "Documentation & getting started"
810
  msgstr "Documentation & guide de démarrage"
811
 
812
- #: ../views/admin/gce-feed-sidebar-help.php:12
813
  msgid "Community support forums"
814
  msgstr "Forum d'aide communautaire"
815
 
816
- #: ../views/admin/gce-feed-sidebar-help.php:18
 
 
 
 
 
 
 
 
817
  msgid "Get notified of new features"
818
  msgstr "Être averti des nouvelles fonctionnalités"
819
 
820
- #: ../views/admin/gce-feed-sidebar-help.php:24
821
- msgid "Rate this plugin"
822
- msgstr "Noter ce plugin"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
823
 
824
  #~ msgid ""
825
  #~ "The feed could not be found (404). Please ensure your feed URL is correct."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
+ "POT-Creation-Date: 2015-02-27 10:13+0100\n"
5
+ "PO-Revision-Date: 2015-02-27 10:16+0100\n"
6
  "Last-Translator: Vincent B <vincent@yahoo.fr>\n"
7
  "Language-Team: Jojaba <jojaba@gmail.com>\n"
8
  "Language: fr\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.9\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
  "X-Poedit-KeywordsList: __;_e\n"
16
  "X-Poedit-SearchPath-0: google-calendar-events\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
+ #: ../class-google-calendar-events-admin.php:126
20
+ #: ../class-google-calendar-events-admin.php:127
21
+ #: ../class-google-calendar-events-admin.php:218
22
  #: ../includes/register-settings.php:54
23
  msgid "General Settings"
24
  msgstr "Paramètres généraux"
25
 
26
+ #: ../class-google-calendar-events-admin.php:206 ../views/widgets.php:27
27
  msgid "Google Calendar Events"
28
  msgstr "Google Calendar Events"
29
 
30
+ #: ../class-google-calendar-events-admin.php:219
31
  msgid "Feeds"
32
  msgstr "Flux"
33
 
34
+ #: ../class-google-calendar-events.php:90
35
+ msgid "Loading..."
36
+ msgstr "Chargement..."
37
+
38
+ #: ../includes/admin/admin-functions.php:20
39
+ msgid "Cache has been cleared for this feed."
40
+ msgstr "Le cache a été vidé pour cet agenda."
41
+
42
+ #: ../includes/admin/admin-functions.php:35
43
+ #: ../includes/admin/admin-functions.php:55
44
+ msgid "Starts:"
45
+ msgstr "Début :"
46
+
47
+ #: ../includes/admin/admin-functions.php:36
48
+ #: ../includes/admin/admin-functions.php:57
49
+ msgid "Ends:"
50
+ msgstr "Fin :"
51
+
52
+ #: ../includes/admin/admin-functions.php:37
53
+ #: ../includes/admin/admin-functions.php:59
54
+ msgid "Location:"
55
+ msgstr "Lieu :"
56
+
57
+ #: ../includes/admin/admin-functions.php:38
58
+ #: ../includes/admin/admin-functions.php:60
59
+ msgid "Description:"
60
+ msgstr "Description :"
61
+
62
+ #: ../includes/admin/admin-functions.php:39
63
+ msgid "More details..."
64
+ msgstr "Plus de détails..."
65
+
66
+ #: ../includes/admin/admin-functions.php:62
67
+ msgid "More Details"
68
+ msgstr "Plus de détails"
69
+
70
+ #: ../includes/admin/admin-functions.php:76 ../includes/gce-feed-cpt.php:279
71
+ msgid "Clear Cache"
72
+ msgstr "Vider le cache"
73
+
74
+ #: ../includes/admin/admin-notice.php:26
75
+ msgid "GCal API Key Notice"
76
+ msgstr "Clé d'API Google"
77
+
78
+ #: ../includes/admin/admin-notice.php:28
79
+ msgid ""
80
+ "GCal Events uses the Google Calendar API version 3. By default this plugin "
81
+ "uses a public shared key across all plugin users."
82
+ msgstr ""
83
+ "GCal Events utilise à présent la version 3 de l'API Google, qui nécessite "
84
+ "l'utilisation d'une clé publique."
85
+
86
+ #: ../includes/admin/admin-notice.php:30
87
+ msgid ""
88
+ "This key is limited to 500,000 requests per day and 5 requests per second. "
89
+ "To avoid running into any potential limits you can use your own Google API "
90
+ "key."
91
+ msgstr ""
92
+ "Cette clé est limitée à 500,000 requêtes par jour et 5 par seconde. Pour "
93
+ "éviter de rencontrer des limitations, vous pouvez utiliser votre clé API "
94
+ "Google personnelle."
95
+
96
+ #: ../includes/admin/admin-notice.php:33
97
+ msgid "Enter your GCal API key"
98
+ msgstr "Entrez votre clé API GCal"
99
+
100
+ #: ../includes/admin/admin-notice.php:34
101
+ msgid "Configure GCal feeds"
102
+ msgstr "Configurez vos flux GCal"
103
+
104
+ #: ../includes/admin/admin-notice.php:35
105
+ msgid "Hide this"
106
+ msgstr "Masquer"
107
+
108
+ #: ../includes/class-gce-display.php:179 ../includes/class-gce-display.php:289
109
  msgid "Back"
110
  msgstr "Préc."
111
 
112
+ #: ../includes/class-gce-display.php:183 ../includes/class-gce-display.php:290
113
  msgid "Next"
114
  msgstr "Suiv."
115
 
116
+ #: ../includes/class-gce-display.php:392
117
  msgid "No events to display."
118
  msgstr "Aucun évènement à afficher."
119
 
120
+ #: ../includes/class-gce-event.php:518
121
  #, php-format
122
  msgid "%s year"
123
  msgstr "%s année"
124
 
125
+ #: ../includes/class-gce-event.php:518
126
  #, php-format
127
  msgid "%s years"
128
  msgstr "%s années"
129
 
130
+ #: ../includes/class-gce-event.php:519
131
  #, php-format
132
  msgid "%s month"
133
  msgstr "%s mois"
134
 
135
+ #: ../includes/class-gce-event.php:519
136
  #, php-format
137
  msgid "%s months"
138
  msgstr "%s mois"
139
 
140
+ #: ../includes/class-gce-event.php:520
141
  #, php-format
142
  msgid "%s week"
143
  msgstr "%s semaine"
144
 
145
+ #: ../includes/class-gce-event.php:520
146
  #, php-format
147
  msgid "%s weeks"
148
  msgstr "%s semaines"
149
 
150
+ #: ../includes/class-gce-event.php:521
151
  #, php-format
152
  msgid "%s day"
153
  msgstr "%s jour"
154
 
155
+ #: ../includes/class-gce-event.php:521
156
  #, php-format
157
  msgid "%s days"
158
  msgstr "%s jours"
159
 
160
+ #: ../includes/class-gce-event.php:522
161
  #, php-format
162
  msgid "%s hour"
163
  msgstr "%s heure"
164
 
165
+ #: ../includes/class-gce-event.php:522
166
  #, php-format
167
  msgid "%s hours"
168
  msgstr "%s heures"
169
 
170
+ #: ../includes/class-gce-event.php:523
171
  #, php-format
172
  msgid "%s min"
173
  msgstr "%s minute"
174
 
175
+ #: ../includes/class-gce-event.php:523
176
  #, php-format
177
  msgid "%s mins"
178
  msgstr "%s minutes"
179
 
180
+ #: ../includes/class-gce-feed.php:93
181
  msgid ""
182
+ "The Google Calendar ID has not been set. Please make sure to set it "
183
+ "correctly in the Feed settings."
184
  msgstr ""
185
  "L'ID de l'agenda n'a pas été indiqué. Veuillez vérifier qu'il est défini "
186
  "correctement dans la configuration."
187
 
188
+ #: ../includes/class-gce-feed.php:197
189
  msgid ""
190
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
191
  "your feed settings are correct."
193
  "Des données ont été retrouvées mais n'ont pu être analysées. Assurez-vous "
194
  "que les paramètres de votre agenda sont corrects."
195
 
196
+ #: ../includes/class-gce-feed.php:200
197
  msgid "An error has occured."
198
  msgstr "Une erreur est survenue."
199
 
200
+ #: ../includes/class-gce-feed.php:205
201
  msgid " Please ensure your calendar ID is correct."
202
  msgstr "Assurez-vous que l'ID de votre agenda est correcte."
203
 
291
  msgid "Display Options"
292
  msgstr "Options d'affichage"
293
 
294
+ #: ../includes/gce-feed-cpt.php:232
295
  msgid "Feed ID"
296
  msgstr "ID de l'agenda"
297
 
298
+ #: ../includes/gce-feed-cpt.php:233
299
+ #: ../views/admin/gce-feed-meta-display.php:87
300
  msgid "Feed Shortcode"
301
  msgstr "Shortcode de l'agenda"
302
 
303
+ #: ../includes/gce-feed-cpt.php:234
304
  msgid "Display Type"
305
  msgstr "Type d'affichage"
306
 
307
+ #: ../includes/gce-feed-cpt.php:261
 
308
  msgid "Grid"
309
  msgstr "Tableau"
310
 
311
+ #: ../includes/gce-feed-cpt.php:263
312
+ #: ../views/admin/gce-feed-meta-display.php:137 ../views/widgets.php:287
313
  msgid "List"
314
  msgstr "Liste"
315
 
316
+ #: ../includes/gce-feed-cpt.php:265
317
+ #: ../views/admin/gce-feed-meta-display.php:138 ../views/widgets.php:288
318
  msgid "Grouped List"
319
  msgstr "Liste groupée"
320
 
 
 
 
 
 
 
 
 
321
  #: ../includes/register-settings.php:29
322
  msgid "Google API Key"
323
  msgstr "Clé d'API Google"
368
  "La fonction de rappel utilisée pour la configuration de <strong>%s</strong> "
369
  "est introuvable."
370
 
371
+ #: ../includes/shortcodes.php:95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
  msgid ""
373
+ "There was a problem with one or more of your feed IDs. Please check your "
374
+ "shortcode settings and make sure they are correct."
375
  msgstr ""
376
+ "Il y a eu un problème avec un ou plusieurs identifiants (ID) de vos flux. "
377
+ "Merci de vérifier la configuration de vos code et assurez-vous qu'ils soient "
378
+ "corrects."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
379
 
380
  #: ../views/admin/display-options-meta.php:39
381
  msgid ""
510
  msgid "The link text to be displayed."
511
  msgstr "Le texte du lien à afficher."
512
 
513
+ #: ../views/admin/gce-feed-meta-display.php:77
 
 
 
 
 
 
 
 
 
 
 
 
514
  msgid "Want to be in the know?"
515
  msgstr "Vous souhaitez être tenu informé ?"
516
 
517
+ #: ../views/admin/gce-feed-meta-display.php:80
518
  msgid "Get notified when new features are released"
519
  msgstr ""
520
  "Soyez informé lors de la mise à disposition de nouvelles fonctionnalités."
521
 
522
+ #: ../views/admin/gce-feed-meta-display.php:91
523
  msgid ""
524
  "Copy and paste this shortcode to display this Google Calendar feed on any "
525
  "post or page."
527
  "Copier / coller ce shortcode afin d'afficher l'agenda Google dans n'importe "
528
  "quel article ou page."
529
 
530
+ #: ../views/admin/gce-feed-meta-display.php:92
531
  msgid ""
532
  "To avoid display issues, make sure to paste the shortcode in the Text tab of "
533
  "the post editor."
535
  "Pour éviter des problèmes d'affichage, copier ce shortcode dans l'onglet "
536
  "«&nbsp;Texte&nbsp;» de l'éditeur d'article."
537
 
538
+ #: ../views/admin/gce-feed-meta-display.php:97
539
  msgid "Google Calendar ID"
540
  msgstr "ID de l'agenda Google"
541
 
542
+ #: ../views/admin/gce-feed-meta-display.php:101
543
  msgid "The Google Calendar ID."
544
  msgstr "l'ID de l'agenda Google."
545
 
546
+ #: ../views/admin/gce-feed-meta-display.php:101
547
  msgid "Example"
548
  msgstr "Exemple"
549
 
550
+ #: ../views/admin/gce-feed-meta-display.php:103
551
+ msgid "How to find your Google Calendar ID"
552
+ msgstr "Comment trouver l'ID de votre agenda GCal?"
553
 
554
+ #: ../views/admin/gce-feed-meta-display.php:109
555
  msgid "Search Query"
556
  msgstr "Requête de recherche"
557
 
558
+ #: ../views/admin/gce-feed-meta-display.php:112
559
  msgid "Find and show events based on a search query."
560
  msgstr ""
561
  "Trouver et afficher les évènements à partir de la requête indiquée dans ce "
562
  "champ."
563
 
564
+ #: ../views/admin/gce-feed-meta-display.php:117
565
  msgid "Expand Recurring Events?"
566
  msgstr "Évènements réccurents étendus ?"
567
 
568
+ #: ../views/admin/gce-feed-meta-display.php:119
569
  msgid "Yes"
570
  msgstr "Oui"
571
 
572
+ #: ../views/admin/gce-feed-meta-display.php:120
573
  msgid ""
574
+ "Display recurring events each time they occur. If disabled, events will be "
575
+ "displayed only the first time they occur."
576
  msgstr ""
577
  "Cette option affiche les évènements récurrents à chaque fois qu'ils se "
578
  "produisent. Sinon ils ne sont affichés que pour la 1<sup>ère</sup> "
579
  "occurrence."
580
 
581
+ #: ../views/admin/gce-feed-meta-display.php:125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  msgid "Multiple Day Events"
583
  msgstr "Évènements sur plusieurs jours"
584
 
585
+ #: ../views/admin/gce-feed-meta-display.php:127
586
  msgid "Show on each day"
587
  msgstr "Afficher chaque jour"
588
 
589
+ #: ../views/admin/gce-feed-meta-display.php:128
590
  msgid ""
591
+ "Display multiple day events on each day that they span. If disabled, "
592
+ "multiple day events will be displayed only on the first day they occur."
593
  msgstr ""
594
+ "Afficher les événements recouvrant plusieurs jours sur chaque jour qu'ils "
595
+ "couvrent. Si désactivé, les événements sur plusieurs jour seront affichés "
596
+ "uniquement sur le premier jour qu'ils se produisent"
597
 
598
+ #: ../views/admin/gce-feed-meta-display.php:133
599
  msgid "Display Mode"
600
  msgstr "Mode d'affichage"
601
 
602
+ #: ../views/admin/gce-feed-meta-display.php:136 ../views/widgets.php:286
603
+ msgid "Grid (Month view)"
604
+ msgstr "Grille (vue mensuelle)"
605
 
606
+ #: ../views/admin/gce-feed-meta-display.php:139 ../views/widgets.php:289
607
+ msgid "Custom Date Range (List)"
608
+ msgstr "Plage de dates spécifique (Liste)"
609
+
610
+ #: ../views/admin/gce-feed-meta-display.php:141
611
+ msgid "Select how to display this feed."
612
+ msgstr "Définit comment afficher la date / heure de début."
613
+
614
+ #: ../views/admin/gce-feed-meta-display.php:146
615
+ msgid "Events per Page"
616
+ msgstr "Nombre d'évènements par page"
617
 
618
+ #: ../views/admin/gce-feed-meta-display.php:149 ../views/widgets.php:304
619
+ msgid "Number of Days"
620
+ msgstr "Nombre de jours"
621
+
622
+ #: ../views/admin/gce-feed-meta-display.php:150 ../views/widgets.php:305
623
+ msgid "Number of Events"
624
  msgstr "Nombre d'évènements par page"
625
 
626
+ #: ../views/admin/gce-feed-meta-display.php:151 ../views/widgets.php:306
627
+ msgid "One Week"
628
+ msgstr "Une semaine"
629
+
630
+ #: ../views/admin/gce-feed-meta-display.php:152 ../views/widgets.php:307
631
+ msgid "One Month"
632
+ msgstr "Un Mois"
633
+
634
+ #: ../views/admin/gce-feed-meta-display.php:157
635
  msgid "How many events to display per page (List View only)."
636
  msgstr "Nombre d'évènements par page à afficher (uniquement pour les listes)"
637
 
638
+ #: ../views/admin/gce-feed-meta-display.php:162
639
  msgid "Display Start Date Offset"
640
  msgstr "Date de début d'affichage"
641
 
642
+ #: ../views/admin/gce-feed-meta-display.php:165
643
+ #: ../views/admin/gce-feed-meta-display.php:177 ../views/widgets.php:321
644
+ msgid "Number of Days Back"
645
+ msgstr "Nombre de jours en arrière"
646
+
647
+ #: ../views/admin/gce-feed-meta-display.php:166
648
+ #: ../views/admin/gce-feed-meta-display.php:192 ../views/widgets.php:322
649
+ msgid "Number of Days Forward"
650
+ msgstr "Nombre de jours en avant"
651
+
652
+ #: ../views/admin/gce-feed-meta-display.php:169 ../views/widgets.php:326
653
  msgid ""
654
+ "Change to initially display events on a date other than today (List View "
655
+ "only)."
656
  msgstr ""
657
  "A modifier si vous souhaitez afficher la date de début d'affichage à une "
658
  "autre date qu'aujourd'hui. (uniquement pour les listes)"
659
 
660
+ #: ../views/admin/gce-feed-meta-display.php:174
661
+ msgid "Earliest Feed Event Date"
662
  msgstr "Date de début de l'agenda"
663
 
664
+ #: ../views/admin/gce-feed-meta-display.php:178
665
+ msgid "Number of Months Back"
666
+ msgstr "Nombre de mois en arrière"
 
 
 
 
 
 
667
 
668
+ #: ../views/admin/gce-feed-meta-display.php:179
669
+ msgid "Number of Years Back"
670
+ msgstr "Nombre d'années en arrière"
671
 
672
+ #: ../views/admin/gce-feed-meta-display.php:184
673
+ msgid "Set how far back to retrieve events regardless of initial display."
 
 
674
  msgstr ""
675
  "Définir de combien de temps revenir en arrière pour retrouver les évènements "
676
  "passés quel que soit l'affichage (mois ou page)."
677
 
678
+ #: ../views/admin/gce-feed-meta-display.php:189
679
+ msgid "Latest Feed Event Date"
680
  msgstr "Date de fin de l'agenda"
681
 
682
+ #: ../views/admin/gce-feed-meta-display.php:193
683
+ msgid "Number of Months Forward"
684
+ msgstr "Nombre de mois en avant"
685
+
686
+ #: ../views/admin/gce-feed-meta-display.php:194
687
+ msgid "Number of Years Forward"
688
+ msgstr "Nombre d'années en avant"
689
 
690
+ #: ../views/admin/gce-feed-meta-display.php:199
691
  msgid ""
692
+ "Set how far in the future to retrieve events regardless of initial display."
 
693
  msgstr ""
694
  "Définir de combien de temps aller en avant pour retrouver les évènements "
695
  "quel que soit l'affichage (mois ou page)."
696
 
697
+ #: ../views/admin/gce-feed-meta-display.php:204
698
+ msgid "Use Custom Date Range"
699
+ msgstr "Utilisez une plage de dates spécifique"
700
+
701
+ #: ../views/admin/gce-feed-meta-display.php:210
702
+ msgid "Set a specific range of events to retrieve."
703
+ msgstr "Définir une plage d'évènements à retrouver"
704
+
705
+ #: ../views/admin/gce-feed-meta-display.php:216 ../views/widgets.php:336
706
+ msgid "Show Paging Links"
707
+ msgstr "Afficher les liens de pagination"
708
+
709
+ #: ../views/admin/gce-feed-meta-display.php:219
710
+ msgid "Display Next and Back navigation links."
711
+ msgstr ""
712
+ "Afficher les boutons «&nbsp;suiv.&nbsp;» et «&nbsp;préc.&nbsp;» afin de "
713
+ "naviguer de mois en mois."
714
+
715
+ #: ../views/admin/gce-feed-meta-display.php:224 ../views/widgets.php:339
716
+ msgid "Show Tooltips"
717
+ msgstr "Montrer les infobulles"
718
+
719
+ #: ../views/admin/gce-feed-meta-display.php:227
720
+ msgid "Display tooltips when hovering over events (Grid View only)."
721
+ msgstr ""
722
+ "Afficher les infobulles quand on passe la souris sur l'évènement (Vue Grille "
723
+ "uniquement)"
724
+
725
+ #: ../views/admin/gce-feed-meta-display.php:232
726
+ msgid "Date Format"
727
+ msgstr "Format de date"
728
+
729
+ #: ../views/admin/gce-feed-meta-display.php:236
730
+ #: ../views/admin/gce-feed-meta-display.php:247
731
+ #, php-format
732
+ msgid "Use %sPHP date formatting%s."
733
+ msgstr "Utiliser le %sformat de date PHP%s."
734
+
735
+ #: ../views/admin/gce-feed-meta-display.php:237
736
+ #: ../views/admin/gce-feed-meta-display.php:248
737
+ msgid "Leave blank to use the default."
738
+ msgstr "Laisser vide pour utiliser le paramètre par défaut."
739
+
740
+ #: ../views/admin/gce-feed-meta-display.php:243
741
+ msgid "Time Format"
742
+ msgstr "Format d'heure"
743
+
744
+ #: ../views/admin/gce-feed-meta-display.php:254
745
+ msgid "Cache Duration"
746
+ msgstr "Durée du cache"
747
+
748
+ #: ../views/admin/gce-feed-meta-display.php:257
749
+ msgid ""
750
+ "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
751
+ "this feed changes regularly, you may want to reduce the cache duration."
752
+ msgstr ""
753
+ "La durée en secondes de conservation du flux en cache (43200 = 12 heures). "
754
+ "Si ce flux change fréquemment, réduisez cette durée."
755
+
756
  #: ../views/admin/gce-feed-sidebar-help.php:6
757
  msgid "Documentation & getting started"
758
  msgstr "Documentation & guide de démarrage"
759
 
760
+ #: ../views/admin/gce-feed-sidebar-help.php:11
761
  msgid "Community support forums"
762
  msgstr "Forum d'aide communautaire"
763
 
764
+ #: ../views/admin/gce-feed-sidebar-help.php:16
765
+ msgid "Rate this plugin"
766
+ msgstr "Noter ce plugin"
767
+
768
+ #: ../views/admin/gce-feed-sidebar-help.php:21
769
+ msgid "View our roadmap & vote"
770
+ msgstr "Afficher notre plan de route et votez"
771
+
772
+ #: ../views/admin/gce-feed-sidebar-help.php:26
773
  msgid "Get notified of new features"
774
  msgstr "Être averti des nouvelles fonctionnalités"
775
 
776
+ #: ../views/widgets.php:28
777
+ msgid ""
778
+ "Display a list or calendar grid of events from one or more Google Calendar "
779
+ "feeds you have added"
780
+ msgstr ""
781
+ "Affiche une liste ou un tableau d'évènements à partir d'un ou plusieurs "
782
+ "agendas Google ajoutés par vos soins."
783
+
784
+ #: ../views/widgets.php:159
785
+ msgid ""
786
+ "No valid Feed IDs have been entered for this widget. Please check that you "
787
+ "have entered the IDs correctly in the widget settings (Appearance > "
788
+ "Widgets), and that the Feeds have not been deleted."
789
+ msgstr ""
790
+ "Aucune ID d'agenda valide n'a été ajoutée pour ce widget. Merci de vérifier "
791
+ "que l'ID est correctement définie dans la configuration (Apparence > "
792
+ "Widgets) et que les agendas n'ont pas été supprimés."
793
+
794
+ #: ../views/widgets.php:199
795
+ msgid ""
796
+ "There was a problem with one or more of your feed IDs. Please check your "
797
+ "widget settings and make sure they are correct."
798
+ msgstr ""
799
+ "Il y a eu un problème avec un ou plusieurs identifiants (ID) de vos flux. "
800
+ "Merci de vérifier la configuration de vos code et assurez-vous qu'ils soient "
801
+ "corrects."
802
+
803
+ #: ../views/widgets.php:205
804
+ msgid "You have not added any feeds yet."
805
+ msgstr "Vous n'avez pas encore ajouté d'agenda."
806
+
807
+ #: ../views/widgets.php:248
808
+ msgid "There are no feeds created yet."
809
+ msgstr "Aucun agenda n'a encore été créé."
810
+
811
+ #: ../views/widgets.php:249
812
+ msgid "Add your first feed!"
813
+ msgstr "Ajoutez votre premier agenda !"
814
+
815
+ #: ../views/widgets.php:259
816
+ msgid "Events on"
817
+ msgstr "Évènements le"
818
+
819
+ #: ../views/widgets.php:273
820
+ msgid "Title:"
821
+ msgstr "Titre :"
822
+
823
+ #: ../views/widgets.php:278
824
+ msgid "Feeds to Display (comma separated list - i.e. 101,102,103):"
825
+ msgstr ""
826
+ "Agendas à afficher (liste séparée par une virgule - ex.&nbsp;: 101,102,103) :"
827
+
828
+ #: ../views/widgets.php:284
829
+ msgid "Display Events as:"
830
+ msgstr "Afficher les évènements comme&nbsp;:"
831
+
832
+ #: ../views/widgets.php:294
833
+ msgid "Sort Order (List View only):"
834
+ msgstr "Ordre de tri (uniquement pour les listes)&nbsp;:"
835
+
836
+ #: ../views/widgets.php:296
837
+ msgid "Ascending"
838
+ msgstr "Croissant"
839
+
840
+ #: ../views/widgets.php:297
841
+ msgid "Descending"
842
+ msgstr "Décroissant"
843
+
844
+ #: ../views/widgets.php:302
845
+ msgid "Events per Page (List View only):"
846
+ msgstr "Nombre d'évènements par page (uniquement pour les listes)&nbsp;:"
847
+
848
+ #: ../views/widgets.php:315
849
+ msgid ""
850
+ "This setting will pull from the custom date range set in the main feed "
851
+ "settings and cannot be changed here."
852
+ msgstr ""
853
+ "Ce paramètre est issu de la plage de dates spécifique défini dans les "
854
+ "paramètres principaux du flux et ne peut-être modifié ici."
855
+
856
+ #: ../views/widgets.php:319
857
+ msgid "Display Start Date Offset (List View only):"
858
+ msgstr "Date de début d'affichage (uniquement pour les listes)&nbsp;:"
859
+
860
+ #: ../views/widgets.php:330
861
+ msgid ""
862
+ "Display Title on Tooltip/List Item (e.g. 'Events on 7th March'). Grouped "
863
+ "lists always have a title displayed."
864
+ msgstr ""
865
+ "Afficher le titre dans l'infobulle / l'élément de liste (ex.&nbsp;: "
866
+ "'Évènements du 7 mars'). Les listes groupées affichent toujours un titre."
867
+
868
+ #~ msgid "Show Paging Links:"
869
+ #~ msgstr "Afficher les liens de pagination&nbsp;:"
870
+
871
+ #~ msgid "Days"
872
+ #~ msgstr "Jours"
873
+
874
+ #~ msgid "Events"
875
+ #~ msgstr "Évènements"
876
+
877
+ #~ msgid "Ahead"
878
+ #~ msgstr "Après"
879
+
880
+ #~ msgid "GCal Events Important Update (Nov. 19, 2014):"
881
+ #~ msgstr "GCal Events, mise à jour importante (19 nov. 2014)&nbsp;:"
882
+
883
+ #~ msgid ""
884
+ #~ "By default a shared key is used across all plugin users, which is limited "
885
+ #~ "to 500,000 requests per day and 5 requests per second."
886
+ #~ msgstr ""
887
+ #~ "Par défaut, une clé commune à tous les utilisateurs du plugin est "
888
+ #~ "utilisée. Elle limite son utilisation à 500&nbsp;000 requêtes par jour et "
889
+ #~ "5 requêtes par seconde."
890
+
891
+ #~ msgid "To avoid these limits you can use your own Google API key."
892
+ #~ msgstr ""
893
+ #~ "Pour éviter ces limites, vous pouvez utiliser votre propre clé d'API "
894
+ #~ "Google."
895
+
896
+ #~ msgid "Update your API settings now"
897
+ #~ msgstr "Mettre à jour vos paramètres d'API maintenant"
898
+
899
+ #~ msgid ""
900
+ #~ "We're <strong>smack dab</strong> in the middle of building additional "
901
+ #~ "features for this plugin. Have ideas?"
902
+ #~ msgstr ""
903
+ #~ "Nous sommes actuellement en train d'ajouter des fonctionnalités pour ce "
904
+ #~ "plugin. Des suggestions ?"
905
+
906
+ #~ msgid "Visit our roadmap and tell us what you're looking for"
907
+ #~ msgstr "Visitez notre plan de route et dites-nous ce que vous souhaiteriez."
908
+
909
+ #~ msgid ""
910
+ #~ "Show events that span multiple days on each day that they span, rather "
911
+ #~ "than just the first day."
912
+ #~ msgstr ""
913
+ #~ "Affiche les évènements ayant lieu sur plusieurs jours chaque jour, plutôt "
914
+ #~ "qu'uniquement sur le premier jour."
915
+
916
+ #~ msgid "Choose how you want your calendar to be displayed."
917
+ #~ msgstr "Choisissez comment vous souhaitez afficher votre agenda."
918
+
919
+ #~ msgid "Minimum Feed Start Date"
920
+ #~ msgstr "Date de début de l'agenda"
921
+
922
+ #~ msgid "Years"
923
+ #~ msgstr "Années"
924
+
925
+ #~ msgid "back"
926
+ #~ msgstr "Avant"
927
+
928
+ #~ msgid "forward"
929
+ #~ msgstr "Après"
930
 
931
  #~ msgid ""
932
  #~ "The feed could not be found (404). Please ensure your feed URL is correct."
languages/gce-it_IT.mo CHANGED
Binary file
languages/gce-it_IT.po CHANGED
@@ -1,8 +1,8 @@
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"
@@ -15,43 +15,47 @@ msgstr ""
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
 
 
 
 
 
34
  #: google-calendar-events/includes/admin/admin-functions.php:20
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
 
@@ -59,100 +63,133 @@ msgstr "Descrizione:"
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."
151
  msgstr ""
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."
@@ -160,11 +197,11 @@ 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
 
@@ -260,41 +297,35 @@ msgstr "Link utili"
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"
@@ -345,40 +376,13 @@ msgstr ""
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 ""
@@ -514,27 +518,15 @@ msgstr "I link si aprono in una nuova finestra / tab?"
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?"
521
- msgstr ""
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."
@@ -542,7 +534,7 @@ 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."
@@ -550,211 +542,253 @@ 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."
589
  msgstr ""
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."
620
- msgstr ""
621
- "Il periodo, in secondi, di aggiornamento della cache (43200 = 12 ore). Se "
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."
637
- msgstr ""
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"
744
  msgstr "Documentazione & Come Iniziare"
745
 
746
- #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:12
747
  msgid "Community support forums"
748
  msgstr "Forum di Supporto della Comunità"
749
 
750
- #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:18
751
- msgid "Get notified of new features"
752
- msgstr "Ricevi notifiche delle nuove funzionalità"
753
-
754
- #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:24
755
  msgid "Rate this plugin"
756
  msgstr "Vota questo plugin"
757
 
 
 
 
 
 
 
 
 
758
  #: google-calendar-events/views/widgets.php:28
759
  msgid ""
760
  "Display a list or calendar grid of events from one or more Google Calendar "
@@ -763,7 +797,7 @@ msgstr ""
763
  "Visualizza una lista o una griglia di eventi da uno o più feed di Google "
764
  "Calendar che sono stati aggiunti"
765
 
766
- #: google-calendar-events/views/widgets.php:111
767
  msgid ""
768
  "No valid Feed IDs have been entered for this widget. Please check that you "
769
  "have entered the IDs correctly in the widget settings (Appearance > "
@@ -773,60 +807,72 @@ msgstr ""
773
  "aver inserito correttamente gli ID nelle impostazioni del widget (Aspetto > "
774
  "Widgets), e che i Feed non siano stati cancellati."
775
 
776
- #: google-calendar-events/views/widgets.php:144
 
 
 
 
 
 
 
 
777
  msgid "You have not added any feeds yet."
778
  msgstr "Non è stato aggiunto ancora alcun feed."
779
 
780
- #: google-calendar-events/views/widgets.php:186
781
  msgid "There are no feeds created yet."
782
  msgstr "Non è ancora stato creato alcun feed."
783
 
784
- #: google-calendar-events/views/widgets.php:187
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"
815
  msgstr "Ascendente"
816
 
817
- #: google-calendar-events/views/widgets.php:234
818
  msgid "Descending"
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."
@@ -834,6 +880,132 @@ 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."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Calendar Events\n"
4
+ "POT-Creation-Date: 2015-02-25 15:34-0700\n"
5
+ "PO-Revision-Date: 2015-02-26 09:45+0100\n"
6
  "Last-Translator: Francesco Paccagnella <translations@pacca.it>\n"
7
  "Language-Team: \n"
8
  "Language: it\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:126
19
+ #: google-calendar-events/class-google-calendar-events-admin.php:127
20
+ #: google-calendar-events/class-google-calendar-events-admin.php:218
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:206
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:219
31
  msgid "Feeds"
32
  msgstr "Feeds"
33
 
34
+ #: google-calendar-events/class-google-calendar-events.php:90
35
+ msgid "Loading..."
36
+ msgstr "Caricamento..."
37
+
38
  #: google-calendar-events/includes/admin/admin-functions.php:20
39
  msgid "Cache has been cleared for this feed."
40
  msgstr "La cache di questo feed è stata cancellata."
41
 
42
  #: google-calendar-events/includes/admin/admin-functions.php:35
43
+ #: google-calendar-events/includes/admin/admin-functions.php:55
44
  msgid "Starts:"
45
  msgstr "Inizia:"
46
 
47
  #: google-calendar-events/includes/admin/admin-functions.php:36
48
+ #: google-calendar-events/includes/admin/admin-functions.php:57
49
  msgid "Ends:"
50
  msgstr "Finisce:"
51
 
52
  #: google-calendar-events/includes/admin/admin-functions.php:37
53
+ #: google-calendar-events/includes/admin/admin-functions.php:59
54
  msgid "Location:"
55
  msgstr "Luogo:"
56
 
57
  #: google-calendar-events/includes/admin/admin-functions.php:38
58
+ #: google-calendar-events/includes/admin/admin-functions.php:60
59
  msgid "Description:"
60
  msgstr "Descrizione:"
61
 
63
  msgid "More details..."
64
  msgstr "Meggiori dettagli..."
65
 
66
+ #: google-calendar-events/includes/admin/admin-functions.php:62
67
  msgid "More Details"
68
  msgstr "Maggiori Dettagli"
69
 
70
+ #: google-calendar-events/includes/admin/admin-functions.php:76
71
+ #: google-calendar-events/includes/gce-feed-cpt.php:279
72
  msgid "Clear Cache"
73
  msgstr "Cancella Cache"
74
 
75
+ #: google-calendar-events/includes/admin/admin-notice.php:26
76
+ msgid "GCal API Key Notice"
77
+ msgstr "Notifica Chiave API GCal"
78
+
79
+ #: google-calendar-events/includes/admin/admin-notice.php:28
80
+ msgid ""
81
+ "GCal Events uses the Google Calendar API version 3. By default this plugin "
82
+ "uses a public shared key across all plugin users."
83
+ msgstr ""
84
+ "GCal Events usa l'API di Google Calendar versione 3. Per impostazione "
85
+ "predefinita, questo plugin usa una chiave pubblica condivisa fra tutti gli "
86
+ "utenti."
87
+
88
+ #: google-calendar-events/includes/admin/admin-notice.php:30
89
+ msgid ""
90
+ "This key is limited to 500,000 requests per day and 5 requests per second. "
91
+ "To avoid running into any potential limits you can use your own Google API "
92
+ "key."
93
+ msgstr ""
94
+ "Questa chiave è limitata a 500.000 richieste per giorno e 5 richieste per "
95
+ "secondo. Per evitare di incorrere in eventuali limiti è possibile la propria "
96
+ "chiave Google API."
97
+
98
+ #: google-calendar-events/includes/admin/admin-notice.php:33
99
+ msgid "Enter your GCal API key"
100
+ msgstr "Inserire la propria chiave API di GCal"
101
+
102
+ #: google-calendar-events/includes/admin/admin-notice.php:34
103
+ msgid "Configure GCal feeds"
104
+ msgstr "Configurazione feed di GCal"
105
+
106
+ #: google-calendar-events/includes/admin/admin-notice.php:35
107
+ msgid "Hide this"
108
+ msgstr "Nascondere questo"
109
+
110
  #: google-calendar-events/includes/class-gce-display.php:179
111
+ #: google-calendar-events/includes/class-gce-display.php:289
 
 
112
  msgid "Back"
113
  msgstr "Precedente"
114
 
115
  #: google-calendar-events/includes/class-gce-display.php:183
116
+ #: google-calendar-events/includes/class-gce-display.php:290
117
  msgid "Next"
118
  msgstr "Successivo"
119
 
120
+ #: google-calendar-events/includes/class-gce-display.php:392
121
  msgid "No events to display."
122
  msgstr "Nessun evento da visualizzare."
123
 
124
+ #: google-calendar-events/includes/class-gce-event.php:518
125
  #, php-format
126
  msgid "%s year"
127
  msgstr "%s anno"
128
 
129
+ #: google-calendar-events/includes/class-gce-event.php:518
130
  #, php-format
131
  msgid "%s years"
132
  msgstr "%s anni"
133
 
134
+ #: google-calendar-events/includes/class-gce-event.php:519
135
  #, php-format
136
  msgid "%s month"
137
  msgstr "%s mese"
138
 
139
+ #: google-calendar-events/includes/class-gce-event.php:519
140
  #, php-format
141
  msgid "%s months"
142
  msgstr "%s mesi"
143
 
144
+ #: google-calendar-events/includes/class-gce-event.php:520
145
  #, php-format
146
  msgid "%s week"
147
  msgstr "%s settimana"
148
 
149
+ #: google-calendar-events/includes/class-gce-event.php:520
150
  #, php-format
151
  msgid "%s weeks"
152
  msgstr "%s settimane"
153
 
154
+ #: google-calendar-events/includes/class-gce-event.php:521
155
  #, php-format
156
  msgid "%s day"
157
  msgstr "%s giorno"
158
 
159
+ #: google-calendar-events/includes/class-gce-event.php:521
160
  #, php-format
161
  msgid "%s days"
162
  msgstr "%s giorni"
163
 
164
+ #: google-calendar-events/includes/class-gce-event.php:522
165
  #, php-format
166
  msgid "%s hour"
167
  msgstr "%s ora"
168
 
169
+ #: google-calendar-events/includes/class-gce-event.php:522
170
  #, php-format
171
  msgid "%s hours"
172
  msgstr "%s ore"
173
 
174
+ #: google-calendar-events/includes/class-gce-event.php:523
175
  #, php-format
176
  msgid "%s min"
177
  msgstr "%s minuto"
178
 
179
+ #: google-calendar-events/includes/class-gce-event.php:523
180
  #, php-format
181
  msgid "%s mins"
182
  msgstr "%s minuti"
183
 
184
+ #: google-calendar-events/includes/class-gce-feed.php:93
185
  msgid ""
186
+ "The Google Calendar ID has not been set. Please make sure to set it "
187
+ "correctly in the Feed settings."
188
  msgstr ""
189
+ "L'ID di Google Calendar non è stato impostato. Assicurarsi di averlo "
190
+ "inserito correttamente nelle impostazioni dei Feed."
191
 
192
+ #: google-calendar-events/includes/class-gce-feed.php:197
193
  msgid ""
194
  "Some data was retrieved, but could not be parsed successfully. Please ensure "
195
  "your feed settings are correct."
197
  "Qualche dato è stato ricevuto, ma non può essere analizzato correttamente. "
198
  "Assicurarsi che le impostazioni del feed siano corrette."
199
 
200
+ #: google-calendar-events/includes/class-gce-feed.php:200
201
  msgid "An error has occured."
202
  msgstr "Si è verificato un errore."
203
 
204
+ #: google-calendar-events/includes/class-gce-feed.php:205
205
  msgid " Please ensure your calendar ID is correct."
206
  msgstr "Assicurarsi che l'ID del calendario sia corretto."
207
 
297
  msgid "Display Options"
298
  msgstr "Opzioni Visualizzazione"
299
 
300
+ #: google-calendar-events/includes/gce-feed-cpt.php:232
301
  msgid "Feed ID"
302
  msgstr "ID del Feed"
303
 
304
+ #: google-calendar-events/includes/gce-feed-cpt.php:233
305
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:87
306
  msgid "Feed Shortcode"
307
  msgstr "Shortcode del Feed"
308
 
309
+ #: google-calendar-events/includes/gce-feed-cpt.php:234
310
  msgid "Display Type"
311
  msgstr "Tipo di Visualizzazione"
312
 
313
+ #: google-calendar-events/includes/gce-feed-cpt.php:261
 
 
314
  msgid "Grid"
315
  msgstr "Griglia"
316
 
317
+ #: google-calendar-events/includes/gce-feed-cpt.php:263
318
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:137
319
+ #: google-calendar-events/views/widgets.php:287
320
  msgid "List"
321
  msgstr "Lista"
322
 
323
+ #: google-calendar-events/includes/gce-feed-cpt.php:265
324
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:138
325
+ #: google-calendar-events/views/widgets.php:288
326
  msgid "Grouped List"
327
  msgstr "Lista Raggruppata"
328
 
 
 
 
 
329
  #: google-calendar-events/includes/register-settings.php:29
330
  msgid "Google API Key"
331
  msgstr "Chiave API Google"
376
  "La funzione richiamata utilizzata per l'impostazione <strong>%s</strong> è "
377
  "assente."
378
 
379
+ #: google-calendar-events/includes/shortcodes.php:95
 
 
 
 
 
 
 
 
 
 
 
 
380
  msgid ""
381
+ "There was a problem with one or more of your feed IDs. Please check your "
382
+ "shortcode settings and make sure they are correct."
 
 
 
 
 
 
 
383
  msgstr ""
384
+ "C'è stato un problema con uno o più ID dei feed. Verificare le impostazioni "
385
+ "degli shortcode e assicurarsi che siano corrette."
 
 
 
 
 
 
 
 
386
 
387
  #: google-calendar-events/views/admin/display-options-meta.php:39
388
  msgid ""
518
  msgid "The link text to be displayed."
519
  msgstr "Il testo del link da visualizzare."
520
 
521
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:77
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "Want to be in the know?"
523
  msgstr "Vuoi essere aggiornato?"
524
 
525
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:80
526
  msgid "Get notified when new features are released"
527
  msgstr "Ricevi notifiche delle nuove funzionalità"
528
 
529
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:91
530
  msgid ""
531
  "Copy and paste this shortcode to display this Google Calendar feed on any "
532
  "post or page."
534
  "Copia ed incolla questo shortcode per visualizzare questo feed di Google "
535
  "Calendar in qualsiasi post o pagina."
536
 
537
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:92
538
  msgid ""
539
  "To avoid display issues, make sure to paste the shortcode in the Text tab of "
540
  "the post editor."
542
  "Per evitare problemi di visualizzazione, assicurarsi di incollare il "
543
  "shortcode nel tab Text dell'editor dei post."
544
 
545
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:97
546
  msgid "Google Calendar ID"
547
  msgstr "ID Calendario Google"
548
 
549
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:101
550
  msgid "The Google Calendar ID."
551
  msgstr "L'ID del Calendario Google"
552
 
553
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:101
554
  msgid "Example"
555
  msgstr "Esempio"
556
 
557
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:103
558
+ msgid "How to find your Google Calendar ID"
559
+ msgstr "Come trovare il proprio ID di Google Calendar"
560
 
561
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:109
562
  msgid "Search Query"
563
  msgstr "Query di Ricerca"
564
 
565
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:112
566
  msgid "Find and show events based on a search query."
567
  msgstr "Trova e visualizza gli eventi basati su una query di ricerca."
568
 
569
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:117
570
  msgid "Expand Recurring Events?"
571
  msgstr "Espandere Eventi Ricorrenti?"
572
 
573
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:119
574
  msgid "Yes"
575
  msgstr "Sì"
576
 
577
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:120
578
  msgid ""
579
+ "Display recurring events each time they occur. If disabled, events will be "
580
+ "displayed only the first time they occur."
581
  msgstr ""
582
+ "Visualizza gli eventi ricorrenti ogni volta in cui si verificano. Se "
583
+ "disabilitato, gli eventi saranno visualizzati solo la prima volta che si "
584
+ "verificano."
585
 
586
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:125
587
+ msgid "Multiple Day Events"
588
+ msgstr "Eventi in Giorni Multipli"
 
 
 
 
 
 
589
 
 
590
  #: google-calendar-events/views/admin/gce-feed-meta-display.php:127
591
+ msgid "Show on each day"
592
+ msgstr "Visualizza in ogni giorno"
593
 
594
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:128
595
+ msgid ""
596
+ "Display multiple day events on each day that they span. If disabled, "
597
+ "multiple day events will be displayed only on the first day they occur."
598
+ msgstr ""
599
+ "Visualizza gli eventi che durano più giorni per tutta la durata. Se "
600
+ "disabilitato, gli eventi che durano più giorni saranno visualizzati "
601
+ "solamente nel primo giorno in cui si verificano."
602
 
603
  #: google-calendar-events/views/admin/gce-feed-meta-display.php:133
604
+ msgid "Display Mode"
605
+ msgstr "Modo di Visualizzazione"
606
 
607
  #: google-calendar-events/views/admin/gce-feed-meta-display.php:136
608
+ #: google-calendar-events/views/widgets.php:286
609
+ msgid "Grid (Month view)"
610
+ msgstr "Griglia (visualizzazione mensile)"
 
 
 
 
611
 
612
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:139
613
+ #: google-calendar-events/views/widgets.php:289
614
+ msgid "Custom Date Range (List)"
615
+ msgstr "Estensione Data Personalizzata (Lista)"
616
 
617
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:141
618
+ msgid "Select how to display this feed."
619
+ msgstr "Selezionare come visualizzare questo feed."
620
 
621
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:146
622
+ msgid "Events per Page"
623
+ msgstr "Eventi per Pagina"
 
 
 
 
624
 
625
  #: google-calendar-events/views/admin/gce-feed-meta-display.php:149
626
+ #: google-calendar-events/views/widgets.php:304
627
+ msgid "Number of Days"
628
+ msgstr "Numero di Giorni"
629
 
630
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:150
631
+ #: google-calendar-events/views/widgets.php:305
632
+ msgid "Number of Events"
633
+ msgstr "Numero di Eventi"
634
 
635
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:151
636
+ #: google-calendar-events/views/widgets.php:306
637
+ msgid "One Week"
638
+ msgstr "Una Settimana"
639
 
640
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:152
641
+ #: google-calendar-events/views/widgets.php:307
642
+ msgid "One Month"
643
+ msgstr "Un Mese"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
 
645
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:157
646
  msgid "How many events to display per page (List View only)."
647
  msgstr ""
648
  "Quanti eventi visualizzare per pagina (solo nella visualizzazione a lista)"
649
 
650
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:162
651
  msgid "Display Start Date Offset"
652
  msgstr "Offset Data di Inizio"
653
 
654
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:165
655
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:177
656
+ #: google-calendar-events/views/widgets.php:321
657
+ msgid "Number of Days Back"
658
+ msgstr "Numero di Giorni Indietro"
659
 
660
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:166
661
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:192
662
+ #: google-calendar-events/views/widgets.php:322
663
+ msgid "Number of Days Forward"
664
+ msgstr "Numero di Giorni in Avanti"
665
+
666
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:169
667
+ #: google-calendar-events/views/widgets.php:326
668
  msgid ""
669
+ "Change to initially display events on a date other than today (List View "
670
+ "only)."
671
  msgstr ""
672
+ "Modificare per visualizzare gli eventi a partire da una data diversa da oggi "
673
+ "(solamente nella Visualizzazione a Lista)"
674
 
675
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:174
676
+ msgid "Earliest Feed Event Date"
677
+ msgstr "Prima Data Evento Feed"
678
 
679
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:178
680
+ msgid "Number of Months Back"
681
+ msgstr "Numero di Mesi Indietro"
 
682
 
683
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:179
684
+ msgid "Number of Years Back"
685
+ msgstr "Numero di Anni Indietro"
686
+
687
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:184
688
+ msgid "Set how far back to retrieve events regardless of initial display."
689
+ msgstr ""
690
+ "Imposta quanto indietro nel tempo recuperare gli eventi indipendentemente "
691
+ "dalla visualizzazione iniziale."
692
+
693
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:189
694
+ msgid "Latest Feed Event Date"
695
+ msgstr "Ultima Data Evento Feed"
696
 
697
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:193
698
+ msgid "Number of Months Forward"
699
+ msgstr "Numero di Mesi in Avanti"
700
+
701
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:194
702
+ msgid "Number of Years Forward"
703
+ msgstr "Numero di Anni in Avanti"
704
 
705
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:199
706
  msgid ""
707
+ "Set how far in the future to retrieve events regardless of initial display."
 
708
  msgstr ""
709
+ "Imposta quanto lontano nel futuro recuperare gli eventi indipendentemente "
710
+ "dalla visualizzazione iniziale."
711
 
712
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:204
713
+ msgid "Use Custom Date Range"
714
+ msgstr "Utilizza l'Estensione Personalizzata della Data"
715
 
716
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:210
717
+ msgid "Set a specific range of events to retrieve."
718
+ msgstr "Imposta uno specifico range di eventi da recuperare."
719
 
720
  #: google-calendar-events/views/admin/gce-feed-meta-display.php:216
721
+ #: google-calendar-events/views/widgets.php:336
722
+ msgid "Show Paging Links"
723
+ msgstr "Visualizza Link di Pagina"
724
+
725
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:219
726
+ msgid "Display Next and Back navigation links."
727
+ msgstr "Visualizza i link di navigazione Avanti ed Indietro."
728
+
729
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:224
730
+ #: google-calendar-events/views/widgets.php:339
731
+ msgid "Show Tooltips"
732
+ msgstr "Visualizza Tooltips"
733
+
734
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:227
735
+ msgid "Display tooltips when hovering over events (Grid View only)."
736
+ msgstr ""
737
+ "Visualizza tooltips passando sopra agli eventi (solamente Visualizzazione "
738
+ "Griglia)."
739
+
740
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:232
741
+ msgid "Date Format"
742
+ msgstr "Formato Data"
743
+
744
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:236
745
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:247
746
+ #, php-format
747
+ msgid "Use %sPHP date formatting%s."
748
+ msgstr "Usa il %sil formato data di PHP%s."
749
+
750
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:237
751
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:248
752
+ msgid "Leave blank to use the default."
753
+ msgstr "Lasciare vuoto per utilizzare il predefinito."
754
+
755
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:243
756
+ msgid "Time Format"
757
+ msgstr "Formato Ora"
758
+
759
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:254
760
+ msgid "Cache Duration"
761
+ msgstr "Durata della Cache"
762
+
763
+ #: google-calendar-events/views/admin/gce-feed-meta-display.php:257
764
  msgid ""
765
+ "The length of time, in seconds, to cache the feed (43200 = 12 hours). If "
766
+ "this feed changes regularly, you may want to reduce the cache duration."
767
  msgstr ""
768
+ "Il periodo, in secondi, di aggiornamento della cache (43200 = 12 ore). Se "
769
+ "questo feed cambia regolarmente, potrebbe essere necessario ridurre la "
770
+ "durata della cache."
771
 
772
  #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:6
773
  msgid "Documentation & getting started"
774
  msgstr "Documentazione & Come Iniziare"
775
 
776
+ #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:11
777
  msgid "Community support forums"
778
  msgstr "Forum di Supporto della Comunità"
779
 
780
+ #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:16
 
 
 
 
781
  msgid "Rate this plugin"
782
  msgstr "Vota questo plugin"
783
 
784
+ #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:21
785
+ msgid "View our roadmap & vote"
786
+ msgstr "Visualizza la nostra roadmap e vota"
787
+
788
+ #: google-calendar-events/views/admin/gce-feed-sidebar-help.php:26
789
+ msgid "Get notified of new features"
790
+ msgstr "Ricevi notifiche delle nuove funzionalità"
791
+
792
  #: google-calendar-events/views/widgets.php:28
793
  msgid ""
794
  "Display a list or calendar grid of events from one or more Google Calendar "
797
  "Visualizza una lista o una griglia di eventi da uno o più feed di Google "
798
  "Calendar che sono stati aggiunti"
799
 
800
+ #: google-calendar-events/views/widgets.php:159
801
  msgid ""
802
  "No valid Feed IDs have been entered for this widget. Please check that you "
803
  "have entered the IDs correctly in the widget settings (Appearance > "
807
  "aver inserito correttamente gli ID nelle impostazioni del widget (Aspetto > "
808
  "Widgets), e che i Feed non siano stati cancellati."
809
 
810
+ #: google-calendar-events/views/widgets.php:199
811
+ msgid ""
812
+ "There was a problem with one or more of your feed IDs. Please check your "
813
+ "widget settings and make sure they are correct."
814
+ msgstr ""
815
+ "C'è stato un problema con uno o più ID dei feed. Verificare le impostazioni "
816
+ "del widget e assicurarsi che siano corrette."
817
+
818
+ #: google-calendar-events/views/widgets.php:205
819
  msgid "You have not added any feeds yet."
820
  msgstr "Non è stato aggiunto ancora alcun feed."
821
 
822
+ #: google-calendar-events/views/widgets.php:248
823
  msgid "There are no feeds created yet."
824
  msgstr "Non è ancora stato creato alcun feed."
825
 
826
+ #: google-calendar-events/views/widgets.php:249
827
  msgid "Add your first feed!"
828
  msgstr "Aggiungere il primo feed!"
829
 
830
+ #: google-calendar-events/views/widgets.php:259
831
  msgid "Events on"
832
  msgstr "Eventi"
833
 
834
+ #: google-calendar-events/views/widgets.php:273
835
  msgid "Title:"
836
  msgstr "Titolo:"
837
 
838
+ #: google-calendar-events/views/widgets.php:278
839
  msgid "Feeds to Display (comma separated list - i.e. 101,102,103):"
840
  msgstr ""
841
  "Feed da Visualizzare (come lista separata da virgole, esempio 101,102,103)"
842
 
843
+ #: google-calendar-events/views/widgets.php:284
844
  msgid "Display Events as:"
845
  msgstr "Visualizza Eventi come:"
846
 
847
+ #: google-calendar-events/views/widgets.php:294
 
 
 
 
848
  msgid "Sort Order (List View only):"
849
  msgstr "Ordinamento (solo nella visualizzazione a lista):"
850
 
851
+ #: google-calendar-events/views/widgets.php:296
852
  msgid "Ascending"
853
  msgstr "Ascendente"
854
 
855
+ #: google-calendar-events/views/widgets.php:297
856
  msgid "Descending"
857
  msgstr "Discendente"
858
 
859
+ #: google-calendar-events/views/widgets.php:302
860
+ msgid "Events per Page (List View only):"
861
+ msgstr "Eventi per Pagina (solamente Visualizzazione Lista):"
862
 
863
+ #: google-calendar-events/views/widgets.php:315
864
+ msgid ""
865
+ "This setting will pull from the custom date range set in the main feed "
866
+ "settings and cannot be changed here."
867
+ msgstr ""
868
+ "Questa impostazione è recuperata dal range di date personalizzato nelle "
869
+ "impostazioni principali del feed e non può essere modificata qui."
870
+
871
+ #: google-calendar-events/views/widgets.php:319
872
  msgid "Display Start Date Offset (List View only):"
873
  msgstr "Offset della Data di Inizio (solo nella visualizzazione a lista):"
874
 
875
+ #: google-calendar-events/views/widgets.php:330
876
  msgid ""
877
  "Display Title on Tooltip/List Item (e.g. 'Events on 7th March'). Grouped "
878
  "lists always have a title displayed."
880
  "Visualizza il Titolo su Tooltip / Lista (esempio 'Eventi del 7 Marzo'). Le "
881
  "liste raggruppate visualizzano sempre il titolo."
882
 
883
+ #~ msgid ""
884
+ #~ "The feed URL has not been set. Please make sure to set it correctly in "
885
+ #~ "the Feed settings."
886
+ #~ msgstr ""
887
+ #~ "L'indirizzo del feed non è stato impostato. Assicurarsi di averlo "
888
+ #~ "impostato correttamente nelle impostazioni dei Feed."
889
+
890
+ #~ msgid "GCal Events Important Update (Nov. 19, 2014):"
891
+ #~ msgstr "Aggiornamento Importante GCal Events (Nov. 19, 2014):"
892
+
893
+ #~ msgid ""
894
+ #~ "GCal Events now uses the Google API version 3, which requires use of a "
895
+ #~ "public key."
896
+ #~ msgstr ""
897
+ #~ "GCal Events ora utilizza le API Google versione 3, che richiedono "
898
+ #~ "l'utilizzo di una chiave pubblica."
899
+
900
+ #~ msgid ""
901
+ #~ "By default a shared key is used across all plugin users, which is limited "
902
+ #~ "to 500,000 requests per day and 5 requests per second."
903
+ #~ msgstr ""
904
+ #~ "Per impostazione predefinita una chiave condivisa è utilizzata da tutti "
905
+ #~ "gli utenti del plugin ed è limitata a 500.000 richieste al giorno e 5 "
906
+ #~ "richieste al secondo."
907
+
908
+ #~ msgid "To avoid these limits you can use your own Google API key."
909
+ #~ msgstr ""
910
+ #~ "Per evitare questi limiti è possibile utilizzare una propria chiave API "
911
+ #~ "Google."
912
+
913
+ #~ msgid "Update your API settings now"
914
+ #~ msgstr "Aggiorna ora le impostazioni API"
915
+
916
+ #~ msgid ""
917
+ #~ "We're <strong>smack dab</strong> in the middle of building additional "
918
+ #~ "features for this plugin. Have ideas?"
919
+ #~ msgstr ""
920
+ #~ "Siamo <strong>esattamente</strong> nel pieno dello sviluppo di funzioni "
921
+ #~ "aggiuntive per questo plugin. Qualche idea?"
922
+
923
+ #~ msgid "Visit our roadmap and tell us what you're looking for"
924
+ #~ msgstr "Visita la nostra roadmap e riportaci quello che stai cercando"
925
+
926
+ #~ msgid "How to find your GCal calendar ID"
927
+ #~ msgstr "Come trovare l'indirizzo del proprio feed di GCal"
928
+
929
+ #~ msgid ""
930
+ #~ "This will show recurring events each time they occur, otherwise it will "
931
+ #~ "only show the event the first time it occurs."
932
+ #~ msgstr ""
933
+ #~ "Questo visualizzerà gli eventi ricorrenti ogni volta che accadono, "
934
+ #~ "altrimenti l'evento verrà visualizzato solamente la prima volta che "
935
+ #~ "accade."
936
+
937
+ #~ msgid ""
938
+ #~ "Show events that span multiple days on each day that they span, rather "
939
+ #~ "than just the first day."
940
+ #~ msgstr ""
941
+ #~ "Visualizza gli eventi che durano più giorni in ogni giorno in cui "
942
+ #~ "accadono, anziché solamente nel primo giorno."
943
+
944
+ #~ msgid "Choose how you want your calendar to be displayed."
945
+ #~ msgstr "Scegliere come vi vuole visualizzare il proprio calendario."
946
+
947
+ #~ msgid "Check this option to display Next and Back navigation links."
948
+ #~ msgstr ""
949
+ #~ "Seleziona questa spunta per visualizzare i link di navigazione Precedente "
950
+ #~ "e Successivo"
951
+
952
+ #~ msgid "Number of Events per Page"
953
+ #~ msgstr "Numero di Eventi per Pagina"
954
+
955
+ #~ msgid "Days"
956
+ #~ msgstr "Giorni"
957
+
958
+ #~ msgid "Events"
959
+ #~ msgstr "Eventi"
960
+
961
+ #~ msgid "Ahead"
962
+ #~ msgstr "Avanti"
963
+
964
+ #~ msgid ""
965
+ #~ "Change if you need to initially display events on a date other than today "
966
+ #~ "(List View only)."
967
+ #~ msgstr ""
968
+ #~ "Modificare per visualizzare eventi che iniziano in un giorno diverso da "
969
+ #~ "oggi. (Solo nella visualizzazione a lista)"
970
+
971
+ #~ msgid "Minimum Feed Start Date"
972
+ #~ msgstr "Minima Data Inizio Feed"
973
+
974
+ #~ msgid "Months"
975
+ #~ msgstr "Mesi"
976
+
977
+ #~ msgid "Years"
978
+ #~ msgstr "Anni"
979
+
980
+ #~ msgid "back"
981
+ #~ msgstr "indietro"
982
+
983
+ #~ msgid ""
984
+ #~ "Set how far back to retrieve events regardless of month or page being "
985
+ #~ "displayed."
986
+ #~ msgstr ""
987
+ #~ "Imposta quanto indietro recuperare gli eventi, indipendentemente dal mese "
988
+ #~ "o dalla pagina visualizzati."
989
+
990
+ #~ msgid "Maximum Feed End Date"
991
+ #~ msgstr "Massima Data Fine Feed"
992
+
993
+ #~ msgid "forward"
994
+ #~ msgstr "avanti"
995
+
996
+ #~ msgid ""
997
+ #~ "Set how far in the future to retrieve events regardless of month or page "
998
+ #~ "being displayed."
999
+ #~ msgstr ""
1000
+ #~ "Imposta quanto lontano nel futuro recuperare gli eventi, "
1001
+ #~ "indipendentemente dal mese o pagina visualizzati."
1002
+
1003
+ #~ msgid "Show Paging Links:"
1004
+ #~ msgstr "Visualizza Link di Pagina:"
1005
+
1006
+ #~ msgid "Number of Events per Page (List View only):"
1007
+ #~ msgstr "Numero di Eventi per Pagina (solo nella visualizzazione a lista):"
1008
+
1009
  #~ msgid ""
1010
  #~ "Some data was retrieved, but could not be parsed successfully. Please "
1011
  #~ "ensure your feed URL is correct."
views/widgets.php CHANGED
@@ -28,7 +28,10 @@ class GCE_Widget extends WP_Widget {
28
  array( 'description' => __( 'Display a list or calendar grid of events from one or more Google Calendar feeds you have added', 'gce' ) )
29
  );
30
 
31
- if ( is_active_widget( false, false, $this->id_base ) ) {
 
 
 
32
  // Call action to load CSS for widget
33
  add_action( 'wp_enqueue_scripts', array( $this, 'gce_widget_add_styles' ) );
34
 
28
  array( 'description' => __( 'Display a list or calendar grid of events from one or more Google Calendar feeds you have added', 'gce' ) )
29
  );
30
 
31
+ if ( is_active_widget( false, false, $this->id_base, true ) ) {
32
+
33
+ Google_Calendar_Events::get_instance()->show_scripts = true;
34
+
35
  // Call action to load CSS for widget
36
  add_action( 'wp_enqueue_scripts', array( $this, 'gce_widget_add_styles' ) );
37