All-in-One Event Calendar - Version 1.5

Version Description

Download this release

Release Info

Developer yani.iliev
Plugin Icon 128x128 All-in-One Event Calendar
Version 1.5
Comparing to
See all releases

Code changes from version 1.4 to 1.5

Files changed (44) hide show
  1. all-in-one-event-calendar.php +9 -2
  2. app/controller/class-ai1ec-app-controller.php +43 -0
  3. app/controller/class-ai1ec-calendar-controller.php +117 -10
  4. app/controller/class-ai1ec-events-controller.php +18 -18
  5. app/controller/class-ai1ec-exporter-controller.php +58 -0
  6. app/controller/class-ai1ec-settings-controller.php +21 -4
  7. app/helper/class-ai1ec-app-helper.php +18 -4
  8. app/helper/class-ai1ec-calendar-helper.php +166 -0
  9. app/helper/class-ai1ec-importer-helper.php +6 -2
  10. app/helper/class-ai1ec-settings-helper.php +6 -1
  11. app/model/class-ai1ec-event.php +1 -1
  12. app/model/class-ai1ec-settings.php +23 -1
  13. app/view/admin_notices.php +7 -2
  14. app/view/box_general_settings.php +8 -0
  15. app/view/calendar.php +8 -1
  16. app/view/oneday.php +137 -0
  17. css/calendar.css +146 -14
  18. img/oneday-view.png +0 -0
  19. js/add_new_event.js +27 -0
  20. js/calendar.js +12 -11
  21. language/all-in-one-event-calendar-it_IT.mo +0 -0
  22. language/all-in-one-event-calendar-it_IT.po +1265 -0
  23. language/all-in-one-event-calendar-nb_NO.mo +0 -0
  24. language/all-in-one-event-calendar-nb_NO.po +1503 -0
  25. language/all-in-one-event-calendar-pl_PL.mo +0 -0
  26. language/all-in-one-event-calendar-pl_PL.po +1220 -0
  27. language/all-in-one-event-calendar-pt_PT.mo +0 -0
  28. language/all-in-one-event-calendar-pt_PT.po +1233 -0
  29. language/all-in-one-event-calendar-sv_SE.mo +0 -0
  30. language/all-in-one-event-calendar-sv_SE.po +168 -131
  31. language/all-in-one-event-calendar.pot +84 -62
  32. lib/global-functions.php +20 -0
  33. readme.txt +10 -1
  34. screenshot-1.png +0 -0
  35. screenshot-10.png +0 -0
  36. screenshot-11.png +0 -0
  37. screenshot-2.png +0 -0
  38. screenshot-3.png +0 -0
  39. screenshot-4.png +0 -0
  40. screenshot-5.png +0 -0
  41. screenshot-6.png +0 -0
  42. screenshot-7.png +0 -0
  43. screenshot-8.png +0 -0
  44. screenshot-9.png +0 -0
all-in-one-event-calendar.php CHANGED
@@ -5,8 +5,8 @@
5
  * Description: An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: The Seed Studio
7
  * Author URI: http://theseednetwork.com/
8
- * Version: 1.4
9
- */ // NOTE: When updating version number also update first line of app/view/calendar.php
10
  @set_time_limit( 0 );
11
  @ini_set( "memory_limit", "256M" );
12
  @ini_set( "max_input_time", "-1" );
@@ -21,6 +21,11 @@ define( 'AI1EC_PLUGIN_NAME', 'all-in-one-event-calendar' );
21
  // ===================
22
  define( 'AI1EC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
23
 
 
 
 
 
 
24
  // ====================
25
  // = Database Version =
26
  // ====================
@@ -30,6 +35,8 @@ define( 'AI1EC_DB_VERSION', 107 );
30
  // = Cron Version =
31
  // ================
32
  define( 'AI1EC_CRON_VERSION', 102 );
 
 
33
 
34
  // ===============
35
  // = Plugin Path =
5
  * Description: An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
  * Author: The Seed Studio
7
  * Author URI: http://theseednetwork.com/
8
+ * Version: 1.5
9
+ */ // NOTE: When updating version number also update first line of app/view/calendar.php and AI1EC_VERSION constant listed below
10
  @set_time_limit( 0 );
11
  @ini_set( "memory_limit", "256M" );
12
  @ini_set( "max_input_time", "-1" );
21
  // ===================
22
  define( 'AI1EC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
23
 
24
+ // ==================
25
+ // = Plugin Version =
26
+ // ==================
27
+ define( 'AI1EC_VERSION', '1.5' );
28
+
29
  // ====================
30
  // = Database Version =
31
  // ====================
35
  // = Cron Version =
36
  // ================
37
  define( 'AI1EC_CRON_VERSION', 102 );
38
+ define( 'AI1EC_N_CRON_VERSION', 101 );
39
+ define( 'AI1EC_N_CRON_FREQ', 'daily' );
40
 
41
  // ===============
42
  // = Plugin Path =
app/controller/class-ai1ec-app-controller.php CHANGED
@@ -68,6 +68,7 @@ class Ai1ec_App_Controller {
68
  $ai1ec_events_controller,
69
  $ai1ec_events_helper,
70
  $ai1ec_importer_controller,
 
71
  $ai1ec_settings_controller,
72
  $ai1ec_settings;
73
 
@@ -85,6 +86,9 @@ class Ai1ec_App_Controller {
85
 
86
  // Install/update cron as necessary
87
  $this->install_cron();
 
 
 
88
 
89
  // ===========
90
  // = ACTIONS =
@@ -114,6 +118,8 @@ class Ai1ec_App_Controller {
114
  add_action( 'delete_post', array( &$ai1ec_events_controller, 'delete_post' ) );
115
  // Cron job hook
116
  add_action( 'ai1ec_cron', array( &$ai1ec_importer_controller, 'cron' ) );
 
 
117
  // Category colors
118
  add_action( 'events_categories_add_form_fields', array( &$ai1ec_events_controller, 'events_categories_add_form_fields' ) );
119
  add_action( 'events_categories_edit_form_fields', array( &$ai1ec_events_controller, 'events_categories_edit_form_fields' ) );
@@ -176,6 +182,9 @@ class Ai1ec_App_Controller {
176
  add_action( 'wp_ajax_ai1ec_get_repeat_box', array( &$ai1ec_events_helper, 'get_repeat_box' ) );
177
  add_action( 'wp_ajax_ai1ec_get_date_picker_box', array( &$ai1ec_events_helper, 'get_date_picker_box' ) );
178
 
 
 
 
179
  // ==============
180
  // = Shortcodes =
181
  // ==============
@@ -334,6 +343,40 @@ class Ai1ec_App_Controller {
334
  update_option( 'ai1ec_cron_version', AI1EC_CRON_VERSION );
335
  }
336
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
 
338
  /**
339
  * setup_menus function
68
  $ai1ec_events_controller,
69
  $ai1ec_events_helper,
70
  $ai1ec_importer_controller,
71
+ $ai1ec_exporter_controller,
72
  $ai1ec_settings_controller,
73
  $ai1ec_settings;
74
 
86
 
87
  // Install/update cron as necessary
88
  $this->install_cron();
89
+
90
+ // Enable stats collection
91
+ $this->install_n_cron();
92
 
93
  // ===========
94
  // = ACTIONS =
118
  add_action( 'delete_post', array( &$ai1ec_events_controller, 'delete_post' ) );
119
  // Cron job hook
120
  add_action( 'ai1ec_cron', array( &$ai1ec_importer_controller, 'cron' ) );
121
+ // Notification cron job hook
122
+ add_action( 'ai1ec_n_cron', array( &$ai1ec_exporter_controller, 'n_cron' ) );
123
  // Category colors
124
  add_action( 'events_categories_add_form_fields', array( &$ai1ec_events_controller, 'events_categories_add_form_fields' ) );
125
  add_action( 'events_categories_edit_form_fields', array( &$ai1ec_events_controller, 'events_categories_edit_form_fields' ) );
182
  add_action( 'wp_ajax_ai1ec_get_repeat_box', array( &$ai1ec_events_helper, 'get_repeat_box' ) );
183
  add_action( 'wp_ajax_ai1ec_get_date_picker_box', array( &$ai1ec_events_helper, 'get_date_picker_box' ) );
184
 
185
+ // Disable notification
186
+ add_action( 'wp_ajax_ai1ec_disable_notification', array( &$ai1ec_settings_controller, 'disable_notification' ) );
187
+
188
  // ==============
189
  // = Shortcodes =
190
  // ==============
343
  update_option( 'ai1ec_cron_version', AI1EC_CRON_VERSION );
344
  }
345
  }
346
+
347
+ /**
348
+ * install_notification_cron function
349
+ *
350
+ * This function sets up the cron job for collecting stats
351
+ *
352
+ * @return void
353
+ **/
354
+ function install_n_cron() {
355
+ global $ai1ec_settings;
356
+
357
+ // if stats are disabled, cancel the cron
358
+ if( $ai1ec_settings->allow_statistics == false ) {
359
+ // delete our scheduled crons
360
+ wp_clear_scheduled_hook( 'ai1ec_n_cron_version' );
361
+
362
+ // remove the cron version
363
+ delete_option( 'ai1ec_n_cron_version' );
364
+
365
+ // prevent the execution of the code below
366
+ return;
367
+ }
368
+
369
+ // If existing CRON version is not consistent with current plugin's version,
370
+ // or does not exist, then create/update cron using
371
+ if( get_option( 'ai1ec_n_cron_version' ) != AI1EC_N_CRON_VERSION ) {
372
+ // delete our scheduled crons
373
+ wp_clear_scheduled_hook( 'ai1ec_n_cron_version' );
374
+ // set the new cron
375
+ wp_schedule_event( time(), AI1EC_N_CRON_FREQ, 'ai1ec_n_cron' );
376
+ // update the cron version
377
+ update_option( 'ai1ec_n_cron_version', AI1EC_N_CRON_VERSION );
378
+ }
379
+ }
380
 
381
  /**
382
  * setup_menus function
app/controller/class-ai1ec-calendar-controller.php CHANGED
@@ -47,11 +47,13 @@ class Ai1ec_Calendar_Controller {
47
  if( basename( $_SERVER['SCRIPT_NAME'] ) == 'admin-ajax.php' )
48
  {
49
  add_action( 'wp_ajax_ai1ec_month', array( &$this, 'ajax_month' ) );
 
50
  add_action( 'wp_ajax_ai1ec_week', array( &$this, 'ajax_week' ) );
51
  add_action( 'wp_ajax_ai1ec_agenda', array( &$this, 'ajax_agenda' ) );
52
  add_action( 'wp_ajax_ai1ec_term_filter', array( &$this, 'ajax_term_filter' ) );
53
 
54
  add_action( 'wp_ajax_nopriv_ai1ec_month', array( &$this, 'ajax_month' ) );
 
55
  add_action( 'wp_ajax_nopriv_ai1ec_week', array( &$this, 'ajax_week' ) );
56
  add_action( 'wp_ajax_nopriv_ai1ec_agenda', array( &$this, 'ajax_agenda' ) );
57
  add_action( 'wp_ajax_nopriv_ai1ec_term_filter', array( &$this, 'ajax_term_filter' ) );
@@ -75,7 +77,7 @@ class Ai1ec_Calendar_Controller {
75
  // object
76
  $this->request['action'] = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : '';
77
  if( ! in_array( $this->request['action'],
78
- array( 'ai1ec_month', 'ai1ec_week', 'ai1ec_agenda', 'ai1ec_term_filter' ) ) )
79
  $this->request['action'] = 'ai1ec_' . $ai1ec_settings->default_calendar_view;
80
 
81
  switch( $this->request['action'] )
@@ -91,6 +93,17 @@ class Ai1ec_Calendar_Controller {
91
  $this->request['ai1ec_post_ids'] = isset( $_REQUEST['ai1ec_post_ids'] ) ? $_REQUEST['ai1ec_post_ids'] : null;
92
  break;
93
 
 
 
 
 
 
 
 
 
 
 
 
94
  case 'ai1ec_week':
95
  $this->request['ai1ec_week_offset'] =
96
  isset( $_REQUEST['ai1ec_week_offset'] ) ? intval( $_REQUEST['ai1ec_week_offset'] ) : 0;
@@ -171,6 +184,11 @@ class Ai1ec_Calendar_Controller {
171
  $view = $this->get_month_view( $args );
172
  break;
173
 
 
 
 
 
 
174
  case 'ai1ec_week':
175
  $args['week_offset'] = $this->request['ai1ec_week_offset'];
176
  $view = $this->get_week_view( $args );
@@ -270,6 +288,68 @@ class Ai1ec_Calendar_Controller {
270
  return apply_filters( 'ai1ec_get_month_view', $ai1ec_view_helper->get_view( 'month.php', $view_args ), $view_args );
271
  }
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  /**
274
  * get_week_view function
275
  *
@@ -418,6 +498,33 @@ class Ai1ec_Calendar_Controller {
418
  $ai1ec_view_helper->json_response( $data );
419
  }
420
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  /**
422
  * ajax_week function
423
  *
@@ -540,8 +647,8 @@ class Ai1ec_Calendar_Controller {
540
  {
541
  global $ai1ec_settings;
542
 
543
- wp_enqueue_style( 'ai1ec-general', AI1EC_CSS_URL . '/general.css', array(), 1 );
544
- wp_enqueue_style( 'ai1ec-calendar', AI1EC_CSS_URL . '/calendar.css', array(), 1 );
545
 
546
  if( $ai1ec_settings->calendar_css_selector )
547
  add_action( 'wp_head', array( &$this, 'selector_css' ) );
@@ -574,18 +681,18 @@ class Ai1ec_Calendar_Controller {
574
  global $ai1ec_settings;
575
 
576
  // Include dependent scripts (jQuery plugins, modernizr)
577
- wp_enqueue_script( 'jquery.scrollTo', AI1EC_JS_URL . '/jquery.scrollTo-min.js', array( 'jquery' ), 1 );
578
- wp_enqueue_script( 'jquery.tableScroll', AI1EC_JS_URL . '/jquery.tablescroll.js', array( 'jquery' ), 1 );
579
- wp_enqueue_script( 'modernizr.custom.78720', AI1EC_JS_URL . '/modernizr.custom.78720.js', array(), 1 );
580
  // Include element selector function
581
- wp_enqueue_script( 'ai1ec-element-selector', AI1EC_JS_URL . '/element-selector.js', array( 'jquery', 'jquery.scrollTo' ), 1 );
582
  // Include custom script
583
  wp_enqueue_script( 'ai1ec-calendar', AI1EC_JS_URL . '/calendar.js',
584
- array( 'jquery', 'jquery.scrollTo', 'jquery.tableScroll', 'modernizr.custom.78720' ), 1 );
585
 
586
  $data = array(
587
- // Point script to AJAX URL
588
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
589
  // What this view defaults to, in case there is no #hash appended
590
  'default_hash' => '#' . http_build_query( $this->request ),
591
  'export_url' => AI1EC_EXPORT_URL,
47
  if( basename( $_SERVER['SCRIPT_NAME'] ) == 'admin-ajax.php' )
48
  {
49
  add_action( 'wp_ajax_ai1ec_month', array( &$this, 'ajax_month' ) );
50
+ add_action( 'wp_ajax_ai1ec_oneday', array( &$this, 'ajax_oneday' ) );
51
  add_action( 'wp_ajax_ai1ec_week', array( &$this, 'ajax_week' ) );
52
  add_action( 'wp_ajax_ai1ec_agenda', array( &$this, 'ajax_agenda' ) );
53
  add_action( 'wp_ajax_ai1ec_term_filter', array( &$this, 'ajax_term_filter' ) );
54
 
55
  add_action( 'wp_ajax_nopriv_ai1ec_month', array( &$this, 'ajax_month' ) );
56
+ add_action( 'wp_ajax_nopriv_ai1ec_oneday', array( &$this, 'ajax_oneday' ) );
57
  add_action( 'wp_ajax_nopriv_ai1ec_week', array( &$this, 'ajax_week' ) );
58
  add_action( 'wp_ajax_nopriv_ai1ec_agenda', array( &$this, 'ajax_agenda' ) );
59
  add_action( 'wp_ajax_nopriv_ai1ec_term_filter', array( &$this, 'ajax_term_filter' ) );
77
  // object
78
  $this->request['action'] = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : '';
79
  if( ! in_array( $this->request['action'],
80
+ array( 'ai1ec_month', 'ai1ec_oneday', 'ai1ec_week', 'ai1ec_agenda', 'ai1ec_term_filter' ) ) )
81
  $this->request['action'] = 'ai1ec_' . $ai1ec_settings->default_calendar_view;
82
 
83
  switch( $this->request['action'] )
93
  $this->request['ai1ec_post_ids'] = isset( $_REQUEST['ai1ec_post_ids'] ) ? $_REQUEST['ai1ec_post_ids'] : null;
94
  break;
95
 
96
+ case 'ai1ec_oneday':
97
+ $this->request['ai1ec_oneday_offset'] =
98
+ isset( $_REQUEST['ai1ec_oneday_offset'] ) ? intval( $_REQUEST['ai1ec_oneday_offset'] ) : 0;
99
+ // Parse active event parameter as an integer ID
100
+ $this->request['ai1ec_active_event'] = isset( $_REQUEST['ai1ec_active_event'] ) ? intval( $_REQUEST['ai1ec_active_event'] ) : null;
101
+ // Category/tag filter parameters
102
+ $this->request['ai1ec_cat_ids'] = isset( $_REQUEST['ai1ec_cat_ids'] ) ? $_REQUEST['ai1ec_cat_ids'] : null;
103
+ $this->request['ai1ec_tag_ids'] = isset( $_REQUEST['ai1ec_tag_ids'] ) ? $_REQUEST['ai1ec_tag_ids'] : null;
104
+ $this->request['ai1ec_post_ids'] = isset( $_REQUEST['ai1ec_post_ids'] ) ? $_REQUEST['ai1ec_post_ids'] : null;
105
+ break;
106
+
107
  case 'ai1ec_week':
108
  $this->request['ai1ec_week_offset'] =
109
  isset( $_REQUEST['ai1ec_week_offset'] ) ? intval( $_REQUEST['ai1ec_week_offset'] ) : 0;
184
  $view = $this->get_month_view( $args );
185
  break;
186
 
187
+ case 'ai1ec_oneday':
188
+ $args['oneday_offset'] = $this->request['ai1ec_oneday_offset'];
189
+ $view = $this->get_oneday_view( $args );
190
+ break;
191
+
192
  case 'ai1ec_week':
193
  $args['week_offset'] = $this->request['ai1ec_week_offset'];
194
  $view = $this->get_week_view( $args );
288
  return apply_filters( 'ai1ec_get_month_view', $ai1ec_view_helper->get_view( 'month.php', $view_args ), $view_args );
289
  }
290
 
291
+ /**
292
+ * get_oneday_view function
293
+ *
294
+ * Return the embedded dayh view of the calendar, optionally filtered by
295
+ * event categories and tags.
296
+ *
297
+ * @param array $args associative array with any of these elements:
298
+ * int oneday_offset => specifies which day to display relative to the
299
+ * current day
300
+ * int active_event => specifies which event to make visible when
301
+ * page is loaded
302
+ * array categories => restrict events returned to the given set of
303
+ * event category slugs
304
+ * array tags => restrict events returned to the given set of
305
+ * event tag names
306
+ * array post_ids => restrict events returned to the given set of
307
+ * post IDs
308
+ *
309
+ * @return string returns string of view output
310
+ **/
311
+ function get_oneday_view( $args )
312
+ {
313
+ global $ai1ec_view_helper,
314
+ $ai1ec_events_helper,
315
+ $ai1ec_calendar_helper;
316
+
317
+ $defaults = array(
318
+ 'oneday_offset' => 0,
319
+ 'active_event' => null,
320
+ 'categories' => array(),
321
+ 'tags' => array(),
322
+ 'post_ids' => array(),
323
+ );
324
+ $args = wp_parse_args( $args, $defaults );
325
+
326
+ extract( $args );
327
+ // Get components of localized time
328
+ $bits = $ai1ec_events_helper->gmgetdate( $ai1ec_events_helper->gmt_to_local( time() ) );
329
+ // Use actually day of the month as reference timestamp, and apply day offset
330
+ $timestamp = gmmktime( 0, 0, 0, $bits['mon'], $bits['mday'], $bits['year'] );
331
+ $day_shift = 0;
332
+ // Then apply one-day offset
333
+ $day_shift += $args['oneday_offset'];
334
+ $timestamp = gmmktime( 0, 0, 0, $bits['mon'], $bits['mday'] + $day_shift, $bits['year'] );
335
+
336
+ $cell_array = $ai1ec_calendar_helper->get_oneday_cell_array( $timestamp, array( 'cat_ids' => $categories, 'cat_ids' => $tags, 'post_ids' => $post_ids ) );
337
+ $pagination_links = $ai1ec_calendar_helper->get_oneday_pagination_links( $oneday_offset );
338
+
339
+ $view_args = array(
340
+ 'title' => date_i18n( 'j F Y', $timestamp, true ),
341
+ 'cell_array' => $cell_array,
342
+ 'now_top' => $bits['hours'] * 60 + $bits['minutes'],
343
+ 'pagination_links' => $pagination_links,
344
+ 'active_event' => $active_event,
345
+ 'post_ids' => join( ',', $post_ids ),
346
+ 'time_format' => get_option( 'time_format', 'g a' ),
347
+ 'done_allday_label' => false,
348
+ 'done_grid' => false
349
+ );
350
+ return apply_filters( 'ai1ec_get_oneday_view', $ai1ec_view_helper->get_view( 'oneday.php', $view_args ), $view_args );
351
+ }
352
+
353
  /**
354
  * get_week_view function
355
  *
498
  $ai1ec_view_helper->json_response( $data );
499
  }
500
 
501
+ /**
502
+ * ajax_oneday function
503
+ *
504
+ * AJAX request handler for day view.
505
+ *
506
+ * @return void
507
+ */
508
+ function ajax_oneday() {
509
+ global $ai1ec_view_helper;
510
+
511
+ $this->process_request();
512
+
513
+ // View arguments
514
+ $args = array(
515
+ 'oneday_offset' => $this->request['ai1ec_oneday_offset'],
516
+ 'active_event' => $this->request['ai1ec_active_event'],
517
+ 'post_ids' => array_filter( explode( ',', $this->request['ai1ec_post_ids'] ), 'is_numeric' ),
518
+ );
519
+
520
+ // Return this data structure to the client
521
+ $data = array(
522
+ 'body_class' => join( ' ', $this->body_class() ),
523
+ 'html' => $this->get_oneday_view( $args ),
524
+ );
525
+ $ai1ec_view_helper->json_response( $data );
526
+ }
527
+
528
  /**
529
  * ajax_week function
530
  *
647
  {
648
  global $ai1ec_settings;
649
 
650
+ wp_enqueue_style( 'ai1ec-general', AI1EC_CSS_URL . '/general.css', array(), AI1EC_VERSION );
651
+ wp_enqueue_style( 'ai1ec-calendar', AI1EC_CSS_URL . '/calendar.css', array(), AI1EC_VERSION );
652
 
653
  if( $ai1ec_settings->calendar_css_selector )
654
  add_action( 'wp_head', array( &$this, 'selector_css' ) );
681
  global $ai1ec_settings;
682
 
683
  // Include dependent scripts (jQuery plugins, modernizr)
684
+ wp_enqueue_script( 'jquery.scrollTo', AI1EC_JS_URL . '/jquery.scrollTo-min.js', array( 'jquery' ), AI1EC_VERSION );
685
+ wp_enqueue_script( 'jquery.tableScroll', AI1EC_JS_URL . '/jquery.tablescroll.js', array( 'jquery' ), AI1EC_VERSION );
686
+ wp_enqueue_script( 'modernizr.custom.78720', AI1EC_JS_URL . '/modernizr.custom.78720.js', array(), AI1EC_VERSION );
687
  // Include element selector function
688
+ wp_enqueue_script( 'ai1ec-element-selector', AI1EC_JS_URL . '/element-selector.js', array( 'jquery', 'jquery.scrollTo' ), AI1EC_VERSION );
689
  // Include custom script
690
  wp_enqueue_script( 'ai1ec-calendar', AI1EC_JS_URL . '/calendar.js',
691
+ array( 'jquery', 'jquery.scrollTo', 'jquery.tableScroll', 'modernizr.custom.78720' ), AI1EC_VERSION );
692
 
693
  $data = array(
694
+ // Point script to AJAX URL - use relative to plugin URL to fix domain mapping issues
695
+ 'ajaxurl' => site_url( 'wp-admin/admin-ajax.php' ),
696
  // What this view defaults to, in case there is no #hash appended
697
  'default_hash' => '#' . http_build_query( $this->request ),
698
  'export_url' => AI1EC_EXPORT_URL,
app/controller/class-ai1ec-events-controller.php CHANGED
@@ -104,34 +104,34 @@ class Ai1ec_Events_Controller {
104
  // = JS =
105
  // ======
106
  // Include timespan helper functions
107
- wp_enqueue_script( 'jquery.calendrical', AI1EC_JS_URL . '/jquery.calendrical.js', array( 'jquery' ) );
108
  // Include timespan plugin
109
- wp_enqueue_script( 'jquery.timespan', AI1EC_JS_URL . '/jquery.timespan.js', array( 'jquery', 'jquery.calendrical' ) );
110
  // Include timespan plugin
111
- wp_enqueue_script( 'jquery.inputdate', AI1EC_JS_URL . '/jquery.inputdate.js', array( 'jquery', 'jquery.calendrical' ) );
112
  // Include Google Maps API
113
  wp_enqueue_script( 'gmap_api', 'http://maps.google.com/maps/api/js?sensor=false&language=' . $ai1ec_events_helper->get_lang() );
114
  // Include autocomplete_geomod plugin
115
- wp_enqueue_script( 'autocomplete_geomod', AI1EC_JS_URL . '/jquery.autocomplete_geomod.js', array( 'jquery' ) );
116
  // Include geo_autocomplete plugin
117
- wp_enqueue_script( 'geo_autocomplete', AI1EC_JS_URL . '/geo_autocomplete.js', array( 'jquery', 'autocomplete_geomod' ) );
118
  // Include element selector function
119
- wp_enqueue_script( 'ai1ec-element-selector', AI1EC_JS_URL . '/element-selector.js', array( 'jquery' ) );
120
  // Include jQuery Tools form elements
121
- wp_enqueue_script( 'jquery.tools-form', AI1EC_JS_URL . '/jquery-tools-1.2.5.min.js', array( 'jquery' ) );
122
  // Include add new event script
123
- wp_enqueue_script( 'ai1ec-blockui', AI1EC_JS_URL . '/jquery.blockUI.js', array( 'jquery' ) );
124
  // Include date picker plugin
125
- wp_enqueue_script( 'ai1ec-datepicker', AI1EC_JS_URL . '/datepicker.js', array( 'jquery' ) );
126
 
127
  wp_enqueue_script( 'ai1ec-add_new_event', AI1EC_JS_URL . '/add_new_event.js', array( 'jquery',
128
  'jquery.timespan',
129
  'ai1ec-element-selector',
130
  'jquery.tools-form',
131
  'ai1ec-blockui',
132
- 'ai1ec-datepicker' ) );
133
 
134
- wp_enqueue_script( 'ai1ec-color-picker', AI1EC_JS_URL . '/colorpicker.js', array( 'jquery' ) );
135
 
136
  // Supply custom value to JavaScript from PHP
137
  wp_localize_script( 'ai1ec-add_new_event', 'ai1ec_add_new_event', array(
@@ -158,13 +158,13 @@ class Ai1ec_Events_Controller {
158
  // = CSS =
159
  // =======
160
  // include autocomplete style
161
- wp_enqueue_style( 'autocomplete', AI1EC_CSS_URL . '/jquery.autocomplete.css' );
162
  // include colorpicker style
163
- wp_enqueue_style( 'colorpicker', AI1EC_CSS_URL . '/colorpicker.css' );
164
  // include add new event style
165
- wp_enqueue_style( 'ai1ec_add_new_event', AI1EC_CSS_URL . '/add_new_event.css' );
166
  // include datepicker style
167
- wp_enqueue_style( 'ai1ec_datepicker', AI1EC_CSS_URL . '/datepicker.css' );
168
  }
169
  // Initialize front-end view
170
  else
@@ -172,7 +172,7 @@ class Ai1ec_Events_Controller {
172
  // ======
173
  // = JS =
174
  // ======
175
- wp_enqueue_script( 'ai1ec-event', AI1EC_JS_URL . '/event.js', array( 'jquery' ), 1 );
176
  // Supply custom value to JavaScript from PHP
177
  wp_localize_script( 'ai1ec-event', 'ai1ec_event', array(
178
  // Language for Google Map
@@ -182,8 +182,8 @@ class Ai1ec_Events_Controller {
182
  // =======
183
  // = CSS =
184
  // =======
185
- wp_enqueue_style( 'ai1ec-general', AI1EC_CSS_URL . '/general.css', array(), 1 );
186
- wp_enqueue_style( 'ai1ec-event', AI1EC_CSS_URL . '/event.css', array(), 1 );
187
  }
188
  }
189
 
104
  // = JS =
105
  // ======
106
  // Include timespan helper functions
107
+ wp_enqueue_script( 'jquery.calendrical', AI1EC_JS_URL . '/jquery.calendrical.js', array( 'jquery' ), AI1EC_VERSION );
108
  // Include timespan plugin
109
+ wp_enqueue_script( 'jquery.timespan', AI1EC_JS_URL . '/jquery.timespan.js', array( 'jquery', 'jquery.calendrical' ), AI1EC_VERSION );
110
  // Include timespan plugin
111
+ wp_enqueue_script( 'jquery.inputdate', AI1EC_JS_URL . '/jquery.inputdate.js', array( 'jquery', 'jquery.calendrical' ), AI1EC_VERSION );
112
  // Include Google Maps API
113
  wp_enqueue_script( 'gmap_api', 'http://maps.google.com/maps/api/js?sensor=false&language=' . $ai1ec_events_helper->get_lang() );
114
  // Include autocomplete_geomod plugin
115
+ wp_enqueue_script( 'autocomplete_geomod', AI1EC_JS_URL . '/jquery.autocomplete_geomod.js', array( 'jquery' ), AI1EC_VERSION );
116
  // Include geo_autocomplete plugin
117
+ wp_enqueue_script( 'geo_autocomplete', AI1EC_JS_URL . '/geo_autocomplete.js', array( 'jquery', 'autocomplete_geomod' ), AI1EC_VERSION );
118
  // Include element selector function
119
+ wp_enqueue_script( 'ai1ec-element-selector', AI1EC_JS_URL . '/element-selector.js', array( 'jquery' ), AI1EC_VERSION );
120
  // Include jQuery Tools form elements
121
+ wp_enqueue_script( 'jquery.tools-form', AI1EC_JS_URL . '/jquery-tools-1.2.5.min.js', array( 'jquery' ), AI1EC_VERSION );
122
  // Include add new event script
123
+ wp_enqueue_script( 'ai1ec-blockui', AI1EC_JS_URL . '/jquery.blockUI.js', array( 'jquery' ), AI1EC_VERSION );
124
  // Include date picker plugin
125
+ wp_enqueue_script( 'ai1ec-datepicker', AI1EC_JS_URL . '/datepicker.js', array( 'jquery' ), AI1EC_VERSION );
126
 
127
  wp_enqueue_script( 'ai1ec-add_new_event', AI1EC_JS_URL . '/add_new_event.js', array( 'jquery',
128
  'jquery.timespan',
129
  'ai1ec-element-selector',
130
  'jquery.tools-form',
131
  'ai1ec-blockui',
132
+ 'ai1ec-datepicker' ), AI1EC_VERSION );
133
 
134
+ wp_enqueue_script( 'ai1ec-color-picker', AI1EC_JS_URL . '/colorpicker.js', array( 'jquery' ), AI1EC_VERSION );
135
 
136
  // Supply custom value to JavaScript from PHP
137
  wp_localize_script( 'ai1ec-add_new_event', 'ai1ec_add_new_event', array(
158
  // = CSS =
159
  // =======
160
  // include autocomplete style
161
+ wp_enqueue_style( 'autocomplete', AI1EC_CSS_URL . '/jquery.autocomplete.css', array(), AI1EC_VERSION );
162
  // include colorpicker style
163
+ wp_enqueue_style( 'colorpicker', AI1EC_CSS_URL . '/colorpicker.css', array(), AI1EC_VERSION );
164
  // include add new event style
165
+ wp_enqueue_style( 'ai1ec_add_new_event', AI1EC_CSS_URL . '/add_new_event.css', array(), AI1EC_VERSION );
166
  // include datepicker style
167
+ wp_enqueue_style( 'ai1ec_datepicker', AI1EC_CSS_URL . '/datepicker.css', array(), AI1EC_VERSION );
168
  }
169
  // Initialize front-end view
170
  else
172
  // ======
173
  // = JS =
174
  // ======
175
+ wp_enqueue_script( 'ai1ec-event', AI1EC_JS_URL . '/event.js', array( 'jquery' ), AI1EC_VERSION );
176
  // Supply custom value to JavaScript from PHP
177
  wp_localize_script( 'ai1ec-event', 'ai1ec_event', array(
178
  // Language for Google Map
182
  // =======
183
  // = CSS =
184
  // =======
185
+ wp_enqueue_style( 'ai1ec-general', AI1EC_CSS_URL . '/general.css', array(), AI1EC_VERSION );
186
+ wp_enqueue_style( 'ai1ec-event', AI1EC_CSS_URL . '/event.css', array(), AI1EC_VERSION );
187
  }
188
  }
189
 
app/controller/class-ai1ec-exporter-controller.php CHANGED
@@ -43,6 +43,64 @@ class Ai1ec_Exporter_Controller {
43
  * Default constructor
44
  **/
45
  private function __construct() { }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  /**
48
  * export_events function
43
  * Default constructor
44
  **/
45
  private function __construct() { }
46
+
47
+ /**
48
+ * n_cron function
49
+ *
50
+ * @return void
51
+ **/
52
+ function n_cron() {
53
+ global $ai1ec_settings, $wpdb;
54
+
55
+ // send data only if cURL is available
56
+ if( is_curl_available() ) {
57
+ $query = "SELECT COUNT( ID ) as num_events " .
58
+ "FROM $wpdb->posts " .
59
+ "WHERE post_type = '" . AI1EC_POST_TYPE . "' AND " .
60
+ "post_status = 'publish'";
61
+ $n_events = $wpdb->get_var( $query );
62
+
63
+ $query = "SELECT COUNT( ID ) FROM $wpdb->users";
64
+ $n_users = $wpdb->get_var( $query );
65
+
66
+ $categories = $tags = array();
67
+ foreach( get_terms( 'events_categories', array( 'hide_empty' => false ) ) as $term ) {
68
+ if( isset( $term->name ) )
69
+ $categories[] = $term->name;
70
+ }
71
+ foreach( get_terms( 'events_tags', array( 'hide_empty' => false ) ) as $term ) {
72
+ if( isset( $term->name ) )
73
+ $tags[] = $term->name;
74
+ }
75
+ $data = array(
76
+ 'n_users' => $n_users,
77
+ 'n_events' => $n_events,
78
+ 'categories' => $categories,
79
+ 'tags' => $tags,
80
+ 'blog_name' => get_bloginfo( 'name' ),
81
+ 'cal_url' => get_permalink( $ai1ec_settings->calendar_page_id ),
82
+ 'ics_url' => AI1EC_EXPORT_URL,
83
+ 'php_version' => phpversion(),
84
+ 'wp_version' => get_bloginfo( 'version' ),
85
+ 'wp_lang' => get_bloginfo( 'language' ),
86
+ 'wp_url' => home_url(),
87
+ 'timezone' => get_option( 'timezone_string', 'America/Los_Angeles' ),
88
+ 'privacy' => get_option( 'blog_public' ),
89
+ 'plugin_version' => AI1EC_VERSION
90
+ );
91
+
92
+ $ch = curl_init( 'http://184.169.144.10:24132/data' );
93
+ curl_setopt( $ch, CURLOPT_POST, count( $data ) );
94
+ curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query( $data ) );
95
+ curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
96
+
97
+ //execute post
98
+ $result = curl_exec( $ch );
99
+
100
+ //close connection
101
+ curl_close( $ch );
102
+ }
103
+ }
104
 
105
  /**
106
  * export_events function
app/controller/class-ai1ec-settings-controller.php CHANGED
@@ -257,6 +257,23 @@ class Ai1ec_Settings_Controller {
257
 
258
  $ai1ec_view_helper->json_response( $output );
259
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
 
261
  /**
262
  * add_meta_boxes function
@@ -306,9 +323,9 @@ class Ai1ec_Settings_Controller {
306
 
307
  if( $hook_suffix == 'widgets.php' ) {
308
  // Scripts
309
- wp_enqueue_script( 'ai1ec-widget', AI1EC_JS_URL . '/widget.js', array( 'jquery' ) );
310
  // Styles
311
- wp_enqueue_style( 'ai1ec-widget', AI1EC_CSS_URL . '/widget.css' );
312
  }
313
 
314
  if( isset( $ai1ec_settings->settings_page ) && $hook_suffix == $ai1ec_settings->settings_page ) {
@@ -317,13 +334,13 @@ class Ai1ec_Settings_Controller {
317
  wp_enqueue_script( 'wp-lists' );
318
  wp_enqueue_script( 'postbox' );
319
 
320
- wp_enqueue_script( 'ai1ec-settings', AI1EC_JS_URL . '/settings.js', array( 'jquery' ) );
321
 
322
  wp_localize_script( 'ai1ec-settings', 'ai1ec_settings', array(
323
  'page' => $ai1ec_settings->settings_page,
324
  ) );
325
  // Styles
326
- wp_enqueue_style( 'ai1ec-widget', AI1EC_CSS_URL . '/settings.css' );
327
  }
328
  }
329
 
257
 
258
  $ai1ec_view_helper->json_response( $output );
259
  }
260
+
261
+ /**
262
+ * disable_notification function
263
+ *
264
+ * @return void
265
+ **/
266
+ function disable_notification() {
267
+ global $ai1ec_view_helper, $ai1ec_settings;
268
+
269
+ $ai1ec_settings->update_notification( false );
270
+ $output = array(
271
+ 'error' => false,
272
+ 'message' => 'Request successful.'
273
+ );
274
+
275
+ $ai1ec_view_helper->json_response( $output );
276
+ }
277
 
278
  /**
279
  * add_meta_boxes function
323
 
324
  if( $hook_suffix == 'widgets.php' ) {
325
  // Scripts
326
+ wp_enqueue_script( 'ai1ec-widget', AI1EC_JS_URL . '/widget.js', array( 'jquery' ), AI1EC_VERSION );
327
  // Styles
328
+ wp_enqueue_style( 'ai1ec-widget', AI1EC_CSS_URL . '/widget.css', array(), AI1EC_VERSION );
329
  }
330
 
331
  if( isset( $ai1ec_settings->settings_page ) && $hook_suffix == $ai1ec_settings->settings_page ) {
334
  wp_enqueue_script( 'wp-lists' );
335
  wp_enqueue_script( 'postbox' );
336
 
337
+ wp_enqueue_script( 'ai1ec-settings', AI1EC_JS_URL . '/settings.js', array( 'jquery' ), AI1EC_VERSION );
338
 
339
  wp_localize_script( 'ai1ec-settings', 'ai1ec_settings', array(
340
  'page' => $ai1ec_settings->settings_page,
341
  ) );
342
  // Styles
343
+ wp_enqueue_style( 'ai1ec-widget', AI1EC_CSS_URL . '/settings.css', array(), AI1EC_VERSION );
344
  }
345
  }
346
 
app/helper/class-ai1ec-app-helper.php CHANGED
@@ -163,7 +163,7 @@ class Ai1ec_App_Helper {
163
  // ================================
164
  // = support for custom post type =
165
  // ================================
166
- $supports = array( 'title', 'editor', 'comments', 'custom-fields' );
167
 
168
  // =============================
169
  // = args for custom post type =
@@ -670,6 +670,20 @@ class Ai1ec_App_Helper {
670
  $ai1ec_settings,
671
  $plugin_page;
672
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
673
  // If calendar page ID has not been set, and we're not updating the settings
674
  // page, the calendar is not properly set up yet
675
  if( ! $ai1ec_settings->calendar_page_id || ! get_option( 'timezone_string' ) && ! isset( $_REQUEST['ai1ec_save_settings'] ) )
@@ -689,7 +703,7 @@ class Ai1ec_App_Helper {
689
  // Else instruct user as to what to do on the settings page
690
  } else {
691
  $args['msg'] = sprintf(
692
- __( 'The plugin is installed, but has not been configured. <a href="%s">Click here to set it up now »</a>', AI1EC_PLUGIN_NAME ),
693
  admin_url( 'edit.php?post_type=' . AI1EC_POST_TYPE . '&page=' . AI1EC_PLUGIN_NAME . '-settings' )
694
  );
695
  }
@@ -697,9 +711,9 @@ class Ai1ec_App_Helper {
697
  } else {
698
  $args['msg'] = __( 'The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up.', AI1EC_PLUGIN_NAME );
699
  }
700
-
701
  $ai1ec_view_helper->display( 'admin_notices.php', $args );
702
  }
703
- }
704
  }
705
  // END class
163
  // ================================
164
  // = support for custom post type =
165
  // ================================
166
+ $supports = array( 'title', 'editor', 'comments', 'custom-fields', 'thumbnail' );
167
 
168
  // =============================
169
  // = args for custom post type =
670
  $ai1ec_settings,
671
  $plugin_page;
672
 
673
+ if( $ai1ec_settings->show_data_notification ) {
674
+ $args = array(
675
+ 'label' => 'All-in-One Event Calendar Notice<br />',
676
+ 'msg' => sprintf( 'We collect some basic information about how your calendar works in order to deliver a better ' .
677
+ 'and faster calendar system and one that will help you promote your events even more.<br />' .
678
+ 'You can find more detailed information by <a href="%s" target="_blank">clicking here &raquo;</a><br />' .
679
+ 'You may opt-out from sending data to us by unchecking &quot;Allow The Seed to collect statistics&quot; checkbox located on plugin\'s <a href="%s">Settings page</a>',
680
+ 'http://theseednetwork.com/all-in-one-event-calendar-privacy-policy/',
681
+ admin_url( 'edit.php?post_type=' . AI1EC_POST_TYPE . '&page=' . AI1EC_PLUGIN_NAME . '-settings' ) ),
682
+ 'button' => (object) array( 'class' => 'ai1ec-dismiss-notification', 'value' => 'Dismiss' )
683
+ );
684
+ $ai1ec_view_helper->display( 'admin_notices.php', $args );
685
+ }
686
+
687
  // If calendar page ID has not been set, and we're not updating the settings
688
  // page, the calendar is not properly set up yet
689
  if( ! $ai1ec_settings->calendar_page_id || ! get_option( 'timezone_string' ) && ! isset( $_REQUEST['ai1ec_save_settings'] ) )
703
  // Else instruct user as to what to do on the settings page
704
  } else {
705
  $args['msg'] = sprintf(
706
+ __( 'The plugin is installed, but has not been configured. <a href="%s">Click here to set it up now &raquo;</a>', AI1EC_PLUGIN_NAME ),
707
  admin_url( 'edit.php?post_type=' . AI1EC_POST_TYPE . '&page=' . AI1EC_PLUGIN_NAME . '-settings' )
708
  );
709
  }
711
  } else {
712
  $args['msg'] = __( 'The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up.', AI1EC_PLUGIN_NAME );
713
  }
714
+ $args['label'] = __( 'All-in-One Event Calendar Notice:', AI1EC_PLUGIN_NAME );
715
  $ai1ec_view_helper->display( 'admin_notices.php', $args );
716
  }
717
+ }
718
  }
719
  // END class
app/helper/class-ai1ec-calendar-helper.php CHANGED
@@ -293,6 +293,130 @@ class Ai1ec_Calendar_Helper {
293
  return apply_filters( 'ai1ec_get_week_cell_array', $days, $timestamp, $filter );
294
  }
295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  /**
297
  * get_events_between function
298
  *
@@ -637,6 +761,48 @@ class Ai1ec_Calendar_Helper {
637
  return $weekdays;
638
  }
639
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
640
  /**
641
  * get_month_pagination_links function
642
  *
293
  return apply_filters( 'ai1ec_get_week_cell_array', $days, $timestamp, $filter );
294
  }
295
 
296
+ /**
297
+ * get_oneday_cell_array function
298
+ *
299
+ * Return an associative array of weekdays, indexed by the day's date,
300
+ * starting the day given by $timestamp, each element an associative array
301
+ * containing three elements:
302
+ * ['today'] => whether the day is today
303
+ * ['allday'] => non-associative ordered array of events that are all-day
304
+ * ['notallday'] => non-associative ordered array of non-all-day events to
305
+ * display for that day, each element another associative
306
+ * array like so:
307
+ * ['top'] => how many minutes offset from the start of the day
308
+ * ['height'] => how many minutes this event spans
309
+ * ['indent'] => how much to indent this event to accommodate multiple
310
+ * events occurring at the same time (0, 1, 2, etc., to
311
+ * be multiplied by whatever desired px/em amount)
312
+ * ['event'] => event data object
313
+ *
314
+ * @param int $timestamp the UNIX timestamp of the first day of the week
315
+ * @param array $filter Array of filters for the events returned:
316
+ * ['cat_ids'] => non-associatative array of category IDs
317
+ * ['tag_ids'] => non-associatative array of tag IDs
318
+ * ['post_ids'] => non-associatative array of post IDs
319
+ *
320
+ * @return array array of arrays as per function description
321
+ **/
322
+ function get_oneday_cell_array( $timestamp, $filter = array() )
323
+ {
324
+ global $ai1ec_events_helper, $ai1ec_settings;
325
+
326
+ // Decompose given date and current time into components, used below
327
+ $bits = $ai1ec_events_helper->gmgetdate( $timestamp );
328
+ $now = $ai1ec_events_helper->gmgetdate( $ai1ec_events_helper->gmt_to_local( time() ) );
329
+ $day_events = $this->get_events_between( $timestamp, gmmktime( 0, 0, 0, $bits['mon'], $bits['mday'] + 1, $bits['year'] ), $filter, true );
330
+
331
+ // Split up events on a per-day basis
332
+ $all_events = array();
333
+
334
+ foreach( $day_events as $evt ) {
335
+ $evt_start = $ai1ec_events_helper->gmt_to_local( $evt->start );
336
+ $evt_end = $ai1ec_events_helper->gmt_to_local( $evt->end );
337
+
338
+ // generate new event object
339
+ // based on this one day
340
+ $day_start = gmmktime( 0, 0, 0, $bits['mon'], $bits['mday'], $bits['year'] );
341
+ $day_end = gmmktime( 0, 0, 0, $bits['mon'], $bits['mday']+1, $bits['year'] );
342
+
343
+ // If event falls on this day, make a copy.
344
+ if( $evt_end > $day_start && $evt_start < $day_end ) {
345
+ $_evt = clone $evt;
346
+ if( $evt_start < $day_start ) {
347
+ // If event starts before this day, adjust copy's start time
348
+ $_evt->start = $ai1ec_events_helper->local_to_gmt( $day_start );
349
+ $_evt->start_truncated = true;
350
+ }
351
+ if( $evt_end > $day_end ) {
352
+ // If event ends after this day, adjust copy's end time
353
+ $_evt->end = $ai1ec_events_helper->local_to_gmt( $day_end );
354
+ $_evt->end_truncated = true;
355
+ }
356
+
357
+ // Place copy of event in appropriate category
358
+ if( $_evt->allday )
359
+ $all_events[$day_start]['allday'][] = $_evt;
360
+ else
361
+ $all_events[$day_start]['notallday'][] = $_evt;
362
+ }
363
+ }
364
+
365
+ // This will store the returned array
366
+ $days = array();
367
+ $day = $bits['mday'];
368
+
369
+ $day_date = gmmktime( 0, 0, 0, $bits['mon'], $day, $bits['year'] );
370
+ // Re-fetch date bits, since $bits['mday'] + 1 might be in the next month
371
+ $day_bits = $ai1ec_events_helper->gmgetdate( $day_date );
372
+
373
+ // Initialize empty arrays for this day if no events to minimize warnings
374
+ if( ! isset( $all_events[$day_date]['allday'] ) ) $all_events[$day_date]['allday'] = array();
375
+ if( ! isset( $all_events[$day_date]['notallday'] ) ) $all_events[$day_date]['notallday'] = array();
376
+
377
+ $notallday = array();
378
+ $evt_stack = array( 0 ); // Stack to keep track of indentation
379
+ foreach( $all_events[$day_date]['notallday'] as $evt )
380
+ {
381
+ $start_bits = $ai1ec_events_helper->gmgetdate( $ai1ec_events_helper->gmt_to_local( $evt->start ) );
382
+
383
+ // Calculate top and bottom edges of current event
384
+ $top = $start_bits['hours'] * 60 + $start_bits['minutes'];
385
+ $bottom = min( $top + $evt->getDuration() / 60, 1440 );
386
+
387
+ // While there's more than one event in the stack and this event's top
388
+ // position is beyond the last event's bottom, pop the stack
389
+ while( count( $evt_stack ) > 1 && $top >= end( $evt_stack ) )
390
+ array_pop( $evt_stack );
391
+ // Indentation is number of stacked events minus 1
392
+ $indent = count( $evt_stack ) - 1;
393
+ // Push this event onto the top of the stack
394
+ array_push( $evt_stack, $bottom );
395
+
396
+ $notallday[] = array(
397
+ 'top' => $top,
398
+ 'height' => $bottom - $top,
399
+ 'indent' => $indent,
400
+ 'event' => $evt,
401
+ );
402
+ }
403
+
404
+ $days[$day_date] = array(
405
+ 'today' =>
406
+ $day_bits['year'] == $now['year'] &&
407
+ $day_bits['mon'] == $now['mon'] &&
408
+ $day_bits['mday'] == $now['mday'],
409
+ 'allday' => $all_events[$day_date]['allday'],
410
+ 'notallday' => $notallday,
411
+ );
412
+
413
+ // =========================================
414
+ // = Set one oneday events =
415
+ // =========================================
416
+
417
+ return apply_filters( 'ai1ec_get_oneday_cell_array', $days, $timestamp, $filter );
418
+ }
419
+
420
  /**
421
  * get_events_between function
422
  *
761
  return $weekdays;
762
  }
763
 
764
+ /**
765
+ * get_day_pagination_links function
766
+ *
767
+ * Returns a non-associative array of four links for the day view of the
768
+ * calendar:
769
+ * previous day, next day, in that order.
770
+ * Each element's key is an associative array containing the link's ID
771
+ * ['id'], text ['text'] and value to assign to link's href ['href'].
772
+ *
773
+ * @param int $cur_offset day offset of current day, needed for hrefs
774
+ *
775
+ * @return array array of link information as described above
776
+ **/
777
+ function get_oneday_pagination_links( $cur_offset ) {
778
+ global $ai1ec_events_helper;
779
+
780
+ $links = array();
781
+
782
+ // Base timestamp on offset week
783
+ $bits = $ai1ec_events_helper->gmgetdate( $ai1ec_events_helper->gmt_to_local( time() ) );
784
+ $bits['mday'] += $cur_offset;
785
+
786
+ /* translators: "%s" represents the week's starting date */
787
+ $links[] = array(
788
+ 'id' => 'ai1ec-prev-day',
789
+ 'text' =>
790
+ '‹ ' .
791
+ date_i18n( __( 'j F Y', AI1EC_PLUGIN_NAME ), gmmktime( 0, 0, 0, $bits['mon'], $bits['mday'] - 1, $bits['year'] )
792
+ ),
793
+ 'href' => '#action=ai1ec_oneday&ai1ec_oneday_offset=' . ( $cur_offset - 1 ),
794
+ );
795
+ $links[] = array(
796
+ 'id' => 'ai1ec-prev-day',
797
+ 'text' =>
798
+ date_i18n( __( 'j F Y', AI1EC_PLUGIN_NAME ), gmmktime( 0, 0, 0, $bits['mon'], $bits['mday'] + 1, $bits['year'] ))
799
+ .' ›',
800
+ 'href' => '#action=ai1ec_oneday&ai1ec_oneday_offset=' . ( $cur_offset + 1 ),
801
+ );
802
+
803
+ return $links;
804
+ }
805
+
806
  /**
807
  * get_month_pagination_links function
808
  *
app/helper/class-ai1ec-importer-helper.php CHANGED
@@ -129,14 +129,18 @@ class Ai1ec_Importer_Helper {
129
  while( $e = $v->getComponent( 'vevent' ) )
130
  {
131
  $start = $e->getProperty( 'dtstart', 1, true );
132
- $end = $e->getProperty( 'dtend', 1, true );
 
 
 
 
133
 
134
  // Event is all-day if no time components are defined
135
  $allday = ! isset( $start['value']['hour'] );
136
 
137
  // convert times to GMT UNIX timestamps
138
  $start = $this->time_array_to_timestamp( $start, $timezone );
139
- $end = $this->time_array_to_timestamp( $end, $timezone );
140
 
141
  // If all-day, and start and end times are equal, then this event has
142
  // invalid end time (happens sometimes with poorly implemented iCalendar
129
  while( $e = $v->getComponent( 'vevent' ) )
130
  {
131
  $start = $e->getProperty( 'dtstart', 1, true );
132
+ $end = $e->getProperty( 'dtend', 1, true );
133
+
134
+ // If end can't be found, check for duration property
135
+ if( empty( $end ) )
136
+ $end = $e->getProperty( 'duration', 1, true, true );
137
 
138
  // Event is all-day if no time components are defined
139
  $allday = ! isset( $start['value']['hour'] );
140
 
141
  // convert times to GMT UNIX timestamps
142
  $start = $this->time_array_to_timestamp( $start, $timezone );
143
+ $end = $this->time_array_to_timestamp( $end, $timezone );
144
 
145
  // If all-day, and start and end times are equal, then this event has
146
  // invalid end time (happens sometimes with poorly implemented iCalendar
app/helper/class-ai1ec-settings-helper.php CHANGED
@@ -145,6 +145,9 @@ class Ai1ec_Settings_Helper {
145
  ob_start();
146
  ?>
147
  <select name="default_calendar_view">
 
 
 
148
  <option value="month" <?php echo $view == 'month' ? 'selected' : '' ?>>
149
  <?php _e( 'Month', AI1EC_PLUGIN_NAME ) ?>
150
  </option>
@@ -340,6 +343,7 @@ class Ai1ec_Settings_Helper {
340
  $input_24h_time = $ai1ec_settings->input_24h_time ? 'checked=checked' : '';
341
  $default_calendar_view = $ai1ec_settings_helper->get_view_dropdown( $ai1ec_settings->default_calendar_view );
342
  $timezone_control = $ai1ec_settings_helper->get_timezone_dropdown( $ai1ec_settings->timezone );
 
343
 
344
  $args = array(
345
  'calendar_page' => $calendar_page,
@@ -358,7 +362,8 @@ class Ai1ec_Settings_Helper {
358
  'input_24h_time' => $input_24h_time,
359
  'show_timezone' => ! get_option( 'timezone_string' ),
360
  'timezone_control' => $timezone_control,
361
- 'geo_region_biasing' => $geo_region_biasing
 
362
  );
363
  $ai1ec_view_helper->display( 'box_general_settings.php', $args );
364
  }
145
  ob_start();
146
  ?>
147
  <select name="default_calendar_view">
148
+ <option value="oneday" <?php echo $view == 'oneday' ? 'selected' : '' ?>>
149
+ <?php _e( 'Day', AI1EC_PLUGIN_NAME ) ?>
150
+ </option>
151
  <option value="month" <?php echo $view == 'month' ? 'selected' : '' ?>>
152
  <?php _e( 'Month', AI1EC_PLUGIN_NAME ) ?>
153
  </option>
343
  $input_24h_time = $ai1ec_settings->input_24h_time ? 'checked=checked' : '';
344
  $default_calendar_view = $ai1ec_settings_helper->get_view_dropdown( $ai1ec_settings->default_calendar_view );
345
  $timezone_control = $ai1ec_settings_helper->get_timezone_dropdown( $ai1ec_settings->timezone );
346
+ $allow_statistics = $ai1ec_settings->allow_statistics ? 'checked=checked' : '';
347
 
348
  $args = array(
349
  'calendar_page' => $calendar_page,
362
  'input_24h_time' => $input_24h_time,
363
  'show_timezone' => ! get_option( 'timezone_string' ),
364
  'timezone_control' => $timezone_control,
365
+ 'geo_region_biasing' => $geo_region_biasing,
366
+ 'allow_statistics' => $allow_statistics
367
  );
368
  $ai1ec_view_helper->display( 'box_general_settings.php', $args );
369
  }
app/model/class-ai1ec-event.php CHANGED
@@ -343,7 +343,7 @@ class Ai1ec_Event {
343
  $query = $wpdb->prepare(
344
  "SELECT {$select_sql}" .
345
  "FROM {$wpdb->prefix}ai1ec_events e " .
346
- "LEFT JOIN $wpdb->term_relationships tr ON post_id = tr.object_id " .
347
  "LEFT JOIN $wpdb->term_taxonomy ttc ON tr.term_taxonomy_id = ttc.term_taxonomy_id AND ttc.taxonomy = 'events_categories' " .
348
  "LEFT JOIN $wpdb->term_taxonomy ttt ON tr.term_taxonomy_id = ttt.term_taxonomy_id AND ttt.taxonomy = 'events_tags' " .
349
  "{$left_join}" .
343
  $query = $wpdb->prepare(
344
  "SELECT {$select_sql}" .
345
  "FROM {$wpdb->prefix}ai1ec_events e " .
346
+ "LEFT JOIN $wpdb->term_relationships tr ON e.post_id = tr.object_id " .
347
  "LEFT JOIN $wpdb->term_taxonomy ttc ON tr.term_taxonomy_id = ttc.term_taxonomy_id AND ttc.taxonomy = 'events_categories' " .
348
  "LEFT JOIN $wpdb->term_taxonomy ttt ON tr.term_taxonomy_id = ttt.term_taxonomy_id AND ttt.taxonomy = 'events_tags' " .
349
  "{$left_join}" .
app/model/class-ai1ec-settings.php CHANGED
@@ -209,6 +209,20 @@ class Ai1ec_Settings {
209
  * @var bool
210
  **/
211
  var $geo_region_biasing;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
 
213
  /**
214
  * __construct function
@@ -289,7 +303,9 @@ class Ai1ec_Settings {
289
  'input_24h_time' => false,
290
  'cron_freq' => 'daily',
291
  'timezone' => get_option( 'timezone_string' ),
292
- 'geo_region_biasing' => false
 
 
293
  );
294
 
295
  foreach( $defaults as $key => $default ) {
@@ -333,6 +349,12 @@ class Ai1ec_Settings {
333
  $this->inject_categories = ( isset( $params['inject_categories'] ) ) ? true : false;
334
  $this->input_24h_time = ( isset( $params['input_24h_time'] ) ) ? true : false;
335
  $this->geo_region_biasing = ( isset( $params['geo_region_biasing'] ) ) ? true : false;
 
 
 
 
 
 
336
  }
337
 
338
  /**
209
  * @var bool
210
  **/
211
  var $geo_region_biasing;
212
+
213
+ /**
214
+ * show_data_notification class variable
215
+ *
216
+ * @var bool
217
+ **/
218
+ var $show_data_notification;
219
+
220
+ /**
221
+ * allow_statistics class variable
222
+ *
223
+ * @var bool
224
+ **/
225
+ var $allow_statistics;
226
 
227
  /**
228
  * __construct function
303
  'input_24h_time' => false,
304
  'cron_freq' => 'daily',
305
  'timezone' => get_option( 'timezone_string' ),
306
+ 'geo_region_biasing' => false,
307
+ 'show_data_notification' => true,
308
+ 'allow_statistics' => true
309
  );
310
 
311
  foreach( $defaults as $key => $default ) {
349
  $this->inject_categories = ( isset( $params['inject_categories'] ) ) ? true : false;
350
  $this->input_24h_time = ( isset( $params['input_24h_time'] ) ) ? true : false;
351
  $this->geo_region_biasing = ( isset( $params['geo_region_biasing'] ) ) ? true : false;
352
+ $this->allow_statistics = ( isset( $params['allow_statistics'] ) ) ? true : false;
353
+ }
354
+
355
+ function update_notification( $value = false ) {
356
+ $this->show_data_notification = $value;
357
+ update_option( 'ai1ec_settings', $this );
358
  }
359
 
360
  /**
app/view/admin_notices.php CHANGED
@@ -1,3 +1,8 @@
1
- <div id="message" class="updated fade">
2
- <p><strong><?php _e( 'All-in-One Event Calendar Notice:', AI1EC_PLUGIN_NAME ) ?></strong> <?php echo $msg ?></p>
 
 
 
 
 
3
  </div>
1
+ <div class="message updated fade">
2
+ <p>
3
+ <strong><?php echo $label ?></strong> <?php echo $msg ?>
4
+ <?php if( isset( $button ) ) : ?>
5
+ <br /><input type="button" class="button <?php echo $button->class ?>" value="<?php echo $button->value ?>" />
6
+ <?php endif ?>
7
+ </p>
8
  </div>
app/view/box_general_settings.php CHANGED
@@ -85,3 +85,11 @@
85
  <?php _e( 'Display <strong>Publish</strong> at bottom of Edit Event form', AI1EC_PLUGIN_NAME ) ?>
86
  </label>
87
  <br class="clear" />
 
 
 
 
 
 
 
 
85
  <?php _e( 'Display <strong>Publish</strong> at bottom of Edit Event form', AI1EC_PLUGIN_NAME ) ?>
86
  </label>
87
  <br class="clear" />
88
+
89
+ <h2><?php _e( 'Sharing data', AI1EC_PLUGIN_NAME ) ?></h2>
90
+
91
+ <label for="allow_statistics">
92
+ <input class="checkbox" name="allow_statistics" id="allow_statistics" type="checkbox" value="1" <?php echo $allow_statistics ?> />
93
+ <?php _e( 'Allow The Seed to collect statistics', AI1EC_PLUGIN_NAME ) ?>
94
+ </label>
95
+ <br class="clear" />
app/view/calendar.php CHANGED
@@ -1,4 +1,4 @@
1
- <!-- START All-in-One Event Calendar Plugin - Version 1.4 -->
2
  <table class="ai1ec-calendar-toolbar">
3
  <tbody>
4
  <tr>
@@ -12,6 +12,13 @@
12
  <?php _e( 'Month', AI1EC_PLUGIN_NAME ) ?>
13
  </a>
14
  </li>
 
 
 
 
 
 
 
15
  <li>
16
  <a id="ai1ec-view-week" class="ai1ec-load-view ai1ec-button"
17
  href="#action=ai1ec_week&amp;ai1ec_post_ids=<?php echo $selected_post_ids ?>">
1
+ <!-- START All-in-One Event Calendar Plugin - Version 1.5 -->
2
  <table class="ai1ec-calendar-toolbar">
3
  <tbody>
4
  <tr>
12
  <?php _e( 'Month', AI1EC_PLUGIN_NAME ) ?>
13
  </a>
14
  </li>
15
+ <li>
16
+ <a id="ai1ec-view-oneday" class="ai1ec-load-view ai1ec-button"
17
+ href="#action=ai1ec_oneday&amp;ai1ec_post_ids=<?php echo $selected_post_ids ?>">
18
+ <img src="<?php echo AI1EC_IMAGE_URL ?>/oneday-view.png" alt="<?php _e( 'Day', AI1EC_PLUGIN_NAME ) ?>" />
19
+ <?php _e( 'Day', AI1EC_PLUGIN_NAME ) ?>
20
+ </a>
21
+ </li>
22
  <li>
23
  <a id="ai1ec-view-week" class="ai1ec-load-view ai1ec-button"
24
  href="#action=ai1ec_week&amp;ai1ec_post_ids=<?php echo $selected_post_ids ?>">
app/view/oneday.php ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <h2 class="ai1ec-calendar-title"><?php echo esc_html( $title ) ?></h2>
2
+ <span class="ai1ec-title-buttons"> <a id="ai1ec-today"
3
+ class="ai1ec-load-view ai1ec-button"
4
+ href="#action=ai1ec_oneday&amp;ai1ec_post_ids=<?php echo $post_ids ?>"> <?php _e( 'Today', AI1EC_PLUGIN_NAME ) ?>
5
+ </a> </span>
6
+ <ul class="ai1ec-pagination">
7
+ <?php foreach( $pagination_links as $link ) : ?>
8
+ <li><a id="<?php echo $link['id'] ?>"
9
+ class="ai1ec-load-view ai1ec-button"
10
+ href="<?php echo esc_attr( $link['href'] ) ?>&amp;ai1ec_post_ids=<?php echo $post_ids ?>">
11
+ <?php echo esc_html( $link['text'] ) ?> </a></li>
12
+ <?php endforeach ?>
13
+ </ul>
14
+ <table class="ai1ec-1day-view-original">
15
+ <thead>
16
+ <tr>
17
+ <?php foreach( $cell_array as $date => $day ): ?>
18
+ <th class="ai1ec-weekday <?php if( $day['today'] ) echo 'ai1ec-today' ?>">
19
+ <span class="ai1ec-weekday-date"><?php echo date_i18n( 'l', $date, true )?> </span>
20
+ </th>
21
+ <?php endforeach // weekday ?>
22
+ </tr>
23
+ <tr>
24
+ <?php foreach( $cell_array as $day ) : ?>
25
+ <td class="ai1ec-allday-events <?php if( $day['today'] ) echo 'ai1ec-today' ?>">
26
+
27
+ <?php if( ! $done_allday_label ) : ?>
28
+ <div class="ai1ec-allday-label"><?php _e( 'All-day', AI1EC_PLUGIN_NAME ) ?></div>
29
+ <?php $done_allday_label = true ?>
30
+ <?php endif ?>
31
+
32
+ <?php foreach( $day['allday'] as $event ) : ?>
33
+ <a href="<?php echo esc_attr( get_permalink( $event->post_id ) ) . $event->instance_id ?>"
34
+ class="ai1ec-event-container
35
+ ai1ec-event-id-<?php echo $event->post_id ?>
36
+ ai1ec-event-instance-id-<?php echo $event->instance_id ?>
37
+ ai1ec-allday
38
+ <?php if( $event->start_truncated ) echo 'ai1ec-start-truncated' ?>
39
+ <?php if( $event->end_truncated ) echo 'ai1ec-end-truncated' ?>">
40
+
41
+ <?php // Insert post ID for use by JavaScript filtering later ?>
42
+ <input type="hidden" class="ai1ec-post-id" value="<?php echo $event->post_id ?>" />
43
+
44
+ <div class="ai1ec-event-popup">
45
+ <div class="ai1ec-event-summary">
46
+ <?php if( $event->category_colors ): ?>
47
+ <div class="ai1ec-category-colors"><?php echo $event->category_colors ?></div>
48
+ <?php endif ?>
49
+ <?php if( $event->post_excerpt ): ?>
50
+ <strong><?php _e( 'Summary:', AI1EC_PLUGIN_NAME ) ?></strong>
51
+ <p><?php echo esc_html( $event->post_excerpt ) ?></p>
52
+ <?php endif ?>
53
+ <div class="ai1ec-read-more"><?php esc_html_e( 'click anywhere for details', AI1EC_PLUGIN_NAME ) ?></div>
54
+ </div>
55
+ <div class="ai1ec-event-popup-bg">
56
+ <span class="ai1ec-event-title">
57
+ <?php if( function_exists( 'mb_strimwidth' ) ) : ?>
58
+ <?php echo esc_html( mb_strimwidth( apply_filters( 'the_title', $event->post->post_title ), 0, 35, '...' ) ) ?></span>
59
+ <?php else : ?>
60
+ <?php $read_more = strlen( apply_filters( 'the_title', $event->post->post_title ) ) > 35 ? '...' : '' ?>
61
+ <?php echo esc_html( substr( apply_filters( 'the_title', $event->post->post_title ), 0, 35 ) . $read_more ); ?>
62
+ <?php endif; ?>
63
+ </span>
64
+ <small><?php esc_html_e( '(all-day)', AI1EC_PLUGIN_NAME ) ?></small>
65
+ </div>
66
+ </div><!-- .event-popup -->
67
+
68
+ <div class="ai1ec-event <?php if( $event->post_id == $active_event ) echo 'ai1ec-active-event' ?>" style="<?php echo $event->color_style ?>">
69
+ <span class="ai1ec-event-title"><?php echo esc_html( apply_filters( 'the_title', $event->post->post_title ) ) ?></span>
70
+ </div>
71
+
72
+ </a>
73
+ <?php endforeach // allday ?>
74
+
75
+ </td>
76
+ <?php endforeach // weekday ?>
77
+ </tr>
78
+ </thead>
79
+ <tbody>
80
+ <tr class="ai1ec-1day">
81
+
82
+ <td <?php if( $day['today'] ) echo 'class="ai1ec-today"' ?>>
83
+ <div class="ai1ec-grid-container"><?php for( $hour = 0; $hour < 24; $hour++ ) : ?>
84
+
85
+ <div class="ai1ec-hour-marker <?php if( $hour >= 8 && $hour < 18 ) echo 'ai1ec-business-hour' ?>" style="top: <?php echo $hour * 60 ?>px;">
86
+ <div><?php echo esc_html( date_i18n( $time_format, gmmktime( $hour, 0 ), true ) ) ?></div>
87
+ </div>
88
+ <?php for( $quarter = 1; $quarter < 4; $quarter++ ) : ?>
89
+ <div class="ai1ec-quarter-marker" style="top: <?php echo $hour * 60 + $quarter * 15 ?>px;"></div>
90
+ <?php endfor ?> <?php endfor ?>
91
+ <div class="ai1ec-now-marker" style="top: <?php echo $now_top ?>px;"></div>
92
+ </div>
93
+ <div class="ai1ec-day">
94
+ <?php foreach( $day['notallday'] as $notallday ): ?>
95
+ <?php extract( $notallday ) ?>
96
+ <a href="<?php echo esc_attr( get_permalink( $event->post_id ) ) . $event->instance_id ?>"
97
+ class="ai1ec-event-container
98
+ ai1ec-event-id-<?php echo $event->post_id ?>
99
+ ai1ec-event-instance-id-<?php echo $event->instance_id ?>
100
+ <?php if( $event->start_truncated ) echo 'ai1ec-start-truncated' ?>
101
+ <?php if( $event->end_truncated ) echo 'ai1ec-end-truncated' ?>"
102
+ style="top: <?php echo $top ?>px; height: <?php echo max( $height, 31 ) ?>px; left: <?php echo $indent * 16 + 50 ?>px; margin-right:10px; <?php echo $event->color_style ?> <?php if( $event->faded_color ) echo "border: 2px solid $event->faded_color !important;" ?> background: linear-gradient( top, #fff, <?php echo $event->faded_color ?> ) !important; background: -o-linear-gradient( top, #fff, <?php echo $event->faded_color ?> ) !important; background: -moz-linear-gradient( top, #fff, <?php echo $event->faded_color ?> ) !important; background: -webkit-gradient( linear, left top, left bottom, color-stop( 0, # ), color-stop( 1, <?php echo $event->faded_color ?> ) ) !important; background: -webkit-linear-gradient( top, #fff, <?php echo $event->faded_color ?> ) !important;">
103
+
104
+ <?php if( $event->start_truncated ) : ?>
105
+ <div class="ai1ec-start-truncator">◤</div>
106
+ <?php endif ?> <?php if( $event->end_truncated ) : ?>
107
+ <div class="ai1ec-end-truncator">◢</div>
108
+ <?php endif ?> <?php // Insert post ID for use by JavaScript filtering later ?>
109
+ <input type="hidden" class="ai1ec-post-id"
110
+ value="<?php echo $event->post_id ?>" />
111
+
112
+ <div class="ai1ec-event-popup">
113
+ <div class="ai1ec-event-summary"><?php if( $event->category_colors ): ?>
114
+ <div class="ai1ec-category-colors"><?php echo $event->category_colors ?></div>
115
+ <?php endif ?> <?php if( $event->post_excerpt ): ?> <strong><?php _e( 'Summary:', AI1EC_PLUGIN_NAME ) ?></strong>
116
+ <p><?php echo esc_html( $event->post_excerpt ) ?></p>
117
+ <?php endif ?>
118
+ <div class="ai1ec-read-more"><?php esc_html_e( 'click anywhere for details', AI1EC_PLUGIN_NAME ) ?></div>
119
+ </div>
120
+ <div class="ai1ec-event-popup-bg"><span class="ai1ec-event-time"><?php echo esc_html( $event->short_start_time ) ?></span>
121
+ <span class="ai1ec-event-title"><?php echo esc_html( apply_filters( 'the_title', $event->post->post_title ) ) ?></span>
122
+ </span></div>
123
+ </div>
124
+ <!-- .event-popup -->
125
+
126
+ <div
127
+ class="ai1ec-event <?php if( $event->post_id == $active_event ) echo 'ai1ec-active-event' ?>">
128
+ <span class="ai1ec-event-time"><?php echo esc_html( $event->short_start_time ) ?></span>
129
+ <span class="ai1ec-event-title"><?php echo esc_html( apply_filters( 'the_title', $event->post->post_title ) ) ?></span>
130
+ </div>
131
+
132
+ </a> <?php endforeach // events ?></div>
133
+ </td>
134
+
135
+ </tr>
136
+ </tbody>
137
+ </table>
css/calendar.css CHANGED
@@ -13,6 +13,7 @@
13
 
14
  /* Active buttons */
15
  .ai1ec-action-month #ai1ec-view-month,
 
16
  .ai1ec-action-week #ai1ec-view-week,
17
  .ai1ec-action-agenda #ai1ec-view-agenda {
18
  color: #000;
@@ -167,7 +168,8 @@ a.ai1ec-pagination {
167
  .ai1ec-action-month .ai1ec-pagination a {
168
  width: 7em;
169
  }
170
- .ai1ec-action-week .ai1ec-pagination a {
 
171
  width: 8em;
172
  }
173
  .ai1ec-action-agenda .ai1ec-pagination a {
@@ -287,8 +289,95 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
287
  -webkit-text-shadow: 0 1px 0 #fff;
288
  }
289
 
290
- /* Week view now marker */
291
- .ai1ec-week-view .ai1ec-grid-container {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
292
  position: absolute;
293
  top: auto;
294
  left: 0;
@@ -296,13 +385,17 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
296
  }
297
  .ai1ec-week-view .ai1ec-now-marker,
298
  .ai1ec-week-view .ai1ec-hour-marker,
299
- .ai1ec-week-view .ai1ec-quarter-marker {
 
 
 
300
  position: absolute;
301
  left: 0;
302
  right: 0;
303
  padding-right: 8px;
304
  }
305
- .ai1ec-week-view .ai1ec-hour-marker {
 
306
  border-top: 1px solid #e8e8e8;
307
  border-top: 1px solid rgba(0,0,0,0.08);
308
  height: 60px;
@@ -310,7 +403,9 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
310
  background: rgba(0,0,0,0.054) !important;
311
  }
312
  .ai1ec-week-view .ai1ec-hour-marker div,
313
- .ai1ec-week-view .ai1ec-allday-label {
 
 
314
  position: relative;
315
  z-index: 2;
316
  margin-left: 1px;
@@ -323,25 +418,30 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
323
  -moz-border-radius: 0.3em;
324
  -webkit-border-radius: 0.3em;
325
  }
326
- .ai1ec-week-view .ai1ec-allday-label {
 
327
  margin-top: 1px;
328
  }
329
- .ai1ec-week-view .ai1ec-hour-marker.ai1ec-business-hour {
 
330
  background: #fff !important;
331
  background: transparent !important;
332
  }
333
- .ai1ec-week-view .ai1ec-quarter-marker {
 
334
  border-top: 1px solid #f4f4f4;
335
  border-top: 1px solid rgba(0,0,0,0.05);
336
  }
337
- .ai1ec-week-view .ai1ec-now-marker {
 
338
  border-top: 1px solid #f2c539;
339
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
340
  z-index: 2;
341
  }
342
- /* Event summaries in month/week view, including popups */
343
  .ai1ec-month-view a.ai1ec-event-container,
344
- .ai1ec-week-view a.ai1ec-event-container {
 
345
  font: 9pt Tahoma, Geneva, sans-serif !important;
346
  text-decoration: none !important;
347
  display: block;
@@ -349,10 +449,15 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
349
  color: #568 !important;
350
  }
351
  .ai1ec-month-view a.ai1ec-event-container,
352
- .ai1ec-week-view .ai1ec-allday-events a.ai1ec-event-container {
 
353
  position: relative;
354
  }
355
- .ai1ec-week-view .ai1ec-week a.ai1ec-event-container {
 
 
 
 
356
  position: absolute;
357
  box-sizing: border-box;
358
  -o-box-sizing: border-box;
@@ -374,6 +479,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
374
  background: -webkit-linear-gradient( top, #fff, #ced3dd ) !important;
375
  }
376
  .ai1ec-month-view .ai1ec-event,
 
377
  .ai1ec-week-view .ai1ec-event {
378
  border-radius: 0.3em;
379
  -o-border-radius: 0.3em;
@@ -386,11 +492,13 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
386
  max-height: 100%;
387
  }
388
  .ai1ec-month-view .ai1ec-allday .ai1ec-event,
 
389
  .ai1ec-week-view .ai1ec-allday .ai1ec-event {
390
  background: #568;
391
  color: #fff !important;
392
  }
393
  .ai1ec-month-view .ai1ec-category-colors,
 
394
  .ai1ec-week-view .ai1ec-category-colors {
395
  float: right;
396
  font-size: 1.2em;
@@ -398,6 +506,8 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
398
  }
399
  .ai1ec-month-view .ai1ec-event-popup,
400
  .ai1ec-month-view .ai1ec-event-summary,
 
 
401
  .ai1ec-week-view .ai1ec-event-popup,
402
  .ai1ec-week-view .ai1ec-event-summary {
403
  border: 2px solid #d4c4b0;
@@ -409,6 +519,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
409
  background: #fff;
410
  }
411
  .ai1ec-month-view .ai1ec-event-popup,
 
412
  .ai1ec-week-view .ai1ec-event-popup {
413
  position: absolute;
414
  z-index: 5;
@@ -423,10 +534,15 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
423
  -moz-border-radius: 0 0.3em 0.3em 0;
424
  -webkit-border-radius: 0 0.3em 0.3em 0;
425
  }
 
 
 
 
426
  .ai1ec-week-view .ai1ec-week .ai1ec-event-popup {
427
  top: -3px;
428
  }
429
  .ai1ec-month-view .ai1ec-event-popup.ai1ec-shifted-right,
 
430
  .ai1ec-week-view .ai1ec-event-popup.ai1ec-shifted-right {
431
  border-radius: 0.3em 0 0 0.3em;
432
  -o-border-radius: 0.3em 0 0 0.3em;
@@ -434,6 +550,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
434
  -webkit-border-radius: 0.3em 0 0 0.3em;
435
  }
436
  .ai1ec-month-view .ai1ec-event-popup-bg,
 
437
  .ai1ec-week-view .ai1ec-event-popup-bg {
438
  position: relative;
439
  left: -2px;
@@ -442,21 +559,26 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
442
  background: #fff;
443
  }
444
  .ai1ec-month-view .ai1ec-shifted-right .ai1ec-event-popup-bg,
 
445
  .ai1ec-week-view .ai1ec-shifted-right .ai1ec-event-popup-bg {
446
  left: 1px;
447
  padding: 2px 5px 2px 2px;
448
  }
449
  .ai1ec-month-view .ai1ec-event-summary,
450
  .ai1ec-month-view .ai1ec-event-summary p,
 
 
451
  .ai1ec-week-view .ai1ec-event-summary,
452
  .ai1ec-week-view .ai1ec-event-summary p {
453
  font-size: 0.95em !important;
454
  }
455
  .ai1ec-month-view .ai1ec-event-summary p,
 
456
  .ai1ec-week-view .ai1ec-event-summary p {
457
  line-height: 1.4em !important;
458
  }
459
  .ai1ec-month-view .ai1ec-event-summary,
 
460
  .ai1ec-week-view .ai1ec-event-summary {
461
  position: absolute;
462
  overflow: hidden;
@@ -479,6 +601,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
479
  color: #6d5e4a;
480
  }
481
  .ai1ec-month-view .ai1ec-shifted-right .ai1ec-event-summary,
 
482
  .ai1ec-week-view .ai1ec-shifted-right .ai1ec-event-summary {
483
  left: 100%;
484
  border-radius: 0 0.3em 0.3em 0.3em;
@@ -487,21 +610,25 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
487
  -webkit-border-radius: 0 0.3em 0.3em 0.3em;
488
  }
489
  .ai1ec-month-view .ai1ec-event-summary p,
 
490
  .ai1ec-week-view .ai1ec-event-summary p {
491
  margin: 0 0 0.3em !important;
492
  padding: 0 !important;
493
  }
494
  .ai1ec-month-view .ai1ec-event-time,
 
495
  .ai1ec-week-view .ai1ec-event-time {
496
  font-size: 8pt;
497
  font-weight: bold;
498
  }
 
499
  .ai1ec-week-view .ai1ec-week .ai1ec-event-title {
500
  display: block;
501
  white-space: normal;
502
  font-size: 8pt !important;
503
  }
504
  .ai1ec-month-view .ai1ec-read-more,
 
505
  .ai1ec-week-view .ai1ec-read-more {
506
  text-align: center;
507
  font-size: 8pt;
@@ -554,9 +681,11 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
554
  }
555
 
556
  /* Truncated events */
 
557
  .ai1ec-week-view .ai1ec-start-truncated .ai1ec-event-time {
558
  display: none;
559
  }
 
560
  .ai1ec-week-view .ai1ec-week a.ai1ec-event-container.ai1ec-start-truncated {
561
  border-top-left-radius: 0;
562
  border-top-right-radius: 0;
@@ -565,6 +694,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
565
  -webkit-border-top-left-radius: 0;
566
  -webkit-border-top-right-radius: 0;
567
  }
 
568
  .ai1ec-week-view .ai1ec-week .ai1ec-start-truncator {
569
  position: absolute;
570
  top: -2px;
@@ -572,6 +702,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
572
  line-height: 1em;
573
  font-size: 6pt;
574
  }
 
575
  .ai1ec-week-view .ai1ec-week a.ai1ec-event-container.ai1ec-end-truncated {
576
  border-bottom-left-radius: 0;
577
  border-bottom-right-radius: 0;
@@ -580,6 +711,7 @@ table.ai1ec-week-view-original.tablescroll_body tr:first-child td {
580
  -webkit-border-bottom-left-radius: 0;
581
  -webkit-border-bottom-right-radius: 0;
582
  }
 
583
  .ai1ec-week-view .ai1ec-week .ai1ec-end-truncator {
584
  position: absolute;
585
  bottom: -2px;
13
 
14
  /* Active buttons */
15
  .ai1ec-action-month #ai1ec-view-month,
16
+ .ai1ec-action-oneday #ai1ec-view-oneday,
17
  .ai1ec-action-week #ai1ec-view-week,
18
  .ai1ec-action-agenda #ai1ec-view-agenda {
19
  color: #000;
168
  .ai1ec-action-month .ai1ec-pagination a {
169
  width: 7em;
170
  }
171
+ .ai1ec-action-week .ai1ec-pagination a,
172
+ .ai1ec-action-1day .ai1ec-pagination a {
173
  width: 8em;
174
  }
175
  .ai1ec-action-agenda .ai1ec-pagination a {
289
  -webkit-text-shadow: 0 1px 0 #fff;
290
  }
291
 
292
+ /* 1day tables */
293
+ table.ai1ec-1day-view, .ai1ec-1day-view table{
294
+ border-collapse: collapse;
295
+ border: 1px solid #ddd !important;
296
+ margin: 0 !important;
297
+ background: #fff;
298
+ table-layout: fixed !important;
299
+ clear: both;
300
+ width: 100% !important;
301
+ }
302
+ .ai1ec-1day-view .ai1ec-today {
303
+ color: #999 !important;
304
+ }
305
+ .ai1ec-1day-view .ai1ec-today th{
306
+ background: #ffd !important;
307
+ background: rgba(255,255,128,0.3) !important;
308
+ }
309
+ .ai1ec-1day-view .tablescroll_wrapper {
310
+ position: relative;
311
+ border-bottom: 1px solid #ddd;
312
+ }
313
+ table.ai1ec-1day-view-original {
314
+ visibility: hidden;
315
+ height: 400px;
316
+ }
317
+ table.ai1ec-1day-view-original.tablescroll_body {
318
+ visibility: visible;
319
+ height: auto;
320
+ }
321
+ .ai1ec-1day-view table.tablescroll_head,
322
+ .ai1ec-1day-view table.tablescroll_head th {
323
+ border-bottom: none !important;
324
+ padding: 2.48px !important;
325
+ }
326
+ table.ai1ec-1day-view-original.tablescroll_body,
327
+ table.ai1ec-1day-view-original.tablescroll_body tr:first-child td {
328
+ border-top: none !important;
329
+ }
330
+ .ai1ec-1day-view td {
331
+ border: 1px solid #ddd !important;
332
+ vertical-align: top;
333
+ background: none !important;
334
+ }
335
+
336
+ .ai1ec-1day-view th {
337
+ border: none !important;
338
+ padding: 0.2em !important;
339
+ background: #ffd !important;
340
+ background: rgba(255,255,128,0.3) !important;
341
+ }
342
+ .ai1ec-1day-view th,
343
+ .ai1ec-1day-view .ai1ec-hour-marker div,
344
+ .ai1ec-1day-view .ai1ec-allday-label {
345
+ font: bold 10pt Tahoma, Geneva, sans-serif !important;
346
+ color: #999 !important;
347
+ text-shadow: 0 1px 0 #fff;
348
+ -o-text-shadow: 0 1px 0 #fff;
349
+ -ms-text-shadow: 0 1px 0 #fff;
350
+ -moz-text-shadow: 0 1px 0 #fff;
351
+ -webkit-text-shadow: 0 1px 0 #fff;
352
+ }
353
+ .ai1ec-1day-view th {
354
+ text-align: center !important;
355
+ }
356
+
357
+ .ai1ec-1day-view th .ai1ec-weekday-date {
358
+ font-size: 10.5pt !important;
359
+ font-weight: normal !important;
360
+ }
361
+ .ai1ec-1day-view th .ai1ec-weekday-day {
362
+ font-size: 10.5pt !important;
363
+ font-weight: normal !important;
364
+ }
365
+
366
+ .ai1ec-1day-view td {
367
+ padding: 0 !important;
368
+ text-align: left;
369
+ }
370
+ .ai1ec-1day-view .ai1ec-day,
371
+ .ai1ec-1day-view .ai1ec-allday-events {
372
+ position: relative;
373
+ }
374
+ .ai1ec-1day-view .ai1ec-day {
375
+ height: 1440px;
376
+ }
377
+
378
+ /* Week/Day view now marker */
379
+ .ai1ec-week-view .ai1ec-grid-container,
380
+ .ai1ec-1day-view .ai1ec-grid-container {
381
  position: absolute;
382
  top: auto;
383
  left: 0;
385
  }
386
  .ai1ec-week-view .ai1ec-now-marker,
387
  .ai1ec-week-view .ai1ec-hour-marker,
388
+ .ai1ec-week-view .ai1ec-quarter-marker,
389
+ .ai1ec-1day-view .ai1ec-now-marker,
390
+ .ai1ec-1day-view .ai1ec-hour-marker,
391
+ .ai1ec-1day-view .ai1ec-quarter-marker {
392
  position: absolute;
393
  left: 0;
394
  right: 0;
395
  padding-right: 8px;
396
  }
397
+ .ai1ec-week-view .ai1ec-hour-marker,
398
+ .ai1ec-1day-view .ai1ec-hour-marker {
399
  border-top: 1px solid #e8e8e8;
400
  border-top: 1px solid rgba(0,0,0,0.08);
401
  height: 60px;
403
  background: rgba(0,0,0,0.054) !important;
404
  }
405
  .ai1ec-week-view .ai1ec-hour-marker div,
406
+ .ai1ec-week-view .ai1ec-allday-label,
407
+ .ai1ec-1day-view .ai1ec-hour-marker div,
408
+ .ai1ec-1day-view .ai1ec-allday-label {
409
  position: relative;
410
  z-index: 2;
411
  margin-left: 1px;
418
  -moz-border-radius: 0.3em;
419
  -webkit-border-radius: 0.3em;
420
  }
421
+ .ai1ec-week-view .ai1ec-allday-label,
422
+ .ai1ec-1day-view .ai1ec-allday-label {
423
  margin-top: 1px;
424
  }
425
+ .ai1ec-week-view .ai1ec-hour-marker.ai1ec-business-hour,
426
+ .ai1ec-1day-view .ai1ec-hour-marker.ai1ec-business-hour {
427
  background: #fff !important;
428
  background: transparent !important;
429
  }
430
+ .ai1ec-week-view .ai1ec-quarter-marker,
431
+ .ai1ec-1day-view .ai1ec-quarter-marker {
432
  border-top: 1px solid #f4f4f4;
433
  border-top: 1px solid rgba(0,0,0,0.05);
434
  }
435
+ .ai1ec-week-view .ai1ec-now-marker,
436
+ .ai1ec-1day-view .ai1ec-now-marker{
437
  border-top: 1px solid #f2c539;
438
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
439
  z-index: 2;
440
  }
441
+ /* Event summaries in month/week/day view, including popups */
442
  .ai1ec-month-view a.ai1ec-event-container,
443
+ .ai1ec-week-view a.ai1ec-event-container,
444
+ .ai1ec-1day-view a.ai1ec-event-container {
445
  font: 9pt Tahoma, Geneva, sans-serif !important;
446
  text-decoration: none !important;
447
  display: block;
449
  color: #568 !important;
450
  }
451
  .ai1ec-month-view a.ai1ec-event-container,
452
+ .ai1ec-week-view .ai1ec-allday-events a.ai1ec-event-container,
453
+ .ai1ec-1day-view .ai1ec-allday-events a.ai1ec-event-container {
454
  position: relative;
455
  }
456
+ .ai1ec-1day-view .ai1ec-allday-events a.ai1ec-event-container {
457
+ margin: 0 15px 0 50px;
458
+ }
459
+ .ai1ec-week-view .ai1ec-week a.ai1ec-event-container,
460
+ .ai1ec-1day-view .ai1ec-1day a.ai1ec-event-container {
461
  position: absolute;
462
  box-sizing: border-box;
463
  -o-box-sizing: border-box;
479
  background: -webkit-linear-gradient( top, #fff, #ced3dd ) !important;
480
  }
481
  .ai1ec-month-view .ai1ec-event,
482
+ .ai1ec-1day-view .ai1ec-event,
483
  .ai1ec-week-view .ai1ec-event {
484
  border-radius: 0.3em;
485
  -o-border-radius: 0.3em;
492
  max-height: 100%;
493
  }
494
  .ai1ec-month-view .ai1ec-allday .ai1ec-event,
495
+ .ai1ec-1day-view .ai1ec-allday .ai1ec-event,
496
  .ai1ec-week-view .ai1ec-allday .ai1ec-event {
497
  background: #568;
498
  color: #fff !important;
499
  }
500
  .ai1ec-month-view .ai1ec-category-colors,
501
+ .ai1ec-1day-view .ai1ec-category-colors,
502
  .ai1ec-week-view .ai1ec-category-colors {
503
  float: right;
504
  font-size: 1.2em;
506
  }
507
  .ai1ec-month-view .ai1ec-event-popup,
508
  .ai1ec-month-view .ai1ec-event-summary,
509
+ .ai1ec-1day-view .ai1ec-event-popup,
510
+ .ai1ec-1day-view .ai1ec-event-summary,
511
  .ai1ec-week-view .ai1ec-event-popup,
512
  .ai1ec-week-view .ai1ec-event-summary {
513
  border: 2px solid #d4c4b0;
519
  background: #fff;
520
  }
521
  .ai1ec-month-view .ai1ec-event-popup,
522
+ .ai1ec-1day-view .ai1ec-event-popup,
523
  .ai1ec-week-view .ai1ec-event-popup {
524
  position: absolute;
525
  z-index: 5;
534
  -moz-border-radius: 0 0.3em 0.3em 0;
535
  -webkit-border-radius: 0 0.3em 0.3em 0;
536
  }
537
+ .ai1ec-1day-view .ai1ec-event-popup {
538
+ top: -3px;
539
+ min-width: 75%;
540
+ }
541
  .ai1ec-week-view .ai1ec-week .ai1ec-event-popup {
542
  top: -3px;
543
  }
544
  .ai1ec-month-view .ai1ec-event-popup.ai1ec-shifted-right,
545
+ .ai1ec-1day-view.ai1ec-event-popup.ai1ec-shifted-right,
546
  .ai1ec-week-view .ai1ec-event-popup.ai1ec-shifted-right {
547
  border-radius: 0.3em 0 0 0.3em;
548
  -o-border-radius: 0.3em 0 0 0.3em;
550
  -webkit-border-radius: 0.3em 0 0 0.3em;
551
  }
552
  .ai1ec-month-view .ai1ec-event-popup-bg,
553
+ .ai1ec-1day-view .ai1ec-event-popup-bg,
554
  .ai1ec-week-view .ai1ec-event-popup-bg {
555
  position: relative;
556
  left: -2px;
559
  background: #fff;
560
  }
561
  .ai1ec-month-view .ai1ec-shifted-right .ai1ec-event-popup-bg,
562
+ .ai1ec-1day-view .ai1ec-shifted-right .ai1ec-event-popup-bg,
563
  .ai1ec-week-view .ai1ec-shifted-right .ai1ec-event-popup-bg {
564
  left: 1px;
565
  padding: 2px 5px 2px 2px;
566
  }
567
  .ai1ec-month-view .ai1ec-event-summary,
568
  .ai1ec-month-view .ai1ec-event-summary p,
569
+ .ai1ec-1day-view .ai1ec-event-summary,
570
+ .ai1ec-1day-view .ai1ec-event-summary p,
571
  .ai1ec-week-view .ai1ec-event-summary,
572
  .ai1ec-week-view .ai1ec-event-summary p {
573
  font-size: 0.95em !important;
574
  }
575
  .ai1ec-month-view .ai1ec-event-summary p,
576
+ .ai1ec-1day-view .ai1ec-event-summary p,
577
  .ai1ec-week-view .ai1ec-event-summary p {
578
  line-height: 1.4em !important;
579
  }
580
  .ai1ec-month-view .ai1ec-event-summary,
581
+ .ai1ec-1day-view .ai1ec-event-summary,
582
  .ai1ec-week-view .ai1ec-event-summary {
583
  position: absolute;
584
  overflow: hidden;
601
  color: #6d5e4a;
602
  }
603
  .ai1ec-month-view .ai1ec-shifted-right .ai1ec-event-summary,
604
+ .ai1ec-1day-view .ai1ec-shifted-right .ai1ec-event-summary,
605
  .ai1ec-week-view .ai1ec-shifted-right .ai1ec-event-summary {
606
  left: 100%;
607
  border-radius: 0 0.3em 0.3em 0.3em;
610
  -webkit-border-radius: 0 0.3em 0.3em 0.3em;
611
  }
612
  .ai1ec-month-view .ai1ec-event-summary p,
613
+ .ai1ec-1day-view .ai1ec-event-summary p,
614
  .ai1ec-week-view .ai1ec-event-summary p {
615
  margin: 0 0 0.3em !important;
616
  padding: 0 !important;
617
  }
618
  .ai1ec-month-view .ai1ec-event-time,
619
+ .ai1ec-1day-view .ai1ec-event-time,
620
  .ai1ec-week-view .ai1ec-event-time {
621
  font-size: 8pt;
622
  font-weight: bold;
623
  }
624
+ .ai1ec-1day-view .ai1ec-1day .ai1ec-event-title,
625
  .ai1ec-week-view .ai1ec-week .ai1ec-event-title {
626
  display: block;
627
  white-space: normal;
628
  font-size: 8pt !important;
629
  }
630
  .ai1ec-month-view .ai1ec-read-more,
631
+ .ai1ec-1day-view .ai1ec-read-more,
632
  .ai1ec-week-view .ai1ec-read-more {
633
  text-align: center;
634
  font-size: 8pt;
681
  }
682
 
683
  /* Truncated events */
684
+ .ai1ec-1day-view .ai1ec-start-truncated .ai1ec-event-time,
685
  .ai1ec-week-view .ai1ec-start-truncated .ai1ec-event-time {
686
  display: none;
687
  }
688
+ .ai1ec-1day-view-view .ai1ec-1day a.ai1ec-event-container.ai1ec-start-truncated,
689
  .ai1ec-week-view .ai1ec-week a.ai1ec-event-container.ai1ec-start-truncated {
690
  border-top-left-radius: 0;
691
  border-top-right-radius: 0;
694
  -webkit-border-top-left-radius: 0;
695
  -webkit-border-top-right-radius: 0;
696
  }
697
+ .ai1ec-1day-view .ai1ec-1day .ai1ec-start-truncator,
698
  .ai1ec-week-view .ai1ec-week .ai1ec-start-truncator {
699
  position: absolute;
700
  top: -2px;
702
  line-height: 1em;
703
  font-size: 6pt;
704
  }
705
+ .ai1ec-1day-view .ai1ec-1day a.ai1ec-event-container.ai1ec-end-truncated,
706
  .ai1ec-week-view .ai1ec-week a.ai1ec-event-container.ai1ec-end-truncated {
707
  border-bottom-left-radius: 0;
708
  border-bottom-right-radius: 0;
711
  -webkit-border-bottom-left-radius: 0;
712
  -webkit-border-bottom-right-radius: 0;
713
  }
714
+ .ai1ec-1day-view .ai1ec-1day .ai1ec-end-truncator,
715
  .ai1ec-week-view .ai1ec-week .ai1ec-end-truncator {
716
  position: absolute;
717
  bottom: -2px;
img/oneday-view.png ADDED
Binary file
js/add_new_event.js CHANGED
@@ -267,6 +267,33 @@ var isUrl = function( s ) {
267
  // ====================
268
  jQuery( function( $ ){
269
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270
  /**
271
  * Event post creation/edit form
272
  */
267
  // ====================
268
  jQuery( function( $ ){
269
 
270
+ /**
271
+ * Click event handler for Dismiss button
272
+ * that disables the data notification for admin users
273
+ */
274
+ $( '.ai1ec-dismiss-notification' ).live( 'click', function() {
275
+ var $button = $( this );
276
+ var $parent = $( this ).parent().parent();
277
+ // disable the update button
278
+ $button.attr( 'disabled', true );
279
+
280
+ // create the data to send
281
+ var data = {
282
+ action: 'ai1ec_disable_notification',
283
+ note: false
284
+ };
285
+
286
+ $.post( ajaxurl, data, function( response ) {
287
+ if( response.error ) {
288
+ // tell the user that there is an error
289
+ alert( response.message );
290
+ } else {
291
+ // hide notification message
292
+ $parent.remove();
293
+ }
294
+ });
295
+ });
296
+
297
  /**
298
  * Event post creation/edit form
299
  */
js/calendar.js CHANGED
@@ -215,12 +215,12 @@ jQuery( document ).ready( function( $ ) {
215
 
216
  // Register popup click (for touch devices) or hover (for non-touch devices)
217
  // handlers for month/week views
218
- $('.ai1ec-month-view .ai1ec-event, .ai1ec-week-view .ai1ec-event')
219
  .live( Modernizr.touch ? 'click' : 'mouseenter', show_popup );
220
  // Only hide popups on mouseleave for mouse-based devices (doesn't work
221
  // properly in touch-based devices for some reason).
222
  if( ! Modernizr.touch ) {
223
- $('.ai1ec-month-view .ai1ec-event-popup, .ai1ec-week-view .ai1ec-event-popup')
224
  .live( 'mouseleave', hide_popup )
225
  .live( 'mousemove', function() {
226
  // Track whether popup contains mouse cursor
@@ -228,16 +228,16 @@ jQuery( document ).ready( function( $ ) {
228
  } );
229
  }
230
  // Hide any popups that were visible when the window lost focus
231
- if( $('.ai1ec-month-view, .ai1ec-week-view').length ) {
232
  $(window).blur( function() {
233
  $('.ai1ec-event-popup:visible').each( hide_popup );
234
  } );
235
  }
236
 
237
- // ================================
238
- // = Week view hover-raise effect =
239
- // ================================
240
- $( '.ai1ec-week-view .ai1ec-week a.ai1ec-event-container' )
241
  .live( 'mouseenter',
242
  function() {
243
  $(this).delay( 500 ).queue( function() { $(this).css( 'z-index', 5 ) } );
@@ -576,13 +576,14 @@ jQuery( document ).ready( function( $ ) {
576
 
577
  // Make week view table scrollable
578
  $( 'table.ai1ec-week-view-original' ).tableScroll( { height: 400, containerClass: 'ai1ec-week-view' } );
 
579
 
580
  // ===========================
581
  // = Pop up the active event =
582
  // ===========================
583
  if( $( '.ai1ec-active-event:first' ).length ) {
584
  // Pop up any active event in month/week view views
585
- $( '.ai1ec-month-view .ai1ec-active-event:first, .ai1ec-week-view .ai1ec-active-event:first' )
586
  .each( function() {
587
  $(this)
588
  .each( show_popup )
@@ -601,15 +602,15 @@ jQuery( document ).ready( function( $ ) {
601
  }
602
  );
603
  }
604
- else if( $( '.ai1ec-week-view' ).length ) {
605
  // If no active event, then in week view, scroll down to 6am.
606
- $( '.ai1ec-week-view .tablescroll_wrapper' ).scrollTo( '.ai1ec-hour-marker:eq(6)' );
607
  }
608
 
609
  // Apply category/tag filters if any; hide all events by default, then fade
610
  // in filtered ones.
611
  if( $('.ai1ec-dropdown.ai1ec-selected').length ) {
612
- $('.ai1ec-month-view .ai1ec-event-container, .ai1ec-week-view .ai1ec-event-container, .ai1ec-agenda-view .ai1ec-event').hide();
613
  apply_filters();
614
  } else {
615
  // Else do month view trimming
215
 
216
  // Register popup click (for touch devices) or hover (for non-touch devices)
217
  // handlers for month/week views
218
+ $('.ai1ec-month-view .ai1ec-event, .ai1ec-1day-view .ai1ec-event, .ai1ec-week-view .ai1ec-event')
219
  .live( Modernizr.touch ? 'click' : 'mouseenter', show_popup );
220
  // Only hide popups on mouseleave for mouse-based devices (doesn't work
221
  // properly in touch-based devices for some reason).
222
  if( ! Modernizr.touch ) {
223
+ $('.ai1ec-month-view .ai1ec-event-popup, .ai1ec-1day-view .ai1ec-event-popup, .ai1ec-week-view .ai1ec-event-popup')
224
  .live( 'mouseleave', hide_popup )
225
  .live( 'mousemove', function() {
226
  // Track whether popup contains mouse cursor
228
  } );
229
  }
230
  // Hide any popups that were visible when the window lost focus
231
+ if( $('.ai1ec-month-view, .ai1ec-1day-view, .ai1ec-week-view').length ) {
232
  $(window).blur( function() {
233
  $('.ai1ec-event-popup:visible').each( hide_popup );
234
  } );
235
  }
236
 
237
+ // ======================================
238
+ // = Week / Day view hover-raise effect =
239
+ // ======================================
240
+ $( '.ai1ec-1day-view .ai1ec-1day a.ai1ec-event-container, .ai1ec-week-view .ai1ec-week a.ai1ec-event-container' )
241
  .live( 'mouseenter',
242
  function() {
243
  $(this).delay( 500 ).queue( function() { $(this).css( 'z-index', 5 ) } );
576
 
577
  // Make week view table scrollable
578
  $( 'table.ai1ec-week-view-original' ).tableScroll( { height: 400, containerClass: 'ai1ec-week-view' } );
579
+ $( 'table.ai1ec-1day-view-original' ).tableScroll( { height: 400, containerClass: 'ai1ec-1day-view' } );
580
 
581
  // ===========================
582
  // = Pop up the active event =
583
  // ===========================
584
  if( $( '.ai1ec-active-event:first' ).length ) {
585
  // Pop up any active event in month/week view views
586
+ $( '.ai1ec-month-view .ai1ec-active-event:first, .ai1ec-1day-view .ai1ec-active-event:first, .ai1ec-week-view .ai1ec-active-event:first' )
587
  .each( function() {
588
  $(this)
589
  .each( show_popup )
602
  }
603
  );
604
  }
605
+ else if( $( '.ai1ec-week-view' ).length || $( '.ai1ec-1day-view' ).length ) {
606
  // If no active event, then in week view, scroll down to 6am.
607
+ $( '.ai1ec-1day-view .tablescroll_wrapper, .ai1ec-week-view .tablescroll_wrapper' ).scrollTo( '.ai1ec-hour-marker:eq(6)' );
608
  }
609
 
610
  // Apply category/tag filters if any; hide all events by default, then fade
611
  // in filtered ones.
612
  if( $('.ai1ec-dropdown.ai1ec-selected').length ) {
613
+ $('.ai1ec-month-view .ai1ec-event-container, .ai1ec-1day-view .ai1ec-event-container, .ai1ec-week-view .ai1ec-event-container, .ai1ec-agenda-view .ai1ec-event').hide();
614
  apply_filters();
615
  } else {
616
  // Else do month view trimming
language/all-in-one-event-calendar-it_IT.mo ADDED
Binary file
language/all-in-one-event-calendar-it_IT.po ADDED
@@ -0,0 +1,1265 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) {year} All-in-One Event Calendar
2
+ # This file is distributed under the same license as the All-in-One Event Calendar package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: All-in-One Event Calendar 1.2.2\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
+ "POT-Creation-Date: 2012-03-01 20:50:01+00:00\n"
8
+ "PO-Revision-Date: 2012-03-20 16:38+0100\n"
9
+ "Last-Translator: Luca Barbetti <lucabarbetti@gmail.com>\n"
10
+ "Language-Team: \n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
15
+ "X-Poedit-Language: Italian\n"
16
+ "X-Poedit-Country: ITALY\n"
17
+
18
+ #: app/controller/class-ai1ec-app-controller.php:364
19
+ #: app/controller/class-ai1ec-app-controller.php:365
20
+ msgid "Settings"
21
+ msgstr "Impostazioni"
22
+
23
+ #. translators: "%s" represents the week's starting date
24
+ #: app/controller/class-ai1ec-calendar-controller.php:326
25
+ #: app/helper/class-ai1ec-calendar-helper.php:717
26
+ #: app/helper/class-ai1ec-calendar-helper.php:726
27
+ msgid "Week of %s"
28
+ msgstr "Sett. di %s"
29
+
30
+ #: app/controller/class-ai1ec-calendar-controller.php:326
31
+ msgid "F j"
32
+ msgstr "F j"
33
+
34
+ #: app/controller/class-ai1ec-calendar-controller.php:383
35
+ #: app/helper/class-ai1ec-settings-helper.php:155
36
+ #: app/view/calendar.php:26
37
+ msgid "Agenda"
38
+ msgstr "Agenda"
39
+
40
+ #: app/controller/class-ai1ec-events-controller.php:153
41
+ msgid "This feed is already being imported."
42
+ msgstr "Importazione del feed già in corso."
43
+
44
+ #: app/controller/class-ai1ec-events-controller.php:154
45
+ msgid "Please enter a valid iCalendar URL."
46
+ msgstr "Inserire un URL valido di iCalendar."
47
+
48
+ #: app/controller/class-ai1ec-events-controller.php:333
49
+ msgid "Publish"
50
+ msgstr "Pubblica"
51
+
52
+ #: app/controller/class-ai1ec-events-controller.php:333
53
+ #: app/view/feed_row.php:20
54
+ msgid "Update"
55
+ msgstr "Aggiorna"
56
+
57
+ #: app/controller/class-ai1ec-events-controller.php:335
58
+ msgid "Submit for Review"
59
+ msgstr "Invia per la revisione"
60
+
61
+ #: app/controller/class-ai1ec-events-controller.php:458
62
+ msgid "Event updated. <a href=\"%s\">View event</a>"
63
+ msgstr "L'evento è stato aggiornato. <a href=\"%s\">Vedi evento</a>"
64
+
65
+ #: app/controller/class-ai1ec-events-controller.php:459
66
+ msgid "Custom field updated."
67
+ msgstr "Il campo personalizzato è stato aggiornato."
68
+
69
+ #: app/controller/class-ai1ec-events-controller.php:460
70
+ msgid "Custom field deleted."
71
+ msgstr "Il campo personalizzato è stato cancellato"
72
+
73
+ #: app/controller/class-ai1ec-events-controller.php:461
74
+ msgid "Event updated."
75
+ msgstr "L'evento è stato aggiornato."
76
+
77
+ #. translators: %s: date and time of the revision
78
+ #: app/controller/class-ai1ec-events-controller.php:463
79
+ msgid "Event restored to revision from %s"
80
+ msgstr "L'evento è stato ripristinato alla revisione da %s"
81
+
82
+ #: app/controller/class-ai1ec-events-controller.php:464
83
+ msgid "Event published. <a href=\"%s\">View event</a>"
84
+ msgstr "L'evento è stato pubblicato. <a href=\"%s\">Vedi evento</a>"
85
+
86
+ #: app/controller/class-ai1ec-events-controller.php:465
87
+ msgid "Event saved."
88
+ msgstr "L'evento è stato salvato."
89
+
90
+ #: app/controller/class-ai1ec-events-controller.php:466
91
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
92
+ msgstr "L'evento è stato inviato. <a target=\"_blank\" href=\"%s\">Anteprima evento</a>"
93
+
94
+ #: app/controller/class-ai1ec-events-controller.php:467
95
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
96
+ msgstr "Evento programmato per: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Anteprima evento</a>"
97
+
98
+ #. translators: Publish box date format, see http:php.net/date
99
+ #: app/controller/class-ai1ec-events-controller.php:469
100
+ msgid "M j, Y @ G:i"
101
+ msgstr "M j, Y @ G:i"
102
+
103
+ #: app/controller/class-ai1ec-events-controller.php:470
104
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
105
+ msgstr "La bozza dell'evento è stata aggiornata. <a target=\"_blank\" href=\"%s\">Anteprima evento</a>"
106
+
107
+ #: app/controller/class-ai1ec-importer-controller.php:91
108
+ msgid "The Events Calendar → All-in-One Event Calendar"
109
+ msgstr "Il Calendario di Eventi → All-in-One Event Calendar"
110
+
111
+ #: app/controller/class-ai1ec-importer-controller.php:92
112
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
113
+ msgstr "Importa in All-in-One Event Calendar gli eventi creati usando il plugin The Events Calendar"
114
+
115
+ #: app/controller/class-ai1ec-settings-controller.php:82
116
+ msgid "Settings Updated."
117
+ msgstr "Le impostazioni sono state aggiornate."
118
+
119
+ #: app/controller/class-ai1ec-settings-controller.php:173
120
+ msgid "Flushed %d events"
121
+ msgstr "Sono stati scaricati %d eventi"
122
+
123
+ #: app/controller/class-ai1ec-settings-controller.php:181
124
+ #: app/controller/class-ai1ec-settings-controller.php:231
125
+ msgid "Invalid ICS feed ID"
126
+ msgstr "ID del feed ICS non valido"
127
+
128
+ #: app/controller/class-ai1ec-settings-controller.php:216
129
+ msgid "No events were found"
130
+ msgstr "Non è stato trovato alcun evento"
131
+
132
+ #: app/controller/class-ai1ec-settings-controller.php:221
133
+ msgid "Imported %d events"
134
+ msgstr "Sono stati importati %d events"
135
+
136
+ #: app/controller/class-ai1ec-settings-controller.php:222
137
+ #: app/view/feed_row.php:22
138
+ msgid "Flush 1 event"
139
+ msgid_plural "Flush %s events"
140
+ msgstr[0] "Scarica 1 evento"
141
+ msgstr[1] "Scarica %d eventi"
142
+
143
+ #: app/controller/class-ai1ec-settings-controller.php:274
144
+ msgctxt "meta box"
145
+ msgid "General Settings"
146
+ msgstr "Impostazioni generali"
147
+
148
+ #: app/controller/class-ai1ec-settings-controller.php:282
149
+ msgctxt "meta box"
150
+ msgid "The Seed Studio Support"
151
+ msgstr "Supporto tecnico di The Seed Studio"
152
+
153
+ #: app/controller/class-ai1ec-settings-controller.php:289
154
+ msgctxt "meta box"
155
+ msgid "ICS Import Settings"
156
+ msgstr "Impostazioni per importazione ICS"
157
+
158
+ #: app/controller/class-ai1ec-settings-controller.php:338
159
+ msgid "<a href=\"%s\">Settings</a>"
160
+ msgstr "<a href=\"%s\">Impostazioni</a>"
161
+
162
+ #: app/controller/class-ai1ec-settings-controller.php:352
163
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
164
+ msgstr "<a href=\"%s\" target=\"_blank\">Dona</a>"
165
+
166
+ #: app/controller/class-ai1ec-settings-controller.php:353
167
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
168
+ msgstr "<a href=\"%s\" target=\"_blank\">Richiedi Supporto</a>"
169
+
170
+ #: app/helper/class-ai1ec-app-helper.php:147
171
+ msgctxt "Custom post type name"
172
+ msgid "Events"
173
+ msgstr "Eventi"
174
+
175
+ #: app/helper/class-ai1ec-app-helper.php:148
176
+ msgctxt "Custom post type name (singular)"
177
+ msgid "Event"
178
+ msgstr "Evento"
179
+
180
+ #: app/helper/class-ai1ec-app-helper.php:149
181
+ msgid "Add New"
182
+ msgstr "Aggiungi nuovo"
183
+
184
+ #: app/helper/class-ai1ec-app-helper.php:150
185
+ msgid "Add New Event"
186
+ msgstr "Aggiungi nuovo evento"
187
+
188
+ #: app/helper/class-ai1ec-app-helper.php:151
189
+ msgid "Edit Event"
190
+ msgstr "Modifica evento"
191
+
192
+ #: app/helper/class-ai1ec-app-helper.php:152
193
+ msgid "New Event"
194
+ msgstr "Nuovo evento"
195
+
196
+ #: app/helper/class-ai1ec-app-helper.php:153
197
+ msgid "View Event"
198
+ msgstr "Vedi evento"
199
+
200
+ #: app/helper/class-ai1ec-app-helper.php:154
201
+ msgid "Search Events"
202
+ msgstr "Ricerca eventi"
203
+
204
+ #: app/helper/class-ai1ec-app-helper.php:155
205
+ msgid "No Events found"
206
+ msgstr "Non è stato trovato alcun evento"
207
+
208
+ #: app/helper/class-ai1ec-app-helper.php:156
209
+ msgid "No Events found in Trash"
210
+ msgstr "Non è stato trovato alcun evento nel cestino"
211
+
212
+ #: app/helper/class-ai1ec-app-helper.php:157
213
+ msgid "Parent Event"
214
+ msgstr "Evento padre"
215
+
216
+ #: app/helper/class-ai1ec-app-helper.php:158
217
+ msgid "Events"
218
+ msgstr "Eventi"
219
+
220
+ #: app/helper/class-ai1ec-app-helper.php:205
221
+ msgctxt "Event categories taxonomy"
222
+ msgid "Event Categories"
223
+ msgstr "Categorie evento"
224
+
225
+ #: app/helper/class-ai1ec-app-helper.php:206
226
+ msgctxt "Event categories taxonomy (singular)"
227
+ msgid "Event Category"
228
+ msgstr "Categoria evento"
229
+
230
+ #: app/helper/class-ai1ec-app-helper.php:213
231
+ msgctxt "Event tags taxonomy"
232
+ msgid "Event Tags"
233
+ msgstr "Tag evento"
234
+
235
+ #: app/helper/class-ai1ec-app-helper.php:214
236
+ msgctxt "Event tags taxonomy (singular)"
237
+ msgid "Event Tag"
238
+ msgstr "Tag evento"
239
+
240
+ #: app/helper/class-ai1ec-app-helper.php:221
241
+ msgctxt "Event feeds taxonomy"
242
+ msgid "Event Feeds"
243
+ msgstr "Feed degli eventi"
244
+
245
+ #: app/helper/class-ai1ec-app-helper.php:222
246
+ msgctxt "Event feed taxonomy (singular)"
247
+ msgid "Event Feed"
248
+ msgstr "Feed dell'evento"
249
+
250
+ #: app/helper/class-ai1ec-app-helper.php:310
251
+ msgid "Show All "
252
+ msgstr "Mostra tutti "
253
+
254
+ #: app/helper/class-ai1ec-app-helper.php:342
255
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
256
+ msgstr "Tutti gli Eventi <span class=\"aggiorna-conteggio del plugin-%d\" title=\"%d Eventi in sospeso\"><span class=\"aggiorna-conteggio\">%d</span></span>"
257
+
258
+ #: app/helper/class-ai1ec-app-helper.php:348
259
+ msgid "All Events"
260
+ msgstr "Tutti gli eventi"
261
+
262
+ #: app/helper/class-ai1ec-app-helper.php:426
263
+ msgid "Event Details"
264
+ msgstr "Dettagli dell'evento"
265
+
266
+ #: app/helper/class-ai1ec-app-helper.php:459
267
+ msgid "Post Date"
268
+ msgstr "Data pubblicazione"
269
+
270
+ #: app/helper/class-ai1ec-app-helper.php:460
271
+ msgid "Event date/time"
272
+ msgstr "Data/Orario evento"
273
+
274
+ #: app/helper/class-ai1ec-app-helper.php:684
275
+ msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
276
+ msgstr "%sPer configurare il plugin: %s 1. Selezionare un'opzione nel menu a discesa <strong>Pagina del calendario</strong>. %s 2. Selezionare un'opzione nel menu a discesa <strong>Fuso orario</strong> dropdown list. %s 3. Cliccare su <strong>Aggiorna impostazioni</strong>. %s"
277
+
278
+ #: app/helper/class-ai1ec-app-helper.php:686
279
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
280
+ msgstr "Per configurare il plugin: Selezionare un'opzione nel menu a discesa <strong>Pagina del Calendario</strong>, poi cliccare su <strong>Aggiorna impostazioni</strong>."
281
+
282
+ #: app/helper/class-ai1ec-app-helper.php:688
283
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
284
+ msgstr "Per aggiornare il plugin: Selezionare un'opzione nel menu a discesa <strong>Fuso Orario</strong>, poi cliccare su <strong>Aggiorna impostazioni</strong>."
285
+
286
+ #: app/helper/class-ai1ec-app-helper.php:692
287
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
288
+ msgstr "Il plugin è installato, ma non è stato ancora configurato. <a href=\"%s\">Cliccare qui per configurarlo ora »</a>"
289
+
290
+ #: app/helper/class-ai1ec-app-helper.php:698
291
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
292
+ msgstr "Il plugin è installato, ma non è stato ancora configurato. Per configurarlo è necessario accedere con i privilegi di amministratore di WordPress."
293
+
294
+ #: app/helper/class-ai1ec-calendar-helper.php:718
295
+ #: app/helper/class-ai1ec-calendar-helper.php:727
296
+ msgid "M j"
297
+ msgstr "M j"
298
+
299
+ #: app/helper/class-ai1ec-calendar-helper.php:759
300
+ msgid "« Previous Events"
301
+ msgstr "« Eventi precedenti"
302
+
303
+ #: app/helper/class-ai1ec-calendar-helper.php:766
304
+ msgid "Next Events »"
305
+ msgstr "Prossimi eventi »"
306
+
307
+ #: app/helper/class-ai1ec-events-helper.php:372
308
+ #: app/helper/class-ai1ec-events-helper.php:394
309
+ msgid "No repeat"
310
+ msgstr "Senza ripetizione"
311
+
312
+ #: app/helper/class-ai1ec-events-helper.php:373
313
+ #: app/helper/class-ai1ec-events-helper.php:395
314
+ msgid "Every day"
315
+ msgstr "Ogni giorno"
316
+
317
+ #: app/helper/class-ai1ec-events-helper.php:374
318
+ #: app/helper/class-ai1ec-events-helper.php:396
319
+ msgid "Every week"
320
+ msgstr "Ogni settimana"
321
+
322
+ #: app/helper/class-ai1ec-events-helper.php:375
323
+ #: app/helper/class-ai1ec-events-helper.php:397
324
+ msgid "Every month"
325
+ msgstr "Ogni mese"
326
+
327
+ #: app/helper/class-ai1ec-events-helper.php:376
328
+ #: app/helper/class-ai1ec-events-helper.php:398
329
+ msgid "Every year"
330
+ msgstr "Ogni anno"
331
+
332
+ #: app/helper/class-ai1ec-events-helper.php:378
333
+ #: app/helper/class-ai1ec-events-helper.php:400
334
+ msgid "Custom..."
335
+ msgstr "Personalizzato..."
336
+
337
+ #: app/helper/class-ai1ec-events-helper.php:521
338
+ msgid "first"
339
+ msgstr "primo"
340
+
341
+ #: app/helper/class-ai1ec-events-helper.php:522
342
+ msgid "second"
343
+ msgstr "secondo"
344
+
345
+ #: app/helper/class-ai1ec-events-helper.php:523
346
+ msgid "third"
347
+ msgstr "terzo"
348
+
349
+ #: app/helper/class-ai1ec-events-helper.php:524
350
+ msgid "fourth"
351
+ msgstr "quarto"
352
+
353
+ #: app/helper/class-ai1ec-events-helper.php:526
354
+ msgid "last"
355
+ msgstr "ultimo"
356
+
357
+ #: app/helper/class-ai1ec-events-helper.php:531
358
+ msgid "Sunday"
359
+ msgstr "Domenica"
360
+
361
+ #: app/helper/class-ai1ec-events-helper.php:532
362
+ msgid "Monday"
363
+ msgstr "Lunedì"
364
+
365
+ #: app/helper/class-ai1ec-events-helper.php:533
366
+ msgid "Tuesday"
367
+ msgstr "Martedì"
368
+
369
+ #: app/helper/class-ai1ec-events-helper.php:534
370
+ msgid "Wednesday"
371
+ msgstr "Mercoledì"
372
+
373
+ #: app/helper/class-ai1ec-events-helper.php:535
374
+ msgid "Thursday"
375
+ msgstr "Giovedì"
376
+
377
+ #: app/helper/class-ai1ec-events-helper.php:536
378
+ msgid "Friday"
379
+ msgstr "Venerdì"
380
+
381
+ #: app/helper/class-ai1ec-events-helper.php:537
382
+ msgid "Saturday"
383
+ msgstr "Sabato"
384
+
385
+ #: app/helper/class-ai1ec-events-helper.php:539
386
+ msgid "day"
387
+ msgstr "giorno"
388
+
389
+ #: app/helper/class-ai1ec-events-helper.php:540
390
+ msgid "weekday"
391
+ msgstr "giorno feriale"
392
+
393
+ #: app/helper/class-ai1ec-events-helper.php:541
394
+ msgid "weekend day"
395
+ msgstr "giorno festivo"
396
+
397
+ #: app/helper/class-ai1ec-events-helper.php:607
398
+ #: app/helper/class-ai1ec-events-helper.php:626
399
+ #: app/helper/class-ai1ec-events-helper.php:1676
400
+ #: app/helper/class-ai1ec-settings-helper.php:237
401
+ #: app/view/box_repeat.php:2
402
+ msgid "Daily"
403
+ msgstr "Giornaliero"
404
+
405
+ #: app/helper/class-ai1ec-events-helper.php:608
406
+ #: app/helper/class-ai1ec-events-helper.php:627
407
+ #: app/helper/class-ai1ec-events-helper.php:1688
408
+ #: app/view/box_repeat.php:3
409
+ msgid "Weekly"
410
+ msgstr "Settimanale"
411
+
412
+ #: app/helper/class-ai1ec-events-helper.php:609
413
+ #: app/helper/class-ai1ec-events-helper.php:628
414
+ #: app/helper/class-ai1ec-events-helper.php:1700
415
+ #: app/view/box_repeat.php:4
416
+ msgid "Monthly"
417
+ msgstr "Mensile"
418
+
419
+ #: app/helper/class-ai1ec-events-helper.php:610
420
+ #: app/helper/class-ai1ec-events-helper.php:629
421
+ #: app/helper/class-ai1ec-events-helper.php:1712
422
+ #: app/view/box_repeat.php:5
423
+ msgid "Yearly"
424
+ msgstr "Annuale"
425
+
426
+ #: app/helper/class-ai1ec-events-helper.php:651
427
+ msgid "day(s)"
428
+ msgstr "giorno(i)"
429
+
430
+ #: app/helper/class-ai1ec-events-helper.php:680
431
+ msgid "week(s)"
432
+ msgstr "settimana(e)"
433
+
434
+ #: app/helper/class-ai1ec-events-helper.php:750
435
+ msgid "month(s)"
436
+ msgstr "mese(i)"
437
+
438
+ #: app/helper/class-ai1ec-events-helper.php:773
439
+ msgid "year(s)"
440
+ msgstr "anno(i)"
441
+
442
+ #: app/helper/class-ai1ec-events-helper.php:1360
443
+ msgid "Never"
444
+ msgstr "Mai"
445
+
446
+ #: app/helper/class-ai1ec-events-helper.php:1361
447
+ msgid "After"
448
+ msgstr "Dopo"
449
+
450
+ #: app/helper/class-ai1ec-events-helper.php:1362
451
+ #: app/view/box_repeat.php:28
452
+ msgid "On date"
453
+ msgstr "Il giorno"
454
+
455
+ #: app/helper/class-ai1ec-events-helper.php:1555
456
+ #: app/helper/class-ai1ec-events-helper.php:1564
457
+ #: app/helper/class-ai1ec-events-helper.php:1572
458
+ msgctxt "Recurrence editor - weekly tab"
459
+ msgid "on"
460
+ msgstr "il"
461
+
462
+ #: app/helper/class-ai1ec-events-helper.php:1560
463
+ #: app/helper/class-ai1ec-events-helper.php:1589
464
+ #: app/helper/class-ai1ec-events-helper.php:1627
465
+ msgid "and"
466
+ msgstr "e"
467
+
468
+ #: app/helper/class-ai1ec-events-helper.php:1585
469
+ #: app/helper/class-ai1ec-events-helper.php:1592
470
+ #: app/helper/class-ai1ec-events-helper.php:1598
471
+ #: app/helper/class-ai1ec-events-helper.php:1609
472
+ msgctxt "Recurrence editor - monthly tab"
473
+ msgid "on"
474
+ msgstr "il"
475
+
476
+ #: app/helper/class-ai1ec-events-helper.php:1585
477
+ #: app/helper/class-ai1ec-events-helper.php:1592
478
+ #: app/helper/class-ai1ec-events-helper.php:1598
479
+ msgid "of the month"
480
+ msgstr "del mese"
481
+
482
+ #: app/helper/class-ai1ec-events-helper.php:1622
483
+ #: app/helper/class-ai1ec-events-helper.php:1630
484
+ #: app/helper/class-ai1ec-events-helper.php:1637
485
+ msgctxt "Recurrence editor - yearly tab"
486
+ msgid "on"
487
+ msgstr "il"
488
+
489
+ #: app/helper/class-ai1ec-events-helper.php:1679
490
+ msgid "Every other day"
491
+ msgstr "A giorni alterni"
492
+
493
+ #: app/helper/class-ai1ec-events-helper.php:1681
494
+ msgid "Every %d days"
495
+ msgstr "Ogni %d giorni"
496
+
497
+ #: app/helper/class-ai1ec-events-helper.php:1691
498
+ msgid "Every other week"
499
+ msgstr "A settimane alterne"
500
+
501
+ #: app/helper/class-ai1ec-events-helper.php:1693
502
+ msgid "Every %d weeks"
503
+ msgstr "Ogni %d settimane"
504
+
505
+ #: app/helper/class-ai1ec-events-helper.php:1703
506
+ msgid "Every other month"
507
+ msgstr "A mesi alterni"
508
+
509
+ #: app/helper/class-ai1ec-events-helper.php:1705
510
+ msgid "Every %d months"
511
+ msgstr "Ogni %d mesi"
512
+
513
+ #: app/helper/class-ai1ec-events-helper.php:1715
514
+ msgid "Every other year"
515
+ msgstr "Ad anni alterni"
516
+
517
+ #: app/helper/class-ai1ec-events-helper.php:1717
518
+ msgid "Every %d years"
519
+ msgstr "Ogni %d anni"
520
+
521
+ #: app/helper/class-ai1ec-events-helper.php:1737
522
+ msgid "until %s"
523
+ msgstr "fino a %s"
524
+
525
+ #: app/helper/class-ai1ec-events-helper.php:1740
526
+ msgid "for %d occurrences"
527
+ msgstr "per %d occorrenze"
528
+
529
+ #: app/helper/class-ai1ec-events-helper.php:1742
530
+ msgid "forever"
531
+ msgstr "Per sempre"
532
+
533
+ #: app/helper/class-ai1ec-events-helper.php:1839
534
+ msgid "times"
535
+ msgstr "volte"
536
+
537
+ #: app/helper/class-ai1ec-settings-helper.php:85
538
+ msgid "- Auto-Create New Page -"
539
+ msgstr "- Crea-Automaticamente Nuova Pagina -"
540
+
541
+ #: app/helper/class-ai1ec-settings-helper.php:107
542
+ msgid "View \"%s\" »"
543
+ msgstr "Vedi \"%s\" »"
544
+
545
+ #: app/helper/class-ai1ec-settings-helper.php:149
546
+ #: app/view/calendar.php:11
547
+ #: app/view/calendar.php:12
548
+ #: app/view/calendar.php:25
549
+ msgid "Month"
550
+ msgstr "Mese"
551
+
552
+ #: app/helper/class-ai1ec-settings-helper.php:152
553
+ #: app/view/calendar.php:18
554
+ #: app/view/calendar.php:19
555
+ msgid "Week"
556
+ msgstr "Settimana"
557
+
558
+ #: app/helper/class-ai1ec-settings-helper.php:204
559
+ msgid "Default (d/m/y)"
560
+ msgstr "Predefinito (d/m/y)"
561
+
562
+ #: app/helper/class-ai1ec-settings-helper.php:207
563
+ msgid "US (m/d/y)"
564
+ msgstr "US (m/d/y)"
565
+
566
+ #: app/helper/class-ai1ec-settings-helper.php:210
567
+ msgid "ISO 8601 (y-m-d)"
568
+ msgstr "ISO 8601 (y-m-d)"
569
+
570
+ #: app/helper/class-ai1ec-settings-helper.php:213
571
+ msgid "Dotted (m.d.y)"
572
+ msgstr "Punteggiato (m.d.y)"
573
+
574
+ #: app/helper/class-ai1ec-settings-helper.php:231
575
+ msgid "Hourly"
576
+ msgstr "Ogni ora"
577
+
578
+ #: app/helper/class-ai1ec-settings-helper.php:234
579
+ msgid "Twice Daily"
580
+ msgstr "Due volte al giorno"
581
+
582
+ #: app/helper/class-ai1ec-settings-helper.php:321
583
+ msgid "Calendar"
584
+ msgstr "Calendario"
585
+
586
+ #: app/model/class-ai1ec-event.php:496
587
+ msgid " (all-day)"
588
+ msgstr " (tutto il giorno)"
589
+
590
+ #: app/view/admin_notices.php:2
591
+ msgid "All-in-One Event Calendar Notice:"
592
+ msgstr "Avviso di All-in-One Event Calendar:"
593
+
594
+ #: app/view/agenda-widget-form.php:2
595
+ msgid "Title:"
596
+ msgstr "Titolo:"
597
+
598
+ #: app/view/agenda-widget-form.php:6
599
+ msgid "Number of events to show:"
600
+ msgstr "Numero di eventi da mostrare:"
601
+
602
+ #: app/view/agenda-widget-form.php:14
603
+ msgid "Events with these <strong>Categories</strong>"
604
+ msgstr "Eventi con queste <strong>categorie</strong>"
605
+
606
+ #: app/view/agenda-widget-form.php:23
607
+ msgid "No categories found."
608
+ msgstr "Non è stata trovata alcuna categoria"
609
+
610
+ #: app/view/agenda-widget-form.php:30
611
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
612
+ msgstr "<strong>Oppure</strong> eventi con questi <strong>tag</strong>"
613
+
614
+ #: app/view/agenda-widget-form.php:39
615
+ msgid "No tags found."
616
+ msgstr "Non è stato trovato alcun tag"
617
+
618
+ #: app/view/agenda-widget-form.php:46
619
+ msgid "<strong>Or</strong> any of these <strong>Events</strong>"
620
+ msgstr "<strong>Oppure</strong> qualsiasi di questi <strong>eventi</strong>"
621
+
622
+ #: app/view/agenda-widget-form.php:55
623
+ msgid "No events found."
624
+ msgstr "Non è stato trovato alcun evento."
625
+
626
+ #: app/view/agenda-widget-form.php:62
627
+ msgid "Show <strong>View Calendar</strong> button"
628
+ msgstr "Mostra il pulsante <strong>Vedi calendario</strong>"
629
+
630
+ #: app/view/agenda-widget-form.php:65
631
+ msgid "Show <strong>Subscribe</strong> buttons"
632
+ msgstr "Mostra i pulsanti <strong>Sottoscrivi</strong>"
633
+
634
+ #: app/view/agenda-widget-form.php:68
635
+ msgid "Hide this widget on calendar page"
636
+ msgstr "Nascondi questo widget dalla pagina del calendario"
637
+
638
+ #: app/view/agenda-widget.php:11
639
+ msgid "There are no upcoming events."
640
+ msgstr "Non ci sono eventi imminenti"
641
+
642
+ #: app/view/agenda-widget.php:59
643
+ msgid "View Calendar »"
644
+ msgstr "Vedi calendario »"
645
+
646
+ #: app/view/agenda-widget.php:67
647
+ #: app/view/calendar.php:110
648
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
649
+ msgstr "Sottoscrivi questo calendario utilizzando i tuoi programmi favoriti (iCal, Outlook, etc.)"
650
+
651
+ #: app/view/agenda-widget.php:68
652
+ #: app/view/calendar.php:111
653
+ msgid "✔ Subscribe"
654
+ msgstr "✔ Sottoscrivi"
655
+
656
+ #: app/view/agenda-widget.php:72
657
+ #: app/view/calendar.php:116
658
+ msgid "Subscribe to this calendar in your Google Calendar"
659
+ msgstr "Sottoscrivi questo calendario nel tuo Google Calendar"
660
+
661
+ #: app/view/agenda-widget.php:74
662
+ msgid "Add to Google"
663
+ msgstr "Aggiungi a Google"
664
+
665
+ #: app/view/agenda.php:5
666
+ msgid "+ Expand All"
667
+ msgstr "+ Espandi tutto"
668
+
669
+ #: app/view/agenda.php:8
670
+ msgid "− Collapse All"
671
+ msgstr "− Comprimi tutto"
672
+
673
+ #: app/view/agenda.php:12
674
+ #: app/view/month.php:4
675
+ #: app/view/week.php:4
676
+ msgid "Today"
677
+ msgstr "Oggi"
678
+
679
+ #: app/view/agenda.php:29
680
+ msgid "There are no upcoming events to display at this time."
681
+ msgstr "Al momento non ci sono eventi imminenti da mostrare."
682
+
683
+ #: app/view/agenda.php:59
684
+ #: app/view/agenda.php:109
685
+ #: app/view/month.php:68
686
+ #: app/view/week.php:69
687
+ msgid "(all-day)"
688
+ msgstr "(tutto il giorno)"
689
+
690
+ #: app/view/agenda.php:77
691
+ msgid "Read more »"
692
+ msgstr "Leggi più »"
693
+
694
+ #: app/view/agenda.php:81
695
+ #: app/view/event-multi.php:45
696
+ #: app/view/event-single.php:57
697
+ msgid "Categories:"
698
+ msgstr "Categorie:"
699
+
700
+ #: app/view/agenda.php:87
701
+ #: app/view/event-multi.php:51
702
+ #: app/view/event-single.php:64
703
+ msgid "Tags:"
704
+ msgstr "Tag:"
705
+
706
+ #: app/view/box_event_contact.php:1
707
+ msgid "Organizer contact info"
708
+ msgstr "Informazioni per contattare l'organizzatore dell'evento"
709
+
710
+ #: app/view/box_event_contact.php:7
711
+ msgid "Contact name:"
712
+ msgstr "Nome del contatto:"
713
+
714
+ #: app/view/box_event_contact.php:17
715
+ msgid "Phone:"
716
+ msgstr "Telefono:"
717
+
718
+ #: app/view/box_event_contact.php:27
719
+ msgid "E-mail:"
720
+ msgstr "E-mail:"
721
+
722
+ #: app/view/box_event_cost.php:1
723
+ msgid "Event cost"
724
+ msgstr "Costo evento"
725
+
726
+ #: app/view/box_event_cost.php:7
727
+ msgid "Cost"
728
+ msgstr "Costo"
729
+
730
+ #: app/view/box_event_location.php:1
731
+ msgid "Event location details"
732
+ msgstr "Informazioni sul luogo dell'evento"
733
+
734
+ #: app/view/box_event_location.php:7
735
+ msgid "Venue name:"
736
+ msgstr "Nome del luogo:"
737
+
738
+ #: app/view/box_event_location.php:17
739
+ msgid "Address:"
740
+ msgstr "Indirizzo:"
741
+
742
+ #: app/view/box_event_location.php:27
743
+ msgid "Show Google Map:"
744
+ msgstr "Mostra mappa di Google:"
745
+
746
+ #: app/view/box_eventbrite.php:1
747
+ msgid "Eventbrite Ticketing"
748
+ msgstr "Biglietteria Eventbrite"
749
+
750
+ #: app/view/box_eventbrite.php:7
751
+ msgid "Register this event with Eventbrite.com?"
752
+ msgstr "Registra questo evento su Eventbrite.com?"
753
+
754
+ #: app/view/box_eventbrite.php:12
755
+ msgid "Yes"
756
+ msgstr "Si"
757
+
758
+ #: app/view/box_eventbrite.php:14
759
+ msgid "No"
760
+ msgstr "No"
761
+
762
+ #: app/view/box_eventbrite.php:22
763
+ msgid "Set up your first ticket"
764
+ msgstr "Configura il tuo primo biglietto"
765
+
766
+ #: app/view/box_eventbrite.php:24
767
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
768
+ msgstr "Per creare biglietti mutlipli per un evento, inviare questo modulo e poi seguire il link a Eventbrite."
769
+
770
+ #: app/view/box_eventbrite.php:32
771
+ msgid "Name"
772
+ msgstr "Nome"
773
+
774
+ #: app/view/box_eventbrite.php:42
775
+ msgid "Description"
776
+ msgstr "Descrizione"
777
+
778
+ #: app/view/box_eventbrite.php:53
779
+ msgid "Type"
780
+ msgstr "Tipo"
781
+
782
+ #: app/view/box_eventbrite.php:58
783
+ msgid "Set Price"
784
+ msgstr "Fissa il prezzo"
785
+
786
+ #: app/view/box_eventbrite.php:60
787
+ msgid "Donation Based"
788
+ msgstr "A donazione volontaria"
789
+
790
+ #: app/view/box_eventbrite.php:68
791
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
792
+ msgstr "Il prezzo del primo biglietto per questo evento sarà ricavato dal campo Costo di sopra."
793
+
794
+ #: app/view/box_eventbrite.php:75
795
+ msgid "Quantity"
796
+ msgstr "Quantità"
797
+
798
+ #: app/view/box_eventbrite.php:85
799
+ msgid "Include Fee in Price"
800
+ msgstr "Includi una commissione nel Prezzo "
801
+
802
+ #: app/view/box_eventbrite.php:90
803
+ msgid "Add Service Fee on top of price"
804
+ msgstr "Aggiungi una commissione di servizio sul prezzo"
805
+
806
+ #: app/view/box_eventbrite.php:92
807
+ msgid "Include Service fee in price"
808
+ msgstr "Includi una commissione di servizio nel prezzo"
809
+
810
+ #: app/view/box_eventbrite.php:98
811
+ msgid "Payment Options"
812
+ msgstr "Opzioni di pagamento"
813
+
814
+ #: app/view/box_eventbrite.php:103
815
+ msgid "Paypal"
816
+ msgstr "Paypal"
817
+
818
+ #: app/view/box_eventbrite.php:105
819
+ msgid "Google Checkout"
820
+ msgstr "Google Checkout"
821
+
822
+ #: app/view/box_eventbrite.php:107
823
+ msgid "Check"
824
+ msgstr "Assegno"
825
+
826
+ #: app/view/box_eventbrite.php:109
827
+ msgid "Cash"
828
+ msgstr "Contante"
829
+
830
+ #: app/view/box_eventbrite.php:111
831
+ msgid "Send an Invoice"
832
+ msgstr "Spedisci una Fattura"
833
+
834
+ #: app/view/box_general_settings.php:1
835
+ msgid "Viewing Events"
836
+ msgstr "Visualizzazione eventi"
837
+
838
+ #: app/view/box_general_settings.php:3
839
+ msgid "Calendar page:"
840
+ msgstr "Pagina del calendario:"
841
+
842
+ #: app/view/box_general_settings.php:7
843
+ msgid "Default calendar view:"
844
+ msgstr "Vista calendario predefinita:"
845
+
846
+ #: app/view/box_general_settings.php:12
847
+ msgid "Timezone:"
848
+ msgstr "Fuso Orario:"
849
+
850
+ #: app/view/box_general_settings.php:17
851
+ msgid "Contain calendar in this DOM element:"
852
+ msgstr "Contieni il calendario nell'elemento DOM:"
853
+
854
+ #: app/view/box_general_settings.php:19
855
+ msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
856
+ msgstr "Impostazione aggiuntiva (facoltativa). Specificare un <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">selettore jQuery</a> che dia come risultato un solo elemento DOM. Sostituisce qualsiasi elemento di markup esistente trovato all'interno della destinazione. Se viene lasciato vuoto, il calendario sarà mostrato nel contenitore di contenuto di una normale pagina."
857
+
858
+ #: app/view/box_general_settings.php:21
859
+ msgid "Week starts on"
860
+ msgstr "La settimana inizia il:"
861
+
862
+ #: app/view/box_general_settings.php:25
863
+ msgid "Agenda pages show at most"
864
+ msgstr "Le pagine dell'agenda mostrano max"
865
+
866
+ #: app/view/box_general_settings.php:26
867
+ msgid "events"
868
+ msgstr "eventi"
869
+
870
+ #: app/view/box_general_settings.php:31
871
+ msgid "Keep all events <strong>expanded</strong> in the agenda view"
872
+ msgstr "Mantieni tutti gli eventi <strong>espansi</strong> nella vista Agenda"
873
+
874
+ #: app/view/box_general_settings.php:37
875
+ msgid "<strong>Exclude</strong> events from search results"
876
+ msgstr "<strong>Escludi</strong> gli eventi dai risultati delle ricerche"
877
+
878
+ #: app/view/box_general_settings.php:43
879
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
880
+ msgstr "Mostra sopra il calendario il pulsante <strong>Pubblica i tuoi eventi</strong> agli utenti con sufficienti privilegi"
881
+
882
+ #: app/view/box_general_settings.php:49
883
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
884
+ msgstr "Nascondi i pulsanti <strong>Sottoscrivi</strong>/<strong>Aggiungi a calendario</strong> nelle visualizzazioni calendario ed evento singolo"
885
+
886
+ #: app/view/box_general_settings.php:55
887
+ msgid "Hide <strong>Google Maps</strong> until clicked"
888
+ msgstr "Nascondi <strong>Google Maps</strong> finché non viene cliccato"
889
+
890
+ #: app/view/box_general_settings.php:61
891
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
892
+ msgstr "Usa la <strong>regione</strong> impostata (impostazioni internazionali di WordPress) per influenzare la funzione di autocompletamento indirizzo"
893
+
894
+ #: app/view/box_general_settings.php:67
895
+ msgid "Include <strong>event categories</strong> in post category lists"
896
+ msgstr "Includi le <strong>categorie dell'evento</strong> nell'elenco delle categorie dei post"
897
+
898
+ #: app/view/box_general_settings.php:71
899
+ msgid "Adding/Editing Events"
900
+ msgstr "Aggiungi/Modifica eventi"
901
+
902
+ #: app/view/box_general_settings.php:73
903
+ msgid "Input dates in this format:"
904
+ msgstr "Inserisci le date in questo formato:"
905
+
906
+ #: app/view/box_general_settings.php:79
907
+ msgid "Use <strong>24h time</strong> in time pickers"
908
+ msgstr "Usa il formato <strong>24h</strong> nei selettori d'orario"
909
+
910
+ #: app/view/box_general_settings.php:85
911
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
912
+ msgstr "Mostra il pulsante <strong>Pubblica</strong> in fondo al modulo Modifica evento"
913
+
914
+ #: app/view/box_ics_import_settings.php:2
915
+ msgid "Auto-refresh"
916
+ msgstr "Auto-aggiornamento"
917
+
918
+ #: app/view/box_ics_import_settings.php:8
919
+ #: app/view/feed_row.php:3
920
+ msgid "iCalendar/.ics Feed URL:"
921
+ msgstr "iCalendar/.ics Feed URL:"
922
+
923
+ #: app/view/box_ics_import_settings.php:12
924
+ msgid "Event category"
925
+ msgstr "Categoria evento"
926
+
927
+ #: app/view/box_ics_import_settings.php:18
928
+ #: app/view/feed_row.php:15
929
+ msgid "Tag with"
930
+ msgstr "Contrassegna con"
931
+
932
+ #: app/view/box_ics_import_settings.php:22
933
+ msgid "+ Add new subscription"
934
+ msgstr "+ Aggiungi nuova sottoscrizione"
935
+
936
+ #: app/view/box_repeat.php:14
937
+ msgid "End"
938
+ msgstr "Fine"
939
+
940
+ #: app/view/box_repeat.php:21
941
+ msgid "Ending after"
942
+ msgstr "Conclusione dopo"
943
+
944
+ #: app/view/box_repeat.php:36
945
+ msgid "Apply"
946
+ msgstr "Applica"
947
+
948
+ #: app/view/box_repeat.php:37
949
+ msgid "Cancel"
950
+ msgstr "Cancella"
951
+
952
+ #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.3) #-#-#-#-#
953
+ #. Author of the plugin/theme
954
+ #: app/view/box_the_seed_studio.php:4
955
+ msgid "The Seed Studio"
956
+ msgstr "The Seed Studio"
957
+
958
+ #: app/view/box_the_seed_studio.php:7
959
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
960
+ msgstr "The Seed Studio fornisce sviluppo web e servizi di supporto per clienti e sviluppatori web."
961
+
962
+ #: app/view/box_the_seed_studio.php:14
963
+ msgid "Follow @theseednet"
964
+ msgstr "Segui @theseednet"
965
+
966
+ #: app/view/box_the_seed_studio.php:20
967
+ msgid "Get Support<span> from one of our experienced pros</span>"
968
+ msgstr "Richiedi Supporto<span> da uno dei nostri esperti professionisti</span>"
969
+
970
+ #: app/view/box_the_seed_studio.php:23
971
+ msgid "Support"
972
+ msgstr "Supporto"
973
+
974
+ #: app/view/box_the_seed_studio.php:25
975
+ msgid "View plugin documentation"
976
+ msgstr "Vedi la documentazione del plugin"
977
+
978
+ #: app/view/box_the_seed_studio.php:28
979
+ msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
980
+ msgstr "È possibile ingaggiare The Seed, con un contratto oppure a ore, per ricevere assistenza per questo plugin, per il vostro sito web o per qualsiasi altra cosa necessaria per il vostro marketing via Internet (possiamo aiutarvi veramente!)."
981
+
982
+ #: app/view/box_the_seed_studio.php:31
983
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
984
+ msgstr "Agli utenti del plugin: The Seed da priorità al supporto dei propri clienti. Per ricevere supporto gratuito, da parte di altri utenti di WordPress, è necessario cercare nel forum del plugin."
985
+
986
+ #: app/view/box_the_seed_studio.php:34
987
+ msgid "Vote and Share"
988
+ msgstr "Vota e condividi"
989
+
990
+ #: app/view/box_the_seed_studio.php:36
991
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
992
+ msgstr "Questo plugin è offerto gratuitamente alla Comunità di WordPress con licenza GPL3. Tutto ciò che chiediamo è: Tutto ciò che chiediamo è:"
993
+
994
+ #: app/view/box_the_seed_studio.php:38
995
+ msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
996
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Assegnargli cinque stelle su wordpress.org</a> (se pensate che se le meriti!)"
997
+
998
+ #: app/view/box_the_seed_studio.php:39
999
+ msgid "Link to the plugin page on our website"
1000
+ msgstr "Collegare con un link il vostro sito web alla pagina del plugin"
1001
+
1002
+ #: app/view/box_the_seed_studio.php:40
1003
+ msgid "Become a Fan on Facebook"
1004
+ msgstr "Diventare fan su Facebook"
1005
+
1006
+ #: app/view/box_the_seed_studio.php:41
1007
+ msgid "Follow us on Twitter"
1008
+ msgstr "Seguirci su Twitter"
1009
+
1010
+ #: app/view/box_the_seed_studio.php:46
1011
+ msgid "Latest from the Seed Network"
1012
+ msgstr "Ultime novità da the Seed Network"
1013
+
1014
+ #: app/view/box_time_and_date.php:2
1015
+ msgid "Event date and time"
1016
+ msgstr "Data e orario dell'evento"
1017
+
1018
+ #: app/view/box_time_and_date.php:8
1019
+ msgid "All-day event"
1020
+ msgstr "Evento che dura tutto il giorno"
1021
+
1022
+ #: app/view/box_time_and_date.php:18
1023
+ msgid "Start date / time"
1024
+ msgstr "Data/orario inizio"
1025
+
1026
+ #: app/view/box_time_and_date.php:31
1027
+ msgid "End date / time"
1028
+ msgstr "Data/orario fine"
1029
+
1030
+ #: app/view/box_time_and_date.php:46
1031
+ msgid "Repeat"
1032
+ msgstr "Ripeti"
1033
+
1034
+ #: app/view/box_time_and_date.php:60
1035
+ msgid "Exclude"
1036
+ msgstr "Escludi"
1037
+
1038
+ #: app/view/box_time_and_date.php:67
1039
+ msgid "Choose a rule for exclusion"
1040
+ msgstr "Scegliere una regola per l'esclusione"
1041
+
1042
+ #: app/view/box_time_and_date.php:73
1043
+ msgid "Exclude dates"
1044
+ msgstr "Escludi le date"
1045
+
1046
+ #: app/view/box_time_and_date.php:80
1047
+ msgid "Select date range"
1048
+ msgstr "Selezionare un intervallo di date"
1049
+
1050
+ #: app/view/box_time_and_date.php:85
1051
+ msgid "Choose specific dates to exclude"
1052
+ msgstr "Scegliere specifiche date da escludere"
1053
+
1054
+ #: app/view/calendar.php:35
1055
+ msgid "+ Post Your Event"
1056
+ msgstr "+ Pubblica il tuo evento"
1057
+
1058
+ #: app/view/calendar.php:44
1059
+ msgid "Clear Filters"
1060
+ msgstr "Pulisci i filtri"
1061
+
1062
+ #: app/view/calendar.php:44
1063
+ msgid "✘"
1064
+ msgstr "✘"
1065
+
1066
+ #: app/view/calendar.php:45
1067
+ msgid "Filter:"
1068
+ msgstr "Filtro:"
1069
+
1070
+ #: app/view/calendar.php:50
1071
+ msgid "Categories ▾"
1072
+ msgstr "Categorie ▾"
1073
+
1074
+ #: app/view/calendar.php:72
1075
+ msgid "Tags ▾"
1076
+ msgstr "Tag ▾"
1077
+
1078
+ #: app/view/calendar.php:112
1079
+ msgid "to this filtered calendar"
1080
+ msgstr "a questo calendario filtrato"
1081
+
1082
+ #: app/view/calendar.php:118
1083
+ msgid "Subscribe in Google Calendar"
1084
+ msgstr "Sottoscrivi in Google Calendar"
1085
+
1086
+ #: app/view/class-ai1ec-agenda-widget.php:18
1087
+ #: app/view/class-ai1ec-agenda-widget.php:39
1088
+ msgid "Upcoming Events"
1089
+ msgstr "Prossimi eventi"
1090
+
1091
+ #: app/view/class-ai1ec-agenda-widget.php:20
1092
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1093
+ msgstr "All-in-One Event Calendar: Elenca prossimi eventi in visualizzazione Agenda"
1094
+
1095
+ #: app/view/event-excerpt.php:2
1096
+ #: app/view/event-multi.php:4
1097
+ #: app/view/event-single.php:5
1098
+ msgid "When:"
1099
+ msgstr "Quando:"
1100
+
1101
+ #: app/view/event-excerpt.php:4
1102
+ #: app/view/event-multi.php:20
1103
+ #: app/view/event-single.php:25
1104
+ msgid "Where:"
1105
+ msgstr "Dove:"
1106
+
1107
+ #: app/view/event-map.php:2
1108
+ msgid "Click to view map"
1109
+ msgstr "Cliccare per vedere la mappa"
1110
+
1111
+ #: app/view/event-map.php:9
1112
+ msgid "View Full-Size Map »"
1113
+ msgstr "Vedi Mappa Intera »"
1114
+
1115
+ #: app/view/event-multi.php:7
1116
+ msgid "View in Calendar »"
1117
+ msgstr "Vedi nel calendario »"
1118
+
1119
+ #: app/view/event-multi.php:14
1120
+ #: app/view/event-single.php:15
1121
+ msgid "Repeats:"
1122
+ msgstr "Ripeti:"
1123
+
1124
+ #: app/view/event-multi.php:24
1125
+ msgid "View Map »"
1126
+ msgstr "Vedi mappa »"
1127
+
1128
+ #: app/view/event-multi.php:33
1129
+ #: app/view/event-single.php:45
1130
+ msgid "Cost:"
1131
+ msgstr "Costo:"
1132
+
1133
+ #: app/view/event-multi.php:39
1134
+ #: app/view/event-single.php:51
1135
+ msgid "Contact:"
1136
+ msgstr "Contatto:"
1137
+
1138
+ #: app/view/event-single-footer.php:4
1139
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1140
+ msgstr "Questo post è stato replicato dal <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">feed del calendario</a> di un altro sito."
1141
+
1142
+ #: app/view/event-single-footer.php:8
1143
+ msgid "View original post »"
1144
+ msgstr "Vedi post originale »"
1145
+
1146
+ #: app/view/event-single.php:8
1147
+ msgid "Back to Calendar »"
1148
+ msgstr "Torna al calendario »"
1149
+
1150
+ #: app/view/event-single.php:21
1151
+ msgid "Excluding:"
1152
+ msgstr "Escluso:"
1153
+
1154
+ #: app/view/event-single.php:32
1155
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
1156
+ msgstr "Aggiungi questo evento al tuo programma calendario preferito (iCal, Outlook, etc.)"
1157
+
1158
+ #: app/view/event-single.php:33
1159
+ msgid "✔ Add to Calendar"
1160
+ msgstr "✔ Aggiungi al calendario"
1161
+
1162
+ #: app/view/event-single.php:36
1163
+ msgid "Add this event to your Google Calendar"
1164
+ msgstr "Aggiungi questo evento al tuo Google Calendar"
1165
+
1166
+ #: app/view/event-single.php:38
1167
+ msgid "Add to Google Calendar"
1168
+ msgstr "Aggiungi a Google Calendar"
1169
+
1170
+ #: app/view/event_categories-color_picker.php:5
1171
+ #: app/view/event_categories-color_picker.php:19
1172
+ msgid "Category Color"
1173
+ msgstr "Colore della categoria"
1174
+
1175
+ #: app/view/event_categories-color_picker.php:13
1176
+ #: app/view/event_categories-color_picker.php:25
1177
+ msgid "Events in this category will be identified by this color"
1178
+ msgstr "Gli eventi in questa categoria saranno identificati da questo colore"
1179
+
1180
+ #: app/view/feed_row.php:9
1181
+ msgid "Event category:"
1182
+ msgstr "Categoria evento:"
1183
+
1184
+ #: app/view/feed_row.php:19
1185
+ msgid "× Delete"
1186
+ msgstr "× Cancella"
1187
+
1188
+ #: app/view/import.php:6
1189
+ msgid "Successfully imported events:"
1190
+ msgstr "Eventi importati correttamente:"
1191
+
1192
+ #: app/view/month.php:50
1193
+ #: app/view/week.php:55
1194
+ #: app/view/week.php:127
1195
+ msgid "Summary:"
1196
+ msgstr "Sommario:"
1197
+
1198
+ #: app/view/month.php:53
1199
+ #: app/view/week.php:58
1200
+ #: app/view/week.php:130
1201
+ msgid "click anywhere for details"
1202
+ msgstr "cliccare ovunque per i dettagli"
1203
+
1204
+ #: app/view/row_daily.php:3
1205
+ #: app/view/row_monthly.php:3
1206
+ #: app/view/row_monthly.php:22
1207
+ #: app/view/row_weekly.php:3
1208
+ #: app/view/row_yearly.php:3
1209
+ msgid "Every"
1210
+ msgstr "Ogni"
1211
+
1212
+ #: app/view/row_monthly.php:9
1213
+ msgid "On day of the month"
1214
+ msgstr "Il giorno del mese"
1215
+
1216
+ #: app/view/row_monthly.php:13
1217
+ msgid "On day of the week"
1218
+ msgstr "Il giorno della settimana"
1219
+
1220
+ #: app/view/row_weekly.php:6
1221
+ msgctxt "Recurrence editor - weekly tab"
1222
+ msgid "On"
1223
+ msgstr "Il"
1224
+
1225
+ #: app/view/row_yearly.php:7
1226
+ msgctxt "Recurrence editor - yearly tab"
1227
+ msgid "In"
1228
+ msgstr "In"
1229
+
1230
+ #: app/view/settings.php:5
1231
+ msgid "All-in-one Event Calendar"
1232
+ msgstr "All-in-one Event Calendar"
1233
+
1234
+ #: app/view/settings.php:16
1235
+ msgid "Update Settings"
1236
+ msgstr "Aggiorna impostazioni"
1237
+
1238
+ #: app/view/week.php:33
1239
+ msgid "All-day"
1240
+ msgstr "Tutto il giorno"
1241
+
1242
+ #. Plugin Name of the plugin/theme
1243
+ msgid "All-in-One Event Calendar"
1244
+ msgstr "All-in-One Event Calendar"
1245
+
1246
+ #. Plugin URI of the plugin/theme
1247
+ msgid "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1248
+ msgstr "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1249
+
1250
+ #. Description of the plugin/theme
1251
+ msgid "An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
1252
+ msgstr "Un sistema di calendario eventi con visualizzazioni mensili, settimanali e agenda, widget per eventi imminenti, categorie codificate per colore, ricorrenze ed importazione/esportazione di feed .ics."
1253
+
1254
+ #. Author URI of the plugin/theme
1255
+ msgid "http://theseednetwork.com/"
1256
+ msgstr "http://theseednetwork.com/"
1257
+
1258
+ #~ msgid "Each"
1259
+ #~ msgstr "Ognuno"
1260
+
1261
+ #~ msgid "Categories"
1262
+ #~ msgstr "Categorie"
1263
+
1264
+ #~ msgid "Tags"
1265
+ #~ msgstr "Tag"
language/all-in-one-event-calendar-nb_NO.mo ADDED
Binary file
language/all-in-one-event-calendar-nb_NO.po ADDED
@@ -0,0 +1,1503 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: All-in-One Event Calendar Plugin 1.1\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
5
+ "POT-Creation-Date: 2011-11-18 01:32:36+00:00\n"
6
+ "PO-Revision-Date: 2012-04-02 17:58+0200\n"
7
+ "Last-Translator: Yani Iliev <yani@the-seed.ca>\n"
8
+ "Language-Team: LANGUAGE <LL@li.org>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
+ "X-Textdomain-Support: yes\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #@ all-in-one-event-calendar
19
+ #: app/model/class-ai1ec-event.php:487
20
+ msgid " (all-day)"
21
+ msgstr "hele dagen"
22
+
23
+ #@ all-in-one-event-calendar
24
+ #: app/helper/class-ai1ec-settings-helper.php:85
25
+ msgid "- Auto-Create New Page -"
26
+ msgstr "- Opprett automatisk Ny Side -"
27
+
28
+ #@ all-in-one-event-calendar
29
+ #: app/helper/class-ai1ec-settings-helper.php:107
30
+ #, php-format
31
+ msgid "View \"%s\" »"
32
+ msgstr "Vis \"%s\" »"
33
+
34
+ #@ all-in-one-event-calendar
35
+ #: app/helper/class-ai1ec-settings-helper.php:149
36
+ #: app/view/calendar.php:11
37
+ #: app/view/calendar.php:12
38
+ #: app/view/calendar.php:25
39
+ msgid "Month"
40
+ msgstr "Måned"
41
+
42
+ #@ all-in-one-event-calendar
43
+ #: app/controller/class-ai1ec-calendar-controller.php:383
44
+ #: app/helper/class-ai1ec-settings-helper.php:155
45
+ #: app/view/calendar.php:26
46
+ msgid "Agenda"
47
+ msgstr "Liste"
48
+
49
+ #@ all-in-one-event-calendar
50
+ #: app/helper/class-ai1ec-settings-helper.php:204
51
+ msgid "Default (d/m/y)"
52
+ msgstr "Standard (d/m/å)"
53
+
54
+ #@ all-in-one-event-calendar
55
+ #: app/helper/class-ai1ec-settings-helper.php:207
56
+ msgid "US (m/d/y)"
57
+ msgstr "US (m/d/y)"
58
+
59
+ # all-in-one-event-calendar
60
+ #@ all-in-one-event-calendar
61
+ #: app/helper/class-ai1ec-settings-helper.php:210
62
+ msgid "ISO 8601 (y-m-d)"
63
+ msgstr "ISO 8601 (å-m-d)"
64
+
65
+ #@ all-in-one-event-calendar
66
+ #: app/helper/class-ai1ec-settings-helper.php:213
67
+ msgid "Dotted (m.d.y)"
68
+ msgstr "Punktum (m.d.å)"
69
+
70
+ #@ all-in-one-event-calendar
71
+ #: app/helper/class-ai1ec-settings-helper.php:231
72
+ msgid "Hourly"
73
+ msgstr "Hver time"
74
+
75
+ #@ all-in-one-event-calendar
76
+ #: app/helper/class-ai1ec-settings-helper.php:234
77
+ msgid "Twice Daily"
78
+ msgstr "To ganger daglig"
79
+
80
+ #@ all-in-one-event-calendar
81
+ #: app/helper/class-ai1ec-events-helper.php:554
82
+ #: app/helper/class-ai1ec-events-helper.php:573
83
+ #: app/helper/class-ai1ec-events-helper.php:1502
84
+ #: app/helper/class-ai1ec-settings-helper.php:237
85
+ #: app/view/box_time_and_date.php:58
86
+ msgid "Daily"
87
+ msgstr "Daglig"
88
+
89
+ #@ all-in-one-event-calendar
90
+ #: app/helper/class-ai1ec-settings-helper.php:321
91
+ msgid "Calendar"
92
+ msgstr "Kalender"
93
+
94
+ #@ all-in-one-event-calendar
95
+ #: app/helper/class-ai1ec-app-helper.php:147
96
+ msgctxt "Custom post type name"
97
+ msgid "Events"
98
+ msgstr "Hendelser"
99
+
100
+ #@ all-in-one-event-calendar
101
+ #: app/helper/class-ai1ec-app-helper.php:148
102
+ msgctxt "Custom post type name (singular)"
103
+ msgid "Event"
104
+ msgstr "Hendelse"
105
+
106
+ #@ all-in-one-event-calendar
107
+ #: app/helper/class-ai1ec-app-helper.php:149
108
+ msgid "Add New"
109
+ msgstr "Tilføy ny"
110
+
111
+ #@ all-in-one-event-calendar
112
+ #: app/helper/class-ai1ec-app-helper.php:150
113
+ msgid "Add New Event"
114
+ msgstr "Tilføy ny Hendelse"
115
+
116
+ #@ all-in-one-event-calendar
117
+ #: app/helper/class-ai1ec-app-helper.php:151
118
+ msgid "Edit Event"
119
+ msgstr "Rediger Hendelse"
120
+
121
+ #@ all-in-one-event-calendar
122
+ #: app/helper/class-ai1ec-app-helper.php:152
123
+ msgid "New Event"
124
+ msgstr "Ny Hendelse"
125
+
126
+ #@ all-in-one-event-calendar
127
+ #: app/helper/class-ai1ec-app-helper.php:153
128
+ msgid "View Event"
129
+ msgstr "Vis Hendelse"
130
+
131
+ #@ all-in-one-event-calendar
132
+ #: app/helper/class-ai1ec-app-helper.php:154
133
+ msgid "Search Events"
134
+ msgstr "Søk Hendelse"
135
+
136
+ #@ all-in-one-event-calendar
137
+ #: app/helper/class-ai1ec-app-helper.php:155
138
+ msgid "No Events found"
139
+ msgstr "Ingen Hendelser funnet"
140
+
141
+ #@ all-in-one-event-calendar
142
+ #: app/helper/class-ai1ec-app-helper.php:156
143
+ msgid "No Events found in Trash"
144
+ msgstr "Ingen Hendelser funnet i papirkurven"
145
+
146
+ #@ all-in-one-event-calendar
147
+ #: app/helper/class-ai1ec-app-helper.php:157
148
+ msgid "Parent Event"
149
+ msgstr "Overordnet Hendelse"
150
+
151
+ #@ all-in-one-event-calendar
152
+ #: app/helper/class-ai1ec-app-helper.php:158
153
+ msgid "Events"
154
+ msgstr "Hendelser"
155
+
156
+ #@ all-in-one-event-calendar
157
+ #: app/helper/class-ai1ec-app-helper.php:205
158
+ msgctxt "Event categories taxonomy"
159
+ msgid "Event Categories"
160
+ msgstr "Hendelseskategorier"
161
+
162
+ #@ all-in-one-event-calendar
163
+ #: app/helper/class-ai1ec-app-helper.php:206
164
+ msgctxt "Event categories taxonomy (singular)"
165
+ msgid "Event Category"
166
+ msgstr "Hendelseskategori"
167
+
168
+ #@ all-in-one-event-calendar
169
+ #: app/helper/class-ai1ec-app-helper.php:213
170
+ msgctxt "Event tags taxonomy"
171
+ msgid "Event Tags"
172
+ msgstr "Hendelses tags"
173
+
174
+ #@ all-in-one-event-calendar
175
+ #: app/helper/class-ai1ec-app-helper.php:214
176
+ msgctxt "Event tags taxonomy (singular)"
177
+ msgid "Event Tag"
178
+ msgstr "Tag for Hendelse"
179
+
180
+ #@ all-in-one-event-calendar
181
+ #: app/helper/class-ai1ec-app-helper.php:313
182
+ #, php-format
183
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
184
+ msgstr "Alle Hendelser<span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
185
+
186
+ #@ all-in-one-event-calendar
187
+ #: app/helper/class-ai1ec-app-helper.php:319
188
+ msgid "All Events"
189
+ msgstr "Alle Hendelser"
190
+
191
+ #@ all-in-one-event-calendar
192
+ #: app/helper/class-ai1ec-app-helper.php:395
193
+ msgid "Event Details"
194
+ msgstr "Hendelsesdetaljer"
195
+
196
+ #@ all-in-one-event-calendar
197
+ #: app/helper/class-ai1ec-app-helper.php:428
198
+ msgid "Post Date"
199
+ msgstr "Dato for opprettelse"
200
+
201
+ #@ all-in-one-event-calendar
202
+ #: app/helper/class-ai1ec-app-helper.php:429
203
+ msgid "Event date/time"
204
+ msgstr "Dato/tid for Hendelse"
205
+
206
+ #@ all-in-one-event-calendar
207
+ #: app/helper/class-ai1ec-app-helper.php:653
208
+ #, php-format
209
+ msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
210
+ msgstr "%sFor oppsett af plugin: %s 1. Velg en mulighet i <strong>Calendar page</strong> dropdown listen. %s 2. Velg en mulighet i <strong>Tidssone</strong> dropdown listen. %s 3. Klikk <strong>Oppdater innstillinger</strong>. %s"
211
+
212
+ #@ all-in-one-event-calendar
213
+ #: app/helper/class-ai1ec-app-helper.php:655
214
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
215
+ msgstr "Oppsett av denne pluginen: Velg en innstilling i <strong>Kalendersidens</strong> dropdown liste, og klikk deretter på<strong>Oppdater innstillinger</strong>."
216
+
217
+ #@ all-in-one-event-calendar
218
+ #: app/helper/class-ai1ec-app-helper.php:657
219
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
220
+ msgstr "Oppsett af denne pluginen: Velg en innstilling i <strong>Tidssone</strong> dropdown liste, og klikk deretter <strong>Oppdater innstillinger</strong>."
221
+
222
+ #@ all-in-one-event-calendar
223
+ #: app/helper/class-ai1ec-app-helper.php:661
224
+ #, php-format
225
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
226
+ msgstr "Pluginen er innstallert, men ennå ikke konfigureret. <a href=\"%s\">Klikk her for å sette det opp nå »</a>"
227
+
228
+ #@ all-in-one-event-calendar
229
+ #: app/helper/class-ai1ec-app-helper.php:667
230
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
231
+ msgstr "Pluginen er installert, men ennå ikke konfigurert. Logg inn som administrator for at sette det opp."
232
+
233
+ #@ all-in-one-event-calendar
234
+ #: app/helper/class-ai1ec-calendar-helper.php:759
235
+ msgid "« Previous Events"
236
+ msgstr "« Forrige Hendelse"
237
+
238
+ #@ all-in-one-event-calendar
239
+ #: app/helper/class-ai1ec-calendar-helper.php:766
240
+ msgid "Next Events »"
241
+ msgstr "Neste Hendelse »"
242
+
243
+ #@ all-in-one-event-calendar
244
+ #: app/helper/class-ai1ec-events-helper.php:319
245
+ #: app/helper/class-ai1ec-events-helper.php:341
246
+ msgid "No repeat"
247
+ msgstr "Ingen gjentagelser"
248
+
249
+ #@ all-in-one-event-calendar
250
+ #: app/helper/class-ai1ec-events-helper.php:320
251
+ #: app/helper/class-ai1ec-events-helper.php:342
252
+ msgid "Every day"
253
+ msgstr "Hver dag"
254
+
255
+ #@ all-in-one-event-calendar
256
+ #: app/helper/class-ai1ec-events-helper.php:321
257
+ #: app/helper/class-ai1ec-events-helper.php:343
258
+ msgid "Every week"
259
+ msgstr "Hver uke"
260
+
261
+ #@ all-in-one-event-calendar
262
+ #: app/helper/class-ai1ec-events-helper.php:322
263
+ #: app/helper/class-ai1ec-events-helper.php:344
264
+ msgid "Every month"
265
+ msgstr "Hver måned"
266
+
267
+ #@ all-in-one-event-calendar
268
+ #: app/helper/class-ai1ec-events-helper.php:323
269
+ #: app/helper/class-ai1ec-events-helper.php:345
270
+ msgid "Every year"
271
+ msgstr "Hvert år"
272
+
273
+ #@ all-in-one-event-calendar
274
+ #: app/helper/class-ai1ec-events-helper.php:325
275
+ #: app/helper/class-ai1ec-events-helper.php:347
276
+ msgid "Custom..."
277
+ msgstr "Brukerdefineret..."
278
+
279
+ #@ all-in-one-event-calendar
280
+ #: app/helper/class-ai1ec-events-helper.php:468
281
+ msgid "first"
282
+ msgstr "første"
283
+
284
+ #@ all-in-one-event-calendar
285
+ #: app/helper/class-ai1ec-events-helper.php:469
286
+ msgid "second"
287
+ msgstr "andre"
288
+
289
+ #@ all-in-one-event-calendar
290
+ #: app/helper/class-ai1ec-events-helper.php:470
291
+ msgid "third"
292
+ msgstr "tredje"
293
+
294
+ #@ all-in-one-event-calendar
295
+ #: app/helper/class-ai1ec-events-helper.php:471
296
+ msgid "fourth"
297
+ msgstr "fjerde"
298
+
299
+ #@ all-in-one-event-calendar
300
+ #: app/helper/class-ai1ec-events-helper.php:473
301
+ msgid "last"
302
+ msgstr "siste"
303
+
304
+ #@ all-in-one-event-calendar
305
+ #: app/helper/class-ai1ec-events-helper.php:478
306
+ msgid "Sunday"
307
+ msgstr "Søndag"
308
+
309
+ #@ all-in-one-event-calendar
310
+ #: app/helper/class-ai1ec-events-helper.php:479
311
+ msgid "Monday"
312
+ msgstr "Mandag"
313
+
314
+ #@ all-in-one-event-calendar
315
+ #: app/helper/class-ai1ec-events-helper.php:480
316
+ msgid "Tuesday"
317
+ msgstr "Tirsdag"
318
+
319
+ #@ all-in-one-event-calendar
320
+ #: app/helper/class-ai1ec-events-helper.php:481
321
+ msgid "Wednesday"
322
+ msgstr "Onsdag"
323
+
324
+ #@ all-in-one-event-calendar
325
+ #: app/helper/class-ai1ec-events-helper.php:482
326
+ msgid "Thursday"
327
+ msgstr "Torsdag"
328
+
329
+ #@ all-in-one-event-calendar
330
+ #: app/helper/class-ai1ec-events-helper.php:483
331
+ msgid "Friday"
332
+ msgstr "Fredag"
333
+
334
+ #@ all-in-one-event-calendar
335
+ #: app/helper/class-ai1ec-events-helper.php:484
336
+ msgid "Saturday"
337
+ msgstr "Lørdag"
338
+
339
+ #@ all-in-one-event-calendar
340
+ #: app/helper/class-ai1ec-events-helper.php:486
341
+ msgid "day"
342
+ msgstr "dag"
343
+
344
+ #@ all-in-one-event-calendar
345
+ #: app/helper/class-ai1ec-events-helper.php:487
346
+ msgid "weekday"
347
+ msgstr "ukedag"
348
+
349
+ #@ all-in-one-event-calendar
350
+ #: app/helper/class-ai1ec-events-helper.php:488
351
+ msgid "weekend day"
352
+ msgstr "dag i weekenden"
353
+
354
+ #@ all-in-one-event-calendar
355
+ #: app/helper/class-ai1ec-events-helper.php:555
356
+ #: app/helper/class-ai1ec-events-helper.php:574
357
+ #: app/helper/class-ai1ec-events-helper.php:1514
358
+ #: app/view/box_time_and_date.php:59
359
+ msgid "Weekly"
360
+ msgstr "Ukentlig"
361
+
362
+ #@ all-in-one-event-calendar
363
+ #: app/helper/class-ai1ec-events-helper.php:556
364
+ #: app/helper/class-ai1ec-events-helper.php:575
365
+ #: app/helper/class-ai1ec-events-helper.php:1526
366
+ #: app/view/box_time_and_date.php:60
367
+ msgid "Monthly"
368
+ msgstr "Månedlig"
369
+
370
+ #@ all-in-one-event-calendar
371
+ #: app/helper/class-ai1ec-events-helper.php:557
372
+ #: app/helper/class-ai1ec-events-helper.php:576
373
+ #: app/helper/class-ai1ec-events-helper.php:1538
374
+ #: app/view/box_time_and_date.php:61
375
+ msgid "Yearly"
376
+ msgstr "Årlig"
377
+
378
+ #@ all-in-one-event-calendar
379
+ #: app/helper/class-ai1ec-events-helper.php:598
380
+ msgid "day(s)"
381
+ msgstr "dag(e)"
382
+
383
+ #@ all-in-one-event-calendar
384
+ #: app/helper/class-ai1ec-events-helper.php:627
385
+ msgid "week(s)"
386
+ msgstr "uke(r)"
387
+
388
+ #@ all-in-one-event-calendar
389
+ #: app/helper/class-ai1ec-events-helper.php:697
390
+ msgid "month(s)"
391
+ msgstr "måned(er)"
392
+
393
+ #@ all-in-one-event-calendar
394
+ #: app/helper/class-ai1ec-events-helper.php:720
395
+ msgid "year(s)"
396
+ msgstr "år"
397
+
398
+ #@ all-in-one-event-calendar
399
+ #: app/helper/class-ai1ec-events-helper.php:1300
400
+ msgid "Never"
401
+ msgstr "Aldri"
402
+
403
+ #@ all-in-one-event-calendar
404
+ #: app/helper/class-ai1ec-events-helper.php:1301
405
+ msgid "After"
406
+ msgstr "Etter"
407
+
408
+ #@ all-in-one-event-calendar
409
+ #: app/helper/class-ai1ec-events-helper.php:1302
410
+ #: app/view/box_time_and_date.php:84
411
+ msgid "On date"
412
+ msgstr "På datoen"
413
+
414
+ #@ all-in-one-event-calendar
415
+ #: app/helper/class-ai1ec-events-helper.php:1386
416
+ #: app/helper/class-ai1ec-events-helper.php:1415
417
+ #: app/helper/class-ai1ec-events-helper.php:1453
418
+ msgid "and"
419
+ msgstr "og"
420
+
421
+ #@ all-in-one-event-calendar
422
+ #: app/helper/class-ai1ec-events-helper.php:1411
423
+ #: app/helper/class-ai1ec-events-helper.php:1418
424
+ #: app/helper/class-ai1ec-events-helper.php:1424
425
+ msgid "of the month"
426
+ msgstr "i måneden"
427
+
428
+ #@ all-in-one-event-calendar
429
+ #: app/helper/class-ai1ec-events-helper.php:1505
430
+ msgid "Every other day"
431
+ msgstr "Hver andre dag"
432
+
433
+ #@ all-in-one-event-calendar
434
+ #: app/helper/class-ai1ec-events-helper.php:1507
435
+ #, php-format
436
+ msgid "Every %d days"
437
+ msgstr "Hver % dag"
438
+
439
+ #@ all-in-one-event-calendar
440
+ #: app/helper/class-ai1ec-events-helper.php:1517
441
+ msgid "Every other week"
442
+ msgstr "Hver andre uke"
443
+
444
+ #@ all-in-one-event-calendar
445
+ #: app/helper/class-ai1ec-events-helper.php:1519
446
+ #, php-format
447
+ msgid "Every %d weeks"
448
+ msgstr "Hver % uke"
449
+
450
+ #@ all-in-one-event-calendar
451
+ #: app/helper/class-ai1ec-events-helper.php:1529
452
+ msgid "Every other month"
453
+ msgstr "Hver andre måned"
454
+
455
+ #@ all-in-one-event-calendar
456
+ #: app/helper/class-ai1ec-events-helper.php:1531
457
+ #, php-format
458
+ msgid "Every %d months"
459
+ msgstr "Hver % måned"
460
+
461
+ #@ all-in-one-event-calendar
462
+ #: app/helper/class-ai1ec-events-helper.php:1541
463
+ msgid "Every other year"
464
+ msgstr "Hvert andre år"
465
+
466
+ #@ all-in-one-event-calendar
467
+ #: app/helper/class-ai1ec-events-helper.php:1543
468
+ #, php-format
469
+ msgid "Every %d years"
470
+ msgstr "Hvert % år"
471
+
472
+ #@ all-in-one-event-calendar
473
+ #: app/helper/class-ai1ec-events-helper.php:1563
474
+ #, php-format
475
+ msgid "until %s"
476
+ msgstr "inntil %s"
477
+
478
+ #@ all-in-one-event-calendar
479
+ #: app/helper/class-ai1ec-events-helper.php:1566
480
+ #, php-format
481
+ msgid "for %d occurrences"
482
+ msgstr "i % forekomster"
483
+
484
+ #@ all-in-one-event-calendar
485
+ #: app/helper/class-ai1ec-events-helper.php:1568
486
+ msgid "forever"
487
+ msgstr "alltid"
488
+
489
+ #@ all-in-one-event-calendar
490
+ #: app/controller/class-ai1ec-settings-controller.php:82
491
+ msgid "Settings Updated."
492
+ msgstr "Innstillinger oppdatert."
493
+
494
+ #@ all-in-one-event-calendar
495
+ #: app/controller/class-ai1ec-settings-controller.php:173
496
+ #, php-format
497
+ msgid "Flushed %d events"
498
+ msgstr "% Hendelse slettet"
499
+
500
+ #@ all-in-one-event-calendar
501
+ #: app/controller/class-ai1ec-settings-controller.php:221
502
+ #, php-format
503
+ msgid "Imported %d events"
504
+ msgstr "% Hendelse importeret"
505
+
506
+ #@ all-in-one-event-calendar
507
+ #: app/controller/class-ai1ec-settings-controller.php:222
508
+ #: app/view/feed_row.php:22
509
+ #, php-format
510
+ msgid "Flush 1 event"
511
+ msgid_plural "Flush %s events"
512
+ msgstr[0] "Slett 1 Hendelse"
513
+ msgstr[1] "Slett % Hendelser"
514
+
515
+ #@ all-in-one-event-calendar
516
+ #: app/controller/class-ai1ec-settings-controller.php:274
517
+ msgctxt "meta box"
518
+ msgid "General Settings"
519
+ msgstr "Generelle innstillinger"
520
+
521
+ #@ all-in-one-event-calendar
522
+ #: app/controller/class-ai1ec-settings-controller.php:282
523
+ msgctxt "meta box"
524
+ msgid "The Seed Studio Support"
525
+ msgstr "The Seed Studio Support"
526
+
527
+ #@ all-in-one-event-calendar
528
+ #: app/controller/class-ai1ec-settings-controller.php:289
529
+ msgctxt "meta box"
530
+ msgid "ICS Import Settings"
531
+ msgstr "ICS Import Innstillinger"
532
+
533
+ #@ all-in-one-event-calendar
534
+ #: app/controller/class-ai1ec-settings-controller.php:338
535
+ #, php-format
536
+ msgid "<a href=\"%s\">Settings</a>"
537
+ msgstr "<a href=\"%s\">Innstillinger</a>"
538
+
539
+ #@ all-in-one-event-calendar
540
+ #: app/controller/class-ai1ec-settings-controller.php:352
541
+ #, php-format
542
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
543
+ msgstr "<a href=\"%s\" target=\"_blank\">Doner</a>"
544
+
545
+ #@ all-in-one-event-calendar
546
+ #: app/controller/class-ai1ec-settings-controller.php:353
547
+ #, php-format
548
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
549
+ msgstr "<a href=\"%s\" target=\"_blank\">Få hjelp</a>"
550
+
551
+ #@ all-in-one-event-calendar
552
+ #: app/controller/class-ai1ec-events-controller.php:149
553
+ msgid "This feed is already being imported."
554
+ msgstr "Dette feedet blir allerede importert."
555
+
556
+ #@ all-in-one-event-calendar
557
+ #: app/controller/class-ai1ec-events-controller.php:150
558
+ msgid "Please enter a valid iCalendar URL."
559
+ msgstr "Vennligst sett inn en gjeldende iCalendar webadresse (URL)."
560
+
561
+ #@ all-in-one-event-calendar
562
+ #: app/controller/class-ai1ec-events-controller.php:285
563
+ msgid "times"
564
+ msgstr "ganger"
565
+
566
+ #@ all-in-one-event-calendar
567
+ #: app/controller/class-ai1ec-events-controller.php:334
568
+ msgid "Publish"
569
+ msgstr "Publiser"
570
+
571
+ #@ all-in-one-event-calendar
572
+ #: app/controller/class-ai1ec-events-controller.php:334
573
+ #: app/view/feed_row.php:20
574
+ msgid "Update"
575
+ msgstr "Oppdater"
576
+
577
+ #@ all-in-one-event-calendar
578
+ #: app/controller/class-ai1ec-events-controller.php:336
579
+ msgid "Submit for Review"
580
+ msgstr "Innsend til bedømmelse"
581
+
582
+ #@ all-in-one-event-calendar
583
+ #: app/controller/class-ai1ec-events-controller.php:449
584
+ #, php-format
585
+ msgid "Event updated. <a href=\"%s\">View event</a>"
586
+ msgstr "Hendelse oppdatert. <a href=\"%s\">Vis begivenhet</a>"
587
+
588
+ #@ all-in-one-event-calendar
589
+ #: app/controller/class-ai1ec-events-controller.php:450
590
+ msgid "Custom field updated."
591
+ msgstr "Brukerdefineret felt er oppdatert."
592
+
593
+ #@ all-in-one-event-calendar
594
+ #: app/controller/class-ai1ec-events-controller.php:451
595
+ msgid "Custom field deleted."
596
+ msgstr "Brukerdefinert felt er slettet."
597
+
598
+ #@ all-in-one-event-calendar
599
+ #: app/controller/class-ai1ec-events-controller.php:452
600
+ msgid "Event updated."
601
+ msgstr "Hendelseer oppdatert."
602
+
603
+ #@ all-in-one-event-calendar
604
+ #. translators: %s: date and time of the revision
605
+ #: app/controller/class-ai1ec-events-controller.php:454
606
+ #, php-format
607
+ msgid "Event restored to revision from %s"
608
+ msgstr "Hendelse gjendannet til revision av %s"
609
+
610
+ #@ all-in-one-event-calendar
611
+ #: app/controller/class-ai1ec-events-controller.php:455
612
+ #, php-format
613
+ msgid "Event published. <a href=\"%s\">View event</a>"
614
+ msgstr "Hendelse publisert. <a href=\"%s\">Vis Hendelse</a>"
615
+
616
+ #@ default
617
+ #: app/controller/class-ai1ec-events-controller.php:456
618
+ msgid "Event saved."
619
+ msgstr "Hendelse lagret."
620
+
621
+ #@ all-in-one-event-calendar
622
+ #: app/controller/class-ai1ec-events-controller.php:457
623
+ #, php-format
624
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
625
+ msgstr "Hendelse innsendt.. <a target=\"_blank\" href=\"%s\">Forhåndsvisning av Hendelse</a>"
626
+
627
+ #@ all-in-one-event-calendar
628
+ #: app/controller/class-ai1ec-events-controller.php:458
629
+ #, php-format
630
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
631
+ msgstr "Hendelse planlagt for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Forhåndsvisning av Hendelse</a"
632
+
633
+ #@ all-in-one-event-calendar
634
+ #: app/controller/class-ai1ec-events-controller.php:460
635
+ msgid "M j, Y @ G:i"
636
+ msgstr "M j, Y kl. G:i"
637
+
638
+ #@ all-in-one-event-calendar
639
+ #: app/controller/class-ai1ec-events-controller.php:461
640
+ #, php-format
641
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
642
+ msgstr "Utkast til Hendelse er oppatert <a target=\"_blank\" href=\"%s\">Forhåndsvisning</a>"
643
+
644
+ #@ all-in-one-event-calendar
645
+ #: app/controller/class-ai1ec-app-controller.php:354
646
+ #: app/controller/class-ai1ec-app-controller.php:355
647
+ msgid "Settings"
648
+ msgstr "Innstillinger"
649
+
650
+ #@ all-in-one-event-calendar
651
+ #: app/controller/class-ai1ec-importer-controller.php:91
652
+ msgid "The Events Calendar → All-in-One Event Calendar"
653
+ msgstr "Hendelseskalenderen → All-in-One Event Calendar"
654
+
655
+ #@ all-in-one-event-calendar
656
+ #: app/controller/class-ai1ec-importer-controller.php:92
657
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
658
+ msgstr "Importerer Hendelseoppettet med \\\"The Events Calendar\\\" plugin (eldre utgave) til All-in-One-Event Calendar"
659
+
660
+ #@ all-in-one-event-calendar
661
+ #: app/view/event-excerpt.php:2
662
+ #: app/view/event-multi.php:4
663
+ #: app/view/event-single.php:5
664
+ msgid "When:"
665
+ msgstr "Når:"
666
+
667
+ #@ all-in-one-event-calendar
668
+ #: app/view/event-single.php:8
669
+ msgid "Back to Calendar »"
670
+ msgstr "Tilbake til kalender »"
671
+
672
+ #@ all-in-one-event-calendar
673
+ #: app/view/event-multi.php:14
674
+ #: app/view/event-single.php:15
675
+ msgid "Repeats:"
676
+ msgstr "Gjentakelser:"
677
+
678
+ #@ all-in-one-event-calendar
679
+ #: app/view/event-excerpt.php:4
680
+ #: app/view/event-multi.php:20
681
+ #: app/view/event-single.php:20
682
+ msgid "Where:"
683
+ msgstr "Hvor:"
684
+
685
+ #@ all-in-one-event-calendar
686
+ #: app/view/event-single.php:27
687
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
688
+ msgstr "Tilføy denne Hendelsen i ditt foretrukne kalenderprogram (iCal, Outlook, Windows Kalender etc.)"
689
+
690
+ #@ all-in-one-event-calendar
691
+ #: app/view/event-single.php:28
692
+ msgid "✔ Add to Calendar"
693
+ msgstr "✔ Tilføy i min kalender"
694
+
695
+ #@ all-in-one-event-calendar
696
+ #: app/view/event-single.php:31
697
+ msgid "Add this event to your Google Calendar"
698
+ msgstr "Tilføy denne Hendelsen i din Google Calendar"
699
+
700
+ #@ all-in-one-event-calendar
701
+ #: app/view/event-single.php:33
702
+ msgid "Add to Google Calendar"
703
+ msgstr "Tilføy i Google Calendar"
704
+
705
+ #@ all-in-one-event-calendar
706
+ #: app/view/event-multi.php:33
707
+ #: app/view/event-single.php:40
708
+ msgid "Cost:"
709
+ msgstr "Pris:"
710
+
711
+ #@ all-in-one-event-calendar
712
+ #: app/view/event-multi.php:39
713
+ #: app/view/event-single.php:46
714
+ msgid "Contact:"
715
+ msgstr "Kontakt:"
716
+
717
+ #@ all-in-one-event-calendar
718
+ #: app/view/agenda.php:81
719
+ #: app/view/event-multi.php:45
720
+ #: app/view/event-single.php:52
721
+ msgid "Categories:"
722
+ msgstr "Kategorier:"
723
+
724
+ #@ all-in-one-event-calendar
725
+ #: app/view/agenda.php:87
726
+ #: app/view/event-multi.php:51
727
+ #: app/view/event-single.php:59
728
+ msgid "Tags:"
729
+ msgstr "Tags:"
730
+
731
+ #@ all-in-one-event-calendar
732
+ #: app/view/event-map.php:2
733
+ msgid "Click to view map"
734
+ msgstr "Klikk for at se kart"
735
+
736
+ #@ all-in-one-event-calendar
737
+ #: app/view/event-map.php:9
738
+ msgid "View Full-Size Map »"
739
+ msgstr "Vis kart på hel side »"
740
+
741
+ #@ all-in-one-event-calendar
742
+ #: app/view/box_event_cost.php:1
743
+ msgid "Event cost"
744
+ msgstr "Hendelsens pris"
745
+
746
+ #@ all-in-one-event-calendar
747
+ #: app/view/box_event_cost.php:7
748
+ msgid "Cost"
749
+ msgstr "Pris"
750
+
751
+ #@ all-in-one-event-calendar
752
+ #: app/view/event-multi.php:7
753
+ msgid "View in Calendar »"
754
+ msgstr "Vis i kalender »"
755
+
756
+ #@ all-in-one-event-calendar
757
+ #: app/view/event-multi.php:24
758
+ msgid "View Map »"
759
+ msgstr "Vis kart »"
760
+
761
+ #@ all-in-one-event-calendar
762
+ #: app/view/admin_notices.php:2
763
+ msgid "All-in-One Event Calendar Notice:"
764
+ msgstr "All-in-One Event Calendar notat:"
765
+
766
+ #@ all-in-one-event-calendar
767
+ #: app/view/row_daily.php:3
768
+ #: app/view/row_monthly.php:3
769
+ #: app/view/row_monthly.php:22
770
+ #: app/view/row_weekly.php:3
771
+ #: app/view/row_yearly.php:3
772
+ msgid "Every"
773
+ msgstr "Hver"
774
+
775
+ #@ all-in-one-event-calendar
776
+ #: app/view/event_categories-color_picker.php:5
777
+ #: app/view/event_categories-color_picker.php:19
778
+ msgid "Category Color"
779
+ msgstr "Kategorifarge"
780
+
781
+ #@ all-in-one-event-calendar
782
+ #: app/view/event_categories-color_picker.php:13
783
+ #: app/view/event_categories-color_picker.php:25
784
+ msgid "Events in this category will be identified by this color"
785
+ msgstr "Hendelse i denne kategorien kjennes på denne fargen"
786
+
787
+ #@ all-in-one-event-calendar
788
+ #: app/view/agenda-widget.php:11
789
+ msgid "There are no upcoming events."
790
+ msgstr "Det er ingen kommende Hendelser"
791
+
792
+ #@ all-in-one-event-calendar
793
+ #: app/view/agenda-widget.php:59
794
+ msgid "View Calendar »"
795
+ msgstr "Vis kalender »"
796
+
797
+ #@ all-in-one-event-calendar
798
+ #: app/view/agenda-widget.php:67
799
+ #: app/view/calendar.php:110
800
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
801
+ msgstr "Abonner på denne kalenderen med dit foretrukne kalenderprogram (iCal, Outlook, Windows kalender etc.)"
802
+
803
+ #@ all-in-one-event-calendar
804
+ #: app/view/agenda-widget.php:68
805
+ #: app/view/calendar.php:111
806
+ msgid "✔ Subscribe"
807
+ msgstr "✔ Abonner"
808
+
809
+ #@ all-in-one-event-calendar
810
+ #: app/view/agenda-widget.php:72
811
+ #: app/view/calendar.php:116
812
+ msgid "Subscribe to this calendar in your Google Calendar"
813
+ msgstr "Abonner på denne kalenderen med din Google Calendar"
814
+
815
+ #@ all-in-one-event-calendar
816
+ #: app/view/agenda-widget.php:74
817
+ msgid "Add to Google"
818
+ msgstr "Tilføy i Google"
819
+
820
+ #@ all-in-one-event-calendar
821
+ #: app/view/box_event_contact.php:1
822
+ msgid "Organizer contact info"
823
+ msgstr "Arrangørens kontaktinformation"
824
+
825
+ #@ all-in-one-event-calendar
826
+ #: app/view/box_event_contact.php:7
827
+ msgid "Contact name:"
828
+ msgstr "Navn på kontakt:"
829
+
830
+ #@ all-in-one-event-calendar
831
+ #: app/view/box_event_contact.php:17
832
+ msgid "Phone:"
833
+ msgstr "Telefon:"
834
+
835
+ #@ all-in-one-event-calendar
836
+ #: app/view/box_event_contact.php:27
837
+ msgid "E-mail:"
838
+ msgstr "E-mail:"
839
+
840
+ #@ all-in-one-event-calendar
841
+ #: app/view/box_ics_import_settings.php:2
842
+ msgid "Auto-refresh"
843
+ msgstr "Oppdater automatisk"
844
+
845
+ #@ all-in-one-event-calendar
846
+ #: app/view/box_ics_import_settings.php:8
847
+ #: app/view/feed_row.php:3
848
+ msgid "iCalendar/.ics Feed URL:"
849
+ msgstr "iCalendar/.ics Feed webadresse(URL):"
850
+
851
+ #@ all-in-one-event-calendar
852
+ #: app/view/box_ics_import_settings.php:12
853
+ msgid "Event category"
854
+ msgstr "Hendelseskategori"
855
+
856
+ #@ all-in-one-event-calendar
857
+ #: app/view/box_ics_import_settings.php:18
858
+ #: app/view/feed_row.php:15
859
+ msgid "Tag with"
860
+ msgstr "Tag med"
861
+
862
+ #@ all-in-one-event-calendar
863
+ #: app/view/box_ics_import_settings.php:22
864
+ msgid "+ Add new subscription"
865
+ msgstr "+ Nytt abonnement"
866
+
867
+ #@ all-in-one-event-calendar
868
+ #: app/view/box_general_settings.php:1
869
+ msgid "Viewing Events"
870
+ msgstr "Se Hendelse"
871
+
872
+ #@ all-in-one-event-calendar
873
+ #: app/view/box_general_settings.php:3
874
+ msgid "Calendar page:"
875
+ msgstr "Kalenderside:"
876
+
877
+ #@ all-in-one-event-calendar
878
+ #: app/view/box_general_settings.php:7
879
+ msgid "Default calendar view:"
880
+ msgstr "Standard kalendervisning:"
881
+
882
+ #@ all-in-one-event-calendar
883
+ #: app/view/box_general_settings.php:12
884
+ msgid "Timezone:"
885
+ msgstr "Tidssone:"
886
+
887
+ #@ all-in-one-event-calendar
888
+ #: app/view/box_general_settings.php:17
889
+ msgid "Contain calendar in this DOM element:"
890
+ msgstr "Inneholder kalendrer i dette DOM-element:"
891
+
892
+ #@ all-in-one-event-calendar
893
+ #: app/view/box_general_settings.php:19
894
+ msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
895
+ msgstr "Valgfritt. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
896
+
897
+ #@ all-in-one-event-calendar
898
+ #: app/view/box_general_settings.php:21
899
+ msgid "Week starts on"
900
+ msgstr "Uken begynder med"
901
+
902
+ #@ all-in-one-event-calendar
903
+ #: app/view/box_general_settings.php:25
904
+ msgid "Agenda pages show at most"
905
+ msgstr "Listesider viser høyest"
906
+
907
+ #@ all-in-one-event-calendar
908
+ #: app/view/box_general_settings.php:26
909
+ msgid "events"
910
+ msgstr "hendelse"
911
+
912
+ #@ all-in-one-event-calendar
913
+ #: app/view/box_general_settings.php:31
914
+ msgid "Keep all events <strong>expanded</strong> in the agenda view"
915
+ msgstr "Behold alle Hendelser <strong>utvidet</strong> i listevisning"
916
+
917
+ #@ all-in-one-event-calendar
918
+ #: app/view/box_general_settings.php:37
919
+ msgid "<strong>Exclude</strong> events from search results"
920
+ msgstr "<strong>Utelat</strong> Hendelse fra søkeresultater"
921
+
922
+ #@ all-in-one-event-calendar
923
+ #: app/view/box_general_settings.php:43
924
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
925
+ msgstr "Vis <strong>Innsend din Hendelse</strong> knappen over kalenderen for godkjente brukere"
926
+
927
+ #@ all-in-one-event-calendar
928
+ #: app/view/box_general_settings.php:49
929
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
930
+ msgstr "Skjul <strong>Abonner</strong>/<strong>Tilføy i kalender</strong> knapper i kalender- og enkelthendelsesvisning"
931
+
932
+ #@ all-in-one-event-calendar
933
+ #: app/view/box_general_settings.php:55
934
+ msgid "Hide <strong>Google Maps</strong> until clicked"
935
+ msgstr "Skjul <strong>Google Maps</strong> inntil det klikkes"
936
+
937
+ #@ all-in-one-event-calendar
938
+ #: app/view/box_general_settings.php:67
939
+ msgid "Include <strong>event categories</strong> in post category lists"
940
+ msgstr "Inkluder <strong>Hendelsekategorier</strong> i indleggskategori listen"
941
+
942
+ #@ all-in-one-event-calendar
943
+ #: app/view/box_general_settings.php:71
944
+ msgid "Adding/Editing Events"
945
+ msgstr "Tilføy/rediger Hendelser"
946
+
947
+ #@ all-in-one-event-calendar
948
+ #: app/view/box_general_settings.php:73
949
+ msgid "Input dates in this format:"
950
+ msgstr "Tilføy datoer i dette format:"
951
+
952
+ #@ all-in-one-event-calendar
953
+ #: app/view/box_general_settings.php:79
954
+ msgid "Use <strong>24h time</strong> in time pickers"
955
+ msgstr "Benytt <strong>24 timer</strong> tidsformat"
956
+
957
+ #@ all-in-one-event-calendar
958
+ #: app/view/box_general_settings.php:85
959
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
960
+ msgstr "Vis <strong>Publiser</strong> under Rediger Hendelse formularet"
961
+
962
+ #@ all-in-one-event-calendar
963
+ #: app/view/feed_row.php:9
964
+ msgid "Event category:"
965
+ msgstr "Hendelseskategori:"
966
+
967
+ #@ all-in-one-event-calendar
968
+ #: app/view/feed_row.php:19
969
+ msgid "× Delete"
970
+ msgstr "× Slett"
971
+
972
+ #@ all-in-one-event-calendar
973
+ #: app/view/agenda-widget-form.php:2
974
+ msgid "Title:"
975
+ msgstr "Tittel:"
976
+
977
+ #@ all-in-one-event-calendar
978
+ #: app/view/agenda-widget-form.php:6
979
+ msgid "Number of events to show:"
980
+ msgstr "Antal viste Hendelser:"
981
+
982
+ #@ all-in-one-event-calendar
983
+ #: app/view/agenda-widget-form.php:14
984
+ msgid "Events with these <strong>Categories</strong>"
985
+ msgstr "Hendelser med disse <strong>Kategoriene</strong>"
986
+
987
+ #@ all-in-one-event-calendar
988
+ #: app/view/agenda-widget-form.php:30
989
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
990
+ msgstr "<strong>eller</strong>Hendelse med disse <strong>Tagene</strong>"
991
+
992
+ #@ all-in-one-event-calendar
993
+ #: app/view/agenda-widget-form.php:46
994
+ msgid "<strong>Or</strong> any of these <strong>Events</strong>"
995
+ msgstr "<strong>eller</strong> en av disse <strong>Hendelsene</strong>"
996
+
997
+ #@ all-in-one-event-calendar
998
+ #: app/view/agenda-widget-form.php:62
999
+ msgid "Show <strong>View Calendar</strong> button"
1000
+ msgstr "Vis <strong>Vis kalender</strong> knappen"
1001
+
1002
+ #@ all-in-one-event-calendar
1003
+ #: app/view/agenda-widget-form.php:65
1004
+ msgid "Show <strong>Subscribe</strong> buttons"
1005
+ msgstr "Vis <strong>Abonner</strong> knapper"
1006
+
1007
+ #@ all-in-one-event-calendar
1008
+ #: app/view/agenda-widget-form.php:68
1009
+ msgid "Hide this widget on calendar page"
1010
+ msgstr "Skjul denne widget på kalendersiden"
1011
+
1012
+ #@ all-in-one-event-calendar
1013
+ #: app/view/calendar.php:35
1014
+ msgid "+ Post Your Event"
1015
+ msgstr "+ Publiser din Hendelse"
1016
+
1017
+ #@ all-in-one-event-calendar
1018
+ #: app/view/calendar.php:44
1019
+ msgid "Clear Filters"
1020
+ msgstr "Rydd sorteringer"
1021
+
1022
+ #@ all-in-one-event-calendar
1023
+ #: app/view/calendar.php:44
1024
+ msgid "✘"
1025
+ msgstr "✘"
1026
+
1027
+ #@ all-in-one-event-calendar
1028
+ #: app/view/calendar.php:45
1029
+ msgid "Filter:"
1030
+ msgstr "Sortering:"
1031
+
1032
+ #@ all-in-one-event-calendar
1033
+ #: app/view/calendar.php:50
1034
+ msgid "Categories ▾"
1035
+ msgstr "Kategorier ▾"
1036
+
1037
+ #@ all-in-one-event-calendar
1038
+ #: app/view/calendar.php:72
1039
+ msgid "Tags ▾"
1040
+ msgstr "Tags ▾"
1041
+
1042
+ #@ all-in-one-event-calendar
1043
+ #: app/view/calendar.php:112
1044
+ msgid "to this filtered calendar"
1045
+ msgstr "til denne sorterede kalender"
1046
+
1047
+ #@ all-in-one-event-calendar
1048
+ #: app/view/calendar.php:118
1049
+ msgid "Subscribe in Google Calendar"
1050
+ msgstr "Tilføy i Google kalender"
1051
+
1052
+ #@ all-in-one-event-calendar
1053
+ #: app/view/agenda.php:5
1054
+ msgid "+ Expand All"
1055
+ msgstr "+ Utvid alle"
1056
+
1057
+ #@ all-in-one-event-calendar
1058
+ #: app/view/agenda.php:8
1059
+ msgid "− Collapse All"
1060
+ msgstr "− Klapp sammen"
1061
+
1062
+ #@ all-in-one-event-calendar
1063
+ #: app/view/agenda.php:12
1064
+ #: app/view/month.php:4
1065
+ #: app/view/week.php:4
1066
+ msgid "Today"
1067
+ msgstr "Idag"
1068
+
1069
+ #@ all-in-one-event-calendar
1070
+ #: app/view/agenda.php:29
1071
+ msgid "There are no upcoming events to display at this time."
1072
+ msgstr "Der er ingen Hendelser å vise på dette tidspunkt."
1073
+
1074
+ #@ all-in-one-event-calendar
1075
+ #: app/view/agenda.php:59
1076
+ #: app/view/agenda.php:109
1077
+ #: app/view/month.php:68
1078
+ #: app/view/week.php:69
1079
+ msgid "(all-day)"
1080
+ msgstr "(heldags)"
1081
+
1082
+ #@ all-in-one-event-calendar
1083
+ #: app/view/agenda.php:77
1084
+ msgid "Read more »"
1085
+ msgstr "Les mer »"
1086
+
1087
+ #@ all-in-one-event-calendar
1088
+ #: app/view/class-ai1ec-agenda-widget.php:18
1089
+ #: app/view/class-ai1ec-agenda-widget.php:39
1090
+ msgid "Upcoming Events"
1091
+ msgstr "Kommende Hendelse"
1092
+
1093
+ #@ all-in-one-event-calendar
1094
+ #: app/view/class-ai1ec-agenda-widget.php:20
1095
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1096
+ msgstr "All-in-One Event Calendar: List opp kommende Hendelser i listeform"
1097
+
1098
+ #@ all-in-one-event-calendar
1099
+ #: app/view/box_the_seed_studio.php:4
1100
+ msgid "The Seed Studio"
1101
+ msgstr "The Seed Studio"
1102
+
1103
+ #@ all-in-one-event-calendar
1104
+ #: app/view/box_the_seed_studio.php:7
1105
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
1106
+ msgstr "The Seed Studio leverer webløsninger og support til privatkunder og webutviklere."
1107
+
1108
+ #@ all-in-one-event-calendar
1109
+ #: app/view/box_the_seed_studio.php:20
1110
+ msgid "Get Support<span> from one of our experienced pros</span>"
1111
+ msgstr "Få hjelp<span> fra en av våre erfarne medarbeidere</span>"
1112
+
1113
+ #@ all-in-one-event-calendar
1114
+ #: app/view/box_the_seed_studio.php:23
1115
+ msgid "Support"
1116
+ msgstr "Support"
1117
+
1118
+ #@ all-in-one-event-calendar
1119
+ #: app/view/box_the_seed_studio.php:25
1120
+ msgid "View plugin documentation"
1121
+ msgstr "Les plugindokumentasjonen"
1122
+
1123
+ #@ all-in-one-event-calendar
1124
+ #: app/view/box_the_seed_studio.php:28
1125
+ msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
1126
+ msgstr "Du har også mulighed for at kjøpe hjelp til denne pluginen fra The Seed på timebaseret kontrakt, eller til din hjemmeside eller en hvilken som helst annen av dine markedsrelaterede behov (vi kan faktisk hjelpe deg!) "
1127
+
1128
+ #@ all-in-one-event-calendar
1129
+ #: app/view/box_the_seed_studio.php:31
1130
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
1131
+ msgstr "Pluginbrukere: The Seed support ytes først og fremst til betalende kunder. Gratis support fra andre WordPress brukere finnes på våre forumsider."
1132
+
1133
+ #@ all-in-one-event-calendar
1134
+ #: app/view/box_the_seed_studio.php:34
1135
+ msgid "Vote and Share"
1136
+ msgstr "Stem og del"
1137
+
1138
+ #@ all-in-one-event-calendar
1139
+ #: app/view/box_the_seed_studio.php:36
1140
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
1141
+ msgstr "Denne pluginen stilles gratis til rådighet for WordPressbrukere under GPL3 lisens. Vi ber bare om at du:"
1142
+
1143
+ #@ all-in-one-event-calendar
1144
+ #: app/view/box_the_seed_studio.php:38
1145
+ msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
1146
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Gir den 5 stjerner på wordpress.org</a> (hvis du synest vi fortjener det!)"
1147
+
1148
+ #@ all-in-one-event-calendar
1149
+ #: app/view/box_the_seed_studio.php:39
1150
+ msgid "Link to the plugin page on our website"
1151
+ msgstr "Oppretter link til pluginsiden på vår hjemmeside"
1152
+
1153
+ #@ all-in-one-event-calendar
1154
+ #: app/view/box_the_seed_studio.php:40
1155
+ msgid "Become a Fan on Facebook"
1156
+ msgstr "Bli fan på Facebook"
1157
+
1158
+ #@ all-in-one-event-calendar
1159
+ #: app/view/box_the_seed_studio.php:41
1160
+ msgid "Follow us on Twitter"
1161
+ msgstr "Følg oss på Twitter"
1162
+
1163
+ #@ all-in-one-event-calendar
1164
+ #: app/view/box_the_seed_studio.php:46
1165
+ msgid "Latest from the Seed Network"
1166
+ msgstr "Seneste nytt fra the Seed nettverket"
1167
+
1168
+ #@ all-in-one-event-calendar
1169
+ #: app/view/box_eventbrite.php:1
1170
+ msgid "Eventbrite Ticketing"
1171
+ msgstr "Eventbrite billettsystem"
1172
+
1173
+ #@ all-in-one-event-calendar
1174
+ #: app/view/box_eventbrite.php:7
1175
+ msgid "Register this event with Eventbrite.com?"
1176
+ msgstr "Registrer denne Hendelsen på Eventbrite.com?"
1177
+
1178
+ #@ all-in-one-event-calendar
1179
+ #: app/view/box_eventbrite.php:12
1180
+ msgid "Yes"
1181
+ msgstr "Ja"
1182
+
1183
+ #@ all-in-one-event-calendar
1184
+ #: app/view/box_eventbrite.php:14
1185
+ msgid "No"
1186
+ msgstr "Nei"
1187
+
1188
+ #@ all-in-one-event-calendar
1189
+ #: app/view/box_eventbrite.php:22
1190
+ msgid "Set up your first ticket"
1191
+ msgstr "Opprett din første billett"
1192
+
1193
+ #@ all-in-one-event-calendar
1194
+ #: app/view/box_eventbrite.php:24
1195
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
1196
+ msgstr "For å opprette flere billetter pr. Hendelse, send inn dette formularet og følg deretter linken til Eventbrite."
1197
+
1198
+ #@ all-in-one-event-calendar
1199
+ #: app/view/box_eventbrite.php:32
1200
+ msgid "Name"
1201
+ msgstr "Navn"
1202
+
1203
+ #@ all-in-one-event-calendar
1204
+ #: app/view/box_eventbrite.php:42
1205
+ msgid "Description"
1206
+ msgstr "Beskrivelse"
1207
+
1208
+ #@ all-in-one-event-calendar
1209
+ #: app/view/box_eventbrite.php:53
1210
+ msgid "Type"
1211
+ msgstr "Type"
1212
+
1213
+ #@ all-in-one-event-calendar
1214
+ #: app/view/box_eventbrite.php:58
1215
+ msgid "Set Price"
1216
+ msgstr "Angi prisen"
1217
+
1218
+ #@ all-in-one-event-calendar
1219
+ #: app/view/box_eventbrite.php:60
1220
+ msgid "Donation Based"
1221
+ msgstr "Baseret på donasjoner"
1222
+
1223
+ #@ all-in-one-event-calendar
1224
+ #: app/view/box_eventbrite.php:68
1225
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
1226
+ msgstr "Prisen for denne Hendelsens første billett tas fra Pris-feltet ovenfor"
1227
+
1228
+ #@ all-in-one-event-calendar
1229
+ #: app/view/box_eventbrite.php:75
1230
+ msgid "Quantity"
1231
+ msgstr "Antall"
1232
+
1233
+ #@ all-in-one-event-calendar
1234
+ #: app/view/box_eventbrite.php:85
1235
+ msgid "Include Fee in Price"
1236
+ msgstr "Innkluder gebyret i prisen"
1237
+
1238
+ #@ all-in-one-event-calendar
1239
+ #: app/view/box_eventbrite.php:90
1240
+ msgid "Add Service Fee on top of price"
1241
+ msgstr "Legg servicegebyr til på toppen av prisen"
1242
+
1243
+ #@ all-in-one-event-calendar
1244
+ #: app/view/box_eventbrite.php:92
1245
+ msgid "Include Service fee in price"
1246
+ msgstr "Innkluder servicegebyr i prisen"
1247
+
1248
+ #@ all-in-one-event-calendar
1249
+ #: app/view/box_eventbrite.php:98
1250
+ msgid "Payment Options"
1251
+ msgstr "Betalingsmuligheter"
1252
+
1253
+ #@ all-in-one-event-calendar
1254
+ #: app/view/box_eventbrite.php:103
1255
+ msgid "Paypal"
1256
+ msgstr "Paypal"
1257
+
1258
+ #@ all-in-one-event-calendar
1259
+ #: app/view/box_eventbrite.php:105
1260
+ msgid "Google Checkout"
1261
+ msgstr "Google Checkout"
1262
+
1263
+ #@ all-in-one-event-calendar
1264
+ #: app/view/box_eventbrite.php:107
1265
+ msgid "Check"
1266
+ msgstr "Sjekk"
1267
+
1268
+ #@ all-in-one-event-calendar
1269
+ #: app/view/box_eventbrite.php:109
1270
+ msgid "Cash"
1271
+ msgstr "Kontant"
1272
+
1273
+ #@ all-in-one-event-calendar
1274
+ #: app/view/box_eventbrite.php:111
1275
+ msgid "Send an Invoice"
1276
+ msgstr "Send en kvittering"
1277
+
1278
+ #@ default
1279
+ #: app/view/event-single-footer.php:4
1280
+ #, php-format
1281
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1282
+ msgstr "Dette innlegget er gjengitt fra en annen sides <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">kalender feed</a>."
1283
+
1284
+ #@ all-in-one-event-calendar
1285
+ #: app/view/event-single-footer.php:8
1286
+ msgid "View original post »"
1287
+ msgstr "Vis opprinnelig innlegg »"
1288
+
1289
+ #@ all-in-one-event-calendar
1290
+ #: app/view/box_time_and_date.php:2
1291
+ msgid "Event date and time"
1292
+ msgstr "Dato og tid for Hendelsen"
1293
+
1294
+ #@ all-in-one-event-calendar
1295
+ #: app/view/box_time_and_date.php:8
1296
+ msgid "All-day event"
1297
+ msgstr "Heldags Hendelse"
1298
+
1299
+ #@ all-in-one-event-calendar
1300
+ #: app/view/box_time_and_date.php:18
1301
+ msgid "Start date / time"
1302
+ msgstr "Start dato/tid"
1303
+
1304
+ #@ all-in-one-event-calendar
1305
+ #: app/view/box_time_and_date.php:31
1306
+ msgid "End date / time"
1307
+ msgstr "Slutt dato/tid"
1308
+
1309
+ #@ all-in-one-event-calendar
1310
+ #: app/view/box_time_and_date.php:46
1311
+ msgid "Repeat"
1312
+ msgstr "Gjenta"
1313
+
1314
+ #@ all-in-one-event-calendar
1315
+ #: app/view/box_time_and_date.php:70
1316
+ msgid "End"
1317
+ msgstr "Slutt"
1318
+
1319
+ #@ all-in-one-event-calendar
1320
+ #: app/view/box_time_and_date.php:77
1321
+ msgid "Ending after"
1322
+ msgstr "Slutter etter"
1323
+
1324
+ #@ all-in-one-event-calendar
1325
+ #: app/view/box_time_and_date.php:92
1326
+ msgid "Apply"
1327
+ msgstr "Tilføy"
1328
+
1329
+ #@ all-in-one-event-calendar
1330
+ #: app/view/box_time_and_date.php:93
1331
+ msgid "Cancel"
1332
+ msgstr "Avslutt"
1333
+
1334
+ #@ all-in-one-event-calendar
1335
+ #: app/view/settings.php:5
1336
+ msgid "All-in-one Event Calendar"
1337
+ msgstr "All-in-one Event Calendar"
1338
+
1339
+ #@ all-in-one-event-calendar
1340
+ #: app/view/settings.php:16
1341
+ msgid "Update Settings"
1342
+ msgstr "Oppdater innstillinger"
1343
+
1344
+ #@ all-in-one-event-calendar
1345
+ #: app/view/box_event_location.php:1
1346
+ msgid "Event location details"
1347
+ msgstr "Detaljer om stedet for Hendelse"
1348
+
1349
+ #@ all-in-one-event-calendar
1350
+ #: app/view/box_event_location.php:7
1351
+ msgid "Venue name:"
1352
+ msgstr "Sted:"
1353
+
1354
+ #@ all-in-one-event-calendar
1355
+ #: app/view/box_event_location.php:17
1356
+ msgid "Address:"
1357
+ msgstr "Adresse:"
1358
+
1359
+ #@ all-in-one-event-calendar
1360
+ #: app/view/box_event_location.php:27
1361
+ msgid "Show Google Map:"
1362
+ msgstr "Vis Google kart:"
1363
+
1364
+ #@ all-in-one-event-calendar
1365
+ #: app/view/month.php:50
1366
+ #: app/view/week.php:55
1367
+ #: app/view/week.php:127
1368
+ msgid "Summary:"
1369
+ msgstr "Kort beskrivelse:"
1370
+
1371
+ #@ all-in-one-event-calendar
1372
+ #: app/view/month.php:53
1373
+ #: app/view/week.php:58
1374
+ #: app/view/week.php:130
1375
+ msgid "click anywhere for details"
1376
+ msgstr "klikk et sted for flere detaljer"
1377
+
1378
+ #@ all-in-one-event-calendar
1379
+ #: app/view/import.php:6
1380
+ msgid "Successfully imported events:"
1381
+ msgstr "Importerete Hendelser:"
1382
+
1383
+ #@ all-in-one-event-calendar
1384
+ #. translators: "%s" represents the week's starting date
1385
+ #. translators: "%s" represents the week's starting date
1386
+ #: app/controller/class-ai1ec-calendar-controller.php:326
1387
+ #: app/helper/class-ai1ec-calendar-helper.php:717
1388
+ #: app/helper/class-ai1ec-calendar-helper.php:726
1389
+ #, php-format
1390
+ msgid "Week of %s"
1391
+ msgstr "Uke nr."
1392
+
1393
+ #@ all-in-one-event-calendar
1394
+ #: app/controller/class-ai1ec-calendar-controller.php:326
1395
+ msgid "F j"
1396
+ msgstr "F j"
1397
+
1398
+ #@ all-in-one-event-calendar
1399
+ #: app/helper/class-ai1ec-app-helper.php:281
1400
+ msgid "Show All "
1401
+ msgstr "Vis alle "
1402
+
1403
+ #@ all-in-one-event-calendar
1404
+ #: app/helper/class-ai1ec-calendar-helper.php:718
1405
+ #: app/helper/class-ai1ec-calendar-helper.php:727
1406
+ msgid "M j"
1407
+ msgstr "M j"
1408
+
1409
+ #@ all-in-one-event-calendar
1410
+ #: app/helper/class-ai1ec-events-helper.php:1381
1411
+ #: app/helper/class-ai1ec-events-helper.php:1390
1412
+ #: app/helper/class-ai1ec-events-helper.php:1398
1413
+ msgctxt "Recurrence editor - weekly tab"
1414
+ msgid "on"
1415
+ msgstr "på"
1416
+
1417
+ #@ all-in-one-event-calendar
1418
+ #: app/helper/class-ai1ec-events-helper.php:1411
1419
+ #: app/helper/class-ai1ec-events-helper.php:1418
1420
+ #: app/helper/class-ai1ec-events-helper.php:1424
1421
+ #: app/helper/class-ai1ec-events-helper.php:1435
1422
+ msgctxt "Recurrence editor - monthly tab"
1423
+ msgid "on"
1424
+ msgstr "på"
1425
+
1426
+ #@ all-in-one-event-calendar
1427
+ #: app/helper/class-ai1ec-events-helper.php:1448
1428
+ #: app/helper/class-ai1ec-events-helper.php:1456
1429
+ #: app/helper/class-ai1ec-events-helper.php:1463
1430
+ msgctxt "Recurrence editor - yearly tab"
1431
+ msgid "on"
1432
+ msgstr "på"
1433
+
1434
+ #@ all-in-one-event-calendar
1435
+ #: app/helper/class-ai1ec-settings-helper.php:152
1436
+ #: app/view/calendar.php:18
1437
+ #: app/view/calendar.php:19
1438
+ msgid "Week"
1439
+ msgstr "Uke"
1440
+
1441
+ #@ all-in-one-event-calendar
1442
+ #: app/view/box_general_settings.php:61
1443
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
1444
+ msgstr "Benytt <strong>regionale</strong> konfigurationsinnstillinger (WordPress lokalisering) til å sette opp adresseopplysninger med funksjonen autofullførelse"
1445
+
1446
+ #@ all-in-one-event-calendar
1447
+ #: app/view/box_the_seed_studio.php:14
1448
+ msgid "Follow @theseednet"
1449
+ msgstr "Følg @theseednet"
1450
+
1451
+ #@ all-in-one-event-calendar
1452
+ #: app/view/row_weekly.php:6
1453
+ msgctxt "Recurrence editor - weekly tab"
1454
+ msgid "On"
1455
+ msgstr "På"
1456
+
1457
+ #@ all-in-one-event-calendar
1458
+ #: app/view/row_yearly.php:7
1459
+ msgctxt "Recurrence editor - yearly tab"
1460
+ msgid "In"
1461
+ msgstr "I"
1462
+
1463
+ #@ all-in-one-event-calendar
1464
+ #: app/view/week.php:33
1465
+ msgid "All-day"
1466
+ msgstr "Heldags"
1467
+
1468
+ #@ all-in-one-event-calendar
1469
+ #: app/controller/class-ai1ec-settings-controller.php:181
1470
+ #: app/controller/class-ai1ec-settings-controller.php:231
1471
+ msgid "Invalid ICS feed ID"
1472
+ msgstr "Ugyldig ICS feed-ID"
1473
+
1474
+ #@ all-in-one-event-calendar
1475
+ #: app/controller/class-ai1ec-settings-controller.php:216
1476
+ msgid "No events were found"
1477
+ msgstr "Ingen Hendelse funnet"
1478
+
1479
+ #@ all-in-one-event-calendar
1480
+ #: app/view/agenda-widget-form.php:23
1481
+ msgid "No categories found."
1482
+ msgstr "Ingen kategorier funnet."
1483
+
1484
+ #@ all-in-one-event-calendar
1485
+ #: app/view/agenda-widget-form.php:39
1486
+ msgid "No tags found."
1487
+ msgstr "Ingen tags funnet."
1488
+
1489
+ #@ all-in-one-event-calendar
1490
+ #: app/view/agenda-widget-form.php:55
1491
+ msgid "No events found."
1492
+ msgstr "Ingen Hendelser funnet."
1493
+
1494
+ #@ all-in-one-event-calendar
1495
+ #: app/view/row_monthly.php:9
1496
+ msgid "On day of the month"
1497
+ msgstr "På dag i måneden"
1498
+
1499
+ #@ all-in-one-event-calendar
1500
+ #: app/view/row_monthly.php:13
1501
+ msgid "On day of the week"
1502
+ msgstr "På dag i uken"
1503
+
language/all-in-one-event-calendar-pl_PL.mo ADDED
Binary file
language/all-in-one-event-calendar-pl_PL.po ADDED
@@ -0,0 +1,1220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 All-in-One Event Calendar
2
+ # This file is distributed under the same license as the All-in-One Event Calendar package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: All-in-One Event Calendar 1.2.5\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
+ "POT-Creation-Date: 2012-01-31 12:01:34+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2012-02-09 23:49+0100\n"
12
+ "Last-Translator: Wojciech Rębiś <wojciech.rebis@gmail.com>\n"
13
+ "Language-Team: Rebus <wojciech.rebis@gmail.com>\n"
14
+ "X-Poedit-Language: Polish\n"
15
+ "X-Poedit-Country: POLAND\n"
16
+
17
+ #: app/model/class-ai1ec-event.php:487
18
+ msgid " (all-day)"
19
+ msgstr "(cały dzień)"
20
+
21
+ #: app/helper/class-ai1ec-settings-helper.php:85
22
+ msgid "- Auto-Create New Page -"
23
+ msgstr "- Automatycznie utwórz nową stronę -"
24
+
25
+ #: app/helper/class-ai1ec-settings-helper.php:107
26
+ msgid "View \"%s\" »"
27
+ msgstr "Zobacz \"%s\" »"
28
+
29
+ #: app/helper/class-ai1ec-settings-helper.php:149
30
+ #: app/view/calendar.php:11
31
+ #: app/view/calendar.php:12
32
+ #: app/view/calendar.php:25
33
+ msgid "Month"
34
+ msgstr "Miesiąc"
35
+
36
+ #: app/helper/class-ai1ec-settings-helper.php:152
37
+ #: app/view/calendar.php:18
38
+ #: app/view/calendar.php:19
39
+ msgid "Week"
40
+ msgstr "Tydzień"
41
+
42
+ #: app/helper/class-ai1ec-settings-helper.php:155
43
+ #: app/controller/class-ai1ec-calendar-controller.php:383
44
+ #: app/view/calendar.php:26
45
+ msgid "Agenda"
46
+ msgstr "Agenda"
47
+
48
+ #: app/helper/class-ai1ec-settings-helper.php:204
49
+ msgid "Default (d/m/y)"
50
+ msgstr "Domyślnie (d/m/y)"
51
+
52
+ #: app/helper/class-ai1ec-settings-helper.php:207
53
+ msgid "US (m/d/y)"
54
+ msgstr "US (m/d/y)"
55
+
56
+ #: app/helper/class-ai1ec-settings-helper.php:210
57
+ msgid "ISO 8601 (y-m-d)"
58
+ msgstr "ISO 8601 (y-m-d)"
59
+
60
+ #: app/helper/class-ai1ec-settings-helper.php:213
61
+ msgid "Dotted (m.d.y)"
62
+ msgstr "Z kropkami (m.d.y)"
63
+
64
+ #: app/helper/class-ai1ec-settings-helper.php:231
65
+ msgid "Hourly"
66
+ msgstr "Co godzinę"
67
+
68
+ #: app/helper/class-ai1ec-settings-helper.php:234
69
+ msgid "Twice Daily"
70
+ msgstr "Dwa razy dziennie"
71
+
72
+ #: app/helper/class-ai1ec-settings-helper.php:237
73
+ #: app/helper/class-ai1ec-events-helper.php:554
74
+ #: app/helper/class-ai1ec-events-helper.php:573
75
+ #: app/helper/class-ai1ec-events-helper.php:1502
76
+ #: app/view/box_time_and_date.php:58
77
+ msgid "Daily"
78
+ msgstr "Codziennie"
79
+
80
+ #: app/helper/class-ai1ec-settings-helper.php:321
81
+ msgid "Calendar"
82
+ msgstr "Kalendarz"
83
+
84
+ #: app/helper/class-ai1ec-app-helper.php:147
85
+ msgctxt "Custom post type name"
86
+ msgid "Events"
87
+ msgstr "Wydarzenia"
88
+
89
+ #: app/helper/class-ai1ec-app-helper.php:148
90
+ msgctxt "Custom post type name (singular)"
91
+ msgid "Event"
92
+ msgstr "Wydarzenie"
93
+
94
+ #: app/helper/class-ai1ec-app-helper.php:149
95
+ msgid "Add New"
96
+ msgstr "Dodaj nowe"
97
+
98
+ #: app/helper/class-ai1ec-app-helper.php:150
99
+ msgid "Add New Event"
100
+ msgstr "Dodaj nowe wydarzenie"
101
+
102
+ #: app/helper/class-ai1ec-app-helper.php:151
103
+ msgid "Edit Event"
104
+ msgstr "Edytuj wydarzenie"
105
+
106
+ #: app/helper/class-ai1ec-app-helper.php:152
107
+ msgid "New Event"
108
+ msgstr "Nowe wydarzenie"
109
+
110
+ #: app/helper/class-ai1ec-app-helper.php:153
111
+ msgid "View Event"
112
+ msgstr "Zobacz wydarzenie"
113
+
114
+ #: app/helper/class-ai1ec-app-helper.php:154
115
+ msgid "Search Events"
116
+ msgstr "Szukaj wydarzeń"
117
+
118
+ #: app/helper/class-ai1ec-app-helper.php:155
119
+ msgid "No Events found"
120
+ msgstr "Nie znaleziono wydarzeń"
121
+
122
+ #: app/helper/class-ai1ec-app-helper.php:156
123
+ msgid "No Events found in Trash"
124
+ msgstr "Nie ma wydarzeń w kodzu"
125
+
126
+ #: app/helper/class-ai1ec-app-helper.php:157
127
+ msgid "Parent Event"
128
+ msgstr "Wydarzenie nadrzędne"
129
+
130
+ #: app/helper/class-ai1ec-app-helper.php:158
131
+ msgid "Events"
132
+ msgstr "Wydarzenia"
133
+
134
+ #: app/helper/class-ai1ec-app-helper.php:205
135
+ msgctxt "Event categories taxonomy"
136
+ msgid "Event Categories"
137
+ msgstr "Kategorie wydarzeń"
138
+
139
+ #: app/helper/class-ai1ec-app-helper.php:206
140
+ msgctxt "Event categories taxonomy (singular)"
141
+ msgid "Event Category"
142
+ msgstr "Kategoria wydarzenia"
143
+
144
+ #: app/helper/class-ai1ec-app-helper.php:213
145
+ msgctxt "Event tags taxonomy"
146
+ msgid "Event Tags"
147
+ msgstr "Tagi wydarzeń"
148
+
149
+ #: app/helper/class-ai1ec-app-helper.php:214
150
+ msgctxt "Event tags taxonomy (singular)"
151
+ msgid "Event Tag"
152
+ msgstr "Ta wydarzenia"
153
+
154
+ #: app/helper/class-ai1ec-app-helper.php:281
155
+ msgid "Show All "
156
+ msgstr "Zobacz wszystko"
157
+
158
+ #: app/helper/class-ai1ec-app-helper.php:313
159
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
160
+ msgstr "Wszystkie wydarzenia <span class=\"update-plugins count-%d\" title=\"%d Oczekujące wydarzenia\"><span class=\"update-count\">%d</span></span>"
161
+
162
+ #: app/helper/class-ai1ec-app-helper.php:319
163
+ msgid "All Events"
164
+ msgstr "Wszystkie wydarzenia"
165
+
166
+ #: app/helper/class-ai1ec-app-helper.php:395
167
+ msgid "Event Details"
168
+ msgstr "Szczegóły wydarzenia"
169
+
170
+ #: app/helper/class-ai1ec-app-helper.php:428
171
+ msgid "Post Date"
172
+ msgstr "Data wpisu"
173
+
174
+ #: app/helper/class-ai1ec-app-helper.php:429
175
+ msgid "Event date/time"
176
+ msgstr "Data/czas wydarzenia"
177
+
178
+ #: app/helper/class-ai1ec-app-helper.php:653
179
+ msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
180
+ msgstr "%sAby skonfigurować tą wtyczkę: %s 1. Wybierz opcję w liście wyboru <strong>Strona kalendarza</strong>. %s 2. Wybierz opcję w liście wyboru <strong>Strefa czasowa</strong>. %s 3. Kliknij przycisk <strong>Akualizuj ustawienia</strong>. %s"
181
+
182
+ #: app/helper/class-ai1ec-app-helper.php:655
183
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
184
+ msgstr "Aby skonfigurować wtyczkę: Wybierz opcję w liście wyboru <strong>Strona kalendarza</strong>, kliknij <strong>Aktualizuj ustawienia</strong>."
185
+
186
+ #: app/helper/class-ai1ec-app-helper.php:657
187
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
188
+ msgstr "Aby skonfigurować wtyczkę: Wybierz opcję z listy wyboru <strong>Strefa czasowa<strong>, kliknij <strong>Aktualizuj ustawienia</strong>."
189
+
190
+ #: app/helper/class-ai1ec-app-helper.php:661
191
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
192
+ msgstr "Wtycznia została zainstalowana, ale jeszcze nie jest skonfigurowana. <a href=\"%s\">Kliknij tu i skonfiguruj go »</a>"
193
+
194
+ #: app/helper/class-ai1ec-app-helper.php:667
195
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
196
+ msgstr "Wtyczka została zainstalowana, ale jeszcze nie jest skonfigurwana. Zaloguj się jako administrator i skonfiguruj ją."
197
+
198
+ #. translators: "%s" represents the week's starting date
199
+ #: app/helper/class-ai1ec-calendar-helper.php:717
200
+ #: app/helper/class-ai1ec-calendar-helper.php:726
201
+ #: app/controller/class-ai1ec-calendar-controller.php:326
202
+ msgid "Week of %s"
203
+ msgstr "Tydzień od %s"
204
+
205
+ #: app/helper/class-ai1ec-calendar-helper.php:718
206
+ #: app/helper/class-ai1ec-calendar-helper.php:727
207
+ msgid "M j"
208
+ msgstr "M j"
209
+
210
+ #: app/helper/class-ai1ec-calendar-helper.php:759
211
+ msgid "« Previous Events"
212
+ msgstr "« Poprzednie wydarzenia"
213
+
214
+ #: app/helper/class-ai1ec-calendar-helper.php:766
215
+ msgid "Next Events »"
216
+ msgstr "Kolejne wydarzenia »"
217
+
218
+ #: app/helper/class-ai1ec-events-helper.php:319
219
+ #: app/helper/class-ai1ec-events-helper.php:341
220
+ msgid "No repeat"
221
+ msgstr "Bez powtórzeń"
222
+
223
+ #: app/helper/class-ai1ec-events-helper.php:320
224
+ #: app/helper/class-ai1ec-events-helper.php:342
225
+ msgid "Every day"
226
+ msgstr "Codziennie"
227
+
228
+ #: app/helper/class-ai1ec-events-helper.php:321
229
+ #: app/helper/class-ai1ec-events-helper.php:343
230
+ msgid "Every week"
231
+ msgstr "Co tydzień"
232
+
233
+ #: app/helper/class-ai1ec-events-helper.php:322
234
+ #: app/helper/class-ai1ec-events-helper.php:344
235
+ msgid "Every month"
236
+ msgstr "Co miesiąc"
237
+
238
+ #: app/helper/class-ai1ec-events-helper.php:323
239
+ #: app/helper/class-ai1ec-events-helper.php:345
240
+ msgid "Every year"
241
+ msgstr "Co rok"
242
+
243
+ #: app/helper/class-ai1ec-events-helper.php:325
244
+ #: app/helper/class-ai1ec-events-helper.php:347
245
+ msgid "Custom..."
246
+ msgstr "Niestandardowo..."
247
+
248
+ #: app/helper/class-ai1ec-events-helper.php:468
249
+ msgid "first"
250
+ msgstr "pierwszy"
251
+
252
+ #: app/helper/class-ai1ec-events-helper.php:469
253
+ msgid "second"
254
+ msgstr "drugi"
255
+
256
+ #: app/helper/class-ai1ec-events-helper.php:470
257
+ msgid "third"
258
+ msgstr "trzeci"
259
+
260
+ #: app/helper/class-ai1ec-events-helper.php:471
261
+ msgid "fourth"
262
+ msgstr "czwarty"
263
+
264
+ #: app/helper/class-ai1ec-events-helper.php:473
265
+ msgid "last"
266
+ msgstr "ostatni"
267
+
268
+ #: app/helper/class-ai1ec-events-helper.php:478
269
+ msgid "Sunday"
270
+ msgstr "Niedziela"
271
+
272
+ #: app/helper/class-ai1ec-events-helper.php:479
273
+ msgid "Monday"
274
+ msgstr "Poniedziałek"
275
+
276
+ #: app/helper/class-ai1ec-events-helper.php:480
277
+ msgid "Tuesday"
278
+ msgstr "Wtorek"
279
+
280
+ #: app/helper/class-ai1ec-events-helper.php:481
281
+ msgid "Wednesday"
282
+ msgstr "Środa"
283
+
284
+ #: app/helper/class-ai1ec-events-helper.php:482
285
+ msgid "Thursday"
286
+ msgstr "Czwartek"
287
+
288
+ #: app/helper/class-ai1ec-events-helper.php:483
289
+ msgid "Friday"
290
+ msgstr "Piątek"
291
+
292
+ #: app/helper/class-ai1ec-events-helper.php:484
293
+ msgid "Saturday"
294
+ msgstr "Sobota"
295
+
296
+ #: app/helper/class-ai1ec-events-helper.php:486
297
+ msgid "day"
298
+ msgstr "dzień tygodnia"
299
+
300
+ #: app/helper/class-ai1ec-events-helper.php:487
301
+ msgid "weekday"
302
+ msgstr "weekend"
303
+
304
+ #: app/helper/class-ai1ec-events-helper.php:488
305
+ msgid "weekend day"
306
+ msgstr "dzień weekendu"
307
+
308
+ #: app/helper/class-ai1ec-events-helper.php:555
309
+ #: app/helper/class-ai1ec-events-helper.php:574
310
+ #: app/helper/class-ai1ec-events-helper.php:1514
311
+ #: app/view/box_time_and_date.php:59
312
+ msgid "Weekly"
313
+ msgstr "Co tydzień"
314
+
315
+ #: app/helper/class-ai1ec-events-helper.php:556
316
+ #: app/helper/class-ai1ec-events-helper.php:575
317
+ #: app/helper/class-ai1ec-events-helper.php:1526
318
+ #: app/view/box_time_and_date.php:60
319
+ msgid "Monthly"
320
+ msgstr "Co miesiąc"
321
+
322
+ #: app/helper/class-ai1ec-events-helper.php:557
323
+ #: app/helper/class-ai1ec-events-helper.php:576
324
+ #: app/helper/class-ai1ec-events-helper.php:1538
325
+ #: app/view/box_time_and_date.php:61
326
+ msgid "Yearly"
327
+ msgstr "Co rok"
328
+
329
+ #: app/helper/class-ai1ec-events-helper.php:598
330
+ msgid "day(s)"
331
+ msgstr "dzień(dni)"
332
+
333
+ #: app/helper/class-ai1ec-events-helper.php:627
334
+ msgid "week(s)"
335
+ msgstr "tydzień(tygodnie)"
336
+
337
+ #: app/helper/class-ai1ec-events-helper.php:697
338
+ msgid "month(s)"
339
+ msgstr "miesiąc(e)"
340
+
341
+ #: app/helper/class-ai1ec-events-helper.php:720
342
+ msgid "year(s)"
343
+ msgstr "rok(lata)"
344
+
345
+ #: app/helper/class-ai1ec-events-helper.php:1300
346
+ msgid "Never"
347
+ msgstr "Nigdy"
348
+
349
+ #: app/helper/class-ai1ec-events-helper.php:1301
350
+ msgid "After"
351
+ msgstr "Po"
352
+
353
+ #: app/helper/class-ai1ec-events-helper.php:1302
354
+ #: app/view/box_time_and_date.php:84
355
+ msgid "On date"
356
+ msgstr "Dnia"
357
+
358
+ #: app/helper/class-ai1ec-events-helper.php:1381
359
+ #: app/helper/class-ai1ec-events-helper.php:1390
360
+ #: app/helper/class-ai1ec-events-helper.php:1398
361
+ msgctxt "Recurrence editor - weekly tab"
362
+ msgid "on"
363
+ msgstr "w"
364
+
365
+ #: app/helper/class-ai1ec-events-helper.php:1386
366
+ #: app/helper/class-ai1ec-events-helper.php:1415
367
+ #: app/helper/class-ai1ec-events-helper.php:1453
368
+ msgid "and"
369
+ msgstr "i"
370
+
371
+ #: app/helper/class-ai1ec-events-helper.php:1411
372
+ #: app/helper/class-ai1ec-events-helper.php:1418
373
+ #: app/helper/class-ai1ec-events-helper.php:1424
374
+ #: app/helper/class-ai1ec-events-helper.php:1435
375
+ msgctxt "Recurrence editor - monthly tab"
376
+ msgid "on"
377
+ msgstr "w"
378
+
379
+ #: app/helper/class-ai1ec-events-helper.php:1411
380
+ #: app/helper/class-ai1ec-events-helper.php:1418
381
+ #: app/helper/class-ai1ec-events-helper.php:1424
382
+ msgid "of the month"
383
+ msgstr "miesiąca"
384
+
385
+ #: app/helper/class-ai1ec-events-helper.php:1448
386
+ #: app/helper/class-ai1ec-events-helper.php:1456
387
+ #: app/helper/class-ai1ec-events-helper.php:1463
388
+ msgctxt "Recurrence editor - yearly tab"
389
+ msgid "on"
390
+ msgstr "w"
391
+
392
+ #: app/helper/class-ai1ec-events-helper.php:1505
393
+ msgid "Every other day"
394
+ msgstr "Co drugi dzień"
395
+
396
+ #: app/helper/class-ai1ec-events-helper.php:1507
397
+ msgid "Every %d days"
398
+ msgstr "Co %d dni"
399
+
400
+ #: app/helper/class-ai1ec-events-helper.php:1517
401
+ msgid "Every other week"
402
+ msgstr "Co drugi tydzień"
403
+
404
+ #: app/helper/class-ai1ec-events-helper.php:1519
405
+ msgid "Every %d weeks"
406
+ msgstr "Co %d tygodni"
407
+
408
+ #: app/helper/class-ai1ec-events-helper.php:1529
409
+ msgid "Every other month"
410
+ msgstr "Co drugi miesiąc"
411
+
412
+ #: app/helper/class-ai1ec-events-helper.php:1531
413
+ msgid "Every %d months"
414
+ msgstr "Co %d miesiące"
415
+
416
+ #: app/helper/class-ai1ec-events-helper.php:1541
417
+ msgid "Every other year"
418
+ msgstr "Co drugi rok"
419
+
420
+ #: app/helper/class-ai1ec-events-helper.php:1543
421
+ msgid "Every %d years"
422
+ msgstr "Co %d rok"
423
+
424
+ #: app/helper/class-ai1ec-events-helper.php:1563
425
+ msgid "until %s"
426
+ msgstr "do %s"
427
+
428
+ #: app/helper/class-ai1ec-events-helper.php:1566
429
+ msgid "for %d occurrences"
430
+ msgstr "przez %d powtórzeń"
431
+
432
+ #: app/helper/class-ai1ec-events-helper.php:1568
433
+ msgid "forever"
434
+ msgstr "zawsze"
435
+
436
+ #: app/controller/class-ai1ec-settings-controller.php:82
437
+ msgid "Settings Updated."
438
+ msgstr "Ustawienia zaktualizowane."
439
+
440
+ #: app/controller/class-ai1ec-settings-controller.php:173
441
+ msgid "Flushed %d events"
442
+ msgstr "Usunięto %d wydarzeń"
443
+
444
+ #: app/controller/class-ai1ec-settings-controller.php:181
445
+ #: app/controller/class-ai1ec-settings-controller.php:231
446
+ msgid "Invalid ICS feed ID"
447
+ msgstr "Nieprawidłowe id źródła ICS"
448
+
449
+ #: app/controller/class-ai1ec-settings-controller.php:216
450
+ msgid "No events were found"
451
+ msgstr "Nie znaleziono wydarzeń"
452
+
453
+ #: app/controller/class-ai1ec-settings-controller.php:221
454
+ msgid "Imported %d events"
455
+ msgstr "Zaimportowano %d wydarzeń"
456
+
457
+ #: app/controller/class-ai1ec-settings-controller.php:222
458
+ #: app/view/feed_row.php:22
459
+ msgid "Flush 1 event"
460
+ msgstr "Usunięto 1 wydarzenie"
461
+
462
+ #: app/controller/class-ai1ec-settings-controller.php:274
463
+ msgctxt "meta box"
464
+ msgid "General Settings"
465
+ msgstr "Ustawienia ogólne"
466
+
467
+ #: app/controller/class-ai1ec-settings-controller.php:282
468
+ msgctxt "meta box"
469
+ msgid "The Seed Studio Support"
470
+ msgstr "Wsparcie od the Seed Studio"
471
+
472
+ #: app/controller/class-ai1ec-settings-controller.php:289
473
+ msgctxt "meta box"
474
+ msgid "ICS Import Settings"
475
+ msgstr "Ustawienia importu ICS"
476
+
477
+ #: app/controller/class-ai1ec-settings-controller.php:338
478
+ msgid "<a href=\"%s\">Settings</a>"
479
+ msgstr "<a href=\"%s\">Ustawienia</a>"
480
+
481
+ #: app/controller/class-ai1ec-settings-controller.php:352
482
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
483
+ msgstr "<a href=\"%s\" target=\"_blank\">Dotacja</a>"
484
+
485
+ #: app/controller/class-ai1ec-settings-controller.php:353
486
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
487
+ msgstr "<a href=\"%s\" target=\"_blank\">Wsparcie</a>"
488
+
489
+ #: app/controller/class-ai1ec-events-controller.php:149
490
+ msgid "This feed is already being imported."
491
+ msgstr "To źródło już jest importowane."
492
+
493
+ #: app/controller/class-ai1ec-events-controller.php:150
494
+ msgid "Please enter a valid iCalendar URL."
495
+ msgstr "Proszę podaj prawidłowy adres URL iCalendar."
496
+
497
+ #: app/controller/class-ai1ec-events-controller.php:285
498
+ msgid "times"
499
+ msgstr "razy"
500
+
501
+ #: app/controller/class-ai1ec-events-controller.php:334
502
+ msgid "Publish"
503
+ msgstr "Publikuj"
504
+
505
+ #: app/controller/class-ai1ec-events-controller.php:334
506
+ #: app/view/feed_row.php:20
507
+ msgid "Update"
508
+ msgstr "Aktualizuj"
509
+
510
+ #: app/controller/class-ai1ec-events-controller.php:336
511
+ msgid "Submit for Review"
512
+ msgstr "Zatwierdź do przejrzenia"
513
+
514
+ #: app/controller/class-ai1ec-events-controller.php:449
515
+ msgid "Event updated. <a href=\"%s\">View event</a>"
516
+ msgstr "Wydarzenie zaktualizowane. <a href=\"%s\">Zobacz wydarzenie</a>"
517
+
518
+ #: app/controller/class-ai1ec-events-controller.php:450
519
+ msgid "Custom field updated."
520
+ msgstr "Pole niestandardowe zaktualizowane."
521
+
522
+ #: app/controller/class-ai1ec-events-controller.php:451
523
+ msgid "Custom field deleted."
524
+ msgstr "Pole niestandardowe usunięte."
525
+
526
+ #: app/controller/class-ai1ec-events-controller.php:452
527
+ msgid "Event updated."
528
+ msgstr "Wydarzenie zaktualizowane."
529
+
530
+ #. translators: %s: date and time of the revision
531
+ #: app/controller/class-ai1ec-events-controller.php:454
532
+ msgid "Event restored to revision from %s"
533
+ msgstr "Wydarzenie odtworzone z rewizji %s"
534
+
535
+ #: app/controller/class-ai1ec-events-controller.php:455
536
+ msgid "Event published. <a href=\"%s\">View event</a>"
537
+ msgstr "Wydarzenie opublikowane. <a href=\"%s\">Zobacz wydarzenie</a>"
538
+
539
+ #: app/controller/class-ai1ec-events-controller.php:456
540
+ msgid "Event saved."
541
+ msgstr "Wydarzenie zapisane."
542
+
543
+ #: app/controller/class-ai1ec-events-controller.php:457
544
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
545
+ msgstr "Wydarzenie zatwierdzone. <a target=\"_blank\" href=\"%s\">Podglądnij wydarzenie</a>"
546
+
547
+ #: app/controller/class-ai1ec-events-controller.php:458
548
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
549
+ msgstr "Wydarzenie zaplanowane na: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Podglądnij wydarzenie</a>"
550
+
551
+ #. translators: Publish box date format, see http:php.net/date
552
+ #: app/controller/class-ai1ec-events-controller.php:460
553
+ msgid "M j, Y @ G:i"
554
+ msgstr "M j, Y @ G:i"
555
+
556
+ #: app/controller/class-ai1ec-events-controller.php:461
557
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
558
+ msgstr "Szkic wydarzenia zapisany. <a target=\"_blank\" href=\"%s\">Podglądnij wydarzenie</a>"
559
+
560
+ #: app/controller/class-ai1ec-calendar-controller.php:326
561
+ msgid "F j"
562
+ msgstr "F j"
563
+
564
+ #: app/controller/class-ai1ec-app-controller.php:354
565
+ #: app/controller/class-ai1ec-app-controller.php:355
566
+ msgid "Settings"
567
+ msgstr "Ustawienia"
568
+
569
+ #: app/controller/class-ai1ec-importer-controller.php:91
570
+ msgid "The Events Calendar → All-in-One Event Calendar"
571
+ msgstr "Kalendarz Wydarzeń"
572
+
573
+ #: app/controller/class-ai1ec-importer-controller.php:92
574
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
575
+ msgstr "Importuje wydarzenia utworzone przy użyciu wtyczki The Events Calendar do All-in-One Event Calendar"
576
+
577
+ #: app/view/event-single.php:5
578
+ #: app/view/event-multi.php:4
579
+ #: app/view/event-excerpt.php:2
580
+ msgid "When:"
581
+ msgstr "Kiedy:"
582
+
583
+ #: app/view/event-single.php:8
584
+ msgid "Back to Calendar »"
585
+ msgstr "Powrót do kalendarza »"
586
+
587
+ #: app/view/event-single.php:15
588
+ #: app/view/event-multi.php:14
589
+ msgid "Repeats:"
590
+ msgstr "Powtórzenia:"
591
+
592
+ #: app/view/event-single.php:20
593
+ #: app/view/event-multi.php:20
594
+ #: app/view/event-excerpt.php:4
595
+ msgid "Where:"
596
+ msgstr "Gdzie:"
597
+
598
+ #: app/view/event-single.php:27
599
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
600
+ msgstr "Dodaj to wydarzenie do swojego ulubionego kalendarza (iCal, Outlook, etc.)"
601
+
602
+ #: app/view/event-single.php:28
603
+ msgid "✔ Add to Calendar"
604
+ msgstr "✔ Dodaj do kalendarza"
605
+
606
+ #: app/view/event-single.php:31
607
+ msgid "Add this event to your Google Calendar"
608
+ msgstr "Dodaj to wydarzenie do swojego kalendarza Google"
609
+
610
+ #: app/view/event-single.php:33
611
+ msgid "Add to Google Calendar"
612
+ msgstr "Dodaj do Google Calendar"
613
+
614
+ #: app/view/event-single.php:40
615
+ #: app/view/event-multi.php:33
616
+ msgid "Cost:"
617
+ msgstr "Koszt:"
618
+
619
+ #: app/view/event-single.php:46
620
+ #: app/view/event-multi.php:39
621
+ msgid "Contact:"
622
+ msgstr "Kontakt:"
623
+
624
+ #: app/view/event-single.php:52
625
+ #: app/view/event-multi.php:45
626
+ #: app/view/agenda.php:81
627
+ msgid "Categories:"
628
+ msgstr "Kategorie:"
629
+
630
+ #: app/view/event-single.php:59
631
+ #: app/view/event-multi.php:51
632
+ #: app/view/agenda.php:87
633
+ msgid "Tags:"
634
+ msgstr "Tagi:"
635
+
636
+ #: app/view/event-map.php:2
637
+ msgid "Click to view map"
638
+ msgstr "Kliknij by zobaczyć mapę"
639
+
640
+ #: app/view/event-map.php:9
641
+ msgid "View Full-Size Map »"
642
+ msgstr "Zobacz dużą mapę »"
643
+
644
+ #: app/view/box_event_cost.php:1
645
+ msgid "Event cost"
646
+ msgstr "Koszt wydarzenia"
647
+
648
+ #: app/view/box_event_cost.php:7
649
+ msgid "Cost"
650
+ msgstr "Koszt"
651
+
652
+ #: app/view/event-multi.php:7
653
+ msgid "View in Calendar »"
654
+ msgstr "Zobacz w kalendarzu »"
655
+
656
+ #: app/view/event-multi.php:24
657
+ msgid "View Map »"
658
+ msgstr "Zobacz mapę »"
659
+
660
+ #: app/view/admin_notices.php:2
661
+ msgid "All-in-One Event Calendar Notice:"
662
+ msgstr "Ostrzeżenie All-in-One Event Calendar:"
663
+
664
+ #: app/view/row_daily.php:3
665
+ #: app/view/row_yearly.php:3
666
+ #: app/view/row_weekly.php:3
667
+ #: app/view/row_monthly.php:3
668
+ #: app/view/row_monthly.php:22
669
+ msgid "Every"
670
+ msgstr "Każdy"
671
+
672
+ #: app/view/event_categories-color_picker.php:5
673
+ #: app/view/event_categories-color_picker.php:19
674
+ msgid "Category Color"
675
+ msgstr "Kolor kategorii"
676
+
677
+ #: app/view/event_categories-color_picker.php:13
678
+ #: app/view/event_categories-color_picker.php:25
679
+ msgid "Events in this category will be identified by this color"
680
+ msgstr "Wydarzenia w tej kategorii będą oznaczone tym kolorem"
681
+
682
+ #: app/view/agenda-widget.php:11
683
+ msgid "There are no upcoming events."
684
+ msgstr "Nie ma nadchodzących wydarzeń."
685
+
686
+ #: app/view/agenda-widget.php:59
687
+ msgid "View Calendar »"
688
+ msgstr "Zobacz kalendarz »"
689
+
690
+ #: app/view/agenda-widget.php:67
691
+ #: app/view/calendar.php:110
692
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
693
+ msgstr "Subskrybuj ten kalendarz w swoim ulubionym programie (iCal, Outlook, etc.)"
694
+
695
+ #: app/view/agenda-widget.php:68
696
+ #: app/view/calendar.php:111
697
+ msgid "✔ Subscribe"
698
+ msgstr "✔ Subskrybuj"
699
+
700
+ #: app/view/agenda-widget.php:72
701
+ #: app/view/calendar.php:116
702
+ msgid "Subscribe to this calendar in your Google Calendar"
703
+ msgstr "Subskrybuj ten kalendarz w Google Calendar"
704
+
705
+ #: app/view/agenda-widget.php:74
706
+ msgid "Add to Google"
707
+ msgstr "Dodaj do Google"
708
+
709
+ #: app/view/box_event_contact.php:1
710
+ msgid "Organizer contact info"
711
+ msgstr "Kontakt do organizatora"
712
+
713
+ #: app/view/box_event_contact.php:7
714
+ msgid "Contact name:"
715
+ msgstr "Imię/nazwa:"
716
+
717
+ #: app/view/box_event_contact.php:17
718
+ msgid "Phone:"
719
+ msgstr "Telefon:"
720
+
721
+ #: app/view/box_event_contact.php:27
722
+ msgid "E-mail:"
723
+ msgstr "Adres e-mail:"
724
+
725
+ #: app/view/box_ics_import_settings.php:2
726
+ msgid "Auto-refresh"
727
+ msgstr "Auto odswieżanie"
728
+
729
+ #: app/view/box_ics_import_settings.php:8
730
+ #: app/view/feed_row.php:3
731
+ msgid "iCalendar/.ics Feed URL:"
732
+ msgstr "iCalendar/.ics URL źródła:"
733
+
734
+ #: app/view/box_ics_import_settings.php:12
735
+ msgid "Event category"
736
+ msgstr "Kategoria wydarzenia"
737
+
738
+ #: app/view/box_ics_import_settings.php:18
739
+ #: app/view/feed_row.php:15
740
+ msgid "Tag with"
741
+ msgstr "Dodaj tag"
742
+
743
+ #: app/view/box_ics_import_settings.php:22
744
+ msgid "+ Add new subscription"
745
+ msgstr "+ Dodaj nową subskrypcję"
746
+
747
+ #: app/view/box_general_settings.php:1
748
+ msgid "Viewing Events"
749
+ msgstr "Przeglądanie wydarzeń"
750
+
751
+ #: app/view/box_general_settings.php:3
752
+ msgid "Calendar page:"
753
+ msgstr "Strona kalendarza:"
754
+
755
+ #: app/view/box_general_settings.php:7
756
+ msgid "Default calendar view:"
757
+ msgstr "Domyślny widok kalendarza:"
758
+
759
+ #: app/view/box_general_settings.php:12
760
+ msgid "Timezone:"
761
+ msgstr "Strefa czasowa:"
762
+
763
+ #: app/view/box_general_settings.php:17
764
+ msgid "Contain calendar in this DOM element:"
765
+ msgstr "Umieść kalendarz w tym elemencie DOM:"
766
+
767
+ #: app/view/box_general_settings.php:19
768
+ msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
769
+ msgstr "Opcjonalnie. Podaj <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">selektor jQuery</a> który określa pojedynczy element DOM. Zostaną podmienione wszystkie jego wewnętrzne elementy. Jeśli pole pozostawisz puste, kalendarz zostanie pokazany standardowo w elemencie zawartości."
770
+
771
+ #: app/view/box_general_settings.php:21
772
+ msgid "Week starts on"
773
+ msgstr "Tydzień zaczyna się od"
774
+
775
+ #: app/view/box_general_settings.php:25
776
+ msgid "Agenda pages show at most"
777
+ msgstr "Strony agenda pokazują co najwyżej "
778
+
779
+ #: app/view/box_general_settings.php:26
780
+ msgid "events"
781
+ msgstr "wydarzenia"
782
+
783
+ #: app/view/box_general_settings.php:31
784
+ msgid "Keep all events <strong>expanded</strong> in the agenda view"
785
+ msgstr "Pozostaw wszystkie elmenty <strong>rozwinięte</strong> w widoku agendy"
786
+
787
+ #: app/view/box_general_settings.php:37
788
+ msgid "<strong>Exclude</strong> events from search results"
789
+ msgstr "<strong>Wyklucz</strong> wydarzenia z wyników wyszukiwania"
790
+
791
+ #: app/view/box_general_settings.php:43
792
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
793
+ msgstr "Pokaż przycisk <strong>Dodaj wydarzenie</strong> dla użytkowników z odpowiednimi uprawnieniami"
794
+
795
+ #: app/view/box_general_settings.php:49
796
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
797
+ msgstr "Ukryj przyciski <strong>Subskrybuj</strong>/<strong>Dodaj do kalendarza</strong> w kalendarzu i widoku pojedynczego wydarzenia"
798
+
799
+ #: app/view/box_general_settings.php:55
800
+ msgid "Hide <strong>Google Maps</strong> until clicked"
801
+ msgstr "Ukryj <strong>Google Maps</strong> dopóki nie zostaną kliknięte"
802
+
803
+ #: app/view/box_general_settings.php:61
804
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
805
+ msgstr "Użyj ustawienia konfiguracji <strong>region</strong> (WordPress locale) do ustawienia funkcji autouzupełniania"
806
+
807
+ #: app/view/box_general_settings.php:67
808
+ msgid "Include <strong>event categories</strong> in post category lists"
809
+ msgstr "Zawieraj <strong>kategorie wydarzeń</strong> w listach kategorii wpisów"
810
+
811
+ #: app/view/box_general_settings.php:71
812
+ msgid "Adding/Editing Events"
813
+ msgstr "Dodawanie/Edycja wydarzeń"
814
+
815
+ #: app/view/box_general_settings.php:73
816
+ msgid "Input dates in this format:"
817
+ msgstr "Format daty:"
818
+
819
+ #: app/view/box_general_settings.php:79
820
+ msgid "Use <strong>24h time</strong> in time pickers"
821
+ msgstr "Użyj <strong>czasu 24h</strong> dla podawania czasu"
822
+
823
+ #: app/view/box_general_settings.php:85
824
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
825
+ msgstr "Wyświetl przycisk <strong>Publikuj</strong> na końcu formularza edycji wydarzenia"
826
+
827
+ #: app/view/row_yearly.php:7
828
+ msgctxt "Recurrence editor - yearly tab"
829
+ msgid "In"
830
+ msgstr "W"
831
+
832
+ #: app/view/feed_row.php:9
833
+ msgid "Event category:"
834
+ msgstr "Kategoria wydarzenia:"
835
+
836
+ #: app/view/feed_row.php:19
837
+ msgid "× Delete"
838
+ msgstr "x Usuń"
839
+
840
+ #: app/view/agenda-widget-form.php:2
841
+ msgid "Title:"
842
+ msgstr "Tytuł:"
843
+
844
+ #: app/view/agenda-widget-form.php:6
845
+ msgid "Number of events to show:"
846
+ msgstr "Liczba wydarzeń do wyświetlenia:"
847
+
848
+ #: app/view/agenda-widget-form.php:14
849
+ msgid "Events with these <strong>Categories</strong>"
850
+ msgstr "Wydarzenia z tych <strong>Kategorii</strong>"
851
+
852
+ #: app/view/agenda-widget-form.php:23
853
+ msgid "No categories found."
854
+ msgstr "Nie znaleziono kategorii."
855
+
856
+ #: app/view/agenda-widget-form.php:30
857
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
858
+ msgstr "<strong>Lub</strong> wydarzenia z tymi <strong>Tagami</strong>"
859
+
860
+ #: app/view/agenda-widget-form.php:39
861
+ msgid "No tags found."
862
+ msgstr "Nie znaleziono tagów"
863
+
864
+ #: app/view/agenda-widget-form.php:46
865
+ msgid "<strong>Or</strong> any of these <strong>Events</strong>"
866
+ msgstr "<strong>Lub</strong> jakiekolwiek z tych <strong>wydarzeń</strong>"
867
+
868
+ #: app/view/agenda-widget-form.php:55
869
+ msgid "No events found."
870
+ msgstr "Nie znaleziono wydarzeń"
871
+
872
+ #: app/view/agenda-widget-form.php:62
873
+ msgid "Show <strong>View Calendar</strong> button"
874
+ msgstr "Pokaż przycisk <strong>Zobacz kalendarz</strong>"
875
+
876
+ #: app/view/agenda-widget-form.php:65
877
+ msgid "Show <strong>Subscribe</strong> buttons"
878
+ msgstr "Pokaż przyciski <strong>subskrypcji</strong>"
879
+
880
+ #: app/view/agenda-widget-form.php:68
881
+ msgid "Hide this widget on calendar page"
882
+ msgstr "Schowaj ten widżet na stronie kalendarza"
883
+
884
+ #: app/view/calendar.php:35
885
+ msgid "+ Post Your Event"
886
+ msgstr "+ dodaj swoje wydarzenie"
887
+
888
+ #: app/view/calendar.php:44
889
+ msgid "Clear Filters"
890
+ msgstr "Wyczyść filtrowanie"
891
+
892
+ #: app/view/calendar.php:44
893
+ msgid "✘"
894
+ msgstr "✘"
895
+
896
+ #: app/view/calendar.php:45
897
+ msgid "Filter:"
898
+ msgstr "Filtruj:"
899
+
900
+ #: app/view/calendar.php:50
901
+ msgid "Categories ▾"
902
+ msgstr "Kategorie ▾"
903
+
904
+ #: app/view/calendar.php:72
905
+ msgid "Tags ▾"
906
+ msgstr "Tagi ▾"
907
+
908
+ #: app/view/calendar.php:112
909
+ msgid "to this filtered calendar"
910
+ msgstr "do tego filtrowanego kalendarza"
911
+
912
+ #: app/view/calendar.php:118
913
+ msgid "Subscribe in Google Calendar"
914
+ msgstr "Subskrybuj w Google Calendar"
915
+
916
+ #: app/view/agenda.php:5
917
+ msgid "+ Expand All"
918
+ msgstr "+ Rozwiń wszystkie"
919
+
920
+ #: app/view/agenda.php:8
921
+ msgid "− Collapse All"
922
+ msgstr "- Zwiń wszystkie"
923
+
924
+ #: app/view/agenda.php:12
925
+ #: app/view/week.php:4
926
+ #: app/view/month.php:4
927
+ msgid "Today"
928
+ msgstr "Dzisiaj"
929
+
930
+ #: app/view/agenda.php:29
931
+ msgid "There are no upcoming events to display at this time."
932
+ msgstr "Nie ma nadchodzących wydarzeń do wyświetlenia."
933
+
934
+ #: app/view/agenda.php:59
935
+ #: app/view/agenda.php:109
936
+ #: app/view/week.php:69
937
+ #: app/view/month.php:68
938
+ msgid "(all-day)"
939
+ msgstr "(cały dzień)"
940
+
941
+ #: app/view/agenda.php:77
942
+ msgid "Read more »"
943
+ msgstr "Czytaj dalej »"
944
+
945
+ #: app/view/class-ai1ec-agenda-widget.php:18
946
+ #: app/view/class-ai1ec-agenda-widget.php:39
947
+ msgid "Upcoming Events"
948
+ msgstr "Nadchodzące wydarzenia"
949
+
950
+ #: app/view/class-ai1ec-agenda-widget.php:20
951
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
952
+ msgstr "All-in-One Event Calendar: Wyświetl nadchodzące wydarzenia w widoku agendy"
953
+
954
+ #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.2.5) #-#-#-#-#
955
+ #. Author of the plugin/theme
956
+ #: app/view/box_the_seed_studio.php:4
957
+ msgid "The Seed Studio"
958
+ msgstr "The Seed Studio"
959
+
960
+ #: app/view/box_the_seed_studio.php:7
961
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
962
+ msgstr "Seed Studio zapewnia tworzenie stron www oraz wsparcie dla klientów i web developerów."
963
+
964
+ #: app/view/box_the_seed_studio.php:14
965
+ msgid "Follow @theseednet"
966
+ msgstr "Śledź @theseednet"
967
+
968
+ #: app/view/box_the_seed_studio.php:20
969
+ msgid "Get Support<span> from one of our experienced pros</span>"
970
+ msgstr "Zdobądź wsparcie<span> od jednego z naszych doświadczonych pracowników</span>"
971
+
972
+ #: app/view/box_the_seed_studio.php:23
973
+ msgid "Support"
974
+ msgstr "Wsparcie"
975
+
976
+ #: app/view/box_the_seed_studio.php:25
977
+ msgid "View plugin documentation"
978
+ msgstr "Zobacz dokumentację tego pluginu"
979
+
980
+ #: app/view/box_the_seed_studio.php:28
981
+ msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
982
+ msgstr "Możesz także zatrudnić The Seed do wsparcia tej wtyczki na umowę z rozliczeniem godzinowym , dla Twojej strony, lub dla jakichkolwiek potrzeb internetowych (my naprawdę pomagamy!)."
983
+
984
+ #: app/view/box_the_seed_studio.php:31
985
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
986
+ msgstr "Użytkownicy wtyczki: The Seed zapewnia wsparcie priorytetowe dla klientów. Darmowe wsparcie zapewniane dla użytkowników Wordpress jest zapewniane na forum wtyczki."
987
+
988
+ #: app/view/box_the_seed_studio.php:34
989
+ msgid "Vote and Share"
990
+ msgstr "Głosuj i współdziel"
991
+
992
+ #: app/view/box_the_seed_studio.php:36
993
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
994
+ msgstr "Ta wtyczke jest darmowa dla społeczności Wordpress zgodnie z licencją GPL3. Wszystko o co prosimy to:"
995
+
996
+ #: app/view/box_the_seed_studio.php:38
997
+ msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
998
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Daj 5 gwiazdek na wordpress.org</a> (jeśli sądzisz że na to zasługuje!)"
999
+
1000
+ #: app/view/box_the_seed_studio.php:39
1001
+ msgid "Link to the plugin page on our website"
1002
+ msgstr "Link do strony wtyczki na naszej stronie www"
1003
+
1004
+ #: app/view/box_the_seed_studio.php:40
1005
+ msgid "Become a Fan on Facebook"
1006
+ msgstr "Zostań fanem na Fecebook"
1007
+
1008
+ #: app/view/box_the_seed_studio.php:41
1009
+ msgid "Follow us on Twitter"
1010
+ msgstr "Śledź na na Twitterze"
1011
+
1012
+ #: app/view/box_the_seed_studio.php:46
1013
+ msgid "Latest from the Seed Network"
1014
+ msgstr "Nowości z Seed Network"
1015
+
1016
+ #: app/view/week.php:33
1017
+ msgid "All-day"
1018
+ msgstr "Cały dzień"
1019
+
1020
+ #: app/view/week.php:55
1021
+ #: app/view/week.php:127
1022
+ #: app/view/month.php:50
1023
+ msgid "Summary:"
1024
+ msgstr "Streszczenie:"
1025
+
1026
+ #: app/view/week.php:58
1027
+ #: app/view/week.php:130
1028
+ #: app/view/month.php:53
1029
+ msgid "click anywhere for details"
1030
+ msgstr "kliknij by zobaczyć szczegóły"
1031
+
1032
+ #: app/view/box_eventbrite.php:1
1033
+ msgid "Eventbrite Ticketing"
1034
+ msgstr "Zgłoszenia Eventbrite"
1035
+
1036
+ #: app/view/box_eventbrite.php:7
1037
+ msgid "Register this event with Eventbrite.com?"
1038
+ msgstr "Rejestrować to wydarzenie w Eventbrite.com?"
1039
+
1040
+ #: app/view/box_eventbrite.php:12
1041
+ msgid "Yes"
1042
+ msgstr "Tak"
1043
+
1044
+ #: app/view/box_eventbrite.php:14
1045
+ msgid "No"
1046
+ msgstr "Nie"
1047
+
1048
+ #: app/view/box_eventbrite.php:22
1049
+ msgid "Set up your first ticket"
1050
+ msgstr "Dodaj zwoje pierwsze zgłoszenie"
1051
+
1052
+ #: app/view/box_eventbrite.php:24
1053
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
1054
+ msgstr "Aby utworzyć wiele zgłoszeń dla wydarzenia, zatwierdź ten formularz, a następnie przejdź do Eventbrite."
1055
+
1056
+ #: app/view/box_eventbrite.php:32
1057
+ msgid "Name"
1058
+ msgstr "Nazwa"
1059
+
1060
+ #: app/view/box_eventbrite.php:42
1061
+ msgid "Description"
1062
+ msgstr "Opis"
1063
+
1064
+ #: app/view/box_eventbrite.php:53
1065
+ msgid "Type"
1066
+ msgstr "Typ"
1067
+
1068
+ #: app/view/box_eventbrite.php:58
1069
+ msgid "Set Price"
1070
+ msgstr "Ustal cenę"
1071
+
1072
+ #: app/view/box_eventbrite.php:60
1073
+ msgid "Donation Based"
1074
+ msgstr "Na bazie darowizny"
1075
+
1076
+ #: app/view/box_eventbrite.php:68
1077
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
1078
+ msgstr "Cena tego zgłoszenia zostanie pobrana z pola koszt powyżej."
1079
+
1080
+ #: app/view/box_eventbrite.php:75
1081
+ msgid "Quantity"
1082
+ msgstr "Ilość"
1083
+
1084
+ #: app/view/box_eventbrite.php:85
1085
+ msgid "Include Fee in Price"
1086
+ msgstr "Zawieraj opłatę w cenie"
1087
+
1088
+ #: app/view/box_eventbrite.php:90
1089
+ msgid "Add Service Fee on top of price"
1090
+ msgstr "Dodaj opłatę serwisową nad ceną"
1091
+
1092
+ #: app/view/box_eventbrite.php:92
1093
+ msgid "Include Service fee in price"
1094
+ msgstr "Zawieraj opłatę serwisową w cenie"
1095
+
1096
+ #: app/view/box_eventbrite.php:98
1097
+ msgid "Payment Options"
1098
+ msgstr "Opcje płatności"
1099
+
1100
+ #: app/view/box_eventbrite.php:103
1101
+ msgid "Paypal"
1102
+ msgstr "Paypal"
1103
+
1104
+ #: app/view/box_eventbrite.php:105
1105
+ msgid "Google Checkout"
1106
+ msgstr "Google Checkout"
1107
+
1108
+ #: app/view/box_eventbrite.php:107
1109
+ msgid "Check"
1110
+ msgstr "Czek"
1111
+
1112
+ #: app/view/box_eventbrite.php:109
1113
+ msgid "Cash"
1114
+ msgstr "Gotówka"
1115
+
1116
+ #: app/view/box_eventbrite.php:111
1117
+ msgid "Send an Invoice"
1118
+ msgstr "Wyślij fakturę"
1119
+
1120
+ #: app/view/event-single-footer.php:4
1121
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1122
+ msgstr "Ten wpis został pobrany z innej strony <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">źródło kalendarza</a>."
1123
+
1124
+ #: app/view/event-single-footer.php:8
1125
+ msgid "View original post »"
1126
+ msgstr "Zobacz oryginalny wpis »"
1127
+
1128
+ #: app/view/box_time_and_date.php:2
1129
+ msgid "Event date and time"
1130
+ msgstr "Czas i data wydarzenia"
1131
+
1132
+ #: app/view/box_time_and_date.php:8
1133
+ msgid "All-day event"
1134
+ msgstr "Wydarzenie całodzienne"
1135
+
1136
+ #: app/view/box_time_and_date.php:18
1137
+ msgid "Start date / time"
1138
+ msgstr "Czas rozpoczęcia"
1139
+
1140
+ #: app/view/box_time_and_date.php:31
1141
+ msgid "End date / time"
1142
+ msgstr "Czas zakończenia"
1143
+
1144
+ #: app/view/box_time_and_date.php:46
1145
+ msgid "Repeat"
1146
+ msgstr "Powtórz"
1147
+
1148
+ #: app/view/box_time_and_date.php:70
1149
+ msgid "End"
1150
+ msgstr "Koniec"
1151
+
1152
+ #: app/view/box_time_and_date.php:77
1153
+ msgid "Ending after"
1154
+ msgstr "Zakończenie po"
1155
+
1156
+ #: app/view/box_time_and_date.php:92
1157
+ msgid "Apply"
1158
+ msgstr "Zastosuj"
1159
+
1160
+ #: app/view/box_time_and_date.php:93
1161
+ msgid "Cancel"
1162
+ msgstr "Anuluj"
1163
+
1164
+ #: app/view/row_weekly.php:6
1165
+ msgctxt "Recurrence editor - weekly tab"
1166
+ msgid "On"
1167
+ msgstr "W"
1168
+
1169
+ #: app/view/row_monthly.php:9
1170
+ msgid "On day of the month"
1171
+ msgstr "W dzień miesiąca"
1172
+
1173
+ #: app/view/row_monthly.php:13
1174
+ msgid "On day of the week"
1175
+ msgstr "W dzień tygodnia"
1176
+
1177
+ #: app/view/settings.php:5
1178
+ msgid "All-in-one Event Calendar"
1179
+ msgstr "All-in-one Event Calendar"
1180
+
1181
+ #: app/view/settings.php:16
1182
+ msgid "Update Settings"
1183
+ msgstr "Aktualizuj ustawienia"
1184
+
1185
+ #: app/view/box_event_location.php:1
1186
+ msgid "Event location details"
1187
+ msgstr "Szczegóły miejsca wydarzenia"
1188
+
1189
+ #: app/view/box_event_location.php:7
1190
+ msgid "Venue name:"
1191
+ msgstr "Nazwa miejsca:"
1192
+
1193
+ #: app/view/box_event_location.php:17
1194
+ msgid "Address:"
1195
+ msgstr "Adres:"
1196
+
1197
+ #: app/view/box_event_location.php:27
1198
+ msgid "Show Google Map:"
1199
+ msgstr "Pokaż mapę Google:"
1200
+
1201
+ #: app/view/import.php:6
1202
+ msgid "Successfully imported events:"
1203
+ msgstr "Zakończono importowanie wydarzeń:"
1204
+
1205
+ #. Plugin Name of the plugin/theme
1206
+ msgid "All-in-One Event Calendar"
1207
+ msgstr "All-in-One Event Calendar"
1208
+
1209
+ #. Plugin URI of the plugin/theme
1210
+ msgid "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1211
+ msgstr "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1212
+
1213
+ #. Description of the plugin/theme
1214
+ msgid "An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
1215
+ msgstr "System kalendarza wydarzeń z widokami miesiąca, tygodnia, agendy, widżetem z nadchodzącymi wydarzeniami, kolorowanymi kategoriami, importem/exportem .ics."
1216
+
1217
+ #. Author URI of the plugin/theme
1218
+ msgid "http://theseednetwork.com/"
1219
+ msgstr "http://theseednetwork.com/"
1220
+
language/all-in-one-event-calendar-pt_PT.mo ADDED
Binary file
language/all-in-one-event-calendar-pt_PT.po ADDED
@@ -0,0 +1,1233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: All-in-One Event Calendar 1.3\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
5
+ "POT-Creation-Date: 2012-02-15 16:20:12+00:00\n"
6
+ "PO-Revision-Date: 2012-02-16 14:55-0000\n"
7
+ "Last-Translator: André Dias <andre.g.dias@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
15
+
16
+ #: app/controller/class-ai1ec-app-controller.php:364
17
+ #: app/controller/class-ai1ec-app-controller.php:365
18
+ msgid "Settings"
19
+ msgstr "Definições"
20
+
21
+ #. translators: "%s" represents the week's starting date
22
+ #: app/controller/class-ai1ec-calendar-controller.php:326
23
+ #: app/helper/class-ai1ec-calendar-helper.php:717
24
+ #: app/helper/class-ai1ec-calendar-helper.php:726
25
+ msgid "Week of %s"
26
+ msgstr "Semana de %s"
27
+
28
+ #: app/controller/class-ai1ec-calendar-controller.php:326
29
+ msgid "F j"
30
+ msgstr "F j"
31
+
32
+ #: app/controller/class-ai1ec-calendar-controller.php:383
33
+ #: app/helper/class-ai1ec-settings-helper.php:155
34
+ #: app/view/calendar.php:26
35
+ msgid "Agenda"
36
+ msgstr "Agenda"
37
+
38
+ #: app/controller/class-ai1ec-events-controller.php:149
39
+ msgid "This feed is already being imported."
40
+ msgstr "Este feed já está a ser importado."
41
+
42
+ #: app/controller/class-ai1ec-events-controller.php:150
43
+ msgid "Please enter a valid iCalendar URL."
44
+ msgstr "Por favor insira um URL iCalendar válido."
45
+
46
+ #: app/controller/class-ai1ec-events-controller.php:330
47
+ msgid "Publish"
48
+ msgstr "Publicar"
49
+
50
+ #: app/controller/class-ai1ec-events-controller.php:330
51
+ #: app/view/feed_row.php:20
52
+ msgid "Update"
53
+ msgstr "Atualizar"
54
+
55
+ #: app/controller/class-ai1ec-events-controller.php:332
56
+ msgid "Submit for Review"
57
+ msgstr "Enviar para Revisão"
58
+
59
+ #: app/controller/class-ai1ec-events-controller.php:450
60
+ msgid "Event updated. <a href=\"%s\">View event</a>"
61
+ msgstr "Evento atualizado. <a href=\"%s\">Ver evento</a>"
62
+
63
+ #: app/controller/class-ai1ec-events-controller.php:451
64
+ msgid "Custom field updated."
65
+ msgstr "Campo personalizado atualizado."
66
+
67
+ #: app/controller/class-ai1ec-events-controller.php:452
68
+ msgid "Custom field deleted."
69
+ msgstr "Campo personalizado eliminado."
70
+
71
+ #: app/controller/class-ai1ec-events-controller.php:453
72
+ msgid "Event updated."
73
+ msgstr "Evento atualizado."
74
+
75
+ #. translators: %s: date and time of the revision
76
+ #: app/controller/class-ai1ec-events-controller.php:455
77
+ msgid "Event restored to revision from %s"
78
+ msgstr "Evento restaurado para revisão por %s"
79
+
80
+ #: app/controller/class-ai1ec-events-controller.php:456
81
+ msgid "Event published. <a href=\"%s\">View event</a>"
82
+ msgstr "Evento publicado. <a href=\"%s\">Ver evento</a>"
83
+
84
+ #: app/controller/class-ai1ec-events-controller.php:457
85
+ msgid "Event saved."
86
+ msgstr "Evento guardado."
87
+
88
+ #: app/controller/class-ai1ec-events-controller.php:458
89
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
90
+ msgstr "Evento enviado. <a target=\"_blank\" href=\"%s\">Prever evento</a>"
91
+
92
+ #: app/controller/class-ai1ec-events-controller.php:459
93
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
94
+ msgstr "Evento agendado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Prever evento</a>"
95
+
96
+ #. translators: Publish box date format, see http:php.net/date
97
+ #: app/controller/class-ai1ec-events-controller.php:461
98
+ msgid "M j, Y @ G:i"
99
+ msgstr "M j, Y @ G:i"
100
+
101
+ #: app/controller/class-ai1ec-events-controller.php:462
102
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
103
+ msgstr "Rascunho do evento atualizado. <a target=\"_blank\" href=\"%s\">Prever evento</a>"
104
+
105
+ #: app/controller/class-ai1ec-importer-controller.php:91
106
+ msgid "The Events Calendar → All-in-One Event Calendar"
107
+ msgstr "The Events Calendar → All-in-One Event Calendar"
108
+
109
+ #: app/controller/class-ai1ec-importer-controller.php:92
110
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
111
+ msgstr "Importa eventos criados usando o plugin The Events Calendar para o All-in-One Event Calendar"
112
+
113
+ #: app/controller/class-ai1ec-settings-controller.php:82
114
+ msgid "Settings Updated."
115
+ msgstr "Definições atualizadas."
116
+
117
+ #: app/controller/class-ai1ec-settings-controller.php:173
118
+ msgid "Flushed %d events"
119
+ msgstr "Enviados %d eventos"
120
+
121
+ #: app/controller/class-ai1ec-settings-controller.php:181
122
+ #: app/controller/class-ai1ec-settings-controller.php:231
123
+ msgid "Invalid ICS feed ID"
124
+ msgstr "ID de feed ICS inválido"
125
+
126
+ #: app/controller/class-ai1ec-settings-controller.php:216
127
+ msgid "No events were found"
128
+ msgstr "Não foram encontrados eventos"
129
+
130
+ #: app/controller/class-ai1ec-settings-controller.php:221
131
+ msgid "Imported %d events"
132
+ msgstr "Importados %d eventos"
133
+
134
+ #: app/controller/class-ai1ec-settings-controller.php:222
135
+ #: app/view/feed_row.php:22
136
+ msgid "Flush 1 event"
137
+ msgid_plural "Flush %s events"
138
+ msgstr[0] "Enviar 1 evento"
139
+ msgstr[1] "Enviar %s eventos"
140
+
141
+ #: app/controller/class-ai1ec-settings-controller.php:274
142
+ msgctxt "meta box"
143
+ msgid "General Settings"
144
+ msgstr "Definições gerais"
145
+
146
+ #: app/controller/class-ai1ec-settings-controller.php:282
147
+ msgctxt "meta box"
148
+ msgid "The Seed Studio Support"
149
+ msgstr "Apoio The Seed Studio"
150
+
151
+ #: app/controller/class-ai1ec-settings-controller.php:289
152
+ msgctxt "meta box"
153
+ msgid "ICS Import Settings"
154
+ msgstr "Definições de Importação ICS"
155
+
156
+ #: app/controller/class-ai1ec-settings-controller.php:338
157
+ msgid "<a href=\"%s\">Settings</a>"
158
+ msgstr "<a href=\"%s\">Definições</a>"
159
+
160
+ #: app/controller/class-ai1ec-settings-controller.php:352
161
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
162
+ msgstr "<a href=\"%s\" target=\"_blank\">Doar</a>"
163
+
164
+ #: app/controller/class-ai1ec-settings-controller.php:353
165
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
166
+ msgstr "<a href=\"%s\" target=\"_blank\">Obter Ajuda</a>"
167
+
168
+ #: app/helper/class-ai1ec-app-helper.php:147
169
+ msgctxt "Custom post type name"
170
+ msgid "Events"
171
+ msgstr "Eventos"
172
+
173
+ #: app/helper/class-ai1ec-app-helper.php:148
174
+ msgctxt "Custom post type name (singular)"
175
+ msgid "Event"
176
+ msgstr "Evento"
177
+
178
+ #: app/helper/class-ai1ec-app-helper.php:149
179
+ msgid "Add New"
180
+ msgstr "Adicionar Novo"
181
+
182
+ #: app/helper/class-ai1ec-app-helper.php:150
183
+ msgid "Add New Event"
184
+ msgstr "Adicionar Novo Evento"
185
+
186
+ #: app/helper/class-ai1ec-app-helper.php:151
187
+ msgid "Edit Event"
188
+ msgstr "Editar Evento"
189
+
190
+ #: app/helper/class-ai1ec-app-helper.php:152
191
+ msgid "New Event"
192
+ msgstr "Novo Evento"
193
+
194
+ #: app/helper/class-ai1ec-app-helper.php:153
195
+ msgid "View Event"
196
+ msgstr "Ver Evento"
197
+
198
+ #: app/helper/class-ai1ec-app-helper.php:154
199
+ msgid "Search Events"
200
+ msgstr "Procurar Eventos"
201
+
202
+ #: app/helper/class-ai1ec-app-helper.php:155
203
+ msgid "No Events found"
204
+ msgstr "Não foram encontrados eventos"
205
+
206
+ #: app/helper/class-ai1ec-app-helper.php:156
207
+ msgid "No Events found in Trash"
208
+ msgstr "Não foram encontrados eventos no Lixo"
209
+
210
+ #: app/helper/class-ai1ec-app-helper.php:157
211
+ msgid "Parent Event"
212
+ msgstr "Evento Superior"
213
+
214
+ #: app/helper/class-ai1ec-app-helper.php:158
215
+ msgid "Events"
216
+ msgstr "Eventos"
217
+
218
+ #: app/helper/class-ai1ec-app-helper.php:205
219
+ msgctxt "Event categories taxonomy"
220
+ msgid "Event Categories"
221
+ msgstr "Categorias de Eventos"
222
+
223
+ #: app/helper/class-ai1ec-app-helper.php:206
224
+ msgctxt "Event categories taxonomy (singular)"
225
+ msgid "Event Category"
226
+ msgstr "Categoria de Evento"
227
+
228
+ #: app/helper/class-ai1ec-app-helper.php:213
229
+ msgctxt "Event tags taxonomy"
230
+ msgid "Event Tags"
231
+ msgstr "Etiquetas de Evento"
232
+
233
+ #: app/helper/class-ai1ec-app-helper.php:214
234
+ msgctxt "Event tags taxonomy (singular)"
235
+ msgid "Event Tag"
236
+ msgstr "Etiqueta de Evento"
237
+
238
+ #: app/helper/class-ai1ec-app-helper.php:281
239
+ msgid "Show All "
240
+ msgstr "Mostrar todos"
241
+
242
+ #: app/helper/class-ai1ec-app-helper.php:313
243
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
244
+ msgstr "Todos os Eventos <span class=\"update-plugins count-%d\" title=\"%d Eventos Pendentes\"><span class=\"update-count\">%d</span></span>"
245
+
246
+ #: app/helper/class-ai1ec-app-helper.php:319
247
+ msgid "All Events"
248
+ msgstr "Todos os Eventos"
249
+
250
+ #: app/helper/class-ai1ec-app-helper.php:395
251
+ msgid "Event Details"
252
+ msgstr "Detalhes do Evento"
253
+
254
+ #: app/helper/class-ai1ec-app-helper.php:428
255
+ msgid "Post Date"
256
+ msgstr "Data de Publicação"
257
+
258
+ #: app/helper/class-ai1ec-app-helper.php:429
259
+ msgid "Event date/time"
260
+ msgstr "Data/Hora do Evento"
261
+
262
+ #: app/helper/class-ai1ec-app-helper.php:653
263
+ msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
264
+ msgstr "%sPara configurar este plugin: %s 1. Selecionar uma opção na lista <strong>página Calendário</strong>. %s 2. Selecionar uma opção na lista <strong>Fuso-horário</strong>. %s 3. Clicar <strong>Atualizar Definições</strong>. %s"
265
+
266
+ #: app/helper/class-ai1ec-app-helper.php:655
267
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
268
+ msgstr "%sPara configurar este plugin: %s 1. Selecionar uma opção na lista <strong>página Calendário</strong>. %s 2. Clicar <strong>Atualizar Definições</strong>. %s"
269
+
270
+ #: app/helper/class-ai1ec-app-helper.php:657
271
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
272
+ msgstr "%sPara configurar este plugin: %s 1. Selecionar uma opção na lista <strong>Fuso-horário</strong>. %s 2. Clicar <strong>Atualizar Definições</strong>. %s"
273
+
274
+ #: app/helper/class-ai1ec-app-helper.php:661
275
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
276
+ msgstr "O plugin está instalado mas não foi configurado. <a href=\"%s\">Clique aqui para o configurar »</a>"
277
+
278
+ #: app/helper/class-ai1ec-app-helper.php:667
279
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
280
+ msgstr "O plugin está instalado mas não foi configurado. Por favor faça login como Administrador para o configurar."
281
+
282
+ #: app/helper/class-ai1ec-calendar-helper.php:718
283
+ #: app/helper/class-ai1ec-calendar-helper.php:727
284
+ msgid "M j"
285
+ msgstr "M j"
286
+
287
+ #: app/helper/class-ai1ec-calendar-helper.php:759
288
+ msgid "« Previous Events"
289
+ msgstr "« Eventos Anteriores"
290
+
291
+ #: app/helper/class-ai1ec-calendar-helper.php:766
292
+ msgid "Next Events »"
293
+ msgstr "Eventos Seguintes »"
294
+
295
+ #: app/helper/class-ai1ec-events-helper.php:342
296
+ #: app/helper/class-ai1ec-events-helper.php:364
297
+ msgid "No repeat"
298
+ msgstr "Sem repetição"
299
+
300
+ #: app/helper/class-ai1ec-events-helper.php:343
301
+ #: app/helper/class-ai1ec-events-helper.php:365
302
+ msgid "Every day"
303
+ msgstr "Todos os dias"
304
+
305
+ #: app/helper/class-ai1ec-events-helper.php:344
306
+ #: app/helper/class-ai1ec-events-helper.php:366
307
+ msgid "Every week"
308
+ msgstr "Todas as semanas"
309
+
310
+ #: app/helper/class-ai1ec-events-helper.php:345
311
+ #: app/helper/class-ai1ec-events-helper.php:367
312
+ msgid "Every month"
313
+ msgstr "Todos os meses"
314
+
315
+ #: app/helper/class-ai1ec-events-helper.php:346
316
+ #: app/helper/class-ai1ec-events-helper.php:368
317
+ msgid "Every year"
318
+ msgstr "Todos os anos"
319
+
320
+ #: app/helper/class-ai1ec-events-helper.php:348
321
+ #: app/helper/class-ai1ec-events-helper.php:370
322
+ msgid "Custom..."
323
+ msgstr "Personalizado..."
324
+
325
+ #: app/helper/class-ai1ec-events-helper.php:491
326
+ msgid "first"
327
+ msgstr "primeiro"
328
+
329
+ #: app/helper/class-ai1ec-events-helper.php:492
330
+ msgid "second"
331
+ msgstr "segundo"
332
+
333
+ #: app/helper/class-ai1ec-events-helper.php:493
334
+ msgid "third"
335
+ msgstr "terceiro"
336
+
337
+ #: app/helper/class-ai1ec-events-helper.php:494
338
+ msgid "fourth"
339
+ msgstr "quarto"
340
+
341
+ #: app/helper/class-ai1ec-events-helper.php:496
342
+ msgid "last"
343
+ msgstr "último"
344
+
345
+ #: app/helper/class-ai1ec-events-helper.php:501
346
+ msgid "Sunday"
347
+ msgstr "domingo"
348
+
349
+ #: app/helper/class-ai1ec-events-helper.php:502
350
+ msgid "Monday"
351
+ msgstr "segunda"
352
+
353
+ #: app/helper/class-ai1ec-events-helper.php:503
354
+ msgid "Tuesday"
355
+ msgstr "terça"
356
+
357
+ #: app/helper/class-ai1ec-events-helper.php:504
358
+ msgid "Wednesday"
359
+ msgstr "quarta"
360
+
361
+ #: app/helper/class-ai1ec-events-helper.php:505
362
+ msgid "Thursday"
363
+ msgstr "quinta"
364
+
365
+ #: app/helper/class-ai1ec-events-helper.php:506
366
+ msgid "Friday"
367
+ msgstr "sexta"
368
+
369
+ #: app/helper/class-ai1ec-events-helper.php:507
370
+ msgid "Saturday"
371
+ msgstr "sábado"
372
+
373
+ #: app/helper/class-ai1ec-events-helper.php:509
374
+ msgid "day"
375
+ msgstr "dia"
376
+
377
+ #: app/helper/class-ai1ec-events-helper.php:510
378
+ msgid "weekday"
379
+ msgstr "dia da semana"
380
+
381
+ #: app/helper/class-ai1ec-events-helper.php:511
382
+ msgid "weekend day"
383
+ msgstr "dia do fim-de-semana"
384
+
385
+ #: app/helper/class-ai1ec-events-helper.php:577
386
+ #: app/helper/class-ai1ec-events-helper.php:596
387
+ #: app/helper/class-ai1ec-events-helper.php:1525
388
+ #: app/helper/class-ai1ec-settings-helper.php:237
389
+ #: app/view/box_repeat.php:2
390
+ msgid "Daily"
391
+ msgstr "Diariamente"
392
+
393
+ #: app/helper/class-ai1ec-events-helper.php:578
394
+ #: app/helper/class-ai1ec-events-helper.php:597
395
+ #: app/helper/class-ai1ec-events-helper.php:1537
396
+ #: app/view/box_repeat.php:3
397
+ msgid "Weekly"
398
+ msgstr "Semanalmente"
399
+
400
+ #: app/helper/class-ai1ec-events-helper.php:579
401
+ #: app/helper/class-ai1ec-events-helper.php:598
402
+ #: app/helper/class-ai1ec-events-helper.php:1549
403
+ #: app/view/box_repeat.php:4
404
+ msgid "Monthly"
405
+ msgstr "Mensalmente"
406
+
407
+ #: app/helper/class-ai1ec-events-helper.php:580
408
+ #: app/helper/class-ai1ec-events-helper.php:599
409
+ #: app/helper/class-ai1ec-events-helper.php:1561
410
+ #: app/view/box_repeat.php:5
411
+ msgid "Yearly"
412
+ msgstr "Anualmente"
413
+
414
+ #: app/helper/class-ai1ec-events-helper.php:621
415
+ msgid "day(s)"
416
+ msgstr "dia(s)"
417
+
418
+ #: app/helper/class-ai1ec-events-helper.php:650
419
+ msgid "week(s)"
420
+ msgstr "semana(s)"
421
+
422
+ #: app/helper/class-ai1ec-events-helper.php:720
423
+ msgid "month(s)"
424
+ msgstr "mês(es)"
425
+
426
+ #: app/helper/class-ai1ec-events-helper.php:743
427
+ msgid "year(s)"
428
+ msgstr "ano(s)"
429
+
430
+ #: app/helper/class-ai1ec-events-helper.php:1323
431
+ msgid "Never"
432
+ msgstr "Nunca"
433
+
434
+ #: app/helper/class-ai1ec-events-helper.php:1324
435
+ msgid "After"
436
+ msgstr "Depois de"
437
+
438
+ #: app/helper/class-ai1ec-events-helper.php:1325
439
+ #: app/view/box_repeat.php:28
440
+ msgid "On date"
441
+ msgstr "Na data"
442
+
443
+ #: app/helper/class-ai1ec-events-helper.php:1404
444
+ #: app/helper/class-ai1ec-events-helper.php:1413
445
+ #: app/helper/class-ai1ec-events-helper.php:1421
446
+ msgctxt "Recurrence editor - weekly tab"
447
+ msgid "on"
448
+ msgstr "em"
449
+
450
+ #: app/helper/class-ai1ec-events-helper.php:1409
451
+ #: app/helper/class-ai1ec-events-helper.php:1438
452
+ #: app/helper/class-ai1ec-events-helper.php:1476
453
+ msgid "and"
454
+ msgstr "e"
455
+
456
+ #: app/helper/class-ai1ec-events-helper.php:1434
457
+ #: app/helper/class-ai1ec-events-helper.php:1441
458
+ #: app/helper/class-ai1ec-events-helper.php:1447
459
+ #: app/helper/class-ai1ec-events-helper.php:1458
460
+ msgctxt "Recurrence editor - monthly tab"
461
+ msgid "on"
462
+ msgstr "em"
463
+
464
+ #: app/helper/class-ai1ec-events-helper.php:1434
465
+ #: app/helper/class-ai1ec-events-helper.php:1441
466
+ #: app/helper/class-ai1ec-events-helper.php:1447
467
+ msgid "of the month"
468
+ msgstr "do mês"
469
+
470
+ #: app/helper/class-ai1ec-events-helper.php:1471
471
+ #: app/helper/class-ai1ec-events-helper.php:1479
472
+ #: app/helper/class-ai1ec-events-helper.php:1486
473
+ msgctxt "Recurrence editor - yearly tab"
474
+ msgid "on"
475
+ msgstr "em"
476
+
477
+ #: app/helper/class-ai1ec-events-helper.php:1528
478
+ msgid "Every other day"
479
+ msgstr "Dia sim dia não"
480
+
481
+ #: app/helper/class-ai1ec-events-helper.php:1530
482
+ msgid "Every %d days"
483
+ msgstr "A cada %d dias"
484
+
485
+ #: app/helper/class-ai1ec-events-helper.php:1540
486
+ msgid "Every other week"
487
+ msgstr "Semana sim semana não"
488
+
489
+ #: app/helper/class-ai1ec-events-helper.php:1542
490
+ msgid "Every %d weeks"
491
+ msgstr "A cada %d semanas"
492
+
493
+ #: app/helper/class-ai1ec-events-helper.php:1552
494
+ msgid "Every other month"
495
+ msgstr "Mês sim mês não"
496
+
497
+ #: app/helper/class-ai1ec-events-helper.php:1554
498
+ msgid "Every %d months"
499
+ msgstr "A cada %d meses"
500
+
501
+ #: app/helper/class-ai1ec-events-helper.php:1564
502
+ msgid "Every other year"
503
+ msgstr "Ano sim ano não"
504
+
505
+ #: app/helper/class-ai1ec-events-helper.php:1566
506
+ msgid "Every %d years"
507
+ msgstr "A cada %d anos"
508
+
509
+ #: app/helper/class-ai1ec-events-helper.php:1586
510
+ msgid "until %s"
511
+ msgstr "até %s"
512
+
513
+ #: app/helper/class-ai1ec-events-helper.php:1589
514
+ msgid "for %d occurrences"
515
+ msgstr "durantes %d vezes"
516
+
517
+ #: app/helper/class-ai1ec-events-helper.php:1591
518
+ msgid "forever"
519
+ msgstr "para sempre"
520
+
521
+ #: app/helper/class-ai1ec-events-helper.php:1688
522
+ msgid "times"
523
+ msgstr "vezes"
524
+
525
+ #: app/helper/class-ai1ec-settings-helper.php:85
526
+ msgid "- Auto-Create New Page -"
527
+ msgstr "- Auto-Criar Nova Página - "
528
+
529
+ #: app/helper/class-ai1ec-settings-helper.php:107
530
+ msgid "View \"%s\" »"
531
+ msgstr "Ver \"%s\" »"
532
+
533
+ #: app/helper/class-ai1ec-settings-helper.php:149
534
+ #: app/view/calendar.php:11
535
+ #: app/view/calendar.php:12
536
+ #: app/view/calendar.php:25
537
+ msgid "Month"
538
+ msgstr "Mensal"
539
+
540
+ #: app/helper/class-ai1ec-settings-helper.php:152
541
+ #: app/view/calendar.php:18
542
+ #: app/view/calendar.php:19
543
+ msgid "Week"
544
+ msgstr "Semanal"
545
+
546
+ #: app/helper/class-ai1ec-settings-helper.php:204
547
+ msgid "Default (d/m/y)"
548
+ msgstr "Pré-definição (d/m/y)"
549
+
550
+ #: app/helper/class-ai1ec-settings-helper.php:207
551
+ msgid "US (m/d/y)"
552
+ msgstr "USA (m/d/y)"
553
+
554
+ #: app/helper/class-ai1ec-settings-helper.php:210
555
+ msgid "ISO 8601 (y-m-d)"
556
+ msgstr "ISO 8601 (y-m-d)"
557
+
558
+ #: app/helper/class-ai1ec-settings-helper.php:213
559
+ msgid "Dotted (m.d.y)"
560
+ msgstr "Pontuado (m.d.y)"
561
+
562
+ #: app/helper/class-ai1ec-settings-helper.php:231
563
+ msgid "Hourly"
564
+ msgstr "De hora em hora"
565
+
566
+ #: app/helper/class-ai1ec-settings-helper.php:234
567
+ msgid "Twice Daily"
568
+ msgstr "Duas vezes por dia"
569
+
570
+ #: app/helper/class-ai1ec-settings-helper.php:321
571
+ msgid "Calendar"
572
+ msgstr "Calendário"
573
+
574
+ #: app/model/class-ai1ec-event.php:487
575
+ msgid " (all-day)"
576
+ msgstr "(todo o dia)"
577
+
578
+ #: app/view/admin_notices.php:2
579
+ msgid "All-in-One Event Calendar Notice:"
580
+ msgstr "Notificação All-in-One Event Calendar:"
581
+
582
+ #: app/view/agenda-widget-form.php:2
583
+ msgid "Title:"
584
+ msgstr "Título:"
585
+
586
+ #: app/view/agenda-widget-form.php:6
587
+ msgid "Number of events to show:"
588
+ msgstr "Número de eventos a mostrar:"
589
+
590
+ #: app/view/agenda-widget-form.php:14
591
+ msgid "Events with these <strong>Categories</strong>"
592
+ msgstr "Eventos com estas <strong>Categorias</strong>"
593
+
594
+ #: app/view/agenda-widget-form.php:23
595
+ msgid "No categories found."
596
+ msgstr "Não foram encontradas categorias."
597
+
598
+ #: app/view/agenda-widget-form.php:30
599
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
600
+ msgstr "<strong>Ou</strong> eventos com estas <strong>Etiquetas</strong>"
601
+
602
+ #: app/view/agenda-widget-form.php:39
603
+ msgid "No tags found."
604
+ msgstr "Não foram encontradas Etiquetas."
605
+
606
+ #: app/view/agenda-widget-form.php:46
607
+ msgid "<strong>Or</strong> any of these <strong>Events</strong>"
608
+ msgstr "<strong>Ou</strong> qualquer um destes <strong>Eventos</strong>"
609
+
610
+ #: app/view/agenda-widget-form.php:55
611
+ msgid "No events found."
612
+ msgstr "Não foram encontrados eventos."
613
+
614
+ #: app/view/agenda-widget-form.php:62
615
+ msgid "Show <strong>View Calendar</strong> button"
616
+ msgstr "Mostrar botão <strong>Ver Calendário</strong>"
617
+
618
+ #: app/view/agenda-widget-form.php:65
619
+ msgid "Show <strong>Subscribe</strong> buttons"
620
+ msgstr "Mostrar botões de <strong>Subscrição</strong>"
621
+
622
+ #: app/view/agenda-widget-form.php:68
623
+ msgid "Hide this widget on calendar page"
624
+ msgstr "Esconder este widget na página do calendário"
625
+
626
+ #: app/view/agenda-widget.php:11
627
+ msgid "There are no upcoming events."
628
+ msgstr "Não há eventos futuros."
629
+
630
+ #: app/view/agenda-widget.php:59
631
+ msgid "View Calendar »"
632
+ msgstr "Ver Calendário »"
633
+
634
+ #: app/view/agenda-widget.php:67
635
+ #: app/view/calendar.php:110
636
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
637
+ msgstr "Subscreva este calendário usando um dos seus programas favoritos (iCal, Outlook, etc.)"
638
+
639
+ #: app/view/agenda-widget.php:68
640
+ #: app/view/calendar.php:111
641
+ msgid "✔ Subscribe"
642
+ msgstr "✔ Subscrever"
643
+
644
+ #: app/view/agenda-widget.php:72
645
+ #: app/view/calendar.php:116
646
+ msgid "Subscribe to this calendar in your Google Calendar"
647
+ msgstr "Subscrever este calendário no seu Google Calendar"
648
+
649
+ #: app/view/agenda-widget.php:74
650
+ msgid "Add to Google"
651
+ msgstr "Adicionar ao Google"
652
+
653
+ #: app/view/agenda.php:5
654
+ msgid "+ Expand All"
655
+ msgstr "+ Expandir Tudo"
656
+
657
+ #: app/view/agenda.php:8
658
+ msgid "− Collapse All"
659
+ msgstr "- Contrair Tudo"
660
+
661
+ #: app/view/agenda.php:12
662
+ #: app/view/month.php:4
663
+ #: app/view/week.php:4
664
+ msgid "Today"
665
+ msgstr "Hoje"
666
+
667
+ #: app/view/agenda.php:29
668
+ msgid "There are no upcoming events to display at this time."
669
+ msgstr "Não há eventos futuros para mostrar neste momento."
670
+
671
+ #: app/view/agenda.php:59
672
+ #: app/view/agenda.php:109
673
+ #: app/view/month.php:68
674
+ #: app/view/week.php:69
675
+ msgid "(all-day)"
676
+ msgstr "(todo o dia)"
677
+
678
+ #: app/view/agenda.php:77
679
+ msgid "Read more »"
680
+ msgstr "Ler mais »"
681
+
682
+ #: app/view/agenda.php:81
683
+ #: app/view/event-multi.php:45
684
+ #: app/view/event-single.php:52
685
+ msgid "Categories:"
686
+ msgstr "Categorias:"
687
+
688
+ #: app/view/agenda.php:87
689
+ #: app/view/event-multi.php:51
690
+ #: app/view/event-single.php:59
691
+ msgid "Tags:"
692
+ msgstr "Etiquetas:"
693
+
694
+ #: app/view/box_date_picker.php:4
695
+ msgid "Select dates"
696
+ msgstr "Datas selecionadas"
697
+
698
+ #: app/view/box_event_contact.php:1
699
+ msgid "Organizer contact info"
700
+ msgstr "Informação do Organizador"
701
+
702
+ #: app/view/box_event_contact.php:7
703
+ msgid "Contact name:"
704
+ msgstr "Nome:"
705
+
706
+ #: app/view/box_event_contact.php:17
707
+ msgid "Phone:"
708
+ msgstr "Telefone:"
709
+
710
+ #: app/view/box_event_contact.php:27
711
+ msgid "E-mail:"
712
+ msgstr "E-mail:"
713
+
714
+ #: app/view/box_event_cost.php:1
715
+ msgid "Event cost"
716
+ msgstr "Custo do Evento"
717
+
718
+ #: app/view/box_event_cost.php:7
719
+ msgid "Cost"
720
+ msgstr "Custo"
721
+
722
+ #: app/view/box_event_location.php:1
723
+ msgid "Event location details"
724
+ msgstr "Detalhes da Localização do Evento"
725
+
726
+ #: app/view/box_event_location.php:7
727
+ msgid "Venue name:"
728
+ msgstr "Nome do Local:"
729
+
730
+ #: app/view/box_event_location.php:17
731
+ msgid "Address:"
732
+ msgstr "Morada:"
733
+
734
+ #: app/view/box_event_location.php:27
735
+ msgid "Show Google Map:"
736
+ msgstr "Mostrar Google Map:"
737
+
738
+ #: app/view/box_eventbrite.php:1
739
+ msgid "Eventbrite Ticketing"
740
+ msgstr "Bilheteira Eventbrite"
741
+
742
+ #: app/view/box_eventbrite.php:7
743
+ msgid "Register this event with Eventbrite.com?"
744
+ msgstr "Registar este evento em Eventbrite.com?"
745
+
746
+ #: app/view/box_eventbrite.php:12
747
+ msgid "Yes"
748
+ msgstr "Sim"
749
+
750
+ #: app/view/box_eventbrite.php:14
751
+ msgid "No"
752
+ msgstr "Não"
753
+
754
+ #: app/view/box_eventbrite.php:22
755
+ msgid "Set up your first ticket"
756
+ msgstr "Defina o seu primeiro bilhete"
757
+
758
+ #: app/view/box_eventbrite.php:24
759
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
760
+ msgstr "Para criar múltiplos bilhetes por evento, envie este formulário, e siga o link para Eventbrite."
761
+
762
+ #: app/view/box_eventbrite.php:32
763
+ msgid "Name"
764
+ msgstr "Nome"
765
+
766
+ #: app/view/box_eventbrite.php:42
767
+ msgid "Description"
768
+ msgstr "Descrição"
769
+
770
+ #: app/view/box_eventbrite.php:53
771
+ msgid "Type"
772
+ msgstr "Tipo"
773
+
774
+ #: app/view/box_eventbrite.php:58
775
+ msgid "Set Price"
776
+ msgstr "Definir Preço"
777
+
778
+ #: app/view/box_eventbrite.php:60
779
+ msgid "Donation Based"
780
+ msgstr "Baseado em Doações"
781
+
782
+ #: app/view/box_eventbrite.php:68
783
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
784
+ msgstr "O preço para o primeiro bilhete do evento será retirado do campo Custo acima."
785
+
786
+ #: app/view/box_eventbrite.php:75
787
+ msgid "Quantity"
788
+ msgstr "Quantidade"
789
+
790
+ #: app/view/box_eventbrite.php:85
791
+ msgid "Include Fee in Price"
792
+ msgstr "Incluir taxa no preço"
793
+
794
+ #: app/view/box_eventbrite.php:90
795
+ msgid "Add Service Fee on top of price"
796
+ msgstr "Adicionar Taxa de Serviço no preço"
797
+
798
+ #: app/view/box_eventbrite.php:92
799
+ msgid "Include Service fee in price"
800
+ msgstr "Incluir Taxa de Serviço no preço"
801
+
802
+ #: app/view/box_eventbrite.php:98
803
+ msgid "Payment Options"
804
+ msgstr "Opções de Pagamento"
805
+
806
+ #: app/view/box_eventbrite.php:103
807
+ msgid "Paypal"
808
+ msgstr "Paypal"
809
+
810
+ #: app/view/box_eventbrite.php:105
811
+ msgid "Google Checkout"
812
+ msgstr "Google Checkout"
813
+
814
+ #: app/view/box_eventbrite.php:107
815
+ msgid "Check"
816
+ msgstr "Cheque"
817
+
818
+ #: app/view/box_eventbrite.php:109
819
+ msgid "Cash"
820
+ msgstr "Dinheiro"
821
+
822
+ #: app/view/box_eventbrite.php:111
823
+ msgid "Send an Invoice"
824
+ msgstr "Enviar uma Fatura"
825
+
826
+ #: app/view/box_general_settings.php:1
827
+ msgid "Viewing Events"
828
+ msgstr "Visualizar Eventos"
829
+
830
+ #: app/view/box_general_settings.php:3
831
+ msgid "Calendar page:"
832
+ msgstr "Página do Calendário:"
833
+
834
+ #: app/view/box_general_settings.php:7
835
+ msgid "Default calendar view:"
836
+ msgstr "Vista pré-definida:"
837
+
838
+ #: app/view/box_general_settings.php:12
839
+ msgid "Timezone:"
840
+ msgstr "Fuso-horário:"
841
+
842
+ #: app/view/box_general_settings.php:17
843
+ msgid "Contain calendar in this DOM element:"
844
+ msgstr "Conter calendário neste elemento DOM:"
845
+
846
+ #: app/view/box_general_settings.php:19
847
+ msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
848
+ msgstr "Opcional. Indique um <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">seletor jQuery</a> que avalie um único elemento DOM. Substitui qualquer evento existente encontrado no destido. Se deixado vazio, o calendário é mostrado no contentor de conteúdo de página normal."
849
+
850
+ #: app/view/box_general_settings.php:21
851
+ msgid "Week starts on"
852
+ msgstr "Semana começa em"
853
+
854
+ #: app/view/box_general_settings.php:25
855
+ msgid "Agenda pages show at most"
856
+ msgstr "Agenda mostra no máximo"
857
+
858
+ #: app/view/box_general_settings.php:26
859
+ msgid "events"
860
+ msgstr "eventos"
861
+
862
+ #: app/view/box_general_settings.php:31
863
+ msgid "Keep all events <strong>expanded</strong> in the agenda view"
864
+ msgstr "Manter todos os eventos <strong>expandidos</strong> na vista de Agenda"
865
+
866
+ #: app/view/box_general_settings.php:37
867
+ msgid "<strong>Exclude</strong> events from search results"
868
+ msgstr "<strong>Excluir</strong> eventos dos resultados de pesquisa."
869
+
870
+ #: app/view/box_general_settings.php:43
871
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
872
+ msgstr "Mostrar botão <strong>Publique o seu Evento</strong> por cima do calendário para utilizadores com privilégios."
873
+
874
+ #: app/view/box_general_settings.php:49
875
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
876
+ msgstr "Esconder botões <strong>Subscrever</strong>/<strong>Adicionar ao Calendário</strong> no calendário e vista de eventos."
877
+
878
+ #: app/view/box_general_settings.php:55
879
+ msgid "Hide <strong>Google Maps</strong> until clicked"
880
+ msgstr "Esconder <strong>Google Maps</strong> até ser clicado"
881
+
882
+ #: app/view/box_general_settings.php:61
883
+ msgid "Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function"
884
+ msgstr "Usar a <strong>região</strong> configurada (localização WordPress) para ajudar a função de autocompleção da morada."
885
+
886
+ #: app/view/box_general_settings.php:67
887
+ msgid "Include <strong>event categories</strong> in post category lists"
888
+ msgstr "Incluir <strong>categorias de eventos</strong> nas listas de categorias de publicações"
889
+
890
+ #: app/view/box_general_settings.php:71
891
+ msgid "Adding/Editing Events"
892
+ msgstr "Adicionar/Editar Eventos"
893
+
894
+ #: app/view/box_general_settings.php:73
895
+ msgid "Input dates in this format:"
896
+ msgstr "Datas introduzidas neste formato:"
897
+
898
+ #: app/view/box_general_settings.php:79
899
+ msgid "Use <strong>24h time</strong> in time pickers"
900
+ msgstr "Usar <strong>24h</strong> nos seletores de horas"
901
+
902
+ #: app/view/box_general_settings.php:85
903
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
904
+ msgstr "Mostrar <strong>Publicar</strong> no fim do formulário Editar Evento"
905
+
906
+ #: app/view/box_ics_import_settings.php:2
907
+ msgid "Auto-refresh"
908
+ msgstr "Auto-atualizar"
909
+
910
+ #: app/view/box_ics_import_settings.php:8
911
+ #: app/view/feed_row.php:3
912
+ msgid "iCalendar/.ics Feed URL:"
913
+ msgstr "URL de feed iCalendar/.ics:"
914
+
915
+ #: app/view/box_ics_import_settings.php:12
916
+ msgid "Event category"
917
+ msgstr "Categoria de Evento"
918
+
919
+ #: app/view/box_ics_import_settings.php:18
920
+ #: app/view/feed_row.php:15
921
+ msgid "Tag with"
922
+ msgstr "Etiqueta com"
923
+
924
+ #: app/view/box_ics_import_settings.php:22
925
+ msgid "+ Add new subscription"
926
+ msgstr "+ Adicionar nova subscrição"
927
+
928
+ #: app/view/box_repeat.php:14
929
+ msgid "End"
930
+ msgstr "Fim"
931
+
932
+ #: app/view/box_repeat.php:21
933
+ msgid "Ending after"
934
+ msgstr "Termina após"
935
+
936
+ #: app/view/box_repeat.php:36
937
+ msgid "Apply"
938
+ msgstr "Aplicar"
939
+
940
+ #: app/view/box_repeat.php:37
941
+ msgid "Cancel"
942
+ msgstr "Cancelar"
943
+
944
+ #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.3) #-#-#-#-#
945
+ #. Author of the plugin/theme
946
+ #: app/view/box_the_seed_studio.php:4
947
+ msgid "The Seed Studio"
948
+ msgstr "The Seed Studio"
949
+
950
+ #: app/view/box_the_seed_studio.php:7
951
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
952
+ msgstr "The Seed Studio providencia desenvolvimento web e serviços de suport para clientes e desenvolvedores web."
953
+
954
+ #: app/view/box_the_seed_studio.php:14
955
+ msgid "Follow @theseednet"
956
+ msgstr "Siga @theseednet"
957
+
958
+ #: app/view/box_the_seed_studio.php:20
959
+ msgid "Get Support<span> from one of our experienced pros</span>"
960
+ msgstr "Obtenha Ajuda <span>de um dos nossos profissionais experientes</span>"
961
+
962
+ #: app/view/box_the_seed_studio.php:23
963
+ msgid "Support"
964
+ msgstr "Ajuda"
965
+
966
+ #: app/view/box_the_seed_studio.php:25
967
+ msgid "View plugin documentation"
968
+ msgstr "Ver documentação do plugin"
969
+
970
+ #: app/view/box_the_seed_studio.php:28
971
+ msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
972
+ msgstr "Também pode contratar The Seed para suporte num contrato ou à base de horas para este plugin, para o seu website ou para qualquer das suas necessidades de marketing na Internet (podemos mesmo ajudar!)."
973
+
974
+ #: app/view/box_the_seed_studio.php:31
975
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
976
+ msgstr "Utilizadores do plugin: The Seed dá prioridade de suporte aos cliente. Para ajuda gratuita de outros utilizadores WordPress, visite o fórum do plugin."
977
+
978
+ #: app/view/box_the_seed_studio.php:34
979
+ msgid "Vote and Share"
980
+ msgstr "Vote e Partilhe"
981
+
982
+ #: app/view/box_the_seed_studio.php:36
983
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
984
+ msgstr "Este plugin é oferecido gratuitamente à Comunidade Wordpress sob a licença GPL3. Tudo o que lhe pedimos é que:"
985
+
986
+ #: app/view/box_the_seed_studio.php:38
987
+ msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
988
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Dê-lhe um rating de cinco estrelas em wordpress.org</a> (se achar que merece!)"
989
+
990
+ #: app/view/box_the_seed_studio.php:39
991
+ msgid "Link to the plugin page on our website"
992
+ msgstr "Link para a página do plugin no nosso website"
993
+
994
+ #: app/view/box_the_seed_studio.php:40
995
+ msgid "Become a Fan on Facebook"
996
+ msgstr "Torne-se fã no Facebook"
997
+
998
+ #: app/view/box_the_seed_studio.php:41
999
+ msgid "Follow us on Twitter"
1000
+ msgstr "Siga-nos no Twitter"
1001
+
1002
+ #: app/view/box_the_seed_studio.php:46
1003
+ msgid "Latest from the Seed Network"
1004
+ msgstr "Úlitmas da Seed Network"
1005
+
1006
+ #: app/view/box_time_and_date.php:2
1007
+ msgid "Event date and time"
1008
+ msgstr "Dia e Hora do Evento"
1009
+
1010
+ #: app/view/box_time_and_date.php:8
1011
+ msgid "All-day event"
1012
+ msgstr "Evento todo o dia"
1013
+
1014
+ #: app/view/box_time_and_date.php:18
1015
+ msgid "Start date / time"
1016
+ msgstr "Data/Hora de início"
1017
+
1018
+ #: app/view/box_time_and_date.php:31
1019
+ msgid "End date / time"
1020
+ msgstr "Data/Hora de fim"
1021
+
1022
+ #: app/view/box_time_and_date.php:46
1023
+ msgid "Repeat"
1024
+ msgstr "Repetir"
1025
+
1026
+ #: app/view/box_time_and_date.php:60
1027
+ msgid "Exclude"
1028
+ msgstr "Excluir"
1029
+
1030
+ #: app/view/box_time_and_date.php:75
1031
+ msgid "Exclude dates"
1032
+ msgstr "Excluir datas"
1033
+
1034
+ #: app/view/calendar.php:35
1035
+ msgid "+ Post Your Event"
1036
+ msgstr "+ Publicar o seu Evento"
1037
+
1038
+ #: app/view/calendar.php:44
1039
+ msgid "Clear Filters"
1040
+ msgstr "Limpar Filtros"
1041
+
1042
+ #: app/view/calendar.php:44
1043
+ msgid "✘"
1044
+ msgstr "✘"
1045
+
1046
+ #: app/view/calendar.php:45
1047
+ msgid "Filter:"
1048
+ msgstr "Filtro:"
1049
+
1050
+ #: app/view/calendar.php:50
1051
+ msgid "Categories ▾"
1052
+ msgstr "Categorias ▾"
1053
+
1054
+ #: app/view/calendar.php:72
1055
+ msgid "Tags ▾"
1056
+ msgstr "Etiquetas ▾"
1057
+
1058
+ #: app/view/calendar.php:112
1059
+ msgid "to this filtered calendar"
1060
+ msgstr "a este calendário filtrado"
1061
+
1062
+ #: app/view/calendar.php:118
1063
+ msgid "Subscribe in Google Calendar"
1064
+ msgstr "Subscrever no Google Calendar"
1065
+
1066
+ #: app/view/class-ai1ec-agenda-widget.php:18
1067
+ #: app/view/class-ai1ec-agenda-widget.php:39
1068
+ msgid "Upcoming Events"
1069
+ msgstr "Próximos Eventos"
1070
+
1071
+ #: app/view/class-ai1ec-agenda-widget.php:20
1072
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
1073
+ msgstr "All-in-One Event Calendar: Lista os próximos eventos na vista Agenda"
1074
+
1075
+ #: app/view/event-excerpt.php:2
1076
+ #: app/view/event-multi.php:4
1077
+ #: app/view/event-single.php:5
1078
+ msgid "When:"
1079
+ msgstr "Quando:"
1080
+
1081
+ #: app/view/event-excerpt.php:4
1082
+ #: app/view/event-multi.php:20
1083
+ #: app/view/event-single.php:20
1084
+ msgid "Where:"
1085
+ msgstr "Onde:"
1086
+
1087
+ #: app/view/event-map.php:2
1088
+ msgid "Click to view map"
1089
+ msgstr "Clique para ver o mapa"
1090
+
1091
+ #: app/view/event-map.php:9
1092
+ msgid "View Full-Size Map »"
1093
+ msgstr "Ver Mapa Tamanho Inteiro »"
1094
+
1095
+ #: app/view/event-multi.php:7
1096
+ msgid "View in Calendar »"
1097
+ msgstr "Ver no Calendário »"
1098
+
1099
+ #: app/view/event-multi.php:14
1100
+ #: app/view/event-single.php:15
1101
+ msgid "Repeats:"
1102
+ msgstr "Repetição:"
1103
+
1104
+ #: app/view/event-multi.php:24
1105
+ msgid "View Map »"
1106
+ msgstr "Ver Mapa »"
1107
+
1108
+ #: app/view/event-multi.php:33
1109
+ #: app/view/event-single.php:40
1110
+ msgid "Cost:"
1111
+ msgstr "Custo:"
1112
+
1113
+ #: app/view/event-multi.php:39
1114
+ #: app/view/event-single.php:46
1115
+ msgid "Contact:"
1116
+ msgstr "Contacto:"
1117
+
1118
+ #: app/view/event-single-footer.php:4
1119
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1120
+ msgstr "Esta publicação foi replicada do <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"feed iCalendar\">feed de calendário</a> de outro site."
1121
+
1122
+ #: app/view/event-single-footer.php:8
1123
+ msgid "View original post »"
1124
+ msgstr "Ver publicação original »"
1125
+
1126
+ #: app/view/event-single.php:8
1127
+ msgid "Back to Calendar »"
1128
+ msgstr "Voltar ao Calendário »"
1129
+
1130
+ #: app/view/event-single.php:27
1131
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
1132
+ msgstr "Adicionar este evento ao seu programa favorito (iCal, Outlook, etc.)"
1133
+
1134
+ #: app/view/event-single.php:28
1135
+ msgid "✔ Add to Calendar"
1136
+ msgstr "✔ Adicionar ao Calendário"
1137
+
1138
+ #: app/view/event-single.php:31
1139
+ msgid "Add this event to your Google Calendar"
1140
+ msgstr "Adicionar este evento ao seu Google Calendar"
1141
+
1142
+ #: app/view/event-single.php:33
1143
+ msgid "Add to Google Calendar"
1144
+ msgstr "Adicionar ao Google Calendar"
1145
+
1146
+ #: app/view/event_categories-color_picker.php:5
1147
+ #: app/view/event_categories-color_picker.php:19
1148
+ msgid "Category Color"
1149
+ msgstr "Cor da Categoria"
1150
+
1151
+ #: app/view/event_categories-color_picker.php:13
1152
+ #: app/view/event_categories-color_picker.php:25
1153
+ msgid "Events in this category will be identified by this color"
1154
+ msgstr "Eventos nesta categoria serão identificados com esta cor"
1155
+
1156
+ #: app/view/feed_row.php:9
1157
+ msgid "Event category:"
1158
+ msgstr "Categoria do Evento:"
1159
+
1160
+ #: app/view/feed_row.php:19
1161
+ msgid "× Delete"
1162
+ msgstr "× Eliminar"
1163
+
1164
+ #: app/view/import.php:6
1165
+ msgid "Successfully imported events:"
1166
+ msgstr "Eventos importados com sucesso:"
1167
+
1168
+ #: app/view/month.php:50
1169
+ #: app/view/week.php:55
1170
+ #: app/view/week.php:127
1171
+ msgid "Summary:"
1172
+ msgstr "Resumo:"
1173
+
1174
+ #: app/view/month.php:53
1175
+ #: app/view/week.php:58
1176
+ #: app/view/week.php:130
1177
+ msgid "click anywhere for details"
1178
+ msgstr "clique para detalhes"
1179
+
1180
+ #: app/view/row_daily.php:3
1181
+ #: app/view/row_monthly.php:3
1182
+ #: app/view/row_monthly.php:22
1183
+ #: app/view/row_weekly.php:3
1184
+ #: app/view/row_yearly.php:3
1185
+ msgid "Every"
1186
+ msgstr "Todos"
1187
+
1188
+ #: app/view/row_monthly.php:9
1189
+ msgid "On day of the month"
1190
+ msgstr "No dia do mês"
1191
+
1192
+ #: app/view/row_monthly.php:13
1193
+ msgid "On day of the week"
1194
+ msgstr "No dia da semana"
1195
+
1196
+ #: app/view/row_weekly.php:6
1197
+ msgctxt "Recurrence editor - weekly tab"
1198
+ msgid "On"
1199
+ msgstr "Em"
1200
+
1201
+ #: app/view/row_yearly.php:7
1202
+ msgctxt "Recurrence editor - yearly tab"
1203
+ msgid "In"
1204
+ msgstr "Em"
1205
+
1206
+ #: app/view/settings.php:5
1207
+ msgid "All-in-one Event Calendar"
1208
+ msgstr "All-in-one Event Calendar"
1209
+
1210
+ #: app/view/settings.php:16
1211
+ msgid "Update Settings"
1212
+ msgstr "Atualizar Definições"
1213
+
1214
+ #: app/view/week.php:33
1215
+ msgid "All-day"
1216
+ msgstr "Todo o dia"
1217
+
1218
+ #. Plugin Name of the plugin/theme
1219
+ msgid "All-in-One Event Calendar"
1220
+ msgstr "All-in-One Event Calendar"
1221
+
1222
+ #. Plugin URI of the plugin/theme
1223
+ msgid "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1224
+ msgstr "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1225
+
1226
+ #. Description of the plugin/theme
1227
+ msgid "An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
1228
+ msgstr "Um sistema de calendário de eventos com vistas mensais, semanais e agenda, widget de próximos eventos, categoridas baseadas em cores, recurrência, e importação/exportação de feeds .ics."
1229
+
1230
+ #. Author URI of the plugin/theme
1231
+ msgid "http://theseednetwork.com/"
1232
+ msgstr "http://theseednetwork.com/"
1233
+
language/all-in-one-event-calendar-sv_SE.mo CHANGED
Binary file
language/all-in-one-event-calendar-sv_SE.po CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the All-in-One Event Calendar Plugin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: All-in-One Event Calendar Plugin 1.2.5\n"
6
- "Report-Msgid-Bugs-To: http://trac.the-seed.ca/ticket/78\n"
7
- "POT-Creation-Date: 2012-02-04 13:47+0100\n"
8
- "PO-Revision-Date: 2012-02-04 20:07+0100\n"
9
  "Last-Translator: Jonas Sjömark <jonassjomark@gmail.com>\n"
10
  "Language-Team: Jonas Sjömark (josjo) <jonassjomark@gmail.com>\n"
11
  "MIME-Version: 1.0\n"
@@ -14,10 +14,9 @@ msgstr ""
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-Language: Swedish\n"
16
  "X-Poedit-Country: SWEDEN\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
 
19
- #: ..\./app/controller/class-ai1ec-app-controller.php:354
20
- #: ..\./app/controller/class-ai1ec-app-controller.php:355
21
  msgid "Settings"
22
  msgstr "Inställningar"
23
 
@@ -36,76 +35,72 @@ msgstr "W (Y-m-d)"
36
  msgid "Agenda"
37
  msgstr "Agenda"
38
 
39
- #: ..\./app/controller/class-ai1ec-events-controller.php:149
40
  msgid "This feed is already being imported."
41
  msgstr "Detta flöde har redan importerats."
42
 
43
- #: ..\./app/controller/class-ai1ec-events-controller.php:150
44
  msgid "Please enter a valid iCalendar URL."
45
  msgstr "Ange en giltig iCalendar URL."
46
 
47
- #: ..\./app/controller/class-ai1ec-events-controller.php:285
48
- msgid "times"
49
- msgstr "gånger"
50
-
51
- #: ..\./app/controller/class-ai1ec-events-controller.php:334
52
  msgid "Publish"
53
  msgstr "Publicera"
54
 
55
- #: ..\./app/controller/class-ai1ec-events-controller.php:334
56
  msgid "Update"
57
  msgstr "Uppdatera"
58
 
59
- #: ..\./app/controller/class-ai1ec-events-controller.php:336
60
  msgid "Submit for Review"
61
  msgstr "Skicka för granskning"
62
 
63
- #: ..\./app/controller/class-ai1ec-events-controller.php:449
64
  #, php-format
65
  msgid "Event updated. <a href=\"%s\">View event</a>"
66
  msgstr "Händelsen uppdaterades. <a href=\"%s\">Visa händelse</a>"
67
 
68
- #: ..\./app/controller/class-ai1ec-events-controller.php:450
69
  msgid "Custom field updated."
70
  msgstr "Eget fält uppdaterades."
71
 
72
- #: ..\./app/controller/class-ai1ec-events-controller.php:451
73
  msgid "Custom field deleted."
74
  msgstr "Eget fält togs bort."
75
 
76
- #: ..\./app/controller/class-ai1ec-events-controller.php:452
77
  msgid "Event updated."
78
  msgstr "Händelsen uppdaterades."
79
 
80
- #: ..\./app/controller/class-ai1ec-events-controller.php:454
81
  #, php-format
82
  msgid "Event restored to revision from %s"
83
  msgstr "Händelsen återställdes till revision från %s"
84
 
85
- #: ..\./app/controller/class-ai1ec-events-controller.php:455
86
  #, php-format
87
  msgid "Event published. <a href=\"%s\">View event</a>"
88
  msgstr "Händelsen publicerades. <a href=\"%s\">Visa händelse</a>"
89
 
90
- #: ..\./app/controller/class-ai1ec-events-controller.php:456
91
  msgid "Event saved."
92
  msgstr "Händelsen sparades."
93
 
94
- #: ..\./app/controller/class-ai1ec-events-controller.php:457
95
  #, php-format
96
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
97
  msgstr "Händelsen sparades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
98
 
99
- #: ..\./app/controller/class-ai1ec-events-controller.php:458
100
  #, php-format
101
  msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
102
  msgstr "Händelsen äger rum: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska händelse</a>"
103
 
104
- #: ..\./app/controller/class-ai1ec-events-controller.php:460
105
  msgid "M j, Y @ G:i"
106
  msgstr "j F, Y @ H:i"
107
 
108
- #: ..\./app/controller/class-ai1ec-events-controller.php:461
109
  #, php-format
110
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
111
  msgstr "Utkastet uppdaterades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
@@ -248,50 +243,60 @@ msgctxt "Event tags taxonomy (singular)"
248
  msgid "Event Tag"
249
  msgstr "Etikett för händelse"
250
 
251
- #: ..\./app/helper/class-ai1ec-app-helper.php:281
 
 
 
 
 
 
 
 
 
 
252
  msgid "Show All "
253
  msgstr "Visa alla "
254
 
255
- #: ..\./app/helper/class-ai1ec-app-helper.php:313
256
  #, php-format
257
  msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
258
  msgstr "Alla händelser <span class=\"update-plugins count-%d\" title=\"%d väntande händelser\"><span class=\"update-count\">%d</span></span>"
259
 
260
- #: ..\./app/helper/class-ai1ec-app-helper.php:319
261
  msgid "All Events"
262
  msgstr "Alla händelser"
263
 
264
- #: ..\./app/helper/class-ai1ec-app-helper.php:395
265
  msgid "Event Details"
266
  msgstr "Detaljer för händelse"
267
 
268
- #: ..\./app/helper/class-ai1ec-app-helper.php:428
269
  msgid "Post Date"
270
  msgstr "Datum för inlägg"
271
 
272
- #: ..\./app/helper/class-ai1ec-app-helper.php:429
273
  msgid "Event date/time"
274
  msgstr "Händelsens datum/tid"
275
 
276
- #: ..\./app/helper/class-ai1ec-app-helper.php:653
277
  #, php-format
278
  msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
279
  msgstr "%sFör att ställa in denna plugin: %s 1. Välj en sida i listan med <strong>kalendersidor</strong>. %s 2. Välj en <strong>tidszon</strong> i listan. %s 3. Klicka på <strong>Uppdatera inställningar</strong>. %s"
280
 
281
- #: ..\./app/helper/class-ai1ec-app-helper.php:655
282
  msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
283
  msgstr "För att ställa in denna plugin: välj en sida i listan med <strong>kalendersidor</strong>, klicka sedan på <strong>Uppdatera inställningar</strong>."
284
 
285
- #: ..\./app/helper/class-ai1ec-app-helper.php:657
286
  msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
287
  msgstr "För att ställa in denna plugin: välj en <strong>tidszon</strong> i listan, klicka sedan på <strong>Uppdatera inställningar</strong>."
288
 
289
- #: ..\./app/helper/class-ai1ec-app-helper.php:661
290
  #, php-format
291
  msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
292
  msgstr "Denna plugin är installerad men behöver ställas in. <a href=\"%s\">Klicka här för att ställa in den nu »</a>"
293
 
294
- #: ..\./app/helper/class-ai1ec-app-helper.php:667
295
  msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
296
  msgstr "Denna plugin är installerad men behöver ställas in. Logga in som administratör i WordPress för att göra inställningarna."
297
 
@@ -308,232 +313,236 @@ msgstr "« Tidigare händelser"
308
  msgid "Next Events »"
309
  msgstr "Senare händelser »"
310
 
311
- #: ..\./app/helper/class-ai1ec-events-helper.php:319
312
- #: ..\./app/helper/class-ai1ec-events-helper.php:341
313
  msgid "No repeat"
314
  msgstr "Inte återkommande"
315
 
316
- #: ..\./app/helper/class-ai1ec-events-helper.php:320
317
- #: ..\./app/helper/class-ai1ec-events-helper.php:342
318
  msgid "Every day"
319
  msgstr "Varje dag"
320
 
321
- #: ..\./app/helper/class-ai1ec-events-helper.php:321
322
- #: ..\./app/helper/class-ai1ec-events-helper.php:343
323
  msgid "Every week"
324
  msgstr "Varje vecka"
325
 
326
- #: ..\./app/helper/class-ai1ec-events-helper.php:322
327
- #: ..\./app/helper/class-ai1ec-events-helper.php:344
328
  msgid "Every month"
329
  msgstr "Varje månad"
330
 
331
- #: ..\./app/helper/class-ai1ec-events-helper.php:323
332
- #: ..\./app/helper/class-ai1ec-events-helper.php:345
333
  msgid "Every year"
334
  msgstr "Varje år"
335
 
336
- #: ..\./app/helper/class-ai1ec-events-helper.php:325
337
- #: ..\./app/helper/class-ai1ec-events-helper.php:347
338
  msgid "Custom..."
339
  msgstr "Eget..."
340
 
341
- #: ..\./app/helper/class-ai1ec-events-helper.php:468
342
  msgid "first"
343
  msgstr "första"
344
 
345
- #: ..\./app/helper/class-ai1ec-events-helper.php:469
346
  msgid "second"
347
  msgstr "andra"
348
 
349
- #: ..\./app/helper/class-ai1ec-events-helper.php:470
350
  msgid "third"
351
  msgstr "tredje"
352
 
353
- #: ..\./app/helper/class-ai1ec-events-helper.php:471
354
  msgid "fourth"
355
  msgstr "fjärde"
356
 
357
- #: ..\./app/helper/class-ai1ec-events-helper.php:473
358
  msgid "last"
359
  msgstr "sista"
360
 
361
- #: ..\./app/helper/class-ai1ec-events-helper.php:478
362
  msgid "Sunday"
363
  msgstr "Söndag"
364
 
365
- #: ..\./app/helper/class-ai1ec-events-helper.php:479
366
  msgid "Monday"
367
  msgstr "Måndag"
368
 
369
- #: ..\./app/helper/class-ai1ec-events-helper.php:480
370
  msgid "Tuesday"
371
  msgstr "Tisdag"
372
 
373
- #: ..\./app/helper/class-ai1ec-events-helper.php:481
374
  msgid "Wednesday"
375
  msgstr "Onsdag"
376
 
377
- #: ..\./app/helper/class-ai1ec-events-helper.php:482
378
  msgid "Thursday"
379
  msgstr "Torsdag"
380
 
381
- #: ..\./app/helper/class-ai1ec-events-helper.php:483
382
  msgid "Friday"
383
  msgstr "Fredag"
384
 
385
- #: ..\./app/helper/class-ai1ec-events-helper.php:484
386
  msgid "Saturday"
387
  msgstr "Lördag"
388
 
389
- #: ..\./app/helper/class-ai1ec-events-helper.php:486
390
  msgid "day"
391
  msgstr "dag"
392
 
393
- #: ..\./app/helper/class-ai1ec-events-helper.php:487
394
  msgid "weekday"
395
  msgstr "veckodag"
396
 
397
- #: ..\./app/helper/class-ai1ec-events-helper.php:488
398
  msgid "weekend day"
399
  msgstr "lördag/söndag"
400
 
401
- #: ..\./app/helper/class-ai1ec-events-helper.php:554
402
- #: ..\./app/helper/class-ai1ec-events-helper.php:573
403
- #: ..\./app/helper/class-ai1ec-events-helper.php:1502
404
  msgid "Daily"
405
  msgstr "Dagligen"
406
 
407
- #: ..\./app/helper/class-ai1ec-events-helper.php:555
408
- #: ..\./app/helper/class-ai1ec-events-helper.php:574
409
- #: ..\./app/helper/class-ai1ec-events-helper.php:1514
410
  msgid "Weekly"
411
  msgstr "Varje vecka"
412
 
413
- #: ..\./app/helper/class-ai1ec-events-helper.php:556
414
- #: ..\./app/helper/class-ai1ec-events-helper.php:575
415
- #: ..\./app/helper/class-ai1ec-events-helper.php:1526
416
  msgid "Monthly"
417
  msgstr "Varje månad"
418
 
419
- #: ..\./app/helper/class-ai1ec-events-helper.php:557
420
- #: ..\./app/helper/class-ai1ec-events-helper.php:576
421
- #: ..\./app/helper/class-ai1ec-events-helper.php:1538
422
  msgid "Yearly"
423
  msgstr "Varje år"
424
 
425
- #: ..\./app/helper/class-ai1ec-events-helper.php:598
426
  msgid "day(s)"
427
  msgstr "dagar"
428
 
429
- #: ..\./app/helper/class-ai1ec-events-helper.php:627
430
  msgid "week(s)"
431
  msgstr "veckor"
432
 
433
- #: ..\./app/helper/class-ai1ec-events-helper.php:697
434
  msgid "month(s)"
435
  msgstr "månader"
436
 
437
- #: ..\./app/helper/class-ai1ec-events-helper.php:720
438
  msgid "year(s)"
439
  msgstr "år"
440
 
441
- #: ..\./app/helper/class-ai1ec-events-helper.php:1300
442
  msgid "Never"
443
  msgstr "Aldrig"
444
 
445
- #: ..\./app/helper/class-ai1ec-events-helper.php:1301
446
  msgid "After"
447
  msgstr "Efter"
448
 
449
- #: ..\./app/helper/class-ai1ec-events-helper.php:1302
450
  msgid "On date"
451
  msgstr "Den"
452
 
453
- #: ..\./app/helper/class-ai1ec-events-helper.php:1381
454
- #: ..\./app/helper/class-ai1ec-events-helper.php:1390
455
- #: ..\./app/helper/class-ai1ec-events-helper.php:1398
456
  msgctxt "Recurrence editor - weekly tab"
457
  msgid "on"
458
  msgstr "på"
459
 
460
- #: ..\./app/helper/class-ai1ec-events-helper.php:1386
461
- #: ..\./app/helper/class-ai1ec-events-helper.php:1415
462
- #: ..\./app/helper/class-ai1ec-events-helper.php:1453
463
  msgid "and"
464
  msgstr "och"
465
 
466
- #: ..\./app/helper/class-ai1ec-events-helper.php:1411
467
- #: ..\./app/helper/class-ai1ec-events-helper.php:1418
468
- #: ..\./app/helper/class-ai1ec-events-helper.php:1424
469
- #: ..\./app/helper/class-ai1ec-events-helper.php:1435
470
  msgctxt "Recurrence editor - monthly tab"
471
  msgid "on"
472
  msgstr "den"
473
 
474
- #: ..\./app/helper/class-ai1ec-events-helper.php:1411
475
- #: ..\./app/helper/class-ai1ec-events-helper.php:1418
476
- #: ..\./app/helper/class-ai1ec-events-helper.php:1424
477
  msgid "of the month"
478
  msgstr "i månaden"
479
 
480
- #: ..\./app/helper/class-ai1ec-events-helper.php:1448
481
- #: ..\./app/helper/class-ai1ec-events-helper.php:1456
482
- #: ..\./app/helper/class-ai1ec-events-helper.php:1463
483
  msgctxt "Recurrence editor - yearly tab"
484
  msgid "on"
485
  msgstr "i"
486
 
487
- #: ..\./app/helper/class-ai1ec-events-helper.php:1505
488
  msgid "Every other day"
489
  msgstr "Varannan dag"
490
 
491
- #: ..\./app/helper/class-ai1ec-events-helper.php:1507
492
  #, php-format
493
  msgid "Every %d days"
494
  msgstr "Var %d:e dag"
495
 
496
- #: ..\./app/helper/class-ai1ec-events-helper.php:1517
497
  msgid "Every other week"
498
  msgstr "Varannan vecka"
499
 
500
- #: ..\./app/helper/class-ai1ec-events-helper.php:1519
501
  #, php-format
502
  msgid "Every %d weeks"
503
  msgstr "Var %d:e vecka"
504
 
505
- #: ..\./app/helper/class-ai1ec-events-helper.php:1529
506
  msgid "Every other month"
507
  msgstr "Varannan månad"
508
 
509
- #: ..\./app/helper/class-ai1ec-events-helper.php:1531
510
  #, php-format
511
  msgid "Every %d months"
512
  msgstr "Var %d:e månad"
513
 
514
- #: ..\./app/helper/class-ai1ec-events-helper.php:1541
515
  msgid "Every other year"
516
  msgstr "Vartannat år"
517
 
518
- #: ..\./app/helper/class-ai1ec-events-helper.php:1543
519
  #, php-format
520
  msgid "Every %d years"
521
  msgstr "Var %d:e år"
522
 
523
- #: ..\./app/helper/class-ai1ec-events-helper.php:1563
524
  #, php-format
525
  msgid "until %s"
526
  msgstr "till %s"
527
 
528
- #: ..\./app/helper/class-ai1ec-events-helper.php:1566
529
  #, php-format
530
  msgid "for %d occurrences"
531
  msgstr "%d gånger"
532
 
533
- #: ..\./app/helper/class-ai1ec-events-helper.php:1568
534
  msgid "forever"
535
  msgstr "upphör inte"
536
 
 
 
 
 
537
  #: ..\./app/helper/class-ai1ec-settings-helper.php:85
538
  msgid "- Auto-Create New Page -"
539
  msgstr "- Skapa ny sida automatiskt -"
@@ -579,7 +588,7 @@ msgstr "Två gånger dagligen"
579
  msgid "Calendar"
580
  msgstr "Kalender"
581
 
582
- #: ..\./app/model/class-ai1ec-event.php:487
583
  msgid " (all-day)"
584
  msgstr " (hela dagen)"
585
 
@@ -918,6 +927,22 @@ msgstr "Sätt etiketten"
918
  msgid "+ Add new subscription"
919
  msgstr "+ Lägg till ny prenumeration"
920
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
921
  #: ..\./app/view/box_the_seed_studio.php:4
922
  msgid "The Seed Studio"
923
  msgstr "The Seed Studio"
@@ -998,21 +1023,25 @@ msgstr "Slut"
998
  msgid "Repeat"
999
  msgstr "Återkommer"
1000
 
1001
- #: ..\./app/view/box_time_and_date.php:70
1002
- msgid "End"
1003
- msgstr "Upphör"
1004
 
1005
- #: ..\./app/view/box_time_and_date.php:77
1006
- msgid "Ending after"
1007
- msgstr "Upphör efter"
1008
 
1009
- #: ..\./app/view/box_time_and_date.php:92
1010
- msgid "Apply"
1011
- msgstr "Använd"
1012
 
1013
- #: ..\./app/view/box_time_and_date.php:93
1014
- msgid "Cancel"
1015
- msgstr "Ångra"
 
 
 
 
1016
 
1017
  #: ..\./app/view/calendar.php:35
1018
  msgid "+ Post Your Event"
@@ -1063,7 +1092,7 @@ msgstr "När:"
1063
 
1064
  #: ..\./app/view/event-excerpt.php:4
1065
  #: ..\./app/view/event-multi.php:20
1066
- #: ..\./app/view/event-single.php:20
1067
  msgid "Where:"
1068
  msgstr "Var:"
1069
 
@@ -1089,12 +1118,12 @@ msgid "View Map »"
1089
  msgstr "Visa karta »"
1090
 
1091
  #: ..\./app/view/event-multi.php:33
1092
- #: ..\./app/view/event-single.php:40
1093
  msgid "Cost:"
1094
  msgstr "Kostnad:"
1095
 
1096
  #: ..\./app/view/event-multi.php:39
1097
- #: ..\./app/view/event-single.php:46
1098
  msgid "Contact:"
1099
  msgstr "Kontakt:"
1100
 
@@ -1111,19 +1140,23 @@ msgstr "Visa ursprungligt inlägg »"
1111
  msgid "Back to Calendar »"
1112
  msgstr "Tillbaka till kalendern »"
1113
 
1114
- #: ..\./app/view/event-single.php:27
 
 
 
 
1115
  msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
1116
  msgstr "Lägg till denna händelse till ditt kalenderprogram (iCal, Outlook, m.fl.)"
1117
 
1118
- #: ..\./app/view/event-single.php:28
1119
  msgid "✔ Add to Calendar"
1120
  msgstr "✔ Lägg till i kalender"
1121
 
1122
- #: ..\./app/view/event-single.php:31
1123
  msgid "Add this event to your Google Calendar"
1124
  msgstr "Lägg till denna händelse i din Google-kalender"
1125
 
1126
- #: ..\./app/view/event-single.php:33
1127
  msgid "Add to Google Calendar"
1128
  msgstr "Lägg till i Google-kalender"
1129
 
@@ -1150,10 +1183,14 @@ msgid "Successfully imported events:"
1150
  msgstr "Händelser som importerades korrekt:"
1151
 
1152
  #: ..\./app/view/month.php:50
 
 
1153
  msgid "Summary:"
1154
  msgstr "Sammanfattning:"
1155
 
1156
  #: ..\./app/view/month.php:53
 
 
1157
  msgid "click anywhere for details"
1158
  msgstr "klicka för detaljer"
1159
 
2
  # This file is distributed under the same license as the All-in-One Event Calendar Plugin package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: All-in-One Event Calendar Plugin 1.4\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2012-03-08 21:07+0100\n"
8
+ "PO-Revision-Date: 2012-03-08 21:10+0100\n"
9
  "Last-Translator: Jonas Sjömark <jonassjomark@gmail.com>\n"
10
  "Language-Team: Jonas Sjömark (josjo) <jonassjomark@gmail.com>\n"
11
  "MIME-Version: 1.0\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
  "X-Poedit-Language: Swedish\n"
16
  "X-Poedit-Country: SWEDEN\n"
 
17
 
18
+ #: ..\./app/controller/class-ai1ec-app-controller.php:364
19
+ #: ..\./app/controller/class-ai1ec-app-controller.php:365
20
  msgid "Settings"
21
  msgstr "Inställningar"
22
 
35
  msgid "Agenda"
36
  msgstr "Agenda"
37
 
38
+ #: ..\./app/controller/class-ai1ec-events-controller.php:153
39
  msgid "This feed is already being imported."
40
  msgstr "Detta flöde har redan importerats."
41
 
42
+ #: ..\./app/controller/class-ai1ec-events-controller.php:154
43
  msgid "Please enter a valid iCalendar URL."
44
  msgstr "Ange en giltig iCalendar URL."
45
 
46
+ #: ..\./app/controller/class-ai1ec-events-controller.php:333
 
 
 
 
47
  msgid "Publish"
48
  msgstr "Publicera"
49
 
50
+ #: ..\./app/controller/class-ai1ec-events-controller.php:333
51
  msgid "Update"
52
  msgstr "Uppdatera"
53
 
54
+ #: ..\./app/controller/class-ai1ec-events-controller.php:335
55
  msgid "Submit for Review"
56
  msgstr "Skicka för granskning"
57
 
58
+ #: ..\./app/controller/class-ai1ec-events-controller.php:458
59
  #, php-format
60
  msgid "Event updated. <a href=\"%s\">View event</a>"
61
  msgstr "Händelsen uppdaterades. <a href=\"%s\">Visa händelse</a>"
62
 
63
+ #: ..\./app/controller/class-ai1ec-events-controller.php:459
64
  msgid "Custom field updated."
65
  msgstr "Eget fält uppdaterades."
66
 
67
+ #: ..\./app/controller/class-ai1ec-events-controller.php:460
68
  msgid "Custom field deleted."
69
  msgstr "Eget fält togs bort."
70
 
71
+ #: ..\./app/controller/class-ai1ec-events-controller.php:461
72
  msgid "Event updated."
73
  msgstr "Händelsen uppdaterades."
74
 
75
+ #: ..\./app/controller/class-ai1ec-events-controller.php:463
76
  #, php-format
77
  msgid "Event restored to revision from %s"
78
  msgstr "Händelsen återställdes till revision från %s"
79
 
80
+ #: ..\./app/controller/class-ai1ec-events-controller.php:464
81
  #, php-format
82
  msgid "Event published. <a href=\"%s\">View event</a>"
83
  msgstr "Händelsen publicerades. <a href=\"%s\">Visa händelse</a>"
84
 
85
+ #: ..\./app/controller/class-ai1ec-events-controller.php:465
86
  msgid "Event saved."
87
  msgstr "Händelsen sparades."
88
 
89
+ #: ..\./app/controller/class-ai1ec-events-controller.php:466
90
  #, php-format
91
  msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
92
  msgstr "Händelsen sparades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
93
 
94
+ #: ..\./app/controller/class-ai1ec-events-controller.php:467
95
  #, php-format
96
  msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
97
  msgstr "Händelsen äger rum: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska händelse</a>"
98
 
99
+ #: ..\./app/controller/class-ai1ec-events-controller.php:469
100
  msgid "M j, Y @ G:i"
101
  msgstr "j F, Y @ H:i"
102
 
103
+ #: ..\./app/controller/class-ai1ec-events-controller.php:470
104
  #, php-format
105
  msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
106
  msgstr "Utkastet uppdaterades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
243
  msgid "Event Tag"
244
  msgstr "Etikett för händelse"
245
 
246
+ #: ..\./app/helper/class-ai1ec-app-helper.php:221
247
+ msgctxt "Event feeds taxonomy"
248
+ msgid "Event Feeds"
249
+ msgstr "Händelseflöden"
250
+
251
+ #: ..\./app/helper/class-ai1ec-app-helper.php:222
252
+ msgctxt "Event feed taxonomy (singular)"
253
+ msgid "Event Feed"
254
+ msgstr "Händelseflöde"
255
+
256
+ #: ..\./app/helper/class-ai1ec-app-helper.php:310
257
  msgid "Show All "
258
  msgstr "Visa alla "
259
 
260
+ #: ..\./app/helper/class-ai1ec-app-helper.php:342
261
  #, php-format
262
  msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
263
  msgstr "Alla händelser <span class=\"update-plugins count-%d\" title=\"%d väntande händelser\"><span class=\"update-count\">%d</span></span>"
264
 
265
+ #: ..\./app/helper/class-ai1ec-app-helper.php:348
266
  msgid "All Events"
267
  msgstr "Alla händelser"
268
 
269
+ #: ..\./app/helper/class-ai1ec-app-helper.php:426
270
  msgid "Event Details"
271
  msgstr "Detaljer för händelse"
272
 
273
+ #: ..\./app/helper/class-ai1ec-app-helper.php:459
274
  msgid "Post Date"
275
  msgstr "Datum för inlägg"
276
 
277
+ #: ..\./app/helper/class-ai1ec-app-helper.php:460
278
  msgid "Event date/time"
279
  msgstr "Händelsens datum/tid"
280
 
281
+ #: ..\./app/helper/class-ai1ec-app-helper.php:684
282
  #, php-format
283
  msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
284
  msgstr "%sFör att ställa in denna plugin: %s 1. Välj en sida i listan med <strong>kalendersidor</strong>. %s 2. Välj en <strong>tidszon</strong> i listan. %s 3. Klicka på <strong>Uppdatera inställningar</strong>. %s"
285
 
286
+ #: ..\./app/helper/class-ai1ec-app-helper.php:686
287
  msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
288
  msgstr "För att ställa in denna plugin: välj en sida i listan med <strong>kalendersidor</strong>, klicka sedan på <strong>Uppdatera inställningar</strong>."
289
 
290
+ #: ..\./app/helper/class-ai1ec-app-helper.php:688
291
  msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
292
  msgstr "För att ställa in denna plugin: välj en <strong>tidszon</strong> i listan, klicka sedan på <strong>Uppdatera inställningar</strong>."
293
 
294
+ #: ..\./app/helper/class-ai1ec-app-helper.php:692
295
  #, php-format
296
  msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
297
  msgstr "Denna plugin är installerad men behöver ställas in. <a href=\"%s\">Klicka här för att ställa in den nu »</a>"
298
 
299
+ #: ..\./app/helper/class-ai1ec-app-helper.php:698
300
  msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
301
  msgstr "Denna plugin är installerad men behöver ställas in. Logga in som administratör i WordPress för att göra inställningarna."
302
 
313
  msgid "Next Events »"
314
  msgstr "Senare händelser »"
315
 
316
+ #: ..\./app/helper/class-ai1ec-events-helper.php:372
317
+ #: ..\./app/helper/class-ai1ec-events-helper.php:394
318
  msgid "No repeat"
319
  msgstr "Inte återkommande"
320
 
321
+ #: ..\./app/helper/class-ai1ec-events-helper.php:373
322
+ #: ..\./app/helper/class-ai1ec-events-helper.php:395
323
  msgid "Every day"
324
  msgstr "Varje dag"
325
 
326
+ #: ..\./app/helper/class-ai1ec-events-helper.php:374
327
+ #: ..\./app/helper/class-ai1ec-events-helper.php:396
328
  msgid "Every week"
329
  msgstr "Varje vecka"
330
 
331
+ #: ..\./app/helper/class-ai1ec-events-helper.php:375
332
+ #: ..\./app/helper/class-ai1ec-events-helper.php:397
333
  msgid "Every month"
334
  msgstr "Varje månad"
335
 
336
+ #: ..\./app/helper/class-ai1ec-events-helper.php:376
337
+ #: ..\./app/helper/class-ai1ec-events-helper.php:398
338
  msgid "Every year"
339
  msgstr "Varje år"
340
 
341
+ #: ..\./app/helper/class-ai1ec-events-helper.php:378
342
+ #: ..\./app/helper/class-ai1ec-events-helper.php:400
343
  msgid "Custom..."
344
  msgstr "Eget..."
345
 
346
+ #: ..\./app/helper/class-ai1ec-events-helper.php:521
347
  msgid "first"
348
  msgstr "första"
349
 
350
+ #: ..\./app/helper/class-ai1ec-events-helper.php:522
351
  msgid "second"
352
  msgstr "andra"
353
 
354
+ #: ..\./app/helper/class-ai1ec-events-helper.php:523
355
  msgid "third"
356
  msgstr "tredje"
357
 
358
+ #: ..\./app/helper/class-ai1ec-events-helper.php:524
359
  msgid "fourth"
360
  msgstr "fjärde"
361
 
362
+ #: ..\./app/helper/class-ai1ec-events-helper.php:526
363
  msgid "last"
364
  msgstr "sista"
365
 
366
+ #: ..\./app/helper/class-ai1ec-events-helper.php:531
367
  msgid "Sunday"
368
  msgstr "Söndag"
369
 
370
+ #: ..\./app/helper/class-ai1ec-events-helper.php:532
371
  msgid "Monday"
372
  msgstr "Måndag"
373
 
374
+ #: ..\./app/helper/class-ai1ec-events-helper.php:533
375
  msgid "Tuesday"
376
  msgstr "Tisdag"
377
 
378
+ #: ..\./app/helper/class-ai1ec-events-helper.php:534
379
  msgid "Wednesday"
380
  msgstr "Onsdag"
381
 
382
+ #: ..\./app/helper/class-ai1ec-events-helper.php:535
383
  msgid "Thursday"
384
  msgstr "Torsdag"
385
 
386
+ #: ..\./app/helper/class-ai1ec-events-helper.php:536
387
  msgid "Friday"
388
  msgstr "Fredag"
389
 
390
+ #: ..\./app/helper/class-ai1ec-events-helper.php:537
391
  msgid "Saturday"
392
  msgstr "Lördag"
393
 
394
+ #: ..\./app/helper/class-ai1ec-events-helper.php:539
395
  msgid "day"
396
  msgstr "dag"
397
 
398
+ #: ..\./app/helper/class-ai1ec-events-helper.php:540
399
  msgid "weekday"
400
  msgstr "veckodag"
401
 
402
+ #: ..\./app/helper/class-ai1ec-events-helper.php:541
403
  msgid "weekend day"
404
  msgstr "lördag/söndag"
405
 
406
+ #: ..\./app/helper/class-ai1ec-events-helper.php:607
407
+ #: ..\./app/helper/class-ai1ec-events-helper.php:626
408
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1676
409
  msgid "Daily"
410
  msgstr "Dagligen"
411
 
412
+ #: ..\./app/helper/class-ai1ec-events-helper.php:608
413
+ #: ..\./app/helper/class-ai1ec-events-helper.php:627
414
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1688
415
  msgid "Weekly"
416
  msgstr "Varje vecka"
417
 
418
+ #: ..\./app/helper/class-ai1ec-events-helper.php:609
419
+ #: ..\./app/helper/class-ai1ec-events-helper.php:628
420
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1700
421
  msgid "Monthly"
422
  msgstr "Varje månad"
423
 
424
+ #: ..\./app/helper/class-ai1ec-events-helper.php:610
425
+ #: ..\./app/helper/class-ai1ec-events-helper.php:629
426
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1712
427
  msgid "Yearly"
428
  msgstr "Varje år"
429
 
430
+ #: ..\./app/helper/class-ai1ec-events-helper.php:651
431
  msgid "day(s)"
432
  msgstr "dagar"
433
 
434
+ #: ..\./app/helper/class-ai1ec-events-helper.php:680
435
  msgid "week(s)"
436
  msgstr "veckor"
437
 
438
+ #: ..\./app/helper/class-ai1ec-events-helper.php:750
439
  msgid "month(s)"
440
  msgstr "månader"
441
 
442
+ #: ..\./app/helper/class-ai1ec-events-helper.php:773
443
  msgid "year(s)"
444
  msgstr "år"
445
 
446
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1360
447
  msgid "Never"
448
  msgstr "Aldrig"
449
 
450
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1361
451
  msgid "After"
452
  msgstr "Efter"
453
 
454
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1362
455
  msgid "On date"
456
  msgstr "Den"
457
 
458
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1555
459
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1564
460
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1572
461
  msgctxt "Recurrence editor - weekly tab"
462
  msgid "on"
463
  msgstr "på"
464
 
465
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1560
466
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1589
467
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1627
468
  msgid "and"
469
  msgstr "och"
470
 
471
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1585
472
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1592
473
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1598
474
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1609
475
  msgctxt "Recurrence editor - monthly tab"
476
  msgid "on"
477
  msgstr "den"
478
 
479
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1585
480
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1592
481
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1598
482
  msgid "of the month"
483
  msgstr "i månaden"
484
 
485
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1622
486
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1630
487
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1637
488
  msgctxt "Recurrence editor - yearly tab"
489
  msgid "on"
490
  msgstr "i"
491
 
492
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1679
493
  msgid "Every other day"
494
  msgstr "Varannan dag"
495
 
496
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1681
497
  #, php-format
498
  msgid "Every %d days"
499
  msgstr "Var %d:e dag"
500
 
501
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1691
502
  msgid "Every other week"
503
  msgstr "Varannan vecka"
504
 
505
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1693
506
  #, php-format
507
  msgid "Every %d weeks"
508
  msgstr "Var %d:e vecka"
509
 
510
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1703
511
  msgid "Every other month"
512
  msgstr "Varannan månad"
513
 
514
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1705
515
  #, php-format
516
  msgid "Every %d months"
517
  msgstr "Var %d:e månad"
518
 
519
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1715
520
  msgid "Every other year"
521
  msgstr "Vartannat år"
522
 
523
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1717
524
  #, php-format
525
  msgid "Every %d years"
526
  msgstr "Var %d:e år"
527
 
528
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1737
529
  #, php-format
530
  msgid "until %s"
531
  msgstr "till %s"
532
 
533
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1740
534
  #, php-format
535
  msgid "for %d occurrences"
536
  msgstr "%d gånger"
537
 
538
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1742
539
  msgid "forever"
540
  msgstr "upphör inte"
541
 
542
+ #: ..\./app/helper/class-ai1ec-events-helper.php:1839
543
+ msgid "times"
544
+ msgstr "gånger"
545
+
546
  #: ..\./app/helper/class-ai1ec-settings-helper.php:85
547
  msgid "- Auto-Create New Page -"
548
  msgstr "- Skapa ny sida automatiskt -"
588
  msgid "Calendar"
589
  msgstr "Kalender"
590
 
591
+ #: ..\./app/model/class-ai1ec-event.php:496
592
  msgid " (all-day)"
593
  msgstr " (hela dagen)"
594
 
927
  msgid "+ Add new subscription"
928
  msgstr "+ Lägg till ny prenumeration"
929
 
930
+ #: ..\./app/view/box_repeat.php:14
931
+ msgid "End"
932
+ msgstr "Upphör"
933
+
934
+ #: ..\./app/view/box_repeat.php:21
935
+ msgid "Ending after"
936
+ msgstr "Upphör efter"
937
+
938
+ #: ..\./app/view/box_repeat.php:36
939
+ msgid "Apply"
940
+ msgstr "Använd"
941
+
942
+ #: ..\./app/view/box_repeat.php:37
943
+ msgid "Cancel"
944
+ msgstr "Ångra"
945
+
946
  #: ..\./app/view/box_the_seed_studio.php:4
947
  msgid "The Seed Studio"
948
  msgstr "The Seed Studio"
1023
  msgid "Repeat"
1024
  msgstr "Återkommer"
1025
 
1026
+ #: ..\./app/view/box_time_and_date.php:60
1027
+ msgid "Exclude"
1028
+ msgstr "Undanta"
1029
 
1030
+ #: ..\./app/view/box_time_and_date.php:67
1031
+ msgid "Choose a rule for exclusion"
1032
+ msgstr "Välj en regel för undantag"
1033
 
1034
+ #: ..\./app/view/box_time_and_date.php:73
1035
+ msgid "Exclude dates"
1036
+ msgstr "Undanta datum"
1037
 
1038
+ #: ..\./app/view/box_time_and_date.php:80
1039
+ msgid "Select date range"
1040
+ msgstr "Välj ett datumintervall"
1041
+
1042
+ #: ..\./app/view/box_time_and_date.php:85
1043
+ msgid "Choose specific dates to exclude"
1044
+ msgstr "Välj datum som ska undantas"
1045
 
1046
  #: ..\./app/view/calendar.php:35
1047
  msgid "+ Post Your Event"
1092
 
1093
  #: ..\./app/view/event-excerpt.php:4
1094
  #: ..\./app/view/event-multi.php:20
1095
+ #: ..\./app/view/event-single.php:25
1096
  msgid "Where:"
1097
  msgstr "Var:"
1098
 
1118
  msgstr "Visa karta »"
1119
 
1120
  #: ..\./app/view/event-multi.php:33
1121
+ #: ..\./app/view/event-single.php:45
1122
  msgid "Cost:"
1123
  msgstr "Kostnad:"
1124
 
1125
  #: ..\./app/view/event-multi.php:39
1126
+ #: ..\./app/view/event-single.php:51
1127
  msgid "Contact:"
1128
  msgstr "Kontakt:"
1129
 
1140
  msgid "Back to Calendar »"
1141
  msgstr "Tillbaka till kalendern »"
1142
 
1143
+ #: ..\./app/view/event-single.php:21
1144
+ msgid "Excluding:"
1145
+ msgstr "Undantar:"
1146
+
1147
+ #: ..\./app/view/event-single.php:32
1148
  msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
1149
  msgstr "Lägg till denna händelse till ditt kalenderprogram (iCal, Outlook, m.fl.)"
1150
 
1151
+ #: ..\./app/view/event-single.php:33
1152
  msgid "✔ Add to Calendar"
1153
  msgstr "✔ Lägg till i kalender"
1154
 
1155
+ #: ..\./app/view/event-single.php:36
1156
  msgid "Add this event to your Google Calendar"
1157
  msgstr "Lägg till denna händelse i din Google-kalender"
1158
 
1159
+ #: ..\./app/view/event-single.php:38
1160
  msgid "Add to Google Calendar"
1161
  msgstr "Lägg till i Google-kalender"
1162
 
1183
  msgstr "Händelser som importerades korrekt:"
1184
 
1185
  #: ..\./app/view/month.php:50
1186
+ #: ..\./app/view/week.php:55
1187
+ #: ..\./app/view/week.php:127
1188
  msgid "Summary:"
1189
  msgstr "Sammanfattning:"
1190
 
1191
  #: ..\./app/view/month.php:53
1192
+ #: ..\./app/view/week.php:58
1193
+ #: ..\./app/view/week.php:130
1194
  msgid "click anywhere for details"
1195
  msgstr "klicka för detaljer"
1196
 
language/all-in-one-event-calendar.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the All-in-One Event Calendar package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: All-in-One Event Calendar 1.3\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
- "POT-Creation-Date: 2012-03-01 20:50:01+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,24 +12,24 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: app/controller/class-ai1ec-app-controller.php:364
16
- #: app/controller/class-ai1ec-app-controller.php:365
17
  msgid "Settings"
18
  msgstr ""
19
 
20
  #. translators: "%s" represents the week's starting date
21
- #: app/controller/class-ai1ec-calendar-controller.php:326
22
- #: app/helper/class-ai1ec-calendar-helper.php:717
23
- #: app/helper/class-ai1ec-calendar-helper.php:726
24
  msgid "Week of %s"
25
  msgstr ""
26
 
27
- #: app/controller/class-ai1ec-calendar-controller.php:326
28
  msgid "F j"
29
  msgstr ""
30
 
31
- #: app/controller/class-ai1ec-calendar-controller.php:383
32
- #: app/helper/class-ai1ec-settings-helper.php:155 app/view/calendar.php:26
33
  msgid "Agenda"
34
  msgstr ""
35
 
@@ -140,30 +140,30 @@ msgid_plural "Flush %s events"
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: app/controller/class-ai1ec-settings-controller.php:274
144
  msgctxt "meta box"
145
  msgid "General Settings"
146
  msgstr ""
147
 
148
- #: app/controller/class-ai1ec-settings-controller.php:282
149
  msgctxt "meta box"
150
  msgid "The Seed Studio Support"
151
  msgstr ""
152
 
153
- #: app/controller/class-ai1ec-settings-controller.php:289
154
  msgctxt "meta box"
155
  msgid "ICS Import Settings"
156
  msgstr ""
157
 
158
- #: app/controller/class-ai1ec-settings-controller.php:338
159
  msgid "<a href=\"%s\">Settings</a>"
160
  msgstr ""
161
 
162
- #: app/controller/class-ai1ec-settings-controller.php:352
163
  msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
164
  msgstr ""
165
 
166
- #: app/controller/class-ai1ec-settings-controller.php:353
167
  msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
168
  msgstr ""
169
 
@@ -273,47 +273,57 @@ msgstr ""
273
  msgid "Event date/time"
274
  msgstr ""
275
 
276
- #: app/helper/class-ai1ec-app-helper.php:684
277
  msgid ""
278
  "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</"
279
  "strong> dropdown list. %s 2. Select an option in the <strong>Timezone</"
280
  "strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
281
  msgstr ""
282
 
283
- #: app/helper/class-ai1ec-app-helper.php:686
284
  msgid ""
285
  "To set up the plugin: Select an option in the <strong>Calendar page</strong> "
286
  "dropdown list, the click <strong>Update Settings</strong>."
287
  msgstr ""
288
 
289
- #: app/helper/class-ai1ec-app-helper.php:688
290
  msgid ""
291
  "To set up the plugin: Select an option in the <strong>Timezone</strong> "
292
  "dropdown list, the click <strong>Update Settings</strong>."
293
  msgstr ""
294
 
295
- #: app/helper/class-ai1ec-app-helper.php:692
296
  msgid ""
297
  "The plugin is installed, but has not been configured. <a href=\"%s\">Click "
298
- "here to set it up now »</a>"
299
  msgstr ""
300
 
301
- #: app/helper/class-ai1ec-app-helper.php:698
302
  msgid ""
303
  "The plugin is installed, but has not been configured. Please log in as a "
304
  "WordPress Administrator to set it up."
305
  msgstr ""
306
 
307
- #: app/helper/class-ai1ec-calendar-helper.php:718
308
- #: app/helper/class-ai1ec-calendar-helper.php:727
 
 
 
 
 
 
 
 
 
 
309
  msgid "M j"
310
  msgstr ""
311
 
312
- #: app/helper/class-ai1ec-calendar-helper.php:759
313
  msgid "« Previous Events"
314
  msgstr ""
315
 
316
- #: app/helper/class-ai1ec-calendar-helper.php:766
317
  msgid "Next Events »"
318
  msgstr ""
319
 
@@ -410,7 +420,7 @@ msgstr ""
410
  #: app/helper/class-ai1ec-events-helper.php:607
411
  #: app/helper/class-ai1ec-events-helper.php:626
412
  #: app/helper/class-ai1ec-events-helper.php:1676
413
- #: app/helper/class-ai1ec-settings-helper.php:237 app/view/box_repeat.php:2
414
  msgid "Daily"
415
  msgstr ""
416
 
@@ -550,41 +560,46 @@ msgstr ""
550
  msgid "View \"%s\" »"
551
  msgstr ""
552
 
553
- #: app/helper/class-ai1ec-settings-helper.php:149 app/view/calendar.php:11
554
- #: app/view/calendar.php:12 app/view/calendar.php:25
 
 
 
 
 
555
  msgid "Month"
556
  msgstr ""
557
 
558
- #: app/helper/class-ai1ec-settings-helper.php:152 app/view/calendar.php:18
559
- #: app/view/calendar.php:19
560
  msgid "Week"
561
  msgstr ""
562
 
563
- #: app/helper/class-ai1ec-settings-helper.php:204
564
  msgid "Default (d/m/y)"
565
  msgstr ""
566
 
567
- #: app/helper/class-ai1ec-settings-helper.php:207
568
  msgid "US (m/d/y)"
569
  msgstr ""
570
 
571
- #: app/helper/class-ai1ec-settings-helper.php:210
572
  msgid "ISO 8601 (y-m-d)"
573
  msgstr ""
574
 
575
- #: app/helper/class-ai1ec-settings-helper.php:213
576
  msgid "Dotted (m.d.y)"
577
  msgstr ""
578
 
579
- #: app/helper/class-ai1ec-settings-helper.php:231
580
  msgid "Hourly"
581
  msgstr ""
582
 
583
- #: app/helper/class-ai1ec-settings-helper.php:234
584
  msgid "Twice Daily"
585
  msgstr ""
586
 
587
- #: app/helper/class-ai1ec-settings-helper.php:321
588
  msgid "Calendar"
589
  msgstr ""
590
 
@@ -592,10 +607,6 @@ msgstr ""
592
  msgid " (all-day)"
593
  msgstr ""
594
 
595
- #: app/view/admin_notices.php:2
596
- msgid "All-in-One Event Calendar Notice:"
597
- msgstr ""
598
-
599
  #: app/view/agenda-widget-form.php:2
600
  msgid "Title:"
601
  msgstr ""
@@ -648,17 +659,17 @@ msgstr ""
648
  msgid "View Calendar »"
649
  msgstr ""
650
 
651
- #: app/view/agenda-widget.php:67 app/view/calendar.php:110
652
  msgid ""
653
  "Subscribe to this calendar using your favourite calendar program (iCal, "
654
  "Outlook, etc.)"
655
  msgstr ""
656
 
657
- #: app/view/agenda-widget.php:68 app/view/calendar.php:111
658
  msgid "✔ Subscribe"
659
  msgstr ""
660
 
661
- #: app/view/agenda-widget.php:72 app/view/calendar.php:116
662
  msgid "Subscribe to this calendar in your Google Calendar"
663
  msgstr ""
664
 
@@ -674,7 +685,8 @@ msgstr ""
674
  msgid "− Collapse All"
675
  msgstr ""
676
 
677
- #: app/view/agenda.php:12 app/view/month.php:4 app/view/week.php:4
 
678
  msgid "Today"
679
  msgstr ""
680
 
@@ -683,7 +695,7 @@ msgid "There are no upcoming events to display at this time."
683
  msgstr ""
684
 
685
  #: app/view/agenda.php:59 app/view/agenda.php:109 app/view/month.php:68
686
- #: app/view/week.php:69
687
  msgid "(all-day)"
688
  msgstr ""
689
 
@@ -923,6 +935,14 @@ msgstr ""
923
  msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
924
  msgstr ""
925
 
 
 
 
 
 
 
 
 
926
  #: app/view/box_ics_import_settings.php:2
927
  msgid "Auto-refresh"
928
  msgstr ""
@@ -959,7 +979,7 @@ msgstr ""
959
  msgid "Cancel"
960
  msgstr ""
961
 
962
- #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.3) #-#-#-#-#
963
  #. Author of the plugin/theme
964
  #: app/view/box_the_seed_studio.php:4
965
  msgid "The Seed Studio"
@@ -1073,35 +1093,35 @@ msgstr ""
1073
  msgid "Choose specific dates to exclude"
1074
  msgstr ""
1075
 
1076
- #: app/view/calendar.php:35
1077
  msgid "+ Post Your Event"
1078
  msgstr ""
1079
 
1080
- #: app/view/calendar.php:44
1081
  msgid "Clear Filters"
1082
  msgstr ""
1083
 
1084
- #: app/view/calendar.php:44
1085
  msgid "✘"
1086
  msgstr ""
1087
 
1088
- #: app/view/calendar.php:45
1089
  msgid "Filter:"
1090
  msgstr ""
1091
 
1092
- #: app/view/calendar.php:50
1093
  msgid "Categories ▾"
1094
  msgstr ""
1095
 
1096
- #: app/view/calendar.php:72
1097
  msgid "Tags ▾"
1098
  msgstr ""
1099
 
1100
- #: app/view/calendar.php:112
1101
  msgid "to this filtered calendar"
1102
  msgstr ""
1103
 
1104
- #: app/view/calendar.php:118
1105
  msgid "Subscribe in Google Calendar"
1106
  msgstr ""
1107
 
@@ -1208,14 +1228,20 @@ msgstr ""
1208
  msgid "Successfully imported events:"
1209
  msgstr ""
1210
 
1211
- #: app/view/month.php:50 app/view/week.php:55 app/view/week.php:127
 
1212
  msgid "Summary:"
1213
  msgstr ""
1214
 
1215
- #: app/view/month.php:53 app/view/week.php:58 app/view/week.php:130
 
1216
  msgid "click anywhere for details"
1217
  msgstr ""
1218
 
 
 
 
 
1219
  #: app/view/row_daily.php:3 app/view/row_monthly.php:3
1220
  #: app/view/row_monthly.php:22 app/view/row_weekly.php:3
1221
  #: app/view/row_yearly.php:3
@@ -1248,10 +1274,6 @@ msgstr ""
1248
  msgid "Update Settings"
1249
  msgstr ""
1250
 
1251
- #: app/view/week.php:33
1252
- msgid "All-day"
1253
- msgstr ""
1254
-
1255
  #. Plugin Name of the plugin/theme
1256
  msgid "All-in-One Event Calendar"
1257
  msgstr ""
2
  # This file is distributed under the same license as the All-in-One Event Calendar package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: All-in-One Event Calendar 1.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
+ "POT-Creation-Date: 2012-04-02 15:29:25+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: app/controller/class-ai1ec-app-controller.php:407
16
+ #: app/controller/class-ai1ec-app-controller.php:408
17
  msgid "Settings"
18
  msgstr ""
19
 
20
  #. translators: "%s" represents the week's starting date
21
+ #: app/controller/class-ai1ec-calendar-controller.php:406
22
+ #: app/helper/class-ai1ec-calendar-helper.php:883
23
+ #: app/helper/class-ai1ec-calendar-helper.php:892
24
  msgid "Week of %s"
25
  msgstr ""
26
 
27
+ #: app/controller/class-ai1ec-calendar-controller.php:406
28
  msgid "F j"
29
  msgstr ""
30
 
31
+ #: app/controller/class-ai1ec-calendar-controller.php:463
32
+ #: app/helper/class-ai1ec-settings-helper.php:158 app/view/calendar.php:33
33
  msgid "Agenda"
34
  msgstr ""
35
 
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: app/controller/class-ai1ec-settings-controller.php:291
144
  msgctxt "meta box"
145
  msgid "General Settings"
146
  msgstr ""
147
 
148
+ #: app/controller/class-ai1ec-settings-controller.php:299
149
  msgctxt "meta box"
150
  msgid "The Seed Studio Support"
151
  msgstr ""
152
 
153
+ #: app/controller/class-ai1ec-settings-controller.php:306
154
  msgctxt "meta box"
155
  msgid "ICS Import Settings"
156
  msgstr ""
157
 
158
+ #: app/controller/class-ai1ec-settings-controller.php:355
159
  msgid "<a href=\"%s\">Settings</a>"
160
  msgstr ""
161
 
162
+ #: app/controller/class-ai1ec-settings-controller.php:369
163
  msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
164
  msgstr ""
165
 
166
+ #: app/controller/class-ai1ec-settings-controller.php:370
167
  msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
168
  msgstr ""
169
 
273
  msgid "Event date/time"
274
  msgstr ""
275
 
276
+ #: app/helper/class-ai1ec-app-helper.php:698
277
  msgid ""
278
  "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</"
279
  "strong> dropdown list. %s 2. Select an option in the <strong>Timezone</"
280
  "strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
281
  msgstr ""
282
 
283
+ #: app/helper/class-ai1ec-app-helper.php:700
284
  msgid ""
285
  "To set up the plugin: Select an option in the <strong>Calendar page</strong> "
286
  "dropdown list, the click <strong>Update Settings</strong>."
287
  msgstr ""
288
 
289
+ #: app/helper/class-ai1ec-app-helper.php:702
290
  msgid ""
291
  "To set up the plugin: Select an option in the <strong>Timezone</strong> "
292
  "dropdown list, the click <strong>Update Settings</strong>."
293
  msgstr ""
294
 
295
+ #: app/helper/class-ai1ec-app-helper.php:706
296
  msgid ""
297
  "The plugin is installed, but has not been configured. <a href=\"%s\">Click "
298
+ "here to set it up now &raquo;</a>"
299
  msgstr ""
300
 
301
+ #: app/helper/class-ai1ec-app-helper.php:712
302
  msgid ""
303
  "The plugin is installed, but has not been configured. Please log in as a "
304
  "WordPress Administrator to set it up."
305
  msgstr ""
306
 
307
+ #: app/helper/class-ai1ec-app-helper.php:714
308
+ msgid "All-in-One Event Calendar Notice:"
309
+ msgstr ""
310
+
311
+ #. translators: "%s" represents the week's starting date
312
+ #: app/helper/class-ai1ec-calendar-helper.php:791
313
+ #: app/helper/class-ai1ec-calendar-helper.php:798
314
+ msgid "j F Y"
315
+ msgstr ""
316
+
317
+ #: app/helper/class-ai1ec-calendar-helper.php:884
318
+ #: app/helper/class-ai1ec-calendar-helper.php:893
319
  msgid "M j"
320
  msgstr ""
321
 
322
+ #: app/helper/class-ai1ec-calendar-helper.php:925
323
  msgid "« Previous Events"
324
  msgstr ""
325
 
326
+ #: app/helper/class-ai1ec-calendar-helper.php:932
327
  msgid "Next Events »"
328
  msgstr ""
329
 
420
  #: app/helper/class-ai1ec-events-helper.php:607
421
  #: app/helper/class-ai1ec-events-helper.php:626
422
  #: app/helper/class-ai1ec-events-helper.php:1676
423
+ #: app/helper/class-ai1ec-settings-helper.php:240 app/view/box_repeat.php:2
424
  msgid "Daily"
425
  msgstr ""
426
 
560
  msgid "View \"%s\" »"
561
  msgstr ""
562
 
563
+ #: app/helper/class-ai1ec-settings-helper.php:149 app/view/calendar.php:18
564
+ #: app/view/calendar.php:19
565
+ msgid "Day"
566
+ msgstr ""
567
+
568
+ #: app/helper/class-ai1ec-settings-helper.php:152 app/view/calendar.php:11
569
+ #: app/view/calendar.php:12 app/view/calendar.php:32
570
  msgid "Month"
571
  msgstr ""
572
 
573
+ #: app/helper/class-ai1ec-settings-helper.php:155 app/view/calendar.php:25
574
+ #: app/view/calendar.php:26
575
  msgid "Week"
576
  msgstr ""
577
 
578
+ #: app/helper/class-ai1ec-settings-helper.php:207
579
  msgid "Default (d/m/y)"
580
  msgstr ""
581
 
582
+ #: app/helper/class-ai1ec-settings-helper.php:210
583
  msgid "US (m/d/y)"
584
  msgstr ""
585
 
586
+ #: app/helper/class-ai1ec-settings-helper.php:213
587
  msgid "ISO 8601 (y-m-d)"
588
  msgstr ""
589
 
590
+ #: app/helper/class-ai1ec-settings-helper.php:216
591
  msgid "Dotted (m.d.y)"
592
  msgstr ""
593
 
594
+ #: app/helper/class-ai1ec-settings-helper.php:234
595
  msgid "Hourly"
596
  msgstr ""
597
 
598
+ #: app/helper/class-ai1ec-settings-helper.php:237
599
  msgid "Twice Daily"
600
  msgstr ""
601
 
602
+ #: app/helper/class-ai1ec-settings-helper.php:324
603
  msgid "Calendar"
604
  msgstr ""
605
 
607
  msgid " (all-day)"
608
  msgstr ""
609
 
 
 
 
 
610
  #: app/view/agenda-widget-form.php:2
611
  msgid "Title:"
612
  msgstr ""
659
  msgid "View Calendar »"
660
  msgstr ""
661
 
662
+ #: app/view/agenda-widget.php:67 app/view/calendar.php:117
663
  msgid ""
664
  "Subscribe to this calendar using your favourite calendar program (iCal, "
665
  "Outlook, etc.)"
666
  msgstr ""
667
 
668
+ #: app/view/agenda-widget.php:68 app/view/calendar.php:118
669
  msgid "✔ Subscribe"
670
  msgstr ""
671
 
672
+ #: app/view/agenda-widget.php:72 app/view/calendar.php:123
673
  msgid "Subscribe to this calendar in your Google Calendar"
674
  msgstr ""
675
 
685
  msgid "− Collapse All"
686
  msgstr ""
687
 
688
+ #: app/view/agenda.php:12 app/view/month.php:4 app/view/oneday.php:4
689
+ #: app/view/week.php:4
690
  msgid "Today"
691
  msgstr ""
692
 
695
  msgstr ""
696
 
697
  #: app/view/agenda.php:59 app/view/agenda.php:109 app/view/month.php:68
698
+ #: app/view/oneday.php:64 app/view/week.php:69
699
  msgid "(all-day)"
700
  msgstr ""
701
 
935
  msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
936
  msgstr ""
937
 
938
+ #: app/view/box_general_settings.php:89
939
+ msgid "Sharing data"
940
+ msgstr ""
941
+
942
+ #: app/view/box_general_settings.php:93
943
+ msgid "Allow The Seed to collect statistics"
944
+ msgstr ""
945
+
946
  #: app/view/box_ics_import_settings.php:2
947
  msgid "Auto-refresh"
948
  msgstr ""
979
  msgid "Cancel"
980
  msgstr ""
981
 
982
+ #. #-#-#-#-# plugin.pot (All-in-One Event Calendar 1.4) #-#-#-#-#
983
  #. Author of the plugin/theme
984
  #: app/view/box_the_seed_studio.php:4
985
  msgid "The Seed Studio"
1093
  msgid "Choose specific dates to exclude"
1094
  msgstr ""
1095
 
1096
+ #: app/view/calendar.php:42
1097
  msgid "+ Post Your Event"
1098
  msgstr ""
1099
 
1100
+ #: app/view/calendar.php:51
1101
  msgid "Clear Filters"
1102
  msgstr ""
1103
 
1104
+ #: app/view/calendar.php:51
1105
  msgid "✘"
1106
  msgstr ""
1107
 
1108
+ #: app/view/calendar.php:52
1109
  msgid "Filter:"
1110
  msgstr ""
1111
 
1112
+ #: app/view/calendar.php:57
1113
  msgid "Categories ▾"
1114
  msgstr ""
1115
 
1116
+ #: app/view/calendar.php:79
1117
  msgid "Tags ▾"
1118
  msgstr ""
1119
 
1120
+ #: app/view/calendar.php:119
1121
  msgid "to this filtered calendar"
1122
  msgstr ""
1123
 
1124
+ #: app/view/calendar.php:125
1125
  msgid "Subscribe in Google Calendar"
1126
  msgstr ""
1127
 
1228
  msgid "Successfully imported events:"
1229
  msgstr ""
1230
 
1231
+ #: app/view/month.php:50 app/view/oneday.php:50 app/view/oneday.php:115
1232
+ #: app/view/week.php:55 app/view/week.php:127
1233
  msgid "Summary:"
1234
  msgstr ""
1235
 
1236
+ #: app/view/month.php:53 app/view/oneday.php:53 app/view/oneday.php:118
1237
+ #: app/view/week.php:58 app/view/week.php:130
1238
  msgid "click anywhere for details"
1239
  msgstr ""
1240
 
1241
+ #: app/view/oneday.php:28 app/view/week.php:33
1242
+ msgid "All-day"
1243
+ msgstr ""
1244
+
1245
  #: app/view/row_daily.php:3 app/view/row_monthly.php:3
1246
  #: app/view/row_monthly.php:22 app/view/row_weekly.php:3
1247
  #: app/view/row_yearly.php:3
1274
  msgid "Update Settings"
1275
  msgstr ""
1276
 
 
 
 
 
1277
  #. Plugin Name of the plugin/theme
1278
  msgid "All-in-One Event Calendar"
1279
  msgstr ""
lib/global-functions.php CHANGED
@@ -56,3 +56,23 @@ function url_get_contents( $url ) {
56
 
57
  return $output;
58
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  return $output;
58
  }
59
+
60
+ /**
61
+ * is_curl_available function
62
+ *
63
+ * checks if cURL is enabled on the system
64
+ *
65
+ * @return bool
66
+ **/
67
+ function is_curl_available() {
68
+
69
+ if( ! function_exists( "curl_init" ) &&
70
+ ! function_exists( "curl_setopt" ) &&
71
+ ! function_exists( "curl_exec" ) &&
72
+ ! function_exists( "curl_close" ) ) {
73
+
74
+ return false;
75
+ }
76
+
77
+ return true;
78
+ }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
5
  Requires at least: 3.1.3
6
  Tested up to: 3.3
7
- Stable tag: 1.4
8
 
9
  An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
10
 
@@ -83,6 +83,15 @@ http://www.youtube.com/watch?v=zZHpzfyukyU
83
  * Filter by post ids (separate ids by comma): **[ai1ec post_id="1, 2"]**
84
 
85
  == Changelog ==
 
 
 
 
 
 
 
 
 
86
  = Version 1.4 =
87
  * Export ICS feeds with utf8 header
88
  * Import/Download ICS feeds with CURL if available, otherwise keep the current method
4
  Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
5
  Requires at least: 3.1.3
6
  Tested up to: 3.3
7
+ Stable tag: 1.5
8
 
9
  An event calendar system with month, week, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
10
 
83
  * Filter by post ids (separate ids by comma): **[ai1ec post_id="1, 2"]**
84
 
85
  == Changelog ==
86
+ = Version 1.5 =
87
+ * Added daily view
88
+ * Various bug fixes
89
+ * Added new translations
90
+ * Added support for featured images
91
+ * Better support for Multisite Ajax
92
+ * Added support for DURATION property in iCalendar specs
93
+ * Resolved FORCE_SSL_ADMIN issue
94
+
95
  = Version 1.4 =
96
  * Export ICS feeds with utf8 header
97
  * Import/Download ICS feeds with CURL if available, otherwise keep the current method
screenshot-1.png CHANGED
Binary file
screenshot-10.png CHANGED
Binary file
screenshot-11.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-7.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file
screenshot-9.png CHANGED
Binary file