All-in-One Event Calendar - Version 1.1.3

Version Description

Download this release

Release Info

Developer theseed
Plugin Icon 128x128 All-in-One Event Calendar
Version 1.1.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

all-in-one-event-calendar.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: All-in-One Event Calendar Plugin
4
  * Plugin URI: http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/
5
  * Description: An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
- * Version: 1.1.2
7
  * Author: The Seed Studio
8
  * Author URI: http://theseednetwork.com/
9
  */
3
  * Plugin Name: All-in-One Event Calendar Plugin
4
  * Plugin URI: http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/
5
  * Description: An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
6
+ * Version: 1.1.3
7
  * Author: The Seed Studio
8
  * Author URI: http://theseednetwork.com/
9
  */
app/controller/class-ai1ec-events-controller.php CHANGED
@@ -110,7 +110,7 @@ class Ai1ec_Events_Controller {
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' );
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
@@ -140,9 +140,11 @@ class Ai1ec_Events_Controller {
140
  // Names for days in date picker header (escaping is done in wp_localize_script)
141
  'day_names' => implode( ',', $wp_locale->weekday_initial ),
142
  // Start the week on this day in the date picker
143
- 'week_start_day' => $ai1ec_settings->week_start_day,
144
  // 24h time format for time pickers
145
  'twentyfour_hour' => $ai1ec_settings->input_24h_time,
 
 
146
  // ICS feed error messages
147
  'duplicate_feed_message' => esc_html__( 'This feed is already being imported.', AI1EC_PLUGIN_NAME ),
148
  'invalid_url_message' => esc_html__( 'Please enter a valid iCalendar URL.', AI1EC_PLUGIN_NAME ),
@@ -165,6 +167,11 @@ class Ai1ec_Events_Controller {
165
  // = JS =
166
  // ======
167
  wp_enqueue_script( 'ai1ec-event', AI1EC_JS_URL . '/event.js', array( 'jquery' ), 1 );
 
 
 
 
 
168
 
169
  // =======
170
  // = CSS =
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
140
  // Names for days in date picker header (escaping is done in wp_localize_script)
141
  'day_names' => implode( ',', $wp_locale->weekday_initial ),
142
  // Start the week on this day in the date picker
143
+ 'week_start_day' => $ai1ec_settings->week_start_day,
144
  // 24h time format for time pickers
145
  'twentyfour_hour' => $ai1ec_settings->input_24h_time,
146
+ // Set region biasing for geo_autocomplete plugin
147
+ 'region' => ( $ai1ec_settings->geo_region_biasing ) ? $ai1ec_events_helper->get_region() : '',
148
  // ICS feed error messages
149
  'duplicate_feed_message' => esc_html__( 'This feed is already being imported.', AI1EC_PLUGIN_NAME ),
150
  'invalid_url_message' => esc_html__( 'Please enter a valid iCalendar URL.', AI1EC_PLUGIN_NAME ),
167
  // = JS =
168
  // ======
169
  wp_enqueue_script( 'ai1ec-event', AI1EC_JS_URL . '/event.js', array( 'jquery' ), 1 );
170
+ // Supply custom value to JavaScript from PHP
171
+ wp_localize_script( 'ai1ec-event', 'ai1ec_event', array(
172
+ // Language for Google Map
173
+ 'language' => $ai1ec_events_helper->get_lang()
174
+ ) );
175
 
176
  // =======
177
  // = CSS =
app/controller/class-ai1ec-exporter-controller.php CHANGED
@@ -57,10 +57,19 @@ class Ai1ec_Exporter_Controller {
57
  $ai1ec_cat_ids = isset( $_REQUEST['ai1ec_cat_ids'] ) && ! empty( $_REQUEST['ai1ec_cat_ids'] ) ? $_REQUEST['ai1ec_cat_ids'] : false;
58
  $ai1ec_tag_ids = isset( $_REQUEST['ai1ec_tag_ids'] ) && ! empty( $_REQUEST['ai1ec_tag_ids'] ) ? $_REQUEST['ai1ec_tag_ids'] : false;
59
  $ai1ec_post_ids = isset( $_REQUEST['ai1ec_post_ids'] ) && ! empty( $_REQUEST['ai1ec_post_ids'] ) ? $_REQUEST['ai1ec_post_ids'] : false;
 
 
 
 
 
 
 
 
 
60
  // when exporting events by post_id, do not look up the event's start/end date/time
61
  $start = $ai1ec_post_ids !== false ? false : gmmktime() - 24 * 60 * 60; // Include any events ending today
62
  $end = false;
63
- $events = $ai1ec_events_helper->get_matching_events( $start, $end, $ai1ec_tag_ids, $ai1ec_cat_ids, $ai1ec_post_ids );
64
  $c = new vcalendar();
65
  $c->setProperty( 'calscale', 'GREGORIAN' );
66
  $c->setProperty( 'method', 'PUBLISH' );
57
  $ai1ec_cat_ids = isset( $_REQUEST['ai1ec_cat_ids'] ) && ! empty( $_REQUEST['ai1ec_cat_ids'] ) ? $_REQUEST['ai1ec_cat_ids'] : false;
58
  $ai1ec_tag_ids = isset( $_REQUEST['ai1ec_tag_ids'] ) && ! empty( $_REQUEST['ai1ec_tag_ids'] ) ? $_REQUEST['ai1ec_tag_ids'] : false;
59
  $ai1ec_post_ids = isset( $_REQUEST['ai1ec_post_ids'] ) && ! empty( $_REQUEST['ai1ec_post_ids'] ) ? $_REQUEST['ai1ec_post_ids'] : false;
60
+ $filter = array();
61
+
62
+ if( $ai1ec_cat_ids )
63
+ $filter['cat_ids'] = split( ',', $ai1ec_cat_ids );
64
+ if( $ai1ec_tag_ids )
65
+ $filter['tag_ids'] = split( ',', $ai1ec_tag_ids );
66
+ if( $ai1ec_post_ids )
67
+ $filter['post_ids'] = split( ',', $ai1ec_post_ids );
68
+
69
  // when exporting events by post_id, do not look up the event's start/end date/time
70
  $start = $ai1ec_post_ids !== false ? false : gmmktime() - 24 * 60 * 60; // Include any events ending today
71
  $end = false;
72
+ $events = $ai1ec_events_helper->get_matching_events( $start, $end, $filter );
73
  $c = new vcalendar();
74
  $c->setProperty( 'calscale', 'GREGORIAN' );
75
  $c->setProperty( 'method', 'PUBLISH' );
app/controller/class-ai1ec-settings-controller.php CHANGED
@@ -312,8 +312,7 @@ class Ai1ec_Settings_Controller {
312
  wp_enqueue_script( 'wp-lists' );
313
  wp_enqueue_script( 'postbox' );
314
 
315
- wp_enqueue_script( 'ai1ec-cycle', AI1EC_JS_URL . '/jquery.cycle.lite.js', array( 'jquery' ) );
316
- wp_enqueue_script( 'ai1ec-settings', AI1EC_JS_URL . '/settings.js', array( 'jquery', 'ai1ec-cycle' ) );
317
 
318
  wp_localize_script( 'ai1ec-settings', 'ai1ec_settings', array(
319
  'page' => $ai1ec_settings->settings_page,
312
  wp_enqueue_script( 'wp-lists' );
313
  wp_enqueue_script( 'postbox' );
314
 
315
+ wp_enqueue_script( 'ai1ec-settings', AI1EC_JS_URL . '/settings.js', array( 'jquery' ) );
 
316
 
317
  wp_localize_script( 'ai1ec-settings', 'ai1ec_settings', array(
318
  'page' => $ai1ec_settings->settings_page,
app/helper/class-ai1ec-app-helper.php CHANGED
@@ -278,7 +278,7 @@ class Ai1ec_App_Helper {
278
  foreach( $filters as $tax_slug ) {
279
  $tax_obj = get_taxonomy( $tax_slug );
280
  wp_dropdown_categories( array(
281
- 'show_option_all' => __( 'Show All ' . $tax_obj->label, AI1EC_PLUGIN_NAME ),
282
  'taxonomy' => $tax_slug,
283
  'name' => $tax_obj->name,
284
  'orderby' => 'name',
278
  foreach( $filters as $tax_slug ) {
279
  $tax_obj = get_taxonomy( $tax_slug );
280
  wp_dropdown_categories( array(
281
+ 'show_option_all' => __( 'Show All ', AI1EC_PLUGIN_NAME ) . $tax_obj->label,
282
  'taxonomy' => $tax_slug,
283
  'name' => $tax_obj->name,
284
  'orderby' => 'name',
app/helper/class-ai1ec-events-helper.php CHANGED
@@ -316,13 +316,13 @@ class Ai1ec_Events_Helper {
316
  static $options;
317
  if( !isset( $options ) ) {
318
  $temp = array(
319
- ' ' => __( 'No repeat', AI1EC_PLUGIN_NAME ),
320
- '1' => __( 'Every day', AI1EC_PLUGIN_NAME ),
321
- '2' => __( 'Every week', AI1EC_PLUGIN_NAME ),
322
- '3' => __( 'Every month', AI1EC_PLUGIN_NAME ),
323
- '4' => __( 'Every year', AI1EC_PLUGIN_NAME ),
324
- '5' => __( '-----------', AI1EC_PLUGIN_NAME ),
325
- '6' => __( 'Custom...', AI1EC_PLUGIN_NAME ),
326
  );
327
  $options = $temp;
328
  }
@@ -343,7 +343,7 @@ class Ai1ec_Events_Helper {
343
  2 => __( 'Every week', AI1EC_PLUGIN_NAME ),
344
  3 => __( 'Every month', AI1EC_PLUGIN_NAME ),
345
  4 => __( 'Every year', AI1EC_PLUGIN_NAME ),
346
- 5 => __( '-----------', AI1EC_PLUGIN_NAME ),
347
  6 => __( 'Custom...', AI1EC_PLUGIN_NAME ),
348
  );
349
  return $this->create_select_element( 'ai1ec_repeat', $options, $selected, array( 5 ) );
@@ -469,7 +469,7 @@ class Ai1ec_Events_Helper {
469
  '1' => __( 'second', AI1EC_PLUGIN_NAME ),
470
  '2' => __( 'third', AI1EC_PLUGIN_NAME ),
471
  '3' => __( 'fourth', AI1EC_PLUGIN_NAME ),
472
- '4' => __( '------', AI1EC_PLUGIN_NAME ),
473
  '5' => __( 'last', AI1EC_PLUGIN_NAME )
474
  );
475
  $ret = $this->create_select_element( 'ai1ec_monthly_each_select', $first_options, $f_selected, array( 4 ) );
@@ -482,7 +482,7 @@ class Ai1ec_Events_Helper {
482
  '4' => __( 'Thursday', AI1EC_PLUGIN_NAME ),
483
  '5' => __( 'Friday', AI1EC_PLUGIN_NAME ),
484
  '6' => __( 'Saturday', AI1EC_PLUGIN_NAME ),
485
- '7' => __( '--------', AI1EC_PLUGIN_NAME ),
486
  '8' => __( 'day', AI1EC_PLUGIN_NAME ),
487
  '9' => __( 'weekday', AI1EC_PLUGIN_NAME ),
488
  '10' => __( 'weekend day', AI1EC_PLUGIN_NAME )
@@ -726,13 +726,15 @@ class Ai1ec_Events_Helper {
726
  *
727
  * @param int | bool $start Events start before this (GMT) time
728
  * @param int | bool $end Events end before this (GMT) time
729
- * @param int | array | bool $tags Tag(s) of events
730
- * @param int | array | bool $categories Category(ies) of events
 
 
731
  *
732
  * @return array Matching events
733
  **/
734
- function get_matching_events( $start = false, $end = false, $tags = false, $categories = false, $posts = false ) {
735
- global $wpdb;
736
 
737
  // holds event_categories sql
738
  $c_sql = '';
@@ -765,78 +767,8 @@ class Ai1ec_Events_Helper {
765
  $args[] = $end;
766
  }
767
 
768
- // ===================================
769
- // = Generating event_categories sql =
770
- // ===================================
771
- if( $categories !== false ) {
772
-
773
- // sanitize categories var
774
- if( strstr( $categories, ',' ) !== false ) {
775
- $tmp = array();
776
- // prevent sql injection
777
- foreach( explode( ',', $categories ) as $cat )
778
- $tmp[] = (int) $cat;
779
-
780
- $categories = implode( ',', $tmp );
781
- } else {
782
- // prevent sql injection
783
- $categories = (int) $categories;
784
- }
785
-
786
- $c_sql = "INNER JOIN $wpdb->term_relationships AS tr1 ON post_id = tr1.object_id ";
787
- $c_sql .= "INNER JOIN $wpdb->term_taxonomy AS ttc ON tr1.term_taxonomy_id = ttc.term_taxonomy_id ";
788
- $c_where_sql = "AND ( ttc.term_id IN ( $categories ) ";
789
- }
790
-
791
- // =============================
792
- // = Generating event_tags sql =
793
- // =============================
794
- if( $tags !== false ) {
795
-
796
- // sanitize tags var
797
- if( strstr( $tags, ',' ) !== false ) {
798
- $tmp = array();
799
- // prevent sql injection
800
- foreach( explode( ',', $tags ) as $tag )
801
- $tmp[] = (int) $tag;
802
-
803
- $tags = implode( ',', $tmp );
804
- } else {
805
- $tags = (int) $tags;
806
- }
807
-
808
- if( $categories !== false ) {
809
- $t_sql = "INNER JOIN $wpdb->term_relationships AS tr2 ON e.post_id = tr2.object_id ";
810
- $t_sql .= "INNER JOIN $wpdb->term_taxonomy AS ttt ON tr2.term_taxonomy_id = ttt.term_taxonomy_id ";
811
- $c_where_sql .= "AND ttt.term_id IN ( $tags ) ) ";
812
- } else {
813
- $t_sql = "INNER JOIN $wpdb->term_relationships AS tr2 ON e.post_id = tr2.object_id ";
814
- $t_sql .= "INNER JOIN $wpdb->term_taxonomy AS ttt ON tr2.term_taxonomy_id = ttt.term_taxonomy_id ";
815
- $t_where_sql = "AND ttt.term_id IN ( $tags ) ";
816
- }
817
-
818
- } else {
819
- $c_where_sql .= ") ";
820
- }
821
-
822
- // ========================
823
- // = Generating posts sql =
824
- // ========================
825
- if( $posts !== false ) {
826
- // sanitize posts var
827
- if( strstr( $posts, ',' ) !== false ) {
828
- $tmp = array();
829
-
830
- // prevent sql injection
831
- foreach( explode( ',', $posts ) as $post )
832
- $tmp[] = $post;
833
-
834
- $posts = $tmp;
835
- }
836
-
837
- $p_where_sql = "AND ID IN ( $posts ) ";
838
- }
839
-
840
 
841
  $query = $wpdb->prepare(
842
  "SELECT *, e.post_id, UNIX_TIMESTAMP( e.start ) as start, UNIX_TIMESTAMP( e.end ) as end, e.allday, e.recurrence_rules, e.exception_rules,
@@ -845,12 +777,10 @@ class Ai1ec_Events_Helper {
845
  e.ical_organizer, e.ical_contact, e.ical_uid " .
846
  "FROM $wpdb->posts " .
847
  "INNER JOIN {$wpdb->prefix}ai1ec_events AS e ON e.post_id = ID " .
848
- $c_sql .
849
- $t_sql .
850
  "WHERE post_type = '" . AI1EC_POST_TYPE . "' " .
851
- $c_where_sql .
852
- $t_where_sql .
853
- $p_where_sql .
854
  $start_where_sql .
855
  $end_where_sql,
856
  $args );
@@ -1103,7 +1033,40 @@ class Ai1ec_Events_Helper {
1103
  **/
1104
  function get_gmap_url( &$event ) {
1105
  $location_arg = urlencode( $event->address );
1106
- return "http://www.google.com/maps?f=q&hl=en&source=embed&q=$location_arg";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1107
  }
1108
 
1109
  /**
@@ -1353,7 +1316,7 @@ class Ai1ec_Events_Helper {
1353
  }
1354
  // remove the last ' and'
1355
  $_days = substr( $_days, 0, -1 );
1356
- $txt .= ' ' . __( 'on' ) . $_days;
1357
  } else {
1358
  $_days = '';
1359
  foreach( $rc->getByDay() as $d ) {
@@ -1362,7 +1325,7 @@ class Ai1ec_Events_Helper {
1362
  }
1363
  // remove the last ' and'
1364
  $_days = substr( $_days, 0, -4 );
1365
- $txt .= ' ' . __( 'on' ) . $_days;
1366
  }
1367
  } else {
1368
  $_days = '';
@@ -1370,7 +1333,7 @@ class Ai1ec_Events_Helper {
1370
  $day = $this->get_weekday_by_id( $d, true );
1371
  $_days .= ' ' . $wp_locale->weekday[$day];
1372
  }
1373
- $txt .= ' ' . __( 'on' ) . $_days;
1374
  }
1375
  }
1376
  break;
@@ -1383,20 +1346,20 @@ class Ai1ec_Events_Helper {
1383
  $_days .= ' ' . $this->_ordinal( $m_day ) . ',';
1384
  }
1385
  $_days = substr( $_days, 0, -1 );
1386
- $txt .= ' ' . __( 'on' ) . $_days . ' ' . __( 'of the month', AI1EC_PLUGIN_NAME );
1387
  } else if( count( $rc->getByMonthDay() ) > 1 ) {
1388
  $_days = '';
1389
  foreach( $rc->getByMonthDay() as $m_day ) {
1390
  $_days .= ' ' . $this->_ordinal( $m_day ) . ' ' . __( 'and', AI1EC_PLUGIN_NAME );
1391
  }
1392
  $_days = substr( $_days, 0, -4 );
1393
- $txt .= ' ' . __( 'on' ) . $_days . ' ' . __( 'of the month', AI1EC_PLUGIN_NAME );
1394
  } else {
1395
  $_days = '';
1396
  foreach( $rc->getByMonthDay() as $m_day ) {
1397
  $_days .= ' ' . $this->_ordinal( $m_day );
1398
  }
1399
- $txt .= ' ' . __( 'on' ) . $_days . ' ' . __( 'of the month', AI1EC_PLUGIN_NAME );
1400
  }
1401
  }
1402
  break;
@@ -1410,7 +1373,7 @@ class Ai1ec_Events_Helper {
1410
  $_months .= ' ' . $wp_locale->month_abbrev[$wp_locale->month[$_m]] . ',';
1411
  }
1412
  $_months = substr( $_months, 0, -1 );
1413
- $txt .= ' ' . __( 'on' ) . $_months;
1414
  } else if( count( $rc->getByMonth() ) > 1 ) {
1415
  $_months = '';
1416
  foreach( $rc->getByMonth() as $_m ) {
@@ -1418,14 +1381,14 @@ class Ai1ec_Events_Helper {
1418
  $_months .= ' ' . $wp_locale->month[$_m] . ' ' . __( 'and', AI1EC_PLUGIN_NAME );
1419
  }
1420
  $_months = substr( $_months, 0, -4 );
1421
- $txt .= ' ' . __( 'on' ) . $_months;
1422
  } else {
1423
  $_months = '';
1424
  foreach( $rc->getByMonth() as $_m ) {
1425
  $_m = $_m < 10 ? 0 . $_m : $_m;
1426
  $_months .= ' ' . $wp_locale->month[$_m];
1427
  }
1428
- $txt .= ' ' . __( 'on' ) . $_months;
1429
  }
1430
  }
1431
  break;
@@ -1439,7 +1402,12 @@ class Ai1ec_Events_Helper {
1439
  *
1440
  * @return void
1441
  **/
1442
- function _ordinal( $cdnl ) {
 
 
 
 
 
1443
  $test_c = abs($cdnl) % 10;
1444
  $ext = ( ( abs( $cdnl ) % 100 < 21 && abs( $cdnl ) % 100 > 4 ) ? 'th'
1445
  : ( ( $test_c < 4 ) ? ( $test_c < 3 ) ? ( $test_c < 2 ) ? ( $test_c < 1 )
316
  static $options;
317
  if( !isset( $options ) ) {
318
  $temp = array(
319
+ ' ' => __( 'No repeat', AI1EC_PLUGIN_NAME ),
320
+ '1' => __( 'Every day', AI1EC_PLUGIN_NAME ),
321
+ '2' => __( 'Every week', AI1EC_PLUGIN_NAME ),
322
+ '3' => __( 'Every month', AI1EC_PLUGIN_NAME ),
323
+ '4' => __( 'Every year', AI1EC_PLUGIN_NAME ),
324
+ '5' => '-----------',
325
+ '6' => __( 'Custom...', AI1EC_PLUGIN_NAME ),
326
  );
327
  $options = $temp;
328
  }
343
  2 => __( 'Every week', AI1EC_PLUGIN_NAME ),
344
  3 => __( 'Every month', AI1EC_PLUGIN_NAME ),
345
  4 => __( 'Every year', AI1EC_PLUGIN_NAME ),
346
+ 5 => '-----------',
347
  6 => __( 'Custom...', AI1EC_PLUGIN_NAME ),
348
  );
349
  return $this->create_select_element( 'ai1ec_repeat', $options, $selected, array( 5 ) );
469
  '1' => __( 'second', AI1EC_PLUGIN_NAME ),
470
  '2' => __( 'third', AI1EC_PLUGIN_NAME ),
471
  '3' => __( 'fourth', AI1EC_PLUGIN_NAME ),
472
+ '4' => '------',
473
  '5' => __( 'last', AI1EC_PLUGIN_NAME )
474
  );
475
  $ret = $this->create_select_element( 'ai1ec_monthly_each_select', $first_options, $f_selected, array( 4 ) );
482
  '4' => __( 'Thursday', AI1EC_PLUGIN_NAME ),
483
  '5' => __( 'Friday', AI1EC_PLUGIN_NAME ),
484
  '6' => __( 'Saturday', AI1EC_PLUGIN_NAME ),
485
+ '7' => '--------',
486
  '8' => __( 'day', AI1EC_PLUGIN_NAME ),
487
  '9' => __( 'weekday', AI1EC_PLUGIN_NAME ),
488
  '10' => __( 'weekend day', AI1EC_PLUGIN_NAME )
726
  *
727
  * @param int | bool $start Events start before this (GMT) time
728
  * @param int | bool $end Events end before this (GMT) time
729
+ * @param array $filter Array of filters for the events returned.
730
+ * ['cat_ids'] => non-associatative array of category IDs
731
+ * ['tag_ids'] => non-associatative array of tag IDs
732
+ * ['post_ids'] => non-associatative array of post IDs
733
  *
734
  * @return array Matching events
735
  **/
736
+ function get_matching_events( $start = false, $end = false, $filter = array() ) {
737
+ global $wpdb, $ai1ec_calendar_helper;
738
 
739
  // holds event_categories sql
740
  $c_sql = '';
767
  $args[] = $end;
768
  }
769
 
770
+ // Get the Join (filter_join) and Where (filter_where) statements based on $filter elements specified
771
+ $filter = $ai1ec_calendar_helper->_get_filter_sql( $filter );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
772
 
773
  $query = $wpdb->prepare(
774
  "SELECT *, e.post_id, UNIX_TIMESTAMP( e.start ) as start, UNIX_TIMESTAMP( e.end ) as end, e.allday, e.recurrence_rules, e.exception_rules,
777
  e.ical_organizer, e.ical_contact, e.ical_uid " .
778
  "FROM $wpdb->posts " .
779
  "INNER JOIN {$wpdb->prefix}ai1ec_events AS e ON e.post_id = ID " .
780
+ $filter['filter_join'] .
 
781
  "WHERE post_type = '" . AI1EC_POST_TYPE . "' " .
782
+ "AND post_status = 'publish' " .
783
+ $filter['filter_where'] .
 
784
  $start_where_sql .
785
  $end_where_sql,
786
  $args );
1033
  **/
1034
  function get_gmap_url( &$event ) {
1035
  $location_arg = urlencode( $event->address );
1036
+ $lang = $this->get_lang();
1037
+
1038
+ return "http://www.google.com/maps?f=q&hl=" . $lang . "&source=embed&q=" . $location_arg;
1039
+ }
1040
+
1041
+ /**
1042
+ * get_lang function
1043
+ *
1044
+ * Returns the ISO-639 part of the configured locale. The default
1045
+ * language is English (en).
1046
+ *
1047
+ * @return string
1048
+ **/
1049
+ function get_lang() {
1050
+ $locale = explode( '_', get_locale() );
1051
+
1052
+ return ( isset( $locale[0] ) && $locale[0] != '' ) ? $locale[0] : 'en';
1053
+ }
1054
+
1055
+ /**
1056
+ * get_region function
1057
+ *
1058
+ * Returns the ISO-3166 part of the configured locale as a ccTLD.
1059
+ * Used for region biasing in the geo autocomplete plugin.
1060
+ *
1061
+ * @return string
1062
+ **/
1063
+ function get_region() {
1064
+ $locale = explode( '_', get_locale() );
1065
+
1066
+ $region = ( isset( $locale[1] ) && $locale[1] != '' ) ? strtolower( $locale[1] ) : '';
1067
+
1068
+ // Primary ccTLD for United Kingdom is uk.
1069
+ return ( $region == 'gb' ) ? 'uk' : $region;
1070
  }
1071
 
1072
  /**
1316
  }
1317
  // remove the last ' and'
1318
  $_days = substr( $_days, 0, -1 );
1319
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - weekly tab', AI1EC_PLUGIN_NAME ) . $_days;
1320
  } else {
1321
  $_days = '';
1322
  foreach( $rc->getByDay() as $d ) {
1325
  }
1326
  // remove the last ' and'
1327
  $_days = substr( $_days, 0, -4 );
1328
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - weekly tab', AI1EC_PLUGIN_NAME ) . $_days;
1329
  }
1330
  } else {
1331
  $_days = '';
1333
  $day = $this->get_weekday_by_id( $d, true );
1334
  $_days .= ' ' . $wp_locale->weekday[$day];
1335
  }
1336
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - weekly tab', AI1EC_PLUGIN_NAME ) . $_days;
1337
  }
1338
  }
1339
  break;
1346
  $_days .= ' ' . $this->_ordinal( $m_day ) . ',';
1347
  }
1348
  $_days = substr( $_days, 0, -1 );
1349
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - monthly tab', AI1EC_PLUGIN_NAME ) . $_days . ' ' . __( 'of the month', AI1EC_PLUGIN_NAME );
1350
  } else if( count( $rc->getByMonthDay() ) > 1 ) {
1351
  $_days = '';
1352
  foreach( $rc->getByMonthDay() as $m_day ) {
1353
  $_days .= ' ' . $this->_ordinal( $m_day ) . ' ' . __( 'and', AI1EC_PLUGIN_NAME );
1354
  }
1355
  $_days = substr( $_days, 0, -4 );
1356
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - monthly tab', AI1EC_PLUGIN_NAME ) . $_days . ' ' . __( 'of the month', AI1EC_PLUGIN_NAME );
1357
  } else {
1358
  $_days = '';
1359
  foreach( $rc->getByMonthDay() as $m_day ) {
1360
  $_days .= ' ' . $this->_ordinal( $m_day );
1361
  }
1362
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - monthly tab', AI1EC_PLUGIN_NAME ) . $_days . ' ' . __( 'of the month', AI1EC_PLUGIN_NAME );
1363
  }
1364
  }
1365
  break;
1373
  $_months .= ' ' . $wp_locale->month_abbrev[$wp_locale->month[$_m]] . ',';
1374
  }
1375
  $_months = substr( $_months, 0, -1 );
1376
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - yearly tab', AI1EC_PLUGIN_NAME ) . $_months;
1377
  } else if( count( $rc->getByMonth() ) > 1 ) {
1378
  $_months = '';
1379
  foreach( $rc->getByMonth() as $_m ) {
1381
  $_months .= ' ' . $wp_locale->month[$_m] . ' ' . __( 'and', AI1EC_PLUGIN_NAME );
1382
  }
1383
  $_months = substr( $_months, 0, -4 );
1384
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - yearly tab', AI1EC_PLUGIN_NAME ) . $_months;
1385
  } else {
1386
  $_months = '';
1387
  foreach( $rc->getByMonth() as $_m ) {
1388
  $_m = $_m < 10 ? 0 . $_m : $_m;
1389
  $_months .= ' ' . $wp_locale->month[$_m];
1390
  }
1391
+ $txt .= ' ' . _x( 'on', 'Recurrence editor - yearly tab', AI1EC_PLUGIN_NAME ) . $_months;
1392
  }
1393
  }
1394
  break;
1402
  *
1403
  * @return void
1404
  **/
1405
+ function _ordinal( $cdnl ) {
1406
+ $locale = explode( '_', get_locale() );
1407
+
1408
+ if( isset( $locale[0] ) && $locale[0] != 'en' )
1409
+ return $cdnl;
1410
+
1411
  $test_c = abs($cdnl) % 10;
1412
  $ext = ( ( abs( $cdnl ) % 100 < 21 && abs( $cdnl ) % 100 > 4 ) ? 'th'
1413
  : ( ( $test_c < 4 ) ? ( $test_c < 3 ) ? ( $test_c < 2 ) ? ( $test_c < 1 )
app/helper/class-ai1ec-exporter-helper.php CHANGED
@@ -97,6 +97,8 @@ class Ai1ec_Exporter_Helper {
97
  if( ! empty( $event->recurrence_rules ) ) {
98
  $rules = array();
99
  foreach( explode( ';', $event->recurrence_rules ) AS $v) {
 
 
100
  list($k, $v) = explode( '=', $v );
101
  // If $v is a comma-separated list, turn it into array for iCalcreator
102
  switch( $k ) {
97
  if( ! empty( $event->recurrence_rules ) ) {
98
  $rules = array();
99
  foreach( explode( ';', $event->recurrence_rules ) AS $v) {
100
+ if( strpos( $v, '=' ) === false ) continue;
101
+
102
  list($k, $v) = explode( '=', $v );
103
  // If $v is a comma-separated list, turn it into array for iCalcreator
104
  switch( $k ) {
app/helper/class-ai1ec-settings-helper.php CHANGED
@@ -331,6 +331,7 @@ class Ai1ec_Settings_Helper {
331
  $turn_off_subscription_buttons = $ai1ec_settings->turn_off_subscription_buttons ? 'checked=checked' : '';
332
  $show_create_event_button = $ai1ec_settings->show_create_event_button ? 'checked=checked' : '';
333
  $inject_categories = $ai1ec_settings->inject_categories ? 'checked=checked' : '';
 
334
  $input_date_format = $ai1ec_settings_helper->get_date_format_dropdown( $ai1ec_settings->input_date_format );
335
  $input_24h_time = $ai1ec_settings->input_24h_time ? 'checked=checked' : '';
336
  $default_calendar_view = $ai1ec_settings_helper->get_view_dropdown( $ai1ec_settings->default_calendar_view );
@@ -352,7 +353,8 @@ class Ai1ec_Settings_Helper {
352
  'input_date_format' => $input_date_format,
353
  'input_24h_time' => $input_24h_time,
354
  'show_timezone' => ! get_option( 'timezone_string' ),
355
- 'timezone_control' => $timezone_control
 
356
  );
357
  $ai1ec_view_helper->display( 'box_general_settings.php', $args );
358
  }
331
  $turn_off_subscription_buttons = $ai1ec_settings->turn_off_subscription_buttons ? 'checked=checked' : '';
332
  $show_create_event_button = $ai1ec_settings->show_create_event_button ? 'checked=checked' : '';
333
  $inject_categories = $ai1ec_settings->inject_categories ? 'checked=checked' : '';
334
+ $geo_region_biasing = $ai1ec_settings->geo_region_biasing ? 'checked=checked' : '';
335
  $input_date_format = $ai1ec_settings_helper->get_date_format_dropdown( $ai1ec_settings->input_date_format );
336
  $input_24h_time = $ai1ec_settings->input_24h_time ? 'checked=checked' : '';
337
  $default_calendar_view = $ai1ec_settings_helper->get_view_dropdown( $ai1ec_settings->default_calendar_view );
353
  'input_date_format' => $input_date_format,
354
  'input_24h_time' => $input_24h_time,
355
  'show_timezone' => ! get_option( 'timezone_string' ),
356
+ 'timezone_control' => $timezone_control,
357
+ 'geo_region_biasing' => $geo_region_biasing
358
  );
359
  $ai1ec_view_helper->display( 'box_general_settings.php', $args );
360
  }
app/model/class-ai1ec-settings.php CHANGED
@@ -198,6 +198,17 @@ class Ai1ec_Settings {
198
  * @var object
199
  **/
200
  var $settings_page;
 
 
 
 
 
 
 
 
 
 
 
201
 
202
  /**
203
  * __construct function
@@ -277,7 +288,8 @@ class Ai1ec_Settings {
277
  'input_date_format' => 'def',
278
  'input_24h_time' => false,
279
  'cron_freq' => 'daily',
280
- 'timezone' => get_option( 'timezone_string' )
 
281
  );
282
 
283
  foreach( $defaults as $key => $default ) {
@@ -303,21 +315,24 @@ class Ai1ec_Settings {
303
  if( isset( $params['week_start_day'] ) ) $this->week_start_day = $params['week_start_day'];
304
  if( isset( $params['agenda_events_per_page'] ) ) $this->agenda_events_per_page = intval( $params['agenda_events_per_page'] );
305
  if( isset( $params['cron_freq'] ) ) $this->cron_freq = $params['cron_freq'];
306
- if( isset( $params['show_publish_button'] ) ) $this->show_publish_button = $params['show_publish_button'];
307
- if( isset( $params['hide_maps_until_clicked'] ) ) $this->hide_maps_until_clicked = $params['hide_maps_until_clicked'];
308
- if( isset( $params['agenda_events_expanded'] ) ) $this->agenda_events_expanded = $params['agenda_events_expanded'];
309
- if( isset( $params['exclude_from_search'] ) ) $this->exclude_from_search = $params['exclude_from_search'];
310
- if( isset( $params['show_create_event_button'] ) ) $this->show_create_event_button = $params['show_create_event_button'];
311
- if( isset( $params['turn_off_subscription_buttons'] ) ) $this->turn_off_subscription_buttons = $params['turn_off_subscription_buttons'];
312
- if( isset( $params['inject_categories'] ) ) $this->inject_categories = $params['inject_categories'];
313
  if( isset( $params['input_date_format'] ) ) $this->input_date_format = $params['input_date_format'];
314
- if( isset( $params['input_24h_time'] ) ) $this->input_24h_time = $params['input_24h_time'];
315
- if( isset( $params['include_events_in_rss'] ) ) $this->include_events_in_rss = $params['include_events_in_rss'];
316
  if( isset( $params['allow_events_posting_facebook'] ) ) $this->allow_events_posting_facebook = $params['allow_events_posting_facebook'];
317
  if( isset( $params['facebook_credentials'] ) ) $this->facebook_credentials = $params['facebook_credentials'];
318
  if( isset( $params['user_role_can_create_event'] ) ) $this->user_role_can_create_event = $params['user_role_can_create_event'];
319
  if( isset( $params['timezone'] ) ) $this->timezone = $params['timezone'];
320
  if( $this->agenda_events_per_page <= 0 ) $this->agenda_events_per_page = 1;
 
 
 
 
 
 
 
 
 
 
 
 
321
  }
322
 
323
  /**
198
  * @var object
199
  **/
200
  var $settings_page;
201
+
202
+ /**
203
+ * geo_region_biasing class variable
204
+ *
205
+ * If set to true the ISO-3166 part of the configured
206
+ * locale in WordPress is going to be used to bias the
207
+ * geo autocomplete plugin towards a specific region.
208
+ *
209
+ * @var bool
210
+ **/
211
+ var $geo_region_biasing;
212
 
213
  /**
214
  * __construct function
288
  'input_date_format' => 'def',
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 ) {
315
  if( isset( $params['week_start_day'] ) ) $this->week_start_day = $params['week_start_day'];
316
  if( isset( $params['agenda_events_per_page'] ) ) $this->agenda_events_per_page = intval( $params['agenda_events_per_page'] );
317
  if( isset( $params['cron_freq'] ) ) $this->cron_freq = $params['cron_freq'];
 
 
 
 
 
 
 
318
  if( isset( $params['input_date_format'] ) ) $this->input_date_format = $params['input_date_format'];
 
 
319
  if( isset( $params['allow_events_posting_facebook'] ) ) $this->allow_events_posting_facebook = $params['allow_events_posting_facebook'];
320
  if( isset( $params['facebook_credentials'] ) ) $this->facebook_credentials = $params['facebook_credentials'];
321
  if( isset( $params['user_role_can_create_event'] ) ) $this->user_role_can_create_event = $params['user_role_can_create_event'];
322
  if( isset( $params['timezone'] ) ) $this->timezone = $params['timezone'];
323
  if( $this->agenda_events_per_page <= 0 ) $this->agenda_events_per_page = 1;
324
+
325
+ // checkboxes
326
+ $this->agenda_events_expanded = ( isset( $params['agenda_events_expanded'] ) ) ? true : false;
327
+ $this->include_events_in_rss = ( isset( $params['include_events_in_rss'] ) ) ? true : false;
328
+ $this->show_publish_button = ( isset( $params['show_publish_button'] ) ) ? true : false;
329
+ $this->hide_maps_until_clicked = ( isset( $params['hide_maps_until_clicked'] ) ) ? true : false;
330
+ $this->exclude_from_search = ( isset( $params['exclude_from_search'] ) ) ? true : false;
331
+ $this->show_create_event_button = ( isset( $params['show_create_event_button'] ) ) ? true : false;
332
+ $this->turn_off_subscription_buttons = ( isset( $params['turn_off_subscription_buttons'] ) ) ? true : false;
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
  /**
app/view/box_general_settings.php CHANGED
@@ -56,6 +56,12 @@
56
  </label>
57
  <br class="clear" />
58
 
 
 
 
 
 
 
59
  <label for="inject_categories">
60
  <input class="checkbox" name="inject_categories" id="inject_categories" type="checkbox" value="1" <?php echo $inject_categories ?> />
61
  <?php _e( 'Include <strong>event categories</strong> in post category lists', AI1EC_PLUGIN_NAME ) ?>
56
  </label>
57
  <br class="clear" />
58
 
59
+ <label for="geo_region_biasing">
60
+ <input class="checkbox" name="geo_region_biasing" id="geo_region_biasing" type="checkbox" value="1" <?php echo $geo_region_biasing ?> />
61
+ <?php _e( 'Use the configured <strong>region</strong> (WordPress locale) to bias the address autocomplete function', AI1EC_PLUGIN_NAME ) ?>
62
+ </label>
63
+ <br class="clear" />
64
+
65
  <label for="inject_categories">
66
  <input class="checkbox" name="inject_categories" id="inject_categories" type="checkbox" value="1" <?php echo $inject_categories ?> />
67
  <?php _e( 'Include <strong>event categories</strong> in post category lists', AI1EC_PLUGIN_NAME ) ?>
app/view/row_weekly.php CHANGED
@@ -3,7 +3,7 @@
3
  <?php _e( 'Every', AI1EC_PLUGIN_NAME ) ?>:
4
  </label>
5
  <?php echo $count ?>
6
- <label><?php _e( 'On', AI1EC_PLUGIN_NAME ) ?>:</label>
7
  <div style="clear: both;"></div>
8
  <?php echo $week_days ?>
9
  </div>
3
  <?php _e( 'Every', AI1EC_PLUGIN_NAME ) ?>:
4
  </label>
5
  <?php echo $count ?>
6
+ <label><?php _ex( 'On', 'Recurrence editor - weekly tab', AI1EC_PLUGIN_NAME ) ?>:</label>
7
  <div style="clear: both;"></div>
8
  <?php echo $week_days ?>
9
  </div>
app/view/row_yearly.php CHANGED
@@ -4,7 +4,7 @@
4
  </label>
5
  <?php echo $count ?>
6
  <label for="ai1ec_yearly_date_select">
7
- <?php _e( 'In', AI1EC_PLUGIN_NAME ) ?>:
8
  </label>
9
  <div style="clear: both;"></div>
10
  <?php echo $year ?>
4
  </label>
5
  <?php echo $count ?>
6
  <label for="ai1ec_yearly_date_select">
7
+ <?php _ex( 'In', 'Recurrence editor - yearly tab', AI1EC_PLUGIN_NAME ) ?>:
8
  </label>
9
  <div style="clear: both;"></div>
10
  <?php echo $year ?>
js/add_new_event.js CHANGED
@@ -97,6 +97,8 @@ jQuery( function( $ ){
97
  var state = '';
98
  var postal_code = 0;
99
  var country = 0;
 
 
100
  for( var i = 0; i < result.address_components.length; i++ ) {
101
  switch( result.address_components[i].types[0] ) {
102
  case 'street_number':
@@ -143,7 +145,8 @@ jQuery( function( $ ){
143
  cacheLength: 50,
144
  width: 300,
145
  scroll: true,
146
- scrollHeight: 330
 
147
  }
148
  ).result(
149
  function( _event, _data ) {
@@ -163,7 +166,8 @@ jQuery( function( $ ){
163
 
164
  ai1ec_geocoder.geocode(
165
  {
166
- 'address': address
 
167
  },
168
  function( results, status ) {
169
  if( status == google.maps.GeocoderStatus.OK ) {
@@ -353,7 +357,7 @@ jQuery( function( $ ){
353
  // minutes
354
  mm = ( mm < 10 ) ? '0' + mm : mm;
355
  // Now, set the UTC friendly date string
356
- until = until.getUTCFullYear() + '' + m + d + 'T' + hh + mm + ss +'Z';
357
  rule += 'UNTIL=' + until + ';';
358
  }
359
 
97
  var state = '';
98
  var postal_code = 0;
99
  var country = 0;
100
+ var province = '';
101
+
102
  for( var i = 0; i < result.address_components.length; i++ ) {
103
  switch( result.address_components[i].types[0] ) {
104
  case 'street_number':
145
  cacheLength: 50,
146
  width: 300,
147
  scroll: true,
148
+ scrollHeight: 330,
149
+ region: ai1ec_add_new_event.region
150
  }
151
  ).result(
152
  function( _event, _data ) {
166
 
167
  ai1ec_geocoder.geocode(
168
  {
169
+ 'address': address,
170
+ 'region': ai1ec_add_new_event.region
171
  },
172
  function( results, status ) {
173
  if( status == google.maps.GeocoderStatus.OK ) {
357
  // minutes
358
  mm = ( mm < 10 ) ? '0' + mm : mm;
359
  // Now, set the UTC friendly date string
360
+ until = until.getUTCFullYear() + '' + m + d + 'T235959Z';
361
  rule += 'UNTIL=' + until + ';';
362
  }
363
 
js/event.js CHANGED
@@ -38,7 +38,7 @@ window.onload = function()
38
  // when script has loaded.
39
  var script = document.createElement( 'script' );
40
  script.type = 'text/javascript';
41
- script.src = 'http://maps.google.com/maps/api/js?sensor=false&callback=ai1ec_load_map';
42
  document.body.appendChild( script );
43
  }
44
  }
38
  // when script has loaded.
39
  var script = document.createElement( 'script' );
40
  script.type = 'text/javascript';
41
+ script.src = 'http://maps.google.com/maps/api/js?sensor=false&callback=ai1ec_load_map&language=' + ai1ec_event.language;
42
  document.body.appendChild( script );
43
  }
44
  }
js/jquery.autocomplete_geomod.js CHANGED
@@ -353,7 +353,11 @@ $.Autocompleter = function(input, options) {
353
  // request handler for google geocoder
354
  } else if (options.geocoder) {
355
  var _query = lastWord(term);
356
- options.geocoder.geocode({'address': _query}, function(_results, _status) {
 
 
 
 
357
  var parsed = options.parse(_results, _status, _query);
358
  cache.add(term, parsed);
359
  success(term, parsed);
353
  // request handler for google geocoder
354
  } else if (options.geocoder) {
355
  var _query = lastWord(term);
356
+ var _opts = { 'address': _query };
357
+ if( options.region )
358
+ _opts.region = options.region;
359
+
360
+ options.geocoder.geocode( _opts, function(_results, _status) {
361
  var parsed = options.parse(_results, _status, _query);
362
  cache.add(term, parsed);
363
  success(term, parsed);
language/all-in-one-event-calendar-es_ES.mo ADDED
Binary file
language/all-in-one-event-calendar-es_ES.po ADDED
@@ -0,0 +1,1190 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: All-in-One Event Calendar Plugin 1.0.9\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
5
+ "POT-Creation-Date: 2011-10-03 16:47:28+00:00\n"
6
+ "PO-Revision-Date: 2011-10-19 19:23+0100\n"
7
+ "Last-Translator: Maira Belmonte <pandemtandem@gmail.com>\n"
8
+ "Language-Team: Maira Belmonte <mairabelmonte@gmail.com>\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-Language: Spanish\n"
14
+ "X-Poedit-Country: SPAIN\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "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"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #@ all-in-one-event-calendar
22
+ #: app/helper/class-ai1ec-calendar-helper.php:601
23
+ msgid "« Previous Events"
24
+ msgstr "« Eventos anteriores"
25
+
26
+ #@ all-in-one-event-calendar
27
+ #: app/helper/class-ai1ec-calendar-helper.php:608
28
+ msgid "Next Events »"
29
+ msgstr "Eventos siguientes »"
30
+
31
+ #@ all-in-one-event-calendar
32
+ #: app/helper/class-ai1ec-app-helper.php:147
33
+ msgctxt "Custom post type name"
34
+ msgid "Events"
35
+ msgstr "Eventos"
36
+
37
+ #@ all-in-one-event-calendar
38
+ #: app/helper/class-ai1ec-app-helper.php:148
39
+ msgctxt "Custom post type name (singular)"
40
+ msgid "Event"
41
+ msgstr "Evento"
42
+
43
+ #@ all-in-one-event-calendar
44
+ #: app/helper/class-ai1ec-app-helper.php:149
45
+ msgid "Add New"
46
+ msgstr "Crear evento"
47
+
48
+ #@ all-in-one-event-calendar
49
+ #: app/helper/class-ai1ec-app-helper.php:150
50
+ msgid "Add New Event"
51
+ msgstr "Crear evento nuevo"
52
+
53
+ #@ all-in-one-event-calendar
54
+ #: app/helper/class-ai1ec-app-helper.php:151
55
+ msgid "Edit Event"
56
+ msgstr "Editar evento"
57
+
58
+ #@ all-in-one-event-calendar
59
+ #: app/helper/class-ai1ec-app-helper.php:152
60
+ msgid "New Event"
61
+ msgstr "Evento nuevo"
62
+
63
+ #@ all-in-one-event-calendar
64
+ #: app/helper/class-ai1ec-app-helper.php:153
65
+ msgid "View Event"
66
+ msgstr "Ver evento"
67
+
68
+ #@ all-in-one-event-calendar
69
+ #: app/helper/class-ai1ec-app-helper.php:154
70
+ msgid "Search Events"
71
+ msgstr "Buscar eventos"
72
+
73
+ #@ all-in-one-event-calendar
74
+ #: app/helper/class-ai1ec-app-helper.php:155
75
+ msgid "No Events found"
76
+ msgstr "No se encuentran eventos."
77
+
78
+ #@ all-in-one-event-calendar
79
+ #: app/helper/class-ai1ec-app-helper.php:156
80
+ msgid "No Events found in Trash"
81
+ msgstr "No se encuentran eventos en la papelera"
82
+
83
+ #@ all-in-one-event-calendar
84
+ #: app/helper/class-ai1ec-app-helper.php:157
85
+ msgid "Parent Event"
86
+ msgstr "Evento principal"
87
+
88
+ #@ all-in-one-event-calendar
89
+ #: app/helper/class-ai1ec-app-helper.php:158
90
+ msgid "Events"
91
+ msgstr "Eventos"
92
+
93
+ #@ all-in-one-event-calendar
94
+ #: app/helper/class-ai1ec-app-helper.php:205
95
+ msgctxt "Event categories taxonomy"
96
+ msgid "Event Categories"
97
+ msgstr "Categorías de eventos"
98
+
99
+ #@ all-in-one-event-calendar
100
+ #: app/helper/class-ai1ec-app-helper.php:206
101
+ msgctxt "Event categories taxonomy (singular)"
102
+ msgid "Event Category"
103
+ msgstr "Categoría de eventos"
104
+
105
+ #@ all-in-one-event-calendar
106
+ #: app/helper/class-ai1ec-app-helper.php:213
107
+ msgctxt "Event tags taxonomy"
108
+ msgid "Event Tags"
109
+ msgstr "Etiquetas de eventos"
110
+
111
+ #@ all-in-one-event-calendar
112
+ #: app/helper/class-ai1ec-app-helper.php:214
113
+ msgctxt "Event tags taxonomy (singular)"
114
+ msgid "Event Tag"
115
+ msgstr "Etiqueta de eventos"
116
+
117
+ #@ all-in-one-event-calendar
118
+ #: app/helper/class-ai1ec-app-helper.php:313
119
+ #, php-format
120
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
121
+ msgstr "Todos los eventos <span class=\"update-plugins count-%d\" title=\"%d Eventos pendientes\"><span class=\"update-count\">%d</span></span>"
122
+
123
+ #@ all-in-one-event-calendar
124
+ #: app/helper/class-ai1ec-app-helper.php:319
125
+ msgid "All Events"
126
+ msgstr "Todos los eventos"
127
+
128
+ #@ all-in-one-event-calendar
129
+ #: app/helper/class-ai1ec-app-helper.php:395
130
+ msgid "Event Details"
131
+ msgstr "Detalles del evento"
132
+
133
+ #@ all-in-one-event-calendar
134
+ #: app/helper/class-ai1ec-app-helper.php:412
135
+ msgid "Post Date"
136
+ msgstr "Fecha de publicación"
137
+
138
+ #@ all-in-one-event-calendar
139
+ #: app/helper/class-ai1ec-app-helper.php:413
140
+ msgid "Event date/time"
141
+ msgstr "Fecha/hora del evento"
142
+
143
+ #@ all-in-one-event-calendar
144
+ #: app/helper/class-ai1ec-app-helper.php:630
145
+ #, php-format
146
+ 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"
147
+ msgstr "%sPara configurar el plugin: %s 1. Selecciona una opción en la lista desplegable <strong>Página del calendario</strong>. %s 2. Selecciona una opción en la lista desplegable <strong>Zona horaria</strong>. %s 3. Haz clic en <strong>Actualizar ajustes</strong>. %s"
148
+
149
+ #@ all-in-one-event-calendar
150
+ #: app/helper/class-ai1ec-app-helper.php:632
151
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
152
+ msgstr "Para configurar el plugin: Selecciona una opción en la lista desplegable <strong>Página del calendario</strong> y haz clic en <strong>Actualizar ajustes</strong>. "
153
+
154
+ #@ all-in-one-event-calendar
155
+ #: app/helper/class-ai1ec-app-helper.php:634
156
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
157
+ msgstr "Para configurar el plugin: Selecciona una opción en la lista desplegable <strong>Zona horaria</strong> y haz clic en <strong>Actualizar ajustes</strong>. "
158
+
159
+ #@ all-in-one-event-calendar
160
+ #: app/helper/class-ai1ec-app-helper.php:638
161
+ #, php-format
162
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
163
+ msgstr "l plugin está instalado pero no se ha configurado. <a href=\"%s\">Haz clic aquí para configurarlo »</a>"
164
+
165
+ #@ all-in-one-event-calendar
166
+ #: app/helper/class-ai1ec-app-helper.php:644
167
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
168
+ msgstr "El plugin está instalado pero no se ha configurado. Inicia sesión como administrador de la web para configurarlo."
169
+
170
+ #@ all-in-one-event-calendar
171
+ #: app/helper/class-ai1ec-events-helper.php:313
172
+ msgid "No repeat"
173
+ msgstr "No se repite"
174
+
175
+ #@ all-in-one-event-calendar
176
+ #: app/helper/class-ai1ec-events-helper.php:314
177
+ #: app/helper/class-ai1ec-settings-helper.php:205
178
+ msgid "Daily"
179
+ msgstr "Diariamente"
180
+
181
+ #@ all-in-one-event-calendar
182
+ #: app/helper/class-ai1ec-events-helper.php:315
183
+ msgid "Mondays"
184
+ msgstr "Los lunes"
185
+
186
+ #@ all-in-one-event-calendar
187
+ #: app/helper/class-ai1ec-events-helper.php:316
188
+ msgid "Tuesdays"
189
+ msgstr "Los martes"
190
+
191
+ #@ all-in-one-event-calendar
192
+ #: app/helper/class-ai1ec-events-helper.php:317
193
+ msgid "Wednesdays"
194
+ msgstr "Los miércoles"
195
+
196
+ #@ all-in-one-event-calendar
197
+ #: app/helper/class-ai1ec-events-helper.php:318
198
+ msgid "Thursdays"
199
+ msgstr "Los jueves"
200
+
201
+ #@ all-in-one-event-calendar
202
+ #: app/helper/class-ai1ec-events-helper.php:319
203
+ msgid "Fridays"
204
+ msgstr "Los viernes"
205
+
206
+ #@ all-in-one-event-calendar
207
+ #: app/helper/class-ai1ec-events-helper.php:320
208
+ msgid "Saturdays"
209
+ msgstr "Los sábados"
210
+
211
+ #@ all-in-one-event-calendar
212
+ #: app/helper/class-ai1ec-events-helper.php:321
213
+ msgid "Sundays"
214
+ msgstr "Los domingos"
215
+
216
+ #@ all-in-one-event-calendar
217
+ #: app/helper/class-ai1ec-events-helper.php:322
218
+ msgid "Tuesdays & Thursdays"
219
+ msgstr "Martes y jueves"
220
+
221
+ #@ all-in-one-event-calendar
222
+ #: app/helper/class-ai1ec-events-helper.php:323
223
+ msgid "Mondays, Wednesdays & Fridays"
224
+ msgstr "Lunes, miércoles y viernes"
225
+
226
+ #@ all-in-one-event-calendar
227
+ #: app/helper/class-ai1ec-events-helper.php:324
228
+ msgid "Weekdays"
229
+ msgstr "Los días laborables"
230
+
231
+ #@ all-in-one-event-calendar
232
+ #: app/helper/class-ai1ec-events-helper.php:325
233
+ msgid "Weekends"
234
+ msgstr "Los fines de semana"
235
+
236
+ #@ all-in-one-event-calendar
237
+ #: app/helper/class-ai1ec-events-helper.php:326
238
+ msgid "Weekly"
239
+ msgstr "Semanalmente"
240
+
241
+ #@ all-in-one-event-calendar
242
+ #: app/helper/class-ai1ec-events-helper.php:327
243
+ msgid "Monthly"
244
+ msgstr "Mensualmente"
245
+
246
+ #@ all-in-one-event-calendar
247
+ #: app/helper/class-ai1ec-events-helper.php:328
248
+ msgid "Yearly"
249
+ msgstr "Anualmente"
250
+
251
+ #@ all-in-one-event-calendar
252
+ #: app/helper/class-ai1ec-events-helper.php:443
253
+ msgid "times"
254
+ msgstr "veces"
255
+
256
+ #@ all-in-one-event-calendar
257
+ #: app/helper/class-ai1ec-events-helper.php:967
258
+ msgid "Never"
259
+ msgstr "Nunca"
260
+
261
+ #@ all-in-one-event-calendar
262
+ #: app/helper/class-ai1ec-events-helper.php:968
263
+ msgid "After"
264
+ msgstr "Número de veces"
265
+
266
+ #@ all-in-one-event-calendar
267
+ #: app/helper/class-ai1ec-events-helper.php:969
268
+ #: app/view/box_time_and_date.php:74
269
+ msgid "On date"
270
+ msgstr "Fecha concreta"
271
+
272
+ #@ all-in-one-event-calendar
273
+ #: app/helper/class-ai1ec-settings-helper.php:85
274
+ msgid "- Auto-Create New Page -"
275
+ msgstr "- Crear página automáticamente -"
276
+
277
+ #@ all-in-one-event-calendar
278
+ #: app/helper/class-ai1ec-settings-helper.php:106
279
+ #, php-format
280
+ msgid "View \"%s\" »"
281
+ msgstr "Ver \"%s\" »"
282
+
283
+ #@ all-in-one-event-calendar
284
+ #: app/helper/class-ai1ec-settings-helper.php:148
285
+ #: app/view/calendar.php:10
286
+ #: app/view/calendar.php:11
287
+ #: app/view/calendar.php:17
288
+ msgid "Month"
289
+ msgstr "Mes"
290
+
291
+ #@ all-in-one-event-calendar
292
+ #: app/controller/class-ai1ec-calendar-controller.php:280
293
+ #: app/helper/class-ai1ec-settings-helper.php:151
294
+ #: app/view/calendar.php:18
295
+ msgid "Agenda"
296
+ msgstr "Agenda"
297
+
298
+ #@ all-in-one-event-calendar
299
+ #: app/helper/class-ai1ec-settings-helper.php:199
300
+ msgid "Hourly"
301
+ msgstr "Cada hora"
302
+
303
+ #@ all-in-one-event-calendar
304
+ #: app/helper/class-ai1ec-settings-helper.php:202
305
+ msgid "Twice Daily"
306
+ msgstr "Dos veces al día"
307
+
308
+ #@ all-in-one-event-calendar
309
+ #: app/helper/class-ai1ec-settings-helper.php:289
310
+ msgid "Calendar"
311
+ msgstr "Calendario"
312
+
313
+ #@ all-in-one-event-calendar
314
+ #: app/view/box_ics_import_settings.php:2
315
+ msgid "Auto-refresh"
316
+ msgstr "Refrescar"
317
+
318
+ #@ all-in-one-event-calendar
319
+ #: app/view/box_ics_import_settings.php:8
320
+ #: app/view/feed_row.php:3
321
+ msgid "iCalendar/.ics Feed URL:"
322
+ msgstr "URL de iCalendar/.ics:"
323
+
324
+ #@ all-in-one-event-calendar
325
+ #: app/view/box_ics_import_settings.php:12
326
+ msgid "Event category"
327
+ msgstr "Categoría de eventos"
328
+
329
+ #@ all-in-one-event-calendar
330
+ #: app/view/box_ics_import_settings.php:18
331
+ #: app/view/feed_row.php:15
332
+ msgid "Tag with"
333
+ msgstr "Etiquetar con"
334
+
335
+ #@ all-in-one-event-calendar
336
+ #: app/view/box_ics_import_settings.php:22
337
+ msgid "+ Add new subscription"
338
+ msgstr "+ Añadir suscripción"
339
+
340
+ #@ all-in-one-event-calendar
341
+ #: app/view/calendar.php:27
342
+ msgid "+ Post Your Event"
343
+ msgstr "+ Publicar un evento"
344
+
345
+ #@ all-in-one-event-calendar
346
+ #: app/view/calendar.php:36
347
+ msgid "Clear Filters"
348
+ msgstr "Quitar filtros"
349
+
350
+ #@ all-in-one-event-calendar
351
+ #: app/view/calendar.php:36
352
+ msgid "✘"
353
+ msgstr "✘"
354
+
355
+ #@ all-in-one-event-calendar
356
+ #: app/view/calendar.php:37
357
+ msgid "Filter:"
358
+ msgstr "Filtrar:"
359
+
360
+ #@ all-in-one-event-calendar
361
+ #: app/view/calendar.php:42
362
+ msgid "Categories ▾"
363
+ msgstr "Categorías ▾"
364
+
365
+ #@ all-in-one-event-calendar
366
+ #: app/view/calendar.php:64
367
+ msgid "Tags ▾"
368
+ msgstr "Etiquetas ▾"
369
+
370
+ #@ all-in-one-event-calendar
371
+ #: app/view/agenda-widget.php:67
372
+ #: app/view/calendar.php:101
373
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
374
+ msgstr "Suscríbete a este calendario con tu programa de calendario (iCal, outlook, etc.)"
375
+
376
+ #@ all-in-one-event-calendar
377
+ #: app/view/agenda-widget.php:68
378
+ #: app/view/calendar.php:102
379
+ msgid "✔ Subscribe"
380
+ msgstr "✔ Suscribirse"
381
+
382
+ #@ all-in-one-event-calendar
383
+ #: app/view/calendar.php:103
384
+ msgid "to this filtered calendar"
385
+ msgstr "a este calendario filtrado"
386
+
387
+ #@ all-in-one-event-calendar
388
+ #: app/view/agenda-widget.php:72
389
+ #: app/view/calendar.php:107
390
+ msgid "Subscribe to this calendar in your Google Calendar"
391
+ msgstr "Suscríbete a este calendario con tu Google Calendar"
392
+
393
+ #@ all-in-one-event-calendar
394
+ #: app/view/calendar.php:109
395
+ msgid "Subscribe in Google Calendar"
396
+ msgstr "Suscribirse con Google Calendar"
397
+
398
+ #@ all-in-one-event-calendar
399
+ #: app/view/box_the_seed_studio.php:3
400
+ msgid "The Seed Studio"
401
+ msgstr "The Seed Studio"
402
+
403
+ #@ all-in-one-event-calendar
404
+ #: app/view/box_the_seed_studio.php:5
405
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
406
+ msgstr "The Seed Studio ofrece servicios de desarrollo web y ayuda a particulares y desarrolladores."
407
+
408
+ #@ all-in-one-event-calendar
409
+ #: app/view/box_the_seed_studio.php:11
410
+ msgid "Follow @the_seed_studio"
411
+ msgstr "Sigue @the_seed_studio"
412
+
413
+ #@ all-in-one-event-calendar
414
+ #: app/view/box_the_seed_studio.php:16
415
+ msgid "Get Support<span> from one of our experienced pros</span>"
416
+ msgstr "Pide ayuda<span> a uno de nuestros expertos profesionales</span>"
417
+
418
+ #@ all-in-one-event-calendar
419
+ #: app/view/box_the_seed_studio.php:18
420
+ msgid "Support"
421
+ msgstr "Ayuda"
422
+
423
+ #@ all-in-one-event-calendar
424
+ #: app/view/box_the_seed_studio.php:20
425
+ msgid "View plugin documentation"
426
+ msgstr "Ver la documentación del plugin"
427
+
428
+ #@ all-in-one-event-calendar
429
+ #: app/view/box_the_seed_studio.php:23
430
+ 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!)."
431
+ msgstr "Si quieres, puedes contratar a The Seed por horas o permanentemente para que te ayude con este plugin, con tu sitio web o con cualquiera de tus necesidades de marketing en Internet (¡y somos de gran ayuda!)."
432
+
433
+ #@ all-in-one-event-calendar
434
+ #: app/view/box_the_seed_studio.php:26
435
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
436
+ msgstr "Usuarios del plugin: The Seed atiende prioritariamente a sus clientes. Para obtener ayuda gratuita de otros usuarios, visita el foro del plugin."
437
+
438
+ #@ all-in-one-event-calendar
439
+ #: app/view/box_the_seed_studio.php:29
440
+ msgid "Vote and Share"
441
+ msgstr "Votar y compartir"
442
+
443
+ #@ all-in-one-event-calendar
444
+ #: app/view/box_the_seed_studio.php:32
445
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
446
+ msgstr "Este plugin se ofrece gratuitamente a ala comunidad de WordPres bajo la licencia GPL3. Solo te pedimos alguna de estas cosas:"
447
+
448
+ #@ all-in-one-event-calendar
449
+ #: app/view/box_the_seed_studio.php:34
450
+ 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!)"
451
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Dale una puntuación de cinco estrellas en wordpress.org</a> (¡si crees que se lo merece!)."
452
+
453
+ #@ all-in-one-event-calendar
454
+ #: app/view/box_the_seed_studio.php:35
455
+ msgid "Link to the plugin page on our website"
456
+ msgstr "Enlaza a la página del plugin en nuestro sitio web."
457
+
458
+ #@ all-in-one-event-calendar
459
+ #: app/view/box_the_seed_studio.php:36
460
+ msgid "Become a Fan on Facebook"
461
+ msgstr "Hazte fan en Facebook."
462
+
463
+ #@ all-in-one-event-calendar
464
+ #: app/view/box_the_seed_studio.php:37
465
+ msgid "Follow us on Twitter"
466
+ msgstr "Síguenos en Twitter."
467
+
468
+ #@ all-in-one-event-calendar
469
+ #: app/view/box_the_seed_studio.php:41
470
+ msgid "Donate"
471
+ msgstr "Donaciones"
472
+
473
+ #@ all-in-one-event-calendar
474
+ #: app/view/box_the_seed_studio.php:43
475
+ msgid "If you would like to help support development of this plugin, then by all means..."
476
+ msgstr "Si quieres contribuir al desarrollo de este plugin, no lo dudes..."
477
+
478
+ #@ all-in-one-event-calendar
479
+ #: app/view/settings.php:5
480
+ msgid "All-in-one Event Calendar"
481
+ msgstr "All-in-one Event Calendar"
482
+
483
+ #@ all-in-one-event-calendar
484
+ #: app/view/settings.php:17
485
+ msgid "Update Settings"
486
+ msgstr "Actualizar ajustes"
487
+
488
+ #@ all-in-one-event-calendar
489
+ #: app/view/event-excerpt.php:2
490
+ #: app/view/event-multi.php:4
491
+ #: app/view/event-single.php:5
492
+ msgid "When:"
493
+ msgstr "Fecha:"
494
+
495
+ #@ all-in-one-event-calendar
496
+ #: app/view/event-single.php:8
497
+ msgid "Back to Calendar »"
498
+ msgstr "Volver al calendario »"
499
+
500
+ #@ all-in-one-event-calendar
501
+ #: app/view/event-multi.php:14
502
+ #: app/view/event-single.php:15
503
+ msgid "Repeats:"
504
+ msgstr "Se repite:"
505
+
506
+ #@ all-in-one-event-calendar
507
+ #: app/view/event-excerpt.php:4
508
+ #: app/view/event-multi.php:20
509
+ #: app/view/event-single.php:20
510
+ msgid "Where:"
511
+ msgstr "Lugar:"
512
+
513
+ #@ all-in-one-event-calendar
514
+ #: app/view/event-single.php:27
515
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
516
+ msgstr "Añade este evento a tu programa de calendario (iCal, Outlook, etc.)"
517
+
518
+ #@ all-in-one-event-calendar
519
+ #: app/view/event-single.php:28
520
+ msgid "✔ Add to Calendar"
521
+ msgstr "✔ Añadir a mi calendario"
522
+
523
+ #@ all-in-one-event-calendar
524
+ #: app/view/event-single.php:31
525
+ msgid "Add this event to your Google Calendar"
526
+ msgstr "Añade este evento a tu Google Calendar"
527
+
528
+ #@ all-in-one-event-calendar
529
+ #: app/view/event-single.php:33
530
+ msgid "Add to Google Calendar"
531
+ msgstr "Añadir a Google Calendar"
532
+
533
+ #@ all-in-one-event-calendar
534
+ #: app/view/event-multi.php:33
535
+ #: app/view/event-single.php:40
536
+ msgid "Cost:"
537
+ msgstr "Precio:"
538
+
539
+ #@ all-in-one-event-calendar
540
+ #: app/view/event-multi.php:39
541
+ #: app/view/event-single.php:46
542
+ msgid "Contact:"
543
+ msgstr "Contacto:"
544
+
545
+ #@ all-in-one-event-calendar
546
+ #: app/view/agenda.php:79
547
+ #: app/view/event-multi.php:45
548
+ #: app/view/event-single.php:52
549
+ msgid "Categories:"
550
+ msgstr "Categorías"
551
+
552
+ #@ all-in-one-event-calendar
553
+ #: app/view/agenda.php:85
554
+ #: app/view/event-multi.php:51
555
+ #: app/view/event-single.php:59
556
+ msgid "Tags:"
557
+ msgstr "Etiquetas:"
558
+
559
+ #@ all-in-one-event-calendar
560
+ #: app/view/box_time_and_date.php:2
561
+ msgid "Event date and time"
562
+ msgstr "Fecha y hora del evento"
563
+
564
+ #@ all-in-one-event-calendar
565
+ #: app/view/box_time_and_date.php:8
566
+ msgid "All-day event"
567
+ msgstr "Evento de todo el día"
568
+
569
+ #@ all-in-one-event-calendar
570
+ #: app/view/box_time_and_date.php:18
571
+ msgid "Start date / time"
572
+ msgstr "Fecha / hora de inicio"
573
+
574
+ #@ all-in-one-event-calendar
575
+ #: app/view/box_time_and_date.php:31
576
+ msgid "End date / time"
577
+ msgstr "Fecha / hora de fin"
578
+
579
+ #@ all-in-one-event-calendar
580
+ #: app/view/box_time_and_date.php:44
581
+ msgid "Repeat"
582
+ msgstr "Repetir"
583
+
584
+ #@ all-in-one-event-calendar
585
+ #: app/view/box_time_and_date.php:54
586
+ msgid "End"
587
+ msgstr "Fin"
588
+
589
+ #@ all-in-one-event-calendar
590
+ #: app/view/box_time_and_date.php:64
591
+ msgid "Ending after"
592
+ msgstr "Termina tras"
593
+
594
+ #@ all-in-one-event-calendar
595
+ #: app/view/admin_notices.php:2
596
+ msgid "All-in-One Event Calendar Notice:"
597
+ msgstr "Aviso de All-in-One Event Calendar:"
598
+
599
+ #@ all-in-one-event-calendar
600
+ #: app/view/import.php:6
601
+ msgid "Successfully imported events:"
602
+ msgstr "Eventos importados correctamente:"
603
+
604
+ #@ all-in-one-event-calendar
605
+ #: app/view/event_categories-color_picker.php:5
606
+ #: app/view/event_categories-color_picker.php:19
607
+ msgid "Category Color"
608
+ msgstr "Color de categoría"
609
+
610
+ #@ all-in-one-event-calendar
611
+ #: app/view/event_categories-color_picker.php:13
612
+ #: app/view/event_categories-color_picker.php:25
613
+ msgid "Events in this category will be identified by this color"
614
+ msgstr "Los eventos de esta categoría se identificarán con este color."
615
+
616
+ #@ default
617
+ #: app/view/event-single-footer.php:4
618
+ #, php-format
619
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
620
+ msgstr "Esta entrada se ha reproducido mediante el <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">canal de calendario</a> de otro sitio web."
621
+
622
+ #@ all-in-one-event-calendar
623
+ #: app/view/event-single-footer.php:8
624
+ msgid "View original post »"
625
+ msgstr "Ver la entrada original »"
626
+
627
+ #@ all-in-one-event-calendar
628
+ #: app/view/box_event_location.php:1
629
+ msgid "Event location details"
630
+ msgstr "Datos del lugar del evento"
631
+
632
+ #@ all-in-one-event-calendar
633
+ #: app/view/box_event_location.php:7
634
+ msgid "Venue name:"
635
+ msgstr "Nombre del sitio:"
636
+
637
+ #@ all-in-one-event-calendar
638
+ #: app/view/box_event_location.php:17
639
+ msgid "Address:"
640
+ msgstr "Dirección:"
641
+
642
+ #@ all-in-one-event-calendar
643
+ #: app/view/box_event_location.php:27
644
+ msgid "Show Google Map:"
645
+ msgstr "Mostrar Google Map:"
646
+
647
+ #@ all-in-one-event-calendar
648
+ #: app/view/event-multi.php:7
649
+ msgid "View in Calendar »"
650
+ msgstr "Ver en el calendario »"
651
+
652
+ #@ all-in-one-event-calendar
653
+ #: app/view/event-multi.php:24
654
+ msgid "View Map »"
655
+ msgstr "Ver mapa »"
656
+
657
+ #@ all-in-one-event-calendar
658
+ #: app/view/box_general_settings.php:1
659
+ msgid "Viewing Events"
660
+ msgstr "Visualización de eventos"
661
+
662
+ #@ all-in-one-event-calendar
663
+ #: app/view/box_general_settings.php:3
664
+ msgid "Calendar page:"
665
+ msgstr "Página del calendario:"
666
+
667
+ #@ all-in-one-event-calendar
668
+ #: app/view/box_general_settings.php:7
669
+ msgid "Default calendar view:"
670
+ msgstr "Vista predeterminada:"
671
+
672
+ #@ all-in-one-event-calendar
673
+ #: app/view/box_general_settings.php:12
674
+ msgid "Timezone:"
675
+ msgstr "Zona horaria:"
676
+
677
+ #@ all-in-one-event-calendar
678
+ #: app/view/box_general_settings.php:17
679
+ msgid "Contain calendar in this DOM element:"
680
+ msgstr "Englobar el calendario en este elemento DOM:"
681
+
682
+ #@ all-in-one-event-calendar
683
+ #: app/view/box_general_settings.php:19
684
+ 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."
685
+ msgstr "Opcional. Proporciona un <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">selector de jQuery</a> que se evalúa a un único elemento DOM. Sustituye cualquier código que se encuentre en el destino. Si se deja vacío, el calendario se muestra dentro del contenedor normal de la página."
686
+
687
+ #@ all-in-one-event-calendar
688
+ #: app/view/box_general_settings.php:21
689
+ msgid "Week starts on"
690
+ msgstr "La semana empieza en"
691
+
692
+ #@ all-in-one-event-calendar
693
+ #: app/view/box_general_settings.php:25
694
+ msgid "Agenda pages show at most"
695
+ msgstr "Las páginas de la agenda muestran como mucho"
696
+
697
+ #@ all-in-one-event-calendar
698
+ #: app/view/box_general_settings.php:26
699
+ msgid "events"
700
+ msgstr "eventos"
701
+
702
+ #@ all-in-one-event-calendar
703
+ #: app/view/box_general_settings.php:31
704
+ msgid "<strong>Exclude</strong> events from search results"
705
+ msgstr "<strong>Excluir</strong> los eventos de las búsquedas"
706
+
707
+ #@ all-in-one-event-calendar
708
+ #: app/view/box_general_settings.php:37
709
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
710
+ msgstr "Mostrar el botón <strong>Publicar un evento</strong> sobre el calendario para usuarios autorizados"
711
+
712
+ #@ all-in-one-event-calendar
713
+ #: app/view/box_general_settings.php:43
714
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
715
+ msgstr "Ocultar los botones <strong>Suscribirse</strong>/<strong>Añadir a mi calendario</strong> en las vistas de calendario y evento individual"
716
+
717
+ #@ all-in-one-event-calendar
718
+ #: app/view/box_general_settings.php:49
719
+ msgid "Hide <strong>Google Maps</strong> until clicked"
720
+ msgstr "Ocultar <strong>Google Maps</strong> hasta hacer clic"
721
+
722
+ #@ all-in-one-event-calendar
723
+ #: app/view/box_general_settings.php:55
724
+ msgid "Include <strong>event categories</strong> in post category lists"
725
+ msgstr "Incluir las <strong>categorías de eventos</strong> en las listas de categorías"
726
+
727
+ #@ all-in-one-event-calendar
728
+ #: app/view/box_general_settings.php:59
729
+ msgid "Adding/Editing Events"
730
+ msgstr "Creación/Modificación de eventos"
731
+
732
+ #@ all-in-one-event-calendar
733
+ #: app/view/box_general_settings.php:63
734
+ msgid "Input dates in <strong>US format</strong>"
735
+ msgstr "Introducir fechas en <strong>formato de EE.UU.</strong>"
736
+
737
+ #@ all-in-one-event-calendar
738
+ #: app/view/box_general_settings.php:69
739
+ msgid "Use <strong>24h time</strong> in time pickers"
740
+ msgstr "Usar <strong>24 horas</strong> en selectores de hora"
741
+
742
+ #@ all-in-one-event-calendar
743
+ #: app/view/box_general_settings.php:75
744
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
745
+ msgstr "Mostrar <strong>Publicar</strong> al final del formulario Editar evento"
746
+
747
+ #@ all-in-one-event-calendar
748
+ #: app/view/agenda-widget-form.php:2
749
+ msgid "Title:"
750
+ msgstr "Título:"
751
+
752
+ #@ all-in-one-event-calendar
753
+ #: app/view/agenda-widget-form.php:6
754
+ msgid "Number of events to show:"
755
+ msgstr "Número de eventos a mostrar:"
756
+
757
+ #@ all-in-one-event-calendar
758
+ #: app/view/agenda-widget-form.php:11
759
+ msgid "Show <strong>View Calendar</strong> button"
760
+ msgstr "Mostrar botón <strong>Ver calendario</strong>"
761
+
762
+ #@ all-in-one-event-calendar
763
+ #: app/view/agenda-widget-form.php:14
764
+ msgid "Show <strong>Subscribe</strong> buttons"
765
+ msgstr "Mostrar botones <strong>Suscribir</strong>"
766
+
767
+ #@ all-in-one-event-calendar
768
+ #: app/view/agenda-widget-form.php:17
769
+ msgid "Hide this widget on calendar page"
770
+ msgstr "Ocultar este widget en la página del calendario"
771
+
772
+ #@ all-in-one-event-calendar
773
+ #: app/view/agenda.php:12
774
+ #: app/view/month.php:4
775
+ msgid "Today"
776
+ msgstr "Hoy"
777
+
778
+ #@ all-in-one-event-calendar
779
+ #: app/view/month.php:50
780
+ msgid "Summary:"
781
+ msgstr "Resumen:"
782
+
783
+ #@ all-in-one-event-calendar
784
+ #: app/view/month.php:53
785
+ msgid "click anywhere for details"
786
+ msgstr "Haz clic para ver los detalles"
787
+
788
+ #@ all-in-one-event-calendar
789
+ #: app/view/agenda.php:57
790
+ #: app/view/agenda.php:107
791
+ #: app/view/month.php:68
792
+ msgid "(all-day)"
793
+ msgstr "(todo el día)"
794
+
795
+ #@ all-in-one-event-calendar
796
+ #: app/view/agenda.php:5
797
+ msgid "+ Expand All"
798
+ msgstr "+ Desplegar todos"
799
+
800
+ #@ all-in-one-event-calendar
801
+ #: app/view/agenda.php:8
802
+ msgid "− Collapse All"
803
+ msgstr "− Plegar todos"
804
+
805
+ #@ all-in-one-event-calendar
806
+ #: app/view/agenda.php:28
807
+ msgid "There are no upcoming events to display at this time."
808
+ msgstr "No hay eventos que mostrar en este momento."
809
+
810
+ #@ all-in-one-event-calendar
811
+ #: app/view/agenda.php:75
812
+ msgid "Read more »"
813
+ msgstr "Ver más »"
814
+
815
+ #@ all-in-one-event-calendar
816
+ #: app/view/agenda-widget.php:11
817
+ msgid "There are no upcoming events."
818
+ msgstr "No hay eventos programados."
819
+
820
+ #@ all-in-one-event-calendar
821
+ #: app/view/agenda-widget.php:59
822
+ msgid "View Calendar »"
823
+ msgstr "Ver calendario »"
824
+
825
+ #@ all-in-one-event-calendar
826
+ #: app/view/agenda-widget.php:74
827
+ msgid "Add to Google"
828
+ msgstr "Añadir a Google"
829
+
830
+ #@ all-in-one-event-calendar
831
+ #: app/view/box_event_contact.php:1
832
+ msgid "Organizer contact info"
833
+ msgstr "Datos de contacto del organizador"
834
+
835
+ #@ all-in-one-event-calendar
836
+ #: app/view/box_event_contact.php:7
837
+ msgid "Contact name:"
838
+ msgstr "Nombre:"
839
+
840
+ #@ all-in-one-event-calendar
841
+ #: app/view/box_event_contact.php:17
842
+ msgid "Phone:"
843
+ msgstr "Teléfono:"
844
+
845
+ #@ all-in-one-event-calendar
846
+ #: app/view/box_event_contact.php:27
847
+ msgid "E-mail:"
848
+ msgstr "E-mail:"
849
+
850
+ #@ all-in-one-event-calendar
851
+ #: app/view/class-ai1ec-agenda-widget.php:18
852
+ #: app/view/class-ai1ec-agenda-widget.php:39
853
+ msgid "Upcoming Events"
854
+ msgstr "Eventos programados"
855
+
856
+ #@ all-in-one-event-calendar
857
+ #: app/view/class-ai1ec-agenda-widget.php:20
858
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
859
+ msgstr "All-in-One Event Calendar: Lista de eventos en vista Agenda"
860
+
861
+ #@ all-in-one-event-calendar
862
+ #: app/view/box_event_cost.php:1
863
+ msgid "Event cost"
864
+ msgstr "Precio del evento"
865
+
866
+ #@ all-in-one-event-calendar
867
+ #: app/view/box_event_cost.php:7
868
+ msgid "Cost"
869
+ msgstr "Precio"
870
+
871
+ #@ all-in-one-event-calendar
872
+ #: app/view/event-map.php:2
873
+ msgid "Click to view map"
874
+ msgstr "Haz clic para ver el mapa"
875
+
876
+ #@ all-in-one-event-calendar
877
+ #: app/view/event-map.php:9
878
+ msgid "View Full-Size Map »"
879
+ msgstr "Ver mapa a tamaño completo »"
880
+
881
+ #@ all-in-one-event-calendar
882
+ #: app/view/box_eventbrite.php:1
883
+ msgid "Eventbrite Ticketing"
884
+ msgstr "Tickets con Eventbrite"
885
+
886
+ #@ all-in-one-event-calendar
887
+ #: app/view/box_eventbrite.php:7
888
+ msgid "Register this event with Eventbrite.com?"
889
+ msgstr "¿Registrar este evento en Eventbrite.com?"
890
+
891
+ #@ all-in-one-event-calendar
892
+ #: app/view/box_eventbrite.php:12
893
+ msgid "Yes"
894
+ msgstr "Sí"
895
+
896
+ #@ all-in-one-event-calendar
897
+ #: app/view/box_eventbrite.php:14
898
+ msgid "No"
899
+ msgstr "No"
900
+
901
+ #@ all-in-one-event-calendar
902
+ #: app/view/box_eventbrite.php:22
903
+ msgid "Set up your first ticket"
904
+ msgstr "Configura el primer ticket"
905
+
906
+ #@ all-in-one-event-calendar
907
+ #: app/view/box_eventbrite.php:24
908
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
909
+ msgstr "Para crear varios tickets por evento, envía este formulario y sigue el enlace a Eventbrite."
910
+
911
+ #@ all-in-one-event-calendar
912
+ #: app/view/box_eventbrite.php:32
913
+ msgid "Name"
914
+ msgstr "Nombre"
915
+
916
+ #@ all-in-one-event-calendar
917
+ #: app/view/box_eventbrite.php:42
918
+ msgid "Description"
919
+ msgstr "Descripción"
920
+
921
+ #@ all-in-one-event-calendar
922
+ #: app/view/box_eventbrite.php:53
923
+ msgid "Type"
924
+ msgstr "Tipo"
925
+
926
+ #@ all-in-one-event-calendar
927
+ #: app/view/box_eventbrite.php:58
928
+ msgid "Set Price"
929
+ msgstr "Fijar precio"
930
+
931
+ #@ all-in-one-event-calendar
932
+ #: app/view/box_eventbrite.php:60
933
+ msgid "Donation Based"
934
+ msgstr "Basado en donaciones"
935
+
936
+ #@ all-in-one-event-calendar
937
+ #: app/view/box_eventbrite.php:68
938
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
939
+ msgstr "El precio para el primer ticket de este evento se tomará del campo Precio de más arriba."
940
+
941
+ #@ all-in-one-event-calendar
942
+ #: app/view/box_eventbrite.php:75
943
+ msgid "Quantity"
944
+ msgstr "Cantidad"
945
+
946
+ #@ all-in-one-event-calendar
947
+ #: app/view/box_eventbrite.php:85
948
+ msgid "Include Fee in Price"
949
+ msgstr "Incluir comisión en precio"
950
+
951
+ #@ all-in-one-event-calendar
952
+ #: app/view/box_eventbrite.php:90
953
+ msgid "Add Service Fee on top of price"
954
+ msgstr "Añadir coste del servicio al precio"
955
+
956
+ #@ all-in-one-event-calendar
957
+ #: app/view/box_eventbrite.php:92
958
+ msgid "Include Service fee in price"
959
+ msgstr "Incluir coste del servicio en el precio"
960
+
961
+ #@ all-in-one-event-calendar
962
+ #: app/view/box_eventbrite.php:98
963
+ msgid "Payment Options"
964
+ msgstr "Opciones de pago"
965
+
966
+ #@ all-in-one-event-calendar
967
+ #: app/view/box_eventbrite.php:103
968
+ msgid "Paypal"
969
+ msgstr "Paypal"
970
+
971
+ #@ all-in-one-event-calendar
972
+ #: app/view/box_eventbrite.php:105
973
+ msgid "Google Checkout"
974
+ msgstr "Google Checkout"
975
+
976
+ #@ all-in-one-event-calendar
977
+ #: app/view/box_eventbrite.php:107
978
+ msgid "Check"
979
+ msgstr "Cheque"
980
+
981
+ #@ all-in-one-event-calendar
982
+ #: app/view/box_eventbrite.php:109
983
+ msgid "Cash"
984
+ msgstr "Efectivo"
985
+
986
+ #@ all-in-one-event-calendar
987
+ #: app/view/box_eventbrite.php:111
988
+ msgid "Send an Invoice"
989
+ msgstr "Enviar una factura"
990
+
991
+ #@ all-in-one-event-calendar
992
+ #: app/view/feed_row.php:9
993
+ msgid "Event category:"
994
+ msgstr "Categoría de evento:"
995
+
996
+ #@ all-in-one-event-calendar
997
+ #: app/view/feed_row.php:19
998
+ msgid "× Delete"
999
+ msgstr "× Borrar"
1000
+
1001
+ #@ all-in-one-event-calendar
1002
+ #: app/controller/class-ai1ec-events-controller.php:276
1003
+ #: app/view/feed_row.php:20
1004
+ msgid "Update"
1005
+ msgstr "Actualizar"
1006
+
1007
+ #@ all-in-one-event-calendar
1008
+ #: app/controller/class-ai1ec-settings-controller.php:215
1009
+ #: app/view/feed_row.php:22
1010
+ #, php-format
1011
+ msgid "Flush 1 event"
1012
+ msgid_plural "Flush %s events"
1013
+ msgstr[0] "Lanzar 1 evento"
1014
+ msgstr[1] "Lanzar %s eventos"
1015
+
1016
+ #@ all-in-one-event-calendar
1017
+ #: app/controller/class-ai1ec-events-controller.php:135
1018
+ msgid "This feed is already being imported."
1019
+ msgstr "Este canal ya se está importando."
1020
+
1021
+ #@ all-in-one-event-calendar
1022
+ #: app/controller/class-ai1ec-events-controller.php:136
1023
+ msgid "Please enter a valid iCalendar URL."
1024
+ msgstr "Introduce una URL válida de iCalendar."
1025
+
1026
+ #@ all-in-one-event-calendar
1027
+ #: app/controller/class-ai1ec-events-controller.php:276
1028
+ msgid "Publish"
1029
+ msgstr "Publicar"
1030
+
1031
+ #@ all-in-one-event-calendar
1032
+ #: app/controller/class-ai1ec-events-controller.php:278
1033
+ msgid "Submit for Review"
1034
+ msgstr "Enviar a revisión"
1035
+
1036
+ #@ all-in-one-event-calendar
1037
+ #: app/controller/class-ai1ec-events-controller.php:472
1038
+ #, php-format
1039
+ msgid "Event updated. <a href=\"%s\">View event</a>"
1040
+ msgstr "Evento actualizado. <a href=\"%s\">Ver evento</a>"
1041
+
1042
+ #@ all-in-one-event-calendar
1043
+ #: app/controller/class-ai1ec-events-controller.php:473
1044
+ msgid "Custom field updated."
1045
+ msgstr "Campo personalizado actualizado."
1046
+
1047
+ #@ all-in-one-event-calendar
1048
+ #: app/controller/class-ai1ec-events-controller.php:474
1049
+ msgid "Custom field deleted."
1050
+ msgstr "Campo personalizado borrado."
1051
+
1052
+ #@ all-in-one-event-calendar
1053
+ #: app/controller/class-ai1ec-events-controller.php:475
1054
+ msgid "Event updated."
1055
+ msgstr "Evento actualizado."
1056
+
1057
+ #@ all-in-one-event-calendar
1058
+ #. translators: %s: date and time of the revision
1059
+ #: app/controller/class-ai1ec-events-controller.php:477
1060
+ #, php-format
1061
+ msgid "Event restored to revision from %s"
1062
+ msgstr "Evento restaurado a la revisión del %s."
1063
+
1064
+ #@ all-in-one-event-calendar
1065
+ #: app/controller/class-ai1ec-events-controller.php:478
1066
+ #, php-format
1067
+ msgid "Event published. <a href=\"%s\">View event</a>"
1068
+ msgstr "Evento publicado. <a href=\"%s\">Ver evento</a>"
1069
+
1070
+ #@ default
1071
+ #: app/controller/class-ai1ec-events-controller.php:479
1072
+ msgid "Event saved."
1073
+ msgstr "Evento guardado."
1074
+
1075
+ #@ all-in-one-event-calendar
1076
+ #: app/controller/class-ai1ec-events-controller.php:480
1077
+ #, php-format
1078
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1079
+ msgstr "Evento enviado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
1080
+
1081
+ #@ all-in-one-event-calendar
1082
+ #: app/controller/class-ai1ec-events-controller.php:481
1083
+ #, php-format
1084
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
1085
+ msgstr "Evento programado para: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Previsualizar evento</a>"
1086
+
1087
+ #@ all-in-one-event-calendar
1088
+ #: app/controller/class-ai1ec-events-controller.php:483
1089
+ msgid "M j, Y @ G:i"
1090
+ msgstr "j \\d\\e F \\d\\e Y G:i"
1091
+
1092
+ #@ all-in-one-event-calendar
1093
+ #: app/controller/class-ai1ec-events-controller.php:484
1094
+ #, php-format
1095
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
1096
+ msgstr "Borrador de evento actualizado. <a target=\"_blank\" href=\"%s\">Previsualizar evento</a>"
1097
+
1098
+ #@ all-in-one-event-calendar
1099
+ #: app/controller/class-ai1ec-app-controller.php:346
1100
+ #: app/controller/class-ai1ec-app-controller.php:347
1101
+ msgid "Settings"
1102
+ msgstr "Ajustes"
1103
+
1104
+ #@ all-in-one-event-calendar
1105
+ #: app/controller/class-ai1ec-settings-controller.php:82
1106
+ msgid "Settings Updated."
1107
+ msgstr "Ajustes actualizados."
1108
+
1109
+ #@ all-in-one-event-calendar
1110
+ #: app/controller/class-ai1ec-settings-controller.php:172
1111
+ #, php-format
1112
+ msgid "Flushed %d events"
1113
+ msgstr "Lanzados %d eventos."
1114
+
1115
+ #@ all-in-one-event-calendar
1116
+ #: app/controller/class-ai1ec-settings-controller.php:214
1117
+ #, php-format
1118
+ msgid "Imported %d events"
1119
+ msgstr "Importados %d eventos."
1120
+
1121
+ #@ all-in-one-event-calendar
1122
+ #: app/controller/class-ai1ec-settings-controller.php:266
1123
+ msgctxt "meta box"
1124
+ msgid "General Settings"
1125
+ msgstr "Ajustes generales"
1126
+
1127
+ #@ all-in-one-event-calendar
1128
+ #: app/controller/class-ai1ec-settings-controller.php:273
1129
+ msgctxt "meta box"
1130
+ msgid "The Seed Studio Support"
1131
+ msgstr "Ayuda de The Seed Studio"
1132
+
1133
+ #@ all-in-one-event-calendar
1134
+ #: app/controller/class-ai1ec-settings-controller.php:280
1135
+ msgctxt "meta box"
1136
+ msgid "ICS Import Settings"
1137
+ msgstr "Ajustes de importación de ICS"
1138
+
1139
+ #@ all-in-one-event-calendar
1140
+ #: app/controller/class-ai1ec-settings-controller.php:344
1141
+ #, php-format
1142
+ msgid "<a href=\"%s\">Settings</a>"
1143
+ msgstr "<a href=\"%s\">Ajustes</a>"
1144
+
1145
+ #@ all-in-one-event-calendar
1146
+ #: app/controller/class-ai1ec-settings-controller.php:358
1147
+ #, php-format
1148
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
1149
+ msgstr "<a href=\"%s\" target=\"_blank\">Donar</a>"
1150
+
1151
+ #@ all-in-one-event-calendar
1152
+ #: app/controller/class-ai1ec-settings-controller.php:359
1153
+ #, php-format
1154
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
1155
+ msgstr "<a href=\"%s\" target=\"_blank\">Obtener ayuda</a>"
1156
+
1157
+ #@ all-in-one-event-calendar
1158
+ #: app/controller/class-ai1ec-importer-controller.php:91
1159
+ msgid "The Events Calendar → All-in-One Event Calendar"
1160
+ msgstr "The Events Calendar → All-in-One Event Calendar"
1161
+
1162
+ #@ all-in-one-event-calendar
1163
+ #: app/controller/class-ai1ec-importer-controller.php:92
1164
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
1165
+ msgstr "Importa eventos creados con el plugin The Events Calendar al calendario de All-in-One Events Calendar"
1166
+
1167
+ #@ all-in-one-event-calendar
1168
+ #: app/model/class-ai1ec-event.php:445
1169
+ msgid " (all-day)"
1170
+ msgstr "(todo el día)"
1171
+
1172
+ #@ all-in-one-event-calendar
1173
+ #: app/model/class-ai1ec-event.php:585
1174
+ #, php-format
1175
+ msgid "ending after <strong>%d</strong> time"
1176
+ msgid_plural "ending after <strong>%d</strong> times"
1177
+ msgstr[0] "finaliza tras <strong>%d</strong> vez"
1178
+ msgstr[1] "finaliza tras <strong>%d</strong> veces"
1179
+
1180
+ #@ all-in-one-event-calendar
1181
+ #: app/model/class-ai1ec-event.php:595
1182
+ #, php-format
1183
+ msgid "until <strong>%s</strong>"
1184
+ msgstr "hasta el <strong>%s</strong>"
1185
+
1186
+ #@ all-in-one-event-calendar
1187
+ #: app/model/class-ai1ec-event.php:604
1188
+ msgid " or "
1189
+ msgstr " o "
1190
+
language/all-in-one-event-calendar-nl_NL.mo ADDED
Binary file
language/all-in-one-event-calendar-nl_NL.po ADDED
@@ -0,0 +1,1199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2010 All-in-One Event Calendar Plugin
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.0.9\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
7
+ "POT-Creation-Date: 2011-11-18 01:32:36+00:00\n"
8
+ "PO-Revision-Date: 2011-11-18 22:23+0100\n"
9
+ "Last-Translator: Daniël Tulp <danieltulp@gmail.com>\n"
10
+ "Language-Team: Daniël Tulp <danieltulp@gmail.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-Language: Dutch\n"
15
+ "X-Poedit-Country: NETHERLANDS\n"
16
+ "X-Poedit-KeywordsList: __\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+
19
+ #: app/model/class-ai1ec-event.php:459
20
+ msgid " (all-day)"
21
+ msgstr "(gehele dag)"
22
+
23
+ #: app/helper/class-ai1ec-settings-helper.php:85
24
+ msgid "- Auto-Create New Page -"
25
+ msgstr "- Maak automatisch een nieuwe pagina aan -"
26
+
27
+ #: app/helper/class-ai1ec-settings-helper.php:106
28
+ msgid "View \"%s\" »"
29
+ msgstr "Bekijk \"%s\" »"
30
+
31
+ #: app/helper/class-ai1ec-settings-helper.php:148
32
+ #: app/view/calendar.php:10
33
+ #: app/view/calendar.php:11
34
+ #: app/view/calendar.php:17
35
+ msgid "Month"
36
+ msgstr "Maand"
37
+
38
+ #: app/helper/class-ai1ec-settings-helper.php:151
39
+ #: app/controller/class-ai1ec-calendar-controller.php:288
40
+ #: app/view/calendar.php:18
41
+ msgid "Agenda"
42
+ msgstr "Agenda"
43
+
44
+ #: app/helper/class-ai1ec-settings-helper.php:200
45
+ msgid "Default (d/m/y)"
46
+ msgstr "Standaard (d/m/j)"
47
+
48
+ #: app/helper/class-ai1ec-settings-helper.php:203
49
+ msgid "US (m/d/y)"
50
+ msgstr "VS (m/d/j)"
51
+
52
+ #: app/helper/class-ai1ec-settings-helper.php:206
53
+ msgid "ISO 8601 (y-m-d)"
54
+ msgstr "ISO 8601 (j-m-d)"
55
+
56
+ #: app/helper/class-ai1ec-settings-helper.php:209
57
+ msgid "Dotted (m.d.y)"
58
+ msgstr "Met punten (m.d.j)"
59
+
60
+ #: app/helper/class-ai1ec-settings-helper.php:227
61
+ msgid "Hourly"
62
+ msgstr "Per uur"
63
+
64
+ #: app/helper/class-ai1ec-settings-helper.php:230
65
+ msgid "Twice Daily"
66
+ msgstr "Twee keer per dag"
67
+
68
+ #: app/helper/class-ai1ec-settings-helper.php:233
69
+ #: app/helper/class-ai1ec-events-helper.php:554
70
+ #: app/helper/class-ai1ec-events-helper.php:573
71
+ #: app/helper/class-ai1ec-events-helper.php:1457
72
+ #: app/view/box_time_and_date.php:58
73
+ msgid "Daily"
74
+ msgstr "Dagelijks"
75
+
76
+ #: app/helper/class-ai1ec-settings-helper.php:317
77
+ msgid "Calendar"
78
+ msgstr "Kalender"
79
+
80
+ #: app/helper/class-ai1ec-app-helper.php:147
81
+ msgctxt "Custom post type name"
82
+ msgid "Events"
83
+ msgstr "Agendapunten"
84
+
85
+ #: app/helper/class-ai1ec-app-helper.php:148
86
+ msgctxt "Custom post type name (singular)"
87
+ msgid "Event"
88
+ msgstr "Agendapunt"
89
+
90
+ #: app/helper/class-ai1ec-app-helper.php:149
91
+ msgid "Add New"
92
+ msgstr "Voeg toe"
93
+
94
+ #: app/helper/class-ai1ec-app-helper.php:150
95
+ msgid "Add New Event"
96
+ msgstr "Voeg nieuw agendapunt toe"
97
+
98
+ #: app/helper/class-ai1ec-app-helper.php:151
99
+ msgid "Edit Event"
100
+ msgstr "Bewerk agendapunt"
101
+
102
+ #: app/helper/class-ai1ec-app-helper.php:152
103
+ msgid "New Event"
104
+ msgstr "Nieuw agendapunt"
105
+
106
+ #: app/helper/class-ai1ec-app-helper.php:153
107
+ msgid "View Event"
108
+ msgstr "Bekijk agendapunt"
109
+
110
+ #: app/helper/class-ai1ec-app-helper.php:154
111
+ msgid "Search Events"
112
+ msgstr "Doorzoek agenda"
113
+
114
+ #: app/helper/class-ai1ec-app-helper.php:155
115
+ msgid "No Events found"
116
+ msgstr "Geen agendapunten gevonden"
117
+
118
+ #: app/helper/class-ai1ec-app-helper.php:156
119
+ msgid "No Events found in Trash"
120
+ msgstr "Geen agendapunten gevonden in de prullenbak"
121
+
122
+ #: app/helper/class-ai1ec-app-helper.php:157
123
+ msgid "Parent Event"
124
+ msgstr "Hoofd agendapunt"
125
+
126
+ #: app/helper/class-ai1ec-app-helper.php:158
127
+ #: app/view/agenda-widget-form.php:88
128
+ msgid "Events"
129
+ msgstr "Agendapunten"
130
+
131
+ #: app/helper/class-ai1ec-app-helper.php:205
132
+ msgctxt "Event categories taxonomy"
133
+ msgid "Event Categories"
134
+ msgstr "Agenda categoriën"
135
+
136
+ #: app/helper/class-ai1ec-app-helper.php:206
137
+ msgctxt "Event categories taxonomy (singular)"
138
+ msgid "Event Category"
139
+ msgstr "Agenda categorie"
140
+
141
+ #: app/helper/class-ai1ec-app-helper.php:213
142
+ msgctxt "Event tags taxonomy"
143
+ msgid "Event Tags"
144
+ msgstr "Agenda labels"
145
+
146
+ #: app/helper/class-ai1ec-app-helper.php:214
147
+ msgctxt "Event tags taxonomy (singular)"
148
+ msgid "Event Tag"
149
+ msgstr "Agenda label"
150
+
151
+ #: app/helper/class-ai1ec-app-helper.php:313
152
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
153
+ msgstr "Alle agendapunten <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
154
+
155
+ #: app/helper/class-ai1ec-app-helper.php:319
156
+ msgid "All Events"
157
+ msgstr "Alle agendapunten"
158
+
159
+ #: app/helper/class-ai1ec-app-helper.php:395
160
+ msgid "Event Details"
161
+ msgstr "Details"
162
+
163
+ #: app/helper/class-ai1ec-app-helper.php:428
164
+ msgid "Post Date"
165
+ msgstr "Publicatie datum"
166
+
167
+ #: app/helper/class-ai1ec-app-helper.php:429
168
+ msgid "Event date/time"
169
+ msgstr "Datum/tijd"
170
+
171
+ #: app/helper/class-ai1ec-app-helper.php:646
172
+ 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"
173
+ msgstr "%sOm de plugin te configureren: %s 1. Selecteer een optie in de <strong>Calender pagina</strong> dropdown lijst. %s 2. Selecteer een optie in de <strong>Tijdzone</strong> dropdown lijst. %s 3. Klik <strong>Werk instellingen bij</strong>. %s"
174
+
175
+ #: app/helper/class-ai1ec-app-helper.php:648
176
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
177
+ msgstr "Om de plugin te configureren: Selecteer een optie in de <strong>Agenda pagina</strong> dropdown lijst, klik daarna op <strong>Instellingen bijwerken</strong>"
178
+
179
+ #: app/helper/class-ai1ec-app-helper.php:650
180
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
181
+ msgstr "Om de plugin te configureren: Selecteer een optie in de <strong>Tijdzone</strong> dropdown lijst, klik daarna op <strong>Instellingen bijwerken</strong>"
182
+
183
+ #: app/helper/class-ai1ec-app-helper.php:654
184
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
185
+ msgstr "De plugin is geïnstalleerd, maar niet geconfigureerd. <a href=\"%s\">Klik hier om dit nu te doen »</a>"
186
+
187
+ #: app/helper/class-ai1ec-app-helper.php:660
188
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
189
+ msgstr "De pluing in geïnstalleerd, maar is nog niet geconfigureerd. Log in als Wordpress Beheerder om dit te doen."
190
+
191
+ # Real translation: " Vorige Agendapunten " is too long for button
192
+ #: app/helper/class-ai1ec-calendar-helper.php:615
193
+ msgid "« Previous Events"
194
+ msgstr "« Vorige"
195
+
196
+ # Real translation: " Volgende Agendapunten " is too long for button
197
+ #: app/helper/class-ai1ec-calendar-helper.php:622
198
+ msgid "Next Events »"
199
+ msgstr "Volgende »"
200
+
201
+ #: app/helper/class-ai1ec-events-helper.php:319
202
+ #: app/helper/class-ai1ec-events-helper.php:341
203
+ msgid "No repeat"
204
+ msgstr "Geen herhaling"
205
+
206
+ #: app/helper/class-ai1ec-events-helper.php:320
207
+ #: app/helper/class-ai1ec-events-helper.php:342
208
+ msgid "Every day"
209
+ msgstr "Elke dag"
210
+
211
+ #: app/helper/class-ai1ec-events-helper.php:321
212
+ #: app/helper/class-ai1ec-events-helper.php:343
213
+ msgid "Every week"
214
+ msgstr "Elke week"
215
+
216
+ #: app/helper/class-ai1ec-events-helper.php:322
217
+ #: app/helper/class-ai1ec-events-helper.php:344
218
+ msgid "Every month"
219
+ msgstr "Elke maand"
220
+
221
+ #: app/helper/class-ai1ec-events-helper.php:323
222
+ #: app/helper/class-ai1ec-events-helper.php:345
223
+ msgid "Every year"
224
+ msgstr "Elk jaar"
225
+
226
+ #: app/helper/class-ai1ec-events-helper.php:324
227
+ #: app/helper/class-ai1ec-events-helper.php:346
228
+ msgid "-----------"
229
+ msgstr "-----------"
230
+
231
+ #: app/helper/class-ai1ec-events-helper.php:325
232
+ #: app/helper/class-ai1ec-events-helper.php:347
233
+ msgid "Custom..."
234
+ msgstr "Maatwerk..."
235
+
236
+ #: app/helper/class-ai1ec-events-helper.php:468
237
+ msgid "first"
238
+ msgstr "eerste"
239
+
240
+ #: app/helper/class-ai1ec-events-helper.php:469
241
+ msgid "second"
242
+ msgstr "tweede"
243
+
244
+ #: app/helper/class-ai1ec-events-helper.php:470
245
+ msgid "third"
246
+ msgstr "derde"
247
+
248
+ #: app/helper/class-ai1ec-events-helper.php:471
249
+ msgid "fourth"
250
+ msgstr "vierde"
251
+
252
+ #: app/helper/class-ai1ec-events-helper.php:472
253
+ msgid "------"
254
+ msgstr "------"
255
+
256
+ #: app/helper/class-ai1ec-events-helper.php:473
257
+ msgid "last"
258
+ msgstr "laatste"
259
+
260
+ #: app/helper/class-ai1ec-events-helper.php:478
261
+ msgid "Sunday"
262
+ msgstr "Zondag"
263
+
264
+ #: app/helper/class-ai1ec-events-helper.php:479
265
+ msgid "Monday"
266
+ msgstr "Maandag"
267
+
268
+ #: app/helper/class-ai1ec-events-helper.php:480
269
+ msgid "Tuesday"
270
+ msgstr "Dinsdag"
271
+
272
+ #: app/helper/class-ai1ec-events-helper.php:481
273
+ msgid "Wednesday"
274
+ msgstr "Woensdag"
275
+
276
+ #: app/helper/class-ai1ec-events-helper.php:482
277
+ msgid "Thursday"
278
+ msgstr "Donderdag"
279
+
280
+ #: app/helper/class-ai1ec-events-helper.php:483
281
+ msgid "Friday"
282
+ msgstr "Vrijdag"
283
+
284
+ #: app/helper/class-ai1ec-events-helper.php:484
285
+ msgid "Saturday"
286
+ msgstr "Zaterdag"
287
+
288
+ #: app/helper/class-ai1ec-events-helper.php:485
289
+ msgid "--------"
290
+ msgstr "--------"
291
+
292
+ #: app/helper/class-ai1ec-events-helper.php:486
293
+ msgid "day"
294
+ msgstr "dag"
295
+
296
+ #: app/helper/class-ai1ec-events-helper.php:487
297
+ msgid "weekday"
298
+ msgstr "doordeweekse dagen"
299
+
300
+ #: app/helper/class-ai1ec-events-helper.php:488
301
+ msgid "weekend day"
302
+ msgstr "weekend dag"
303
+
304
+ #: app/helper/class-ai1ec-events-helper.php:555
305
+ #: app/helper/class-ai1ec-events-helper.php:574
306
+ #: app/helper/class-ai1ec-events-helper.php:1469
307
+ #: app/view/box_time_and_date.php:59
308
+ msgid "Weekly"
309
+ msgstr "Wekelijks"
310
+
311
+ #: app/helper/class-ai1ec-events-helper.php:556
312
+ #: app/helper/class-ai1ec-events-helper.php:575
313
+ #: app/helper/class-ai1ec-events-helper.php:1481
314
+ #: app/view/box_time_and_date.php:60
315
+ msgid "Monthly"
316
+ msgstr "Maandelijks"
317
+
318
+ #: app/helper/class-ai1ec-events-helper.php:557
319
+ #: app/helper/class-ai1ec-events-helper.php:576
320
+ #: app/helper/class-ai1ec-events-helper.php:1493
321
+ #: app/view/box_time_and_date.php:61
322
+ msgid "Yearly"
323
+ msgstr "Jaarlijks"
324
+
325
+ #: app/helper/class-ai1ec-events-helper.php:598
326
+ msgid "day(s)"
327
+ msgstr "dag(en)"
328
+
329
+ #: app/helper/class-ai1ec-events-helper.php:627
330
+ msgid "week(s)"
331
+ msgstr "week/weken"
332
+
333
+ #: app/helper/class-ai1ec-events-helper.php:679
334
+ msgid "month(s)"
335
+ msgstr "maand(en)"
336
+
337
+ #: app/helper/class-ai1ec-events-helper.php:700
338
+ msgid "year(s)"
339
+ msgstr "jaar/jaren"
340
+
341
+ #: app/helper/class-ai1ec-events-helper.php:1270
342
+ msgid "Never"
343
+ msgstr "Nooit"
344
+
345
+ #: app/helper/class-ai1ec-events-helper.php:1271
346
+ msgid "After"
347
+ msgstr "Na"
348
+
349
+ #: app/helper/class-ai1ec-events-helper.php:1272
350
+ #: app/view/box_time_and_date.php:84
351
+ msgid "On date"
352
+ msgstr "Op datum"
353
+
354
+ #: app/helper/class-ai1ec-events-helper.php:1351
355
+ #: app/helper/class-ai1ec-events-helper.php:1360
356
+ #: app/helper/class-ai1ec-events-helper.php:1368
357
+ #: app/helper/class-ai1ec-events-helper.php:1381
358
+ #: app/helper/class-ai1ec-events-helper.php:1388
359
+ #: app/helper/class-ai1ec-events-helper.php:1394
360
+ #: app/helper/class-ai1ec-events-helper.php:1408
361
+ #: app/helper/class-ai1ec-events-helper.php:1416
362
+ #: app/helper/class-ai1ec-events-helper.php:1423
363
+ msgid "on"
364
+ msgstr "op"
365
+
366
+ #: app/helper/class-ai1ec-events-helper.php:1356
367
+ #: app/helper/class-ai1ec-events-helper.php:1385
368
+ #: app/helper/class-ai1ec-events-helper.php:1413
369
+ msgid "and"
370
+ msgstr "en"
371
+
372
+ #: app/helper/class-ai1ec-events-helper.php:1381
373
+ #: app/helper/class-ai1ec-events-helper.php:1388
374
+ #: app/helper/class-ai1ec-events-helper.php:1394
375
+ msgid "of the month"
376
+ msgstr "van de maand"
377
+
378
+ #: app/helper/class-ai1ec-events-helper.php:1460
379
+ msgid "Every other day"
380
+ msgstr "Elke andere dag"
381
+
382
+ #: app/helper/class-ai1ec-events-helper.php:1462
383
+ msgid "Every %d days"
384
+ msgstr "Elke %d dagen"
385
+
386
+ #: app/helper/class-ai1ec-events-helper.php:1472
387
+ msgid "Every other week"
388
+ msgstr "Elke andere week"
389
+
390
+ #: app/helper/class-ai1ec-events-helper.php:1474
391
+ msgid "Every %d weeks"
392
+ msgstr "Elke %d weken"
393
+
394
+ #: app/helper/class-ai1ec-events-helper.php:1484
395
+ msgid "Every other month"
396
+ msgstr "Elke andere maand"
397
+
398
+ #: app/helper/class-ai1ec-events-helper.php:1486
399
+ msgid "Every %d months"
400
+ msgstr "Elke %d maanden"
401
+
402
+ #: app/helper/class-ai1ec-events-helper.php:1496
403
+ msgid "Every other year"
404
+ msgstr "Elke ander jaar"
405
+
406
+ #: app/helper/class-ai1ec-events-helper.php:1498
407
+ msgid "Every %d years"
408
+ msgstr "Elke %d jaren"
409
+
410
+ #: app/helper/class-ai1ec-events-helper.php:1518
411
+ msgid "until %s"
412
+ msgstr "tot %s"
413
+
414
+ #: app/helper/class-ai1ec-events-helper.php:1521
415
+ msgid "for %d occurrences"
416
+ msgstr "voor %d keer"
417
+
418
+ #: app/helper/class-ai1ec-events-helper.php:1523
419
+ msgid "forever"
420
+ msgstr "voor altijd"
421
+
422
+ #: app/controller/class-ai1ec-settings-controller.php:82
423
+ msgid "Settings Updated."
424
+ msgstr "Instellingen zijn bijgewerkt"
425
+
426
+ #: app/controller/class-ai1ec-settings-controller.php:173
427
+ msgid "Flushed %d events"
428
+ msgstr "%d agendapunten verwijderd"
429
+
430
+ #: app/controller/class-ai1ec-settings-controller.php:215
431
+ msgid "Imported %d events"
432
+ msgstr "%d agendapunten geïmporteerd"
433
+
434
+ #: app/controller/class-ai1ec-settings-controller.php:216
435
+ #: app/view/feed_row.php:22
436
+ msgid "Flush 1 event"
437
+ msgid_plural "Flush %s events"
438
+ msgstr[0] "Verwijder 1 agendapunt"
439
+ msgstr[1] "Verwijder %s agendapunten"
440
+
441
+ #: app/controller/class-ai1ec-settings-controller.php:267
442
+ msgctxt "meta box"
443
+ msgid "General Settings"
444
+ msgstr "Algemene instellingen"
445
+
446
+ #: app/controller/class-ai1ec-settings-controller.php:275
447
+ msgctxt "meta box"
448
+ msgid "The Seed Studio Support"
449
+ msgstr "The Seed Studio ondersteuning"
450
+
451
+ #: app/controller/class-ai1ec-settings-controller.php:282
452
+ msgctxt "meta box"
453
+ msgid "ICS Import Settings"
454
+ msgstr "ICS importeer instellingen"
455
+
456
+ #: app/controller/class-ai1ec-settings-controller.php:334
457
+ msgid "<a href=\"%s\">Settings</a>"
458
+ msgstr "<a href=\"%s\">Instellingen</a>"
459
+
460
+ #: app/controller/class-ai1ec-settings-controller.php:348
461
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
462
+ msgstr "<a href=\"%s\" target=\"_blank\">Doneer</a>"
463
+
464
+ #: app/controller/class-ai1ec-settings-controller.php:349
465
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
466
+ msgstr "<a href=\"%s\" target=\"_blank\">Krijg ondersteuning</a>"
467
+
468
+ #: app/controller/class-ai1ec-events-controller.php:147
469
+ msgid "This feed is already being imported."
470
+ msgstr "Deze feed wordt al geïmporteerd."
471
+
472
+ #: app/controller/class-ai1ec-events-controller.php:148
473
+ msgid "Please enter a valid iCalendar URL."
474
+ msgstr "Voer een correcte iCalendar URL in."
475
+
476
+ #: app/controller/class-ai1ec-events-controller.php:276
477
+ msgid "times"
478
+ msgstr "keer"
479
+
480
+ #: app/controller/class-ai1ec-events-controller.php:325
481
+ msgid "Publish"
482
+ msgstr "Publiseer"
483
+
484
+ #: app/controller/class-ai1ec-events-controller.php:325
485
+ #: app/view/feed_row.php:20
486
+ msgid "Update"
487
+ msgstr "Bijwerken"
488
+
489
+ #: app/controller/class-ai1ec-events-controller.php:327
490
+ msgid "Submit for Review"
491
+ msgstr "Stuur op voor goedkeuring"
492
+
493
+ #: app/controller/class-ai1ec-events-controller.php:440
494
+ msgid "Event updated. <a href=\"%s\">View event</a>"
495
+ msgstr "Agendapunt bijgewerkt. <a href=\"%s\">Bekijk agendapunt</a>"
496
+
497
+ #: app/controller/class-ai1ec-events-controller.php:441
498
+ msgid "Custom field updated."
499
+ msgstr "Maatwerk veld bijgewerkt"
500
+
501
+ #: app/controller/class-ai1ec-events-controller.php:442
502
+ msgid "Custom field deleted."
503
+ msgstr "Maatwerk veld verwijderd"
504
+
505
+ #: app/controller/class-ai1ec-events-controller.php:443
506
+ msgid "Event updated."
507
+ msgstr "Agendapunt bijgewerkt"
508
+
509
+ #. translators: %s: date and time of the revision
510
+ #: app/controller/class-ai1ec-events-controller.php:445
511
+ msgid "Event restored to revision from %s"
512
+ msgstr "Agendapunt teruggebracht naar versie van %s"
513
+
514
+ #: app/controller/class-ai1ec-events-controller.php:446
515
+ msgid "Event published. <a href=\"%s\">View event</a>"
516
+ msgstr "Agendapunt gepubliseerd. <a href=\"%s\">Bekijk agendapunt</a>"
517
+
518
+ #: app/controller/class-ai1ec-events-controller.php:447
519
+ msgid "Event saved."
520
+ msgstr "Agendapunt opgeslagen."
521
+
522
+ #: app/controller/class-ai1ec-events-controller.php:448
523
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
524
+ msgstr "Agendapunt opgestuurd voor goedkeuring. <a target=\"_blank\" href=\"%s\">Vertoon het agendapunt voor</a>"
525
+
526
+ #: app/controller/class-ai1ec-events-controller.php:449
527
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
528
+ msgstr "Agendapunt geplaatst op: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Vertoon het agendapunt voor</a>"
529
+
530
+ #. translators: Publish box date format, see http:php.net/date
531
+ #: app/controller/class-ai1ec-events-controller.php:451
532
+ msgid "M j, Y @ G:i"
533
+ msgstr "j M Y @ G:i"
534
+
535
+ #: app/controller/class-ai1ec-events-controller.php:452
536
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
537
+ msgstr "Agendapunt concept bijgewerkt. <a target=\"_blank\" href=\"%s\">Vertoon het agendapunt voor</a>"
538
+
539
+ #: app/controller/class-ai1ec-app-controller.php:354
540
+ #: app/controller/class-ai1ec-app-controller.php:355
541
+ msgid "Settings"
542
+ msgstr "Instellingen"
543
+
544
+ #: app/controller/class-ai1ec-importer-controller.php:91
545
+ msgid "The Events Calendar → All-in-One Event Calendar"
546
+ msgstr "The Events Calendar → All-in-One Event Calendar"
547
+
548
+ #: app/controller/class-ai1ec-importer-controller.php:92
549
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
550
+ msgstr "Importeert agendapunten gemaakt met The Events Calendar plugin in de All-in-One Event Calendar"
551
+
552
+ #: app/view/event-single.php:5
553
+ #: app/view/event-multi.php:4
554
+ #: app/view/event-excerpt.php:2
555
+ msgid "When:"
556
+ msgstr "Wanneer:"
557
+
558
+ #: app/view/event-single.php:8
559
+ msgid "Back to Calendar »"
560
+ msgstr "Terug naar de agenda »"
561
+
562
+ #: app/view/event-single.php:15
563
+ #: app/view/event-multi.php:14
564
+ msgid "Repeats:"
565
+ msgstr "Herhalingen:"
566
+
567
+ #: app/view/event-single.php:20
568
+ #: app/view/event-multi.php:20
569
+ #: app/view/event-excerpt.php:4
570
+ msgid "Where:"
571
+ msgstr "Waar:"
572
+
573
+ #: app/view/event-single.php:27
574
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
575
+ msgstr "Voeg dit agendapunt toe aan je favorite agenda programma (iCal, Outlook, etc.)"
576
+
577
+ #: app/view/event-single.php:28
578
+ msgid "✔ Add to Calendar"
579
+ msgstr "✔ Voeg aan agenda toe"
580
+
581
+ #: app/view/event-single.php:31
582
+ msgid "Add this event to your Google Calendar"
583
+ msgstr "Voeg dit agendapunt toe aan je Google agenda"
584
+
585
+ #: app/view/event-single.php:33
586
+ msgid "Add to Google Calendar"
587
+ msgstr "Voeg toe aan Google agenda"
588
+
589
+ #: app/view/event-single.php:40
590
+ #: app/view/event-multi.php:33
591
+ msgid "Cost:"
592
+ msgstr "Kosten:"
593
+
594
+ #: app/view/event-single.php:46
595
+ #: app/view/event-multi.php:39
596
+ msgid "Contact:"
597
+ msgstr "Contact:"
598
+
599
+ #: app/view/event-single.php:52
600
+ #: app/view/event-multi.php:45
601
+ #: app/view/agenda.php:80
602
+ msgid "Categories:"
603
+ msgstr "Categoriën:"
604
+
605
+ #: app/view/event-single.php:59
606
+ #: app/view/event-multi.php:51
607
+ #: app/view/agenda.php:86
608
+ msgid "Tags:"
609
+ msgstr "Labels:"
610
+
611
+ #: app/view/event-map.php:2
612
+ msgid "Click to view map"
613
+ msgstr "Klik om kaart weer te geven"
614
+
615
+ #: app/view/event-map.php:9
616
+ msgid "View Full-Size Map »"
617
+ msgstr "Bekijk kaart op volledige grootte »"
618
+
619
+ #: app/view/box_event_cost.php:1
620
+ msgid "Event cost"
621
+ msgstr "Kosten van het evenement"
622
+
623
+ #: app/view/box_event_cost.php:7
624
+ msgid "Cost"
625
+ msgstr "Kosten"
626
+
627
+ #: app/view/event-multi.php:7
628
+ msgid "View in Calendar »"
629
+ msgstr "Bekijk in agenda"
630
+
631
+ #: app/view/event-multi.php:24
632
+ msgid "View Map »"
633
+ msgstr "Bekijk kaart »"
634
+
635
+ #: app/view/admin_notices.php:2
636
+ msgid "All-in-One Event Calendar Notice:"
637
+ msgstr "All-in-One Event Calendar Opmerking:"
638
+
639
+ #: app/view/row_daily.php:3
640
+ #: app/view/row_yearly.php:3
641
+ #: app/view/row_weekly.php:3
642
+ #: app/view/row_monthly.php:3
643
+ msgid "Every"
644
+ msgstr "Elke"
645
+
646
+ #: app/view/event_categories-color_picker.php:5
647
+ #: app/view/event_categories-color_picker.php:19
648
+ msgid "Category Color"
649
+ msgstr "Categoriekleur"
650
+
651
+ #: app/view/event_categories-color_picker.php:13
652
+ #: app/view/event_categories-color_picker.php:25
653
+ msgid "Events in this category will be identified by this color"
654
+ msgstr "Agendapunten in deze categorie zijn te herkennen aan deze kleur"
655
+
656
+ #: app/view/agenda-widget.php:11
657
+ msgid "There are no upcoming events."
658
+ msgstr "Er zijn toekomstige agendapunten"
659
+
660
+ #: app/view/agenda-widget.php:59
661
+ msgid "View Calendar »"
662
+ msgstr "Bekijk agenda »"
663
+
664
+ #: app/view/agenda-widget.php:67
665
+ #: app/view/calendar.php:101
666
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
667
+ msgstr "Abonneer je op deze agenda met je favorite programma (iCal, Outlook, etc.)"
668
+
669
+ #: app/view/agenda-widget.php:68
670
+ #: app/view/calendar.php:102
671
+ msgid "✔ Subscribe"
672
+ msgstr "✔ Abonneer"
673
+
674
+ #: app/view/agenda-widget.php:72
675
+ #: app/view/calendar.php:107
676
+ msgid "Subscribe to this calendar in your Google Calendar"
677
+ msgstr "Abonneer op deze agenda in je Google agenda"
678
+
679
+ #: app/view/agenda-widget.php:74
680
+ msgid "Add to Google"
681
+ msgstr "Voeg toe aan Google"
682
+
683
+ #: app/view/box_event_contact.php:1
684
+ msgid "Organizer contact info"
685
+ msgstr "Organisatie contact informatie"
686
+
687
+ #: app/view/box_event_contact.php:7
688
+ msgid "Contact name:"
689
+ msgstr "Contact naam:"
690
+
691
+ #: app/view/box_event_contact.php:17
692
+ msgid "Phone:"
693
+ msgstr "Telefoonnummer:"
694
+
695
+ #: app/view/box_event_contact.php:27
696
+ msgid "E-mail:"
697
+ msgstr "E-mail:"
698
+
699
+ #: app/view/box_ics_import_settings.php:2
700
+ msgid "Auto-refresh"
701
+ msgstr "Ververs automatisch"
702
+
703
+ #: app/view/box_ics_import_settings.php:8
704
+ #: app/view/feed_row.php:3
705
+ msgid "iCalendar/.ics Feed URL:"
706
+ msgstr "iCalendar/.ics Feed URL:"
707
+
708
+ #: app/view/box_ics_import_settings.php:12
709
+ msgid "Event category"
710
+ msgstr "Agenda categorie"
711
+
712
+ #: app/view/box_ics_import_settings.php:18
713
+ #: app/view/feed_row.php:15
714
+ msgid "Tag with"
715
+ msgstr "Label met"
716
+
717
+ #: app/view/box_ics_import_settings.php:22
718
+ msgid "+ Add new subscription"
719
+ msgstr "+ Voeg nieuw abonnement toe"
720
+
721
+ #: app/view/box_general_settings.php:1
722
+ msgid "Viewing Events"
723
+ msgstr "Bekijkt agendapunten"
724
+
725
+ #: app/view/box_general_settings.php:3
726
+ msgid "Calendar page:"
727
+ msgstr "Agenda pagina:"
728
+
729
+ #: app/view/box_general_settings.php:7
730
+ msgid "Default calendar view:"
731
+ msgstr "Standaard agenda weergave:"
732
+
733
+ #: app/view/box_general_settings.php:12
734
+ msgid "Timezone:"
735
+ msgstr "Tijdzone"
736
+
737
+ #: app/view/box_general_settings.php:17
738
+ msgid "Contain calendar in this DOM element:"
739
+ msgstr "Omvat de agenda in dit DOM element:"
740
+
741
+ #: app/view/box_general_settings.php:19
742
+ 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."
743
+ msgstr "Optioneel. Voorzie in een <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> die een enkel DOM element evalueerd. Dit vervangt elke bestaande layout die in het doel word gevonden. Als dit veld leeg blijft, wordt de agenda op de normale pagina weergegeven."
744
+
745
+ #: app/view/box_general_settings.php:21
746
+ msgid "Week starts on"
747
+ msgstr "De week start op"
748
+
749
+ # Geen correct engels, dus snap niet wat ze bedoelen
750
+ #: app/view/box_general_settings.php:25
751
+ msgid "Agenda pages show at most"
752
+ msgstr "Maximaal aantal agenda pagina's die worden weergegeven."
753
+
754
+ #: app/view/box_general_settings.php:26
755
+ msgid "events"
756
+ msgstr "agendapunten"
757
+
758
+ #: app/view/box_general_settings.php:31
759
+ msgid "Keep all events <strong>expanded</strong> in the agenda view"
760
+ msgstr "Behoudt alle agendapunten <strong>Uitgeklapt</strong> in de agenda weergave"
761
+
762
+ #: app/view/box_general_settings.php:37
763
+ msgid "<strong>Exclude</strong> events from search results"
764
+ msgstr "Toon agendapunten <strong>niet</strong> in de zoekresultaten"
765
+
766
+ #: app/view/box_general_settings.php:43
767
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
768
+ msgstr "Toon <strong>Plaats je agendapunt</strong> knop boven de agenda voor bevoorrechte gebruikers"
769
+
770
+ #: app/view/box_general_settings.php:49
771
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
772
+ msgstr "Verberg <strong>Abonneer</strong>/<strong>Voeg aan agenda toe</strong> knoppen"
773
+
774
+ #: app/view/box_general_settings.php:55
775
+ msgid "Hide <strong>Google Maps</strong> until clicked"
776
+ msgstr "Verberg <strong>Google Maps</strong> totdat er op wordt geklikt"
777
+
778
+ #: app/view/box_general_settings.php:61
779
+ msgid "Include <strong>event categories</strong> in post category lists"
780
+ msgstr "Toon <strong>agenda categoriën</strong> in de berichten categoriën lijst"
781
+
782
+ #: app/view/box_general_settings.php:65
783
+ msgid "Adding/Editing Events"
784
+ msgstr "Toevoegen/Bewerken agendapunten"
785
+
786
+ #: app/view/box_general_settings.php:67
787
+ msgid "Input dates in this format:"
788
+ msgstr "Voer datums in in dit formaat:"
789
+
790
+ #: app/view/box_general_settings.php:73
791
+ msgid "Use <strong>24h time</strong> in time pickers"
792
+ msgstr "Gebruik <strong>24 uurs tijd</strong> in tijd popups"
793
+
794
+ #: app/view/box_general_settings.php:79
795
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
796
+ msgstr "Toon <strong>Publiceer</strong> onder het Bewerk agendapunt formulier"
797
+
798
+ #: app/view/row_yearly.php:7
799
+ msgid "In"
800
+ msgstr "In"
801
+
802
+ #: app/view/feed_row.php:9
803
+ msgid "Event category:"
804
+ msgstr "Agenda categorie"
805
+
806
+ #: app/view/feed_row.php:19
807
+ msgid "× Delete"
808
+ msgstr "x Verwijder"
809
+
810
+ #: app/view/agenda-widget-form.php:2
811
+ msgid "Title:"
812
+ msgstr "Titel:"
813
+
814
+ #: app/view/agenda-widget-form.php:6
815
+ msgid "Number of events to show:"
816
+ msgstr "Aantal weer te geven agendapunten"
817
+
818
+ #: app/view/agenda-widget-form.php:14
819
+ msgid "Events with these <strong>Categories</strong>"
820
+ msgstr "Agendapunten met deze <strong>Categroriën</strong>"
821
+
822
+ #: app/view/agenda-widget-form.php:27
823
+ msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
824
+ msgstr "<strong>Of</strong> agendapunten met deze <strong>Labels</strong>"
825
+
826
+ #: app/view/agenda-widget-form.php:40
827
+ msgid "<strong>Or</strong> any of these <strong>Events</strong>"
828
+ msgstr "<strong>Of</strong> een van deze <strong>agendapunten</strong>"
829
+
830
+ #: app/view/agenda-widget-form.php:53
831
+ msgid "Show <strong>View Calendar</strong> button"
832
+ msgstr "Toon <strong>Bekijk agenda</strong> knop"
833
+
834
+ #: app/view/agenda-widget-form.php:56
835
+ msgid "Show <strong>Subscribe</strong> buttons"
836
+ msgstr "Toon <strong>Abonneer</strong> knoppen"
837
+
838
+ #: app/view/agenda-widget-form.php:59
839
+ msgid "Hide this widget on calendar page"
840
+ msgstr "Verberg deze widget op de agendapagina"
841
+
842
+ #: app/view/agenda-widget-form.php:66
843
+ msgid "Categories"
844
+ msgstr "Categoriën"
845
+
846
+ #: app/view/agenda-widget-form.php:77
847
+ msgid "Tags"
848
+ msgstr "Labels"
849
+
850
+ #: app/view/calendar.php:27
851
+ msgid "+ Post Your Event"
852
+ msgstr "+ Plaats jouw agendapunt"
853
+
854
+ #: app/view/calendar.php:36
855
+ msgid "Clear Filters"
856
+ msgstr "Opschonen filters"
857
+
858
+ #: app/view/calendar.php:36
859
+ msgid "✘"
860
+ msgstr "✘"
861
+
862
+ #: app/view/calendar.php:37
863
+ msgid "Filter:"
864
+ msgstr "Filter:"
865
+
866
+ #: app/view/calendar.php:42
867
+ msgid "Categories ▾"
868
+ msgstr "Categoriën ▾"
869
+
870
+ #: app/view/calendar.php:64
871
+ msgid "Tags ▾"
872
+ msgstr "Labels ▾"
873
+
874
+ #: app/view/calendar.php:103
875
+ msgid "to this filtered calendar"
876
+ msgstr "op deze gefilterde agenda"
877
+
878
+ #: app/view/calendar.php:109
879
+ msgid "Subscribe in Google Calendar"
880
+ msgstr "Abonneer in Google agenda"
881
+
882
+ #: app/view/agenda.php:5
883
+ msgid "+ Expand All"
884
+ msgstr "+ Toon geheel"
885
+
886
+ #: app/view/agenda.php:8
887
+ msgid "− Collapse All"
888
+ msgstr "- Toon beperkt"
889
+
890
+ #: app/view/agenda.php:12
891
+ #: app/view/month.php:4
892
+ msgid "Today"
893
+ msgstr "Vandaag"
894
+
895
+ #: app/view/agenda.php:28
896
+ msgid "There are no upcoming events to display at this time."
897
+ msgstr "Er zijn op dit moment geen toekomstige agendapunten om weer te geven."
898
+
899
+ #: app/view/agenda.php:58
900
+ #: app/view/agenda.php:108
901
+ #: app/view/month.php:68
902
+ msgid "(all-day)"
903
+ msgstr "(gehele dag)"
904
+
905
+ #: app/view/agenda.php:76
906
+ msgid "Read more »"
907
+ msgstr "Lees meer »"
908
+
909
+ #: app/view/class-ai1ec-agenda-widget.php:18
910
+ #: app/view/class-ai1ec-agenda-widget.php:39
911
+ msgid "Upcoming Events"
912
+ msgstr "Toekomstige agendapunten"
913
+
914
+ #: app/view/class-ai1ec-agenda-widget.php:20
915
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
916
+ msgstr "All-in-One Event Calendar: Toont komende agendapunten in de Agenda weergave"
917
+
918
+ #. #-#-#-#-# plugin.pot (All-in-One Event Calendar Plugin 1.1) #-#-#-#-#
919
+ #. Author of the plugin/theme
920
+ #: app/view/box_the_seed_studio.php:3
921
+ msgid "The Seed Studio"
922
+ msgstr "The Seed Studio"
923
+
924
+ #: app/view/box_the_seed_studio.php:5
925
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
926
+ msgstr "The Seed Studio verzorgt web ontwikkelingen en ondersteunende diensten voor klanten en web ontwikkelaars."
927
+
928
+ #: app/view/box_the_seed_studio.php:11
929
+ msgid "Follow @the_seed_studio"
930
+ msgstr "Volg @the_seed_studio"
931
+
932
+ #: app/view/box_the_seed_studio.php:16
933
+ msgid "Get Support<span> from one of our experienced pros</span>"
934
+ msgstr "Verkrijg ondersteuning <span>van één van onze ervaren professionals</span>"
935
+
936
+ #: app/view/box_the_seed_studio.php:18
937
+ msgid "Support"
938
+ msgstr "Ondersteuning"
939
+
940
+ #: app/view/box_the_seed_studio.php:20
941
+ msgid "View plugin documentation"
942
+ msgstr "Bekijk plugin documentatie"
943
+
944
+ #: app/view/box_the_seed_studio.php:23
945
+ 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!)."
946
+ msgstr "U kunt ook The Seed inhuren voor ondersteuning doormiddel van een contract op basis van gewerkte uren voor deze plugin, uw website of elke andere van uw Internet marketing behoeftes (we kunnen u echt helpen!)"
947
+
948
+ #: app/view/box_the_seed_studio.php:26
949
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
950
+ msgstr "Plugin gebruikers: The Seed geeft prioriteit aan ondersteuning voor haar klanten. Voor gratis ondersteuning van andere Wordpress gebruikers bezoekt u ons plugin forum."
951
+
952
+ #: app/view/box_the_seed_studio.php:29
953
+ msgid "Vote and Share"
954
+ msgstr "Stem en deel"
955
+
956
+ #: app/view/box_the_seed_studio.php:32
957
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
958
+ msgstr "Deze plugin wordt gratis ter beschikking gesteld aan de Wordpress gemeenschap onder de GPL3 licentie. Alles wat we van u vragen is:"
959
+
960
+ #: app/view/box_the_seed_studio.php:34
961
+ 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!)"
962
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Geef een vijf-sterren beoordeling op wordpress.org</a> (als u denkt dat het dit verdiend!)"
963
+
964
+ #: app/view/box_the_seed_studio.php:35
965
+ msgid "Link to the plugin page on our website"
966
+ msgstr "Link naar de pluginpagina op onze website"
967
+
968
+ #: app/view/box_the_seed_studio.php:36
969
+ msgid "Become a Fan on Facebook"
970
+ msgstr "Wordt fan op Facebook"
971
+
972
+ #: app/view/box_the_seed_studio.php:37
973
+ msgid "Follow us on Twitter"
974
+ msgstr "Volg ons op Twitter"
975
+
976
+ #: app/view/box_the_seed_studio.php:41
977
+ msgid "Latest from the Seed Network"
978
+ msgstr "Laatste van the Seed Network"
979
+
980
+ #: app/view/box_eventbrite.php:1
981
+ msgid "Eventbrite Ticketing"
982
+ msgstr "Eventbrite Ticketing"
983
+
984
+ #: app/view/box_eventbrite.php:7
985
+ msgid "Register this event with Eventbrite.com?"
986
+ msgstr "Registreer dit evenement bij Eventbrite.com?"
987
+
988
+ #: app/view/box_eventbrite.php:12
989
+ msgid "Yes"
990
+ msgstr "Ja"
991
+
992
+ #: app/view/box_eventbrite.php:14
993
+ msgid "No"
994
+ msgstr "Nee"
995
+
996
+ #: app/view/box_eventbrite.php:22
997
+ msgid "Set up your first ticket"
998
+ msgstr "Maak je eerste ticket aan"
999
+
1000
+ #: app/view/box_eventbrite.php:24
1001
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
1002
+ msgstr "Om meerdere tickets per agendapunt aan te maken, verstuur dit formulier en volg daarna de link naar Eventbrite."
1003
+
1004
+ #: app/view/box_eventbrite.php:32
1005
+ msgid "Name"
1006
+ msgstr "Naam"
1007
+
1008
+ #: app/view/box_eventbrite.php:42
1009
+ msgid "Description"
1010
+ msgstr "Omschrijving"
1011
+
1012
+ #: app/view/box_eventbrite.php:53
1013
+ msgid "Type"
1014
+ msgstr "Type"
1015
+
1016
+ #: app/view/box_eventbrite.php:58
1017
+ msgid "Set Price"
1018
+ msgstr "Stel prijs in"
1019
+
1020
+ #: app/view/box_eventbrite.php:60
1021
+ msgid "Donation Based"
1022
+ msgstr "Gebaseerd op donaties"
1023
+
1024
+ #: app/view/box_eventbrite.php:68
1025
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
1026
+ msgstr "De prijs voor het eerste ticket voor dit agendapunt wordt overgenomen van het Kosten veld hierboven."
1027
+
1028
+ #: app/view/box_eventbrite.php:75
1029
+ msgid "Quantity"
1030
+ msgstr "Hoeveelheid"
1031
+
1032
+ #: app/view/box_eventbrite.php:85
1033
+ msgid "Include Fee in Price"
1034
+ msgstr "Prijs inclusief commissie"
1035
+
1036
+ #: app/view/box_eventbrite.php:90
1037
+ msgid "Add Service Fee on top of price"
1038
+ msgstr "Voeg dienstencommissie toe bovenop de prijs"
1039
+
1040
+ #: app/view/box_eventbrite.php:92
1041
+ msgid "Include Service fee in price"
1042
+ msgstr "Prijs inclusief diensten commissie"
1043
+
1044
+ #: app/view/box_eventbrite.php:98
1045
+ msgid "Payment Options"
1046
+ msgstr "Betalingsopties"
1047
+
1048
+ #: app/view/box_eventbrite.php:103
1049
+ msgid "Paypal"
1050
+ msgstr "Paypal"
1051
+
1052
+ #: app/view/box_eventbrite.php:105
1053
+ msgid "Google Checkout"
1054
+ msgstr "Google Checkout"
1055
+
1056
+ #: app/view/box_eventbrite.php:107
1057
+ msgid "Check"
1058
+ msgstr "Check"
1059
+
1060
+ #: app/view/box_eventbrite.php:109
1061
+ msgid "Cash"
1062
+ msgstr "Contant"
1063
+
1064
+ #: app/view/box_eventbrite.php:111
1065
+ msgid "Send an Invoice"
1066
+ msgstr "Stuur een factuur"
1067
+
1068
+ #: app/view/event-single-footer.php:4
1069
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
1070
+ msgstr "Dit agendapunt is gegenereerd van <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">agenda feed</a> van een andere website."
1071
+
1072
+ #: app/view/event-single-footer.php:8
1073
+ msgid "View original post »"
1074
+ msgstr "Bekijk het originele agendapunt »"
1075
+
1076
+ #: app/view/box_time_and_date.php:2
1077
+ msgid "Event date and time"
1078
+ msgstr "Datum en tijd:"
1079
+
1080
+ #: app/view/box_time_and_date.php:8
1081
+ msgid "All-day event"
1082
+ msgstr "Gehele dag"
1083
+
1084
+ #: app/view/box_time_and_date.php:18
1085
+ msgid "Start date / time"
1086
+ msgstr "Begin datum / tijd"
1087
+
1088
+ #: app/view/box_time_and_date.php:31
1089
+ msgid "End date / time"
1090
+ msgstr "Eind datum / tijd"
1091
+
1092
+ #: app/view/box_time_and_date.php:46
1093
+ msgid "Repeat"
1094
+ msgstr "Herhaal"
1095
+
1096
+ #: app/view/box_time_and_date.php:70
1097
+ msgid "End"
1098
+ msgstr "Einde"
1099
+
1100
+ #: app/view/box_time_and_date.php:77
1101
+ msgid "Ending after"
1102
+ msgstr "Eindigt na"
1103
+
1104
+ #: app/view/box_time_and_date.php:92
1105
+ msgid "Apply"
1106
+ msgstr "Pas toe"
1107
+
1108
+ #: app/view/box_time_and_date.php:93
1109
+ msgid "Cancel"
1110
+ msgstr "Afbreken"
1111
+
1112
+ #: app/view/row_weekly.php:6
1113
+ msgid "On"
1114
+ msgstr "Op"
1115
+
1116
+ #: app/view/row_monthly.php:7
1117
+ #, fuzzy
1118
+ msgid "Each"
1119
+ msgstr "Elke"
1120
+
1121
+ #: app/view/settings.php:5
1122
+ msgid "All-in-one Event Calendar"
1123
+ msgstr "All-in-one Event Calendar"
1124
+
1125
+ #: app/view/settings.php:17
1126
+ msgid "Update Settings"
1127
+ msgstr "Werk instellingen bij"
1128
+
1129
+ #: app/view/box_event_location.php:1
1130
+ msgid "Event location details"
1131
+ msgstr "Locatie details"
1132
+
1133
+ #: app/view/box_event_location.php:7
1134
+ msgid "Venue name:"
1135
+ msgstr "Locatie naam:"
1136
+
1137
+ #: app/view/box_event_location.php:17
1138
+ msgid "Address:"
1139
+ msgstr "Adres:"
1140
+
1141
+ #: app/view/box_event_location.php:27
1142
+ msgid "Show Google Map:"
1143
+ msgstr "Toon Google Map:"
1144
+
1145
+ #: app/view/month.php:50
1146
+ msgid "Summary:"
1147
+ msgstr "Samenvatting:"
1148
+
1149
+ #: app/view/month.php:53
1150
+ msgid "click anywhere for details"
1151
+ msgstr "klik ergens voor details"
1152
+
1153
+ #: app/view/import.php:6
1154
+ msgid "Successfully imported events:"
1155
+ msgstr "Agendapunten zijn succesvol geïmporteerd"
1156
+
1157
+ #. Plugin Name of the plugin/theme
1158
+ msgid "All-in-One Event Calendar Plugin"
1159
+ msgstr "All-in-One Event Calendar Plugin"
1160
+
1161
+ #. Plugin URI of the plugin/theme
1162
+ msgid "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1163
+ msgstr "http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/"
1164
+
1165
+ #. Description of the plugin/theme
1166
+ msgid "An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds."
1167
+ msgstr "Een (evenementen) agenda systeem met maand en kalender weergave, komende agendapunten widget, kleurgecodeerde categoriën, herhalingen, en importeren/exporteren van .ics feeds."
1168
+
1169
+ #. Author URI of the plugin/theme
1170
+ msgid "http://theseednetwork.com/"
1171
+ msgstr "http://theseednetwork.com/"
1172
+
1173
+ #~ msgid "Tuesdays & Thursdays"
1174
+ #~ msgstr "Dinsdagen & donderdagen"
1175
+
1176
+ #~ msgid "Mondays, Wednesdays & Fridays"
1177
+ #~ msgstr "Maandagen, woensdagen en vrijdagen"
1178
+
1179
+ #~ msgid "Weekends"
1180
+ #~ msgstr "Weekenden"
1181
+
1182
+ #~ msgid "Donate"
1183
+ #~ msgstr "Doneer"
1184
+
1185
+ #~ msgid ""
1186
+ #~ "If you would like to help support development of this plugin, then by all "
1187
+ #~ "means..."
1188
+ #~ msgstr ""
1189
+ #~ "Als je wild helpen om de ontwikkeling van deze plugin te ondersteunen, "
1190
+ #~ "dan is dat meer dan welkom..."
1191
+
1192
+ #~ msgid "ending after <strong>%d</strong> time"
1193
+
1194
+ #~ msgid_plural "ending after <strong>%d</strong> times"
1195
+ #~ msgstr[0] "eindigd na <strong>%d</strong> keer"
1196
+ #~ msgstr[1] "eindigd na <strong>%d</strong> keer"
1197
+
1198
+ #~ msgid " or "
1199
+ #~ msgstr "of"
language/all-in-one-event-calendar-sv_SE.mo ADDED
Binary file
language/all-in-one-event-calendar-sv_SE.po ADDED
@@ -0,0 +1,951 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2010 All-in-One Event Calendar Plugin
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.0.9\n"
6
+ "Report-Msgid-Bugs-To: http://trac.the-seed.ca/ticket/78\n"
7
+ "POT-Creation-Date: 2011-10-27 14:32+0100\n"
8
+ "PO-Revision-Date: 2011-10-27 14:37+0100\n"
9
+ "Last-Translator: Jonas Sjömark (josjo) <jonassjomark@gmail.com>\n"
10
+ "Language-Team: Jonas Sjömark (josjo) <jonassjomark@gmail.com>\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Poedit-Language: Swedish\n"
16
+ "X-Poedit-Country: SWEDEN\n"
17
+
18
+ #: ..\./app/controller/class-ai1ec-app-controller.php:346
19
+ #: ..\./app/controller/class-ai1ec-app-controller.php:347
20
+ msgid "Settings"
21
+ msgstr "Inställningar"
22
+
23
+ #: ..\./app/controller/class-ai1ec-calendar-controller.php:280
24
+ msgid "Agenda"
25
+ msgstr "Agenda"
26
+
27
+ #: ..\./app/controller/class-ai1ec-events-controller.php:135
28
+ msgid "This feed is already being imported."
29
+ msgstr "Detta flöde har redan importerats."
30
+
31
+ #: ..\./app/controller/class-ai1ec-events-controller.php:136
32
+ msgid "Please enter a valid iCalendar URL."
33
+ msgstr "Ange en giltig iCalendar URL."
34
+
35
+ #: ..\./app/controller/class-ai1ec-events-controller.php:276
36
+ msgid "Publish"
37
+ msgstr "Publicera"
38
+
39
+ #: ..\./app/controller/class-ai1ec-events-controller.php:276
40
+ msgid "Update"
41
+ msgstr "Uppdatera"
42
+
43
+ #: ..\./app/controller/class-ai1ec-events-controller.php:278
44
+ msgid "Submit for Review"
45
+ msgstr "Skicka för granskning"
46
+
47
+ #: ..\./app/controller/class-ai1ec-events-controller.php:472
48
+ #, php-format
49
+ msgid "Event updated. <a href=\"%s\">View event</a>"
50
+ msgstr "Händelsen uppdaterades. <a href=\"%s\">Visa händelse</a>"
51
+
52
+ #: ..\./app/controller/class-ai1ec-events-controller.php:473
53
+ msgid "Custom field updated."
54
+ msgstr "Eget fält uppdaterades."
55
+
56
+ #: ..\./app/controller/class-ai1ec-events-controller.php:474
57
+ msgid "Custom field deleted."
58
+ msgstr "Eget fält togs bort."
59
+
60
+ #: ..\./app/controller/class-ai1ec-events-controller.php:475
61
+ msgid "Event updated."
62
+ msgstr "Händelsen uppdaterades."
63
+
64
+ #: ..\./app/controller/class-ai1ec-events-controller.php:477
65
+ #, php-format
66
+ msgid "Event restored to revision from %s"
67
+ msgstr "Händelsen återställdes till revision från %s"
68
+
69
+ #: ..\./app/controller/class-ai1ec-events-controller.php:478
70
+ #, php-format
71
+ msgid "Event published. <a href=\"%s\">View event</a>"
72
+ msgstr "Händelsen publicerades. <a href=\"%s\">Visa händelse</a>"
73
+
74
+ #: ..\./app/controller/class-ai1ec-events-controller.php:479
75
+ msgid "Event saved."
76
+ msgstr "Händelsen sparades."
77
+
78
+ #: ..\./app/controller/class-ai1ec-events-controller.php:480
79
+ #, php-format
80
+ msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
81
+ msgstr "Händelsen sparades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
82
+
83
+ #: ..\./app/controller/class-ai1ec-events-controller.php:481
84
+ #, php-format
85
+ msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
86
+ msgstr "Händelsen äger rum: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Förhandsgranska händelse</a>"
87
+
88
+ #: ..\./app/controller/class-ai1ec-events-controller.php:483
89
+ msgid "M j, Y @ G:i"
90
+ msgstr "j F, Y @ H:i"
91
+
92
+ #: ..\./app/controller/class-ai1ec-events-controller.php:484
93
+ #, php-format
94
+ msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
95
+ msgstr "Utkastet uppdaterades. <a target=\"_blank\" href=\"%s\">Förhandsgranska händelse</a>"
96
+
97
+ #: ..\./app/controller/class-ai1ec-importer-controller.php:91
98
+ msgid "The Events Calendar → All-in-One Event Calendar"
99
+ msgstr "The Events Calendar → All-in-One Event Calendar"
100
+
101
+ #: ..\./app/controller/class-ai1ec-importer-controller.php:92
102
+ msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
103
+ msgstr "Importera händelser som skapats med The Events Calendar till All-in-One Event Calendar"
104
+
105
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:82
106
+ msgid "Settings Updated."
107
+ msgstr "Inställningarna uppdaterades."
108
+
109
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:172
110
+ #, php-format
111
+ msgid "Flushed %d events"
112
+ msgstr "Tog bort %d händelser"
113
+
114
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:214
115
+ #, php-format
116
+ msgid "Imported %d events"
117
+ msgstr "Importerade %d händelser"
118
+
119
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:215
120
+ #, php-format
121
+ msgid "Flush 1 event"
122
+ msgid_plural "Flush %s events"
123
+ msgstr[0] "Tog bort 1 händelse"
124
+ msgstr[1] "Tog bort %s händelser"
125
+
126
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:266
127
+ msgctxt "meta box"
128
+ msgid "General Settings"
129
+ msgstr "Allmänna inställningar"
130
+
131
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:273
132
+ msgctxt "meta box"
133
+ msgid "The Seed Studio Support"
134
+ msgstr "The Seed Studio Support"
135
+
136
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:280
137
+ msgctxt "meta box"
138
+ msgid "ICS Import Settings"
139
+ msgstr "Inställningar för ICS-import"
140
+
141
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:344
142
+ #, php-format
143
+ msgid "<a href=\"%s\">Settings</a>"
144
+ msgstr "<a href=\"%s\">Inställningar</a>"
145
+
146
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:358
147
+ #, php-format
148
+ msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
149
+ msgstr "<a href=\"%s\" target=\"_blank\">Ge ett bidrag</a>"
150
+
151
+ #: ..\./app/controller/class-ai1ec-settings-controller.php:359
152
+ #, php-format
153
+ msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
154
+ msgstr "<a href=\"%s\" target=\"_blank\">Få support</a>"
155
+
156
+ #: ..\./app/helper/class-ai1ec-app-helper.php:147
157
+ msgctxt "Custom post type name"
158
+ msgid "Events"
159
+ msgstr "Händelser"
160
+
161
+ #: ..\./app/helper/class-ai1ec-app-helper.php:148
162
+ msgctxt "Custom post type name (singular)"
163
+ msgid "Event"
164
+ msgstr "Händelse"
165
+
166
+ #: ..\./app/helper/class-ai1ec-app-helper.php:149
167
+ msgid "Add New"
168
+ msgstr "Skapa ny"
169
+
170
+ #: ..\./app/helper/class-ai1ec-app-helper.php:150
171
+ msgid "Add New Event"
172
+ msgstr "Ny händelse"
173
+
174
+ #: ..\./app/helper/class-ai1ec-app-helper.php:151
175
+ msgid "Edit Event"
176
+ msgstr "Redigera händelse"
177
+
178
+ #: ..\./app/helper/class-ai1ec-app-helper.php:152
179
+ msgid "New Event"
180
+ msgstr "Ny händelse"
181
+
182
+ #: ..\./app/helper/class-ai1ec-app-helper.php:153
183
+ msgid "View Event"
184
+ msgstr "Visa händelse"
185
+
186
+ #: ..\./app/helper/class-ai1ec-app-helper.php:154
187
+ msgid "Search Events"
188
+ msgstr "Sök händelser"
189
+
190
+ #: ..\./app/helper/class-ai1ec-app-helper.php:155
191
+ msgid "No Events found"
192
+ msgstr "Inga händelser hittades"
193
+
194
+ #: ..\./app/helper/class-ai1ec-app-helper.php:156
195
+ msgid "No Events found in Trash"
196
+ msgstr "Inga händelser i papperskorgen"
197
+
198
+ #: ..\./app/helper/class-ai1ec-app-helper.php:157
199
+ msgid "Parent Event"
200
+ msgstr "Förälder"
201
+
202
+ #: ..\./app/helper/class-ai1ec-app-helper.php:158
203
+ msgid "Events"
204
+ msgstr "Händelser"
205
+
206
+ #: ..\./app/helper/class-ai1ec-app-helper.php:205
207
+ msgctxt "Event categories taxonomy"
208
+ msgid "Event Categories"
209
+ msgstr "Kategorier för händelser"
210
+
211
+ #: ..\./app/helper/class-ai1ec-app-helper.php:206
212
+ msgctxt "Event categories taxonomy (singular)"
213
+ msgid "Event Category"
214
+ msgstr "Kategori för händelser"
215
+
216
+ #: ..\./app/helper/class-ai1ec-app-helper.php:213
217
+ msgctxt "Event tags taxonomy"
218
+ msgid "Event Tags"
219
+ msgstr "Etiketter för händelser"
220
+
221
+ #: ..\./app/helper/class-ai1ec-app-helper.php:214
222
+ msgctxt "Event tags taxonomy (singular)"
223
+ msgid "Event Tag"
224
+ msgstr "Etikett för händelse"
225
+
226
+ #: ..\./app/helper/class-ai1ec-app-helper.php:281
227
+ msgid "Show All "
228
+ msgstr "Visa alla "
229
+
230
+ #: ..\./app/helper/class-ai1ec-app-helper.php:313
231
+ #, php-format
232
+ msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
233
+ msgstr "Alla händelser <span class=\"update-plugins count-%d\" title=\"%d väntande händelser\"><span class=\"update-count\">%d</span></span>"
234
+
235
+ #: ..\./app/helper/class-ai1ec-app-helper.php:319
236
+ msgid "All Events"
237
+ msgstr "Alla händelser"
238
+
239
+ #: ..\./app/helper/class-ai1ec-app-helper.php:395
240
+ msgid "Event Details"
241
+ msgstr "Detaljer för händelse"
242
+
243
+ #: ..\./app/helper/class-ai1ec-app-helper.php:412
244
+ msgid "Post Date"
245
+ msgstr "Datum för inlägg"
246
+
247
+ #: ..\./app/helper/class-ai1ec-app-helper.php:413
248
+ msgid "Event date/time"
249
+ msgstr "Händelsens datum/tid"
250
+
251
+ #: ..\./app/helper/class-ai1ec-app-helper.php:630
252
+ #, php-format
253
+ 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"
254
+ 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"
255
+
256
+ #: ..\./app/helper/class-ai1ec-app-helper.php:632
257
+ msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
258
+ 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>."
259
+
260
+ #: ..\./app/helper/class-ai1ec-app-helper.php:634
261
+ msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
262
+ 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>."
263
+
264
+ #: ..\./app/helper/class-ai1ec-app-helper.php:638
265
+ #, php-format
266
+ msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
267
+ 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>"
268
+
269
+ #: ..\./app/helper/class-ai1ec-app-helper.php:644
270
+ msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
271
+ 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."
272
+
273
+ #: ..\./app/helper/class-ai1ec-calendar-helper.php:601
274
+ msgid "« Previous Events"
275
+ msgstr "« Tidigare händelser"
276
+
277
+ #: ..\./app/helper/class-ai1ec-calendar-helper.php:608
278
+ msgid "Next Events »"
279
+ msgstr "Senare händelser »"
280
+
281
+ #: ..\./app/helper/class-ai1ec-events-helper.php:313
282
+ msgid "No repeat"
283
+ msgstr "Inte återkommande"
284
+
285
+ #: ..\./app/helper/class-ai1ec-events-helper.php:314
286
+ msgid "Daily"
287
+ msgstr "Dagligen"
288
+
289
+ #: ..\./app/helper/class-ai1ec-events-helper.php:315
290
+ msgid "Mondays"
291
+ msgstr "Måndagar"
292
+
293
+ #: ..\./app/helper/class-ai1ec-events-helper.php:316
294
+ msgid "Tuesdays"
295
+ msgstr "Tisdagar"
296
+
297
+ #: ..\./app/helper/class-ai1ec-events-helper.php:317
298
+ msgid "Wednesdays"
299
+ msgstr "Onsdagar"
300
+
301
+ #: ..\./app/helper/class-ai1ec-events-helper.php:318
302
+ msgid "Thursdays"
303
+ msgstr "Torsdagar"
304
+
305
+ #: ..\./app/helper/class-ai1ec-events-helper.php:319
306
+ msgid "Fridays"
307
+ msgstr "Fredagar"
308
+
309
+ #: ..\./app/helper/class-ai1ec-events-helper.php:320
310
+ msgid "Saturdays"
311
+ msgstr "Lördagar"
312
+
313
+ #: ..\./app/helper/class-ai1ec-events-helper.php:321
314
+ msgid "Sundays"
315
+ msgstr "Söndagar"
316
+
317
+ #: ..\./app/helper/class-ai1ec-events-helper.php:322
318
+ msgid "Tuesdays & Thursdays"
319
+ msgstr "Tisdagar & torsdagar"
320
+
321
+ #: ..\./app/helper/class-ai1ec-events-helper.php:323
322
+ msgid "Mondays, Wednesdays & Fridays"
323
+ msgstr "Måndagar, onsdagar & fredagar"
324
+
325
+ #: ..\./app/helper/class-ai1ec-events-helper.php:324
326
+ msgid "Weekdays"
327
+ msgstr "Veckodagar"
328
+
329
+ #: ..\./app/helper/class-ai1ec-events-helper.php:325
330
+ msgid "Weekends"
331
+ msgstr "Lördagar & söndagar"
332
+
333
+ #: ..\./app/helper/class-ai1ec-events-helper.php:326
334
+ msgid "Weekly"
335
+ msgstr "Varje vecka"
336
+
337
+ #: ..\./app/helper/class-ai1ec-events-helper.php:327
338
+ msgid "Monthly"
339
+ msgstr "Varje månad"
340
+
341
+ #: ..\./app/helper/class-ai1ec-events-helper.php:328
342
+ msgid "Yearly"
343
+ msgstr "Varje år"
344
+
345
+ #: ..\./app/helper/class-ai1ec-events-helper.php:443
346
+ msgid "times"
347
+ msgstr "gånger"
348
+
349
+ #: ..\./app/helper/class-ai1ec-events-helper.php:967
350
+ msgid "Never"
351
+ msgstr "Aldrig"
352
+
353
+ #: ..\./app/helper/class-ai1ec-events-helper.php:968
354
+ msgid "After"
355
+ msgstr "Efter"
356
+
357
+ #: ..\./app/helper/class-ai1ec-events-helper.php:969
358
+ msgid "On date"
359
+ msgstr "Den"
360
+
361
+ #: ..\./app/helper/class-ai1ec-settings-helper.php:85
362
+ msgid "- Auto-Create New Page -"
363
+ msgstr "- Skapa ny sida automatiskt -"
364
+
365
+ #: ..\./app/helper/class-ai1ec-settings-helper.php:106
366
+ #, php-format
367
+ msgid "View \"%s\" »"
368
+ msgstr "Visa \"%s\" »"
369
+
370
+ #: ..\./app/helper/class-ai1ec-settings-helper.php:148
371
+ msgid "Month"
372
+ msgstr "Månad"
373
+
374
+ #: ..\./app/helper/class-ai1ec-settings-helper.php:199
375
+ msgid "Hourly"
376
+ msgstr "Varje timma"
377
+
378
+ #: ..\./app/helper/class-ai1ec-settings-helper.php:202
379
+ msgid "Twice Daily"
380
+ msgstr "Två gånger dagligen"
381
+
382
+ #: ..\./app/helper/class-ai1ec-settings-helper.php:289
383
+ msgid "Calendar"
384
+ msgstr "Kalender"
385
+
386
+ #: ..\./app/model/class-ai1ec-event.php:445
387
+ msgid " (all-day)"
388
+ msgstr " (hela dagen)"
389
+
390
+ #: ..\./app/model/class-ai1ec-event.php:585
391
+ #, php-format
392
+ msgid "ending after <strong>%d</strong> time"
393
+ msgid_plural "ending after <strong>%d</strong> times"
394
+ msgstr[0] "slutar efter <strong>%d</strong> gång"
395
+ msgstr[1] "slutar efter <strong>%d</strong> gånger"
396
+
397
+ #: ..\./app/model/class-ai1ec-event.php:595
398
+ #, php-format
399
+ msgid "until <strong>%s</strong>"
400
+ msgstr "till <strong>%s</strong>"
401
+
402
+ #: ..\./app/model/class-ai1ec-event.php:604
403
+ msgid " or "
404
+ msgstr " eller "
405
+
406
+ #: ..\./app/view/admin_notices.php:2
407
+ msgid "All-in-One Event Calendar Notice:"
408
+ msgstr "Notis från All-in-One Event Calendar:"
409
+
410
+ #: ..\./app/view/agenda-widget-form.php:2
411
+ msgid "Title:"
412
+ msgstr "Titel:"
413
+
414
+ #: ..\./app/view/agenda-widget-form.php:6
415
+ msgid "Number of events to show:"
416
+ msgstr "Antal händelser som ska visas:"
417
+
418
+ #: ..\./app/view/agenda-widget-form.php:11
419
+ msgid "Show <strong>View Calendar</strong> button"
420
+ msgstr "Visa knappen <strong>Visa kalender</strong>"
421
+
422
+ #: ..\./app/view/agenda-widget-form.php:14
423
+ msgid "Show <strong>Subscribe</strong> buttons"
424
+ msgstr "Visa knappar för att <strong>prenumerera</strong>"
425
+
426
+ #: ..\./app/view/agenda-widget-form.php:17
427
+ msgid "Hide this widget on calendar page"
428
+ msgstr "Dölj denna widget på kalendersidan"
429
+
430
+ #: ..\./app/view/agenda-widget.php:11
431
+ msgid "There are no upcoming events."
432
+ msgstr "Det finns inga kommande händelser."
433
+
434
+ #: ..\./app/view/agenda-widget.php:59
435
+ msgid "View Calendar »"
436
+ msgstr "Visa kalender »"
437
+
438
+ #: ..\./app/view/agenda-widget.php:67
439
+ msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
440
+ msgstr "Prenumerera på denna kalender i ditt kalenderprogram (iCal, Outlook, m.fl.)"
441
+
442
+ #: ..\./app/view/agenda-widget.php:68
443
+ msgid "✔ Subscribe"
444
+ msgstr "✔ Prenumerera"
445
+
446
+ #: ..\./app/view/agenda-widget.php:72
447
+ msgid "Subscribe to this calendar in your Google Calendar"
448
+ msgstr "Prenumerera på denna kalender i din Google-kalender"
449
+
450
+ #: ..\./app/view/agenda-widget.php:74
451
+ msgid "Add to Google"
452
+ msgstr "Lägg till i Google"
453
+
454
+ #: ..\./app/view/agenda.php:5
455
+ msgid "+ Expand All"
456
+ msgstr "+ Visa alla"
457
+
458
+ #: ..\./app/view/agenda.php:8
459
+ msgid "− Collapse All"
460
+ msgstr "− Dölj alla"
461
+
462
+ #: ..\./app/view/agenda.php:12
463
+ msgid "Today"
464
+ msgstr "Idag"
465
+
466
+ #: ..\./app/view/agenda.php:28
467
+ msgid "There are no upcoming events to display at this time."
468
+ msgstr "Det finns inga kommande händelser."
469
+
470
+ #: ..\./app/view/agenda.php:57
471
+ #: ..\./app/view/agenda.php:107
472
+ msgid "(all-day)"
473
+ msgstr "(heldag)"
474
+
475
+ #: ..\./app/view/agenda.php:75
476
+ msgid "Read more »"
477
+ msgstr "Läs mer »"
478
+
479
+ #: ..\./app/view/agenda.php:79
480
+ msgid "Categories:"
481
+ msgstr "Kategorier:"
482
+
483
+ #: ..\./app/view/agenda.php:85
484
+ msgid "Tags:"
485
+ msgstr "Etiketter:"
486
+
487
+ #: ..\./app/view/box_eventbrite.php:1
488
+ msgid "Eventbrite Ticketing"
489
+ msgstr "Biljetter från Eventbrite"
490
+
491
+ #: ..\./app/view/box_eventbrite.php:7
492
+ msgid "Register this event with Eventbrite.com?"
493
+ msgstr "Registrera denna händelse hos Eventbrite.com?"
494
+
495
+ #: ..\./app/view/box_eventbrite.php:12
496
+ msgid "Yes"
497
+ msgstr "Ja"
498
+
499
+ #: ..\./app/view/box_eventbrite.php:14
500
+ msgid "No"
501
+ msgstr "Nej"
502
+
503
+ #: ..\./app/view/box_eventbrite.php:22
504
+ msgid "Set up your first ticket"
505
+ msgstr "Skapa din första biljett"
506
+
507
+ #: ..\./app/view/box_eventbrite.php:24
508
+ msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
509
+ msgstr "För att skapa flera olika biljetter för en händelse skickar du detta formulär och följer sedan länken till Eventbrite."
510
+
511
+ #: ..\./app/view/box_eventbrite.php:32
512
+ msgid "Name"
513
+ msgstr "Namn"
514
+
515
+ #: ..\./app/view/box_eventbrite.php:42
516
+ msgid "Description"
517
+ msgstr "Beskrivning"
518
+
519
+ #: ..\./app/view/box_eventbrite.php:53
520
+ msgid "Type"
521
+ msgstr "Typ"
522
+
523
+ #: ..\./app/view/box_eventbrite.php:58
524
+ msgid "Set Price"
525
+ msgstr "Ange pris"
526
+
527
+ #: ..\./app/view/box_eventbrite.php:60
528
+ msgid "Donation Based"
529
+ msgstr "Baserat på bidrag"
530
+
531
+ #: ..\./app/view/box_eventbrite.php:68
532
+ msgid "The price for this event's first ticket will be taken from the Cost field above."
533
+ msgstr "Priset för denna händelses första biljett kommer att tas från kostnadsfältet ovan."
534
+
535
+ #: ..\./app/view/box_eventbrite.php:75
536
+ msgid "Quantity"
537
+ msgstr "Antal"
538
+
539
+ #: ..\./app/view/box_eventbrite.php:85
540
+ msgid "Include Fee in Price"
541
+ msgstr "Inkludera bokningsavgift i priset"
542
+
543
+ #: ..\./app/view/box_eventbrite.php:90
544
+ msgid "Add Service Fee on top of price"
545
+ msgstr "Lägg till serviceavgift på priset"
546
+
547
+ #: ..\./app/view/box_eventbrite.php:92
548
+ msgid "Include Service fee in price"
549
+ msgstr "Inkludera serviceavgift i priset"
550
+
551
+ #: ..\./app/view/box_eventbrite.php:98
552
+ msgid "Payment Options"
553
+ msgstr "Betalningsalternativ"
554
+
555
+ #: ..\./app/view/box_eventbrite.php:103
556
+ msgid "Paypal"
557
+ msgstr "Paypal"
558
+
559
+ #: ..\./app/view/box_eventbrite.php:105
560
+ msgid "Google Checkout"
561
+ msgstr "Google Checkout"
562
+
563
+ #: ..\./app/view/box_eventbrite.php:107
564
+ msgid "Check"
565
+ msgstr "Check"
566
+
567
+ #: ..\./app/view/box_eventbrite.php:109
568
+ msgid "Cash"
569
+ msgstr "Kontant"
570
+
571
+ #: ..\./app/view/box_eventbrite.php:111
572
+ msgid "Send an Invoice"
573
+ msgstr "Skicka en faktura"
574
+
575
+ #: ..\./app/view/box_event_contact.php:1
576
+ msgid "Organizer contact info"
577
+ msgstr "Arrangör"
578
+
579
+ #: ..\./app/view/box_event_contact.php:7
580
+ msgid "Contact name:"
581
+ msgstr "Kontaktperson:"
582
+
583
+ #: ..\./app/view/box_event_contact.php:17
584
+ msgid "Phone:"
585
+ msgstr "Telefonnummer:"
586
+
587
+ #: ..\./app/view/box_event_contact.php:27
588
+ msgid "E-mail:"
589
+ msgstr "E-postadress:"
590
+
591
+ #: ..\./app/view/box_event_cost.php:1
592
+ msgid "Event cost"
593
+ msgstr "Kostnad för händelsen"
594
+
595
+ #: ..\./app/view/box_event_cost.php:7
596
+ msgid "Cost"
597
+ msgstr "Kostnad"
598
+
599
+ #: ..\./app/view/box_event_location.php:1
600
+ msgid "Event location details"
601
+ msgstr "Information om händelsens plats"
602
+
603
+ #: ..\./app/view/box_event_location.php:7
604
+ msgid "Venue name:"
605
+ msgstr "Platsens namn:"
606
+
607
+ #: ..\./app/view/box_event_location.php:17
608
+ msgid "Address:"
609
+ msgstr "Adress:"
610
+
611
+ #: ..\./app/view/box_event_location.php:27
612
+ msgid "Show Google Map:"
613
+ msgstr "Visa på Google-karta:"
614
+
615
+ #: ..\./app/view/box_general_settings.php:1
616
+ msgid "Viewing Events"
617
+ msgstr "Visning av händelser"
618
+
619
+ #: ..\./app/view/box_general_settings.php:3
620
+ msgid "Calendar page:"
621
+ msgstr "Kalendersida:"
622
+
623
+ #: ..\./app/view/box_general_settings.php:7
624
+ msgid "Default calendar view:"
625
+ msgstr "Standardvy:"
626
+
627
+ #: ..\./app/view/box_general_settings.php:12
628
+ msgid "Timezone:"
629
+ msgstr "Tidszon:"
630
+
631
+ #: ..\./app/view/box_general_settings.php:17
632
+ msgid "Contain calendar in this DOM element:"
633
+ msgstr "Visa kalendern i detta DOM-element:"
634
+
635
+ #: ..\./app/view/box_general_settings.php:19
636
+ 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."
637
+ msgstr "Valfritt. Ange en <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> som resulterar i ett ensamt DOM-element. Ersätter eventuell annat innehåll i DOM-elementet. Om fältet lämnas tomt kommer kalendern att visas i DOM-elementet för sidans innehåll."
638
+
639
+ #: ..\./app/view/box_general_settings.php:21
640
+ msgid "Week starts on"
641
+ msgstr "Veckor startar på en"
642
+
643
+ #: ..\./app/view/box_general_settings.php:25
644
+ msgid "Agenda pages show at most"
645
+ msgstr "En agendasida visar som mest"
646
+
647
+ #: ..\./app/view/box_general_settings.php:26
648
+ msgid "events"
649
+ msgstr "händelser"
650
+
651
+ #: ..\./app/view/box_general_settings.php:31
652
+ msgid "<strong>Exclude</strong> events from search results"
653
+ msgstr "<strong>Utelämna</strong> händelser från sökresultaten"
654
+
655
+ #: ..\./app/view/box_general_settings.php:37
656
+ msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
657
+ msgstr "Visa knappen <strong>Lägg till en händelse</strong> ovanför kalendern för användare som har tillräcklig behörighet"
658
+
659
+ #: ..\./app/view/box_general_settings.php:43
660
+ msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
661
+ msgstr "Dölj knapparna <strong>Prenumerera</strong>/<strong>Lägg till i kalender</strong> i kalendernvyn och vyn för en enskild händelse"
662
+
663
+ #: ..\./app/view/box_general_settings.php:49
664
+ msgid "Hide <strong>Google Maps</strong> until clicked"
665
+ msgstr "Dölj <strong>Google-klarta</strong> tills man klickar på den"
666
+
667
+ #: ..\./app/view/box_general_settings.php:55
668
+ msgid "Include <strong>event categories</strong> in post category lists"
669
+ msgstr "Ta med <strong>kategorier för händelser</strong> i listor över kategorier för inlägg"
670
+
671
+ #: ..\./app/view/box_general_settings.php:59
672
+ msgid "Adding/Editing Events"
673
+ msgstr "Lägga till/redigera händelser"
674
+
675
+ #: ..\./app/view/box_general_settings.php:63
676
+ msgid "Input dates in <strong>US format</strong>"
677
+ msgstr "Mata in datum i <strong>US-format</strong> (månad/dag/år)"
678
+
679
+ #: ..\./app/view/box_general_settings.php:69
680
+ msgid "Use <strong>24h time</strong> in time pickers"
681
+ msgstr "Använd <strong>24h-tid</strong> i tidväljare"
682
+
683
+ #: ..\./app/view/box_general_settings.php:75
684
+ msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
685
+ msgstr "Visa knappen <strong>Publicera</strong> längst ner på formuläret när en händelse skapas/redigeras"
686
+
687
+ #: ..\./app/view/box_ics_import_settings.php:2
688
+ msgid "Auto-refresh"
689
+ msgstr "Uppdatera automatiskt"
690
+
691
+ #: ..\./app/view/box_ics_import_settings.php:8
692
+ #: ..\./app/view/feed_row.php:3
693
+ msgid "iCalendar/.ics Feed URL:"
694
+ msgstr "URL till iCalendar/.ics-ström:"
695
+
696
+ #: ..\./app/view/box_ics_import_settings.php:12
697
+ msgid "Event category"
698
+ msgstr "Kategori för händelser"
699
+
700
+ #: ..\./app/view/box_ics_import_settings.php:18
701
+ #: ..\./app/view/feed_row.php:15
702
+ msgid "Tag with"
703
+ msgstr "Sätt etiketten"
704
+
705
+ #: ..\./app/view/box_ics_import_settings.php:22
706
+ msgid "+ Add new subscription"
707
+ msgstr "+ Lägg till ny prenumeration"
708
+
709
+ #: ..\./app/view/box_the_seed_studio.php:3
710
+ msgid "The Seed Studio"
711
+ msgstr "The Seed Studio"
712
+
713
+ #: ..\./app/view/box_the_seed_studio.php:5
714
+ msgid "The Seed Studio provides web development and support services for clients and web developers."
715
+ msgstr "The Seed Studio tillhandahåller webbutveckling och supporttjänster för företag och webbutvecklare."
716
+
717
+ #: ..\./app/view/box_the_seed_studio.php:11
718
+ msgid "Follow @the_seed_studio"
719
+ msgstr "Följ @the_seed_studio"
720
+
721
+ #: ..\./app/view/box_the_seed_studio.php:16
722
+ msgid "Get Support<span> from one of our experienced pros</span>"
723
+ msgstr "Få support<span> från ett av våra erfarna proffs</span>"
724
+
725
+ #: ..\./app/view/box_the_seed_studio.php:18
726
+ msgid "Support"
727
+ msgstr "Support"
728
+
729
+ #: ..\./app/view/box_the_seed_studio.php:20
730
+ msgid "View plugin documentation"
731
+ msgstr "Visa dokumentation för denna plugin"
732
+
733
+ #: ..\./app/view/box_the_seed_studio.php:23
734
+ 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!)."
735
+ msgstr "Du kan också anlita The Seed för support med avtal eller per timme för denna plugin, för din webbsida eller för något av dina marknadsföringsbehov på Internet (vi kan verkligen hjälpa dig!)."
736
+
737
+ #: ..\./app/view/box_the_seed_studio.php:26
738
+ msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
739
+ msgstr "Till användare av denna plugin: The Seed ger i första hand support till våra kunder. Besök forumet för denna plugin för att få gratis support från andra användare."
740
+
741
+ #: ..\./app/view/box_the_seed_studio.php:29
742
+ msgid "Vote and Share"
743
+ msgstr "Rösta och dela"
744
+
745
+ #: ..\./app/view/box_the_seed_studio.php:32
746
+ msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
747
+ msgstr "Denna plugin är licensierad enlig GPL3 och är tillgänglig utan kostnad. Det enda vi begär är att du:"
748
+
749
+ #: ..\./app/view/box_the_seed_studio.php:34
750
+ 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!)"
751
+ msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Ger den ett femstjärnigt omdömme på wordpress.org</a> (om du tycker att den är värd det!)"
752
+
753
+ #: ..\./app/view/box_the_seed_studio.php:35
754
+ msgid "Link to the plugin page on our website"
755
+ msgstr "Länkar till sidan för denna plugin från din webbsida"
756
+
757
+ #: ..\./app/view/box_the_seed_studio.php:36
758
+ msgid "Become a Fan on Facebook"
759
+ msgstr "Blir ett fan på Facebook"
760
+
761
+ #: ..\./app/view/box_the_seed_studio.php:37
762
+ msgid "Follow us on Twitter"
763
+ msgstr "Följer oss på Twitter"
764
+
765
+ #: ..\./app/view/box_the_seed_studio.php:41
766
+ msgid "Donate"
767
+ msgstr "Ge ett bidrag"
768
+
769
+ #: ..\./app/view/box_the_seed_studio.php:43
770
+ msgid "If you would like to help support development of this plugin, then by all means..."
771
+ msgstr "Du kan göra följande för att stödja utvecklingen av denna plugin:"
772
+
773
+ #: ..\./app/view/box_time_and_date.php:2
774
+ msgid "Event date and time"
775
+ msgstr "Händelsens datum och tid"
776
+
777
+ #: ..\./app/view/box_time_and_date.php:8
778
+ msgid "All-day event"
779
+ msgstr "Heldag"
780
+
781
+ #: ..\./app/view/box_time_and_date.php:18
782
+ msgid "Start date / time"
783
+ msgstr "Start"
784
+
785
+ #: ..\./app/view/box_time_and_date.php:31
786
+ msgid "End date / time"
787
+ msgstr "Slut"
788
+
789
+ #: ..\./app/view/box_time_and_date.php:44
790
+ msgid "Repeat"
791
+ msgstr "Återkommer"
792
+
793
+ #: ..\./app/view/box_time_and_date.php:54
794
+ msgid "End"
795
+ msgstr "Upphör"
796
+
797
+ #: ..\./app/view/box_time_and_date.php:64
798
+ msgid "Ending after"
799
+ msgstr "Upphör efter"
800
+
801
+ #: ..\./app/view/calendar.php:27
802
+ msgid "+ Post Your Event"
803
+ msgstr "+ Posta ditt inlägg"
804
+
805
+ #: ..\./app/view/calendar.php:36
806
+ msgid "Clear Filters"
807
+ msgstr "Rensa filter"
808
+
809
+ #: ..\./app/view/calendar.php:36
810
+ msgid "✘"
811
+ msgstr "✘"
812
+
813
+ #: ..\./app/view/calendar.php:37
814
+ msgid "Filter:"
815
+ msgstr "Filtrera:"
816
+
817
+ #: ..\./app/view/calendar.php:42
818
+ msgid "Categories ▾"
819
+ msgstr "Kategori ▾"
820
+
821
+ #: ..\./app/view/calendar.php:64
822
+ msgid "Tags ▾"
823
+ msgstr "Etikett ▾"
824
+
825
+ #: ..\./app/view/calendar.php:103
826
+ msgid "to this filtered calendar"
827
+ msgstr "på denna filtrerade kalender"
828
+
829
+ #: ..\./app/view/calendar.php:109
830
+ msgid "Subscribe in Google Calendar"
831
+ msgstr "Prenumerera i Google-kalender"
832
+
833
+ #: ..\./app/view/class-ai1ec-agenda-widget.php:18
834
+ #: ..\./app/view/class-ai1ec-agenda-widget.php:39
835
+ msgid "Upcoming Events"
836
+ msgstr "Kommande händelser"
837
+
838
+ #: ..\./app/view/class-ai1ec-agenda-widget.php:20
839
+ msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
840
+ msgstr "All-in-One Event Calendar: Listar kommande händelser i en agenda-vy"
841
+
842
+ #: ..\./app/view/event-excerpt.php:2
843
+ #: ..\./app/view/event-multi.php:4
844
+ #: ..\./app/view/event-single.php:5
845
+ msgid "When:"
846
+ msgstr "När:"
847
+
848
+ #: ..\./app/view/event-excerpt.php:4
849
+ #: ..\./app/view/event-multi.php:20
850
+ #: ..\./app/view/event-single.php:20
851
+ msgid "Where:"
852
+ msgstr "Var:"
853
+
854
+ #: ..\./app/view/event-map.php:2
855
+ msgid "Click to view map"
856
+ msgstr "Klicka för att visa karta"
857
+
858
+ #: ..\./app/view/event-map.php:9
859
+ msgid "View Full-Size Map »"
860
+ msgstr "Stor karta »"
861
+
862
+ #: ..\./app/view/event-multi.php:7
863
+ msgid "View in Calendar »"
864
+ msgstr "Visa i kalender »"
865
+
866
+ #: ..\./app/view/event-multi.php:14
867
+ #: ..\./app/view/event-single.php:15
868
+ msgid "Repeats:"
869
+ msgstr "Återkommer:"
870
+
871
+ #: ..\./app/view/event-multi.php:24
872
+ msgid "View Map »"
873
+ msgstr "Visa karta »"
874
+
875
+ #: ..\./app/view/event-multi.php:33
876
+ #: ..\./app/view/event-single.php:40
877
+ msgid "Cost:"
878
+ msgstr "Kostnad:"
879
+
880
+ #: ..\./app/view/event-multi.php:39
881
+ #: ..\./app/view/event-single.php:46
882
+ msgid "Contact:"
883
+ msgstr "Kontakt:"
884
+
885
+ #: ..\./app/view/event-single-footer.php:4
886
+ #, php-format
887
+ msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
888
+ msgstr "Detta inlägg har kopierats från en annan webbsidas <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">kalender-flöde</a>."
889
+
890
+ #: ..\./app/view/event-single-footer.php:8
891
+ msgid "View original post »"
892
+ msgstr "Visa ursprungligt inlägg »"
893
+
894
+ #: ..\./app/view/event-single.php:8
895
+ msgid "Back to Calendar »"
896
+ msgstr "Tillbaka till kalendern »"
897
+
898
+ #: ..\./app/view/event-single.php:27
899
+ msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
900
+ msgstr "Lägg till denna händelse till ditt kalenderprogram (iCal, Outlook, m.fl.)"
901
+
902
+ #: ..\./app/view/event-single.php:28
903
+ msgid "✔ Add to Calendar"
904
+ msgstr "✔ Lägg till i kalender"
905
+
906
+ #: ..\./app/view/event-single.php:31
907
+ msgid "Add this event to your Google Calendar"
908
+ msgstr "Lägg till denna händelse i din Google-kalender"
909
+
910
+ #: ..\./app/view/event-single.php:33
911
+ msgid "Add to Google Calendar"
912
+ msgstr "Lägg till i Google-kalender"
913
+
914
+ #: ..\./app/view/event_categories-color_picker.php:5
915
+ #: ..\./app/view/event_categories-color_picker.php:19
916
+ msgid "Category Color"
917
+ msgstr "Färg för kategori"
918
+
919
+ #: ..\./app/view/event_categories-color_picker.php:13
920
+ #: ..\./app/view/event_categories-color_picker.php:25
921
+ msgid "Events in this category will be identified by this color"
922
+ msgstr "Händelser i denna kategori får denna färg:"
923
+
924
+ #: ..\./app/view/feed_row.php:9
925
+ msgid "Event category:"
926
+ msgstr "Kategori för händelse:"
927
+
928
+ #: ..\./app/view/feed_row.php:19
929
+ msgid "× Delete"
930
+ msgstr "× Ta bort"
931
+
932
+ #: ..\./app/view/import.php:6
933
+ msgid "Successfully imported events:"
934
+ msgstr "Händelser som importerades korrekt:"
935
+
936
+ #: ..\./app/view/month.php:50
937
+ msgid "Summary:"
938
+ msgstr "Sammanfattning:"
939
+
940
+ #: ..\./app/view/month.php:53
941
+ msgid "click anywhere for details"
942
+ msgstr "klicka för detaljer"
943
+
944
+ #: ..\./app/view/settings.php:5
945
+ msgid "All-in-one Event Calendar"
946
+ msgstr "All-in-one Event Calendar"
947
+
948
+ #: ..\./app/view/settings.php:17
949
+ msgid "Update Settings"
950
+ msgstr "Uppdatera inställningar"
951
+
readme.txt CHANGED
@@ -4,13 +4,13 @@ Donate link: http://theseednetwork.com/software/all-in-one-event-calendar-wordpr
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.2.1
7
- Stable tag: 1.1.2
8
 
9
  An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
10
 
11
  == Description ==
12
 
13
- Welcome to the [All-in-One Event Calendar Plugin](http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/), from [The Seed Studio](http:/theseednetwork.com), a [web development](http://theseednetwork.com) company. The All-in-One Event Calendar is a new way to list your events in WordPress and easily share them with the rest of the world.
14
 
15
  Our new calendar system combines a clean visual design, solid architectural patterns and rigorous testing with a powerful set of features to create the most advanced calendar system available for WordPress and one of the most powerful website calendar systems in the world. Best of all: it’s completely free.
16
 
@@ -54,9 +54,19 @@ The All-in-One Event Calendar Plugin also has a few features that will prove use
54
 
55
  [Bug reports (only for registered users) »](http://trac.the-seed.ca/newticket)
56
 
57
- [Get Premium Support »](http://theseednetwork.com/get-supported) from [The Seed Studio »](http:/theseednetwork.com/)
58
 
59
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
60
  = Version 1.1.2 =
61
  * Fixed: Problem in repeat UI when selecting months before October [#136](http://trac.the-seed.ca/ticket/136)
62
  * Fixed: Append instance_id only to events permalink [#140](http://trac.the-seed.ca/ticket/140)
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.2.1
7
+ Stable tag: 1.1.3
8
 
9
  An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
10
 
11
  == Description ==
12
 
13
+ Welcome to the [All-in-One Event Calendar Plugin](http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/), from [The Seed Studio](http://theseednetwork.com), a [web development](http://theseednetwork.com) company. The All-in-One Event Calendar is a new way to list your events in WordPress and easily share them with the rest of the world.
14
 
15
  Our new calendar system combines a clean visual design, solid architectural patterns and rigorous testing with a powerful set of features to create the most advanced calendar system available for WordPress and one of the most powerful website calendar systems in the world. Best of all: it’s completely free.
16
 
54
 
55
  [Bug reports (only for registered users) »](http://trac.the-seed.ca/newticket)
56
 
57
+ [Get Premium Support »](http://theseednetwork.com/get-supported) from [The Seed Studio »](http://theseednetwork.com/)
58
 
59
  == Changelog ==
60
+ = Version 1.1.3 =
61
+ * Fixed: last date issue for recurring events "until" end date [#147](http://trac.the-seed.ca/ticket/147)
62
+ * Fixed an issue with settings page not saving changes.
63
+ * Fixed issues when subscribing to calendars.
64
+ * Export only published events [#95](http://trac.the-seed.ca/ticket/95)
65
+ * Added translation patch. Thank you josjo! [#150](http://trac.the-seed.ca/ticket/150)
66
+ * Add language and region awareness in functions for Google Map. Thank you josjo! [#102](http://trac.the-seed.ca/ticket/102)
67
+ * Small translation error in class-ai1ec-app-helper.php. Thank you josjo! [#94](http://trac.the-seed.ca/ticket/94)
68
+ * Added Dutch, Spanish, and Swedish translations. For up to date language files, visit: [http://trac.the-seed.ca/ticket/78](http://trac.the-seed.ca/ticket/78)
69
+
70
  = Version 1.1.2 =
71
  * Fixed: Problem in repeat UI when selecting months before October [#136](http://trac.the-seed.ca/ticket/136)
72
  * Fixed: Append instance_id only to events permalink [#140](http://trac.the-seed.ca/ticket/140)