Modern Events Calendar Lite - Version 6.4.2

Version Description

3 March 2022 = - Improved: The XML export - Improved: The skin load in full calendar shortcode - Improved: The Stripe gateway by adding some booking fields into the meta fields (pro) - Improved: The search functionality on shortcodes - Improved: The XML import to store event fields too - Improved: Some options on the lite version - Improved: The speaker feature in Frontend Event Submission - Fixed: An issue on event and booking filter in WP backend (pro) - Fixed: An issue on the next event module - Fixed: Some issues in Frontend Event Submission - Fixed: An issue in year and month selection on month navigation - Fixed: A potential memory issue - Fixed: An issue on independent tags

Download this release

Release Info

Developer webnus
Plugin Icon 128x128 Modern Events Calendar Lite
Version 6.4.2
Comparing to
See all releases

Code changes from version 6.4.1 to 6.4.2

Files changed (49) hide show
  1. app/core/src/Forms/FormFields.php +1 -1
  2. app/features/events.php +6 -3
  3. app/features/fes/form.php +8 -4
  4. app/features/ix.php +41 -0
  5. app/features/locations.php +2 -0
  6. app/features/mec/booking.php +1 -0
  7. app/features/mec/dashboard.php +0 -3
  8. app/features/occurrences.php +3 -0
  9. app/features/popup/event.php +6 -1
  10. app/features/speakers.php +84 -16
  11. app/features/tag.php +1 -1
  12. app/libraries/factory.php +0 -2
  13. app/libraries/hourlyschedule.php +3 -3
  14. app/libraries/main.php +1 -1
  15. app/libraries/render.php +2 -1
  16. app/libraries/skins.php +27 -4
  17. app/modules/next-event/details.php +1 -1
  18. app/skins/monthly_view/calendar.php +5 -5
  19. app/skins/monthly_view/calendar_clean.php +5 -5
  20. app/skins/monthly_view/calendar_novel.php +3 -3
  21. app/skins/monthly_view/calendar_simple.php +3 -3
  22. assets/js/frontend.js +73 -54
  23. changelog.txt +14 -2
  24. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  25. languages/modern-events-calendar-lite-cs_CZ.po +361 -358
  26. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  27. languages/modern-events-calendar-lite-de_DE.po +351 -356
  28. languages/modern-events-calendar-lite-en_US.mo +0 -0
  29. languages/modern-events-calendar-lite-en_US.po +339 -354
  30. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  31. languages/modern-events-calendar-lite-es_ES.po +346 -358
  32. languages/modern-events-calendar-lite-fi_FI.mo +0 -0
  33. languages/modern-events-calendar-lite-fi_FI.po +339 -354
  34. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  35. languages/modern-events-calendar-lite-fr_FR.po +346 -358
  36. languages/modern-events-calendar-lite-hu_HU.mo +0 -0
  37. languages/modern-events-calendar-lite-hu_HU.po +341 -356
  38. languages/modern-events-calendar-lite-it_IT.mo +0 -0
  39. languages/modern-events-calendar-lite-it_IT.po +346 -358
  40. languages/modern-events-calendar-lite-nb_NO.mo +0 -0
  41. languages/modern-events-calendar-lite-nb_NO.po +351 -358
  42. languages/modern-events-calendar-lite-nl_NL.mo +0 -0
  43. languages/modern-events-calendar-lite-nl_NL.po +346 -358
  44. languages/modern-events-calendar-lite-pl_PL.mo +0 -0
  45. languages/modern-events-calendar-lite-pl_PL.po +346 -358
  46. languages/modern-events-calendar-lite-pt_BR.mo +0 -0
  47. languages/modern-events-calendar-lite-pt_BR.po +346 -358
  48. languages/modern-events-calendar-lite-ru_RU.mo +0 -0
  49. languages/modern-events-calendar-lite-ru_RU.po +149 -139
app/core/src/Forms/FormFields.php CHANGED
@@ -554,7 +554,7 @@ class FormFields extends Singleton {
554
  <span class="mec_' . $prefix . '_field_remove mec_field_remove">' . __( 'Remove', 'modern-events-calendar-lite' ) . '</span>
555
  <div>
556
  <input type="hidden" name="mec[' . $prefix . '_fields][' . $key . '][type]" value="agreement" />
557
- <input type="text" name="mec[' . $prefix . '_fields][' . $key . '][label]" placeholder="' . esc_attr__( 'Insert a label for this field', 'modern-events-calendar-lite' ) . '" value="' . ( isset( $values['label'] ) ? stripslashes( $values['label'] ) : 'I agree with %s' ) . '" /><p class="description">' . __( 'Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite' ) . '</p>
558
  <div>
559
  <label for="mec_' . $prefix . '_fields_' . $key . '_page">' . __( 'Agreement Page', 'modern-events-calendar-lite' ) . '</label>
560
  <select id="mec_' . $prefix . '_fields_' . $key . '_page" name="mec[' . $prefix . '_fields][' . $key . '][page]">';
554
  <span class="mec_' . $prefix . '_field_remove mec_field_remove">' . __( 'Remove', 'modern-events-calendar-lite' ) . '</span>
555
  <div>
556
  <input type="hidden" name="mec[' . $prefix . '_fields][' . $key . '][type]" value="agreement" />
557
+ <input type="text" name="mec[' . $prefix . '_fields][' . $key . '][label]" placeholder="' . esc_attr__( 'Insert a label for this field', 'modern-events-calendar-lite' ) . '" value="' . ( isset( $values['label'] ) ? stripslashes( $values['label'] ) : esc_attr__('I agree with %s', 'modern-events-calendar-lite') ) . '" /><p class="description">' . __( 'Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite' ) . '</p>
558
  <div>
559
  <label for="mec_' . $prefix . '_fields_' . $key . '_page">' . __( 'Agreement Page', 'modern-events-calendar-lite' ) . '</label>
560
  <select id="mec_' . $prefix . '_fields_' . $key . '_page" name="mec[' . $prefix . '_fields][' . $key . '][page]">';
app/features/events.php CHANGED
@@ -4075,7 +4075,9 @@ class MEC_feature_events extends MEC_base
4075
 
4076
  public function do_bulk_actions()
4077
  {
4078
- $action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : NULL;
 
 
4079
  if(!$action) return false;
4080
 
4081
  $post_type = isset($_GET['post_type']) ? sanitize_text_field($_GET['post_type']) : 'post';
@@ -4723,6 +4725,8 @@ class MEC_feature_events extends MEC_base
4723
  $book = $this->getBook();
4724
 
4725
  $html = '';
 
 
4726
  if(count($bookings))
4727
  {
4728
  $html .= '<div class="w-clearfix">
@@ -4742,7 +4746,6 @@ class MEC_feature_events extends MEC_base
4742
 
4743
  /** @var WP_Post $booking */
4744
 
4745
- $total_attendees = 0;
4746
  $index = $key = 0;
4747
  foreach($bookings as $booking)
4748
  {
@@ -4797,7 +4800,7 @@ class MEC_feature_events extends MEC_base
4797
  $html .= '<p>'.__("No Bookings Found!", 'modern-events-calendar-lite').'</p>';
4798
  }
4799
 
4800
- $html = apply_filters( 'mec_event_bookings_report', $html, $bookings, $id, $backend, $occurrence, $total_attendees );
4801
 
4802
  echo json_encode(array('html' => $html));
4803
  exit;
4075
 
4076
  public function do_bulk_actions()
4077
  {
4078
+ $wp_list_table = _get_list_table('WP_Posts_List_Table');
4079
+
4080
+ $action = $wp_list_table->current_action();
4081
  if(!$action) return false;
4082
 
4083
  $post_type = isset($_GET['post_type']) ? sanitize_text_field($_GET['post_type']) : 'post';
4725
  $book = $this->getBook();
4726
 
4727
  $html = '';
4728
+ $total_attendees = 0;
4729
+
4730
  if(count($bookings))
4731
  {
4732
  $html .= '<div class="w-clearfix">
4746
 
4747
  /** @var WP_Post $booking */
4748
 
 
4749
  $index = $key = 0;
4750
  foreach($bookings as $booking)
4751
  {
4800
  $html .= '<p>'.__("No Bookings Found!", 'modern-events-calendar-lite').'</p>';
4801
  }
4802
 
4803
+ $html = apply_filters('mec_event_bookings_report', $html, $bookings, $id, $backend, $occurrence, $total_attendees);
4804
 
4805
  echo json_encode(array('html' => $html));
4806
  exit;
app/features/fes/form.php CHANGED
@@ -11,11 +11,13 @@ jQuery(document).ready(function()
11
  {
12
  event.preventDefault();
13
 
 
 
14
  // Hide the message
15
  jQuery("#mec_fes_form_message").removeClass("mec-success").removeClass("mec-success").html("").hide();
16
 
17
  // Add loading Class to the form
18
- jQuery("#mec_fes_form").addClass("mec-fes-loading");
19
  jQuery(".mec-fes-form-cntt").hide();
20
  jQuery(".mec-fes-form-sdbr").hide();
21
  jQuery(".mec-fes-submit-wide").hide();
@@ -28,7 +30,7 @@ jQuery(document).ready(function()
28
  // Abort previous request
29
  if(mec_fes_form_ajax) mec_fes_form_ajax.abort();
30
 
31
- var data = jQuery("#mec_fes_form").serialize();
32
  mec_fes_form_ajax = jQuery.ajax(
33
  {
34
  type: "POST",
@@ -52,7 +54,7 @@ jQuery(document).ready(function()
52
  jQuery(".mec-fes-post-id").val(response.data.post_id);
53
 
54
  // Redirect Currnet Page
55
- if(response.data.redirect_to != "")
56
  {
57
  setTimeout(function()
58
  {
@@ -1129,4 +1131,6 @@ $this->factory->params('footer', $javascript);
1129
 
1130
  </div>
1131
  </form>
1132
- </div>
 
 
11
  {
12
  event.preventDefault();
13
 
14
+ var $form = jQuery("#mec_fes_form");
15
+
16
  // Hide the message
17
  jQuery("#mec_fes_form_message").removeClass("mec-success").removeClass("mec-success").html("").hide();
18
 
19
  // Add loading Class to the form
20
+ $form.addClass("mec-fes-loading");
21
  jQuery(".mec-fes-form-cntt").hide();
22
  jQuery(".mec-fes-form-sdbr").hide();
23
  jQuery(".mec-fes-submit-wide").hide();
30
  // Abort previous request
31
  if(mec_fes_form_ajax) mec_fes_form_ajax.abort();
32
 
33
+ var data = $form.serialize();
34
  mec_fes_form_ajax = jQuery.ajax(
35
  {
36
  type: "POST",
54
  jQuery(".mec-fes-post-id").val(response.data.post_id);
55
 
56
  // Redirect Currnet Page
57
+ if(response.data.redirect_to !== "")
58
  {
59
  setTimeout(function()
60
  {
1131
 
1132
  </div>
1133
  </form>
1134
+ </div>
1135
+
1136
+ <?php do_action('mec_fes_form_footer', $post); ?>
app/features/ix.php CHANGED
@@ -733,6 +733,46 @@ class MEC_feature_ix extends MEC_base
733
  }
734
  }
735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
736
  $args = array
737
  (
738
  'title'=> (string) $event->title,
@@ -822,6 +862,7 @@ class MEC_feature_ix extends MEC_base
822
  'mec_reg_fields_global_inheritance'=> (int) $meta->mec_reg_fields_global_inheritance,
823
  'mec_reg_fields'=>$reg_fields,
824
  'mec_advanced_days'=>$advanced_days,
 
825
  )
826
  );
827
 
733
  }
734
  }
735
 
736
+ // Event Fields
737
+ $event_fields = array();
738
+ if(isset($event->fields))
739
+ {
740
+ // Global Fields
741
+ $global_fields = $this->main->get_event_fields();
742
+ if(!is_array($global_fields)) $global_fields = array();
743
+
744
+ foreach($event->fields->children() as $field)
745
+ {
746
+ $field_id = isset($field->id) ? (int) $field->id : NULL;
747
+ if(!$field_id) continue;
748
+
749
+ $field_type = isset($field->type) ? (string) $field->type : NULL;
750
+ if(!$field_type) continue;
751
+
752
+ $field_val = isset($field->value) ? (string) $field->value : NULL;
753
+ if(!$field_val) continue;
754
+
755
+ $global_field = (isset($global_fields[$field_id]) ? $global_fields[$field_id] : NULL);
756
+ if(!$global_field) continue;
757
+
758
+ if(!is_array($global_field) or (is_array($global_field) and !isset($global_field['type'])) or (is_array($global_field) and isset($global_field['type']) and $global_field['type'] !== $field_type)) continue;
759
+
760
+ if(in_array($field_type, array('checkbox')))
761
+ {
762
+ $raw_field_value = explode(',', trim($field_val, ', '));
763
+
764
+ $field_value = array();
765
+ foreach($raw_field_value as $field_k => $field_v)
766
+ {
767
+ if(trim($field_v) !== '') $field_value[] = trim($field_v);
768
+ }
769
+ }
770
+ else $field_value = $field_val;
771
+
772
+ $event_fields[$field_id] = $field_value;
773
+ }
774
+ }
775
+
776
  $args = array
777
  (
778
  'title'=> (string) $event->title,
862
  'mec_reg_fields_global_inheritance'=> (int) $meta->mec_reg_fields_global_inheritance,
863
  'mec_reg_fields'=>$reg_fields,
864
  'mec_advanced_days'=>$advanced_days,
865
+ 'mec_fields'=>$event_fields,
866
  )
867
  );
868
 
app/features/locations.php CHANGED
@@ -401,10 +401,12 @@ class MEC_feature_locations extends MEC_base
401
  </div>
402
  <?php endif; ?>
403
  </div>
 
404
  <div class="mec-form-row">
405
  <input type="hidden" name="mec[dont_show_map]" value="0" />
406
  <input type="checkbox" id="mec_location_dont_show_map" name="mec[dont_show_map]" value="1" <?php echo ($dont_show_map ? 'checked="checked"' : ''); ?> /><label for="mec_location_dont_show_map"><?php echo __("Don't show map in single event page", 'modern-events-calendar-lite'); ?></label>
407
  </div>
 
408
  <?php if($additional_locations_status and count($locations)): ?>
409
  <h4><?php echo $this->main->m('other_locations', __('Other Locations', 'modern-events-calendar-lite')); ?></h4>
410
  <div class="mec-form-row">
401
  </div>
402
  <?php endif; ?>
403
  </div>
404
+ <?php if($this->getPRO()): ?>
405
  <div class="mec-form-row">
406
  <input type="hidden" name="mec[dont_show_map]" value="0" />
407
  <input type="checkbox" id="mec_location_dont_show_map" name="mec[dont_show_map]" value="1" <?php echo ($dont_show_map ? 'checked="checked"' : ''); ?> /><label for="mec_location_dont_show_map"><?php echo __("Don't show map in single event page", 'modern-events-calendar-lite'); ?></label>
408
  </div>
409
+ <?php endif; ?>
410
  <?php if($additional_locations_status and count($locations)): ?>
411
  <h4><?php echo $this->main->m('other_locations', __('Other Locations', 'modern-events-calendar-lite')); ?></h4>
412
  <div class="mec-form-row">
app/features/mec/booking.php CHANGED
@@ -1110,6 +1110,7 @@ $gateways_options = $this->main->get_gateways_options();
1110
  </div>
1111
 
1112
  <div id="cart_option" class="mec-options-fields">
 
1113
  <div class="mec-form-row">
1114
  <div class="mec-col-12">
1115
  <label>
1110
  </div>
1111
 
1112
  <div id="cart_option" class="mec-options-fields">
1113
+ <h4 class="mec-form-subtitle"><?php _e('MEC Cart', 'modern-events-calendar-lite'); ?></h4>
1114
  <div class="mec-form-row">
1115
  <div class="mec-col-12">
1116
  <label>
app/features/mec/dashboard.php CHANGED
@@ -52,9 +52,6 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
52
  <div class="w-welcome">
53
  <!-- <p> -->
54
  <?php echo sprintf(__('%s - Most Powerful & Easy to Use Events Management System', 'modern-events-calendar-lite'), '<strong>'.($this->getPRO() ? __('Modern Events Calendar', 'modern-events-calendar-lite') : __('Modern Events Calendar (Lite)', 'modern-events-calendar-lite')).'</strong>'); ?>
55
- <?php if(!$this->getPRO()): ?>
56
- <span><a href="https://wordpress.org/support/plugin/modern-events-calendar-lite/reviews/#new-post" target="_blank"><?php echo _x('Rate the plugin ★★★★★', 'plugin rate', 'modern-events-calendar-lite'); ?></a></span>
57
- <?php endif; ?>
58
  <!-- </p> -->
59
  </div>
60
  </div>
52
  <div class="w-welcome">
53
  <!-- <p> -->
54
  <?php echo sprintf(__('%s - Most Powerful & Easy to Use Events Management System', 'modern-events-calendar-lite'), '<strong>'.($this->getPRO() ? __('Modern Events Calendar', 'modern-events-calendar-lite') : __('Modern Events Calendar (Lite)', 'modern-events-calendar-lite')).'</strong>'); ?>
 
 
 
55
  <!-- </p> -->
56
  </div>
57
  </div>
app/features/occurrences.php CHANGED
@@ -474,12 +474,15 @@ class MEC_feature_occurrences extends MEC_base
474
  <i title="" class="dashicons-before dashicons-editor-help"></i>
475
  </span>
476
  </div>
 
 
477
  <div class="mec-form-row">
478
  <div class="mec-col-12">
479
  <input type="hidden" name="mec[occurrences][<?php echo $occurrence_id; ?>][dont_show_map]" value="0" />
480
  <input type="checkbox" id="mec_occurrences_<?php echo $occurrence_id; ?>_location_dont_show_map" name="mec[occurrences][<?php echo $occurrence_id; ?>][dont_show_map]" value="1" <?php echo ($dont_show_map ? 'checked="checked"' : ''); ?> /><label for="mec_occurrences_<?php echo $occurrence_id; ?>_location_dont_show_map"><?php echo __("Don't show map in single event page", 'modern-events-calendar-lite'); ?></label>
481
  </div>
482
  </div>
 
483
  </div>
484
  </div>
485
  <div class="mec-form-row">
474
  <i title="" class="dashicons-before dashicons-editor-help"></i>
475
  </span>
476
  </div>
477
+
478
+ <?php if($this->getPRO()): ?>
479
  <div class="mec-form-row">
480
  <div class="mec-col-12">
481
  <input type="hidden" name="mec[occurrences][<?php echo $occurrence_id; ?>][dont_show_map]" value="0" />
482
  <input type="checkbox" id="mec_occurrences_<?php echo $occurrence_id; ?>_location_dont_show_map" name="mec[occurrences][<?php echo $occurrence_id; ?>][dont_show_map]" value="1" <?php echo ($dont_show_map ? 'checked="checked"' : ''); ?> /><label for="mec_occurrences_<?php echo $occurrence_id; ?>_location_dont_show_map"><?php echo __("Don't show map in single event page", 'modern-events-calendar-lite'); ?></label>
483
  </div>
484
  </div>
485
+ <?php endif; ?>
486
  </div>
487
  </div>
488
  <div class="mec-form-row">
app/features/popup/event.php CHANGED
@@ -2,6 +2,8 @@
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
 
 
 
5
  // MEC Settings
6
  $settings = $this->main->get_settings();
7
 
@@ -131,11 +133,14 @@ $datepicker_format = (isset($settings['datepicker_format']) and trim($settings['
131
  </span>
132
  <button type="button" id="mec_popup_add_location"><?php _e('Add Location'); ?></button>
133
  </div>
134
-
 
135
  <div class="mec-form-row">
136
  <input type="hidden" name="mec[dont_show_map]" value="0" />
137
  <input type="checkbox" id="mec_location_dont_show_map" name="mec[dont_show_map]" value="1" <?php echo ($dont_show_map ? 'checked="checked"' : ''); ?> /><label for="mec_location_dont_show_map"><?php echo __("Don't show map in single event page", 'modern-events-calendar-lite'); ?></label>
138
  </div>
 
 
139
  <div id="mec_location_new_container">
140
  <div class="mec-form-row">
141
  <input type="text" name="mec[location][name]" id="mec_location_name" value="" placeholder="<?php _e('Location Name', 'modern-events-calendar-lite'); ?>" />
2
  /** no direct access **/
3
  defined('MECEXEC') or die();
4
 
5
+ /** @var MEC_feature_events $this */
6
+
7
  // MEC Settings
8
  $settings = $this->main->get_settings();
9
 
133
  </span>
134
  <button type="button" id="mec_popup_add_location"><?php _e('Add Location'); ?></button>
135
  </div>
136
+
137
+ <?php if($this->getPRO()): ?>
138
  <div class="mec-form-row">
139
  <input type="hidden" name="mec[dont_show_map]" value="0" />
140
  <input type="checkbox" id="mec_location_dont_show_map" name="mec[dont_show_map]" value="1" <?php echo ($dont_show_map ? 'checked="checked"' : ''); ?> /><label for="mec_location_dont_show_map"><?php echo __("Don't show map in single event page", 'modern-events-calendar-lite'); ?></label>
141
  </div>
142
+ <?php endif; ?>
143
+
144
  <div id="mec_location_new_container">
145
  <div class="mec-form-row">
146
  <input type="text" name="mec[location][name]" id="mec_location_name" value="" placeholder="<?php _e('Location Name', 'modern-events-calendar-lite'); ?>" />
app/features/speakers.php CHANGED
@@ -49,6 +49,12 @@ class MEC_feature_speakers extends MEC_base
49
 
50
  $this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
51
  $this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
 
 
 
 
 
 
52
  }
53
 
54
  /**
@@ -379,30 +385,92 @@ class MEC_feature_speakers extends MEC_base
379
  {
380
  if(isset($screen->id) and $screen->id == 'edit-mec_speaker')
381
  {
382
- add_action('admin_footer', function ()
383
  {
384
  echo "<script>
385
- var xhrObject = window.XMLHttpRequest;
386
- function ajaxXHR()
 
 
 
387
  {
388
- var xmlHttp = new xhrObject();
389
- xmlHttp.addEventListener('readystatechange', function (xhr)
390
  {
391
- if(xmlHttp.readyState == 4 && xmlHttp.status == 200)
392
  {
393
- if(xhr.currentTarget.responseText.indexOf('tr') != -1)
394
- {
395
- jQuery('.form-wrap').find('.warning-msg').remove();
396
- jQuery('.form-wrap').append('<div class=\"warning-msg\"><p>" . __('Note: You can use the speakers in your event edit/add page > hourly schedule section and speaker widget section!', 'modern-events-calendar-lite') . "</p></div>');
397
- }
398
  }
399
- });
400
-
401
- return xmlHttp;
402
- }
403
- window.XMLHttpRequest = ajaxXHR;
 
404
  </script>";
405
  });
406
  }
407
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408
  }
49
 
50
  $this->factory->filter('manage_edit-mec_speaker_columns', array($this, 'filter_columns'));
51
  $this->factory->filter('manage_mec_speaker_custom_column', array($this, 'filter_columns_content'), 10, 3);
52
+
53
+ $this->factory->action('current_screen', array($this, 'update_speakers_list_admin'));
54
+ $this->factory->action('mec_fes_form_footer', array($this, 'update_speakers_list'));
55
+
56
+ $this->factory->action('wp_ajax_update_speakers_list', array($this, 'get_speakers'));
57
+ $this->factory->action('wp_ajax_nopriv_update_speakers_list', array($this, 'get_speakers'));
58
  }
59
 
60
  /**
385
  {
386
  if(isset($screen->id) and $screen->id == 'edit-mec_speaker')
387
  {
388
+ add_action('admin_footer', function()
389
  {
390
  echo "<script>
391
+ var xhrObject = window.XMLHttpRequest;
392
+ function ajaxXHR()
393
+ {
394
+ var xmlHttp = new xhrObject();
395
+ xmlHttp.addEventListener('readystatechange', function(xhr)
396
  {
397
+ if(xmlHttp.readyState == 4 && xmlHttp.status == 200)
 
398
  {
399
+ if(xhr.currentTarget.responseText.indexOf('tr') != -1)
400
  {
401
+ jQuery('.form-wrap').find('.warning-msg').remove();
402
+ jQuery('.form-wrap').append('<div class=\"warning-msg\"><p>" . __('Note: You can use the speakers in your event edit/add page > hourly schedule section and speaker widget section!', 'modern-events-calendar-lite') . "</p></div>');
 
 
 
403
  }
404
+ }
405
+ });
406
+
407
+ return xmlHttp;
408
+ }
409
+ window.XMLHttpRequest = ajaxXHR;
410
  </script>";
411
  });
412
  }
413
  }
414
+
415
+ public function update_speakers_list_admin($screen)
416
+ {
417
+ if(isset($screen->id) and $screen->id == 'mec-events' and isset($screen->base) and $screen->base == 'post')
418
+ {
419
+ add_action('admin_footer', array($this, 'update_speakers_list'));
420
+ }
421
+ }
422
+
423
+ public function update_speakers_list()
424
+ {
425
+ echo "<script>
426
+ jQuery('body').on('DOMSubtreeModified', 'ul.tagchecklist, #mec-fes-speakers-list', function()
427
+ {
428
+ jQuery.ajax(
429
+ {
430
+ url: '".admin_url('admin-ajax.php', NULL)."',
431
+ type: 'POST',
432
+ data: 'action=update_speakers_list',
433
+ dataType: 'json'
434
+ })
435
+ .done(function(response)
436
+ {
437
+ for(var i = 0; i < response.speakers.length; i++)
438
+ {
439
+ var speaker = response.speakers[i];
440
+ jQuery('.mec-hourly-schedule-form-speakers').each(function(index)
441
+ {
442
+ var d = jQuery(this).data('d');
443
+ var key = jQuery(this).data('key');
444
+ var name_prefix = jQuery(this).data('name-prefix');
445
+
446
+ var name = name_prefix + '[hourly_schedules]['+d+'][schedules]['+key+'][speakers][]';
447
+
448
+ // Add
449
+ if(!jQuery(this).find('input[value=\"'+speaker[0]+'\"]').length)
450
+ {
451
+ jQuery(this).append('<label><input type=\"checkbox\" name=\"'+name+'\" value=\"'+speaker[0]+'\">'+speaker[1]+'</label>');
452
+ }
453
+ });
454
+ }
455
+ });
456
+ });
457
+ </script>";
458
+ }
459
+
460
+ public function get_speakers()
461
+ {
462
+ $speakers = get_terms('mec_speaker', array(
463
+ 'orderby' => 'name',
464
+ 'order' => 'ASC',
465
+ 'hide_empty' => '0',
466
+ ));
467
+
468
+ $sp = array();
469
+ foreach($speakers as $speaker)
470
+ {
471
+ $sp[] = array($speaker->term_id, $speaker->name);
472
+ }
473
+
474
+ wp_send_json(array('speakers' => $sp));
475
+ }
476
  }
app/features/tag.php CHANGED
@@ -78,7 +78,7 @@ class MEC_feature_tag extends MEC_base
78
  'not_found'=>sprintf(__('no %s found.', 'modern-events-calendar-lite'), strtolower($plural_label)),
79
  ),
80
  'rewrite'=>array('slug'=>'events-tag'),
81
- 'public'=>false,
82
  'show_ui'=>true,
83
  'hierarchical'=>false,
84
  )
78
  'not_found'=>sprintf(__('no %s found.', 'modern-events-calendar-lite'), strtolower($plural_label)),
79
  ),
80
  'rewrite'=>array('slug'=>'events-tag'),
81
+ 'public'=>true,
82
  'show_ui'=>true,
83
  'hierarchical'=>false,
84
  )
app/libraries/factory.php CHANGED
@@ -214,9 +214,7 @@ class MEC_factory extends MEC_base
214
  if(!$this->getPRO())
215
  {
216
  $upgrade = '<a href="'.$this->main->get_pro_link().'" target="_blank"><b>'._x('Upgrade to Pro Version', 'plugin link', 'modern-events-calendar-lite').'</b></a>';
217
- $rate = '<a href="https://wordpress.org/support/plugin/modern-events-calendar-lite/reviews/#new-post" target="_blank">'._x('Rate the plugin ★★★★★', 'plugin rate', 'modern-events-calendar-lite').'</a>';
218
  $links[] = $upgrade;
219
- $links[] = $rate;
220
  }
221
  }
222
 
214
  if(!$this->getPRO())
215
  {
216
  $upgrade = '<a href="'.$this->main->get_pro_link().'" target="_blank"><b>'._x('Upgrade to Pro Version', 'plugin link', 'modern-events-calendar-lite').'</b></a>';
 
217
  $links[] = $upgrade;
 
218
  }
219
  }
220
 
app/libraries/hourlyschedule.php CHANGED
@@ -73,7 +73,7 @@ class MEC_hourlyschedule extends MEC_base
73
  <?php endif; ?>
74
  <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, <?php echo $key; ?>, '<?php echo $prefix; ?>');"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
75
  <?php if($speakers_status): ?>
76
- <div class="mec-col-12 mec-hourly-schedule-form-speakers">
77
  <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
78
  <?php foreach($speakers as $speaker): ?>
79
  <label><input type="checkbox" name="<?php echo $name_prefix; ?>[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][speakers][]" value="<?php echo $speaker->term_id; ?>" <?php echo (isset($hourly_schedule['speakers']) and in_array($speaker->term_id, $hourly_schedule['speakers'])) ? 'checked="checked"' : ''; ?>><?php echo $speaker->name; ?></label>
@@ -101,7 +101,7 @@ class MEC_hourlyschedule extends MEC_base
101
  <?php endif; ?>
102
  <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, :i:, '<?php echo $prefix; ?>');"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
103
  <?php if($speakers_status): ?>
104
- <div class="mec-col-12 mec-hourly-schedule-form-speakers">
105
  <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
106
  <?php foreach($speakers as $speaker): ?>
107
  <label><input type="checkbox" name="<?php echo $name_prefix; ?>[hourly_schedules][<?php echo $d; ?>][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
@@ -153,7 +153,7 @@ class MEC_hourlyschedule extends MEC_base
153
  <?php endif; ?>
154
  <button class="button" type="button" onclick="mec_hourly_schedule_remove(:d:, :i:, '<?php echo $prefix; ?>');"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
155
  <?php if($speakers_status): ?>
156
- <div class="mec-col-12 mec-hourly-schedule-form-speakers">
157
  <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
158
  <?php foreach($speakers as $speaker): ?>
159
  <label><input type="checkbox" name="<?php echo $name_prefix; ?>[hourly_schedules][:d:][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
73
  <?php endif; ?>
74
  <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, <?php echo $key; ?>, '<?php echo $prefix; ?>');"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
75
  <?php if($speakers_status): ?>
76
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers" data-d="<?php echo $d; ?>" data-key="<?php echo $key; ?>" data-name-prefix="<?php echo $name_prefix; ?>">
77
  <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
78
  <?php foreach($speakers as $speaker): ?>
79
  <label><input type="checkbox" name="<?php echo $name_prefix; ?>[hourly_schedules][<?php echo $d; ?>][schedules][<?php echo $key; ?>][speakers][]" value="<?php echo $speaker->term_id; ?>" <?php echo (isset($hourly_schedule['speakers']) and in_array($speaker->term_id, $hourly_schedule['speakers'])) ? 'checked="checked"' : ''; ?>><?php echo $speaker->name; ?></label>
101
  <?php endif; ?>
102
  <button class="button" type="button" onclick="mec_hourly_schedule_remove(<?php echo $d; ?>, :i:, '<?php echo $prefix; ?>');"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
103
  <?php if($speakers_status): ?>
104
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers" data-d="<?php echo $d; ?>" data-key=":i:" data-name-prefix="<?php echo $name_prefix; ?>">
105
  <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
106
  <?php foreach($speakers as $speaker): ?>
107
  <label><input type="checkbox" name="<?php echo $name_prefix; ?>[hourly_schedules][<?php echo $d; ?>][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
153
  <?php endif; ?>
154
  <button class="button" type="button" onclick="mec_hourly_schedule_remove(:d:, :i:, '<?php echo $prefix; ?>');"><?php _e('Remove', 'modern-events-calendar-lite'); ?></button>
155
  <?php if($speakers_status): ?>
156
+ <div class="mec-col-12 mec-hourly-schedule-form-speakers" data-d=":d:" data-key=":i:" data-name-prefix="<?php echo $name_prefix; ?>">
157
  <strong><?php echo $this->main->m('taxonomy_speakers', __('Speakers', 'modern-events-calendar-lite')); ?></strong>
158
  <?php foreach($speakers as $speaker): ?>
159
  <label><input type="checkbox" name="<?php echo $name_prefix; ?>[hourly_schedules][:d:][schedules][:i:][speakers][]" value="<?php echo $speaker->term_id; ?>"><?php echo $speaker->name; ?></label>
app/libraries/main.php CHANGED
@@ -4509,7 +4509,7 @@ class MEC_main extends MEC_base
4509
  <span onclick="mec_'.$prefix.'_fields_remove('.$key.');" class="mec_'.$prefix.'_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
4510
  <div>
4511
  <input type="hidden" name="mec['.$prefix.'_fields]['.$key.'][type]" value="agreement" />
4512
- <input type="text" name="mec['.$prefix.'_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? stripslashes($values['label']) : 'I agree with %s').'" /><p class="description">'.__('Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite').'</p>
4513
  <div>
4514
  <label for="mec_'.$prefix.'_fields_'.$key.'_page">'.__('Agreement Page', 'modern-events-calendar-lite').'</label>
4515
  <select id="mec_'.$prefix.'_fields_'.$key.'_page" name="mec['.$prefix.'_fields]['.$key.'][page]">';
4509
  <span onclick="mec_'.$prefix.'_fields_remove('.$key.');" class="mec_'.$prefix.'_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
4510
  <div>
4511
  <input type="hidden" name="mec['.$prefix.'_fields]['.$key.'][type]" value="agreement" />
4512
+ <input type="text" name="mec['.$prefix.'_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? stripslashes($values['label']) : esc_attr__('I agree with %s', 'modern-events-calendar-lite')).'" /><p class="description">'.__('Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite').'</p>
4513
  <div>
4514
  <label for="mec_'.$prefix.'_fields_'.$key.'_page">'.__('Agreement Page', 'modern-events-calendar-lite').'</label>
4515
  <select id="mec_'.$prefix.'_fields_'.$key.'_page" name="mec['.$prefix.'_fields]['.$key.'][page]">';
app/libraries/render.php CHANGED
@@ -685,8 +685,9 @@ class MEC_render extends MEC_base
685
  if(!is_numeric($f)) continue;
686
 
687
  $field_value = isset($fields_data[$f]) ? (is_array($fields_data[$f]) ? implode(', ', $fields_data[$f]) : $fields_data[$f]) : NULL;
688
-
689
  $data->fields[] = array(
 
 
690
  'label' => (isset($field['label']) ? esc_html__(stripslashes($field['label']), 'modern-events-calendar-lite') : ''),
691
  'value' => stripslashes($field_value),
692
  );
685
  if(!is_numeric($f)) continue;
686
 
687
  $field_value = isset($fields_data[$f]) ? (is_array($fields_data[$f]) ? implode(', ', $fields_data[$f]) : $fields_data[$f]) : NULL;
 
688
  $data->fields[] = array(
689
+ 'id' => $f,
690
+ 'type' => (isset($field['type']) ? $field['type'] : NULL),
691
  'label' => (isset($field['label']) ? esc_html__(stripslashes($field['label']), 'modern-events-calendar-lite') : ''),
692
  'value' => stripslashes($field_value),
693
  );
app/libraries/skins.php CHANGED
@@ -1468,7 +1468,7 @@ class MEC_skins extends MEC_base
1468
  if(isset($sf['category']) and trim($sf['category'])) $atts['category'] = $sf['category'];
1469
 
1470
  // Apply Location Query
1471
- if(isset($sf['location']) and trim($sf['location'])) $atts['location'] = $sf['location'];
1472
 
1473
  // Apply Organizer Query
1474
  if(isset($sf['organizer']) and trim($sf['organizer'])) $atts['organizer'] = $sf['organizer'];
@@ -1751,9 +1751,32 @@ class MEC_skins extends MEC_base
1751
  {
1752
  $repeat_type = (isset($event->data) and isset($event->data->meta) and isset($event->data->meta['mec_repeat_type'])) ? $event->data->meta['mec_repeat_type'] : '';
1753
 
1754
- if(in_array($repeat_type, array('daily', 'weekly', 'monthly', 'yearly'))) $repeat_label = '<span class="mec-repeating-label">'.esc_html__(ucfirst($repeat_type)).'</span>';
1755
- elseif(in_array($repeat_type, array('weekend', 'weekday'))) $repeat_label = '<span class="mec-repeating-label">'.sprintf(esc_html__('Every %s', 'modern-events-calendar-lite'), ucfirst($repeat_type)).'</span>';
1756
- elseif(in_array($repeat_type, array('certain_weekdays', 'custom_days', 'advanced'))) $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Repeating Event', 'modern-events-calendar-lite').'</span>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1757
  }
1758
 
1759
  // Link is disabled
1468
  if(isset($sf['category']) and trim($sf['category'])) $atts['category'] = $sf['category'];
1469
 
1470
  // Apply Location Query
1471
+ if(isset($sf['location'])) $atts['location'] = $sf['location'];
1472
 
1473
  // Apply Organizer Query
1474
  if(isset($sf['organizer']) and trim($sf['organizer'])) $atts['organizer'] = $sf['organizer'];
1751
  {
1752
  $repeat_type = (isset($event->data) and isset($event->data->meta) and isset($event->data->meta['mec_repeat_type'])) ? $event->data->meta['mec_repeat_type'] : '';
1753
 
1754
+ // Change to switch case for translatability
1755
+ switch ($repeat_type) {
1756
+ case 'daily':
1757
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Daily' , 'modern-events-calendar-lite').'</span>';
1758
+ break;
1759
+ case 'weekly':
1760
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Weekly' , 'modern-events-calendar-lite').'</span>';
1761
+ break;
1762
+ case 'monthly':
1763
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Monthly' , 'modern-events-calendar-lite').'</span>';
1764
+ break;
1765
+ case 'yearly':
1766
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Yearly' , 'modern-events-calendar-lite').'</span>';
1767
+ break;
1768
+ case 'weekend':
1769
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Every Weekend' , 'modern-events-calendar-lite').'</span>';
1770
+ break;
1771
+ case 'weekday':
1772
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Every Weekday' , 'modern-events-calendar-lite').'</span>';
1773
+ break;
1774
+ case 'certain_weekdays':
1775
+ case 'custom_days':
1776
+ case 'advanced':
1777
+ $repeat_label = '<span class="mec-repeating-label">'.esc_html__('Repeating Event' , 'modern-events-calendar-lite').'</span>';
1778
+ break;
1779
+ }
1780
  }
1781
 
1782
  // Link is disabled
app/modules/next-event/details.php CHANGED
@@ -96,7 +96,7 @@ else
96
  $start_datetime .= ' '.$start_time;
97
  }
98
 
99
- if(strtotime($start_datetime) >= strtotime($start_date))
100
  {
101
  $found = true;
102
  $next_date = $occ;
96
  $start_datetime .= ' '.$start_time;
97
  }
98
 
99
+ if(strtotime($start_datetime) > strtotime($start_date))
100
  {
101
  $found = true;
102
  $next_date = $occ;
app/skins/monthly_view/calendar.php CHANGED
@@ -58,7 +58,7 @@ $events_str = '';
58
  // Print events
59
  if(isset($events[$today]) and count($events[$today]))
60
  {
61
- echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
62
  do_action('monthly_box_hook', $events[$today]);
63
  echo '</dt>';
64
 
@@ -101,7 +101,7 @@ $events_str = '';
101
  }
102
  else
103
  {
104
- echo '<dt class="mec-table-nullday">'.$list_day.'</dt>';
105
  }
106
 
107
  $days_in_this_week++;
@@ -119,7 +119,7 @@ $events_str = '';
119
  // Print events
120
  if(isset($events[$today]) and count($events[$today]))
121
  {
122
- echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
123
  do_action('monthly_box_hook', $events[$today]);
124
  echo '</dt>';
125
 
@@ -162,7 +162,7 @@ $events_str = '';
162
  }
163
  else
164
  {
165
- echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
166
 
167
  $events_str .= '<div '.(trim($selected_day) != '' ? 'id="mec-active-current"' : '').' class="mec-calendar-events-sec" data-mec-cell="'.$day_id.'">'.$this->day_label($time);
168
  $events_str .= '<article class="mec-event-article">';
@@ -207,7 +207,7 @@ $events_str = '';
207
  // Print events
208
  if(isset($events[$today]) and count($events[$today]))
209
  {
210
- echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="#" class="mec-has-event-a">'.$list_day.'</a>';
211
  do_action('monthly_box_hook', $events[$today]);
212
  echo '</dt>';
213
 
58
  // Print events
59
  if(isset($events[$today]) and count($events[$today]))
60
  {
61
+ echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="#" class="mec-has-event-a">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</a>';
62
  do_action('monthly_box_hook', $events[$today]);
63
  echo '</dt>';
64
 
101
  }
102
  else
103
  {
104
+ echo '<dt class="mec-table-nullday">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</dt>';
105
  }
106
 
107
  $days_in_this_week++;
119
  // Print events
120
  if(isset($events[$today]) and count($events[$today]))
121
  {
122
+ echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="#" class="mec-has-event-a">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</a>';
123
  do_action('monthly_box_hook', $events[$today]);
124
  echo '</dt>';
125
 
162
  }
163
  else
164
  {
165
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</dt>';
166
 
167
  $events_str .= '<div '.(trim($selected_day) != '' ? 'id="mec-active-current"' : '').' class="mec-calendar-events-sec" data-mec-cell="'.$day_id.'">'.$this->day_label($time);
168
  $events_str .= '<article class="mec-event-article">';
207
  // Print events
208
  if(isset($events[$today]) and count($events[$today]))
209
  {
210
+ echo '<dt class="mec-calendar-day'.$selected_day.' mec-has-event" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="#" class="mec-has-event-a">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</a>';
211
  do_action('monthly_box_hook', $events[$today]);
212
  echo '</dt>';
213
 
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -62,7 +62,7 @@ $date_format = get_option('date_format');
62
  // Print events
63
  if(isset($events[$today]) and count($events[$today]))
64
  {
65
- echo '<dt class="mec-calendar-day mec-has-event'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="'.($this->display_all ? '#mec-calendar-events-sec-'.$this->id.'-'.$day_id : '#').'" class="mec-has-event-a">'.$list_day.'</a></dt>';
66
  $events_str .= '<div class="mec-calendar-events-sec" id="mec-calendar-events-sec-'.$this->id.'-'.$day_id.'" data-mec-cell="'.$day_id.'" '.((trim($selected_day) != '' or $this->display_all) ? ' style="display: block;"' : '').'>'.$this->day_label($time);
67
 
68
  foreach($events[$today] as $event)
@@ -116,7 +116,7 @@ $date_format = get_option('date_format');
116
  }
117
  else
118
  {
119
- echo '<dt class="mec-table-nullday">'.$list_day.'</dt>';
120
  }
121
 
122
  $days_in_this_week++;
@@ -134,7 +134,7 @@ $date_format = get_option('date_format');
134
  // Print events
135
  if(isset($events[$today]) and count($events[$today]))
136
  {
137
- echo '<dt class="mec-calendar-day mec-has-event'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="'.($this->display_all ? '#mec-calendar-events-sec-'.$this->id.'-'.$day_id : '#').'" class="mec-has-event-a">'.$list_day.'</a></dt>';
138
  $events_str .= '<div class="mec-calendar-events-sec" id="mec-calendar-events-sec-'.$this->id.'-'.$day_id.'" data-mec-cell="'.$day_id.'" '.((trim($selected_day) != '' or $this->display_all) ? ' style="display: block;"' : '').'>'.$this->day_label($time);
139
 
140
  foreach($events[$today] as $event)
@@ -188,7 +188,7 @@ $date_format = get_option('date_format');
188
  }
189
  else
190
  {
191
- echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
192
 
193
  if(!$this->display_all)
194
  {
@@ -233,7 +233,7 @@ $date_format = get_option('date_format');
233
  // Print events
234
  if(isset($events[$today]) and count($events[$today]))
235
  {
236
- echo '<dt class="mec-calendar-day mec-has-event'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="'.($this->display_all ? '#mec-calendar-events-sec-'.$this->id.'-'.$day_id : '#').'" class="mec-has-event-a">'.$list_day.'</a></dt>';
237
  $events_str .= '<div class="mec-calendar-events-sec" id="mec-calendar-events-sec-'.$this->id.'-'.$day_id.'" data-mec-cell="'.$day_id.'" '.((trim($selected_day) != '' or $this->display_all) ? ' style="display: block;"' : '').'>'.$this->day_label($time);
238
 
239
  foreach($events[$today] as $event)
62
  // Print events
63
  if(isset($events[$today]) and count($events[$today]))
64
  {
65
+ echo '<dt class="mec-calendar-day mec-has-event'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="'.($this->display_all ? '#mec-calendar-events-sec-'.$this->id.'-'.$day_id : '#').'" class="mec-has-event-a">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</a></dt>';
66
  $events_str .= '<div class="mec-calendar-events-sec" id="mec-calendar-events-sec-'.$this->id.'-'.$day_id.'" data-mec-cell="'.$day_id.'" '.((trim($selected_day) != '' or $this->display_all) ? ' style="display: block;"' : '').'>'.$this->day_label($time);
67
 
68
  foreach($events[$today] as $event)
116
  }
117
  else
118
  {
119
+ echo '<dt class="mec-table-nullday">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</dt>';
120
  }
121
 
122
  $days_in_this_week++;
134
  // Print events
135
  if(isset($events[$today]) and count($events[$today]))
136
  {
137
+ echo '<dt class="mec-calendar-day mec-has-event'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><a href="'.($this->display_all ? '#mec-calendar-events-sec-'.$this->id.'-'.$day_id : '#').'" class="mec-has-event-a">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</a></dt>';
138
  $events_str .= '<div class="mec-calendar-events-sec" id="mec-calendar-events-sec-'.$this->id.'-'.$day_id.'" data-mec-cell="'.$day_id.'" '.((trim($selected_day) != '' or $this->display_all) ? ' style="display: block;"' : '').'>'.$this->day_label($time);
139
 
140
  foreach($events[$today] as $event)
188
  }
189
  else
190
  {
191
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</dt>';
192
 
193
  if(!$this->display_all)
194
  {
233
  // Print events
234
  if(isset($events[$today]) and count($events[$today]))
235
  {
236
+ echo '<dt class="mec-calendar-day mec-has-event'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', strtotime($year.'-'.$month.'-01')).'"><a href="'.($this->display_all ? '#mec-calendar-events-sec-'.$this->id.'-'.$day_id : '#').'" class="mec-has-event-a">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</a></dt>';
237
  $events_str .= '<div class="mec-calendar-events-sec" id="mec-calendar-events-sec-'.$this->id.'-'.$day_id.'" data-mec-cell="'.$day_id.'" '.((trim($selected_day) != '' or $this->display_all) ? ' style="display: block;"' : '').'>'.$this->day_label($time);
238
 
239
  foreach($events[$today] as $event)
app/skins/monthly_view/calendar_novel.php CHANGED
@@ -66,7 +66,7 @@ elseif($week_start == 5) // Friday
66
  // Print events
67
  if(isset($events[$today]) and count($events[$today]))
68
  {
69
- echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="mec-calendar-novel-selected-day'.$selected_day_date.'">'.$list_day.'</div>';
70
  foreach($events[$today] as $event)
71
  {
72
  $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
@@ -95,14 +95,14 @@ elseif($week_start == 5) // Friday
95
  }
96
  else
97
  {
98
- echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
99
  echo '</dt>';
100
  }
101
 
102
  if($running_day == 6)
103
  {
104
  echo '</dl>';
105
-
106
  if((($day_counter+1) != $days_in_month) or (($day_counter+1) == $days_in_month and $days_in_this_week == 7))
107
  {
108
  echo '<dl class="mec-calendar-row">';
66
  // Print events
67
  if(isset($events[$today]) and count($events[$today]))
68
  {
69
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="mec-calendar-novel-selected-day'.$selected_day_date.'">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</div>';
70
  foreach($events[$today] as $event)
71
  {
72
  $event_color = isset($event->data->meta['mec_color'])? '#'.$event->data->meta['mec_color']:'';
95
  }
96
  else
97
  {
98
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</dt>';
99
  echo '</dt>';
100
  }
101
 
102
  if($running_day == 6)
103
  {
104
  echo '</dl>';
105
+
106
  if((($day_counter+1) != $days_in_month) or (($day_counter+1) == $days_in_month and $days_in_this_week == 7))
107
  {
108
  echo '<dl class="mec-calendar-row">';
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -67,7 +67,7 @@ elseif($week_start == 5) // Friday
67
  // Print events
68
  if(isset($events[$today]) and count($events[$today]))
69
  {
70
- echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.$list_day.'</div>';
71
  foreach($events[$today] as $event)
72
  {
73
  $event_color = isset($event->data->meta['mec_color']) ? '#'.$event->data->meta['mec_color'] : '';
@@ -121,14 +121,14 @@ elseif($week_start == 5) // Friday
121
  }
122
  else
123
  {
124
- echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.$list_day.'</dt>';
125
  echo '</dt>';
126
  }
127
 
128
  if($running_day == 6)
129
  {
130
  echo '</dl>';
131
-
132
  if((($day_counter+1) != $days_in_month) or (($day_counter+1) == $days_in_month and $days_in_this_week == 7))
133
  {
134
  echo '<dl class="mec-calendar-row">';
67
  // Print events
68
  if(isset($events[$today]) and count($events[$today]))
69
  {
70
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'"><div class="'.$selected_day_date.'">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</div>';
71
  foreach($events[$today] as $event)
72
  {
73
  $event_color = isset($event->data->meta['mec_color']) ? '#'.$event->data->meta['mec_color'] : '';
121
  }
122
  else
123
  {
124
+ echo '<dt class="mec-calendar-day'.$selected_day.'" data-mec-cell="'.$day_id.'" data-day="'.$list_day.'" data-month="'.date('Ym', $time).'">'.apply_filters( 'mec_filter_list_day_value', $list_day, $today, $this ).'</dt>';
125
  echo '</dt>';
126
  }
127
 
128
  if($running_day == 6)
129
  {
130
  echo '</dl>';
131
+
132
  if((($day_counter+1) != $days_in_month) or (($day_counter+1) == $days_in_month and $days_in_this_week == 7))
133
  {
134
  echo '<dl class="mec-calendar-row">';
assets/js/frontend.js CHANGED
@@ -301,18 +301,17 @@ var mec_search_callback2;
301
  var sf = 'sf[s]=' + s + '&sf[address]=' + address + '&sf[cost-min]=' + cost_min + '&sf[cost-max]=' + cost_max + '&sf[time-start]=' + time_start + '&sf[time-end]=' + time_end + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[start]=' + start + '&sf[end]=' + end + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + '&sf[attribute]=' + attribute + addation_attr;
302
 
303
  var fields = get_fields();
304
- $.each(fields,function(i,field){
305
-
306
- if( $("#mec_sf_"+ field +"_" + settings.id).length ){
307
-
308
  v = $("#mec_sf_"+ field +"_" + settings.id).val();
309
  sf += '&sf['+ field +']=' + v;
310
  }
311
  });
312
 
313
-
314
  // Refine Parameters
315
- if (settings.refine) refine(sf);
316
 
317
  // Attributes
318
  var atts = settings.atts + '&' + sf;
@@ -390,57 +389,57 @@ var mec_search_callback2;
390
  else if ($category.length) category_type = 'dropdown';
391
 
392
  $.ajax(
393
- {
394
- url: settings.ajax_url,
395
- data: "action=mec_refine_search_items&" + sf + '&last_field=' + last_field + '&category_type=' + category_type + '&id=' + settings.id,
396
- dataType: "json",
397
- type: "post",
398
- success: function (response) {
399
- // Categories
400
- if (typeof response.categories !== 'undefined' && response.categories !== '') {
401
- // Checkboxes
402
- if ($category.length && $category.prop('tagName') && $category.prop('tagName').toLowerCase() === 'div') {
403
- $category.html(response.categories);
404
- }
405
- // Dropdown
406
- else if ($category.length) {
407
- $category.replaceWith(response.categories)
408
- }
409
-
410
- // Categories Search bar
411
- if ( jQuery(".mec-searchbar-category-wrap select").length > 0 && jQuery().niceSelect) jQuery(".mec-searchbar-category-wrap select").niceSelect();
412
  }
413
-
414
- // Locations
415
- if (typeof response.locations !== 'undefined' && response.locations !== '') {
416
- $location.replaceWith(response.locations)
417
  }
418
 
419
- // Organizers
420
- if (typeof response.organizers !== 'undefined' && response.organizers !== '') {
421
- $organizer.replaceWith(response.organizers)
422
- }
423
 
424
- // Speakers
425
- if (typeof response.speakers !== 'undefined' && response.speakers !== '') {
426
- $speaker.replaceWith(response.speakers)
427
- }
428
 
429
- // Labels
430
- if (typeof response.labels !== 'undefined' && response.labels !== '') {
431
- $label.replaceWith(response.labels)
432
- }
433
 
434
- // Tags
435
- if (typeof response.tags !== 'undefined' && response.tags !== '') {
436
- $tag.replaceWith(response.tags)
437
- }
438
 
439
- // Trigger
440
- trigger();
441
- },
442
- error: function () { }
443
- });
 
 
 
 
 
 
 
 
 
 
444
  }
445
  };
446
  }(jQuery));
@@ -573,6 +572,12 @@ jQuery(window).on('load', function()
573
  if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
574
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
575
 
 
 
 
 
 
 
576
  $.ajax({
577
  url: settings.ajax_url,
578
  data: "action=mec_full_calendar_switch_skin&skin=" + skin + "&" + settings.atts + "&apply_sf_date=1&sed=" + settings.sed_method,
@@ -1046,7 +1051,12 @@ jQuery(window).on('load', function()
1046
  }
1047
 
1048
  // Month exists so we just show it
1049
- if ($("#mec_monthly_view_month_" + settings.id + "_" + month_id).length) {
 
 
 
 
 
1050
  // Toggle Month
1051
  toggleMonth(month_id);
1052
  } else {
@@ -1085,7 +1095,6 @@ jQuery(window).on('load', function()
1085
  // Remove loading Class
1086
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1087
 
1088
-
1089
  // Set Month Filter values in search widget
1090
  $("#mec_sf_month_" + settings.id).val(month);
1091
  $("#mec_sf_year_" + settings.id).val(year);
@@ -1447,7 +1456,12 @@ jQuery(window).on('load', function()
1447
  navigation_click = navigation_click || false;
1448
 
1449
  // Month exists so we just show it
1450
- if ($("#mec_weekly_view_month_" + settings.id + "_" + month_id).length) {
 
 
 
 
 
1451
  // Toggle Month
1452
  toggleMonth(month_id);
1453
 
@@ -1743,7 +1757,12 @@ jQuery(window).on('load', function()
1743
  navigation_click = navigation_click || false;
1744
 
1745
  // Month exists so we just show it
1746
- if ($("#mec_daily_view_month_" + settings.id + "_" + month_id).length) {
 
 
 
 
 
1747
  // Toggle Month
1748
  toggleMonth(month_id);
1749
 
301
  var sf = 'sf[s]=' + s + '&sf[address]=' + address + '&sf[cost-min]=' + cost_min + '&sf[cost-max]=' + cost_max + '&sf[time-start]=' + time_start + '&sf[time-end]=' + time_end + '&sf[month]=' + month + '&sf[year]=' + year + '&sf[start]=' + start + '&sf[end]=' + end + '&sf[category]=' + category + '&sf[location]=' + location + '&sf[organizer]=' + organizer + '&sf[speaker]=' + speaker + '&sf[tag]=' + tag + '&sf[label]=' + label + '&sf[event_type]=' + event_type + '&sf[event_type_2]=' + event_type_2 + '&sf[attribute]=' + attribute + addation_attr;
302
 
303
  var fields = get_fields();
304
+ $.each(fields, function(i, field)
305
+ {
306
+ if($("#mec_sf_"+ field +"_" + settings.id).length)
307
+ {
308
  v = $("#mec_sf_"+ field +"_" + settings.id).val();
309
  sf += '&sf['+ field +']=' + v;
310
  }
311
  });
312
 
 
313
  // Refine Parameters
314
+ if(settings.refine) refine(sf);
315
 
316
  // Attributes
317
  var atts = settings.atts + '&' + sf;
389
  else if ($category.length) category_type = 'dropdown';
390
 
391
  $.ajax(
392
+ {
393
+ url: settings.ajax_url,
394
+ data: "action=mec_refine_search_items&" + sf + '&last_field=' + last_field + '&category_type=' + category_type + '&id=' + settings.id,
395
+ dataType: "json",
396
+ type: "post",
397
+ success: function (response) {
398
+ // Categories
399
+ if (typeof response.categories !== 'undefined' && response.categories !== '') {
400
+ // Checkboxes
401
+ if ($category.length && $category.prop('tagName') && $category.prop('tagName').toLowerCase() === 'div') {
402
+ $category.html(response.categories);
 
 
 
 
 
 
 
 
403
  }
404
+ // Dropdown
405
+ else if ($category.length) {
406
+ $category.replaceWith(response.categories)
 
407
  }
408
 
409
+ // Categories Search bar
410
+ if ( jQuery(".mec-searchbar-category-wrap select").length > 0 && jQuery().niceSelect) jQuery(".mec-searchbar-category-wrap select").niceSelect();
411
+ }
 
412
 
413
+ // Locations
414
+ if (typeof response.locations !== 'undefined' && response.locations !== '') {
415
+ $location.replaceWith(response.locations)
416
+ }
417
 
418
+ // Organizers
419
+ if (typeof response.organizers !== 'undefined' && response.organizers !== '') {
420
+ $organizer.replaceWith(response.organizers)
421
+ }
422
 
423
+ // Speakers
424
+ if (typeof response.speakers !== 'undefined' && response.speakers !== '') {
425
+ $speaker.replaceWith(response.speakers)
426
+ }
427
 
428
+ // Labels
429
+ if (typeof response.labels !== 'undefined' && response.labels !== '') {
430
+ $label.replaceWith(response.labels)
431
+ }
432
+
433
+ // Tags
434
+ if (typeof response.tags !== 'undefined' && response.tags !== '') {
435
+ $tag.replaceWith(response.tags)
436
+ }
437
+
438
+ // Trigger
439
+ trigger();
440
+ },
441
+ error: function () { }
442
+ });
443
  }
444
  };
445
  }(jQuery));
572
  if (jQuery('.mec-modal-result').length === 0) jQuery('.mec-wrap').append('<div class="mec-modal-result"></div>');
573
  jQuery('.mec-modal-result').addClass('mec-month-navigator-loading');
574
 
575
+ // Add Month & Year
576
+ if(settings.atts.indexOf('sf[month]') <= -1)
577
+ {
578
+ settings.atts += '&sf[month]='+$("#mec_sf_month_" + settings.id).val()+'&sf[year]='+$("#mec_sf_year_" + settings.id).val();
579
+ }
580
+
581
  $.ajax({
582
  url: settings.ajax_url,
583
  data: "action=mec_full_calendar_switch_skin&skin=" + skin + "&" + settings.atts + "&apply_sf_date=1&sed=" + settings.sed_method,
1051
  }
1052
 
1053
  // Month exists so we just show it
1054
+ if ($("#mec_monthly_view_month_" + settings.id + "_" + month_id).length)
1055
+ {
1056
+ // Set Month Filter values in search widget
1057
+ $("#mec_sf_month_" + settings.id).val(month);
1058
+ $("#mec_sf_year_" + settings.id).val(year);
1059
+
1060
  // Toggle Month
1061
  toggleMonth(month_id);
1062
  } else {
1095
  // Remove loading Class
1096
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
1097
 
 
1098
  // Set Month Filter values in search widget
1099
  $("#mec_sf_month_" + settings.id).val(month);
1100
  $("#mec_sf_year_" + settings.id).val(year);
1456
  navigation_click = navigation_click || false;
1457
 
1458
  // Month exists so we just show it
1459
+ if ($("#mec_weekly_view_month_" + settings.id + "_" + month_id).length)
1460
+ {
1461
+ // Set Month Filter values in search widget
1462
+ $("#mec_sf_month_" + settings.id).val(month);
1463
+ $("#mec_sf_year_" + settings.id).val(year);
1464
+
1465
  // Toggle Month
1466
  toggleMonth(month_id);
1467
 
1757
  navigation_click = navigation_click || false;
1758
 
1759
  // Month exists so we just show it
1760
+ if ($("#mec_daily_view_month_" + settings.id + "_" + month_id).length)
1761
+ {
1762
+ // Set Month Filter values in search widget
1763
+ $("#mec_sf_month_" + settings.id).val(month);
1764
+ $("#mec_sf_year_" + settings.id).val(year);
1765
+
1766
  // Toggle Month
1767
  toggleMonth(month_id);
1768
 
changelog.txt CHANGED
@@ -1,5 +1,17 @@
1
- v 6.4.023 February 2022
2
- - Fixed: minor issue
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
  v 6.4.0 – 23 February 2022
5
  - Improved: The MEC backend
1
+ v 6.4.23 March 2022
2
+ - Improved: The XML export
3
+ - Improved: The skin load in full calendar shortcode
4
+ - Improved: The Stripe gateway by adding some booking fields into the meta fields (pro)
5
+ - Improved: The search functionality on shortcodes
6
+ - Improved: The XML import to store event fields too
7
+ - Improved: Some options on the lite version
8
+ - Improved: The speaker feature in “Frontend Event Submission”
9
+ - Fixed: An issue on event and booking filter in WP backend (pro)
10
+ - Fixed: An issue on the next event module
11
+ - Fixed: Some issues in “Frontend Event Submission”
12
+ - Fixed: An issue in year and month selection on month navigation
13
+ - Fixed: A potential memory issue
14
+ - Fixed: An issue on independent tags
15
 
16
  v 6.4.0 – 23 February 2022
17
  - Improved: The MEC backend
languages/modern-events-calendar-lite-cs_CZ.mo CHANGED
Binary file
languages/modern-events-calendar-lite-cs_CZ.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:30+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -172,7 +172,7 @@ msgid "Canceled"
172
  msgstr "Zrušená"
173
 
174
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
175
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
176
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
177
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
178
  #: app/features/mec/notifications.php:1922
@@ -210,14 +210,14 @@ msgstr "Název vstupenky"
210
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
211
  #: app/features/autoemails.php:60 app/features/events.php:606
212
  #: app/features/events.php:2650 app/features/events.php:2717
213
- #: app/features/events.php:2806 app/features/events.php:4443
214
- #: app/features/fes.php:280 app/features/fes/form.php:810
215
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
216
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
217
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
218
  #: app/features/organizers.php:112 app/features/organizers.php:153
219
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
220
- #: app/features/speakers.php:205 app/libraries/main.php:653
221
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
222
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
223
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -373,8 +373,8 @@ msgstr "Datum"
373
  #: app/features/events.php:2808 app/features/mec/booking.php:800
374
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
375
  #: app/features/organizers.php:104 app/features/organizers.php:149
376
- #: app/features/speakers.php:120 app/features/speakers.php:201
377
- #: app/features/speakers.php:288 app/libraries/main.php:4252
378
  msgid "Tel"
379
  msgstr "Tel"
380
 
@@ -520,6 +520,12 @@ msgstr ""
520
  msgid "Agreement"
521
  msgstr "Smlouva"
522
 
 
 
 
 
 
 
523
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
524
  #, php-format
525
  msgid "Instead of %s, the page title with a link will be show."
@@ -697,8 +703,8 @@ msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
697
  #: app/features/events.php:1843 app/features/events.php:2014
698
  #: app/features/events.php:2029 app/features/events.php:2271
699
  #: app/features/events.php:2283 app/features/events.php:2476
700
- #: app/features/events.php:2513 app/features/fes/form.php:458
701
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
702
  #: app/features/locations.php:341 app/features/mec/booking.php:113
703
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
704
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -775,9 +781,9 @@ msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
775
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
776
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
777
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
778
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
779
- #: app/features/organizers.php:289 app/features/popup/event.php:128
780
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
781
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
782
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
783
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -941,8 +947,8 @@ msgstr ""
941
 
942
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
943
  #: app/features/events.php:432 app/features/events.php:1283
944
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
945
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
946
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
947
  #: app/skins/single.php:1126 app/skins/single/default.php:213
948
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1021,7 +1027,7 @@ msgid "How to set label"
1021
  msgstr ""
1022
 
1023
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1024
- #: app/features/events.php:4195 app/features/fes/form.php:998
1025
  #: app/features/labels.php:61 app/features/labels.php:227
1026
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1027
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1057,7 +1063,7 @@ msgid "How to set location"
1057
  msgstr "Skrýt místo"
1058
 
1059
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1060
- #: app/features/events.php:3876 app/features/events.php:4188
1061
  #: app/features/locations.php:58 app/features/locations.php:267
1062
  #: app/features/locations.php:329 app/features/locations.php:331
1063
  #: app/features/locations.php:340
@@ -1077,7 +1083,7 @@ msgstr "Skrýt místo"
1077
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1078
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1079
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1080
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1081
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1082
  #: app/features/search.php:97 app/libraries/main.php:3020
1083
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1091,7 +1097,7 @@ msgstr "Umístění"
1091
 
1092
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1093
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1094
- #: app/features/speakers.php:136 app/features/speakers.php:209
1095
  #: app/skins/single.php:1406 app/skins/single.php:1473
1096
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1097
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1114,7 +1120,7 @@ msgstr ""
1114
 
1115
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1116
  #: app/features/events.php:1519 app/features/events.php:1532
1117
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1118
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1119
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1120
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1165,8 +1171,8 @@ msgstr "Skrýt organizátora"
1165
 
1166
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1167
  #: app/features/events.php:431 app/features/events.php:3877
1168
- #: app/features/events.php:4190 app/features/events.php:4191
1169
- #: app/features/events.php:4192
1170
  #: app/features/mec/meta_boxes/display_options.php:1660
1171
  #: app/features/mec/meta_boxes/search_form.php:80
1172
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1181,12 +1187,12 @@ msgstr "Skrýt organizátora"
1181
  #: app/features/mec/meta_boxes/search_form.php:983
1182
  #: app/features/mec/meta_boxes/search_form.php:1070
1183
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1184
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1185
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1186
  #: app/features/organizers.php:58 app/features/organizers.php:208
1187
  #: app/features/organizers.php:277 app/features/organizers.php:279
1188
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1189
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1190
  #: app/features/popup/settings.php:263 app/features/search.php:103
1191
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1192
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1310,8 +1316,8 @@ msgstr "Čas"
1310
  #: app/features/booking/calendar_novel.php:145
1311
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1312
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1313
- #: app/libraries/render.php:554 app/libraries/render.php:758
1314
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1315
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1316
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1317
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1377,7 +1383,7 @@ msgstr "Nebyly nalezeny žádné události!"
1377
 
1378
  #: app/features/autoemails.php:74 app/features/events.php:230
1379
  #: app/features/labels.php:72 app/features/locations.php:70
1380
- #: app/features/organizers.php:70 app/features/speakers.php:72
1381
  #: app/features/tag.php:70
1382
  #, php-format
1383
  msgid "Edit %s"
@@ -1445,7 +1451,7 @@ msgstr "Výchozí hodnota je prázdná"
1445
  msgid "Go to events page"
1446
  msgstr "Zobrazit Mapy Google na stránce události"
1447
 
1448
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1449
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1450
  #: app/features/wc.php:91 app/libraries/main.php:3072
1451
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1527,7 +1533,7 @@ msgstr "Rezervace"
1527
  msgid "Back to Cart"
1528
  msgstr "← Zpět na %s"
1529
 
1530
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1531
  #: app/features/mec/settings.php:907
1532
  msgid "Event Color"
1533
  msgstr "Barva události"
@@ -1539,8 +1545,8 @@ msgid "Recent Colors"
1539
  msgstr "Barva události"
1540
 
1541
  #: app/features/contextual.php:55 app/features/mec.php:546
1542
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1543
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1544
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1545
  #: app/libraries/main.php:738
1546
  msgid "Settings"
@@ -1693,7 +1699,7 @@ msgid "Event Details/Single Event Page"
1693
  msgstr "Podrobnosti o události / Stránka jedné události"
1694
 
1695
  #: app/features/contextual.php:166 app/features/events.php:1298
1696
- #: app/features/fes/form.php:883
1697
  msgid "Currency Options"
1698
  msgstr "Možnosti Měna"
1699
 
@@ -1789,8 +1795,8 @@ msgid "Public File to Download"
1789
  msgstr ""
1790
 
1791
  #: app/features/dlfile.php:297 app/features/events.php:3874
1792
- #: app/features/events.php:4181 app/features/events.php:4730
1793
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1794
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1795
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1796
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1799,7 +1805,7 @@ msgid "Title"
1799
  msgstr "Název"
1800
 
1801
  #: app/features/dlfile.php:301 app/features/events.php:1988
1802
- #: app/features/events.php:2248 app/features/events.php:4182
1803
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1804
  #: app/libraries/hourlyschedule.php:152
1805
  msgid "Description"
@@ -1846,7 +1852,7 @@ msgid "Before"
1846
  msgstr "Před $10"
1847
 
1848
  #: app/features/emails/details.php:35 app/features/events.php:1223
1849
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1850
  msgid "After"
1851
  msgstr "Po"
1852
 
@@ -1857,7 +1863,7 @@ msgid "event occurrence."
1857
  msgstr "Další výskyt"
1858
 
1859
  #: app/features/emails/details.php:40 app/features/events.php:192
1860
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1861
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1862
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1863
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1878,11 +1884,11 @@ msgstr ""
1878
  msgid "Add Event"
1879
  msgstr "Přidat událost"
1880
 
1881
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1882
  msgid "Add New Event"
1883
  msgstr "Přidat novou událost"
1884
 
1885
- #: app/features/events.php:196 app/features/ix.php:4573
1886
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1887
  #: app/skins/map/tpl.php:93
1888
  msgid "No events found!"
@@ -1893,7 +1899,7 @@ msgid "Edit Event"
1893
  msgstr "Editace události"
1894
 
1895
  #: app/features/events.php:199 app/features/fes/list.php:100
1896
- #: app/features/popup/event.php:254
1897
  msgid "View Event"
1898
  msgstr "Zobrazit událost"
1899
 
@@ -1902,7 +1908,7 @@ msgid "No events found in Trash!"
1902
  msgstr "V koši nebyly nalezeny žádné události!"
1903
 
1904
  #: app/features/events.php:219 app/features/events.php:3831
1905
- #: app/features/events.php:4196 app/features/fes/form.php:972
1906
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1907
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1908
  #: app/libraries/main.php:7619
@@ -1911,49 +1917,49 @@ msgstr "Kategorie"
1911
 
1912
  #: app/features/events.php:229 app/features/labels.php:71
1913
  #: app/features/locations.php:69 app/features/organizers.php:69
1914
- #: app/features/speakers.php:71 app/features/tag.php:69
1915
  #, php-format
1916
  msgid "All %s"
1917
  msgstr "Všechny %s"
1918
 
1919
  #: app/features/events.php:231 app/features/labels.php:73
1920
  #: app/features/locations.php:71 app/features/organizers.php:71
1921
- #: app/features/speakers.php:73 app/features/tag.php:71
1922
  #, php-format
1923
  msgid "View %s"
1924
  msgstr "Zobrazit %s"
1925
 
1926
  #: app/features/events.php:232 app/features/labels.php:74
1927
  #: app/features/locations.php:72 app/features/organizers.php:72
1928
- #: app/features/speakers.php:74 app/features/tag.php:72
1929
  #, php-format
1930
  msgid "Update %s"
1931
  msgstr "Aktualizovat %s"
1932
 
1933
  #: app/features/events.php:233 app/features/labels.php:75
1934
  #: app/features/locations.php:73 app/features/organizers.php:73
1935
- #: app/features/speakers.php:75 app/features/tag.php:73
1936
  #, php-format
1937
  msgid "Add New %s"
1938
  msgstr "Přidat novou %s"
1939
 
1940
  #: app/features/events.php:234 app/features/labels.php:76
1941
  #: app/features/locations.php:74 app/features/organizers.php:74
1942
- #: app/features/speakers.php:76 app/features/tag.php:74
1943
  #, php-format
1944
  msgid "New %s Name"
1945
  msgstr "Nové jméno %s"
1946
 
1947
  #: app/features/events.php:235 app/features/labels.php:77
1948
  #: app/features/locations.php:75 app/features/organizers.php:75
1949
- #: app/features/speakers.php:77 app/features/tag.php:75
1950
  #, php-format
1951
  msgid "Popular %s"
1952
  msgstr "Populární %s"
1953
 
1954
  #: app/features/events.php:236 app/features/labels.php:78
1955
  #: app/features/locations.php:76 app/features/organizers.php:76
1956
- #: app/features/speakers.php:78 app/features/tag.php:76
1957
  #, php-format
1958
  msgid "Search %s"
1959
  msgstr "Vyhledat %s"
@@ -1983,7 +1989,7 @@ msgstr ""
1983
  #: app/features/events.php:278 app/features/events.php:336
1984
  #: app/features/locations.php:161 app/features/locations.php:213
1985
  #: app/features/organizers.php:133 app/features/organizers.php:164
1986
- #: app/features/speakers.php:181 app/features/speakers.php:232
1987
  msgid "Upload/Add image"
1988
  msgstr "Nahrát / přidat obrázek"
1989
 
@@ -1992,7 +1998,7 @@ msgstr "Nahrát / přidat obrázek"
1992
  #: app/features/locations.php:393 app/features/locations.php:400
1993
  #: app/features/organizers.php:134 app/features/organizers.php:165
1994
  #: app/features/organizers.php:316 app/features/organizers.php:323
1995
- #: app/features/speakers.php:182 app/features/speakers.php:233
1996
  msgid "Remove image"
1997
  msgstr "Odebrat obrázek"
1998
 
@@ -2012,7 +2018,7 @@ msgstr "Podrobnosti události"
2012
  msgid "Date And Time"
2013
  msgstr "Datum a čas"
2014
 
2015
- #: app/features/events.php:425 app/features/fes/form.php:384
2016
  msgid "Event Repeating"
2017
  msgstr "Opakování události"
2018
 
@@ -2059,10 +2065,10 @@ msgid "Guest Data"
2059
  msgstr "Údaje hosta"
2060
 
2061
  #: app/features/events.php:605 app/features/events.php:2641
2062
- #: app/features/events.php:4440 app/features/fes.php:280
2063
- #: app/features/fes/form.php:814 app/features/labels.php:184
2064
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2065
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2066
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2067
  msgid "Name"
2068
  msgstr "Jméno"
@@ -2073,13 +2079,13 @@ msgid ""
2073
  "overwrite in the next import from Google."
2074
  msgstr ""
2075
 
2076
- #: app/features/events.php:619 app/features/fes/form.php:282
2077
  msgid "Date and Time"
2078
  msgstr "Datum a čas"
2079
 
2080
  #: app/features/events.php:622 app/features/events.php:626
2081
- #: app/features/events.php:3878 app/features/events.php:4183
2082
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2083
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2084
  #: app/features/mec/meta_boxes/display_options.php:57
2085
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2097,13 +2103,13 @@ msgstr "Datum a čas"
2097
  #: app/features/mec/meta_boxes/display_options.php:2347
2098
  #: app/features/mec/meta_boxes/display_options.php:2478
2099
  #: app/features/mec/meta_boxes/display_options.php:2584
2100
- #: app/features/popup/event.php:77
2101
  msgid "Start Date"
2102
  msgstr "Počátečná den"
2103
 
2104
  #: app/features/events.php:642 app/features/events.php:646
2105
- #: app/features/events.php:3879 app/features/events.php:4185
2106
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2107
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2108
  #: app/features/mec/meta_boxes/display_options.php:73
2109
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2112,33 +2118,33 @@ msgstr "Počátečná den"
2112
  #: app/features/mec/meta_boxes/display_options.php:788
2113
  #: app/features/mec/meta_boxes/display_options.php:1618
2114
  #: app/features/mec/meta_boxes/display_options.php:2363
2115
- #: app/features/popup/event.php:94
2116
  msgid "End Date"
2117
  msgstr "Konečný den"
2118
 
2119
- #: app/features/events.php:669 app/features/fes/form.php:324
2120
- #: app/features/popup/event.php:111
2121
  #, fuzzy
2122
  #| msgid "All Day Event"
2123
  msgid "All-day Event"
2124
  msgstr "Celodenní událost"
2125
 
2126
- #: app/features/events.php:679 app/features/fes/form.php:327
2127
  msgid "Hide Event Time"
2128
  msgstr "Skrýt čas události"
2129
 
2130
- #: app/features/events.php:689 app/features/fes/form.php:330
2131
  msgid "Hide Event End Time"
2132
  msgstr "Skrýt čas ukončení události"
2133
 
2134
  #: app/features/events.php:694 app/features/events.php:698
2135
- #: app/features/fes/form.php:334
2136
  #, fuzzy
2137
  #| msgid "Note to reviewer"
2138
  msgid "Notes on the time"
2139
  msgstr "Poznámka pro recenzenta"
2140
 
2141
- #: app/features/events.php:699 app/features/fes/form.php:335
2142
  #, fuzzy
2143
  #| msgid ""
2144
  #| "It shows next to event time on single event page. You can insert Timezone "
@@ -2150,7 +2156,7 @@ msgstr ""
2150
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
2151
  "můžete vložit časové pásmo atd."
2152
 
2153
- #: app/features/events.php:711 app/features/fes/form.php:342
2154
  #, fuzzy
2155
  #| msgid "Timezone: %s"
2156
  msgid "Timezone"
@@ -2161,55 +2167,55 @@ msgstr "Časové pásmo: %s"
2161
  #: app/features/events.php:1793 app/features/events.php:1813
2162
  #: app/features/events.php:1868 app/features/events.php:2438
2163
  #: app/features/events.php:2561 app/features/events.php:2672
2164
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2165
  msgid "Inherit from global options"
2166
  msgstr "Zdědí z globálních možností"
2167
 
2168
  #: app/features/events.php:725 app/features/events.php:728
2169
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2170
  #: app/features/mec/settings.php:858
2171
  #, fuzzy
2172
  #| msgid "Countdown View"
2173
  msgid "Countdown Method"
2174
  msgstr "Zobrazení odpočítávání"
2175
 
2176
- #: app/features/events.php:730 app/features/fes/form.php:361
2177
  #, fuzzy
2178
  #| msgid "On Event Start"
2179
  msgid "Count to Event Start"
2180
  msgstr "Při spuštění události"
2181
 
2182
- #: app/features/events.php:731 app/features/fes/form.php:362
2183
  #, fuzzy
2184
  #| msgid "On Event End"
2185
  msgid "Count to Event End"
2186
  msgstr "Na konci události"
2187
 
2188
- #: app/features/events.php:737 app/features/fes/form.php:369
2189
  #: app/modules/weather/darksky.php:57
2190
  msgid "Visibility"
2191
  msgstr "Viditelnost"
2192
 
2193
- #: app/features/events.php:740 app/features/fes/form.php:372
2194
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2195
  #, fuzzy
2196
  #| msgid "Visibility"
2197
  msgid "Event Visibility"
2198
  msgstr "Viditelnost"
2199
 
2200
- #: app/features/events.php:741 app/features/fes/form.php:373
2201
  #, fuzzy
2202
  #| msgid "Booking Style"
2203
  msgid "Show on Shortcodes"
2204
  msgstr "Styl rezervace"
2205
 
2206
- #: app/features/events.php:742 app/features/fes/form.php:374
2207
  #, fuzzy
2208
  #| msgid "Shortcodes"
2209
  msgid "Hide on Shortcodes"
2210
  msgstr "Zkrácené kódy"
2211
 
2212
- #: app/features/events.php:749 app/features/fes/form.php:382
2213
  msgid "Repeating"
2214
  msgstr "Opakování"
2215
 
@@ -2217,63 +2223,68 @@ msgstr "Opakování"
2217
  msgid "Event Repeating (Recurring events)"
2218
  msgstr "Opakování události (opakující se události)"
2219
 
2220
- #: app/features/events.php:762 app/features/fes/form.php:388
2221
  msgid "Repeats"
2222
  msgstr "Opakování"
2223
 
2224
- #: app/features/events.php:770 app/features/fes/form.php:390
2225
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2226
  #: app/skins/full_calendar/tpl.php:140
2227
  msgid "Daily"
2228
  msgstr "Děnně"
2229
 
2230
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2231
  msgid "Every Weekday"
2232
  msgstr "Každý všední den"
2233
 
2234
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2235
  msgid "Every Weekend"
2236
  msgstr "Každý víkend"
2237
 
2238
- #: app/features/events.php:791 app/features/fes/form.php:393
2239
  msgid "Certain Weekdays"
2240
  msgstr "Určité pracovní dny"
2241
 
2242
- #: app/features/events.php:798 app/features/fes/form.php:394
2243
- #: app/skins/default_full_calendar/tpl.php:78
2244
  #: app/skins/full_calendar/tpl.php:139
2245
  msgid "Weekly"
2246
  msgstr "Týdně"
2247
 
2248
- #: app/features/events.php:805 app/features/fes/form.php:395
2249
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2250
  #: app/skins/full_calendar/tpl.php:138
2251
  msgid "Monthly"
2252
  msgstr "Měsíčně"
2253
 
2254
- #: app/features/events.php:812 app/features/fes/form.php:396
2255
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2256
  #: app/skins/full_calendar/tpl.php:137
2257
  msgid "Yearly"
2258
  msgstr "Ročně"
2259
 
2260
- #: app/features/events.php:819 app/features/fes/form.php:397
2261
  msgid "Custom Days"
2262
  msgstr "Vlastní dny"
2263
 
2264
- #: app/features/events.php:826 app/features/fes/form.php:398
2265
  msgid "Advanced"
2266
  msgstr "Pokročilé"
2267
 
2268
- #: app/features/events.php:831 app/features/fes/form.php:402
2269
  msgid "Repeat Interval"
2270
  msgstr "Interval opakování"
2271
 
2272
- #: app/features/events.php:833 app/features/fes/form.php:403
2273
  msgid "Repeat interval"
2274
  msgstr "Interval opakování"
2275
 
2276
- #: app/features/events.php:837 app/features/fes/form.php:406
2277
  msgid "Week Days"
2278
  msgstr "Dny v týdnu"
2279
 
@@ -2287,7 +2298,7 @@ msgstr "Pro verze doplňku Modern Events Calendar"
2287
 
2288
  #: app/features/events.php:860 app/features/events.php:2101
2289
  #: app/features/events.php:2129 app/features/events.php:2343
2290
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2291
  #: app/features/ix/import_g_calendar.php:51
2292
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2293
  #: app/libraries/skins.php:1389
@@ -2298,17 +2309,17 @@ msgstr "Začátek"
2298
  #: app/features/events.php:2085 app/features/events.php:2167
2299
  #: app/features/events.php:2332 app/features/events.php:2376
2300
  #: app/features/events.php:2449 app/features/events.php:2566
2301
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2302
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2303
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2304
  msgid "Add"
2305
  msgstr "Přidat"
2306
 
2307
- #: app/features/events.php:877 app/features/fes/form.php:454
2308
  msgid "Custom Days Repeating"
2309
  msgstr "Opakování vlastních dnů"
2310
 
2311
- #: app/features/events.php:880 app/features/fes/form.php:457
2312
  #, fuzzy
2313
  #| msgid ""
2314
  #| "Add certain days to event occurrence dates. If you have single day event, "
@@ -2325,45 +2336,45 @@ msgstr ""
2325
 
2326
  #: app/features/events.php:891 app/features/events.php:2105
2327
  #: app/features/events.php:2133 app/features/events.php:2347
2328
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2329
  msgid "End"
2330
  msgstr "Konec"
2331
 
2332
- #: app/features/events.php:968 app/features/fes/form.php:530
2333
  msgid "First"
2334
  msgstr "První"
2335
 
2336
- #: app/features/events.php:1010 app/features/fes/form.php:572
2337
  msgid "Second"
2338
  msgstr "Druhá"
2339
 
2340
- #: app/features/events.php:1052 app/features/fes/form.php:614
2341
  msgid "Third"
2342
  msgstr "Třetí"
2343
 
2344
- #: app/features/events.php:1094 app/features/fes/form.php:656
2345
  msgid "Fourth"
2346
  msgstr "Čtvrtá"
2347
 
2348
- #: app/features/events.php:1136 app/features/fes/form.php:698
2349
  msgid "Last"
2350
  msgstr "Poslední"
2351
 
2352
- #: app/features/events.php:1183 app/features/fes/form.php:744
2353
  msgid "Ends Repeat"
2354
  msgstr "Ukončení opakování"
2355
 
2356
- #: app/features/events.php:1195 app/features/fes/form.php:748
2357
  msgid "Never"
2358
  msgstr "Nikdy"
2359
 
2360
  # Možná Zapnuto
2361
- #: app/features/events.php:1207 app/features/fes/form.php:753
2362
  msgid "On"
2363
  msgstr "Na"
2364
 
2365
  #: app/features/events.php:1227 app/features/events.php:1231
2366
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2367
  msgid "Occurrences times"
2368
  msgstr "Časy výskytu"
2369
 
@@ -2379,14 +2390,14 @@ msgstr ""
2379
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
2380
  "hodnotu 10, událost skončí po 10 opakováních."
2381
 
2382
- #: app/features/events.php:1248 app/features/fes/form.php:779
2383
  #, fuzzy
2384
  #| msgid "Next Occurrence of Other Events"
2385
  msgid "Show only one occurrence of this event"
2386
  msgstr "Další výskyt dalších událostí"
2387
 
2388
- #: app/features/events.php:1277 app/features/events.php:4193
2389
- #: app/features/fes/form.php:865
2390
  #: app/features/mec/meta_boxes/search_form.php:116
2391
  #: app/features/mec/meta_boxes/search_form.php:204
2392
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2410,75 +2421,75 @@ msgstr "Další výskyt dalších událostí"
2410
  #: app/features/mec/notifications.php:1511
2411
  #: app/features/mec/notifications.php:1628
2412
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2413
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2414
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2415
  #: app/widgets/single.php:122
2416
  msgid "Event Cost"
2417
  msgstr "Cena události"
2418
 
2419
- #: app/features/events.php:1292 app/features/fes/form.php:877
2420
  #, fuzzy
2421
  #| msgid "Show weather imperial units"
2422
  msgid "Show the minimum price based on tickets"
2423
  msgstr "Zobrazit britské jednotky počasí"
2424
 
2425
- #: app/features/events.php:1300 app/features/fes/form.php:885
2426
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2427
  #: app/libraries/main.php:646
2428
  msgid "Currency"
2429
  msgstr "Měna"
2430
 
2431
  #: app/features/events.php:1310 app/features/events.php:1315
2432
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2433
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2434
  msgid "Currency Sign"
2435
  msgstr "Symbol měny"
2436
 
2437
- #: app/features/events.php:1316 app/features/fes/form.php:901
2438
  #: app/features/mec/settings.php:600
2439
  msgid "Default value will be \"currency\" if you leave it empty."
2440
  msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
2441
 
2442
- #: app/features/events.php:1323 app/features/fes/form.php:908
2443
  #: app/features/mec/settings.php:607
2444
  msgid "Currency Position"
2445
  msgstr "Pozice měny"
2446
 
2447
- #: app/features/events.php:1326 app/features/fes/form.php:911
2448
  #: app/features/mec/settings.php:610
2449
  #, fuzzy
2450
  #| msgid "Before $10"
2451
  msgid "$10 (Before)"
2452
  msgstr "Před $10"
2453
 
2454
- #: app/features/events.php:1327 app/features/fes/form.php:912
2455
  #: app/features/mec/settings.php:611
2456
  msgid "$ 10 (Before with Space)"
2457
  msgstr ""
2458
 
2459
- #: app/features/events.php:1328 app/features/fes/form.php:913
2460
  #: app/features/mec/settings.php:612
2461
  #, fuzzy
2462
  #| msgid "After"
2463
  msgid "10$ (After)"
2464
  msgstr "Po"
2465
 
2466
- #: app/features/events.php:1329 app/features/fes/form.php:914
2467
  #: app/features/mec/settings.php:613
2468
  msgid "10 $ (After with Space)"
2469
  msgstr ""
2470
 
2471
- #: app/features/events.php:1334 app/features/fes/form.php:919
2472
  #: app/features/mec/settings.php:618
2473
  msgid "Thousand Separator"
2474
  msgstr "Oddělovač tisíců"
2475
 
2476
- #: app/features/events.php:1340 app/features/fes/form.php:925
2477
  #: app/features/mec/settings.php:624
2478
  msgid "Decimal Separator"
2479
  msgstr "Oddělovač desítel"
2480
 
2481
- #: app/features/events.php:1350 app/features/fes/form.php:935
2482
  #: app/features/mec/settings.php:634
2483
  msgid "No decimal"
2484
  msgstr "Bez desetinných míst"
@@ -2505,21 +2516,21 @@ msgstr ""
2505
  msgid "Day 1"
2506
  msgstr "Den 1"
2507
 
2508
- #: app/features/events.php:1498 app/features/fes/form.php:829
2509
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2510
  msgid "Event Links"
2511
  msgstr "Odkazy na událost"
2512
 
2513
  #: app/features/events.php:1501 app/features/events.php:1509
2514
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2515
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2516
  #: app/libraries/main.php:7649
2517
  msgid "Event Link"
2518
  msgstr "Odkaz na událost"
2519
 
2520
  #: app/features/events.php:1504 app/features/events.php:1522
2521
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2522
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2523
  msgid "eg. http://yoursite.com/your-event"
2524
  msgstr "např. http://yoursite.com/vase-udalost"
2525
 
@@ -2542,24 +2553,24 @@ msgstr ""
2542
  msgid "URL Shortener"
2543
  msgstr "Zkracovač URL"
2544
 
2545
- #: app/features/events.php:1525 app/features/fes/form.php:838
2546
- #: app/features/occurrences.php:527
2547
  msgid "More Information"
2548
  msgstr "Více informací"
2549
 
2550
- #: app/features/events.php:1527 app/features/fes/form.php:840
2551
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2552
  #: app/features/popup/shortcode.php:481
2553
  msgid "Current Window"
2554
  msgstr "Aktuální okno"
2555
 
2556
- #: app/features/events.php:1528 app/features/fes/form.php:841
2557
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2558
  #: app/features/popup/shortcode.php:485
2559
  msgid "New Window"
2560
  msgstr "Nové okno"
2561
 
2562
- #: app/features/events.php:1533 app/features/fes/form.php:843
2563
  msgid ""
2564
  "If you fill it, it will be shown in event details page as an optional link. "
2565
  "Insert full link including http(s)://"
@@ -2944,9 +2955,9 @@ msgid "Ticket ID"
2944
  msgstr "Vstupenka"
2945
 
2946
  #: app/features/events.php:1944 app/features/events.php:2211
2947
- #: app/features/events.php:4180 app/features/fes.php:280
2948
  #: app/features/labels.php:183 app/features/locations.php:266
2949
- #: app/features/organizers.php:207 app/features/speakers.php:285
2950
  msgid "ID"
2951
  msgstr "ID"
2952
 
@@ -2955,12 +2966,12 @@ msgid "Ticket Name"
2955
  msgstr "Název vstupenky"
2956
 
2957
  #: app/features/events.php:1956 app/features/events.php:2219
2958
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2959
  msgid "Start Time"
2960
  msgstr "Začátek"
2961
 
2962
  #: app/features/events.php:1970 app/features/events.php:2233
2963
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2964
  msgid "End Time"
2965
  msgstr "Konec"
2966
 
@@ -2982,7 +2993,7 @@ msgstr ""
2982
  #: app/features/events.php:2007 app/features/events.php:2011
2983
  #: app/features/events.php:2109 app/features/events.php:2136
2984
  #: app/features/events.php:2265 app/features/events.php:2268
2985
- #: app/features/events.php:2349 app/features/events.php:4739
2986
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2987
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2988
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3157,7 +3168,7 @@ msgstr "Limit účastníků"
3157
  msgid "Fixed Fields"
3158
  msgstr "Požadovaná pole"
3159
 
3160
- #: app/features/events.php:2887 app/features/events.php:4733
3161
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3162
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3163
  msgid "Attendees"
@@ -3189,7 +3200,7 @@ msgid "Expired Events"
3189
  msgstr "Události vypršely"
3190
 
3191
  #: app/features/events.php:3757 app/features/mec.php:1374
3192
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3193
  msgid "Upcoming Events"
3194
  msgstr "Nadcházející události"
3195
 
@@ -3250,15 +3261,15 @@ msgid "JSON Export"
3250
  msgstr "JSON Export"
3251
 
3252
  #: app/features/events.php:4068 app/features/events.php:4069
3253
- #: app/features/events.php:4293
3254
  msgid "Duplicate"
3255
  msgstr "Duplikát"
3256
 
3257
- #: app/features/events.php:4187
3258
  msgid "Link"
3259
  msgstr "Odkaz"
3260
 
3261
- #: app/features/events.php:4189 app/features/locations.php:111
3262
  #: app/features/locations.php:181 app/features/locations.php:268
3263
  #: app/features/mec/meta_boxes/search_form.php:108
3264
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3276,32 +3287,32 @@ msgstr "Odkaz"
3276
  msgid "Address"
3277
  msgstr "Adresa"
3278
 
3279
- #: app/features/events.php:4191
3280
  #, php-format
3281
  msgid "%s Tel"
3282
  msgstr "%s Tel"
3283
 
3284
- #: app/features/events.php:4192
3285
  #, php-format
3286
  msgid "%s Email"
3287
  msgstr "%s Email"
3288
 
3289
  # v kontextu
3290
- #: app/features/events.php:4194 app/features/fes/form.php:951
3291
  #: app/features/mec/settings.php:876
3292
  msgid "Featured Image"
3293
  msgstr "Hlavní obrázek"
3294
 
3295
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3296
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3297
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3298
  msgid "Tags"
3299
  msgstr "Tagy"
3300
 
3301
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3302
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3303
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3304
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3305
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3306
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3307
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3309,40 +3320,40 @@ msgstr "Tagy"
3309
  msgid "Speakers"
3310
  msgstr "Řečníci"
3311
 
3312
- #: app/features/events.php:4446 app/features/fes.php:280
3313
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3314
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3315
  #: app/libraries/main.php:7592
3316
  msgid "Ticket"
3317
  msgstr "Vstupenka"
3318
 
3319
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3320
  msgid "Variations"
3321
  msgstr "Variace"
3322
 
3323
- #: app/features/events.php:4464 app/features/fes.php:356
3324
  msgid "Unknown"
3325
  msgstr "Neznámý"
3326
 
3327
- #: app/features/events.php:4492
3328
  msgid ""
3329
  "If you want to send an email, first select your attendees and then click in "
3330
  "the button below, please."
3331
  msgstr ""
3332
 
3333
- #: app/features/events.php:4492 app/features/mec/report.php:57
3334
  #, fuzzy
3335
  #| msgid "Organizer Email"
3336
  msgid "Send Email"
3337
  msgstr "Organizátor Email"
3338
 
3339
- #: app/features/events.php:4496
3340
  #, fuzzy
3341
  #| msgid "Attendees Form"
3342
  msgid "No Attendees Found!"
3343
  msgstr "Formulář účastníků"
3344
 
3345
- #: app/features/events.php:4797
3346
  #, fuzzy
3347
  #| msgid "No bookings found!"
3348
  msgid "No Bookings Found!"
@@ -3491,70 +3502,70 @@ msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
3491
  msgid "The event published."
3492
  msgstr "Událost byla publikována."
3493
 
3494
- #: app/features/fes/form.php:178
3495
  msgid "Go back to events list"
3496
  msgstr "Přejít zpět na seznam událostí"
3497
 
3498
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3499
  #: app/features/mec/settings.php:1171
3500
  msgid "Excerpt"
3501
  msgstr ""
3502
 
3503
- #: app/features/fes/form.php:271
3504
  #, fuzzy
3505
  #| msgid "On Event Start"
3506
  msgid "Optional Event Excerpt"
3507
  msgstr "Při spuštění události"
3508
 
3509
- #: app/features/fes/form.php:278
3510
  msgid ""
3511
  "This event is imported from Google calendar so if you modify it would "
3512
  "overwrite in the next import from Google."
3513
  msgstr ""
3514
 
3515
- #: app/features/fes/form.php:407
3516
  #: app/features/mec/meta_boxes/display_options.php:1494
3517
  #: app/libraries/main.php:476
3518
  msgid "Monday"
3519
  msgstr "Pondělí"
3520
 
3521
- #: app/features/fes/form.php:408
3522
  #: app/features/mec/meta_boxes/display_options.php:1495
3523
  #: app/libraries/main.php:476
3524
  msgid "Tuesday"
3525
  msgstr "Úterý"
3526
 
3527
- #: app/features/fes/form.php:409
3528
  #: app/features/mec/meta_boxes/display_options.php:1496
3529
  #: app/libraries/main.php:476
3530
  msgid "Wednesday"
3531
  msgstr "Středa"
3532
 
3533
- #: app/features/fes/form.php:410
3534
  #: app/features/mec/meta_boxes/display_options.php:1497
3535
  #: app/libraries/main.php:476
3536
  msgid "Thursday"
3537
  msgstr "Čtvrtek"
3538
 
3539
- #: app/features/fes/form.php:411
3540
  #: app/features/mec/meta_boxes/display_options.php:1498
3541
  #: app/libraries/main.php:476
3542
  msgid "Friday"
3543
  msgstr "Pátek"
3544
 
3545
- #: app/features/fes/form.php:412
3546
  #: app/features/mec/meta_boxes/display_options.php:1499
3547
  #: app/libraries/main.php:476
3548
  msgid "Saturday"
3549
  msgstr "Sobota"
3550
 
3551
- #: app/features/fes/form.php:413
3552
  #: app/features/mec/meta_boxes/display_options.php:1493
3553
  #: app/libraries/main.php:476
3554
  msgid "Sunday"
3555
  msgstr "Neděle"
3556
 
3557
- #: app/features/fes/form.php:766
3558
  msgid ""
3559
  "The event will finish after certain repeats. For example if you set it to "
3560
  "10, the event will finish after 10 repeats."
@@ -3562,24 +3573,24 @@ msgstr ""
3562
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
3563
  "hodnotu 10, událost skončí po 10 opakováních."
3564
 
3565
- #: app/features/fes/form.php:790
3566
  msgid "Note to reviewer"
3567
  msgstr "Poznámka pro recenzenta"
3568
 
3569
- #: app/features/fes/form.php:808
3570
  msgid "User Data"
3571
  msgstr "Údaje uživatele"
3572
 
3573
- #: app/features/fes/form.php:811
3574
  msgid "eg. yourname@gmail.com"
3575
  msgstr "např. vasejmeno@gmail.com"
3576
 
3577
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3578
- #: app/features/popup/event.php:185
3579
  msgid "eg. John Smith"
3580
  msgstr "např. Jan Novák"
3581
 
3582
- #: app/features/fes/form.php:833
3583
  #, fuzzy
3584
  #| msgid ""
3585
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3591,41 +3602,41 @@ msgstr ""
3591
  "Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
3592
  "Vložte celý odkaz včetně http (s): //"
3593
 
3594
- #: app/features/fes/form.php:956
3595
  msgid "Remove Image"
3596
  msgstr "Odebrat obrázek"
3597
 
3598
- #: app/features/fes/form.php:1046
3599
  msgid "Insert your desired tags, comma separated."
3600
  msgstr "Vložte požadované tagy oddělené čárkami."
3601
 
3602
- #: app/features/fes/form.php:1068
3603
  msgid "Speakers Names"
3604
  msgstr "Jméno řečníka"
3605
 
3606
- #: app/features/fes/form.php:1069
3607
  #, fuzzy
3608
  #| msgid "Separate names with commas Similar Justin, Cris"
3609
  msgid "Separate names with commas: Justin, Chris"
3610
  msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
3611
 
3612
- #: app/features/fes/form.php:1114
3613
  #, fuzzy, php-format
3614
  #| msgid "Please %s/%s in order to submit new events."
3615
  msgid "I accept the %s in order to submit an event."
3616
  msgstr "Prosím %s/%s za účelem odeslání nových událostí."
3617
 
3618
- #: app/features/fes/form.php:1114
3619
  msgid "Privacy Policy"
3620
  msgstr ""
3621
 
3622
- #: app/features/fes/form.php:1116
3623
  #, fuzzy
3624
  #| msgid "Please %s/%s in order to submit new events."
3625
  msgid "I accept the Privacy Policy in order to submit an event."
3626
  msgstr "Prosím %s/%s za účelem odeslání nových událostí."
3627
 
3628
- #: app/features/fes/form.php:1122
3629
  #, fuzzy
3630
  #| msgid "Edit Event"
3631
  msgid "Submit Event"
@@ -3710,56 +3721,56 @@ msgstr "Typ souboru by měl být XML nebo ICS."
3710
  msgid "The events are imported successfully!"
3711
  msgstr "Události byly úspěšně importovány!"
3712
 
3713
- #: app/features/ix.php:1301
3714
  msgid "Third Party plugin is not installed and activated!"
3715
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
3716
 
3717
- #: app/features/ix.php:1325
3718
  msgid "Third Party plugin is invalid!"
3719
  msgstr "Plugin třetí strany je neplatný!"
3720
 
3721
- #: app/features/ix.php:3300 app/features/ix.php:3361
3722
  #, fuzzy
3723
  #| msgid "Both of API key and Calendar ID are required!"
3724
  msgid "API key and Calendar ID are required!"
3725
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
3726
 
3727
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3728
  #, fuzzy
3729
  #| msgid "Please select some events to import!"
3730
  msgid "Please select events to import!"
3731
  msgstr "Vyberte události, které chcete importovat!"
3732
 
3733
- #: app/features/ix.php:3794 app/features/ix.php:3857
3734
  #, fuzzy
3735
  #| msgid "Both of API key and Group URL are required!"
3736
  msgid "API key and Group URL are required!"
3737
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
3738
 
3739
- #: app/features/ix.php:4096
3740
  msgid "Check at Meetup"
3741
  msgstr "Ověřit Meetup"
3742
 
3743
  # Client Secret dle kontextu
3744
- #: app/features/ix.php:4262
3745
  #, fuzzy
3746
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3747
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3748
  msgstr ""
3749
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
3750
 
3751
- #: app/features/ix.php:4285
3752
  #, fuzzy, php-format
3753
  #| msgid "All seems good! Please click %s for authenticating your app."
3754
  msgid "All seems good! Please click %s to authenticate your app."
3755
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
3756
 
3757
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3758
  #: app/features/mec/settings.php:1496
3759
  msgid "here"
3760
  msgstr ""
3761
 
3762
- #: app/features/ix.php:4340
3763
  #, fuzzy
3764
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3765
  msgid "Client App, Client Secret, and Calendar ID are all required!"
@@ -3767,28 +3778,28 @@ msgstr ""
3767
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
3768
  "povinné!"
3769
 
3770
- #: app/features/ix.php:4502
3771
  #, fuzzy, php-format
3772
  #| msgid "%s events added to Google Calendar successfully."
3773
  msgid "%s events added to Google Calendar with success."
3774
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
3775
 
3776
- #: app/features/ix.php:4503
3777
  #, fuzzy, php-format
3778
  #| msgid "%s previously added events get updated."
3779
  msgid "%s Updated previously added events."
3780
  msgstr "% s dříve přidané události byly aktualizovány."
3781
 
3782
- #: app/features/ix.php:4504
3783
  #, php-format
3784
  msgid "%s events failed to add for following reasons: %s"
3785
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
3786
 
3787
- #: app/features/ix.php:4536
3788
  msgid "Please insert your Facebook page's link."
3789
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
3790
 
3791
- #: app/features/ix.php:4547 app/features/ix.php:4589
3792
  #, fuzzy
3793
  #| msgid ""
3794
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3800,7 +3811,7 @@ msgstr ""
3800
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
3801
  "poskytněte nám platný odkaz na stránku Facebooku."
3802
 
3803
- #: app/features/ix.php:4584
3804
  msgid "Please insert your facebook page's link."
3805
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
3806
 
@@ -4014,7 +4025,7 @@ msgstr "Účastníci akce"
4014
  msgid "Add to Google Calendar"
4015
  msgstr "Přidat do Google kalendáře"
4016
 
4017
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
4018
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
4019
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
4020
  #: app/features/mec/single.php:604
@@ -4133,7 +4144,7 @@ msgstr "Import z Facebook kalendáře"
4133
  msgid "Import all of your Facebook events into MEC."
4134
  msgstr "Importujte všechny své události na Facebooku do MEC."
4135
 
4136
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4137
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4138
  msgid "Documentation"
4139
  msgstr "Dokumentace"
@@ -4455,7 +4466,7 @@ msgstr ""
4455
  "jeden po druhém na stránce úprav události MEC a ujistit se, že jsou správné."
4456
 
4457
  #: app/features/labels.php:79 app/features/locations.php:77
4458
- #: app/features/organizers.php:77 app/features/speakers.php:79
4459
  #: app/features/tag.php:77
4460
  #, fuzzy, php-format
4461
  #| msgid "← Back to %s"
@@ -4463,7 +4474,7 @@ msgid "← Back to %s"
4463
  msgstr "← Zpět na %s"
4464
 
4465
  #: app/features/labels.php:80 app/features/locations.php:78
4466
- #: app/features/organizers.php:78 app/features/speakers.php:80
4467
  #: app/features/tag.php:78
4468
  #, fuzzy, php-format
4469
  #| msgid "No events found!"
@@ -4510,7 +4521,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4510
  msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
4511
 
4512
  #: app/features/labels.php:186 app/features/locations.php:269
4513
- #: app/features/organizers.php:210 app/features/speakers.php:289
4514
  #: app/modules/booking/steps/tickets.php:172
4515
  msgid "Count"
4516
  msgstr "Spočítat"
@@ -4527,7 +4538,7 @@ msgid "Event %s"
4527
  msgstr "Událost %s"
4528
 
4529
  #: app/features/locations.php:59 app/features/mec.php:526
4530
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4531
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4532
  #: app/libraries/main.php:7623
4533
  msgid "Locations"
@@ -4538,7 +4549,7 @@ msgid "Enter the location address"
4538
  msgstr "Vložit adresu místa"
4539
 
4540
  #: app/features/locations.php:131 app/features/locations.php:197
4541
- #: app/features/locations.php:374 app/features/popup/event.php:149
4542
  msgid "Latitude"
4543
  msgstr "Zeměpisná šířka"
4544
 
@@ -4549,7 +4560,7 @@ msgid "Geo latitude (Optional for Lite)"
4549
  msgstr "Zeměpisná šířka (volitelné)"
4550
 
4551
  #: app/features/locations.php:139 app/features/locations.php:201
4552
- #: app/features/locations.php:375 app/features/popup/event.php:150
4553
  msgid "Longitude"
4554
  msgstr "Zeměpisná délka"
4555
 
@@ -4574,22 +4585,22 @@ msgstr "Zeměpisná šířka (volitelné)"
4574
 
4575
  #: app/features/locations.php:156 app/features/locations.php:210
4576
  #: app/features/organizers.php:128 app/features/organizers.php:161
4577
- #: app/features/speakers.php:176 app/features/speakers.php:229
4578
  msgid "Thumbnail"
4579
  msgstr "Náhled"
4580
 
4581
  #: app/features/locations.php:329 app/features/occurrences.php:460
4582
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4583
  #, php-format
4584
  msgid "Event Main %s"
4585
  msgstr "Hlavní událost %s"
4586
 
4587
  #: app/features/locations.php:332 app/features/occurrences.php:464
4588
- #: app/features/popup/event.php:119
4589
  msgid "Hide location"
4590
  msgstr "Skrýt místo"
4591
 
4592
- #: app/features/locations.php:333 app/features/popup/event.php:120
4593
  msgid "Insert a new location"
4594
  msgstr "Vložit nové místo"
4595
 
@@ -4597,28 +4608,28 @@ msgstr "Vložit nové místo"
4597
  msgid "Choose one of saved locations or insert new one below."
4598
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
4599
 
4600
- #: app/features/locations.php:348 app/features/popup/event.php:141
4601
  msgid "Location Name"
4602
  msgstr "Název místa"
4603
 
4604
- #: app/features/locations.php:349 app/features/popup/event.php:142
4605
  msgid "eg. City Hall"
4606
  msgstr "např. Radnice"
4607
 
4608
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4609
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4610
  msgid "Event Location"
4611
  msgstr "Místo události"
4612
 
4613
- #: app/features/locations.php:353 app/features/popup/event.php:146
4614
  msgid "eg. City hall, Manhattan, New York"
4615
  msgstr "např. Radnice, Dominikánská 2, Brno"
4616
 
4617
- #: app/features/locations.php:378 app/features/popup/event.php:153
4618
  msgid "Latitude/Longitude"
4619
  msgstr "Zeměpisná šířka / délka"
4620
 
4621
- #: app/features/locations.php:379 app/features/popup/event.php:154
4622
  msgid ""
4623
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4624
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4632,26 +4643,26 @@ msgstr ""
4632
  "místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
4633
  "na mapě a vyhledejte souřadnice délky a šířky."
4634
 
4635
- #: app/features/locations.php:379 app/features/popup/event.php:154
4636
  msgid "Get Latitude and Longitude"
4637
  msgstr "Získejte šířku a délku"
4638
 
4639
  #: app/features/locations.php:392 app/features/organizers.php:315
4640
- #: app/features/popup/event.php:204
4641
  msgid "Choose image"
4642
  msgstr "Vyberte obrázek"
4643
 
4644
- #: app/features/locations.php:406 app/features/occurrences.php:480
4645
- #: app/features/popup/event.php:137
4646
  msgid "Don't show map in single event page"
4647
  msgstr "Nezobrazovat mapu na jednostránkové události"
4648
 
4649
- #: app/features/locations.php:409 app/libraries/main.php:7607
4650
  #: app/libraries/main.php:7654
4651
  msgid "Other Locations"
4652
  msgstr "Další místa"
4653
 
4654
- #: app/features/locations.php:411
4655
  msgid ""
4656
  "You can select extra locations in addition to main location if you like."
4657
  msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
@@ -4732,7 +4743,7 @@ msgstr "MEC - podpora"
4732
  msgid "Support"
4733
  msgstr "Podpora"
4734
 
4735
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4736
  #: app/features/mec/meta_boxes/filter.php:71
4737
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4738
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4740,7 +4751,7 @@ msgid "Organizers"
4740
  msgstr "Organizátoři"
4741
 
4742
  #: app/features/mec.php:536 app/features/mec.php:596
4743
- #: app/features/mec/dashboard.php:221
4744
  msgid "Shortcodes"
4745
  msgstr "Zkrácené kódy"
4746
 
@@ -4957,7 +4968,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4957
  msgstr ""
4958
 
4959
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4960
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4961
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4962
  msgid "Version"
4963
  msgstr "Verze"
@@ -4984,9 +4995,9 @@ msgid "Search..."
4984
  msgstr "Vyhledávání ..."
4985
 
4986
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4987
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4988
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4989
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4990
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4991
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4992
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5588,29 +5599,29 @@ msgstr "Brána WooCommerce"
5588
  msgid "It applies only to the orders that are related to MEC."
5589
  msgstr ""
5590
 
5591
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5592
  msgid "After Add to Cart"
5593
  msgstr ""
5594
 
5595
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5596
  #, fuzzy
5597
  #| msgid "Get Directions"
5598
  msgid "Redirect to Cart"
5599
  msgstr "Získat směr"
5600
 
5601
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5602
  #, fuzzy
5603
  #| msgid "Get Directions"
5604
  msgid "Redirect to Checkout"
5605
  msgstr "Získat směr"
5606
 
5607
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5608
  #, fuzzy
5609
  #| msgid "View Detail Button"
5610
  msgid "Optional View Cart Button"
5611
  msgstr "Tlačítko Zobrazit detail"
5612
 
5613
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5614
  msgid "Optional Checkout Button"
5615
  msgstr ""
5616
 
@@ -5675,81 +5686,87 @@ msgid ""
5675
  "(Stripe) got canceled."
5676
  msgstr ""
5677
 
5678
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5679
  msgid "Use MEC Cart System"
5680
  msgstr ""
5681
 
5682
- #: app/features/mec/booking.php:1119
5683
  msgid ""
5684
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5685
  "adding a simple cart and checkout system to your website."
5686
  msgstr ""
5687
 
5688
- #: app/features/mec/booking.php:1121
5689
  msgid "You cannot use following MEC features while using MEC Cart."
5690
  msgstr ""
5691
 
5692
- #: app/features/mec/booking.php:1123
5693
  #, fuzzy
5694
  #| msgid "Set Up a Payment Gateway"
5695
  msgid "WooCommerce as Payment Gateway"
5696
  msgstr "Nastavení platební brány"
5697
 
5698
- #: app/features/mec/booking.php:1124
5699
  #, fuzzy
5700
  #| msgid "Next Occurrence of Other Events"
5701
  msgid "Currency Per Event"
5702
  msgstr "Další výskyt dalších událostí"
5703
 
5704
- #: app/features/mec/booking.php:1125
5705
  #, fuzzy
5706
  #| msgid "Payment Gateways"
5707
  msgid "Disable Gateways Per Event"
5708
  msgstr "Platební brány"
5709
 
5710
- #: app/features/mec/booking.php:1126
5711
  #, fuzzy
5712
  #| msgid "Set Up WooCommerce Gateway"
5713
  msgid "Stripe Connect Gateway"
5714
  msgstr "Nastavit bránu WooCommerce"
5715
 
5716
- #: app/features/mec/booking.php:1127
5717
  #, fuzzy
5718
  #| msgid "Set Up WooCommerce Gateway"
5719
  msgid "Pay By WooCommerce Gateway"
5720
  msgstr "Nastavit bránu WooCommerce"
5721
 
5722
- #: app/features/mec/booking.php:1128
5723
  #, fuzzy
5724
  #| msgid "Enable Organizer Payment Module"
5725
  msgid "Organizer Payment Module"
5726
  msgstr "Povolit platební modul organizátora"
5727
 
5728
- #: app/features/mec/booking.php:1132
5729
  #, fuzzy
5730
  #| msgid "Start Date"
5731
  msgid "Cart Page"
5732
  msgstr "Počátečná den"
5733
 
5734
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5735
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5736
  #, php-format
5737
  msgid "Put %s shortcode into the page."
5738
  msgstr "Vložte %s na stránku zkrácené kódy."
5739
 
5740
- #: app/features/mec/booking.php:1144
5741
  #, fuzzy
5742
  #| msgid "Checkout"
5743
  msgid "Checkout Page"
5744
  msgstr "Překontrolovat"
5745
 
5746
- #: app/features/mec/booking.php:1170
5747
  #, fuzzy
5748
  #| msgid "Enable Invoice"
5749
  msgid "Enable Cart Invoice"
5750
  msgstr "Povolit fakturu"
5751
 
5752
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5753
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5754
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5755
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5757,7 +5774,7 @@ msgstr "Povolit fakturu"
5757
  msgid "Saved"
5758
  msgstr "Uloženo"
5759
 
5760
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5761
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5762
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5763
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5765,7 +5782,7 @@ msgstr "Uloženo"
5765
  msgid "Settings Saved!"
5766
  msgstr "Nastavení uložena!"
5767
 
5768
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5769
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5770
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5771
  msgid "Please Refresh Page"
@@ -5781,12 +5798,7 @@ msgstr "Vítejte %s"
5781
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5782
  msgstr "%s - Nejvýkonnější a snadno použitelný systém pro správu událostí"
5783
 
5784
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5785
- msgctxt "plugin rate"
5786
- msgid "Rate the plugin ★★★★★"
5787
- msgstr "Ohodnoťe doplněk ★★★★★"
5788
-
5789
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5790
  #, php-format
5791
  msgid ""
5792
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5797,37 +5809,20 @@ msgstr ""
5797
  "pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
5798
  "pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
5799
 
5800
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5801
  msgid "lite"
5802
  msgstr " omezenou"
5803
 
5804
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5805
  #: app/features/mec/support.php:126
5806
  msgid "GO PREMIUM"
5807
  msgstr "PŘEJÍT NA PREMIUM"
5808
 
5809
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5810
- #, php-format
5811
- msgid ""
5812
- "Easily get a discount coupon by rating us on %s or following and reposting "
5813
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5814
- msgstr ""
5815
- "Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
5816
- "uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte % s"
5817
-
5818
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5819
- msgid "WordPress"
5820
- msgstr "WordPress"
5821
-
5822
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5823
- msgid "Copouns!"
5824
- msgstr "Kupóny!"
5825
-
5826
- #: app/features/mec/dashboard.php:115
5827
  msgid "Getting started with Modern Events Calendar"
5828
  msgstr "Začínáme s Modern Events Calendar"
5829
 
5830
- #: app/features/mec/dashboard.php:116
5831
  msgid ""
5832
  "In this short video, you can learn how to make an event and put a calendar "
5833
  "on your website. Please watch this 2 minutes video to the end."
@@ -5835,21 +5830,21 @@ msgstr ""
5835
  "V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
5836
  "svoje stránky. Sledujte prosím toto 2minutové video až do konce."
5837
 
5838
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5839
  #, fuzzy
5840
  #| msgid "MEC Activation"
5841
  msgid "License Activation"
5842
  msgstr "Aktivace MEC"
5843
 
5844
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5845
  msgid "Activate Addons"
5846
  msgstr "Aktivovat doplňky"
5847
 
5848
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5849
  msgid "You cannot access this section."
5850
  msgstr "Nemáte přístup do této části."
5851
 
5852
- #: app/features/mec/dashboard.php:162
5853
  msgid ""
5854
  "In order to use all plugin features and options, please enter your purchase "
5855
  "code."
@@ -5857,11 +5852,11 @@ msgstr ""
5857
  "Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
5858
  "zakoupený kód."
5859
 
5860
- #: app/features/mec/dashboard.php:270
5861
  msgid "Popular Gateways"
5862
  msgstr "Oblíbené platební brány"
5863
 
5864
- #: app/features/mec/dashboard.php:328
5865
  msgid "Change Log"
5866
  msgstr "Změna logu"
5867
 
@@ -7424,7 +7419,7 @@ msgstr ""
7424
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7425
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7426
  #: app/features/popup/settings.php:272 app/features/search.php:109
7427
- #: app/features/speakers.php:60 app/features/speakers.php:286
7428
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7429
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7430
  #: app/modules/speakers/details.php:18
@@ -8770,7 +8765,7 @@ msgstr ""
8770
  msgid "Please, insert comma to separate reminder hours."
8771
  msgstr ""
8772
 
8773
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8774
  #: app/libraries/main.php:705
8775
  msgid "New Event"
8776
  msgstr "Nová událost"
@@ -11111,13 +11106,13 @@ msgstr ""
11111
  msgid "Choose one of saved locations."
11112
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
11113
 
11114
- #: app/features/occurrences.php:491 app/features/organizers.php:280
11115
- #: app/features/popup/event.php:166
11116
  msgid "Hide organizer"
11117
  msgstr "Skrýt organizátora"
11118
 
11119
- #: app/features/occurrences.php:499 app/features/organizers.php:289
11120
- #: app/features/popup/event.php:175
11121
  msgid "Choose one of saved organizers or insert new one below."
11122
  msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
11123
 
@@ -11130,7 +11125,7 @@ msgid "Insert organizer email address."
11130
  msgstr "Vložit email organizátora."
11131
 
11132
  #: app/features/organizers.php:120 app/features/organizers.php:157
11133
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11134
  msgid "Link to organizer page"
11135
  msgstr "Odkaz na stránku organizátora"
11136
 
@@ -11144,27 +11139,27 @@ msgstr ""
11144
  msgid "Contact info"
11145
  msgstr "Kontaktní informace"
11146
 
11147
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11148
  msgid "Insert a new organizer"
11149
  msgstr "Vložit nového organizátora"
11150
 
11151
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11152
  msgid "Phone number."
11153
  msgstr "Telefonní číslo."
11154
 
11155
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11156
  msgid "eg. +1 (234) 5678"
11157
  msgstr "např. + 420 123 456 789"
11158
 
11159
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11160
  msgid "Email address."
11161
  msgstr "Emailová adresa."
11162
 
11163
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11164
  msgid "eg. john@smith.com"
11165
  msgstr "např. info@itreseni.cz"
11166
 
11167
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11168
  msgid "eg. https://webnus.net"
11169
  msgstr "např. https://webnus.net"
11170
 
@@ -11179,73 +11174,73 @@ msgid ""
11179
  msgstr ""
11180
  "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
11181
 
11182
- #: app/features/popup/event.php:58
11183
  #, fuzzy
11184
  #| msgid "Add Shortcode"
11185
  msgid "Adding an Event..."
11186
  msgstr "Přidat zkrácený kód"
11187
 
11188
- #: app/features/popup/event.php:66
11189
  #, fuzzy
11190
  #| msgid "Event Note"
11191
  msgid "Event Name"
11192
  msgstr "Poznámka události"
11193
 
11194
- #: app/features/popup/event.php:67
11195
  msgid "Event name is required"
11196
  msgstr ""
11197
 
11198
- #: app/features/popup/event.php:128
11199
  #, fuzzy
11200
  #| msgid "Choose one of saved locations or insert new one below."
11201
  msgid "Choose one of saved locations or insert new one."
11202
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
11203
 
11204
- #: app/features/popup/event.php:132
11205
  #, fuzzy
11206
  #| msgid "Location"
11207
  msgid "Add Location"
11208
  msgstr "Umístění"
11209
 
11210
- #: app/features/popup/event.php:179
11211
  #, fuzzy
11212
  #| msgid "Organizer"
11213
  msgid "Add Organizer"
11214
  msgstr "Organizátor"
11215
 
11216
- #: app/features/popup/event.php:219
11217
  #, fuzzy
11218
  #| msgid "Categories"
11219
  msgid "All Categories"
11220
  msgstr "Kategorie"
11221
 
11222
- #: app/features/popup/event.php:220
11223
  msgid "Most Used"
11224
  msgstr ""
11225
 
11226
- #: app/features/popup/event.php:231
11227
  #, fuzzy
11228
  #| msgid "Add New Event"
11229
  msgid "Add New Category"
11230
  msgstr "Přidat novou událost"
11231
 
11232
  # v kontextu
11233
- #: app/features/popup/event.php:242
11234
  #, fuzzy
11235
  #| msgid "Featured Image"
11236
  msgid "Set Featured Image"
11237
  msgstr "Hlavní obrázek"
11238
 
11239
- #: app/features/popup/event.php:252
11240
  msgid "Your Event Has Been Created."
11241
  msgstr ""
11242
 
11243
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11244
  #: app/features/popup/shortcode.php:553
11245
  msgid "Prev"
11246
  msgstr ""
11247
 
11248
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11249
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11250
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11251
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11451,76 +11446,76 @@ msgstr "Vyhledat"
11451
  msgid "No search result."
11452
  msgstr "Žádný výsledek vyhledávání."
11453
 
11454
- #: app/features/speakers.php:112 app/features/speakers.php:197
11455
- #: app/features/speakers.php:287
11456
  msgid "Job Title"
11457
  msgstr "Pracovní pozice"
11458
 
11459
- #: app/features/speakers.php:115 app/features/speakers.php:198
11460
  msgid "Insert speaker job title."
11461
  msgstr "Vložte pracovní pozici řečníka."
11462
 
11463
- #: app/features/speakers.php:123 app/features/speakers.php:202
11464
  msgid "Insert speaker phone number."
11465
  msgstr "Vložte telefonní číslo řečníka."
11466
 
11467
- #: app/features/speakers.php:131 app/features/speakers.php:206
11468
  msgid "Insert speaker email address."
11469
  msgstr "Vložte email řečníka."
11470
 
11471
- #: app/features/speakers.php:139 app/features/speakers.php:210
11472
  #, fuzzy
11473
  #| msgid "Insert URL of Instagram"
11474
  msgid "Insert URL of Website"
11475
  msgstr "Vložte URL Instagramu"
11476
 
11477
- #: app/features/speakers.php:144 app/features/speakers.php:213
11478
  msgid "Facebook Page"
11479
  msgstr "Stránka na Facebooku"
11480
 
11481
- #: app/features/speakers.php:147 app/features/speakers.php:214
11482
  msgid "Insert URL of Facebook Page"
11483
  msgstr "Vložte URL stránky na Facebooku"
11484
 
11485
- #: app/features/speakers.php:152 app/features/speakers.php:217
11486
  msgid "Instagram"
11487
  msgstr "Instagram"
11488
 
11489
- #: app/features/speakers.php:155 app/features/speakers.php:218
11490
  msgid "Insert URL of Instagram"
11491
  msgstr "Vložte URL Instagramu"
11492
 
11493
- #: app/features/speakers.php:160 app/features/speakers.php:221
11494
  #, fuzzy
11495
  #| msgid "Linkedin"
11496
  msgid "LinkedIn"
11497
  msgstr "Linkedin"
11498
 
11499
- #: app/features/speakers.php:163
11500
  #, fuzzy
11501
  #| msgid "Insert URL of Instagram"
11502
  msgid "Insert URL of LinkedIn"
11503
  msgstr "Vložte URL Instagramu"
11504
 
11505
- #: app/features/speakers.php:168 app/features/speakers.php:225
11506
  msgid "Twitter Page"
11507
  msgstr "Stránka na Twitteru"
11508
 
11509
- #: app/features/speakers.php:171 app/features/speakers.php:226
11510
  msgid "Insert URL of Twitter Page"
11511
  msgstr "Vložte URL stránky na Twitteru"
11512
 
11513
- #: app/features/speakers.php:222
11514
  #, fuzzy
11515
  #| msgid "Insert URL of Instagram"
11516
  msgid "Insert URL of linkedin"
11517
  msgstr "Vložte URL Instagramu"
11518
 
11519
- #: app/features/speakers.php:347
11520
  msgid "Sorry, You must insert speaker name!"
11521
  msgstr "Litujeme, musíte zadat jméno řečníka!"
11522
 
11523
- #: app/features/speakers.php:396
11524
  msgid ""
11525
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11526
  "section and speaker widget section!"
@@ -11611,69 +11606,69 @@ msgctxt "plugin link"
11611
  msgid "Upgrade to Pro Version"
11612
  msgstr "Upgrade na verzi PRO"
11613
 
11614
- #: app/libraries/factory.php:234
11615
  msgctxt "plugin link"
11616
  msgid "Settings"
11617
  msgstr "Nastavení"
11618
 
11619
- #: app/libraries/factory.php:239
11620
  msgctxt "plugin link"
11621
  msgid "Upgrade"
11622
  msgstr "Upgrade"
11623
 
11624
- #: app/libraries/factory.php:393
11625
  msgid "day"
11626
  msgstr "den"
11627
 
11628
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11629
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11630
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11631
  msgid "days"
11632
  msgstr "dny"
11633
 
11634
- #: app/libraries/factory.php:395
11635
  msgid "hour"
11636
  msgstr "hodina"
11637
 
11638
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11639
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11640
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11641
  msgid "hours"
11642
  msgstr "hodiny"
11643
 
11644
- #: app/libraries/factory.php:397
11645
  msgid "minute"
11646
  msgstr "minuta"
11647
 
11648
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11649
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11650
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11651
  msgid "minutes"
11652
  msgstr "minuty"
11653
 
11654
- #: app/libraries/factory.php:399
11655
  msgid "second"
11656
  msgstr "vteřina"
11657
 
11658
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11659
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11660
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11661
  msgid "seconds"
11662
  msgstr "vteřiny"
11663
 
11664
- #: app/libraries/factory.php:477
11665
  msgid "MEC Single Sidebar"
11666
  msgstr "MEC Postranní panel"
11667
 
11668
- #: app/libraries/factory.php:478
11669
  msgid "Custom sidebar for single and modal page of MEC."
11670
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
11671
 
11672
- #: app/libraries/factory.php:1199
11673
  msgid "Notice:"
11674
  msgstr ""
11675
 
11676
- #: app/libraries/factory.php:1200
11677
  msgid "This update includes only bug fixes."
11678
  msgstr ""
11679
 
@@ -11830,12 +11825,6 @@ msgstr "Zkrácený kód"
11830
  msgid "%s Form"
11831
  msgstr ""
11832
 
11833
- #: app/libraries/main.php:689
11834
- #, fuzzy
11835
- #| msgid "MEC - Support"
11836
- msgid "MEC Cart"
11837
- msgstr "MEC - podpora"
11838
-
11839
  #: app/libraries/main.php:726
11840
  msgid "Only For Bookers"
11841
  msgstr ""
@@ -12624,12 +12613,7 @@ msgstr "Začátek"
12624
  msgid "End at: %s - %s"
12625
  msgstr ""
12626
 
12627
- #: app/libraries/skins.php:1755
12628
- #, php-format
12629
- msgid "Every %s"
12630
- msgstr ""
12631
-
12632
- #: app/libraries/skins.php:1756
12633
  #, fuzzy
12634
  #| msgid "Repeating"
12635
  msgid "Repeating Event"
@@ -13114,6 +13098,25 @@ msgstr "Webnus Team"
13114
  msgid "http://webnus.net"
13115
  msgstr "http://webnus.net"
13116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13117
  #, fuzzy
13118
  #~| msgid ""
13119
  #~| "The %s ticket is sold out. You can try another ticket or another date."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:15+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
172
  msgstr "Zrušená"
173
 
174
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
175
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
176
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
177
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
178
  #: app/features/mec/notifications.php:1922
210
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
211
  #: app/features/autoemails.php:60 app/features/events.php:606
212
  #: app/features/events.php:2650 app/features/events.php:2717
213
+ #: app/features/events.php:2806 app/features/events.php:4445
214
+ #: app/features/fes.php:280 app/features/fes/form.php:812
215
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
216
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
217
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
218
  #: app/features/organizers.php:112 app/features/organizers.php:153
219
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
220
+ #: app/features/speakers.php:211 app/libraries/main.php:653
221
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
222
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
223
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
373
  #: app/features/events.php:2808 app/features/mec/booking.php:800
374
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
375
  #: app/features/organizers.php:104 app/features/organizers.php:149
376
+ #: app/features/speakers.php:126 app/features/speakers.php:207
377
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
378
  msgid "Tel"
379
  msgstr "Tel"
380
 
520
  msgid "Agreement"
521
  msgstr "Smlouva"
522
 
523
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
524
+ #, fuzzy, php-format
525
+ #| msgid "Integrate with MEC"
526
+ msgid "I agree with %s"
527
+ msgstr "Integrovat s MEC"
528
+
529
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
530
  #, php-format
531
  msgid "Instead of %s, the page title with a link will be show."
703
  #: app/features/events.php:1843 app/features/events.php:2014
704
  #: app/features/events.php:2029 app/features/events.php:2271
705
  #: app/features/events.php:2283 app/features/events.php:2476
706
+ #: app/features/events.php:2513 app/features/fes/form.php:460
707
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
708
  #: app/features/locations.php:341 app/features/mec/booking.php:113
709
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
710
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
781
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
782
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
783
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
784
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
785
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
786
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
787
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
788
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
789
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
947
 
948
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
949
  #: app/features/events.php:432 app/features/events.php:1283
950
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
951
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
952
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
953
  #: app/skins/single.php:1126 app/skins/single/default.php:213
954
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1027
  msgstr ""
1028
 
1029
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1030
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1031
  #: app/features/labels.php:61 app/features/labels.php:227
1032
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1033
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1063
  msgstr "Skrýt místo"
1064
 
1065
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1066
+ #: app/features/events.php:3876 app/features/events.php:4190
1067
  #: app/features/locations.php:58 app/features/locations.php:267
1068
  #: app/features/locations.php:329 app/features/locations.php:331
1069
  #: app/features/locations.php:340
1083
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1084
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1085
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1086
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1087
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1088
  #: app/features/search.php:97 app/libraries/main.php:3020
1089
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1097
 
1098
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1099
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1100
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1101
  #: app/skins/single.php:1406 app/skins/single.php:1473
1102
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1103
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1120
 
1121
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1122
  #: app/features/events.php:1519 app/features/events.php:1532
1123
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1124
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1125
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1126
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1171
 
1172
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1173
  #: app/features/events.php:431 app/features/events.php:3877
1174
+ #: app/features/events.php:4192 app/features/events.php:4193
1175
+ #: app/features/events.php:4194
1176
  #: app/features/mec/meta_boxes/display_options.php:1660
1177
  #: app/features/mec/meta_boxes/search_form.php:80
1178
  #: app/features/mec/meta_boxes/search_form.php:168
1187
  #: app/features/mec/meta_boxes/search_form.php:983
1188
  #: app/features/mec/meta_boxes/search_form.php:1070
1189
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1190
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1191
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1192
  #: app/features/organizers.php:58 app/features/organizers.php:208
1193
  #: app/features/organizers.php:277 app/features/organizers.php:279
1194
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1195
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1196
  #: app/features/popup/settings.php:263 app/features/search.php:103
1197
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1198
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1316
  #: app/features/booking/calendar_novel.php:145
1317
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1318
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1319
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1320
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1321
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1322
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1323
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1383
 
1384
  #: app/features/autoemails.php:74 app/features/events.php:230
1385
  #: app/features/labels.php:72 app/features/locations.php:70
1386
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1387
  #: app/features/tag.php:70
1388
  #, php-format
1389
  msgid "Edit %s"
1451
  msgid "Go to events page"
1452
  msgstr "Zobrazit Mapy Google na stránce události"
1453
 
1454
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1455
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1456
  #: app/features/wc.php:91 app/libraries/main.php:3072
1457
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1533
  msgid "Back to Cart"
1534
  msgstr "← Zpět na %s"
1535
 
1536
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1537
  #: app/features/mec/settings.php:907
1538
  msgid "Event Color"
1539
  msgstr "Barva události"
1545
  msgstr "Barva události"
1546
 
1547
  #: app/features/contextual.php:55 app/features/mec.php:546
1548
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1549
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1550
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1551
  #: app/libraries/main.php:738
1552
  msgid "Settings"
1699
  msgstr "Podrobnosti o události / Stránka jedné události"
1700
 
1701
  #: app/features/contextual.php:166 app/features/events.php:1298
1702
+ #: app/features/fes/form.php:885
1703
  msgid "Currency Options"
1704
  msgstr "Možnosti Měna"
1705
 
1795
  msgstr ""
1796
 
1797
  #: app/features/dlfile.php:297 app/features/events.php:3874
1798
+ #: app/features/events.php:4183 app/features/events.php:4734
1799
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1800
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1801
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1802
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1805
  msgstr "Název"
1806
 
1807
  #: app/features/dlfile.php:301 app/features/events.php:1988
1808
+ #: app/features/events.php:2248 app/features/events.php:4184
1809
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1810
  #: app/libraries/hourlyschedule.php:152
1811
  msgid "Description"
1852
  msgstr "Před $10"
1853
 
1854
  #: app/features/emails/details.php:35 app/features/events.php:1223
1855
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1856
  msgid "After"
1857
  msgstr "Po"
1858
 
1863
  msgstr "Další výskyt"
1864
 
1865
  #: app/features/emails/details.php:40 app/features/events.php:192
1866
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1867
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1868
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1869
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1884
  msgid "Add Event"
1885
  msgstr "Přidat událost"
1886
 
1887
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1888
  msgid "Add New Event"
1889
  msgstr "Přidat novou událost"
1890
 
1891
+ #: app/features/events.php:196 app/features/ix.php:4614
1892
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1893
  #: app/skins/map/tpl.php:93
1894
  msgid "No events found!"
1899
  msgstr "Editace události"
1900
 
1901
  #: app/features/events.php:199 app/features/fes/list.php:100
1902
+ #: app/features/popup/event.php:259
1903
  msgid "View Event"
1904
  msgstr "Zobrazit událost"
1905
 
1908
  msgstr "V koši nebyly nalezeny žádné události!"
1909
 
1910
  #: app/features/events.php:219 app/features/events.php:3831
1911
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1912
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1913
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1914
  #: app/libraries/main.php:7619
1917
 
1918
  #: app/features/events.php:229 app/features/labels.php:71
1919
  #: app/features/locations.php:69 app/features/organizers.php:69
1920
+ #: app/features/speakers.php:77 app/features/tag.php:69
1921
  #, php-format
1922
  msgid "All %s"
1923
  msgstr "Všechny %s"
1924
 
1925
  #: app/features/events.php:231 app/features/labels.php:73
1926
  #: app/features/locations.php:71 app/features/organizers.php:71
1927
+ #: app/features/speakers.php:79 app/features/tag.php:71
1928
  #, php-format
1929
  msgid "View %s"
1930
  msgstr "Zobrazit %s"
1931
 
1932
  #: app/features/events.php:232 app/features/labels.php:74
1933
  #: app/features/locations.php:72 app/features/organizers.php:72
1934
+ #: app/features/speakers.php:80 app/features/tag.php:72
1935
  #, php-format
1936
  msgid "Update %s"
1937
  msgstr "Aktualizovat %s"
1938
 
1939
  #: app/features/events.php:233 app/features/labels.php:75
1940
  #: app/features/locations.php:73 app/features/organizers.php:73
1941
+ #: app/features/speakers.php:81 app/features/tag.php:73
1942
  #, php-format
1943
  msgid "Add New %s"
1944
  msgstr "Přidat novou %s"
1945
 
1946
  #: app/features/events.php:234 app/features/labels.php:76
1947
  #: app/features/locations.php:74 app/features/organizers.php:74
1948
+ #: app/features/speakers.php:82 app/features/tag.php:74
1949
  #, php-format
1950
  msgid "New %s Name"
1951
  msgstr "Nové jméno %s"
1952
 
1953
  #: app/features/events.php:235 app/features/labels.php:77
1954
  #: app/features/locations.php:75 app/features/organizers.php:75
1955
+ #: app/features/speakers.php:83 app/features/tag.php:75
1956
  #, php-format
1957
  msgid "Popular %s"
1958
  msgstr "Populární %s"
1959
 
1960
  #: app/features/events.php:236 app/features/labels.php:78
1961
  #: app/features/locations.php:76 app/features/organizers.php:76
1962
+ #: app/features/speakers.php:84 app/features/tag.php:76
1963
  #, php-format
1964
  msgid "Search %s"
1965
  msgstr "Vyhledat %s"
1989
  #: app/features/events.php:278 app/features/events.php:336
1990
  #: app/features/locations.php:161 app/features/locations.php:213
1991
  #: app/features/organizers.php:133 app/features/organizers.php:164
1992
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1993
  msgid "Upload/Add image"
1994
  msgstr "Nahrát / přidat obrázek"
1995
 
1998
  #: app/features/locations.php:393 app/features/locations.php:400
1999
  #: app/features/organizers.php:134 app/features/organizers.php:165
2000
  #: app/features/organizers.php:316 app/features/organizers.php:323
2001
+ #: app/features/speakers.php:188 app/features/speakers.php:239
2002
  msgid "Remove image"
2003
  msgstr "Odebrat obrázek"
2004
 
2018
  msgid "Date And Time"
2019
  msgstr "Datum a čas"
2020
 
2021
+ #: app/features/events.php:425 app/features/fes/form.php:386
2022
  msgid "Event Repeating"
2023
  msgstr "Opakování události"
2024
 
2065
  msgstr "Údaje hosta"
2066
 
2067
  #: app/features/events.php:605 app/features/events.php:2641
2068
+ #: app/features/events.php:4442 app/features/fes.php:280
2069
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2070
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2071
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2072
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2073
  msgid "Name"
2074
  msgstr "Jméno"
2079
  "overwrite in the next import from Google."
2080
  msgstr ""
2081
 
2082
+ #: app/features/events.php:619 app/features/fes/form.php:284
2083
  msgid "Date and Time"
2084
  msgstr "Datum a čas"
2085
 
2086
  #: app/features/events.php:622 app/features/events.php:626
2087
+ #: app/features/events.php:3878 app/features/events.php:4185
2088
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2089
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2090
  #: app/features/mec/meta_boxes/display_options.php:57
2091
  #: app/features/mec/meta_boxes/display_options.php:312
2103
  #: app/features/mec/meta_boxes/display_options.php:2347
2104
  #: app/features/mec/meta_boxes/display_options.php:2478
2105
  #: app/features/mec/meta_boxes/display_options.php:2584
2106
+ #: app/features/popup/event.php:79
2107
  msgid "Start Date"
2108
  msgstr "Počátečná den"
2109
 
2110
  #: app/features/events.php:642 app/features/events.php:646
2111
+ #: app/features/events.php:3879 app/features/events.php:4187
2112
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2113
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2114
  #: app/features/mec/meta_boxes/display_options.php:73
2115
  #: app/features/mec/meta_boxes/display_options.php:328
2118
  #: app/features/mec/meta_boxes/display_options.php:788
2119
  #: app/features/mec/meta_boxes/display_options.php:1618
2120
  #: app/features/mec/meta_boxes/display_options.php:2363
2121
+ #: app/features/popup/event.php:96
2122
  msgid "End Date"
2123
  msgstr "Konečný den"
2124
 
2125
+ #: app/features/events.php:669 app/features/fes/form.php:326
2126
+ #: app/features/popup/event.php:113
2127
  #, fuzzy
2128
  #| msgid "All Day Event"
2129
  msgid "All-day Event"
2130
  msgstr "Celodenní událost"
2131
 
2132
+ #: app/features/events.php:679 app/features/fes/form.php:329
2133
  msgid "Hide Event Time"
2134
  msgstr "Skrýt čas události"
2135
 
2136
+ #: app/features/events.php:689 app/features/fes/form.php:332
2137
  msgid "Hide Event End Time"
2138
  msgstr "Skrýt čas ukončení události"
2139
 
2140
  #: app/features/events.php:694 app/features/events.php:698
2141
+ #: app/features/fes/form.php:336
2142
  #, fuzzy
2143
  #| msgid "Note to reviewer"
2144
  msgid "Notes on the time"
2145
  msgstr "Poznámka pro recenzenta"
2146
 
2147
+ #: app/features/events.php:699 app/features/fes/form.php:337
2148
  #, fuzzy
2149
  #| msgid ""
2150
  #| "It shows next to event time on single event page. You can insert Timezone "
2156
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
2157
  "můžete vložit časové pásmo atd."
2158
 
2159
+ #: app/features/events.php:711 app/features/fes/form.php:344
2160
  #, fuzzy
2161
  #| msgid "Timezone: %s"
2162
  msgid "Timezone"
2167
  #: app/features/events.php:1793 app/features/events.php:1813
2168
  #: app/features/events.php:1868 app/features/events.php:2438
2169
  #: app/features/events.php:2561 app/features/events.php:2672
2170
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2171
  msgid "Inherit from global options"
2172
  msgstr "Zdědí z globálních možností"
2173
 
2174
  #: app/features/events.php:725 app/features/events.php:728
2175
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2176
  #: app/features/mec/settings.php:858
2177
  #, fuzzy
2178
  #| msgid "Countdown View"
2179
  msgid "Countdown Method"
2180
  msgstr "Zobrazení odpočítávání"
2181
 
2182
+ #: app/features/events.php:730 app/features/fes/form.php:363
2183
  #, fuzzy
2184
  #| msgid "On Event Start"
2185
  msgid "Count to Event Start"
2186
  msgstr "Při spuštění události"
2187
 
2188
+ #: app/features/events.php:731 app/features/fes/form.php:364
2189
  #, fuzzy
2190
  #| msgid "On Event End"
2191
  msgid "Count to Event End"
2192
  msgstr "Na konci události"
2193
 
2194
+ #: app/features/events.php:737 app/features/fes/form.php:371
2195
  #: app/modules/weather/darksky.php:57
2196
  msgid "Visibility"
2197
  msgstr "Viditelnost"
2198
 
2199
+ #: app/features/events.php:740 app/features/fes/form.php:374
2200
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2201
  #, fuzzy
2202
  #| msgid "Visibility"
2203
  msgid "Event Visibility"
2204
  msgstr "Viditelnost"
2205
 
2206
+ #: app/features/events.php:741 app/features/fes/form.php:375
2207
  #, fuzzy
2208
  #| msgid "Booking Style"
2209
  msgid "Show on Shortcodes"
2210
  msgstr "Styl rezervace"
2211
 
2212
+ #: app/features/events.php:742 app/features/fes/form.php:376
2213
  #, fuzzy
2214
  #| msgid "Shortcodes"
2215
  msgid "Hide on Shortcodes"
2216
  msgstr "Zkrácené kódy"
2217
 
2218
+ #: app/features/events.php:749 app/features/fes/form.php:384
2219
  msgid "Repeating"
2220
  msgstr "Opakování"
2221
 
2223
  msgid "Event Repeating (Recurring events)"
2224
  msgstr "Opakování události (opakující se události)"
2225
 
2226
+ #: app/features/events.php:762 app/features/fes/form.php:390
2227
  msgid "Repeats"
2228
  msgstr "Opakování"
2229
 
2230
+ #: app/features/events.php:770 app/features/fes/form.php:392
2231
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2232
+ #: app/skins/default_full_calendar/tpl.php:79
2233
  #: app/skins/full_calendar/tpl.php:140
2234
  msgid "Daily"
2235
  msgstr "Děnně"
2236
 
2237
+ #: app/features/events.php:777 app/features/fes/form.php:393
2238
+ #: app/libraries/skins.php:1772
2239
  msgid "Every Weekday"
2240
  msgstr "Každý všední den"
2241
 
2242
+ #: app/features/events.php:784 app/features/fes/form.php:394
2243
+ #: app/libraries/skins.php:1769
2244
  msgid "Every Weekend"
2245
  msgstr "Každý víkend"
2246
 
2247
+ #: app/features/events.php:791 app/features/fes/form.php:395
2248
  msgid "Certain Weekdays"
2249
  msgstr "Určité pracovní dny"
2250
 
2251
+ #: app/features/events.php:798 app/features/fes/form.php:396
2252
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2253
  #: app/skins/full_calendar/tpl.php:139
2254
  msgid "Weekly"
2255
  msgstr "Týdně"
2256
 
2257
+ #: app/features/events.php:805 app/features/fes/form.php:397
2258
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2259
+ #: app/skins/default_full_calendar/tpl.php:77
2260
  #: app/skins/full_calendar/tpl.php:138
2261
  msgid "Monthly"
2262
  msgstr "Měsíčně"
2263
 
2264
+ #: app/features/events.php:812 app/features/fes/form.php:398
2265
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2266
+ #: app/skins/default_full_calendar/tpl.php:76
2267
  #: app/skins/full_calendar/tpl.php:137
2268
  msgid "Yearly"
2269
  msgstr "Ročně"
2270
 
2271
+ #: app/features/events.php:819 app/features/fes/form.php:399
2272
  msgid "Custom Days"
2273
  msgstr "Vlastní dny"
2274
 
2275
+ #: app/features/events.php:826 app/features/fes/form.php:400
2276
  msgid "Advanced"
2277
  msgstr "Pokročilé"
2278
 
2279
+ #: app/features/events.php:831 app/features/fes/form.php:404
2280
  msgid "Repeat Interval"
2281
  msgstr "Interval opakování"
2282
 
2283
+ #: app/features/events.php:833 app/features/fes/form.php:405
2284
  msgid "Repeat interval"
2285
  msgstr "Interval opakování"
2286
 
2287
+ #: app/features/events.php:837 app/features/fes/form.php:408
2288
  msgid "Week Days"
2289
  msgstr "Dny v týdnu"
2290
 
2298
 
2299
  #: app/features/events.php:860 app/features/events.php:2101
2300
  #: app/features/events.php:2129 app/features/events.php:2343
2301
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2302
  #: app/features/ix/import_g_calendar.php:51
2303
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2304
  #: app/libraries/skins.php:1389
2309
  #: app/features/events.php:2085 app/features/events.php:2167
2310
  #: app/features/events.php:2332 app/features/events.php:2376
2311
  #: app/features/events.php:2449 app/features/events.php:2566
2312
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2313
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2314
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2315
  msgid "Add"
2316
  msgstr "Přidat"
2317
 
2318
+ #: app/features/events.php:877 app/features/fes/form.php:456
2319
  msgid "Custom Days Repeating"
2320
  msgstr "Opakování vlastních dnů"
2321
 
2322
+ #: app/features/events.php:880 app/features/fes/form.php:459
2323
  #, fuzzy
2324
  #| msgid ""
2325
  #| "Add certain days to event occurrence dates. If you have single day event, "
2336
 
2337
  #: app/features/events.php:891 app/features/events.php:2105
2338
  #: app/features/events.php:2133 app/features/events.php:2347
2339
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2340
  msgid "End"
2341
  msgstr "Konec"
2342
 
2343
+ #: app/features/events.php:968 app/features/fes/form.php:532
2344
  msgid "First"
2345
  msgstr "První"
2346
 
2347
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2348
  msgid "Second"
2349
  msgstr "Druhá"
2350
 
2351
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2352
  msgid "Third"
2353
  msgstr "Třetí"
2354
 
2355
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2356
  msgid "Fourth"
2357
  msgstr "Čtvrtá"
2358
 
2359
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2360
  msgid "Last"
2361
  msgstr "Poslední"
2362
 
2363
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2364
  msgid "Ends Repeat"
2365
  msgstr "Ukončení opakování"
2366
 
2367
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2368
  msgid "Never"
2369
  msgstr "Nikdy"
2370
 
2371
  # Možná Zapnuto
2372
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2373
  msgid "On"
2374
  msgstr "Na"
2375
 
2376
  #: app/features/events.php:1227 app/features/events.php:1231
2377
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2378
  msgid "Occurrences times"
2379
  msgstr "Časy výskytu"
2380
 
2390
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
2391
  "hodnotu 10, událost skončí po 10 opakováních."
2392
 
2393
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2394
  #, fuzzy
2395
  #| msgid "Next Occurrence of Other Events"
2396
  msgid "Show only one occurrence of this event"
2397
  msgstr "Další výskyt dalších událostí"
2398
 
2399
+ #: app/features/events.php:1277 app/features/events.php:4195
2400
+ #: app/features/fes/form.php:867
2401
  #: app/features/mec/meta_boxes/search_form.php:116
2402
  #: app/features/mec/meta_boxes/search_form.php:204
2403
  #: app/features/mec/meta_boxes/search_form.php:292
2421
  #: app/features/mec/notifications.php:1511
2422
  #: app/features/mec/notifications.php:1628
2423
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2424
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2425
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2426
  #: app/widgets/single.php:122
2427
  msgid "Event Cost"
2428
  msgstr "Cena události"
2429
 
2430
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2431
  #, fuzzy
2432
  #| msgid "Show weather imperial units"
2433
  msgid "Show the minimum price based on tickets"
2434
  msgstr "Zobrazit britské jednotky počasí"
2435
 
2436
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2437
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2438
  #: app/libraries/main.php:646
2439
  msgid "Currency"
2440
  msgstr "Měna"
2441
 
2442
  #: app/features/events.php:1310 app/features/events.php:1315
2443
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2444
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2445
  msgid "Currency Sign"
2446
  msgstr "Symbol měny"
2447
 
2448
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2449
  #: app/features/mec/settings.php:600
2450
  msgid "Default value will be \"currency\" if you leave it empty."
2451
  msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
2452
 
2453
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2454
  #: app/features/mec/settings.php:607
2455
  msgid "Currency Position"
2456
  msgstr "Pozice měny"
2457
 
2458
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2459
  #: app/features/mec/settings.php:610
2460
  #, fuzzy
2461
  #| msgid "Before $10"
2462
  msgid "$10 (Before)"
2463
  msgstr "Před $10"
2464
 
2465
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2466
  #: app/features/mec/settings.php:611
2467
  msgid "$ 10 (Before with Space)"
2468
  msgstr ""
2469
 
2470
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2471
  #: app/features/mec/settings.php:612
2472
  #, fuzzy
2473
  #| msgid "After"
2474
  msgid "10$ (After)"
2475
  msgstr "Po"
2476
 
2477
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2478
  #: app/features/mec/settings.php:613
2479
  msgid "10 $ (After with Space)"
2480
  msgstr ""
2481
 
2482
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2483
  #: app/features/mec/settings.php:618
2484
  msgid "Thousand Separator"
2485
  msgstr "Oddělovač tisíců"
2486
 
2487
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2488
  #: app/features/mec/settings.php:624
2489
  msgid "Decimal Separator"
2490
  msgstr "Oddělovač desítel"
2491
 
2492
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2493
  #: app/features/mec/settings.php:634
2494
  msgid "No decimal"
2495
  msgstr "Bez desetinných míst"
2516
  msgid "Day 1"
2517
  msgstr "Den 1"
2518
 
2519
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2520
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2521
  msgid "Event Links"
2522
  msgstr "Odkazy na událost"
2523
 
2524
  #: app/features/events.php:1501 app/features/events.php:1509
2525
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2526
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2527
  #: app/libraries/main.php:7649
2528
  msgid "Event Link"
2529
  msgstr "Odkaz na událost"
2530
 
2531
  #: app/features/events.php:1504 app/features/events.php:1522
2532
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2533
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2534
  msgid "eg. http://yoursite.com/your-event"
2535
  msgstr "např. http://yoursite.com/vase-udalost"
2536
 
2553
  msgid "URL Shortener"
2554
  msgstr "Zkracovač URL"
2555
 
2556
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2557
+ #: app/features/occurrences.php:530
2558
  msgid "More Information"
2559
  msgstr "Více informací"
2560
 
2561
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2562
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2563
  #: app/features/popup/shortcode.php:481
2564
  msgid "Current Window"
2565
  msgstr "Aktuální okno"
2566
 
2567
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2568
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2569
  #: app/features/popup/shortcode.php:485
2570
  msgid "New Window"
2571
  msgstr "Nové okno"
2572
 
2573
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2574
  msgid ""
2575
  "If you fill it, it will be shown in event details page as an optional link. "
2576
  "Insert full link including http(s)://"
2955
  msgstr "Vstupenka"
2956
 
2957
  #: app/features/events.php:1944 app/features/events.php:2211
2958
+ #: app/features/events.php:4182 app/features/fes.php:280
2959
  #: app/features/labels.php:183 app/features/locations.php:266
2960
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2961
  msgid "ID"
2962
  msgstr "ID"
2963
 
2966
  msgstr "Název vstupenky"
2967
 
2968
  #: app/features/events.php:1956 app/features/events.php:2219
2969
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2970
  msgid "Start Time"
2971
  msgstr "Začátek"
2972
 
2973
  #: app/features/events.php:1970 app/features/events.php:2233
2974
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2975
  msgid "End Time"
2976
  msgstr "Konec"
2977
 
2993
  #: app/features/events.php:2007 app/features/events.php:2011
2994
  #: app/features/events.php:2109 app/features/events.php:2136
2995
  #: app/features/events.php:2265 app/features/events.php:2268
2996
+ #: app/features/events.php:2349 app/features/events.php:4743
2997
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2998
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2999
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3168
  msgid "Fixed Fields"
3169
  msgstr "Požadovaná pole"
3170
 
3171
+ #: app/features/events.php:2887 app/features/events.php:4737
3172
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3173
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3174
  msgid "Attendees"
3200
  msgstr "Události vypršely"
3201
 
3202
  #: app/features/events.php:3757 app/features/mec.php:1374
3203
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3204
  msgid "Upcoming Events"
3205
  msgstr "Nadcházející události"
3206
 
3261
  msgstr "JSON Export"
3262
 
3263
  #: app/features/events.php:4068 app/features/events.php:4069
3264
+ #: app/features/events.php:4295
3265
  msgid "Duplicate"
3266
  msgstr "Duplikát"
3267
 
3268
+ #: app/features/events.php:4189
3269
  msgid "Link"
3270
  msgstr "Odkaz"
3271
 
3272
+ #: app/features/events.php:4191 app/features/locations.php:111
3273
  #: app/features/locations.php:181 app/features/locations.php:268
3274
  #: app/features/mec/meta_boxes/search_form.php:108
3275
  #: app/features/mec/meta_boxes/search_form.php:196
3287
  msgid "Address"
3288
  msgstr "Adresa"
3289
 
3290
+ #: app/features/events.php:4193
3291
  #, php-format
3292
  msgid "%s Tel"
3293
  msgstr "%s Tel"
3294
 
3295
+ #: app/features/events.php:4194
3296
  #, php-format
3297
  msgid "%s Email"
3298
  msgstr "%s Email"
3299
 
3300
  # v kontextu
3301
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3302
  #: app/features/mec/settings.php:876
3303
  msgid "Featured Image"
3304
  msgstr "Hlavní obrázek"
3305
 
3306
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3307
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3308
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3309
  msgid "Tags"
3310
  msgstr "Tagy"
3311
 
3312
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3313
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3314
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3315
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3316
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3317
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3318
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3320
  msgid "Speakers"
3321
  msgstr "Řečníci"
3322
 
3323
+ #: app/features/events.php:4448 app/features/fes.php:280
3324
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3325
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3326
  #: app/libraries/main.php:7592
3327
  msgid "Ticket"
3328
  msgstr "Vstupenka"
3329
 
3330
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3331
  msgid "Variations"
3332
  msgstr "Variace"
3333
 
3334
+ #: app/features/events.php:4466 app/features/fes.php:356
3335
  msgid "Unknown"
3336
  msgstr "Neznámý"
3337
 
3338
+ #: app/features/events.php:4494
3339
  msgid ""
3340
  "If you want to send an email, first select your attendees and then click in "
3341
  "the button below, please."
3342
  msgstr ""
3343
 
3344
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3345
  #, fuzzy
3346
  #| msgid "Organizer Email"
3347
  msgid "Send Email"
3348
  msgstr "Organizátor Email"
3349
 
3350
+ #: app/features/events.php:4498
3351
  #, fuzzy
3352
  #| msgid "Attendees Form"
3353
  msgid "No Attendees Found!"
3354
  msgstr "Formulář účastníků"
3355
 
3356
+ #: app/features/events.php:4800
3357
  #, fuzzy
3358
  #| msgid "No bookings found!"
3359
  msgid "No Bookings Found!"
3502
  msgid "The event published."
3503
  msgstr "Událost byla publikována."
3504
 
3505
+ #: app/features/fes/form.php:180
3506
  msgid "Go back to events list"
3507
  msgstr "Přejít zpět na seznam událostí"
3508
 
3509
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3510
  #: app/features/mec/settings.php:1171
3511
  msgid "Excerpt"
3512
  msgstr ""
3513
 
3514
+ #: app/features/fes/form.php:273
3515
  #, fuzzy
3516
  #| msgid "On Event Start"
3517
  msgid "Optional Event Excerpt"
3518
  msgstr "Při spuštění události"
3519
 
3520
+ #: app/features/fes/form.php:280
3521
  msgid ""
3522
  "This event is imported from Google calendar so if you modify it would "
3523
  "overwrite in the next import from Google."
3524
  msgstr ""
3525
 
3526
+ #: app/features/fes/form.php:409
3527
  #: app/features/mec/meta_boxes/display_options.php:1494
3528
  #: app/libraries/main.php:476
3529
  msgid "Monday"
3530
  msgstr "Pondělí"
3531
 
3532
+ #: app/features/fes/form.php:410
3533
  #: app/features/mec/meta_boxes/display_options.php:1495
3534
  #: app/libraries/main.php:476
3535
  msgid "Tuesday"
3536
  msgstr "Úterý"
3537
 
3538
+ #: app/features/fes/form.php:411
3539
  #: app/features/mec/meta_boxes/display_options.php:1496
3540
  #: app/libraries/main.php:476
3541
  msgid "Wednesday"
3542
  msgstr "Středa"
3543
 
3544
+ #: app/features/fes/form.php:412
3545
  #: app/features/mec/meta_boxes/display_options.php:1497
3546
  #: app/libraries/main.php:476
3547
  msgid "Thursday"
3548
  msgstr "Čtvrtek"
3549
 
3550
+ #: app/features/fes/form.php:413
3551
  #: app/features/mec/meta_boxes/display_options.php:1498
3552
  #: app/libraries/main.php:476
3553
  msgid "Friday"
3554
  msgstr "Pátek"
3555
 
3556
+ #: app/features/fes/form.php:414
3557
  #: app/features/mec/meta_boxes/display_options.php:1499
3558
  #: app/libraries/main.php:476
3559
  msgid "Saturday"
3560
  msgstr "Sobota"
3561
 
3562
+ #: app/features/fes/form.php:415
3563
  #: app/features/mec/meta_boxes/display_options.php:1493
3564
  #: app/libraries/main.php:476
3565
  msgid "Sunday"
3566
  msgstr "Neděle"
3567
 
3568
+ #: app/features/fes/form.php:768
3569
  msgid ""
3570
  "The event will finish after certain repeats. For example if you set it to "
3571
  "10, the event will finish after 10 repeats."
3573
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
3574
  "hodnotu 10, událost skončí po 10 opakováních."
3575
 
3576
+ #: app/features/fes/form.php:792
3577
  msgid "Note to reviewer"
3578
  msgstr "Poznámka pro recenzenta"
3579
 
3580
+ #: app/features/fes/form.php:810
3581
  msgid "User Data"
3582
  msgstr "Údaje uživatele"
3583
 
3584
+ #: app/features/fes/form.php:813
3585
  msgid "eg. yourname@gmail.com"
3586
  msgstr "např. vasejmeno@gmail.com"
3587
 
3588
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3589
+ #: app/features/popup/event.php:190
3590
  msgid "eg. John Smith"
3591
  msgstr "např. Jan Novák"
3592
 
3593
+ #: app/features/fes/form.php:835
3594
  #, fuzzy
3595
  #| msgid ""
3596
  #| "If you fill it, it will be replaced instead of default event page link. "
3602
  "Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
3603
  "Vložte celý odkaz včetně http (s): //"
3604
 
3605
+ #: app/features/fes/form.php:958
3606
  msgid "Remove Image"
3607
  msgstr "Odebrat obrázek"
3608
 
3609
+ #: app/features/fes/form.php:1048
3610
  msgid "Insert your desired tags, comma separated."
3611
  msgstr "Vložte požadované tagy oddělené čárkami."
3612
 
3613
+ #: app/features/fes/form.php:1070
3614
  msgid "Speakers Names"
3615
  msgstr "Jméno řečníka"
3616
 
3617
+ #: app/features/fes/form.php:1071
3618
  #, fuzzy
3619
  #| msgid "Separate names with commas Similar Justin, Cris"
3620
  msgid "Separate names with commas: Justin, Chris"
3621
  msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
3622
 
3623
+ #: app/features/fes/form.php:1116
3624
  #, fuzzy, php-format
3625
  #| msgid "Please %s/%s in order to submit new events."
3626
  msgid "I accept the %s in order to submit an event."
3627
  msgstr "Prosím %s/%s za účelem odeslání nových událostí."
3628
 
3629
+ #: app/features/fes/form.php:1116
3630
  msgid "Privacy Policy"
3631
  msgstr ""
3632
 
3633
+ #: app/features/fes/form.php:1118
3634
  #, fuzzy
3635
  #| msgid "Please %s/%s in order to submit new events."
3636
  msgid "I accept the Privacy Policy in order to submit an event."
3637
  msgstr "Prosím %s/%s za účelem odeslání nových událostí."
3638
 
3639
+ #: app/features/fes/form.php:1124
3640
  #, fuzzy
3641
  #| msgid "Edit Event"
3642
  msgid "Submit Event"
3721
  msgid "The events are imported successfully!"
3722
  msgstr "Události byly úspěšně importovány!"
3723
 
3724
+ #: app/features/ix.php:1342
3725
  msgid "Third Party plugin is not installed and activated!"
3726
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
3727
 
3728
+ #: app/features/ix.php:1366
3729
  msgid "Third Party plugin is invalid!"
3730
  msgstr "Plugin třetí strany je neplatný!"
3731
 
3732
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3733
  #, fuzzy
3734
  #| msgid "Both of API key and Calendar ID are required!"
3735
  msgid "API key and Calendar ID are required!"
3736
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
3737
 
3738
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3739
  #, fuzzy
3740
  #| msgid "Please select some events to import!"
3741
  msgid "Please select events to import!"
3742
  msgstr "Vyberte události, které chcete importovat!"
3743
 
3744
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3745
  #, fuzzy
3746
  #| msgid "Both of API key and Group URL are required!"
3747
  msgid "API key and Group URL are required!"
3748
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
3749
 
3750
+ #: app/features/ix.php:4137
3751
  msgid "Check at Meetup"
3752
  msgstr "Ověřit Meetup"
3753
 
3754
  # Client Secret dle kontextu
3755
+ #: app/features/ix.php:4303
3756
  #, fuzzy
3757
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3758
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3759
  msgstr ""
3760
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
3761
 
3762
+ #: app/features/ix.php:4326
3763
  #, fuzzy, php-format
3764
  #| msgid "All seems good! Please click %s for authenticating your app."
3765
  msgid "All seems good! Please click %s to authenticate your app."
3766
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
3767
 
3768
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3769
  #: app/features/mec/settings.php:1496
3770
  msgid "here"
3771
  msgstr ""
3772
 
3773
+ #: app/features/ix.php:4381
3774
  #, fuzzy
3775
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3776
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3778
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
3779
  "povinné!"
3780
 
3781
+ #: app/features/ix.php:4543
3782
  #, fuzzy, php-format
3783
  #| msgid "%s events added to Google Calendar successfully."
3784
  msgid "%s events added to Google Calendar with success."
3785
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
3786
 
3787
+ #: app/features/ix.php:4544
3788
  #, fuzzy, php-format
3789
  #| msgid "%s previously added events get updated."
3790
  msgid "%s Updated previously added events."
3791
  msgstr "% s dříve přidané události byly aktualizovány."
3792
 
3793
+ #: app/features/ix.php:4545
3794
  #, php-format
3795
  msgid "%s events failed to add for following reasons: %s"
3796
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
3797
 
3798
+ #: app/features/ix.php:4577
3799
  msgid "Please insert your Facebook page's link."
3800
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
3801
 
3802
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3803
  #, fuzzy
3804
  #| msgid ""
3805
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3811
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
3812
  "poskytněte nám platný odkaz na stránku Facebooku."
3813
 
3814
+ #: app/features/ix.php:4625
3815
  msgid "Please insert your facebook page's link."
3816
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
3817
 
4025
  msgid "Add to Google Calendar"
4026
  msgstr "Přidat do Google kalendáře"
4027
 
4028
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
4029
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
4030
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
4031
  #: app/features/mec/single.php:604
4144
  msgid "Import all of your Facebook events into MEC."
4145
  msgstr "Importujte všechny své události na Facebooku do MEC."
4146
 
4147
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4148
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4149
  msgid "Documentation"
4150
  msgstr "Dokumentace"
4466
  "jeden po druhém na stránce úprav události MEC a ujistit se, že jsou správné."
4467
 
4468
  #: app/features/labels.php:79 app/features/locations.php:77
4469
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4470
  #: app/features/tag.php:77
4471
  #, fuzzy, php-format
4472
  #| msgid "← Back to %s"
4474
  msgstr "← Zpět na %s"
4475
 
4476
  #: app/features/labels.php:80 app/features/locations.php:78
4477
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4478
  #: app/features/tag.php:78
4479
  #, fuzzy, php-format
4480
  #| msgid "No events found!"
4521
  msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
4522
 
4523
  #: app/features/labels.php:186 app/features/locations.php:269
4524
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4525
  #: app/modules/booking/steps/tickets.php:172
4526
  msgid "Count"
4527
  msgstr "Spočítat"
4538
  msgstr "Událost %s"
4539
 
4540
  #: app/features/locations.php:59 app/features/mec.php:526
4541
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4542
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4543
  #: app/libraries/main.php:7623
4544
  msgid "Locations"
4549
  msgstr "Vložit adresu místa"
4550
 
4551
  #: app/features/locations.php:131 app/features/locations.php:197
4552
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4553
  msgid "Latitude"
4554
  msgstr "Zeměpisná šířka"
4555
 
4560
  msgstr "Zeměpisná šířka (volitelné)"
4561
 
4562
  #: app/features/locations.php:139 app/features/locations.php:201
4563
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4564
  msgid "Longitude"
4565
  msgstr "Zeměpisná délka"
4566
 
4585
 
4586
  #: app/features/locations.php:156 app/features/locations.php:210
4587
  #: app/features/organizers.php:128 app/features/organizers.php:161
4588
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4589
  msgid "Thumbnail"
4590
  msgstr "Náhled"
4591
 
4592
  #: app/features/locations.php:329 app/features/occurrences.php:460
4593
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4594
  #, php-format
4595
  msgid "Event Main %s"
4596
  msgstr "Hlavní událost %s"
4597
 
4598
  #: app/features/locations.php:332 app/features/occurrences.php:464
4599
+ #: app/features/popup/event.php:121
4600
  msgid "Hide location"
4601
  msgstr "Skrýt místo"
4602
 
4603
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4604
  msgid "Insert a new location"
4605
  msgstr "Vložit nové místo"
4606
 
4608
  msgid "Choose one of saved locations or insert new one below."
4609
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
4610
 
4611
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4612
  msgid "Location Name"
4613
  msgstr "Název místa"
4614
 
4615
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4616
  msgid "eg. City Hall"
4617
  msgstr "např. Radnice"
4618
 
4619
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4620
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4621
  msgid "Event Location"
4622
  msgstr "Místo události"
4623
 
4624
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4625
  msgid "eg. City hall, Manhattan, New York"
4626
  msgstr "např. Radnice, Dominikánská 2, Brno"
4627
 
4628
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4629
  msgid "Latitude/Longitude"
4630
  msgstr "Zeměpisná šířka / délka"
4631
 
4632
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4633
  msgid ""
4634
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4635
  "to convert the location address to geopoint, Latitude and Longitude are the "
4643
  "místo, použijte název místa, města, státu nebo adresy nebo klikněte na místo "
4644
  "na mapě a vyhledejte souřadnice délky a šířky."
4645
 
4646
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4647
  msgid "Get Latitude and Longitude"
4648
  msgstr "Získejte šířku a délku"
4649
 
4650
  #: app/features/locations.php:392 app/features/organizers.php:315
4651
+ #: app/features/popup/event.php:209
4652
  msgid "Choose image"
4653
  msgstr "Vyberte obrázek"
4654
 
4655
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4656
+ #: app/features/popup/event.php:140
4657
  msgid "Don't show map in single event page"
4658
  msgstr "Nezobrazovat mapu na jednostránkové události"
4659
 
4660
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4661
  #: app/libraries/main.php:7654
4662
  msgid "Other Locations"
4663
  msgstr "Další místa"
4664
 
4665
+ #: app/features/locations.php:413
4666
  msgid ""
4667
  "You can select extra locations in addition to main location if you like."
4668
  msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
4743
  msgid "Support"
4744
  msgstr "Podpora"
4745
 
4746
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4747
  #: app/features/mec/meta_boxes/filter.php:71
4748
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4749
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4751
  msgstr "Organizátoři"
4752
 
4753
  #: app/features/mec.php:536 app/features/mec.php:596
4754
+ #: app/features/mec/dashboard.php:218
4755
  msgid "Shortcodes"
4756
  msgstr "Zkrácené kódy"
4757
 
4968
  msgstr ""
4969
 
4970
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4971
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4972
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4973
  msgid "Version"
4974
  msgstr "Verze"
4995
  msgstr "Vyhledávání ..."
4996
 
4997
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4998
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4999
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
5000
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
5001
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
5002
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
5003
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5599
  msgid "It applies only to the orders that are related to MEC."
5600
  msgstr ""
5601
 
5602
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5603
  msgid "After Add to Cart"
5604
  msgstr ""
5605
 
5606
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5607
  #, fuzzy
5608
  #| msgid "Get Directions"
5609
  msgid "Redirect to Cart"
5610
  msgstr "Získat směr"
5611
 
5612
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5613
  #, fuzzy
5614
  #| msgid "Get Directions"
5615
  msgid "Redirect to Checkout"
5616
  msgstr "Získat směr"
5617
 
5618
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5619
  #, fuzzy
5620
  #| msgid "View Detail Button"
5621
  msgid "Optional View Cart Button"
5622
  msgstr "Tlačítko Zobrazit detail"
5623
 
5624
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5625
  msgid "Optional Checkout Button"
5626
  msgstr ""
5627
 
5686
  "(Stripe) got canceled."
5687
  msgstr ""
5688
 
5689
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5690
+ #, fuzzy
5691
+ #| msgid "MEC - Support"
5692
+ msgid "MEC Cart"
5693
+ msgstr "MEC - podpora"
5694
+
5695
+ #: app/features/mec/booking.php:1118
5696
  msgid "Use MEC Cart System"
5697
  msgstr ""
5698
 
5699
+ #: app/features/mec/booking.php:1120
5700
  msgid ""
5701
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5702
  "adding a simple cart and checkout system to your website."
5703
  msgstr ""
5704
 
5705
+ #: app/features/mec/booking.php:1122
5706
  msgid "You cannot use following MEC features while using MEC Cart."
5707
  msgstr ""
5708
 
5709
+ #: app/features/mec/booking.php:1124
5710
  #, fuzzy
5711
  #| msgid "Set Up a Payment Gateway"
5712
  msgid "WooCommerce as Payment Gateway"
5713
  msgstr "Nastavení platební brány"
5714
 
5715
+ #: app/features/mec/booking.php:1125
5716
  #, fuzzy
5717
  #| msgid "Next Occurrence of Other Events"
5718
  msgid "Currency Per Event"
5719
  msgstr "Další výskyt dalších událostí"
5720
 
5721
+ #: app/features/mec/booking.php:1126
5722
  #, fuzzy
5723
  #| msgid "Payment Gateways"
5724
  msgid "Disable Gateways Per Event"
5725
  msgstr "Platební brány"
5726
 
5727
+ #: app/features/mec/booking.php:1127
5728
  #, fuzzy
5729
  #| msgid "Set Up WooCommerce Gateway"
5730
  msgid "Stripe Connect Gateway"
5731
  msgstr "Nastavit bránu WooCommerce"
5732
 
5733
+ #: app/features/mec/booking.php:1128
5734
  #, fuzzy
5735
  #| msgid "Set Up WooCommerce Gateway"
5736
  msgid "Pay By WooCommerce Gateway"
5737
  msgstr "Nastavit bránu WooCommerce"
5738
 
5739
+ #: app/features/mec/booking.php:1129
5740
  #, fuzzy
5741
  #| msgid "Enable Organizer Payment Module"
5742
  msgid "Organizer Payment Module"
5743
  msgstr "Povolit platební modul organizátora"
5744
 
5745
+ #: app/features/mec/booking.php:1133
5746
  #, fuzzy
5747
  #| msgid "Start Date"
5748
  msgid "Cart Page"
5749
  msgstr "Počátečná den"
5750
 
5751
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5752
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5753
  #, php-format
5754
  msgid "Put %s shortcode into the page."
5755
  msgstr "Vložte %s na stránku zkrácené kódy."
5756
 
5757
+ #: app/features/mec/booking.php:1145
5758
  #, fuzzy
5759
  #| msgid "Checkout"
5760
  msgid "Checkout Page"
5761
  msgstr "Překontrolovat"
5762
 
5763
+ #: app/features/mec/booking.php:1171
5764
  #, fuzzy
5765
  #| msgid "Enable Invoice"
5766
  msgid "Enable Cart Invoice"
5767
  msgstr "Povolit fakturu"
5768
 
5769
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5770
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5771
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5772
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5774
  msgid "Saved"
5775
  msgstr "Uloženo"
5776
 
5777
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5778
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5779
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5780
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5782
  msgid "Settings Saved!"
5783
  msgstr "Nastavení uložena!"
5784
 
5785
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5786
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5787
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5788
  msgid "Please Refresh Page"
5798
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5799
  msgstr "%s - Nejvýkonnější a snadno použitelný systém pro správu událostí"
5800
 
5801
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5802
  #, php-format
5803
  msgid ""
5804
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5809
  "pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
5810
  "pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
5811
 
5812
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5813
  msgid "lite"
5814
  msgstr " omezenou"
5815
 
5816
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5817
  #: app/features/mec/support.php:126
5818
  msgid "GO PREMIUM"
5819
  msgstr "PŘEJÍT NA PREMIUM"
5820
 
5821
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5822
  msgid "Getting started with Modern Events Calendar"
5823
  msgstr "Začínáme s Modern Events Calendar"
5824
 
5825
+ #: app/features/mec/dashboard.php:113
5826
  msgid ""
5827
  "In this short video, you can learn how to make an event and put a calendar "
5828
  "on your website. Please watch this 2 minutes video to the end."
5830
  "V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
5831
  "svoje stránky. Sledujte prosím toto 2minutové video až do konce."
5832
 
5833
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5834
  #, fuzzy
5835
  #| msgid "MEC Activation"
5836
  msgid "License Activation"
5837
  msgstr "Aktivace MEC"
5838
 
5839
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5840
  msgid "Activate Addons"
5841
  msgstr "Aktivovat doplňky"
5842
 
5843
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5844
  msgid "You cannot access this section."
5845
  msgstr "Nemáte přístup do této části."
5846
 
5847
+ #: app/features/mec/dashboard.php:159
5848
  msgid ""
5849
  "In order to use all plugin features and options, please enter your purchase "
5850
  "code."
5852
  "Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
5853
  "zakoupený kód."
5854
 
5855
+ #: app/features/mec/dashboard.php:267
5856
  msgid "Popular Gateways"
5857
  msgstr "Oblíbené platební brány"
5858
 
5859
+ #: app/features/mec/dashboard.php:325
5860
  msgid "Change Log"
5861
  msgstr "Změna logu"
5862
 
7419
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7420
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7421
  #: app/features/popup/settings.php:272 app/features/search.php:109
7422
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7423
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7424
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7425
  #: app/modules/speakers/details.php:18
8765
  msgid "Please, insert comma to separate reminder hours."
8766
  msgstr ""
8767
 
8768
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8769
  #: app/libraries/main.php:705
8770
  msgid "New Event"
8771
  msgstr "Nová událost"
11106
  msgid "Choose one of saved locations."
11107
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
11108
 
11109
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
11110
+ #: app/features/popup/event.php:171
11111
  msgid "Hide organizer"
11112
  msgstr "Skrýt organizátora"
11113
 
11114
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
11115
+ #: app/features/popup/event.php:180
11116
  msgid "Choose one of saved organizers or insert new one below."
11117
  msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
11118
 
11125
  msgstr "Vložit email organizátora."
11126
 
11127
  #: app/features/organizers.php:120 app/features/organizers.php:157
11128
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
11129
  msgid "Link to organizer page"
11130
  msgstr "Odkaz na stránku organizátora"
11131
 
11139
  msgid "Contact info"
11140
  msgstr "Kontaktní informace"
11141
 
11142
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11143
  msgid "Insert a new organizer"
11144
  msgstr "Vložit nového organizátora"
11145
 
11146
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11147
  msgid "Phone number."
11148
  msgstr "Telefonní číslo."
11149
 
11150
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11151
  msgid "eg. +1 (234) 5678"
11152
  msgstr "např. + 420 123 456 789"
11153
 
11154
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11155
  msgid "Email address."
11156
  msgstr "Emailová adresa."
11157
 
11158
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11159
  msgid "eg. john@smith.com"
11160
  msgstr "např. info@itreseni.cz"
11161
 
11162
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11163
  msgid "eg. https://webnus.net"
11164
  msgstr "např. https://webnus.net"
11165
 
11174
  msgstr ""
11175
  "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
11176
 
11177
+ #: app/features/popup/event.php:60
11178
  #, fuzzy
11179
  #| msgid "Add Shortcode"
11180
  msgid "Adding an Event..."
11181
  msgstr "Přidat zkrácený kód"
11182
 
11183
+ #: app/features/popup/event.php:68
11184
  #, fuzzy
11185
  #| msgid "Event Note"
11186
  msgid "Event Name"
11187
  msgstr "Poznámka události"
11188
 
11189
+ #: app/features/popup/event.php:69
11190
  msgid "Event name is required"
11191
  msgstr ""
11192
 
11193
+ #: app/features/popup/event.php:130
11194
  #, fuzzy
11195
  #| msgid "Choose one of saved locations or insert new one below."
11196
  msgid "Choose one of saved locations or insert new one."
11197
  msgstr "Vyberte jedno z uložených míst nebo vložte nové."
11198
 
11199
+ #: app/features/popup/event.php:134
11200
  #, fuzzy
11201
  #| msgid "Location"
11202
  msgid "Add Location"
11203
  msgstr "Umístění"
11204
 
11205
+ #: app/features/popup/event.php:184
11206
  #, fuzzy
11207
  #| msgid "Organizer"
11208
  msgid "Add Organizer"
11209
  msgstr "Organizátor"
11210
 
11211
+ #: app/features/popup/event.php:224
11212
  #, fuzzy
11213
  #| msgid "Categories"
11214
  msgid "All Categories"
11215
  msgstr "Kategorie"
11216
 
11217
+ #: app/features/popup/event.php:225
11218
  msgid "Most Used"
11219
  msgstr ""
11220
 
11221
+ #: app/features/popup/event.php:236
11222
  #, fuzzy
11223
  #| msgid "Add New Event"
11224
  msgid "Add New Category"
11225
  msgstr "Přidat novou událost"
11226
 
11227
  # v kontextu
11228
+ #: app/features/popup/event.php:247
11229
  #, fuzzy
11230
  #| msgid "Featured Image"
11231
  msgid "Set Featured Image"
11232
  msgstr "Hlavní obrázek"
11233
 
11234
+ #: app/features/popup/event.php:257
11235
  msgid "Your Event Has Been Created."
11236
  msgstr ""
11237
 
11238
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11239
  #: app/features/popup/shortcode.php:553
11240
  msgid "Prev"
11241
  msgstr ""
11242
 
11243
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11244
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11245
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11246
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11446
  msgid "No search result."
11447
  msgstr "Žádný výsledek vyhledávání."
11448
 
11449
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11450
+ #: app/features/speakers.php:293
11451
  msgid "Job Title"
11452
  msgstr "Pracovní pozice"
11453
 
11454
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11455
  msgid "Insert speaker job title."
11456
  msgstr "Vložte pracovní pozici řečníka."
11457
 
11458
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11459
  msgid "Insert speaker phone number."
11460
  msgstr "Vložte telefonní číslo řečníka."
11461
 
11462
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11463
  msgid "Insert speaker email address."
11464
  msgstr "Vložte email řečníka."
11465
 
11466
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11467
  #, fuzzy
11468
  #| msgid "Insert URL of Instagram"
11469
  msgid "Insert URL of Website"
11470
  msgstr "Vložte URL Instagramu"
11471
 
11472
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11473
  msgid "Facebook Page"
11474
  msgstr "Stránka na Facebooku"
11475
 
11476
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11477
  msgid "Insert URL of Facebook Page"
11478
  msgstr "Vložte URL stránky na Facebooku"
11479
 
11480
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11481
  msgid "Instagram"
11482
  msgstr "Instagram"
11483
 
11484
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11485
  msgid "Insert URL of Instagram"
11486
  msgstr "Vložte URL Instagramu"
11487
 
11488
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11489
  #, fuzzy
11490
  #| msgid "Linkedin"
11491
  msgid "LinkedIn"
11492
  msgstr "Linkedin"
11493
 
11494
+ #: app/features/speakers.php:169
11495
  #, fuzzy
11496
  #| msgid "Insert URL of Instagram"
11497
  msgid "Insert URL of LinkedIn"
11498
  msgstr "Vložte URL Instagramu"
11499
 
11500
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11501
  msgid "Twitter Page"
11502
  msgstr "Stránka na Twitteru"
11503
 
11504
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11505
  msgid "Insert URL of Twitter Page"
11506
  msgstr "Vložte URL stránky na Twitteru"
11507
 
11508
+ #: app/features/speakers.php:228
11509
  #, fuzzy
11510
  #| msgid "Insert URL of Instagram"
11511
  msgid "Insert URL of linkedin"
11512
  msgstr "Vložte URL Instagramu"
11513
 
11514
+ #: app/features/speakers.php:353
11515
  msgid "Sorry, You must insert speaker name!"
11516
  msgstr "Litujeme, musíte zadat jméno řečníka!"
11517
 
11518
+ #: app/features/speakers.php:402
11519
  msgid ""
11520
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11521
  "section and speaker widget section!"
11606
  msgid "Upgrade to Pro Version"
11607
  msgstr "Upgrade na verzi PRO"
11608
 
11609
+ #: app/libraries/factory.php:232
11610
  msgctxt "plugin link"
11611
  msgid "Settings"
11612
  msgstr "Nastavení"
11613
 
11614
+ #: app/libraries/factory.php:237
11615
  msgctxt "plugin link"
11616
  msgid "Upgrade"
11617
  msgstr "Upgrade"
11618
 
11619
+ #: app/libraries/factory.php:391
11620
  msgid "day"
11621
  msgstr "den"
11622
 
11623
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11624
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11625
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11626
  msgid "days"
11627
  msgstr "dny"
11628
 
11629
+ #: app/libraries/factory.php:393
11630
  msgid "hour"
11631
  msgstr "hodina"
11632
 
11633
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11634
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11635
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11636
  msgid "hours"
11637
  msgstr "hodiny"
11638
 
11639
+ #: app/libraries/factory.php:395
11640
  msgid "minute"
11641
  msgstr "minuta"
11642
 
11643
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11644
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11645
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11646
  msgid "minutes"
11647
  msgstr "minuty"
11648
 
11649
+ #: app/libraries/factory.php:397
11650
  msgid "second"
11651
  msgstr "vteřina"
11652
 
11653
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11654
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11655
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11656
  msgid "seconds"
11657
  msgstr "vteřiny"
11658
 
11659
+ #: app/libraries/factory.php:475
11660
  msgid "MEC Single Sidebar"
11661
  msgstr "MEC Postranní panel"
11662
 
11663
+ #: app/libraries/factory.php:476
11664
  msgid "Custom sidebar for single and modal page of MEC."
11665
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
11666
 
11667
+ #: app/libraries/factory.php:1197
11668
  msgid "Notice:"
11669
  msgstr ""
11670
 
11671
+ #: app/libraries/factory.php:1198
11672
  msgid "This update includes only bug fixes."
11673
  msgstr ""
11674
 
11825
  msgid "%s Form"
11826
  msgstr ""
11827
 
 
 
 
 
 
 
11828
  #: app/libraries/main.php:726
11829
  msgid "Only For Bookers"
11830
  msgstr ""
12613
  msgid "End at: %s - %s"
12614
  msgstr ""
12615
 
12616
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12617
  #, fuzzy
12618
  #| msgid "Repeating"
12619
  msgid "Repeating Event"
13098
  msgid "http://webnus.net"
13099
  msgstr "http://webnus.net"
13100
 
13101
+ #~ msgctxt "plugin rate"
13102
+ #~ msgid "Rate the plugin ★★★★★"
13103
+ #~ msgstr "Ohodnoťe doplněk ★★★★★"
13104
+
13105
+ #~ msgid ""
13106
+ #~ "Easily get a discount coupon by rating us on %s or following and "
13107
+ #~ "reposting us on social media. Just send a screenshot to %s and you'll "
13108
+ #~ "receive the %s"
13109
+ #~ msgstr ""
13110
+ #~ "Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
13111
+ #~ "uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte "
13112
+ #~ "% s"
13113
+
13114
+ #~ msgid "WordPress"
13115
+ #~ msgstr "WordPress"
13116
+
13117
+ #~ msgid "Copouns!"
13118
+ #~ msgstr "Kupóny!"
13119
+
13120
  #, fuzzy
13121
  #~| msgid ""
13122
  #~| "The %s ticket is sold out. You can try another ticket or another date."
languages/modern-events-calendar-lite-de_DE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
6
- "PO-Revision-Date: 2022-02-23 13:29+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -174,7 +174,7 @@ msgid "Canceled"
174
  msgstr "Abgesagt"
175
 
176
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
177
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
178
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
179
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
180
  #: app/features/mec/notifications.php:1922
@@ -212,14 +212,14 @@ msgstr "Vorname"
212
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
213
  #: app/features/autoemails.php:60 app/features/events.php:606
214
  #: app/features/events.php:2650 app/features/events.php:2717
215
- #: app/features/events.php:2806 app/features/events.php:4443
216
- #: app/features/fes.php:280 app/features/fes/form.php:810
217
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
218
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
219
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
220
  #: app/features/organizers.php:112 app/features/organizers.php:153
221
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
222
- #: app/features/speakers.php:205 app/libraries/main.php:653
223
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
224
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
225
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -375,8 +375,8 @@ msgstr "Datum"
375
  #: app/features/events.php:2808 app/features/mec/booking.php:800
376
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
377
  #: app/features/organizers.php:104 app/features/organizers.php:149
378
- #: app/features/speakers.php:120 app/features/speakers.php:201
379
- #: app/features/speakers.php:288 app/libraries/main.php:4252
380
  msgid "Tel"
381
  msgstr "Tel"
382
 
@@ -522,6 +522,11 @@ msgstr ""
522
  msgid "Agreement"
523
  msgstr "Zustimmung"
524
 
 
 
 
 
 
525
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
526
  #, php-format
527
  msgid "Instead of %s, the page title with a link will be show."
@@ -699,8 +704,8 @@ msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger
699
  #: app/features/events.php:1843 app/features/events.php:2014
700
  #: app/features/events.php:2029 app/features/events.php:2271
701
  #: app/features/events.php:2283 app/features/events.php:2476
702
- #: app/features/events.php:2513 app/features/fes/form.php:458
703
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
704
  #: app/features/locations.php:341 app/features/mec/booking.php:113
705
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
706
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -777,9 +782,9 @@ msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger
777
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
778
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
779
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
780
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
781
- #: app/features/organizers.php:289 app/features/popup/event.php:128
782
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
783
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
784
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
785
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -943,8 +948,8 @@ msgstr ""
943
 
944
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
945
  #: app/features/events.php:432 app/features/events.php:1283
946
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
947
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
948
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
949
  #: app/skins/single.php:1126 app/skins/single/default.php:213
950
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1023,7 +1028,7 @@ msgid "How to set label"
1023
  msgstr ""
1024
 
1025
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1026
- #: app/features/events.php:4195 app/features/fes/form.php:998
1027
  #: app/features/labels.php:61 app/features/labels.php:227
1028
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1029
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1059,7 +1064,7 @@ msgid "How to set location"
1059
  msgstr "Ort verbergen"
1060
 
1061
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1062
- #: app/features/events.php:3876 app/features/events.php:4188
1063
  #: app/features/locations.php:58 app/features/locations.php:267
1064
  #: app/features/locations.php:329 app/features/locations.php:331
1065
  #: app/features/locations.php:340
@@ -1079,7 +1084,7 @@ msgstr "Ort verbergen"
1079
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1080
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1081
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1082
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1083
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1084
  #: app/features/search.php:97 app/libraries/main.php:3020
1085
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1093,7 +1098,7 @@ msgstr "Ort"
1093
 
1094
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1095
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1096
- #: app/features/speakers.php:136 app/features/speakers.php:209
1097
  #: app/skins/single.php:1406 app/skins/single.php:1473
1098
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1099
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1116,7 +1121,7 @@ msgstr ""
1116
 
1117
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1118
  #: app/features/events.php:1519 app/features/events.php:1532
1119
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1120
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1121
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1122
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1167,8 +1172,8 @@ msgstr "Veranstalter verbergen"
1167
 
1168
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1169
  #: app/features/events.php:431 app/features/events.php:3877
1170
- #: app/features/events.php:4190 app/features/events.php:4191
1171
- #: app/features/events.php:4192
1172
  #: app/features/mec/meta_boxes/display_options.php:1660
1173
  #: app/features/mec/meta_boxes/search_form.php:80
1174
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1183,12 +1188,12 @@ msgstr "Veranstalter verbergen"
1183
  #: app/features/mec/meta_boxes/search_form.php:983
1184
  #: app/features/mec/meta_boxes/search_form.php:1070
1185
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1186
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1187
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1188
  #: app/features/organizers.php:58 app/features/organizers.php:208
1189
  #: app/features/organizers.php:277 app/features/organizers.php:279
1190
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1191
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1192
  #: app/features/popup/settings.php:263 app/features/search.php:103
1193
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1194
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1314,8 +1319,8 @@ msgstr "Uhrzeit"
1314
  #: app/features/booking/calendar_novel.php:145
1315
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1316
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1317
- #: app/libraries/render.php:554 app/libraries/render.php:758
1318
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1319
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1320
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1321
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1382,7 +1387,7 @@ msgstr "Keine Veranstaltungen gefunden!"
1382
 
1383
  #: app/features/autoemails.php:74 app/features/events.php:230
1384
  #: app/features/labels.php:72 app/features/locations.php:70
1385
- #: app/features/organizers.php:70 app/features/speakers.php:72
1386
  #: app/features/tag.php:70
1387
  #, php-format
1388
  msgid "Edit %s"
@@ -1448,7 +1453,7 @@ msgstr "Standart ist leer "
1448
  msgid "Go to events page"
1449
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
1450
 
1451
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1452
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1453
  #: app/features/wc.php:91 app/libraries/main.php:3072
1454
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1530,7 +1535,7 @@ msgstr "Buchung / Reservierung"
1530
  msgid "Back to Cart"
1531
  msgstr "← Zurück zu %s"
1532
 
1533
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1534
  #: app/features/mec/settings.php:907
1535
  msgid "Event Color"
1536
  msgstr "Farbe der Veranstaltung"
@@ -1542,8 +1547,8 @@ msgid "Recent Colors"
1542
  msgstr "Farbe der Veranstaltung"
1543
 
1544
  #: app/features/contextual.php:55 app/features/mec.php:546
1545
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1546
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1547
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1548
  #: app/libraries/main.php:738
1549
  msgid "Settings"
@@ -1695,7 +1700,7 @@ msgid "Event Details/Single Event Page"
1695
  msgstr "Event Details / Einzelveranstaltungsseite"
1696
 
1697
  #: app/features/contextual.php:166 app/features/events.php:1298
1698
- #: app/features/fes/form.php:883
1699
  msgid "Currency Options"
1700
  msgstr "Währungseinstellungen"
1701
 
@@ -1789,8 +1794,8 @@ msgid "Public File to Download"
1789
  msgstr ""
1790
 
1791
  #: app/features/dlfile.php:297 app/features/events.php:3874
1792
- #: app/features/events.php:4181 app/features/events.php:4730
1793
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1794
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1795
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1796
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1799,7 +1804,7 @@ msgid "Title"
1799
  msgstr "Titel"
1800
 
1801
  #: app/features/dlfile.php:301 app/features/events.php:1988
1802
- #: app/features/events.php:2248 app/features/events.php:4182
1803
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1804
  #: app/libraries/hourlyschedule.php:152
1805
  msgid "Description"
@@ -1846,7 +1851,7 @@ msgid "Before"
1846
  msgstr "Vor €10"
1847
 
1848
  #: app/features/emails/details.php:35 app/features/events.php:1223
1849
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1850
  msgid "After"
1851
  msgstr "Nach"
1852
 
@@ -1857,7 +1862,7 @@ msgid "event occurrence."
1857
  msgstr "Nächstes Event"
1858
 
1859
  #: app/features/emails/details.php:40 app/features/events.php:192
1860
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1861
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1862
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1863
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1878,11 +1883,11 @@ msgstr ""
1878
  msgid "Add Event"
1879
  msgstr "Veranstaltung hinzufügen"
1880
 
1881
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1882
  msgid "Add New Event"
1883
  msgstr "Neue Veranstaltung hinzufügen"
1884
 
1885
- #: app/features/events.php:196 app/features/ix.php:4573
1886
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1887
  #: app/skins/map/tpl.php:93
1888
  msgid "No events found!"
@@ -1893,7 +1898,7 @@ msgid "Edit Event"
1893
  msgstr "Event Bearbeiten"
1894
 
1895
  #: app/features/events.php:199 app/features/fes/list.php:100
1896
- #: app/features/popup/event.php:254
1897
  msgid "View Event"
1898
  msgstr "Veranstaltung ansehen"
1899
 
@@ -1902,7 +1907,7 @@ msgid "No events found in Trash!"
1902
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
1903
 
1904
  #: app/features/events.php:219 app/features/events.php:3831
1905
- #: app/features/events.php:4196 app/features/fes/form.php:972
1906
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1907
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1908
  #: app/libraries/main.php:7619
@@ -1911,49 +1916,49 @@ msgstr "Kategorien"
1911
 
1912
  #: app/features/events.php:229 app/features/labels.php:71
1913
  #: app/features/locations.php:69 app/features/organizers.php:69
1914
- #: app/features/speakers.php:71 app/features/tag.php:69
1915
  #, php-format
1916
  msgid "All %s"
1917
  msgstr "Alle %s"
1918
 
1919
  #: app/features/events.php:231 app/features/labels.php:73
1920
  #: app/features/locations.php:71 app/features/organizers.php:71
1921
- #: app/features/speakers.php:73 app/features/tag.php:71
1922
  #, php-format
1923
  msgid "View %s"
1924
  msgstr "Ansicht %s"
1925
 
1926
  #: app/features/events.php:232 app/features/labels.php:74
1927
  #: app/features/locations.php:72 app/features/organizers.php:72
1928
- #: app/features/speakers.php:74 app/features/tag.php:72
1929
  #, php-format
1930
  msgid "Update %s"
1931
  msgstr "Update %s"
1932
 
1933
  #: app/features/events.php:233 app/features/labels.php:75
1934
  #: app/features/locations.php:73 app/features/organizers.php:73
1935
- #: app/features/speakers.php:75 app/features/tag.php:73
1936
  #, php-format
1937
  msgid "Add New %s"
1938
  msgstr "Neu hinzufügen%s"
1939
 
1940
  #: app/features/events.php:234 app/features/labels.php:76
1941
  #: app/features/locations.php:74 app/features/organizers.php:74
1942
- #: app/features/speakers.php:76 app/features/tag.php:74
1943
  #, php-format
1944
  msgid "New %s Name"
1945
  msgstr "Neuer %s Name"
1946
 
1947
  #: app/features/events.php:235 app/features/labels.php:77
1948
  #: app/features/locations.php:75 app/features/organizers.php:75
1949
- #: app/features/speakers.php:77 app/features/tag.php:75
1950
  #, php-format
1951
  msgid "Popular %s"
1952
  msgstr "Beliebt %s"
1953
 
1954
  #: app/features/events.php:236 app/features/labels.php:78
1955
  #: app/features/locations.php:76 app/features/organizers.php:76
1956
- #: app/features/speakers.php:78 app/features/tag.php:76
1957
  #, php-format
1958
  msgid "Search %s"
1959
  msgstr "Suche %s"
@@ -1983,7 +1988,7 @@ msgstr ""
1983
  #: app/features/events.php:278 app/features/events.php:336
1984
  #: app/features/locations.php:161 app/features/locations.php:213
1985
  #: app/features/organizers.php:133 app/features/organizers.php:164
1986
- #: app/features/speakers.php:181 app/features/speakers.php:232
1987
  msgid "Upload/Add image"
1988
  msgstr "Bild hochladen/hinzufügen"
1989
 
@@ -1992,7 +1997,7 @@ msgstr "Bild hochladen/hinzufügen"
1992
  #: app/features/locations.php:393 app/features/locations.php:400
1993
  #: app/features/organizers.php:134 app/features/organizers.php:165
1994
  #: app/features/organizers.php:316 app/features/organizers.php:323
1995
- #: app/features/speakers.php:182 app/features/speakers.php:233
1996
  msgid "Remove image"
1997
  msgstr "Bild entfernen"
1998
 
@@ -2010,7 +2015,7 @@ msgstr "Veranstaltungsdetails"
2010
  msgid "Date And Time"
2011
  msgstr "Datum und Uhrzeit"
2012
 
2013
- #: app/features/events.php:425 app/features/fes/form.php:384
2014
  msgid "Event Repeating"
2015
  msgstr "Wiederholende Veranstaltung"
2016
 
@@ -2055,10 +2060,10 @@ msgid "Guest Data"
2055
  msgstr "Gäste Daten"
2056
 
2057
  #: app/features/events.php:605 app/features/events.php:2641
2058
- #: app/features/events.php:4440 app/features/fes.php:280
2059
- #: app/features/fes/form.php:814 app/features/labels.php:184
2060
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2061
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2062
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2063
  msgid "Name"
2064
  msgstr "Name"
@@ -2069,13 +2074,13 @@ msgid ""
2069
  "overwrite in the next import from Google."
2070
  msgstr ""
2071
 
2072
- #: app/features/events.php:619 app/features/fes/form.php:282
2073
  msgid "Date and Time"
2074
  msgstr "Datum und Uhrzeit"
2075
 
2076
  #: app/features/events.php:622 app/features/events.php:626
2077
- #: app/features/events.php:3878 app/features/events.php:4183
2078
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2079
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2080
  #: app/features/mec/meta_boxes/display_options.php:57
2081
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2093,13 +2098,13 @@ msgstr "Datum und Uhrzeit"
2093
  #: app/features/mec/meta_boxes/display_options.php:2347
2094
  #: app/features/mec/meta_boxes/display_options.php:2478
2095
  #: app/features/mec/meta_boxes/display_options.php:2584
2096
- #: app/features/popup/event.php:77
2097
  msgid "Start Date"
2098
  msgstr "Start Datum"
2099
 
2100
  #: app/features/events.php:642 app/features/events.php:646
2101
- #: app/features/events.php:3879 app/features/events.php:4185
2102
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2103
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2104
  #: app/features/mec/meta_boxes/display_options.php:73
2105
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2108,33 +2113,33 @@ msgstr "Start Datum"
2108
  #: app/features/mec/meta_boxes/display_options.php:788
2109
  #: app/features/mec/meta_boxes/display_options.php:1618
2110
  #: app/features/mec/meta_boxes/display_options.php:2363
2111
- #: app/features/popup/event.php:94
2112
  msgid "End Date"
2113
  msgstr "Ende Datum"
2114
 
2115
- #: app/features/events.php:669 app/features/fes/form.php:324
2116
- #: app/features/popup/event.php:111
2117
  #, fuzzy
2118
  #| msgid "All Day Event"
2119
  msgid "All-day Event"
2120
  msgstr "Ganztägige Veranstaltung"
2121
 
2122
- #: app/features/events.php:679 app/features/fes/form.php:327
2123
  msgid "Hide Event Time"
2124
  msgstr "Event / Veranstaltungszeit verbergen"
2125
 
2126
- #: app/features/events.php:689 app/features/fes/form.php:330
2127
  msgid "Hide Event End Time"
2128
  msgstr "Ende-Zeit der Veranstaltung verbergen"
2129
 
2130
  #: app/features/events.php:694 app/features/events.php:698
2131
- #: app/features/fes/form.php:334
2132
  #, fuzzy
2133
  #| msgid "Note to reviewer"
2134
  msgid "Notes on the time"
2135
  msgstr "Zusätzliche Anmerkungen zum Event "
2136
 
2137
- #: app/features/events.php:699 app/features/fes/form.php:335
2138
  #, fuzzy
2139
  #| msgid ""
2140
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2146,7 +2151,7 @@ msgstr ""
2146
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
2147
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
2148
 
2149
- #: app/features/events.php:711 app/features/fes/form.php:342
2150
  #, fuzzy
2151
  #| msgid "Timezone: %s"
2152
  msgid "Timezone"
@@ -2157,55 +2162,55 @@ msgstr "Zeitzone: %s"
2157
  #: app/features/events.php:1793 app/features/events.php:1813
2158
  #: app/features/events.php:1868 app/features/events.php:2438
2159
  #: app/features/events.php:2561 app/features/events.php:2672
2160
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2161
  msgid "Inherit from global options"
2162
  msgstr "Aus den globalen Einstellungen übernehmen"
2163
 
2164
  #: app/features/events.php:725 app/features/events.php:728
2165
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2166
  #: app/features/mec/settings.php:858
2167
  #, fuzzy
2168
  #| msgid "Countdown View"
2169
  msgid "Countdown Method"
2170
  msgstr "Countdownansicht"
2171
 
2172
- #: app/features/events.php:730 app/features/fes/form.php:361
2173
  #, fuzzy
2174
  #| msgid "On Event Start"
2175
  msgid "Count to Event Start"
2176
  msgstr "Am Event Start"
2177
 
2178
- #: app/features/events.php:731 app/features/fes/form.php:362
2179
  #, fuzzy
2180
  #| msgid "On Event End"
2181
  msgid "Count to Event End"
2182
  msgstr "Am Event Ende"
2183
 
2184
- #: app/features/events.php:737 app/features/fes/form.php:369
2185
  #: app/modules/weather/darksky.php:57
2186
  msgid "Visibility"
2187
  msgstr "Sichtbarkeit"
2188
 
2189
- #: app/features/events.php:740 app/features/fes/form.php:372
2190
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2191
  #, fuzzy
2192
  #| msgid "Visibility"
2193
  msgid "Event Visibility"
2194
  msgstr "Sichtbarkeit"
2195
 
2196
- #: app/features/events.php:741 app/features/fes/form.php:373
2197
  #, fuzzy
2198
  #| msgid "Booking"
2199
  msgid "Show on Shortcodes"
2200
  msgstr "Buchung / Reservierung"
2201
 
2202
- #: app/features/events.php:742 app/features/fes/form.php:374
2203
  #, fuzzy
2204
  #| msgid "Shortcodes"
2205
  msgid "Hide on Shortcodes"
2206
  msgstr "Shortcodes"
2207
 
2208
- #: app/features/events.php:749 app/features/fes/form.php:382
2209
  msgid "Repeating"
2210
  msgstr "Wiederholen"
2211
 
@@ -2213,63 +2218,68 @@ msgstr "Wiederholen"
2213
  msgid "Event Repeating (Recurring events)"
2214
  msgstr "Wiederholende Veranstaltung"
2215
 
2216
- #: app/features/events.php:762 app/features/fes/form.php:388
2217
  msgid "Repeats"
2218
  msgstr "Wiederholend"
2219
 
2220
- #: app/features/events.php:770 app/features/fes/form.php:390
2221
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2222
  #: app/skins/full_calendar/tpl.php:140
2223
  msgid "Daily"
2224
  msgstr "Täglich"
2225
 
2226
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2227
  msgid "Every Weekday"
2228
  msgstr "An jedem Wochentag"
2229
 
2230
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2231
  msgid "Every Weekend"
2232
  msgstr "An jedem Wochenende"
2233
 
2234
- #: app/features/events.php:791 app/features/fes/form.php:393
2235
  msgid "Certain Weekdays"
2236
  msgstr "Bestimmte Wochentage"
2237
 
2238
- #: app/features/events.php:798 app/features/fes/form.php:394
2239
- #: app/skins/default_full_calendar/tpl.php:78
2240
  #: app/skins/full_calendar/tpl.php:139
2241
  msgid "Weekly"
2242
  msgstr "Wöchentlich"
2243
 
2244
- #: app/features/events.php:805 app/features/fes/form.php:395
2245
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2246
  #: app/skins/full_calendar/tpl.php:138
2247
  msgid "Monthly"
2248
  msgstr "Monatlich"
2249
 
2250
- #: app/features/events.php:812 app/features/fes/form.php:396
2251
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2252
  #: app/skins/full_calendar/tpl.php:137
2253
  msgid "Yearly"
2254
  msgstr "Jährlich"
2255
 
2256
- #: app/features/events.php:819 app/features/fes/form.php:397
2257
  msgid "Custom Days"
2258
  msgstr "Benutzerdefinierte Tage"
2259
 
2260
- #: app/features/events.php:826 app/features/fes/form.php:398
2261
  msgid "Advanced"
2262
  msgstr "Fortgeschritten"
2263
 
2264
- #: app/features/events.php:831 app/features/fes/form.php:402
2265
  msgid "Repeat Interval"
2266
  msgstr "Wiederholungsintervall"
2267
 
2268
- #: app/features/events.php:833 app/features/fes/form.php:403
2269
  msgid "Repeat interval"
2270
  msgstr "Wiederholungsintervall"
2271
 
2272
- #: app/features/events.php:837 app/features/fes/form.php:406
2273
  msgid "Week Days"
2274
  msgstr "Wochentage"
2275
 
@@ -2283,7 +2293,7 @@ msgstr "Pro Version vom Modernen Event Calendar"
2283
 
2284
  #: app/features/events.php:860 app/features/events.php:2101
2285
  #: app/features/events.php:2129 app/features/events.php:2343
2286
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2287
  #: app/features/ix/import_g_calendar.php:51
2288
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2289
  #: app/libraries/skins.php:1389
@@ -2294,17 +2304,17 @@ msgstr "Start"
2294
  #: app/features/events.php:2085 app/features/events.php:2167
2295
  #: app/features/events.php:2332 app/features/events.php:2376
2296
  #: app/features/events.php:2449 app/features/events.php:2566
2297
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2298
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2299
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2300
  msgid "Add"
2301
  msgstr "Hinzufügen"
2302
 
2303
- #: app/features/events.php:877 app/features/fes/form.php:454
2304
  msgid "Custom Days Repeating"
2305
  msgstr "Benutzerdefinierte Wiederholende Tage"
2306
 
2307
- #: app/features/events.php:880 app/features/fes/form.php:457
2308
  msgid ""
2309
  "Add certain days to event occurrence dates. If you have a single day event, "
2310
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2313,44 +2323,44 @@ msgstr ""
2313
 
2314
  #: app/features/events.php:891 app/features/events.php:2105
2315
  #: app/features/events.php:2133 app/features/events.php:2347
2316
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2317
  msgid "End"
2318
  msgstr "Ende"
2319
 
2320
- #: app/features/events.php:968 app/features/fes/form.php:530
2321
  msgid "First"
2322
  msgstr "Erster"
2323
 
2324
- #: app/features/events.php:1010 app/features/fes/form.php:572
2325
  msgid "Second"
2326
  msgstr "Zweiter"
2327
 
2328
- #: app/features/events.php:1052 app/features/fes/form.php:614
2329
  msgid "Third"
2330
  msgstr "Dritter"
2331
 
2332
- #: app/features/events.php:1094 app/features/fes/form.php:656
2333
  msgid "Fourth"
2334
  msgstr "Vierte"
2335
 
2336
- #: app/features/events.php:1136 app/features/fes/form.php:698
2337
  msgid "Last"
2338
  msgstr "Letzter"
2339
 
2340
- #: app/features/events.php:1183 app/features/fes/form.php:744
2341
  msgid "Ends Repeat"
2342
  msgstr "Wiederholung endet"
2343
 
2344
- #: app/features/events.php:1195 app/features/fes/form.php:748
2345
  msgid "Never"
2346
  msgstr "Niemals"
2347
 
2348
- #: app/features/events.php:1207 app/features/fes/form.php:753
2349
  msgid "On"
2350
  msgstr "Am"
2351
 
2352
  #: app/features/events.php:1227 app/features/events.php:1231
2353
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2354
  msgid "Occurrences times"
2355
  msgstr " mal vorkommen"
2356
 
@@ -2366,14 +2376,14 @@ msgstr ""
2366
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
2367
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
2368
 
2369
- #: app/features/events.php:1248 app/features/fes/form.php:779
2370
  #, fuzzy
2371
  #| msgid "Next Occurrence of Other Events"
2372
  msgid "Show only one occurrence of this event"
2373
  msgstr "Nächstes Auftreten von anderen Events."
2374
 
2375
- #: app/features/events.php:1277 app/features/events.php:4193
2376
- #: app/features/fes/form.php:865
2377
  #: app/features/mec/meta_boxes/search_form.php:116
2378
  #: app/features/mec/meta_boxes/search_form.php:204
2379
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2397,76 +2407,76 @@ msgstr "Nächstes Auftreten von anderen Events."
2397
  #: app/features/mec/notifications.php:1511
2398
  #: app/features/mec/notifications.php:1628
2399
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2400
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2401
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2402
  #: app/widgets/single.php:122
2403
  msgid "Event Cost"
2404
  msgstr ""
2405
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
2406
 
2407
- #: app/features/events.php:1292 app/features/fes/form.php:877
2408
  #, fuzzy
2409
  #| msgid "Show weather module on event page"
2410
  msgid "Show the minimum price based on tickets"
2411
  msgstr "Wettermodul auf der Eventseite anzeigen"
2412
 
2413
- #: app/features/events.php:1300 app/features/fes/form.php:885
2414
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2415
  #: app/libraries/main.php:646
2416
  msgid "Currency"
2417
  msgstr "Währung"
2418
 
2419
  #: app/features/events.php:1310 app/features/events.php:1315
2420
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2421
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2422
  msgid "Currency Sign"
2423
  msgstr "Währungssymbol"
2424
 
2425
- #: app/features/events.php:1316 app/features/fes/form.php:901
2426
  #: app/features/mec/settings.php:600
2427
  msgid "Default value will be \"currency\" if you leave it empty."
2428
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
2429
 
2430
- #: app/features/events.php:1323 app/features/fes/form.php:908
2431
  #: app/features/mec/settings.php:607
2432
  msgid "Currency Position"
2433
  msgstr "Position des Währungssymbols"
2434
 
2435
- #: app/features/events.php:1326 app/features/fes/form.php:911
2436
  #: app/features/mec/settings.php:610
2437
  #, fuzzy
2438
  #| msgid "Before $10"
2439
  msgid "$10 (Before)"
2440
  msgstr "Vor €10"
2441
 
2442
- #: app/features/events.php:1327 app/features/fes/form.php:912
2443
  #: app/features/mec/settings.php:611
2444
  msgid "$ 10 (Before with Space)"
2445
  msgstr ""
2446
 
2447
- #: app/features/events.php:1328 app/features/fes/form.php:913
2448
  #: app/features/mec/settings.php:612
2449
  #, fuzzy
2450
  #| msgid "After"
2451
  msgid "10$ (After)"
2452
  msgstr "Nach"
2453
 
2454
- #: app/features/events.php:1329 app/features/fes/form.php:914
2455
  #: app/features/mec/settings.php:613
2456
  msgid "10 $ (After with Space)"
2457
  msgstr ""
2458
 
2459
- #: app/features/events.php:1334 app/features/fes/form.php:919
2460
  #: app/features/mec/settings.php:618
2461
  msgid "Thousand Separator"
2462
  msgstr "Tausendertrennzeichen"
2463
 
2464
- #: app/features/events.php:1340 app/features/fes/form.php:925
2465
  #: app/features/mec/settings.php:624
2466
  msgid "Decimal Separator"
2467
  msgstr "Dezimaltrennzeichen"
2468
 
2469
- #: app/features/events.php:1350 app/features/fes/form.php:935
2470
  #: app/features/mec/settings.php:634
2471
  msgid "No decimal"
2472
  msgstr "Keine Dezimale"
@@ -2492,21 +2502,21 @@ msgstr ""
2492
  msgid "Day 1"
2493
  msgstr "Tag 1"
2494
 
2495
- #: app/features/events.php:1498 app/features/fes/form.php:829
2496
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2497
  msgid "Event Links"
2498
  msgstr "Veranstaltungslinks"
2499
 
2500
  #: app/features/events.php:1501 app/features/events.php:1509
2501
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2502
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2503
  #: app/libraries/main.php:7649
2504
  msgid "Event Link"
2505
  msgstr "Veranstaltungslink"
2506
 
2507
  #: app/features/events.php:1504 app/features/events.php:1522
2508
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2509
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2510
  msgid "eg. http://yoursite.com/your-event"
2511
  msgstr "z.B. http://yoursite.com/your-event"
2512
 
@@ -2528,24 +2538,24 @@ msgstr ""
2528
  msgid "URL Shortener"
2529
  msgstr ""
2530
 
2531
- #: app/features/events.php:1525 app/features/fes/form.php:838
2532
- #: app/features/occurrences.php:527
2533
  msgid "More Information"
2534
  msgstr "z.B. Noch mehr Informationen "
2535
 
2536
- #: app/features/events.php:1527 app/features/fes/form.php:840
2537
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2538
  #: app/features/popup/shortcode.php:481
2539
  msgid "Current Window"
2540
  msgstr "Aktuelles Fenster"
2541
 
2542
- #: app/features/events.php:1528 app/features/fes/form.php:841
2543
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2544
  #: app/features/popup/shortcode.php:485
2545
  msgid "New Window"
2546
  msgstr "Neues Fenster"
2547
 
2548
- #: app/features/events.php:1533 app/features/fes/form.php:843
2549
  msgid ""
2550
  "If you fill it, it will be shown in event details page as an optional link. "
2551
  "Insert full link including http(s)://"
@@ -2922,9 +2932,9 @@ msgid "Ticket ID"
2922
  msgstr "Ticket"
2923
 
2924
  #: app/features/events.php:1944 app/features/events.php:2211
2925
- #: app/features/events.php:4180 app/features/fes.php:280
2926
  #: app/features/labels.php:183 app/features/locations.php:266
2927
- #: app/features/organizers.php:207 app/features/speakers.php:285
2928
  msgid "ID"
2929
  msgstr "ID"
2930
 
@@ -2933,12 +2943,12 @@ msgid "Ticket Name"
2933
  msgstr "Ticket Name"
2934
 
2935
  #: app/features/events.php:1956 app/features/events.php:2219
2936
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2937
  msgid "Start Time"
2938
  msgstr "Uhrzeit des Beginns"
2939
 
2940
  #: app/features/events.php:1970 app/features/events.php:2233
2941
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2942
  msgid "End Time"
2943
  msgstr "Uhrzeit Ende"
2944
 
@@ -2960,7 +2970,7 @@ msgstr ""
2960
  #: app/features/events.php:2007 app/features/events.php:2011
2961
  #: app/features/events.php:2109 app/features/events.php:2136
2962
  #: app/features/events.php:2265 app/features/events.php:2268
2963
- #: app/features/events.php:2349 app/features/events.php:4739
2964
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2965
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2966
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3120,7 +3130,7 @@ msgstr "Teilnehmer Liste"
3120
  msgid "Fixed Fields"
3121
  msgstr "Pflichtfeld"
3122
 
3123
- #: app/features/events.php:2887 app/features/events.php:4733
3124
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3125
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3126
  msgid "Attendees"
@@ -3152,7 +3162,7 @@ msgid "Expired Events"
3152
  msgstr "Abgelaufene Events"
3153
 
3154
  #: app/features/events.php:3757 app/features/mec.php:1374
3155
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3156
  msgid "Upcoming Events"
3157
  msgstr "Bevorstehende Events"
3158
 
@@ -3211,15 +3221,15 @@ msgid "JSON Export"
3211
  msgstr "JSON Export"
3212
 
3213
  #: app/features/events.php:4068 app/features/events.php:4069
3214
- #: app/features/events.php:4293
3215
  msgid "Duplicate"
3216
  msgstr "Kopie"
3217
 
3218
- #: app/features/events.php:4187
3219
  msgid "Link"
3220
  msgstr "Link"
3221
 
3222
- #: app/features/events.php:4189 app/features/locations.php:111
3223
  #: app/features/locations.php:181 app/features/locations.php:268
3224
  #: app/features/mec/meta_boxes/search_form.php:108
3225
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3237,31 +3247,31 @@ msgstr "Link"
3237
  msgid "Address"
3238
  msgstr "Adresse"
3239
 
3240
- #: app/features/events.php:4191
3241
  #, php-format
3242
  msgid "%s Tel"
3243
  msgstr "%s Tel"
3244
 
3245
- #: app/features/events.php:4192
3246
  #, php-format
3247
  msgid "%s Email"
3248
  msgstr "%s Email"
3249
 
3250
- #: app/features/events.php:4194 app/features/fes/form.php:951
3251
  #: app/features/mec/settings.php:876
3252
  msgid "Featured Image"
3253
  msgstr "Ausgewähltes Bild"
3254
 
3255
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3256
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3257
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3258
  msgid "Tags"
3259
  msgstr "Schlagworte"
3260
 
3261
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3262
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3263
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3264
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3265
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3266
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3267
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3269,36 +3279,36 @@ msgstr "Schlagworte"
3269
  msgid "Speakers"
3270
  msgstr "Sprecher"
3271
 
3272
- #: app/features/events.php:4446 app/features/fes.php:280
3273
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3274
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3275
  #: app/libraries/main.php:7592
3276
  msgid "Ticket"
3277
  msgstr "Ticket"
3278
 
3279
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3280
  msgid "Variations"
3281
  msgstr "Variationen"
3282
 
3283
- #: app/features/events.php:4464 app/features/fes.php:356
3284
  msgid "Unknown"
3285
  msgstr "Unbekannt"
3286
 
3287
- #: app/features/events.php:4492
3288
  msgid ""
3289
  "If you want to send an email, first select your attendees and then click in "
3290
  "the button below, please."
3291
  msgstr ""
3292
 
3293
- #: app/features/events.php:4492 app/features/mec/report.php:57
3294
  msgid "Send Email"
3295
  msgstr "E-Mail senden"
3296
 
3297
- #: app/features/events.php:4496
3298
  msgid "No Attendees Found!"
3299
  msgstr "Keine Teilnehmer gefunden!"
3300
 
3301
- #: app/features/events.php:4797
3302
  #, fuzzy
3303
  #| msgid "No bookings found!"
3304
  msgid "No Bookings Found!"
@@ -3445,70 +3455,70 @@ msgstr ""
3445
  msgid "The event published."
3446
  msgstr "Die Veranstaltung wurde veröffentlicht."
3447
 
3448
- #: app/features/fes/form.php:178
3449
  msgid "Go back to events list"
3450
  msgstr "Zurück zur Liste der Veranstaltungen"
3451
 
3452
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3453
  #: app/features/mec/settings.php:1171
3454
  msgid "Excerpt"
3455
  msgstr ""
3456
 
3457
- #: app/features/fes/form.php:271
3458
  #, fuzzy
3459
  #| msgid "On Event Start"
3460
  msgid "Optional Event Excerpt"
3461
  msgstr "Am Event Start"
3462
 
3463
- #: app/features/fes/form.php:278
3464
  msgid ""
3465
  "This event is imported from Google calendar so if you modify it would "
3466
  "overwrite in the next import from Google."
3467
  msgstr ""
3468
 
3469
- #: app/features/fes/form.php:407
3470
  #: app/features/mec/meta_boxes/display_options.php:1494
3471
  #: app/libraries/main.php:476
3472
  msgid "Monday"
3473
  msgstr "Montag"
3474
 
3475
- #: app/features/fes/form.php:408
3476
  #: app/features/mec/meta_boxes/display_options.php:1495
3477
  #: app/libraries/main.php:476
3478
  msgid "Tuesday"
3479
  msgstr "Dienstag"
3480
 
3481
- #: app/features/fes/form.php:409
3482
  #: app/features/mec/meta_boxes/display_options.php:1496
3483
  #: app/libraries/main.php:476
3484
  msgid "Wednesday"
3485
  msgstr "Mittwoch"
3486
 
3487
- #: app/features/fes/form.php:410
3488
  #: app/features/mec/meta_boxes/display_options.php:1497
3489
  #: app/libraries/main.php:476
3490
  msgid "Thursday"
3491
  msgstr "Donnerstag"
3492
 
3493
- #: app/features/fes/form.php:411
3494
  #: app/features/mec/meta_boxes/display_options.php:1498
3495
  #: app/libraries/main.php:476
3496
  msgid "Friday"
3497
  msgstr "Freitag"
3498
 
3499
- #: app/features/fes/form.php:412
3500
  #: app/features/mec/meta_boxes/display_options.php:1499
3501
  #: app/libraries/main.php:476
3502
  msgid "Saturday"
3503
  msgstr "Samstag"
3504
 
3505
- #: app/features/fes/form.php:413
3506
  #: app/features/mec/meta_boxes/display_options.php:1493
3507
  #: app/libraries/main.php:476
3508
  msgid "Sunday"
3509
  msgstr "Sonntag"
3510
 
3511
- #: app/features/fes/form.php:766
3512
  msgid ""
3513
  "The event will finish after certain repeats. For example if you set it to "
3514
  "10, the event will finish after 10 repeats."
@@ -3516,24 +3526,24 @@ msgstr ""
3516
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
3517
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
3518
 
3519
- #: app/features/fes/form.php:790
3520
  msgid "Note to reviewer"
3521
  msgstr "Zusätzliche Anmerkungen zum Event "
3522
 
3523
- #: app/features/fes/form.php:808
3524
  msgid "User Data"
3525
  msgstr "Benutzerdaten"
3526
 
3527
- #: app/features/fes/form.php:811
3528
  msgid "eg. yourname@gmail.com"
3529
  msgstr "z.B. IhrName@ihrewebseite.de"
3530
 
3531
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3532
- #: app/features/popup/event.php:185
3533
  msgid "eg. John Smith"
3534
  msgstr "z.B. Max Mustermann"
3535
 
3536
- #: app/features/fes/form.php:833
3537
  #, fuzzy
3538
  #| msgid ""
3539
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3546,42 +3556,42 @@ msgstr ""
3546
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
3547
  "einschließlich http(s)://"
3548
 
3549
- #: app/features/fes/form.php:956
3550
  msgid "Remove Image"
3551
  msgstr "Bild entfernen"
3552
 
3553
- #: app/features/fes/form.php:1046
3554
  msgid "Insert your desired tags, comma separated."
3555
  msgstr ""
3556
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
3557
 
3558
- #: app/features/fes/form.php:1068
3559
  msgid "Speakers Names"
3560
  msgstr "Sprecher Namen"
3561
 
3562
- #: app/features/fes/form.php:1069
3563
  #, fuzzy
3564
  #| msgid "Separate names with commas Similar Justin, Cris"
3565
  msgid "Separate names with commas: Justin, Chris"
3566
  msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
3567
 
3568
- #: app/features/fes/form.php:1114
3569
  #, fuzzy, php-format
3570
  #| msgid "Please %s/%s in order to submit new events."
3571
  msgid "I accept the %s in order to submit an event."
3572
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
3573
 
3574
- #: app/features/fes/form.php:1114
3575
  msgid "Privacy Policy"
3576
  msgstr ""
3577
 
3578
- #: app/features/fes/form.php:1116
3579
  #, fuzzy
3580
  #| msgid "Please %s/%s in order to submit new events."
3581
  msgid "I accept the Privacy Policy in order to submit an event."
3582
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
3583
 
3584
- #: app/features/fes/form.php:1122
3585
  #, fuzzy
3586
  #| msgid "Edit Event"
3587
  msgid "Submit Event"
@@ -3662,84 +3672,84 @@ msgstr "Der Datei Typ muss XML oder ICS sein."
3662
  msgid "The events are imported successfully!"
3663
  msgstr "Die Events wurden erfolgreich importiert!"
3664
 
3665
- #: app/features/ix.php:1301
3666
  msgid "Third Party plugin is not installed and activated!"
3667
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
3668
 
3669
- #: app/features/ix.php:1325
3670
  msgid "Third Party plugin is invalid!"
3671
  msgstr "Drittanbieter-Plugin ist ungültig!"
3672
 
3673
- #: app/features/ix.php:3300 app/features/ix.php:3361
3674
  #, fuzzy
3675
  #| msgid "Both of API key and Calendar ID are required!"
3676
  msgid "API key and Calendar ID are required!"
3677
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
3678
 
3679
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3680
  #, fuzzy
3681
  #| msgid "Please select some events to import!"
3682
  msgid "Please select events to import!"
3683
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
3684
 
3685
- #: app/features/ix.php:3794 app/features/ix.php:3857
3686
  #, fuzzy
3687
  #| msgid "Both of API key and Calendar ID are required!"
3688
  msgid "API key and Group URL are required!"
3689
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
3690
 
3691
- #: app/features/ix.php:4096
3692
  msgid "Check at Meetup"
3693
  msgstr ""
3694
 
3695
- #: app/features/ix.php:4262
3696
  #, fuzzy
3697
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3698
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3699
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
3700
 
3701
- #: app/features/ix.php:4285
3702
  #, fuzzy, php-format
3703
  #| msgid "All seems good! Please click %s for authenticating your app."
3704
  msgid "All seems good! Please click %s to authenticate your app."
3705
  msgstr ""
3706
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
3707
 
3708
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3709
  #: app/features/mec/settings.php:1496
3710
  msgid "here"
3711
  msgstr ""
3712
 
3713
- #: app/features/ix.php:4340
3714
  #, fuzzy
3715
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3716
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3717
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
3718
 
3719
- #: app/features/ix.php:4502
3720
  #, fuzzy, php-format
3721
  #| msgid "%s events added to Google Calendar successfully."
3722
  msgid "%s events added to Google Calendar with success."
3723
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
3724
 
3725
- #: app/features/ix.php:4503
3726
  #, fuzzy, php-format
3727
  #| msgid "%s previously added events get updated."
3728
  msgid "%s Updated previously added events."
3729
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
3730
 
3731
- #: app/features/ix.php:4504
3732
  #, php-format
3733
  msgid "%s events failed to add for following reasons: %s"
3734
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
3735
 
3736
- #: app/features/ix.php:4536
3737
  #, fuzzy
3738
  #| msgid "Please insert your facebook page's link."
3739
  msgid "Please insert your Facebook page's link."
3740
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
3741
 
3742
- #: app/features/ix.php:4547 app/features/ix.php:4589
3743
  #, fuzzy
3744
  #| msgid ""
3745
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3751,7 +3761,7 @@ msgstr ""
3751
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
3752
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
3753
 
3754
- #: app/features/ix.php:4584
3755
  msgid "Please insert your facebook page's link."
3756
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
3757
 
@@ -3968,7 +3978,7 @@ msgstr "Event Teilnehmer"
3968
  msgid "Add to Google Calendar"
3969
  msgstr "Zum Google Kalender hinzufügen"
3970
 
3971
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3972
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3973
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3974
  #: app/features/mec/single.php:604
@@ -4084,7 +4094,7 @@ msgstr "Vom Facebook Kalender Importieren"
4084
  msgid "Import all of your Facebook events into MEC."
4085
  msgstr "Importiere alle Deine Facebook Events zum MEC"
4086
 
4087
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4088
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4089
  msgid "Documentation"
4090
  msgstr "Dokumentation"
@@ -4428,7 +4438,7 @@ msgstr ""
4428
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
4429
 
4430
  #: app/features/labels.php:79 app/features/locations.php:77
4431
- #: app/features/organizers.php:77 app/features/speakers.php:79
4432
  #: app/features/tag.php:77
4433
  #, fuzzy, php-format
4434
  #| msgid "← Back to %s"
@@ -4436,7 +4446,7 @@ msgid "← Back to %s"
4436
  msgstr "← Zurück zu %s"
4437
 
4438
  #: app/features/labels.php:80 app/features/locations.php:78
4439
- #: app/features/organizers.php:78 app/features/speakers.php:80
4440
  #: app/features/tag.php:78
4441
  #, fuzzy, php-format
4442
  #| msgid "No events found!"
@@ -4480,7 +4490,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4480
  msgstr ""
4481
 
4482
  #: app/features/labels.php:186 app/features/locations.php:269
4483
- #: app/features/organizers.php:210 app/features/speakers.php:289
4484
  #: app/modules/booking/steps/tickets.php:172
4485
  msgid "Count"
4486
  msgstr "Zähler"
@@ -4496,7 +4506,7 @@ msgid "Event %s"
4496
  msgstr "Event %s"
4497
 
4498
  #: app/features/locations.php:59 app/features/mec.php:526
4499
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4500
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4501
  #: app/libraries/main.php:7623
4502
  msgid "Locations"
@@ -4507,7 +4517,7 @@ msgid "Enter the location address"
4507
  msgstr "Geben Sie die Veranstaltungsanschrift ein"
4508
 
4509
  #: app/features/locations.php:131 app/features/locations.php:197
4510
- #: app/features/locations.php:374 app/features/popup/event.php:149
4511
  msgid "Latitude"
4512
  msgstr "Breitengrad z.B. 49.0069646 "
4513
 
@@ -4518,7 +4528,7 @@ msgid "Geo latitude (Optional for Lite)"
4518
  msgstr "Geologischer Breitengrad (Optional)"
4519
 
4520
  #: app/features/locations.php:139 app/features/locations.php:201
4521
- #: app/features/locations.php:375 app/features/popup/event.php:150
4522
  msgid "Longitude"
4523
  msgstr "Längengrad z.B. 8.4118636 "
4524
 
@@ -4543,22 +4553,22 @@ msgstr "Geologischer Breitengrad (Optional)"
4543
 
4544
  #: app/features/locations.php:156 app/features/locations.php:210
4545
  #: app/features/organizers.php:128 app/features/organizers.php:161
4546
- #: app/features/speakers.php:176 app/features/speakers.php:229
4547
  msgid "Thumbnail"
4548
  msgstr "Miniaturansicht"
4549
 
4550
  #: app/features/locations.php:329 app/features/occurrences.php:460
4551
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4552
  #, php-format
4553
  msgid "Event Main %s"
4554
  msgstr "Hauptevent % s"
4555
 
4556
  #: app/features/locations.php:332 app/features/occurrences.php:464
4557
- #: app/features/popup/event.php:119
4558
  msgid "Hide location"
4559
  msgstr "Ort verbergen"
4560
 
4561
- #: app/features/locations.php:333 app/features/popup/event.php:120
4562
  msgid "Insert a new location"
4563
  msgstr "Neuen Ort hinzufügen"
4564
 
@@ -4567,34 +4577,34 @@ msgid "Choose one of saved locations or insert new one below."
4567
  msgstr ""
4568
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
4569
 
4570
- #: app/features/locations.php:348 app/features/popup/event.php:141
4571
  msgid "Location Name"
4572
  msgstr "Name Veranstaltungsort"
4573
 
4574
- #: app/features/locations.php:349 app/features/popup/event.php:142
4575
  msgid "eg. City Hall"
4576
  msgstr ""
4577
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
4578
  "Westfalenhalle"
4579
 
4580
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4581
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4582
  msgid "Event Location"
4583
  msgstr "Veranstaltungsort"
4584
 
4585
- #: app/features/locations.php:353 app/features/popup/event.php:146
4586
  msgid "eg. City hall, Manhattan, New York"
4587
  msgstr ""
4588
  "z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
4589
  "Ring 1, 76297 Stutensee"
4590
 
4591
- #: app/features/locations.php:378 app/features/popup/event.php:153
4592
  #, fuzzy
4593
  #| msgid "Longitude"
4594
  msgid "Latitude/Longitude"
4595
  msgstr "Längengrad z.B. 8.4118636 "
4596
 
4597
- #: app/features/locations.php:379 app/features/popup/event.php:154
4598
  msgid ""
4599
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4600
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4603,26 +4613,26 @@ msgid ""
4603
  "the location on the map to find lat long coordinates."
4604
  msgstr ""
4605
 
4606
- #: app/features/locations.php:379 app/features/popup/event.php:154
4607
  msgid "Get Latitude and Longitude"
4608
  msgstr ""
4609
 
4610
  #: app/features/locations.php:392 app/features/organizers.php:315
4611
- #: app/features/popup/event.php:204
4612
  msgid "Choose image"
4613
  msgstr "Bild wählen"
4614
 
4615
- #: app/features/locations.php:406 app/features/occurrences.php:480
4616
- #: app/features/popup/event.php:137
4617
  msgid "Don't show map in single event page"
4618
  msgstr "Karte in Einzelansicht nicht anzeigen"
4619
 
4620
- #: app/features/locations.php:409 app/libraries/main.php:7607
4621
  #: app/libraries/main.php:7654
4622
  msgid "Other Locations"
4623
  msgstr "Andere Orte"
4624
 
4625
- #: app/features/locations.php:411
4626
  #, fuzzy
4627
  #| msgid ""
4628
  #| "You can select extra organizers in addition to main organizer if you like."
@@ -4699,7 +4709,7 @@ msgstr "MEC - Support"
4699
  msgid "Support"
4700
  msgstr "Support"
4701
 
4702
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4703
  #: app/features/mec/meta_boxes/filter.php:71
4704
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4705
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4707,7 +4717,7 @@ msgid "Organizers"
4707
  msgstr "Veranstalter"
4708
 
4709
  #: app/features/mec.php:536 app/features/mec.php:596
4710
- #: app/features/mec/dashboard.php:221
4711
  msgid "Shortcodes"
4712
  msgstr "Shortcodes"
4713
 
@@ -4924,7 +4934,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4924
  msgstr ""
4925
 
4926
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4927
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4928
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4929
  msgid "Version"
4930
  msgstr "Version"
@@ -4948,9 +4958,9 @@ msgid "Search..."
4948
  msgstr "Suche…"
4949
 
4950
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4951
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4952
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4953
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4954
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4955
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4956
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5541,31 +5551,31 @@ msgstr "WC-Aufträge automatisch abschließen"
5541
  msgid "It applies only to the orders that are related to MEC."
5542
  msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
5543
 
5544
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5545
  #, fuzzy
5546
  #| msgid "Add to Cart"
5547
  msgid "After Add to Cart"
5548
  msgstr "in den Warenkorb legen"
5549
 
5550
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5551
  #, fuzzy
5552
  #| msgid "Redirection Page"
5553
  msgid "Redirect to Cart"
5554
  msgstr "Weiterleitungs Seite "
5555
 
5556
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5557
  #, fuzzy
5558
  #| msgid "Redirection Page"
5559
  msgid "Redirect to Checkout"
5560
  msgstr "Weiterleitungs Seite "
5561
 
5562
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5563
  #, fuzzy
5564
  #| msgid "View Detail Button"
5565
  msgid "Optional View Cart Button"
5566
  msgstr "Ansicht Detail Button"
5567
 
5568
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5569
  msgid "Optional Checkout Button"
5570
  msgstr ""
5571
 
@@ -5621,81 +5631,87 @@ msgid ""
5621
  "(Stripe) got canceled."
5622
  msgstr ""
5623
 
5624
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5625
  msgid "Use MEC Cart System"
5626
  msgstr ""
5627
 
5628
- #: app/features/mec/booking.php:1119
5629
  msgid ""
5630
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5631
  "adding a simple cart and checkout system to your website."
5632
  msgstr ""
5633
 
5634
- #: app/features/mec/booking.php:1121
5635
  msgid "You cannot use following MEC features while using MEC Cart."
5636
  msgstr ""
5637
 
5638
- #: app/features/mec/booking.php:1123
5639
  #, fuzzy
5640
  #| msgid "Payment Gateways"
5641
  msgid "WooCommerce as Payment Gateway"
5642
  msgstr "Zahlungs-Gateways"
5643
 
5644
- #: app/features/mec/booking.php:1124
5645
  #, fuzzy
5646
  #| msgid "Next Occurrence of Other Events"
5647
  msgid "Currency Per Event"
5648
  msgstr "Nächstes Auftreten von anderen Events."
5649
 
5650
- #: app/features/mec/booking.php:1125
5651
  #, fuzzy
5652
  #| msgid "Payment Gateways"
5653
  msgid "Disable Gateways Per Event"
5654
  msgstr "Zahlungs-Gateways"
5655
 
5656
- #: app/features/mec/booking.php:1126
5657
  #, fuzzy
5658
  #| msgid "Stripe"
5659
  msgid "Stripe Connect Gateway"
5660
  msgstr "Stripe"
5661
 
5662
- #: app/features/mec/booking.php:1127
5663
  #, fuzzy
5664
  #| msgid "Pay by WooCommerce"
5665
  msgid "Pay By WooCommerce Gateway"
5666
  msgstr "Zahlung über WooCommerce"
5667
 
5668
- #: app/features/mec/booking.php:1128
5669
  #, fuzzy
5670
  #| msgid "Organizer Tel"
5671
  msgid "Organizer Payment Module"
5672
  msgstr "Organisator Telefon"
5673
 
5674
- #: app/features/mec/booking.php:1132
5675
  #, fuzzy
5676
  #| msgid "Start Date"
5677
  msgid "Cart Page"
5678
  msgstr "Start Datum"
5679
 
5680
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5681
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5682
  #, php-format
5683
  msgid "Put %s shortcode into the page."
5684
  msgstr "%s shortcode in die Seite einfügen"
5685
 
5686
- #: app/features/mec/booking.php:1144
5687
  #, fuzzy
5688
  #| msgid "Checkout"
5689
  msgid "Checkout Page"
5690
  msgstr "Zur Kasse gehen"
5691
 
5692
- #: app/features/mec/booking.php:1170
5693
  #, fuzzy
5694
  #| msgid "Enable Invoice"
5695
  msgid "Enable Cart Invoice"
5696
  msgstr "Rechnungen aktivieren"
5697
 
5698
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5699
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5700
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5701
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5703,7 +5719,7 @@ msgstr "Rechnungen aktivieren"
5703
  msgid "Saved"
5704
  msgstr "Gesichert"
5705
 
5706
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5707
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5708
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5709
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5711,7 +5727,7 @@ msgstr "Gesichert"
5711
  msgid "Settings Saved!"
5712
  msgstr "Einstellungen gespeichert!"
5713
 
5714
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5715
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5716
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5717
  msgid "Please Refresh Page"
@@ -5727,12 +5743,7 @@ msgstr "Willkommen %s"
5727
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5728
  msgstr ""
5729
 
5730
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5731
- msgctxt "plugin rate"
5732
- msgid "Rate the plugin ★★★★★"
5733
- msgstr "Bewerte das Plugin ★★★★★"
5734
-
5735
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5736
  #, php-format
5737
  msgid ""
5738
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5740,65 +5751,50 @@ msgid ""
5740
  "Spots, etc you should upgrade to the Pro version."
5741
  msgstr ""
5742
 
5743
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5744
  msgid "lite"
5745
  msgstr ""
5746
 
5747
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5748
  #: app/features/mec/support.php:126
5749
  msgid "GO PREMIUM"
5750
  msgstr ""
5751
 
5752
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5753
- #, php-format
5754
- msgid ""
5755
- "Easily get a discount coupon by rating us on %s or following and reposting "
5756
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5757
- msgstr ""
5758
-
5759
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5760
- msgid "WordPress"
5761
- msgstr "WordPress"
5762
-
5763
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5764
- msgid "Copouns!"
5765
- msgstr "Gutscheine!"
5766
-
5767
- #: app/features/mec/dashboard.php:115
5768
  msgid "Getting started with Modern Events Calendar"
5769
  msgstr "Lege los mit dem Modernen Event Kalender "
5770
 
5771
- #: app/features/mec/dashboard.php:116
5772
  msgid ""
5773
  "In this short video, you can learn how to make an event and put a calendar "
5774
  "on your website. Please watch this 2 minutes video to the end."
5775
  msgstr ""
5776
 
5777
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5778
  #, fuzzy
5779
  #| msgid "MEC Activation"
5780
  msgid "License Activation"
5781
  msgstr "MEC Aktivierung"
5782
 
5783
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5784
  msgid "Activate Addons"
5785
  msgstr "MEC Erweiterungen Aktivieren"
5786
 
5787
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5788
  msgid "You cannot access this section."
5789
  msgstr ""
5790
 
5791
- #: app/features/mec/dashboard.php:162
5792
  msgid ""
5793
  "In order to use all plugin features and options, please enter your purchase "
5794
  "code."
5795
  msgstr ""
5796
 
5797
- #: app/features/mec/dashboard.php:270
5798
  msgid "Popular Gateways"
5799
  msgstr "Beliebte Zahlungsgateways"
5800
 
5801
- #: app/features/mec/dashboard.php:328
5802
  msgid "Change Log"
5803
  msgstr "Änderungsprotokoll"
5804
 
@@ -7365,7 +7361,7 @@ msgstr ""
7365
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7366
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7367
  #: app/features/popup/settings.php:272 app/features/search.php:109
7368
- #: app/features/speakers.php:60 app/features/speakers.php:286
7369
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7370
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7371
  #: app/modules/speakers/details.php:18
@@ -8721,7 +8717,7 @@ msgstr ""
8721
  msgid "Please, insert comma to separate reminder hours."
8722
  msgstr ""
8723
 
8724
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8725
  #: app/libraries/main.php:705
8726
  msgid "New Event"
8727
  msgstr "Neue Veranstaltung"
@@ -11054,13 +11050,13 @@ msgid "Choose one of saved locations."
11054
  msgstr ""
11055
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
11056
 
11057
- #: app/features/occurrences.php:491 app/features/organizers.php:280
11058
- #: app/features/popup/event.php:166
11059
  msgid "Hide organizer"
11060
  msgstr "Veranstalter verbergen"
11061
 
11062
- #: app/features/occurrences.php:499 app/features/organizers.php:289
11063
- #: app/features/popup/event.php:175
11064
  msgid "Choose one of saved organizers or insert new one below."
11065
  msgstr ""
11066
  "Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
@@ -11075,7 +11071,7 @@ msgid "Insert organizer email address."
11075
  msgstr "Veranstalter Email-Adresse einfügen"
11076
 
11077
  #: app/features/organizers.php:120 app/features/organizers.php:157
11078
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11079
  msgid "Link to organizer page"
11080
  msgstr "Link zur Seite des Veranstalters"
11081
 
@@ -11089,27 +11085,27 @@ msgstr ""
11089
  msgid "Contact info"
11090
  msgstr "Kontaktdaten"
11091
 
11092
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11093
  msgid "Insert a new organizer"
11094
  msgstr "Neuen Veranstalter einfügen"
11095
 
11096
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11097
  msgid "Phone number."
11098
  msgstr "Telefon"
11099
 
11100
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11101
  msgid "eg. +1 (234) 5678"
11102
  msgstr "z.B. +49 (1234) 56789"
11103
 
11104
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11105
  msgid "Email address."
11106
  msgstr "Mailadresse"
11107
 
11108
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11109
  msgid "eg. john@smith.com"
11110
  msgstr "z.B.. max@mustermann.com"
11111
 
11112
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11113
  #, fuzzy
11114
  #| msgid "http://webnus.net"
11115
  msgid "eg. https://webnus.net"
@@ -11127,73 +11123,73 @@ msgstr ""
11127
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
11128
  "auswählen, wenn Sie möchten."
11129
 
11130
- #: app/features/popup/event.php:58
11131
  #, fuzzy
11132
  #| msgid "Add Shortcode"
11133
  msgid "Adding an Event..."
11134
  msgstr "Shortcode hinzufügen"
11135
 
11136
- #: app/features/popup/event.php:66
11137
  #, fuzzy
11138
  #| msgid "Event Note"
11139
  msgid "Event Name"
11140
  msgstr "Veranstaltungsnotiz"
11141
 
11142
- #: app/features/popup/event.php:67
11143
  msgid "Event name is required"
11144
  msgstr ""
11145
 
11146
- #: app/features/popup/event.php:128
11147
  #, fuzzy
11148
  #| msgid "Choose one of saved locations or insert new one below."
11149
  msgid "Choose one of saved locations or insert new one."
11150
  msgstr ""
11151
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
11152
 
11153
- #: app/features/popup/event.php:132
11154
  #, fuzzy
11155
  #| msgid "Location"
11156
  msgid "Add Location"
11157
  msgstr "Ort"
11158
 
11159
- #: app/features/popup/event.php:179
11160
  #, fuzzy
11161
  #| msgid "Organizer"
11162
  msgid "Add Organizer"
11163
  msgstr "Veranstalter"
11164
 
11165
- #: app/features/popup/event.php:219
11166
  #, fuzzy
11167
  #| msgid "Categories"
11168
  msgid "All Categories"
11169
  msgstr "Kategorien"
11170
 
11171
- #: app/features/popup/event.php:220
11172
  msgid "Most Used"
11173
  msgstr ""
11174
 
11175
- #: app/features/popup/event.php:231
11176
  #, fuzzy
11177
  #| msgid "Add New Coupon"
11178
  msgid "Add New Category"
11179
  msgstr "Gutschein hinzufügen"
11180
 
11181
- #: app/features/popup/event.php:242
11182
  #, fuzzy
11183
  #| msgid "Featured Image"
11184
  msgid "Set Featured Image"
11185
  msgstr "Ausgewähltes Bild"
11186
 
11187
- #: app/features/popup/event.php:252
11188
  msgid "Your Event Has Been Created."
11189
  msgstr ""
11190
 
11191
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11192
  #: app/features/popup/shortcode.php:553
11193
  msgid "Prev"
11194
  msgstr ""
11195
 
11196
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11197
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11198
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11199
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11402,86 +11398,86 @@ msgstr "Suche %s"
11402
  msgid "No search result."
11403
  msgstr "Kein Suchergebnis"
11404
 
11405
- #: app/features/speakers.php:112 app/features/speakers.php:197
11406
- #: app/features/speakers.php:287
11407
  msgid "Job Title"
11408
  msgstr "Job Titel"
11409
 
11410
- #: app/features/speakers.php:115 app/features/speakers.php:198
11411
  msgid "Insert speaker job title."
11412
  msgstr ""
11413
 
11414
- #: app/features/speakers.php:123 app/features/speakers.php:202
11415
  msgid "Insert speaker phone number."
11416
  msgstr "Veranstalter Telefonnummer hinzufügen"
11417
 
11418
- #: app/features/speakers.php:131 app/features/speakers.php:206
11419
  msgid "Insert speaker email address."
11420
  msgstr "Veranstalter Email-Adresse hinzufügen"
11421
 
11422
- #: app/features/speakers.php:139 app/features/speakers.php:210
11423
  #, fuzzy
11424
  #| msgid "Insert -1 for unlimited usage"
11425
  msgid "Insert URL of Website"
11426
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11427
 
11428
- #: app/features/speakers.php:144 app/features/speakers.php:213
11429
  #, fuzzy
11430
  #| msgid "Facebook Page Link"
11431
  msgid "Facebook Page"
11432
  msgstr "Facebook Seiten Link"
11433
 
11434
- #: app/features/speakers.php:147 app/features/speakers.php:214
11435
  #, fuzzy
11436
  #| msgid "Import from Facebook Calendar"
11437
  msgid "Insert URL of Facebook Page"
11438
  msgstr "Vom Facebook Kalender Importieren"
11439
 
11440
- #: app/features/speakers.php:152 app/features/speakers.php:217
11441
  msgid "Instagram"
11442
  msgstr ""
11443
 
11444
- #: app/features/speakers.php:155 app/features/speakers.php:218
11445
  #, fuzzy
11446
  #| msgid "Insert -1 for unlimited usage"
11447
  msgid "Insert URL of Instagram"
11448
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11449
 
11450
- #: app/features/speakers.php:160 app/features/speakers.php:221
11451
  #, fuzzy
11452
  #| msgid "Linkedin"
11453
  msgid "LinkedIn"
11454
  msgstr "Linkedin"
11455
 
11456
- #: app/features/speakers.php:163
11457
  #, fuzzy
11458
  #| msgid "Insert -1 for unlimited usage"
11459
  msgid "Insert URL of LinkedIn"
11460
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11461
 
11462
- #: app/features/speakers.php:168 app/features/speakers.php:225
11463
  #, fuzzy
11464
  #| msgid "Twitter"
11465
  msgid "Twitter Page"
11466
  msgstr "Twitter"
11467
 
11468
- #: app/features/speakers.php:171 app/features/speakers.php:226
11469
  #, fuzzy
11470
  #| msgid "Insert -1 for unlimited usage"
11471
  msgid "Insert URL of Twitter Page"
11472
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11473
 
11474
- #: app/features/speakers.php:222
11475
  #, fuzzy
11476
  #| msgid "Insert -1 for unlimited usage"
11477
  msgid "Insert URL of linkedin"
11478
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11479
 
11480
- #: app/features/speakers.php:347
11481
  msgid "Sorry, You must insert speaker name!"
11482
  msgstr ""
11483
 
11484
- #: app/features/speakers.php:396
11485
  msgid ""
11486
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11487
  "section and speaker widget section!"
@@ -11569,71 +11565,71 @@ msgctxt "plugin link"
11569
  msgid "Upgrade to Pro Version"
11570
  msgstr ""
11571
 
11572
- #: app/libraries/factory.php:234
11573
  #, fuzzy
11574
  #| msgid "Settings"
11575
  msgctxt "plugin link"
11576
  msgid "Settings"
11577
  msgstr "Einstellungen"
11578
 
11579
- #: app/libraries/factory.php:239
11580
  msgctxt "plugin link"
11581
  msgid "Upgrade"
11582
  msgstr ""
11583
 
11584
- #: app/libraries/factory.php:393
11585
  msgid "day"
11586
  msgstr "Tag"
11587
 
11588
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11589
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11590
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11591
  msgid "days"
11592
  msgstr "Tage"
11593
 
11594
- #: app/libraries/factory.php:395
11595
  msgid "hour"
11596
  msgstr "Stunde"
11597
 
11598
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11599
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11600
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11601
  msgid "hours"
11602
  msgstr "Stunden"
11603
 
11604
- #: app/libraries/factory.php:397
11605
  msgid "minute"
11606
  msgstr "Minute"
11607
 
11608
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11609
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11610
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11611
  msgid "minutes"
11612
  msgstr "Minuten"
11613
 
11614
- #: app/libraries/factory.php:399
11615
  msgid "second"
11616
  msgstr "Sekunde"
11617
 
11618
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11619
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11620
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11621
  msgid "seconds"
11622
  msgstr "Sekunden"
11623
 
11624
- #: app/libraries/factory.php:477
11625
  msgid "MEC Single Sidebar"
11626
  msgstr "MEC Single Sidebar"
11627
 
11628
- #: app/libraries/factory.php:478
11629
  msgid "Custom sidebar for single and modal page of MEC."
11630
  msgstr "Custom sidebar for single and modal page of MEC."
11631
 
11632
- #: app/libraries/factory.php:1199
11633
  msgid "Notice:"
11634
  msgstr ""
11635
 
11636
- #: app/libraries/factory.php:1200
11637
  msgid "This update includes only bug fixes."
11638
  msgstr ""
11639
 
@@ -11789,12 +11785,6 @@ msgstr "Shortcode"
11789
  msgid "%s Form"
11790
  msgstr ""
11791
 
11792
- #: app/libraries/main.php:689
11793
- #, fuzzy
11794
- #| msgid "Support"
11795
- msgid "MEC Cart"
11796
- msgstr "Support"
11797
-
11798
  #: app/libraries/main.php:726
11799
  msgid "Only For Bookers"
11800
  msgstr ""
@@ -12567,12 +12557,7 @@ msgstr "Uhrzeit des Beginns"
12567
  msgid "End at: %s - %s"
12568
  msgstr ""
12569
 
12570
- #: app/libraries/skins.php:1755
12571
- #, php-format
12572
- msgid "Every %s"
12573
- msgstr ""
12574
-
12575
- #: app/libraries/skins.php:1756
12576
  #, fuzzy
12577
  #| msgid "Repeating"
12578
  msgid "Repeating Event"
@@ -13070,6 +13055,16 @@ msgstr "z.B. Webnus"
13070
  msgid "http://webnus.net"
13071
  msgstr "http://webnus.net"
13072
 
 
 
 
 
 
 
 
 
 
 
13073
  #, fuzzy
13074
  #~| msgid ""
13075
  #~| "The %s ticket is sold out. You can try another ticket or another date."
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
6
+ "PO-Revision-Date: 2022-03-03 10:15+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
174
  msgstr "Abgesagt"
175
 
176
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
177
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
178
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
179
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
180
  #: app/features/mec/notifications.php:1922
212
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
213
  #: app/features/autoemails.php:60 app/features/events.php:606
214
  #: app/features/events.php:2650 app/features/events.php:2717
215
+ #: app/features/events.php:2806 app/features/events.php:4445
216
+ #: app/features/fes.php:280 app/features/fes/form.php:812
217
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
218
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
219
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
220
  #: app/features/organizers.php:112 app/features/organizers.php:153
221
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
222
+ #: app/features/speakers.php:211 app/libraries/main.php:653
223
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
224
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
225
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
375
  #: app/features/events.php:2808 app/features/mec/booking.php:800
376
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
377
  #: app/features/organizers.php:104 app/features/organizers.php:149
378
+ #: app/features/speakers.php:126 app/features/speakers.php:207
379
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
380
  msgid "Tel"
381
  msgstr "Tel"
382
 
522
  msgid "Agreement"
523
  msgstr "Zustimmung"
524
 
525
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
526
+ #, php-format
527
+ msgid "I agree with %s"
528
+ msgstr ""
529
+
530
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
531
  #, php-format
532
  msgid "Instead of %s, the page title with a link will be show."
704
  #: app/features/events.php:1843 app/features/events.php:2014
705
  #: app/features/events.php:2029 app/features/events.php:2271
706
  #: app/features/events.php:2283 app/features/events.php:2476
707
+ #: app/features/events.php:2513 app/features/fes/form.php:460
708
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
709
  #: app/features/locations.php:341 app/features/mec/booking.php:113
710
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
711
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
782
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
783
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
784
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
785
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
786
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
787
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
788
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
789
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
790
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
948
 
949
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
950
  #: app/features/events.php:432 app/features/events.php:1283
951
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
952
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
953
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
954
  #: app/skins/single.php:1126 app/skins/single/default.php:213
955
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1028
  msgstr ""
1029
 
1030
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1031
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1032
  #: app/features/labels.php:61 app/features/labels.php:227
1033
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1034
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1064
  msgstr "Ort verbergen"
1065
 
1066
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1067
+ #: app/features/events.php:3876 app/features/events.php:4190
1068
  #: app/features/locations.php:58 app/features/locations.php:267
1069
  #: app/features/locations.php:329 app/features/locations.php:331
1070
  #: app/features/locations.php:340
1084
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1085
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1086
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1087
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1088
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1089
  #: app/features/search.php:97 app/libraries/main.php:3020
1090
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1098
 
1099
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1100
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1101
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1102
  #: app/skins/single.php:1406 app/skins/single.php:1473
1103
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1104
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1121
 
1122
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1123
  #: app/features/events.php:1519 app/features/events.php:1532
1124
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1125
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1126
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1127
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1172
 
1173
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1174
  #: app/features/events.php:431 app/features/events.php:3877
1175
+ #: app/features/events.php:4192 app/features/events.php:4193
1176
+ #: app/features/events.php:4194
1177
  #: app/features/mec/meta_boxes/display_options.php:1660
1178
  #: app/features/mec/meta_boxes/search_form.php:80
1179
  #: app/features/mec/meta_boxes/search_form.php:168
1188
  #: app/features/mec/meta_boxes/search_form.php:983
1189
  #: app/features/mec/meta_boxes/search_form.php:1070
1190
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1191
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1192
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1193
  #: app/features/organizers.php:58 app/features/organizers.php:208
1194
  #: app/features/organizers.php:277 app/features/organizers.php:279
1195
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1196
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1197
  #: app/features/popup/settings.php:263 app/features/search.php:103
1198
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1199
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1319
  #: app/features/booking/calendar_novel.php:145
1320
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1321
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1322
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1323
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1324
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1325
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1326
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1387
 
1388
  #: app/features/autoemails.php:74 app/features/events.php:230
1389
  #: app/features/labels.php:72 app/features/locations.php:70
1390
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1391
  #: app/features/tag.php:70
1392
  #, php-format
1393
  msgid "Edit %s"
1453
  msgid "Go to events page"
1454
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
1455
 
1456
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1457
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1458
  #: app/features/wc.php:91 app/libraries/main.php:3072
1459
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1535
  msgid "Back to Cart"
1536
  msgstr "← Zurück zu %s"
1537
 
1538
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1539
  #: app/features/mec/settings.php:907
1540
  msgid "Event Color"
1541
  msgstr "Farbe der Veranstaltung"
1547
  msgstr "Farbe der Veranstaltung"
1548
 
1549
  #: app/features/contextual.php:55 app/features/mec.php:546
1550
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1551
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1552
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1553
  #: app/libraries/main.php:738
1554
  msgid "Settings"
1700
  msgstr "Event Details / Einzelveranstaltungsseite"
1701
 
1702
  #: app/features/contextual.php:166 app/features/events.php:1298
1703
+ #: app/features/fes/form.php:885
1704
  msgid "Currency Options"
1705
  msgstr "Währungseinstellungen"
1706
 
1794
  msgstr ""
1795
 
1796
  #: app/features/dlfile.php:297 app/features/events.php:3874
1797
+ #: app/features/events.php:4183 app/features/events.php:4734
1798
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1799
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1800
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1801
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1804
  msgstr "Titel"
1805
 
1806
  #: app/features/dlfile.php:301 app/features/events.php:1988
1807
+ #: app/features/events.php:2248 app/features/events.php:4184
1808
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1809
  #: app/libraries/hourlyschedule.php:152
1810
  msgid "Description"
1851
  msgstr "Vor €10"
1852
 
1853
  #: app/features/emails/details.php:35 app/features/events.php:1223
1854
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1855
  msgid "After"
1856
  msgstr "Nach"
1857
 
1862
  msgstr "Nächstes Event"
1863
 
1864
  #: app/features/emails/details.php:40 app/features/events.php:192
1865
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1866
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1867
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1868
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1883
  msgid "Add Event"
1884
  msgstr "Veranstaltung hinzufügen"
1885
 
1886
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1887
  msgid "Add New Event"
1888
  msgstr "Neue Veranstaltung hinzufügen"
1889
 
1890
+ #: app/features/events.php:196 app/features/ix.php:4614
1891
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1892
  #: app/skins/map/tpl.php:93
1893
  msgid "No events found!"
1898
  msgstr "Event Bearbeiten"
1899
 
1900
  #: app/features/events.php:199 app/features/fes/list.php:100
1901
+ #: app/features/popup/event.php:259
1902
  msgid "View Event"
1903
  msgstr "Veranstaltung ansehen"
1904
 
1907
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
1908
 
1909
  #: app/features/events.php:219 app/features/events.php:3831
1910
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1911
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1912
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1913
  #: app/libraries/main.php:7619
1916
 
1917
  #: app/features/events.php:229 app/features/labels.php:71
1918
  #: app/features/locations.php:69 app/features/organizers.php:69
1919
+ #: app/features/speakers.php:77 app/features/tag.php:69
1920
  #, php-format
1921
  msgid "All %s"
1922
  msgstr "Alle %s"
1923
 
1924
  #: app/features/events.php:231 app/features/labels.php:73
1925
  #: app/features/locations.php:71 app/features/organizers.php:71
1926
+ #: app/features/speakers.php:79 app/features/tag.php:71
1927
  #, php-format
1928
  msgid "View %s"
1929
  msgstr "Ansicht %s"
1930
 
1931
  #: app/features/events.php:232 app/features/labels.php:74
1932
  #: app/features/locations.php:72 app/features/organizers.php:72
1933
+ #: app/features/speakers.php:80 app/features/tag.php:72
1934
  #, php-format
1935
  msgid "Update %s"
1936
  msgstr "Update %s"
1937
 
1938
  #: app/features/events.php:233 app/features/labels.php:75
1939
  #: app/features/locations.php:73 app/features/organizers.php:73
1940
+ #: app/features/speakers.php:81 app/features/tag.php:73
1941
  #, php-format
1942
  msgid "Add New %s"
1943
  msgstr "Neu hinzufügen%s"
1944
 
1945
  #: app/features/events.php:234 app/features/labels.php:76
1946
  #: app/features/locations.php:74 app/features/organizers.php:74
1947
+ #: app/features/speakers.php:82 app/features/tag.php:74
1948
  #, php-format
1949
  msgid "New %s Name"
1950
  msgstr "Neuer %s Name"
1951
 
1952
  #: app/features/events.php:235 app/features/labels.php:77
1953
  #: app/features/locations.php:75 app/features/organizers.php:75
1954
+ #: app/features/speakers.php:83 app/features/tag.php:75
1955
  #, php-format
1956
  msgid "Popular %s"
1957
  msgstr "Beliebt %s"
1958
 
1959
  #: app/features/events.php:236 app/features/labels.php:78
1960
  #: app/features/locations.php:76 app/features/organizers.php:76
1961
+ #: app/features/speakers.php:84 app/features/tag.php:76
1962
  #, php-format
1963
  msgid "Search %s"
1964
  msgstr "Suche %s"
1988
  #: app/features/events.php:278 app/features/events.php:336
1989
  #: app/features/locations.php:161 app/features/locations.php:213
1990
  #: app/features/organizers.php:133 app/features/organizers.php:164
1991
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1992
  msgid "Upload/Add image"
1993
  msgstr "Bild hochladen/hinzufügen"
1994
 
1997
  #: app/features/locations.php:393 app/features/locations.php:400
1998
  #: app/features/organizers.php:134 app/features/organizers.php:165
1999
  #: app/features/organizers.php:316 app/features/organizers.php:323
2000
+ #: app/features/speakers.php:188 app/features/speakers.php:239
2001
  msgid "Remove image"
2002
  msgstr "Bild entfernen"
2003
 
2015
  msgid "Date And Time"
2016
  msgstr "Datum und Uhrzeit"
2017
 
2018
+ #: app/features/events.php:425 app/features/fes/form.php:386
2019
  msgid "Event Repeating"
2020
  msgstr "Wiederholende Veranstaltung"
2021
 
2060
  msgstr "Gäste Daten"
2061
 
2062
  #: app/features/events.php:605 app/features/events.php:2641
2063
+ #: app/features/events.php:4442 app/features/fes.php:280
2064
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2065
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2066
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2067
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2068
  msgid "Name"
2069
  msgstr "Name"
2074
  "overwrite in the next import from Google."
2075
  msgstr ""
2076
 
2077
+ #: app/features/events.php:619 app/features/fes/form.php:284
2078
  msgid "Date and Time"
2079
  msgstr "Datum und Uhrzeit"
2080
 
2081
  #: app/features/events.php:622 app/features/events.php:626
2082
+ #: app/features/events.php:3878 app/features/events.php:4185
2083
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2084
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2085
  #: app/features/mec/meta_boxes/display_options.php:57
2086
  #: app/features/mec/meta_boxes/display_options.php:312
2098
  #: app/features/mec/meta_boxes/display_options.php:2347
2099
  #: app/features/mec/meta_boxes/display_options.php:2478
2100
  #: app/features/mec/meta_boxes/display_options.php:2584
2101
+ #: app/features/popup/event.php:79
2102
  msgid "Start Date"
2103
  msgstr "Start Datum"
2104
 
2105
  #: app/features/events.php:642 app/features/events.php:646
2106
+ #: app/features/events.php:3879 app/features/events.php:4187
2107
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2108
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2109
  #: app/features/mec/meta_boxes/display_options.php:73
2110
  #: app/features/mec/meta_boxes/display_options.php:328
2113
  #: app/features/mec/meta_boxes/display_options.php:788
2114
  #: app/features/mec/meta_boxes/display_options.php:1618
2115
  #: app/features/mec/meta_boxes/display_options.php:2363
2116
+ #: app/features/popup/event.php:96
2117
  msgid "End Date"
2118
  msgstr "Ende Datum"
2119
 
2120
+ #: app/features/events.php:669 app/features/fes/form.php:326
2121
+ #: app/features/popup/event.php:113
2122
  #, fuzzy
2123
  #| msgid "All Day Event"
2124
  msgid "All-day Event"
2125
  msgstr "Ganztägige Veranstaltung"
2126
 
2127
+ #: app/features/events.php:679 app/features/fes/form.php:329
2128
  msgid "Hide Event Time"
2129
  msgstr "Event / Veranstaltungszeit verbergen"
2130
 
2131
+ #: app/features/events.php:689 app/features/fes/form.php:332
2132
  msgid "Hide Event End Time"
2133
  msgstr "Ende-Zeit der Veranstaltung verbergen"
2134
 
2135
  #: app/features/events.php:694 app/features/events.php:698
2136
+ #: app/features/fes/form.php:336
2137
  #, fuzzy
2138
  #| msgid "Note to reviewer"
2139
  msgid "Notes on the time"
2140
  msgstr "Zusätzliche Anmerkungen zum Event "
2141
 
2142
+ #: app/features/events.php:699 app/features/fes/form.php:337
2143
  #, fuzzy
2144
  #| msgid ""
2145
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2151
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
2152
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
2153
 
2154
+ #: app/features/events.php:711 app/features/fes/form.php:344
2155
  #, fuzzy
2156
  #| msgid "Timezone: %s"
2157
  msgid "Timezone"
2162
  #: app/features/events.php:1793 app/features/events.php:1813
2163
  #: app/features/events.php:1868 app/features/events.php:2438
2164
  #: app/features/events.php:2561 app/features/events.php:2672
2165
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2166
  msgid "Inherit from global options"
2167
  msgstr "Aus den globalen Einstellungen übernehmen"
2168
 
2169
  #: app/features/events.php:725 app/features/events.php:728
2170
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2171
  #: app/features/mec/settings.php:858
2172
  #, fuzzy
2173
  #| msgid "Countdown View"
2174
  msgid "Countdown Method"
2175
  msgstr "Countdownansicht"
2176
 
2177
+ #: app/features/events.php:730 app/features/fes/form.php:363
2178
  #, fuzzy
2179
  #| msgid "On Event Start"
2180
  msgid "Count to Event Start"
2181
  msgstr "Am Event Start"
2182
 
2183
+ #: app/features/events.php:731 app/features/fes/form.php:364
2184
  #, fuzzy
2185
  #| msgid "On Event End"
2186
  msgid "Count to Event End"
2187
  msgstr "Am Event Ende"
2188
 
2189
+ #: app/features/events.php:737 app/features/fes/form.php:371
2190
  #: app/modules/weather/darksky.php:57
2191
  msgid "Visibility"
2192
  msgstr "Sichtbarkeit"
2193
 
2194
+ #: app/features/events.php:740 app/features/fes/form.php:374
2195
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2196
  #, fuzzy
2197
  #| msgid "Visibility"
2198
  msgid "Event Visibility"
2199
  msgstr "Sichtbarkeit"
2200
 
2201
+ #: app/features/events.php:741 app/features/fes/form.php:375
2202
  #, fuzzy
2203
  #| msgid "Booking"
2204
  msgid "Show on Shortcodes"
2205
  msgstr "Buchung / Reservierung"
2206
 
2207
+ #: app/features/events.php:742 app/features/fes/form.php:376
2208
  #, fuzzy
2209
  #| msgid "Shortcodes"
2210
  msgid "Hide on Shortcodes"
2211
  msgstr "Shortcodes"
2212
 
2213
+ #: app/features/events.php:749 app/features/fes/form.php:384
2214
  msgid "Repeating"
2215
  msgstr "Wiederholen"
2216
 
2218
  msgid "Event Repeating (Recurring events)"
2219
  msgstr "Wiederholende Veranstaltung"
2220
 
2221
+ #: app/features/events.php:762 app/features/fes/form.php:390
2222
  msgid "Repeats"
2223
  msgstr "Wiederholend"
2224
 
2225
+ #: app/features/events.php:770 app/features/fes/form.php:392
2226
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2227
+ #: app/skins/default_full_calendar/tpl.php:79
2228
  #: app/skins/full_calendar/tpl.php:140
2229
  msgid "Daily"
2230
  msgstr "Täglich"
2231
 
2232
+ #: app/features/events.php:777 app/features/fes/form.php:393
2233
+ #: app/libraries/skins.php:1772
2234
  msgid "Every Weekday"
2235
  msgstr "An jedem Wochentag"
2236
 
2237
+ #: app/features/events.php:784 app/features/fes/form.php:394
2238
+ #: app/libraries/skins.php:1769
2239
  msgid "Every Weekend"
2240
  msgstr "An jedem Wochenende"
2241
 
2242
+ #: app/features/events.php:791 app/features/fes/form.php:395
2243
  msgid "Certain Weekdays"
2244
  msgstr "Bestimmte Wochentage"
2245
 
2246
+ #: app/features/events.php:798 app/features/fes/form.php:396
2247
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2248
  #: app/skins/full_calendar/tpl.php:139
2249
  msgid "Weekly"
2250
  msgstr "Wöchentlich"
2251
 
2252
+ #: app/features/events.php:805 app/features/fes/form.php:397
2253
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2254
+ #: app/skins/default_full_calendar/tpl.php:77
2255
  #: app/skins/full_calendar/tpl.php:138
2256
  msgid "Monthly"
2257
  msgstr "Monatlich"
2258
 
2259
+ #: app/features/events.php:812 app/features/fes/form.php:398
2260
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2261
+ #: app/skins/default_full_calendar/tpl.php:76
2262
  #: app/skins/full_calendar/tpl.php:137
2263
  msgid "Yearly"
2264
  msgstr "Jährlich"
2265
 
2266
+ #: app/features/events.php:819 app/features/fes/form.php:399
2267
  msgid "Custom Days"
2268
  msgstr "Benutzerdefinierte Tage"
2269
 
2270
+ #: app/features/events.php:826 app/features/fes/form.php:400
2271
  msgid "Advanced"
2272
  msgstr "Fortgeschritten"
2273
 
2274
+ #: app/features/events.php:831 app/features/fes/form.php:404
2275
  msgid "Repeat Interval"
2276
  msgstr "Wiederholungsintervall"
2277
 
2278
+ #: app/features/events.php:833 app/features/fes/form.php:405
2279
  msgid "Repeat interval"
2280
  msgstr "Wiederholungsintervall"
2281
 
2282
+ #: app/features/events.php:837 app/features/fes/form.php:408
2283
  msgid "Week Days"
2284
  msgstr "Wochentage"
2285
 
2293
 
2294
  #: app/features/events.php:860 app/features/events.php:2101
2295
  #: app/features/events.php:2129 app/features/events.php:2343
2296
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2297
  #: app/features/ix/import_g_calendar.php:51
2298
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2299
  #: app/libraries/skins.php:1389
2304
  #: app/features/events.php:2085 app/features/events.php:2167
2305
  #: app/features/events.php:2332 app/features/events.php:2376
2306
  #: app/features/events.php:2449 app/features/events.php:2566
2307
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2308
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2309
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2310
  msgid "Add"
2311
  msgstr "Hinzufügen"
2312
 
2313
+ #: app/features/events.php:877 app/features/fes/form.php:456
2314
  msgid "Custom Days Repeating"
2315
  msgstr "Benutzerdefinierte Wiederholende Tage"
2316
 
2317
+ #: app/features/events.php:880 app/features/fes/form.php:459
2318
  msgid ""
2319
  "Add certain days to event occurrence dates. If you have a single day event, "
2320
  "start and end dates should be the same, If you have a multiple day event, "
2323
 
2324
  #: app/features/events.php:891 app/features/events.php:2105
2325
  #: app/features/events.php:2133 app/features/events.php:2347
2326
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2327
  msgid "End"
2328
  msgstr "Ende"
2329
 
2330
+ #: app/features/events.php:968 app/features/fes/form.php:532
2331
  msgid "First"
2332
  msgstr "Erster"
2333
 
2334
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2335
  msgid "Second"
2336
  msgstr "Zweiter"
2337
 
2338
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2339
  msgid "Third"
2340
  msgstr "Dritter"
2341
 
2342
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2343
  msgid "Fourth"
2344
  msgstr "Vierte"
2345
 
2346
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2347
  msgid "Last"
2348
  msgstr "Letzter"
2349
 
2350
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2351
  msgid "Ends Repeat"
2352
  msgstr "Wiederholung endet"
2353
 
2354
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2355
  msgid "Never"
2356
  msgstr "Niemals"
2357
 
2358
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2359
  msgid "On"
2360
  msgstr "Am"
2361
 
2362
  #: app/features/events.php:1227 app/features/events.php:1231
2363
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2364
  msgid "Occurrences times"
2365
  msgstr " mal vorkommen"
2366
 
2376
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
2377
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
2378
 
2379
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2380
  #, fuzzy
2381
  #| msgid "Next Occurrence of Other Events"
2382
  msgid "Show only one occurrence of this event"
2383
  msgstr "Nächstes Auftreten von anderen Events."
2384
 
2385
+ #: app/features/events.php:1277 app/features/events.php:4195
2386
+ #: app/features/fes/form.php:867
2387
  #: app/features/mec/meta_boxes/search_form.php:116
2388
  #: app/features/mec/meta_boxes/search_form.php:204
2389
  #: app/features/mec/meta_boxes/search_form.php:292
2407
  #: app/features/mec/notifications.php:1511
2408
  #: app/features/mec/notifications.php:1628
2409
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2410
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2411
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2412
  #: app/widgets/single.php:122
2413
  msgid "Event Cost"
2414
  msgstr ""
2415
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
2416
 
2417
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2418
  #, fuzzy
2419
  #| msgid "Show weather module on event page"
2420
  msgid "Show the minimum price based on tickets"
2421
  msgstr "Wettermodul auf der Eventseite anzeigen"
2422
 
2423
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2424
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2425
  #: app/libraries/main.php:646
2426
  msgid "Currency"
2427
  msgstr "Währung"
2428
 
2429
  #: app/features/events.php:1310 app/features/events.php:1315
2430
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2431
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2432
  msgid "Currency Sign"
2433
  msgstr "Währungssymbol"
2434
 
2435
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2436
  #: app/features/mec/settings.php:600
2437
  msgid "Default value will be \"currency\" if you leave it empty."
2438
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
2439
 
2440
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2441
  #: app/features/mec/settings.php:607
2442
  msgid "Currency Position"
2443
  msgstr "Position des Währungssymbols"
2444
 
2445
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2446
  #: app/features/mec/settings.php:610
2447
  #, fuzzy
2448
  #| msgid "Before $10"
2449
  msgid "$10 (Before)"
2450
  msgstr "Vor €10"
2451
 
2452
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2453
  #: app/features/mec/settings.php:611
2454
  msgid "$ 10 (Before with Space)"
2455
  msgstr ""
2456
 
2457
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2458
  #: app/features/mec/settings.php:612
2459
  #, fuzzy
2460
  #| msgid "After"
2461
  msgid "10$ (After)"
2462
  msgstr "Nach"
2463
 
2464
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2465
  #: app/features/mec/settings.php:613
2466
  msgid "10 $ (After with Space)"
2467
  msgstr ""
2468
 
2469
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2470
  #: app/features/mec/settings.php:618
2471
  msgid "Thousand Separator"
2472
  msgstr "Tausendertrennzeichen"
2473
 
2474
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2475
  #: app/features/mec/settings.php:624
2476
  msgid "Decimal Separator"
2477
  msgstr "Dezimaltrennzeichen"
2478
 
2479
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2480
  #: app/features/mec/settings.php:634
2481
  msgid "No decimal"
2482
  msgstr "Keine Dezimale"
2502
  msgid "Day 1"
2503
  msgstr "Tag 1"
2504
 
2505
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2506
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2507
  msgid "Event Links"
2508
  msgstr "Veranstaltungslinks"
2509
 
2510
  #: app/features/events.php:1501 app/features/events.php:1509
2511
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2512
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2513
  #: app/libraries/main.php:7649
2514
  msgid "Event Link"
2515
  msgstr "Veranstaltungslink"
2516
 
2517
  #: app/features/events.php:1504 app/features/events.php:1522
2518
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2519
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2520
  msgid "eg. http://yoursite.com/your-event"
2521
  msgstr "z.B. http://yoursite.com/your-event"
2522
 
2538
  msgid "URL Shortener"
2539
  msgstr ""
2540
 
2541
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2542
+ #: app/features/occurrences.php:530
2543
  msgid "More Information"
2544
  msgstr "z.B. Noch mehr Informationen "
2545
 
2546
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2547
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2548
  #: app/features/popup/shortcode.php:481
2549
  msgid "Current Window"
2550
  msgstr "Aktuelles Fenster"
2551
 
2552
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2553
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2554
  #: app/features/popup/shortcode.php:485
2555
  msgid "New Window"
2556
  msgstr "Neues Fenster"
2557
 
2558
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2559
  msgid ""
2560
  "If you fill it, it will be shown in event details page as an optional link. "
2561
  "Insert full link including http(s)://"
2932
  msgstr "Ticket"
2933
 
2934
  #: app/features/events.php:1944 app/features/events.php:2211
2935
+ #: app/features/events.php:4182 app/features/fes.php:280
2936
  #: app/features/labels.php:183 app/features/locations.php:266
2937
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2938
  msgid "ID"
2939
  msgstr "ID"
2940
 
2943
  msgstr "Ticket Name"
2944
 
2945
  #: app/features/events.php:1956 app/features/events.php:2219
2946
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2947
  msgid "Start Time"
2948
  msgstr "Uhrzeit des Beginns"
2949
 
2950
  #: app/features/events.php:1970 app/features/events.php:2233
2951
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2952
  msgid "End Time"
2953
  msgstr "Uhrzeit Ende"
2954
 
2970
  #: app/features/events.php:2007 app/features/events.php:2011
2971
  #: app/features/events.php:2109 app/features/events.php:2136
2972
  #: app/features/events.php:2265 app/features/events.php:2268
2973
+ #: app/features/events.php:2349 app/features/events.php:4743
2974
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2975
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2976
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3130
  msgid "Fixed Fields"
3131
  msgstr "Pflichtfeld"
3132
 
3133
+ #: app/features/events.php:2887 app/features/events.php:4737
3134
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3135
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3136
  msgid "Attendees"
3162
  msgstr "Abgelaufene Events"
3163
 
3164
  #: app/features/events.php:3757 app/features/mec.php:1374
3165
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3166
  msgid "Upcoming Events"
3167
  msgstr "Bevorstehende Events"
3168
 
3221
  msgstr "JSON Export"
3222
 
3223
  #: app/features/events.php:4068 app/features/events.php:4069
3224
+ #: app/features/events.php:4295
3225
  msgid "Duplicate"
3226
  msgstr "Kopie"
3227
 
3228
+ #: app/features/events.php:4189
3229
  msgid "Link"
3230
  msgstr "Link"
3231
 
3232
+ #: app/features/events.php:4191 app/features/locations.php:111
3233
  #: app/features/locations.php:181 app/features/locations.php:268
3234
  #: app/features/mec/meta_boxes/search_form.php:108
3235
  #: app/features/mec/meta_boxes/search_form.php:196
3247
  msgid "Address"
3248
  msgstr "Adresse"
3249
 
3250
+ #: app/features/events.php:4193
3251
  #, php-format
3252
  msgid "%s Tel"
3253
  msgstr "%s Tel"
3254
 
3255
+ #: app/features/events.php:4194
3256
  #, php-format
3257
  msgid "%s Email"
3258
  msgstr "%s Email"
3259
 
3260
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3261
  #: app/features/mec/settings.php:876
3262
  msgid "Featured Image"
3263
  msgstr "Ausgewähltes Bild"
3264
 
3265
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3266
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3267
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3268
  msgid "Tags"
3269
  msgstr "Schlagworte"
3270
 
3271
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3272
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3273
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3274
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3275
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3276
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3277
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3279
  msgid "Speakers"
3280
  msgstr "Sprecher"
3281
 
3282
+ #: app/features/events.php:4448 app/features/fes.php:280
3283
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3284
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3285
  #: app/libraries/main.php:7592
3286
  msgid "Ticket"
3287
  msgstr "Ticket"
3288
 
3289
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3290
  msgid "Variations"
3291
  msgstr "Variationen"
3292
 
3293
+ #: app/features/events.php:4466 app/features/fes.php:356
3294
  msgid "Unknown"
3295
  msgstr "Unbekannt"
3296
 
3297
+ #: app/features/events.php:4494
3298
  msgid ""
3299
  "If you want to send an email, first select your attendees and then click in "
3300
  "the button below, please."
3301
  msgstr ""
3302
 
3303
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3304
  msgid "Send Email"
3305
  msgstr "E-Mail senden"
3306
 
3307
+ #: app/features/events.php:4498
3308
  msgid "No Attendees Found!"
3309
  msgstr "Keine Teilnehmer gefunden!"
3310
 
3311
+ #: app/features/events.php:4800
3312
  #, fuzzy
3313
  #| msgid "No bookings found!"
3314
  msgid "No Bookings Found!"
3455
  msgid "The event published."
3456
  msgstr "Die Veranstaltung wurde veröffentlicht."
3457
 
3458
+ #: app/features/fes/form.php:180
3459
  msgid "Go back to events list"
3460
  msgstr "Zurück zur Liste der Veranstaltungen"
3461
 
3462
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3463
  #: app/features/mec/settings.php:1171
3464
  msgid "Excerpt"
3465
  msgstr ""
3466
 
3467
+ #: app/features/fes/form.php:273
3468
  #, fuzzy
3469
  #| msgid "On Event Start"
3470
  msgid "Optional Event Excerpt"
3471
  msgstr "Am Event Start"
3472
 
3473
+ #: app/features/fes/form.php:280
3474
  msgid ""
3475
  "This event is imported from Google calendar so if you modify it would "
3476
  "overwrite in the next import from Google."
3477
  msgstr ""
3478
 
3479
+ #: app/features/fes/form.php:409
3480
  #: app/features/mec/meta_boxes/display_options.php:1494
3481
  #: app/libraries/main.php:476
3482
  msgid "Monday"
3483
  msgstr "Montag"
3484
 
3485
+ #: app/features/fes/form.php:410
3486
  #: app/features/mec/meta_boxes/display_options.php:1495
3487
  #: app/libraries/main.php:476
3488
  msgid "Tuesday"
3489
  msgstr "Dienstag"
3490
 
3491
+ #: app/features/fes/form.php:411
3492
  #: app/features/mec/meta_boxes/display_options.php:1496
3493
  #: app/libraries/main.php:476
3494
  msgid "Wednesday"
3495
  msgstr "Mittwoch"
3496
 
3497
+ #: app/features/fes/form.php:412
3498
  #: app/features/mec/meta_boxes/display_options.php:1497
3499
  #: app/libraries/main.php:476
3500
  msgid "Thursday"
3501
  msgstr "Donnerstag"
3502
 
3503
+ #: app/features/fes/form.php:413
3504
  #: app/features/mec/meta_boxes/display_options.php:1498
3505
  #: app/libraries/main.php:476
3506
  msgid "Friday"
3507
  msgstr "Freitag"
3508
 
3509
+ #: app/features/fes/form.php:414
3510
  #: app/features/mec/meta_boxes/display_options.php:1499
3511
  #: app/libraries/main.php:476
3512
  msgid "Saturday"
3513
  msgstr "Samstag"
3514
 
3515
+ #: app/features/fes/form.php:415
3516
  #: app/features/mec/meta_boxes/display_options.php:1493
3517
  #: app/libraries/main.php:476
3518
  msgid "Sunday"
3519
  msgstr "Sonntag"
3520
 
3521
+ #: app/features/fes/form.php:768
3522
  msgid ""
3523
  "The event will finish after certain repeats. For example if you set it to "
3524
  "10, the event will finish after 10 repeats."
3526
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
3527
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
3528
 
3529
+ #: app/features/fes/form.php:792
3530
  msgid "Note to reviewer"
3531
  msgstr "Zusätzliche Anmerkungen zum Event "
3532
 
3533
+ #: app/features/fes/form.php:810
3534
  msgid "User Data"
3535
  msgstr "Benutzerdaten"
3536
 
3537
+ #: app/features/fes/form.php:813
3538
  msgid "eg. yourname@gmail.com"
3539
  msgstr "z.B. IhrName@ihrewebseite.de"
3540
 
3541
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3542
+ #: app/features/popup/event.php:190
3543
  msgid "eg. John Smith"
3544
  msgstr "z.B. Max Mustermann"
3545
 
3546
+ #: app/features/fes/form.php:835
3547
  #, fuzzy
3548
  #| msgid ""
3549
  #| "If you fill it, it will be replaced instead of default event page link. "
3556
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
3557
  "einschließlich http(s)://"
3558
 
3559
+ #: app/features/fes/form.php:958
3560
  msgid "Remove Image"
3561
  msgstr "Bild entfernen"
3562
 
3563
+ #: app/features/fes/form.php:1048
3564
  msgid "Insert your desired tags, comma separated."
3565
  msgstr ""
3566
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
3567
 
3568
+ #: app/features/fes/form.php:1070
3569
  msgid "Speakers Names"
3570
  msgstr "Sprecher Namen"
3571
 
3572
+ #: app/features/fes/form.php:1071
3573
  #, fuzzy
3574
  #| msgid "Separate names with commas Similar Justin, Cris"
3575
  msgid "Separate names with commas: Justin, Chris"
3576
  msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
3577
 
3578
+ #: app/features/fes/form.php:1116
3579
  #, fuzzy, php-format
3580
  #| msgid "Please %s/%s in order to submit new events."
3581
  msgid "I accept the %s in order to submit an event."
3582
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
3583
 
3584
+ #: app/features/fes/form.php:1116
3585
  msgid "Privacy Policy"
3586
  msgstr ""
3587
 
3588
+ #: app/features/fes/form.php:1118
3589
  #, fuzzy
3590
  #| msgid "Please %s/%s in order to submit new events."
3591
  msgid "I accept the Privacy Policy in order to submit an event."
3592
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
3593
 
3594
+ #: app/features/fes/form.php:1124
3595
  #, fuzzy
3596
  #| msgid "Edit Event"
3597
  msgid "Submit Event"
3672
  msgid "The events are imported successfully!"
3673
  msgstr "Die Events wurden erfolgreich importiert!"
3674
 
3675
+ #: app/features/ix.php:1342
3676
  msgid "Third Party plugin is not installed and activated!"
3677
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
3678
 
3679
+ #: app/features/ix.php:1366
3680
  msgid "Third Party plugin is invalid!"
3681
  msgstr "Drittanbieter-Plugin ist ungültig!"
3682
 
3683
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3684
  #, fuzzy
3685
  #| msgid "Both of API key and Calendar ID are required!"
3686
  msgid "API key and Calendar ID are required!"
3687
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
3688
 
3689
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3690
  #, fuzzy
3691
  #| msgid "Please select some events to import!"
3692
  msgid "Please select events to import!"
3693
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
3694
 
3695
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3696
  #, fuzzy
3697
  #| msgid "Both of API key and Calendar ID are required!"
3698
  msgid "API key and Group URL are required!"
3699
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
3700
 
3701
+ #: app/features/ix.php:4137
3702
  msgid "Check at Meetup"
3703
  msgstr ""
3704
 
3705
+ #: app/features/ix.php:4303
3706
  #, fuzzy
3707
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3708
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3709
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
3710
 
3711
+ #: app/features/ix.php:4326
3712
  #, fuzzy, php-format
3713
  #| msgid "All seems good! Please click %s for authenticating your app."
3714
  msgid "All seems good! Please click %s to authenticate your app."
3715
  msgstr ""
3716
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
3717
 
3718
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3719
  #: app/features/mec/settings.php:1496
3720
  msgid "here"
3721
  msgstr ""
3722
 
3723
+ #: app/features/ix.php:4381
3724
  #, fuzzy
3725
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3726
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3727
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
3728
 
3729
+ #: app/features/ix.php:4543
3730
  #, fuzzy, php-format
3731
  #| msgid "%s events added to Google Calendar successfully."
3732
  msgid "%s events added to Google Calendar with success."
3733
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
3734
 
3735
+ #: app/features/ix.php:4544
3736
  #, fuzzy, php-format
3737
  #| msgid "%s previously added events get updated."
3738
  msgid "%s Updated previously added events."
3739
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
3740
 
3741
+ #: app/features/ix.php:4545
3742
  #, php-format
3743
  msgid "%s events failed to add for following reasons: %s"
3744
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
3745
 
3746
+ #: app/features/ix.php:4577
3747
  #, fuzzy
3748
  #| msgid "Please insert your facebook page's link."
3749
  msgid "Please insert your Facebook page's link."
3750
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
3751
 
3752
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3753
  #, fuzzy
3754
  #| msgid ""
3755
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3761
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
3762
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
3763
 
3764
+ #: app/features/ix.php:4625
3765
  msgid "Please insert your facebook page's link."
3766
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
3767
 
3978
  msgid "Add to Google Calendar"
3979
  msgstr "Zum Google Kalender hinzufügen"
3980
 
3981
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3982
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3983
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3984
  #: app/features/mec/single.php:604
4094
  msgid "Import all of your Facebook events into MEC."
4095
  msgstr "Importiere alle Deine Facebook Events zum MEC"
4096
 
4097
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4098
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4099
  msgid "Documentation"
4100
  msgstr "Dokumentation"
4438
  "Event Seite zu bearbeiten und sicherzustellen, dass sie korrekt sind."
4439
 
4440
  #: app/features/labels.php:79 app/features/locations.php:77
4441
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4442
  #: app/features/tag.php:77
4443
  #, fuzzy, php-format
4444
  #| msgid "← Back to %s"
4446
  msgstr "← Zurück zu %s"
4447
 
4448
  #: app/features/labels.php:80 app/features/locations.php:78
4449
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4450
  #: app/features/tag.php:78
4451
  #, fuzzy, php-format
4452
  #| msgid "No events found!"
4490
  msgstr ""
4491
 
4492
  #: app/features/labels.php:186 app/features/locations.php:269
4493
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4494
  #: app/modules/booking/steps/tickets.php:172
4495
  msgid "Count"
4496
  msgstr "Zähler"
4506
  msgstr "Event %s"
4507
 
4508
  #: app/features/locations.php:59 app/features/mec.php:526
4509
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4510
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4511
  #: app/libraries/main.php:7623
4512
  msgid "Locations"
4517
  msgstr "Geben Sie die Veranstaltungsanschrift ein"
4518
 
4519
  #: app/features/locations.php:131 app/features/locations.php:197
4520
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4521
  msgid "Latitude"
4522
  msgstr "Breitengrad z.B. 49.0069646 "
4523
 
4528
  msgstr "Geologischer Breitengrad (Optional)"
4529
 
4530
  #: app/features/locations.php:139 app/features/locations.php:201
4531
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4532
  msgid "Longitude"
4533
  msgstr "Längengrad z.B. 8.4118636 "
4534
 
4553
 
4554
  #: app/features/locations.php:156 app/features/locations.php:210
4555
  #: app/features/organizers.php:128 app/features/organizers.php:161
4556
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4557
  msgid "Thumbnail"
4558
  msgstr "Miniaturansicht"
4559
 
4560
  #: app/features/locations.php:329 app/features/occurrences.php:460
4561
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4562
  #, php-format
4563
  msgid "Event Main %s"
4564
  msgstr "Hauptevent % s"
4565
 
4566
  #: app/features/locations.php:332 app/features/occurrences.php:464
4567
+ #: app/features/popup/event.php:121
4568
  msgid "Hide location"
4569
  msgstr "Ort verbergen"
4570
 
4571
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4572
  msgid "Insert a new location"
4573
  msgstr "Neuen Ort hinzufügen"
4574
 
4577
  msgstr ""
4578
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
4579
 
4580
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4581
  msgid "Location Name"
4582
  msgstr "Name Veranstaltungsort"
4583
 
4584
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4585
  msgid "eg. City Hall"
4586
  msgstr ""
4587
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
4588
  "Westfalenhalle"
4589
 
4590
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4591
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4592
  msgid "Event Location"
4593
  msgstr "Veranstaltungsort"
4594
 
4595
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4596
  msgid "eg. City hall, Manhattan, New York"
4597
  msgstr ""
4598
  "z.B. Holiday Inn, Zimmerstraße 8, 76137 Karlsruhe oder Finanzevent, Jenaer "
4599
  "Ring 1, 76297 Stutensee"
4600
 
4601
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4602
  #, fuzzy
4603
  #| msgid "Longitude"
4604
  msgid "Latitude/Longitude"
4605
  msgstr "Längengrad z.B. 8.4118636 "
4606
 
4607
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4608
  msgid ""
4609
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4610
  "to convert the location address to geopoint, Latitude and Longitude are the "
4613
  "the location on the map to find lat long coordinates."
4614
  msgstr ""
4615
 
4616
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4617
  msgid "Get Latitude and Longitude"
4618
  msgstr ""
4619
 
4620
  #: app/features/locations.php:392 app/features/organizers.php:315
4621
+ #: app/features/popup/event.php:209
4622
  msgid "Choose image"
4623
  msgstr "Bild wählen"
4624
 
4625
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4626
+ #: app/features/popup/event.php:140
4627
  msgid "Don't show map in single event page"
4628
  msgstr "Karte in Einzelansicht nicht anzeigen"
4629
 
4630
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4631
  #: app/libraries/main.php:7654
4632
  msgid "Other Locations"
4633
  msgstr "Andere Orte"
4634
 
4635
+ #: app/features/locations.php:413
4636
  #, fuzzy
4637
  #| msgid ""
4638
  #| "You can select extra organizers in addition to main organizer if you like."
4709
  msgid "Support"
4710
  msgstr "Support"
4711
 
4712
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4713
  #: app/features/mec/meta_boxes/filter.php:71
4714
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4715
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4717
  msgstr "Veranstalter"
4718
 
4719
  #: app/features/mec.php:536 app/features/mec.php:596
4720
+ #: app/features/mec/dashboard.php:218
4721
  msgid "Shortcodes"
4722
  msgstr "Shortcodes"
4723
 
4934
  msgstr ""
4935
 
4936
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4937
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4938
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4939
  msgid "Version"
4940
  msgstr "Version"
4958
  msgstr "Suche…"
4959
 
4960
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4961
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4962
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4963
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4964
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4965
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4966
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5551
  msgid "It applies only to the orders that are related to MEC."
5552
  msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
5553
 
5554
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5555
  #, fuzzy
5556
  #| msgid "Add to Cart"
5557
  msgid "After Add to Cart"
5558
  msgstr "in den Warenkorb legen"
5559
 
5560
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5561
  #, fuzzy
5562
  #| msgid "Redirection Page"
5563
  msgid "Redirect to Cart"
5564
  msgstr "Weiterleitungs Seite "
5565
 
5566
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5567
  #, fuzzy
5568
  #| msgid "Redirection Page"
5569
  msgid "Redirect to Checkout"
5570
  msgstr "Weiterleitungs Seite "
5571
 
5572
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5573
  #, fuzzy
5574
  #| msgid "View Detail Button"
5575
  msgid "Optional View Cart Button"
5576
  msgstr "Ansicht Detail Button"
5577
 
5578
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5579
  msgid "Optional Checkout Button"
5580
  msgstr ""
5581
 
5631
  "(Stripe) got canceled."
5632
  msgstr ""
5633
 
5634
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5635
+ #, fuzzy
5636
+ #| msgid "Support"
5637
+ msgid "MEC Cart"
5638
+ msgstr "Support"
5639
+
5640
+ #: app/features/mec/booking.php:1118
5641
  msgid "Use MEC Cart System"
5642
  msgstr ""
5643
 
5644
+ #: app/features/mec/booking.php:1120
5645
  msgid ""
5646
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5647
  "adding a simple cart and checkout system to your website."
5648
  msgstr ""
5649
 
5650
+ #: app/features/mec/booking.php:1122
5651
  msgid "You cannot use following MEC features while using MEC Cart."
5652
  msgstr ""
5653
 
5654
+ #: app/features/mec/booking.php:1124
5655
  #, fuzzy
5656
  #| msgid "Payment Gateways"
5657
  msgid "WooCommerce as Payment Gateway"
5658
  msgstr "Zahlungs-Gateways"
5659
 
5660
+ #: app/features/mec/booking.php:1125
5661
  #, fuzzy
5662
  #| msgid "Next Occurrence of Other Events"
5663
  msgid "Currency Per Event"
5664
  msgstr "Nächstes Auftreten von anderen Events."
5665
 
5666
+ #: app/features/mec/booking.php:1126
5667
  #, fuzzy
5668
  #| msgid "Payment Gateways"
5669
  msgid "Disable Gateways Per Event"
5670
  msgstr "Zahlungs-Gateways"
5671
 
5672
+ #: app/features/mec/booking.php:1127
5673
  #, fuzzy
5674
  #| msgid "Stripe"
5675
  msgid "Stripe Connect Gateway"
5676
  msgstr "Stripe"
5677
 
5678
+ #: app/features/mec/booking.php:1128
5679
  #, fuzzy
5680
  #| msgid "Pay by WooCommerce"
5681
  msgid "Pay By WooCommerce Gateway"
5682
  msgstr "Zahlung über WooCommerce"
5683
 
5684
+ #: app/features/mec/booking.php:1129
5685
  #, fuzzy
5686
  #| msgid "Organizer Tel"
5687
  msgid "Organizer Payment Module"
5688
  msgstr "Organisator Telefon"
5689
 
5690
+ #: app/features/mec/booking.php:1133
5691
  #, fuzzy
5692
  #| msgid "Start Date"
5693
  msgid "Cart Page"
5694
  msgstr "Start Datum"
5695
 
5696
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5697
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5698
  #, php-format
5699
  msgid "Put %s shortcode into the page."
5700
  msgstr "%s shortcode in die Seite einfügen"
5701
 
5702
+ #: app/features/mec/booking.php:1145
5703
  #, fuzzy
5704
  #| msgid "Checkout"
5705
  msgid "Checkout Page"
5706
  msgstr "Zur Kasse gehen"
5707
 
5708
+ #: app/features/mec/booking.php:1171
5709
  #, fuzzy
5710
  #| msgid "Enable Invoice"
5711
  msgid "Enable Cart Invoice"
5712
  msgstr "Rechnungen aktivieren"
5713
 
5714
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5715
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5716
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5717
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5719
  msgid "Saved"
5720
  msgstr "Gesichert"
5721
 
5722
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5723
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5724
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5725
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5727
  msgid "Settings Saved!"
5728
  msgstr "Einstellungen gespeichert!"
5729
 
5730
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5731
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5732
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5733
  msgid "Please Refresh Page"
5743
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5744
  msgstr ""
5745
 
5746
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5747
  #, php-format
5748
  msgid ""
5749
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5751
  "Spots, etc you should upgrade to the Pro version."
5752
  msgstr ""
5753
 
5754
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5755
  msgid "lite"
5756
  msgstr ""
5757
 
5758
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5759
  #: app/features/mec/support.php:126
5760
  msgid "GO PREMIUM"
5761
  msgstr ""
5762
 
5763
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5764
  msgid "Getting started with Modern Events Calendar"
5765
  msgstr "Lege los mit dem Modernen Event Kalender "
5766
 
5767
+ #: app/features/mec/dashboard.php:113
5768
  msgid ""
5769
  "In this short video, you can learn how to make an event and put a calendar "
5770
  "on your website. Please watch this 2 minutes video to the end."
5771
  msgstr ""
5772
 
5773
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5774
  #, fuzzy
5775
  #| msgid "MEC Activation"
5776
  msgid "License Activation"
5777
  msgstr "MEC Aktivierung"
5778
 
5779
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5780
  msgid "Activate Addons"
5781
  msgstr "MEC Erweiterungen Aktivieren"
5782
 
5783
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5784
  msgid "You cannot access this section."
5785
  msgstr ""
5786
 
5787
+ #: app/features/mec/dashboard.php:159
5788
  msgid ""
5789
  "In order to use all plugin features and options, please enter your purchase "
5790
  "code."
5791
  msgstr ""
5792
 
5793
+ #: app/features/mec/dashboard.php:267
5794
  msgid "Popular Gateways"
5795
  msgstr "Beliebte Zahlungsgateways"
5796
 
5797
+ #: app/features/mec/dashboard.php:325
5798
  msgid "Change Log"
5799
  msgstr "Änderungsprotokoll"
5800
 
7361
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7362
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7363
  #: app/features/popup/settings.php:272 app/features/search.php:109
7364
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7365
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7366
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7367
  #: app/modules/speakers/details.php:18
8717
  msgid "Please, insert comma to separate reminder hours."
8718
  msgstr ""
8719
 
8720
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8721
  #: app/libraries/main.php:705
8722
  msgid "New Event"
8723
  msgstr "Neue Veranstaltung"
11050
  msgstr ""
11051
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
11052
 
11053
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
11054
+ #: app/features/popup/event.php:171
11055
  msgid "Hide organizer"
11056
  msgstr "Veranstalter verbergen"
11057
 
11058
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
11059
+ #: app/features/popup/event.php:180
11060
  msgid "Choose one of saved organizers or insert new one below."
11061
  msgstr ""
11062
  "Wählen Sie einen der gespeicherten Veranstalter aus oder legen Sie einen "
11071
  msgstr "Veranstalter Email-Adresse einfügen"
11072
 
11073
  #: app/features/organizers.php:120 app/features/organizers.php:157
11074
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
11075
  msgid "Link to organizer page"
11076
  msgstr "Link zur Seite des Veranstalters"
11077
 
11085
  msgid "Contact info"
11086
  msgstr "Kontaktdaten"
11087
 
11088
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11089
  msgid "Insert a new organizer"
11090
  msgstr "Neuen Veranstalter einfügen"
11091
 
11092
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11093
  msgid "Phone number."
11094
  msgstr "Telefon"
11095
 
11096
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11097
  msgid "eg. +1 (234) 5678"
11098
  msgstr "z.B. +49 (1234) 56789"
11099
 
11100
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11101
  msgid "Email address."
11102
  msgstr "Mailadresse"
11103
 
11104
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11105
  msgid "eg. john@smith.com"
11106
  msgstr "z.B.. max@mustermann.com"
11107
 
11108
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11109
  #, fuzzy
11110
  #| msgid "http://webnus.net"
11111
  msgid "eg. https://webnus.net"
11123
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
11124
  "auswählen, wenn Sie möchten."
11125
 
11126
+ #: app/features/popup/event.php:60
11127
  #, fuzzy
11128
  #| msgid "Add Shortcode"
11129
  msgid "Adding an Event..."
11130
  msgstr "Shortcode hinzufügen"
11131
 
11132
+ #: app/features/popup/event.php:68
11133
  #, fuzzy
11134
  #| msgid "Event Note"
11135
  msgid "Event Name"
11136
  msgstr "Veranstaltungsnotiz"
11137
 
11138
+ #: app/features/popup/event.php:69
11139
  msgid "Event name is required"
11140
  msgstr ""
11141
 
11142
+ #: app/features/popup/event.php:130
11143
  #, fuzzy
11144
  #| msgid "Choose one of saved locations or insert new one below."
11145
  msgid "Choose one of saved locations or insert new one."
11146
  msgstr ""
11147
  "Wählen Sie einen der gespeicherten Orte aus, oder fügen Sie einen neuen ein."
11148
 
11149
+ #: app/features/popup/event.php:134
11150
  #, fuzzy
11151
  #| msgid "Location"
11152
  msgid "Add Location"
11153
  msgstr "Ort"
11154
 
11155
+ #: app/features/popup/event.php:184
11156
  #, fuzzy
11157
  #| msgid "Organizer"
11158
  msgid "Add Organizer"
11159
  msgstr "Veranstalter"
11160
 
11161
+ #: app/features/popup/event.php:224
11162
  #, fuzzy
11163
  #| msgid "Categories"
11164
  msgid "All Categories"
11165
  msgstr "Kategorien"
11166
 
11167
+ #: app/features/popup/event.php:225
11168
  msgid "Most Used"
11169
  msgstr ""
11170
 
11171
+ #: app/features/popup/event.php:236
11172
  #, fuzzy
11173
  #| msgid "Add New Coupon"
11174
  msgid "Add New Category"
11175
  msgstr "Gutschein hinzufügen"
11176
 
11177
+ #: app/features/popup/event.php:247
11178
  #, fuzzy
11179
  #| msgid "Featured Image"
11180
  msgid "Set Featured Image"
11181
  msgstr "Ausgewähltes Bild"
11182
 
11183
+ #: app/features/popup/event.php:257
11184
  msgid "Your Event Has Been Created."
11185
  msgstr ""
11186
 
11187
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11188
  #: app/features/popup/shortcode.php:553
11189
  msgid "Prev"
11190
  msgstr ""
11191
 
11192
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11193
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11194
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11195
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11398
  msgid "No search result."
11399
  msgstr "Kein Suchergebnis"
11400
 
11401
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11402
+ #: app/features/speakers.php:293
11403
  msgid "Job Title"
11404
  msgstr "Job Titel"
11405
 
11406
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11407
  msgid "Insert speaker job title."
11408
  msgstr ""
11409
 
11410
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11411
  msgid "Insert speaker phone number."
11412
  msgstr "Veranstalter Telefonnummer hinzufügen"
11413
 
11414
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11415
  msgid "Insert speaker email address."
11416
  msgstr "Veranstalter Email-Adresse hinzufügen"
11417
 
11418
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11419
  #, fuzzy
11420
  #| msgid "Insert -1 for unlimited usage"
11421
  msgid "Insert URL of Website"
11422
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11423
 
11424
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11425
  #, fuzzy
11426
  #| msgid "Facebook Page Link"
11427
  msgid "Facebook Page"
11428
  msgstr "Facebook Seiten Link"
11429
 
11430
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11431
  #, fuzzy
11432
  #| msgid "Import from Facebook Calendar"
11433
  msgid "Insert URL of Facebook Page"
11434
  msgstr "Vom Facebook Kalender Importieren"
11435
 
11436
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11437
  msgid "Instagram"
11438
  msgstr ""
11439
 
11440
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11441
  #, fuzzy
11442
  #| msgid "Insert -1 for unlimited usage"
11443
  msgid "Insert URL of Instagram"
11444
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11445
 
11446
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11447
  #, fuzzy
11448
  #| msgid "Linkedin"
11449
  msgid "LinkedIn"
11450
  msgstr "Linkedin"
11451
 
11452
+ #: app/features/speakers.php:169
11453
  #, fuzzy
11454
  #| msgid "Insert -1 for unlimited usage"
11455
  msgid "Insert URL of LinkedIn"
11456
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11457
 
11458
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11459
  #, fuzzy
11460
  #| msgid "Twitter"
11461
  msgid "Twitter Page"
11462
  msgstr "Twitter"
11463
 
11464
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11465
  #, fuzzy
11466
  #| msgid "Insert -1 for unlimited usage"
11467
  msgid "Insert URL of Twitter Page"
11468
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11469
 
11470
+ #: app/features/speakers.php:228
11471
  #, fuzzy
11472
  #| msgid "Insert -1 for unlimited usage"
11473
  msgid "Insert URL of linkedin"
11474
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
11475
 
11476
+ #: app/features/speakers.php:353
11477
  msgid "Sorry, You must insert speaker name!"
11478
  msgstr ""
11479
 
11480
+ #: app/features/speakers.php:402
11481
  msgid ""
11482
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11483
  "section and speaker widget section!"
11565
  msgid "Upgrade to Pro Version"
11566
  msgstr ""
11567
 
11568
+ #: app/libraries/factory.php:232
11569
  #, fuzzy
11570
  #| msgid "Settings"
11571
  msgctxt "plugin link"
11572
  msgid "Settings"
11573
  msgstr "Einstellungen"
11574
 
11575
+ #: app/libraries/factory.php:237
11576
  msgctxt "plugin link"
11577
  msgid "Upgrade"
11578
  msgstr ""
11579
 
11580
+ #: app/libraries/factory.php:391
11581
  msgid "day"
11582
  msgstr "Tag"
11583
 
11584
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11585
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11586
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11587
  msgid "days"
11588
  msgstr "Tage"
11589
 
11590
+ #: app/libraries/factory.php:393
11591
  msgid "hour"
11592
  msgstr "Stunde"
11593
 
11594
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11595
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11596
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11597
  msgid "hours"
11598
  msgstr "Stunden"
11599
 
11600
+ #: app/libraries/factory.php:395
11601
  msgid "minute"
11602
  msgstr "Minute"
11603
 
11604
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11605
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11606
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11607
  msgid "minutes"
11608
  msgstr "Minuten"
11609
 
11610
+ #: app/libraries/factory.php:397
11611
  msgid "second"
11612
  msgstr "Sekunde"
11613
 
11614
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11615
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11616
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11617
  msgid "seconds"
11618
  msgstr "Sekunden"
11619
 
11620
+ #: app/libraries/factory.php:475
11621
  msgid "MEC Single Sidebar"
11622
  msgstr "MEC Single Sidebar"
11623
 
11624
+ #: app/libraries/factory.php:476
11625
  msgid "Custom sidebar for single and modal page of MEC."
11626
  msgstr "Custom sidebar for single and modal page of MEC."
11627
 
11628
+ #: app/libraries/factory.php:1197
11629
  msgid "Notice:"
11630
  msgstr ""
11631
 
11632
+ #: app/libraries/factory.php:1198
11633
  msgid "This update includes only bug fixes."
11634
  msgstr ""
11635
 
11785
  msgid "%s Form"
11786
  msgstr ""
11787
 
 
 
 
 
 
 
11788
  #: app/libraries/main.php:726
11789
  msgid "Only For Bookers"
11790
  msgstr ""
12557
  msgid "End at: %s - %s"
12558
  msgstr ""
12559
 
12560
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12561
  #, fuzzy
12562
  #| msgid "Repeating"
12563
  msgid "Repeating Event"
13055
  msgid "http://webnus.net"
13056
  msgstr "http://webnus.net"
13057
 
13058
+ #~ msgctxt "plugin rate"
13059
+ #~ msgid "Rate the plugin ★★★★★"
13060
+ #~ msgstr "Bewerte das Plugin ★★★★★"
13061
+
13062
+ #~ msgid "WordPress"
13063
+ #~ msgstr "WordPress"
13064
+
13065
+ #~ msgid "Copouns!"
13066
+ #~ msgstr "Gutscheine!"
13067
+
13068
  #, fuzzy
13069
  #~| msgid ""
13070
  #~| "The %s ticket is sold out. You can try another ticket or another date."
languages/modern-events-calendar-lite-en_US.mo CHANGED
Binary file
languages/modern-events-calendar-lite-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:29+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -152,7 +152,7 @@ msgid "Canceled"
152
  msgstr ""
153
 
154
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
155
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
156
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
157
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
158
  #: app/features/mec/notifications.php:1922
@@ -186,14 +186,14 @@ msgstr ""
186
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
187
  #: app/features/autoemails.php:60 app/features/events.php:606
188
  #: app/features/events.php:2650 app/features/events.php:2717
189
- #: app/features/events.php:2806 app/features/events.php:4443
190
- #: app/features/fes.php:280 app/features/fes/form.php:810
191
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
192
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
193
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
194
  #: app/features/organizers.php:112 app/features/organizers.php:153
195
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
196
- #: app/features/speakers.php:205 app/libraries/main.php:653
197
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
198
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
199
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -343,8 +343,8 @@ msgstr ""
343
  #: app/features/events.php:2808 app/features/mec/booking.php:800
344
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
345
  #: app/features/organizers.php:104 app/features/organizers.php:149
346
- #: app/features/speakers.php:120 app/features/speakers.php:201
347
- #: app/features/speakers.php:288 app/libraries/main.php:4252
348
  msgid "Tel"
349
  msgstr ""
350
 
@@ -490,6 +490,11 @@ msgstr ""
490
  msgid "Agreement"
491
  msgstr ""
492
 
 
 
 
 
 
493
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
494
  #, php-format
495
  msgid "Instead of %s, the page title with a link will be show."
@@ -667,8 +672,8 @@ msgstr ""
667
  #: app/features/events.php:1843 app/features/events.php:2014
668
  #: app/features/events.php:2029 app/features/events.php:2271
669
  #: app/features/events.php:2283 app/features/events.php:2476
670
- #: app/features/events.php:2513 app/features/fes/form.php:458
671
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
672
  #: app/features/locations.php:341 app/features/mec/booking.php:113
673
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
674
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -745,9 +750,9 @@ msgstr ""
745
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
746
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
747
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
748
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
749
- #: app/features/organizers.php:289 app/features/popup/event.php:128
750
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
751
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
752
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
753
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -901,8 +906,8 @@ msgstr ""
901
 
902
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
903
  #: app/features/events.php:432 app/features/events.php:1283
904
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
905
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
906
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
907
  #: app/skins/single.php:1126 app/skins/single/default.php:213
908
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -973,7 +978,7 @@ msgid "How to set label"
973
  msgstr ""
974
 
975
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
976
- #: app/features/events.php:4195 app/features/fes/form.php:998
977
  #: app/features/labels.php:61 app/features/labels.php:227
978
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
979
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1005,7 +1010,7 @@ msgid "How to set location"
1005
  msgstr ""
1006
 
1007
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1008
- #: app/features/events.php:3876 app/features/events.php:4188
1009
  #: app/features/locations.php:58 app/features/locations.php:267
1010
  #: app/features/locations.php:329 app/features/locations.php:331
1011
  #: app/features/locations.php:340
@@ -1025,7 +1030,7 @@ msgstr ""
1025
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1026
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1027
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1028
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1029
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1030
  #: app/features/search.php:97 app/libraries/main.php:3020
1031
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1039,7 +1044,7 @@ msgstr ""
1039
 
1040
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1041
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1042
- #: app/features/speakers.php:136 app/features/speakers.php:209
1043
  #: app/skins/single.php:1406 app/skins/single.php:1473
1044
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1045
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1062,7 +1067,7 @@ msgstr ""
1062
 
1063
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1064
  #: app/features/events.php:1519 app/features/events.php:1532
1065
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1066
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1067
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1068
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1107,8 +1112,8 @@ msgstr ""
1107
 
1108
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1109
  #: app/features/events.php:431 app/features/events.php:3877
1110
- #: app/features/events.php:4190 app/features/events.php:4191
1111
- #: app/features/events.php:4192
1112
  #: app/features/mec/meta_boxes/display_options.php:1660
1113
  #: app/features/mec/meta_boxes/search_form.php:80
1114
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1123,12 +1128,12 @@ msgstr ""
1123
  #: app/features/mec/meta_boxes/search_form.php:983
1124
  #: app/features/mec/meta_boxes/search_form.php:1070
1125
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1126
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1127
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1128
  #: app/features/organizers.php:58 app/features/organizers.php:208
1129
  #: app/features/organizers.php:277 app/features/organizers.php:279
1130
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1131
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1132
  #: app/features/popup/settings.php:263 app/features/search.php:103
1133
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1134
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1246,8 +1251,8 @@ msgstr ""
1246
  #: app/features/booking/calendar_novel.php:145
1247
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1248
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1249
- #: app/libraries/render.php:554 app/libraries/render.php:758
1250
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1251
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1252
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1253
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1304,7 +1309,7 @@ msgstr ""
1304
 
1305
  #: app/features/autoemails.php:74 app/features/events.php:230
1306
  #: app/features/labels.php:72 app/features/locations.php:70
1307
- #: app/features/organizers.php:70 app/features/speakers.php:72
1308
  #: app/features/tag.php:70
1309
  #, php-format
1310
  msgid "Edit %s"
@@ -1359,7 +1364,7 @@ msgstr ""
1359
  msgid "Go to events page"
1360
  msgstr ""
1361
 
1362
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1363
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1364
  #: app/features/wc.php:91 app/libraries/main.php:3072
1365
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1430,7 +1435,7 @@ msgstr ""
1430
  msgid "Back to Cart"
1431
  msgstr ""
1432
 
1433
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1434
  #: app/features/mec/settings.php:907
1435
  msgid "Event Color"
1436
  msgstr ""
@@ -1440,8 +1445,8 @@ msgid "Recent Colors"
1440
  msgstr ""
1441
 
1442
  #: app/features/contextual.php:55 app/features/mec.php:546
1443
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1444
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1445
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1446
  #: app/libraries/main.php:738
1447
  msgid "Settings"
@@ -1555,7 +1560,7 @@ msgid "Event Details/Single Event Page"
1555
  msgstr ""
1556
 
1557
  #: app/features/contextual.php:166 app/features/events.php:1298
1558
- #: app/features/fes/form.php:883
1559
  msgid "Currency Options"
1560
  msgstr ""
1561
 
@@ -1643,8 +1648,8 @@ msgid "Public File to Download"
1643
  msgstr ""
1644
 
1645
  #: app/features/dlfile.php:297 app/features/events.php:3874
1646
- #: app/features/events.php:4181 app/features/events.php:4730
1647
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1648
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1649
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1650
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1653,7 +1658,7 @@ msgid "Title"
1653
  msgstr ""
1654
 
1655
  #: app/features/dlfile.php:301 app/features/events.php:1988
1656
- #: app/features/events.php:2248 app/features/events.php:4182
1657
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1658
  #: app/libraries/hourlyschedule.php:152
1659
  msgid "Description"
@@ -1688,7 +1693,7 @@ msgid "Before"
1688
  msgstr ""
1689
 
1690
  #: app/features/emails/details.php:35 app/features/events.php:1223
1691
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1692
  msgid "After"
1693
  msgstr ""
1694
 
@@ -1697,7 +1702,7 @@ msgid "event occurrence."
1697
  msgstr ""
1698
 
1699
  #: app/features/emails/details.php:40 app/features/events.php:192
1700
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1701
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1702
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1703
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1718,11 +1723,11 @@ msgstr ""
1718
  msgid "Add Event"
1719
  msgstr ""
1720
 
1721
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1722
  msgid "Add New Event"
1723
  msgstr ""
1724
 
1725
- #: app/features/events.php:196 app/features/ix.php:4573
1726
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1727
  #: app/skins/map/tpl.php:93
1728
  msgid "No events found!"
@@ -1733,7 +1738,7 @@ msgid "Edit Event"
1733
  msgstr ""
1734
 
1735
  #: app/features/events.php:199 app/features/fes/list.php:100
1736
- #: app/features/popup/event.php:254
1737
  msgid "View Event"
1738
  msgstr ""
1739
 
@@ -1742,7 +1747,7 @@ msgid "No events found in Trash!"
1742
  msgstr ""
1743
 
1744
  #: app/features/events.php:219 app/features/events.php:3831
1745
- #: app/features/events.php:4196 app/features/fes/form.php:972
1746
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1747
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1748
  #: app/libraries/main.php:7619
@@ -1751,49 +1756,49 @@ msgstr ""
1751
 
1752
  #: app/features/events.php:229 app/features/labels.php:71
1753
  #: app/features/locations.php:69 app/features/organizers.php:69
1754
- #: app/features/speakers.php:71 app/features/tag.php:69
1755
  #, php-format
1756
  msgid "All %s"
1757
  msgstr ""
1758
 
1759
  #: app/features/events.php:231 app/features/labels.php:73
1760
  #: app/features/locations.php:71 app/features/organizers.php:71
1761
- #: app/features/speakers.php:73 app/features/tag.php:71
1762
  #, php-format
1763
  msgid "View %s"
1764
  msgstr ""
1765
 
1766
  #: app/features/events.php:232 app/features/labels.php:74
1767
  #: app/features/locations.php:72 app/features/organizers.php:72
1768
- #: app/features/speakers.php:74 app/features/tag.php:72
1769
  #, php-format
1770
  msgid "Update %s"
1771
  msgstr ""
1772
 
1773
  #: app/features/events.php:233 app/features/labels.php:75
1774
  #: app/features/locations.php:73 app/features/organizers.php:73
1775
- #: app/features/speakers.php:75 app/features/tag.php:73
1776
  #, php-format
1777
  msgid "Add New %s"
1778
  msgstr ""
1779
 
1780
  #: app/features/events.php:234 app/features/labels.php:76
1781
  #: app/features/locations.php:74 app/features/organizers.php:74
1782
- #: app/features/speakers.php:76 app/features/tag.php:74
1783
  #, php-format
1784
  msgid "New %s Name"
1785
  msgstr ""
1786
 
1787
  #: app/features/events.php:235 app/features/labels.php:77
1788
  #: app/features/locations.php:75 app/features/organizers.php:75
1789
- #: app/features/speakers.php:77 app/features/tag.php:75
1790
  #, php-format
1791
  msgid "Popular %s"
1792
  msgstr ""
1793
 
1794
  #: app/features/events.php:236 app/features/labels.php:78
1795
  #: app/features/locations.php:76 app/features/organizers.php:76
1796
- #: app/features/speakers.php:78 app/features/tag.php:76
1797
  #, php-format
1798
  msgid "Search %s"
1799
  msgstr ""
@@ -1823,7 +1828,7 @@ msgstr ""
1823
  #: app/features/events.php:278 app/features/events.php:336
1824
  #: app/features/locations.php:161 app/features/locations.php:213
1825
  #: app/features/organizers.php:133 app/features/organizers.php:164
1826
- #: app/features/speakers.php:181 app/features/speakers.php:232
1827
  msgid "Upload/Add image"
1828
  msgstr ""
1829
 
@@ -1832,7 +1837,7 @@ msgstr ""
1832
  #: app/features/locations.php:393 app/features/locations.php:400
1833
  #: app/features/organizers.php:134 app/features/organizers.php:165
1834
  #: app/features/organizers.php:316 app/features/organizers.php:323
1835
- #: app/features/speakers.php:182 app/features/speakers.php:233
1836
  msgid "Remove image"
1837
  msgstr ""
1838
 
@@ -1848,7 +1853,7 @@ msgstr ""
1848
  msgid "Date And Time"
1849
  msgstr ""
1850
 
1851
- #: app/features/events.php:425 app/features/fes/form.php:384
1852
  msgid "Event Repeating"
1853
  msgstr ""
1854
 
@@ -1887,10 +1892,10 @@ msgid "Guest Data"
1887
  msgstr ""
1888
 
1889
  #: app/features/events.php:605 app/features/events.php:2641
1890
- #: app/features/events.php:4440 app/features/fes.php:280
1891
- #: app/features/fes/form.php:814 app/features/labels.php:184
1892
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
1893
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
1894
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
1895
  msgid "Name"
1896
  msgstr ""
@@ -1901,13 +1906,13 @@ msgid ""
1901
  "overwrite in the next import from Google."
1902
  msgstr ""
1903
 
1904
- #: app/features/events.php:619 app/features/fes/form.php:282
1905
  msgid "Date and Time"
1906
  msgstr ""
1907
 
1908
  #: app/features/events.php:622 app/features/events.php:626
1909
- #: app/features/events.php:3878 app/features/events.php:4183
1910
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
1911
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
1912
  #: app/features/mec/meta_boxes/display_options.php:57
1913
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -1925,13 +1930,13 @@ msgstr ""
1925
  #: app/features/mec/meta_boxes/display_options.php:2347
1926
  #: app/features/mec/meta_boxes/display_options.php:2478
1927
  #: app/features/mec/meta_boxes/display_options.php:2584
1928
- #: app/features/popup/event.php:77
1929
  msgid "Start Date"
1930
  msgstr ""
1931
 
1932
  #: app/features/events.php:642 app/features/events.php:646
1933
- #: app/features/events.php:3879 app/features/events.php:4185
1934
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
1935
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
1936
  #: app/features/mec/meta_boxes/display_options.php:73
1937
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -1940,35 +1945,35 @@ msgstr ""
1940
  #: app/features/mec/meta_boxes/display_options.php:788
1941
  #: app/features/mec/meta_boxes/display_options.php:1618
1942
  #: app/features/mec/meta_boxes/display_options.php:2363
1943
- #: app/features/popup/event.php:94
1944
  msgid "End Date"
1945
  msgstr ""
1946
 
1947
- #: app/features/events.php:669 app/features/fes/form.php:324
1948
- #: app/features/popup/event.php:111
1949
  msgid "All-day Event"
1950
  msgstr ""
1951
 
1952
- #: app/features/events.php:679 app/features/fes/form.php:327
1953
  msgid "Hide Event Time"
1954
  msgstr ""
1955
 
1956
- #: app/features/events.php:689 app/features/fes/form.php:330
1957
  msgid "Hide Event End Time"
1958
  msgstr ""
1959
 
1960
  #: app/features/events.php:694 app/features/events.php:698
1961
- #: app/features/fes/form.php:334
1962
  msgid "Notes on the time"
1963
  msgstr ""
1964
 
1965
- #: app/features/events.php:699 app/features/fes/form.php:335
1966
  msgid ""
1967
  "It shows next to event time on the Single Event Page. You can enter notes "
1968
  "such as timezone in this field."
1969
  msgstr ""
1970
 
1971
- #: app/features/events.php:711 app/features/fes/form.php:342
1972
  msgid "Timezone"
1973
  msgstr ""
1974
 
@@ -1977,43 +1982,43 @@ msgstr ""
1977
  #: app/features/events.php:1793 app/features/events.php:1813
1978
  #: app/features/events.php:1868 app/features/events.php:2438
1979
  #: app/features/events.php:2561 app/features/events.php:2672
1980
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
1981
  msgid "Inherit from global options"
1982
  msgstr ""
1983
 
1984
  #: app/features/events.php:725 app/features/events.php:728
1985
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
1986
  #: app/features/mec/settings.php:858
1987
  msgid "Countdown Method"
1988
  msgstr ""
1989
 
1990
- #: app/features/events.php:730 app/features/fes/form.php:361
1991
  msgid "Count to Event Start"
1992
  msgstr ""
1993
 
1994
- #: app/features/events.php:731 app/features/fes/form.php:362
1995
  msgid "Count to Event End"
1996
  msgstr ""
1997
 
1998
- #: app/features/events.php:737 app/features/fes/form.php:369
1999
  #: app/modules/weather/darksky.php:57
2000
  msgid "Visibility"
2001
  msgstr ""
2002
 
2003
- #: app/features/events.php:740 app/features/fes/form.php:372
2004
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2005
  msgid "Event Visibility"
2006
  msgstr ""
2007
 
2008
- #: app/features/events.php:741 app/features/fes/form.php:373
2009
  msgid "Show on Shortcodes"
2010
  msgstr ""
2011
 
2012
- #: app/features/events.php:742 app/features/fes/form.php:374
2013
  msgid "Hide on Shortcodes"
2014
  msgstr ""
2015
 
2016
- #: app/features/events.php:749 app/features/fes/form.php:382
2017
  msgid "Repeating"
2018
  msgstr ""
2019
 
@@ -2021,63 +2026,68 @@ msgstr ""
2021
  msgid "Event Repeating (Recurring events)"
2022
  msgstr ""
2023
 
2024
- #: app/features/events.php:762 app/features/fes/form.php:388
2025
  msgid "Repeats"
2026
  msgstr ""
2027
 
2028
- #: app/features/events.php:770 app/features/fes/form.php:390
2029
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2030
  #: app/skins/full_calendar/tpl.php:140
2031
  msgid "Daily"
2032
  msgstr ""
2033
 
2034
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2035
  msgid "Every Weekday"
2036
  msgstr ""
2037
 
2038
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2039
  msgid "Every Weekend"
2040
  msgstr ""
2041
 
2042
- #: app/features/events.php:791 app/features/fes/form.php:393
2043
  msgid "Certain Weekdays"
2044
  msgstr ""
2045
 
2046
- #: app/features/events.php:798 app/features/fes/form.php:394
2047
- #: app/skins/default_full_calendar/tpl.php:78
2048
  #: app/skins/full_calendar/tpl.php:139
2049
  msgid "Weekly"
2050
  msgstr ""
2051
 
2052
- #: app/features/events.php:805 app/features/fes/form.php:395
2053
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2054
  #: app/skins/full_calendar/tpl.php:138
2055
  msgid "Monthly"
2056
  msgstr ""
2057
 
2058
- #: app/features/events.php:812 app/features/fes/form.php:396
2059
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2060
  #: app/skins/full_calendar/tpl.php:137
2061
  msgid "Yearly"
2062
  msgstr ""
2063
 
2064
- #: app/features/events.php:819 app/features/fes/form.php:397
2065
  msgid "Custom Days"
2066
  msgstr ""
2067
 
2068
- #: app/features/events.php:826 app/features/fes/form.php:398
2069
  msgid "Advanced"
2070
  msgstr ""
2071
 
2072
- #: app/features/events.php:831 app/features/fes/form.php:402
2073
  msgid "Repeat Interval"
2074
  msgstr ""
2075
 
2076
- #: app/features/events.php:833 app/features/fes/form.php:403
2077
  msgid "Repeat interval"
2078
  msgstr ""
2079
 
2080
- #: app/features/events.php:837 app/features/fes/form.php:406
2081
  msgid "Week Days"
2082
  msgstr ""
2083
 
@@ -2089,7 +2099,7 @@ msgstr ""
2089
 
2090
  #: app/features/events.php:860 app/features/events.php:2101
2091
  #: app/features/events.php:2129 app/features/events.php:2343
2092
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2093
  #: app/features/ix/import_g_calendar.php:51
2094
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2095
  #: app/libraries/skins.php:1389
@@ -2100,17 +2110,17 @@ msgstr ""
2100
  #: app/features/events.php:2085 app/features/events.php:2167
2101
  #: app/features/events.php:2332 app/features/events.php:2376
2102
  #: app/features/events.php:2449 app/features/events.php:2566
2103
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2104
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2105
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2106
  msgid "Add"
2107
  msgstr ""
2108
 
2109
- #: app/features/events.php:877 app/features/fes/form.php:454
2110
  msgid "Custom Days Repeating"
2111
  msgstr ""
2112
 
2113
- #: app/features/events.php:880 app/features/fes/form.php:457
2114
  msgid ""
2115
  "Add certain days to event occurrence dates. If you have a single day event, "
2116
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2119,44 +2129,44 @@ msgstr ""
2119
 
2120
  #: app/features/events.php:891 app/features/events.php:2105
2121
  #: app/features/events.php:2133 app/features/events.php:2347
2122
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2123
  msgid "End"
2124
  msgstr ""
2125
 
2126
- #: app/features/events.php:968 app/features/fes/form.php:530
2127
  msgid "First"
2128
  msgstr ""
2129
 
2130
- #: app/features/events.php:1010 app/features/fes/form.php:572
2131
  msgid "Second"
2132
  msgstr ""
2133
 
2134
- #: app/features/events.php:1052 app/features/fes/form.php:614
2135
  msgid "Third"
2136
  msgstr ""
2137
 
2138
- #: app/features/events.php:1094 app/features/fes/form.php:656
2139
  msgid "Fourth"
2140
  msgstr ""
2141
 
2142
- #: app/features/events.php:1136 app/features/fes/form.php:698
2143
  msgid "Last"
2144
  msgstr ""
2145
 
2146
- #: app/features/events.php:1183 app/features/fes/form.php:744
2147
  msgid "Ends Repeat"
2148
  msgstr ""
2149
 
2150
- #: app/features/events.php:1195 app/features/fes/form.php:748
2151
  msgid "Never"
2152
  msgstr ""
2153
 
2154
- #: app/features/events.php:1207 app/features/fes/form.php:753
2155
  msgid "On"
2156
  msgstr ""
2157
 
2158
  #: app/features/events.php:1227 app/features/events.php:1231
2159
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2160
  msgid "Occurrences times"
2161
  msgstr ""
2162
 
@@ -2166,12 +2176,12 @@ msgid ""
2166
  "10, the event will finish after 10 occurrences."
2167
  msgstr ""
2168
 
2169
- #: app/features/events.php:1248 app/features/fes/form.php:779
2170
  msgid "Show only one occurrence of this event"
2171
  msgstr ""
2172
 
2173
- #: app/features/events.php:1277 app/features/events.php:4193
2174
- #: app/features/fes/form.php:865
2175
  #: app/features/mec/meta_boxes/search_form.php:116
2176
  #: app/features/mec/meta_boxes/search_form.php:204
2177
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2195,69 +2205,69 @@ msgstr ""
2195
  #: app/features/mec/notifications.php:1511
2196
  #: app/features/mec/notifications.php:1628
2197
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2198
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2199
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2200
  #: app/widgets/single.php:122
2201
  msgid "Event Cost"
2202
  msgstr ""
2203
 
2204
- #: app/features/events.php:1292 app/features/fes/form.php:877
2205
  msgid "Show the minimum price based on tickets"
2206
  msgstr ""
2207
 
2208
- #: app/features/events.php:1300 app/features/fes/form.php:885
2209
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2210
  #: app/libraries/main.php:646
2211
  msgid "Currency"
2212
  msgstr ""
2213
 
2214
  #: app/features/events.php:1310 app/features/events.php:1315
2215
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2216
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2217
  msgid "Currency Sign"
2218
  msgstr ""
2219
 
2220
- #: app/features/events.php:1316 app/features/fes/form.php:901
2221
  #: app/features/mec/settings.php:600
2222
  msgid "Default value will be \"currency\" if you leave it empty."
2223
  msgstr ""
2224
 
2225
- #: app/features/events.php:1323 app/features/fes/form.php:908
2226
  #: app/features/mec/settings.php:607
2227
  msgid "Currency Position"
2228
  msgstr ""
2229
 
2230
- #: app/features/events.php:1326 app/features/fes/form.php:911
2231
  #: app/features/mec/settings.php:610
2232
  msgid "$10 (Before)"
2233
  msgstr ""
2234
 
2235
- #: app/features/events.php:1327 app/features/fes/form.php:912
2236
  #: app/features/mec/settings.php:611
2237
  msgid "$ 10 (Before with Space)"
2238
  msgstr ""
2239
 
2240
- #: app/features/events.php:1328 app/features/fes/form.php:913
2241
  #: app/features/mec/settings.php:612
2242
  msgid "10$ (After)"
2243
  msgstr ""
2244
 
2245
- #: app/features/events.php:1329 app/features/fes/form.php:914
2246
  #: app/features/mec/settings.php:613
2247
  msgid "10 $ (After with Space)"
2248
  msgstr ""
2249
 
2250
- #: app/features/events.php:1334 app/features/fes/form.php:919
2251
  #: app/features/mec/settings.php:618
2252
  msgid "Thousand Separator"
2253
  msgstr ""
2254
 
2255
- #: app/features/events.php:1340 app/features/fes/form.php:925
2256
  #: app/features/mec/settings.php:624
2257
  msgid "Decimal Separator"
2258
  msgstr ""
2259
 
2260
- #: app/features/events.php:1350 app/features/fes/form.php:935
2261
  #: app/features/mec/settings.php:634
2262
  msgid "No decimal"
2263
  msgstr ""
@@ -2281,21 +2291,21 @@ msgstr ""
2281
  msgid "Day 1"
2282
  msgstr ""
2283
 
2284
- #: app/features/events.php:1498 app/features/fes/form.php:829
2285
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2286
  msgid "Event Links"
2287
  msgstr ""
2288
 
2289
  #: app/features/events.php:1501 app/features/events.php:1509
2290
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2291
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2292
  #: app/libraries/main.php:7649
2293
  msgid "Event Link"
2294
  msgstr ""
2295
 
2296
  #: app/features/events.php:1504 app/features/events.php:1522
2297
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2298
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2299
  msgid "eg. http://yoursite.com/your-event"
2300
  msgstr ""
2301
 
@@ -2310,24 +2320,24 @@ msgstr ""
2310
  msgid "URL Shortener"
2311
  msgstr ""
2312
 
2313
- #: app/features/events.php:1525 app/features/fes/form.php:838
2314
- #: app/features/occurrences.php:527
2315
  msgid "More Information"
2316
  msgstr ""
2317
 
2318
- #: app/features/events.php:1527 app/features/fes/form.php:840
2319
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2320
  #: app/features/popup/shortcode.php:481
2321
  msgid "Current Window"
2322
  msgstr ""
2323
 
2324
- #: app/features/events.php:1528 app/features/fes/form.php:841
2325
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2326
  #: app/features/popup/shortcode.php:485
2327
  msgid "New Window"
2328
  msgstr ""
2329
 
2330
- #: app/features/events.php:1533 app/features/fes/form.php:843
2331
  msgid ""
2332
  "If you fill it, it will be shown in event details page as an optional link. "
2333
  "Insert full link including http(s)://"
@@ -2673,9 +2683,9 @@ msgid "Ticket ID"
2673
  msgstr ""
2674
 
2675
  #: app/features/events.php:1944 app/features/events.php:2211
2676
- #: app/features/events.php:4180 app/features/fes.php:280
2677
  #: app/features/labels.php:183 app/features/locations.php:266
2678
- #: app/features/organizers.php:207 app/features/speakers.php:285
2679
  msgid "ID"
2680
  msgstr ""
2681
 
@@ -2684,12 +2694,12 @@ msgid "Ticket Name"
2684
  msgstr ""
2685
 
2686
  #: app/features/events.php:1956 app/features/events.php:2219
2687
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2688
  msgid "Start Time"
2689
  msgstr ""
2690
 
2691
  #: app/features/events.php:1970 app/features/events.php:2233
2692
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2693
  msgid "End Time"
2694
  msgstr ""
2695
 
@@ -2709,7 +2719,7 @@ msgstr ""
2709
  #: app/features/events.php:2007 app/features/events.php:2011
2710
  #: app/features/events.php:2109 app/features/events.php:2136
2711
  #: app/features/events.php:2265 app/features/events.php:2268
2712
- #: app/features/events.php:2349 app/features/events.php:4739
2713
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2714
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2715
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -2855,7 +2865,7 @@ msgstr ""
2855
  msgid "Fixed Fields"
2856
  msgstr ""
2857
 
2858
- #: app/features/events.php:2887 app/features/events.php:4733
2859
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
2860
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
2861
  msgid "Attendees"
@@ -2881,7 +2891,7 @@ msgid "Expired Events"
2881
  msgstr ""
2882
 
2883
  #: app/features/events.php:3757 app/features/mec.php:1374
2884
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
2885
  msgid "Upcoming Events"
2886
  msgstr ""
2887
 
@@ -2936,15 +2946,15 @@ msgid "JSON Export"
2936
  msgstr ""
2937
 
2938
  #: app/features/events.php:4068 app/features/events.php:4069
2939
- #: app/features/events.php:4293
2940
  msgid "Duplicate"
2941
  msgstr ""
2942
 
2943
- #: app/features/events.php:4187
2944
  msgid "Link"
2945
  msgstr ""
2946
 
2947
- #: app/features/events.php:4189 app/features/locations.php:111
2948
  #: app/features/locations.php:181 app/features/locations.php:268
2949
  #: app/features/mec/meta_boxes/search_form.php:108
2950
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -2962,31 +2972,31 @@ msgstr ""
2962
  msgid "Address"
2963
  msgstr ""
2964
 
2965
- #: app/features/events.php:4191
2966
  #, php-format
2967
  msgid "%s Tel"
2968
  msgstr ""
2969
 
2970
- #: app/features/events.php:4192
2971
  #, php-format
2972
  msgid "%s Email"
2973
  msgstr ""
2974
 
2975
- #: app/features/events.php:4194 app/features/fes/form.php:951
2976
  #: app/features/mec/settings.php:876
2977
  msgid "Featured Image"
2978
  msgstr ""
2979
 
2980
- #: app/features/events.php:4197 app/features/fes/form.php:1044
2981
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
2982
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
2983
  msgid "Tags"
2984
  msgstr ""
2985
 
2986
- #: app/features/events.php:4201 app/features/fes/form.php:1066
2987
  #: app/features/mec.php:532 app/features/mec/modules.php:34
2988
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
2989
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
2990
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
2991
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
2992
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -2994,36 +3004,36 @@ msgstr ""
2994
  msgid "Speakers"
2995
  msgstr ""
2996
 
2997
- #: app/features/events.php:4446 app/features/fes.php:280
2998
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
2999
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3000
  #: app/libraries/main.php:7592
3001
  msgid "Ticket"
3002
  msgstr ""
3003
 
3004
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3005
  msgid "Variations"
3006
  msgstr ""
3007
 
3008
- #: app/features/events.php:4464 app/features/fes.php:356
3009
  msgid "Unknown"
3010
  msgstr ""
3011
 
3012
- #: app/features/events.php:4492
3013
  msgid ""
3014
  "If you want to send an email, first select your attendees and then click in "
3015
  "the button below, please."
3016
  msgstr ""
3017
 
3018
- #: app/features/events.php:4492 app/features/mec/report.php:57
3019
  msgid "Send Email"
3020
  msgstr ""
3021
 
3022
- #: app/features/events.php:4496
3023
  msgid "No Attendees Found!"
3024
  msgstr ""
3025
 
3026
- #: app/features/events.php:4797
3027
  msgid "No Bookings Found!"
3028
  msgstr ""
3029
 
@@ -3143,126 +3153,126 @@ msgstr ""
3143
  msgid "The event published."
3144
  msgstr ""
3145
 
3146
- #: app/features/fes/form.php:178
3147
  msgid "Go back to events list"
3148
  msgstr ""
3149
 
3150
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3151
  #: app/features/mec/settings.php:1171
3152
  msgid "Excerpt"
3153
  msgstr ""
3154
 
3155
- #: app/features/fes/form.php:271
3156
  msgid "Optional Event Excerpt"
3157
  msgstr ""
3158
 
3159
- #: app/features/fes/form.php:278
3160
  msgid ""
3161
  "This event is imported from Google calendar so if you modify it would "
3162
  "overwrite in the next import from Google."
3163
  msgstr ""
3164
 
3165
- #: app/features/fes/form.php:407
3166
  #: app/features/mec/meta_boxes/display_options.php:1494
3167
  #: app/libraries/main.php:476
3168
  msgid "Monday"
3169
  msgstr ""
3170
 
3171
- #: app/features/fes/form.php:408
3172
  #: app/features/mec/meta_boxes/display_options.php:1495
3173
  #: app/libraries/main.php:476
3174
  msgid "Tuesday"
3175
  msgstr ""
3176
 
3177
- #: app/features/fes/form.php:409
3178
  #: app/features/mec/meta_boxes/display_options.php:1496
3179
  #: app/libraries/main.php:476
3180
  msgid "Wednesday"
3181
  msgstr ""
3182
 
3183
- #: app/features/fes/form.php:410
3184
  #: app/features/mec/meta_boxes/display_options.php:1497
3185
  #: app/libraries/main.php:476
3186
  msgid "Thursday"
3187
  msgstr ""
3188
 
3189
- #: app/features/fes/form.php:411
3190
  #: app/features/mec/meta_boxes/display_options.php:1498
3191
  #: app/libraries/main.php:476
3192
  msgid "Friday"
3193
  msgstr ""
3194
 
3195
- #: app/features/fes/form.php:412
3196
  #: app/features/mec/meta_boxes/display_options.php:1499
3197
  #: app/libraries/main.php:476
3198
  msgid "Saturday"
3199
  msgstr ""
3200
 
3201
- #: app/features/fes/form.php:413
3202
  #: app/features/mec/meta_boxes/display_options.php:1493
3203
  #: app/libraries/main.php:476
3204
  msgid "Sunday"
3205
  msgstr ""
3206
 
3207
- #: app/features/fes/form.php:766
3208
  msgid ""
3209
  "The event will finish after certain repeats. For example if you set it to "
3210
  "10, the event will finish after 10 repeats."
3211
  msgstr ""
3212
 
3213
- #: app/features/fes/form.php:790
3214
  msgid "Note to reviewer"
3215
  msgstr ""
3216
 
3217
- #: app/features/fes/form.php:808
3218
  msgid "User Data"
3219
  msgstr ""
3220
 
3221
- #: app/features/fes/form.php:811
3222
  msgid "eg. yourname@gmail.com"
3223
  msgstr ""
3224
 
3225
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3226
- #: app/features/popup/event.php:185
3227
  msgid "eg. John Smith"
3228
  msgstr ""
3229
 
3230
- #: app/features/fes/form.php:833
3231
  msgid ""
3232
  "If you fill it, it will replace the default event page link. Insert full "
3233
  "link including http(s)://"
3234
  msgstr ""
3235
 
3236
- #: app/features/fes/form.php:956
3237
  msgid "Remove Image"
3238
  msgstr ""
3239
 
3240
- #: app/features/fes/form.php:1046
3241
  msgid "Insert your desired tags, comma separated."
3242
  msgstr ""
3243
 
3244
- #: app/features/fes/form.php:1068
3245
  msgid "Speakers Names"
3246
  msgstr ""
3247
 
3248
- #: app/features/fes/form.php:1069
3249
  msgid "Separate names with commas: Justin, Chris"
3250
  msgstr ""
3251
 
3252
- #: app/features/fes/form.php:1114
3253
  #, php-format
3254
  msgid "I accept the %s in order to submit an event."
3255
  msgstr ""
3256
 
3257
- #: app/features/fes/form.php:1114
3258
  msgid "Privacy Policy"
3259
  msgstr ""
3260
 
3261
- #: app/features/fes/form.php:1116
3262
  msgid "I accept the Privacy Policy in order to submit an event."
3263
  msgstr ""
3264
 
3265
- #: app/features/fes/form.php:1122
3266
  msgid "Submit Event"
3267
  msgstr ""
3268
 
@@ -3337,74 +3347,74 @@ msgstr ""
3337
  msgid "The events are imported successfully!"
3338
  msgstr ""
3339
 
3340
- #: app/features/ix.php:1301
3341
  msgid "Third Party plugin is not installed and activated!"
3342
  msgstr ""
3343
 
3344
- #: app/features/ix.php:1325
3345
  msgid "Third Party plugin is invalid!"
3346
  msgstr ""
3347
 
3348
- #: app/features/ix.php:3300 app/features/ix.php:3361
3349
  msgid "API key and Calendar ID are required!"
3350
  msgstr ""
3351
 
3352
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3353
  msgid "Please select events to import!"
3354
  msgstr ""
3355
 
3356
- #: app/features/ix.php:3794 app/features/ix.php:3857
3357
  msgid "API key and Group URL are required!"
3358
  msgstr ""
3359
 
3360
- #: app/features/ix.php:4096
3361
  msgid "Check at Meetup"
3362
  msgstr ""
3363
 
3364
- #: app/features/ix.php:4262
3365
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3366
  msgstr ""
3367
 
3368
- #: app/features/ix.php:4285
3369
  #, php-format
3370
  msgid "All seems good! Please click %s to authenticate your app."
3371
  msgstr ""
3372
 
3373
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3374
  #: app/features/mec/settings.php:1496
3375
  msgid "here"
3376
  msgstr ""
3377
 
3378
- #: app/features/ix.php:4340
3379
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3380
  msgstr ""
3381
 
3382
- #: app/features/ix.php:4502
3383
  #, php-format
3384
  msgid "%s events added to Google Calendar with success."
3385
  msgstr ""
3386
 
3387
- #: app/features/ix.php:4503
3388
  #, php-format
3389
  msgid "%s Updated previously added events."
3390
  msgstr ""
3391
 
3392
- #: app/features/ix.php:4504
3393
  #, php-format
3394
  msgid "%s events failed to add for following reasons: %s"
3395
  msgstr ""
3396
 
3397
- #: app/features/ix.php:4536
3398
  msgid "Please insert your Facebook page's link."
3399
  msgstr ""
3400
 
3401
- #: app/features/ix.php:4547 app/features/ix.php:4589
3402
  msgid ""
3403
  "We were not able to recognize your Facebook page. Please check again and "
3404
  "provide a valid link."
3405
  msgstr ""
3406
 
3407
- #: app/features/ix.php:4584
3408
  msgid "Please insert your facebook page's link."
3409
  msgstr ""
3410
 
@@ -3599,7 +3609,7 @@ msgstr ""
3599
  msgid "Add to Google Calendar"
3600
  msgstr ""
3601
 
3602
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3603
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3604
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3605
  #: app/features/mec/single.php:604
@@ -3709,7 +3719,7 @@ msgstr ""
3709
  msgid "Import all of your Facebook events into MEC."
3710
  msgstr ""
3711
 
3712
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
3713
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
3714
  msgid "Documentation"
3715
  msgstr ""
@@ -3981,14 +3991,14 @@ msgid ""
3981
  msgstr ""
3982
 
3983
  #: app/features/labels.php:79 app/features/locations.php:77
3984
- #: app/features/organizers.php:77 app/features/speakers.php:79
3985
  #: app/features/tag.php:77
3986
  #, php-format
3987
  msgid "← Back to %s"
3988
  msgstr ""
3989
 
3990
  #: app/features/labels.php:80 app/features/locations.php:78
3991
- #: app/features/organizers.php:78 app/features/speakers.php:80
3992
  #: app/features/tag.php:78
3993
  #, php-format
3994
  msgid "no %s found."
@@ -4029,7 +4039,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4029
  msgstr ""
4030
 
4031
  #: app/features/labels.php:186 app/features/locations.php:269
4032
- #: app/features/organizers.php:210 app/features/speakers.php:289
4033
  #: app/modules/booking/steps/tickets.php:172
4034
  msgid "Count"
4035
  msgstr ""
@@ -4045,7 +4055,7 @@ msgid "Event %s"
4045
  msgstr ""
4046
 
4047
  #: app/features/locations.php:59 app/features/mec.php:526
4048
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4049
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4050
  #: app/libraries/main.php:7623
4051
  msgid "Locations"
@@ -4056,7 +4066,7 @@ msgid "Enter the location address"
4056
  msgstr ""
4057
 
4058
  #: app/features/locations.php:131 app/features/locations.php:197
4059
- #: app/features/locations.php:374 app/features/popup/event.php:149
4060
  msgid "Latitude"
4061
  msgstr ""
4062
 
@@ -4065,7 +4075,7 @@ msgid "Geo latitude (Optional for Lite)"
4065
  msgstr ""
4066
 
4067
  #: app/features/locations.php:139 app/features/locations.php:201
4068
- #: app/features/locations.php:375 app/features/popup/event.php:150
4069
  msgid "Longitude"
4070
  msgstr ""
4071
 
@@ -4084,22 +4094,22 @@ msgstr ""
4084
 
4085
  #: app/features/locations.php:156 app/features/locations.php:210
4086
  #: app/features/organizers.php:128 app/features/organizers.php:161
4087
- #: app/features/speakers.php:176 app/features/speakers.php:229
4088
  msgid "Thumbnail"
4089
  msgstr ""
4090
 
4091
  #: app/features/locations.php:329 app/features/occurrences.php:460
4092
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4093
  #, php-format
4094
  msgid "Event Main %s"
4095
  msgstr ""
4096
 
4097
  #: app/features/locations.php:332 app/features/occurrences.php:464
4098
- #: app/features/popup/event.php:119
4099
  msgid "Hide location"
4100
  msgstr ""
4101
 
4102
- #: app/features/locations.php:333 app/features/popup/event.php:120
4103
  msgid "Insert a new location"
4104
  msgstr ""
4105
 
@@ -4107,28 +4117,28 @@ msgstr ""
4107
  msgid "Choose one of saved locations or insert new one below."
4108
  msgstr ""
4109
 
4110
- #: app/features/locations.php:348 app/features/popup/event.php:141
4111
  msgid "Location Name"
4112
  msgstr ""
4113
 
4114
- #: app/features/locations.php:349 app/features/popup/event.php:142
4115
  msgid "eg. City Hall"
4116
  msgstr ""
4117
 
4118
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4119
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4120
  msgid "Event Location"
4121
  msgstr ""
4122
 
4123
- #: app/features/locations.php:353 app/features/popup/event.php:146
4124
  msgid "eg. City hall, Manhattan, New York"
4125
  msgstr ""
4126
 
4127
- #: app/features/locations.php:378 app/features/popup/event.php:153
4128
  msgid "Latitude/Longitude"
4129
  msgstr ""
4130
 
4131
- #: app/features/locations.php:379 app/features/popup/event.php:154
4132
  msgid ""
4133
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4134
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4137,26 +4147,26 @@ msgid ""
4137
  "the location on the map to find lat long coordinates."
4138
  msgstr ""
4139
 
4140
- #: app/features/locations.php:379 app/features/popup/event.php:154
4141
  msgid "Get Latitude and Longitude"
4142
  msgstr ""
4143
 
4144
  #: app/features/locations.php:392 app/features/organizers.php:315
4145
- #: app/features/popup/event.php:204
4146
  msgid "Choose image"
4147
  msgstr ""
4148
 
4149
- #: app/features/locations.php:406 app/features/occurrences.php:480
4150
- #: app/features/popup/event.php:137
4151
  msgid "Don't show map in single event page"
4152
  msgstr ""
4153
 
4154
- #: app/features/locations.php:409 app/libraries/main.php:7607
4155
  #: app/libraries/main.php:7654
4156
  msgid "Other Locations"
4157
  msgstr ""
4158
 
4159
- #: app/features/locations.php:411
4160
  msgid ""
4161
  "You can select extra locations in addition to main location if you like."
4162
  msgstr ""
@@ -4222,7 +4232,7 @@ msgstr ""
4222
  msgid "Support"
4223
  msgstr ""
4224
 
4225
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4226
  #: app/features/mec/meta_boxes/filter.php:71
4227
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4228
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4230,7 +4240,7 @@ msgid "Organizers"
4230
  msgstr ""
4231
 
4232
  #: app/features/mec.php:536 app/features/mec.php:596
4233
- #: app/features/mec/dashboard.php:221
4234
  msgid "Shortcodes"
4235
  msgstr ""
4236
 
@@ -4418,7 +4428,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4418
  msgstr ""
4419
 
4420
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4421
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4422
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4423
  msgid "Version"
4424
  msgstr ""
@@ -4442,9 +4452,9 @@ msgid "Search..."
4442
  msgstr ""
4443
 
4444
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4445
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4446
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4447
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4448
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4449
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4450
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -4949,23 +4959,23 @@ msgstr ""
4949
  msgid "It applies only to the orders that are related to MEC."
4950
  msgstr ""
4951
 
4952
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
4953
  msgid "After Add to Cart"
4954
  msgstr ""
4955
 
4956
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
4957
  msgid "Redirect to Cart"
4958
  msgstr ""
4959
 
4960
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
4961
  msgid "Redirect to Checkout"
4962
  msgstr ""
4963
 
4964
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
4965
  msgid "Optional View Cart Button"
4966
  msgstr ""
4967
 
4968
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
4969
  msgid "Optional Checkout Button"
4970
  msgstr ""
4971
 
@@ -5017,63 +5027,67 @@ msgid ""
5017
  "(Stripe) got canceled."
5018
  msgstr ""
5019
 
5020
- #: app/features/mec/booking.php:1117
 
 
 
 
5021
  msgid "Use MEC Cart System"
5022
  msgstr ""
5023
 
5024
- #: app/features/mec/booking.php:1119
5025
  msgid ""
5026
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5027
  "adding a simple cart and checkout system to your website."
5028
  msgstr ""
5029
 
5030
- #: app/features/mec/booking.php:1121
5031
  msgid "You cannot use following MEC features while using MEC Cart."
5032
  msgstr ""
5033
 
5034
- #: app/features/mec/booking.php:1123
5035
  msgid "WooCommerce as Payment Gateway"
5036
  msgstr ""
5037
 
5038
- #: app/features/mec/booking.php:1124
5039
  msgid "Currency Per Event"
5040
  msgstr ""
5041
 
5042
- #: app/features/mec/booking.php:1125
5043
  msgid "Disable Gateways Per Event"
5044
  msgstr ""
5045
 
5046
- #: app/features/mec/booking.php:1126
5047
  msgid "Stripe Connect Gateway"
5048
  msgstr ""
5049
 
5050
- #: app/features/mec/booking.php:1127
5051
  msgid "Pay By WooCommerce Gateway"
5052
  msgstr ""
5053
 
5054
- #: app/features/mec/booking.php:1128
5055
  msgid "Organizer Payment Module"
5056
  msgstr ""
5057
 
5058
- #: app/features/mec/booking.php:1132
5059
  msgid "Cart Page"
5060
  msgstr ""
5061
 
5062
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5063
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5064
  #, php-format
5065
  msgid "Put %s shortcode into the page."
5066
  msgstr ""
5067
 
5068
- #: app/features/mec/booking.php:1144
5069
  msgid "Checkout Page"
5070
  msgstr ""
5071
 
5072
- #: app/features/mec/booking.php:1170
5073
  msgid "Enable Cart Invoice"
5074
  msgstr ""
5075
 
5076
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5077
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5078
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5079
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5081,7 +5095,7 @@ msgstr ""
5081
  msgid "Saved"
5082
  msgstr ""
5083
 
5084
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5085
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5086
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5087
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5089,7 +5103,7 @@ msgstr ""
5089
  msgid "Settings Saved!"
5090
  msgstr ""
5091
 
5092
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5093
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5094
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5095
  msgid "Please Refresh Page"
@@ -5105,12 +5119,7 @@ msgstr ""
5105
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5106
  msgstr ""
5107
 
5108
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5109
- msgctxt "plugin rate"
5110
- msgid "Rate the plugin ★★★★★"
5111
- msgstr ""
5112
-
5113
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5114
  #, php-format
5115
  msgid ""
5116
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5118,63 +5127,48 @@ msgid ""
5118
  "Spots, etc you should upgrade to the Pro version."
5119
  msgstr ""
5120
 
5121
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5122
  msgid "lite"
5123
  msgstr ""
5124
 
5125
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5126
  #: app/features/mec/support.php:126
5127
  msgid "GO PREMIUM"
5128
  msgstr ""
5129
 
5130
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5131
- #, php-format
5132
- msgid ""
5133
- "Easily get a discount coupon by rating us on %s or following and reposting "
5134
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5135
- msgstr ""
5136
-
5137
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5138
- msgid "WordPress"
5139
- msgstr ""
5140
-
5141
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5142
- msgid "Copouns!"
5143
- msgstr ""
5144
-
5145
- #: app/features/mec/dashboard.php:115
5146
  msgid "Getting started with Modern Events Calendar"
5147
  msgstr ""
5148
 
5149
- #: app/features/mec/dashboard.php:116
5150
  msgid ""
5151
  "In this short video, you can learn how to make an event and put a calendar "
5152
  "on your website. Please watch this 2 minutes video to the end."
5153
  msgstr ""
5154
 
5155
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5156
  msgid "License Activation"
5157
  msgstr ""
5158
 
5159
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5160
  msgid "Activate Addons"
5161
  msgstr ""
5162
 
5163
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5164
  msgid "You cannot access this section."
5165
  msgstr ""
5166
 
5167
- #: app/features/mec/dashboard.php:162
5168
  msgid ""
5169
  "In order to use all plugin features and options, please enter your purchase "
5170
  "code."
5171
  msgstr ""
5172
 
5173
- #: app/features/mec/dashboard.php:270
5174
  msgid "Popular Gateways"
5175
  msgstr ""
5176
 
5177
- #: app/features/mec/dashboard.php:328
5178
  msgid "Change Log"
5179
  msgstr ""
5180
 
@@ -6587,7 +6581,7 @@ msgstr ""
6587
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
6588
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
6589
  #: app/features/popup/settings.php:272 app/features/search.php:109
6590
- #: app/features/speakers.php:60 app/features/speakers.php:286
6591
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
6592
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
6593
  #: app/modules/speakers/details.php:18
@@ -7782,7 +7776,7 @@ msgstr ""
7782
  msgid "Please, insert comma to separate reminder hours."
7783
  msgstr ""
7784
 
7785
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
7786
  #: app/libraries/main.php:705
7787
  msgid "New Event"
7788
  msgstr ""
@@ -9667,13 +9661,13 @@ msgstr ""
9667
  msgid "Choose one of saved locations."
9668
  msgstr ""
9669
 
9670
- #: app/features/occurrences.php:491 app/features/organizers.php:280
9671
- #: app/features/popup/event.php:166
9672
  msgid "Hide organizer"
9673
  msgstr ""
9674
 
9675
- #: app/features/occurrences.php:499 app/features/organizers.php:289
9676
- #: app/features/popup/event.php:175
9677
  msgid "Choose one of saved organizers or insert new one below."
9678
  msgstr ""
9679
 
@@ -9686,7 +9680,7 @@ msgid "Insert organizer email address."
9686
  msgstr ""
9687
 
9688
  #: app/features/organizers.php:120 app/features/organizers.php:157
9689
- #: app/features/organizers.php:308 app/features/popup/event.php:198
9690
  msgid "Link to organizer page"
9691
  msgstr ""
9692
 
@@ -9698,27 +9692,27 @@ msgstr ""
9698
  msgid "Contact info"
9699
  msgstr ""
9700
 
9701
- #: app/features/organizers.php:281 app/features/popup/event.php:167
9702
  msgid "Insert a new organizer"
9703
  msgstr ""
9704
 
9705
- #: app/features/organizers.php:300 app/features/popup/event.php:188
9706
  msgid "Phone number."
9707
  msgstr ""
9708
 
9709
- #: app/features/organizers.php:301 app/features/popup/event.php:189
9710
  msgid "eg. +1 (234) 5678"
9711
  msgstr ""
9712
 
9713
- #: app/features/organizers.php:304 app/features/popup/event.php:193
9714
  msgid "Email address."
9715
  msgstr ""
9716
 
9717
- #: app/features/organizers.php:305 app/features/popup/event.php:194
9718
  msgid "eg. john@smith.com"
9719
  msgstr ""
9720
 
9721
- #: app/features/organizers.php:309 app/features/popup/event.php:199
9722
  msgid "eg. https://webnus.net"
9723
  msgstr ""
9724
 
@@ -9732,56 +9726,56 @@ msgid ""
9732
  "You can select extra organizers in addition to main organizer if you like."
9733
  msgstr ""
9734
 
9735
- #: app/features/popup/event.php:58
9736
  msgid "Adding an Event..."
9737
  msgstr ""
9738
 
9739
- #: app/features/popup/event.php:66
9740
  msgid "Event Name"
9741
  msgstr ""
9742
 
9743
- #: app/features/popup/event.php:67
9744
  msgid "Event name is required"
9745
  msgstr ""
9746
 
9747
- #: app/features/popup/event.php:128
9748
  msgid "Choose one of saved locations or insert new one."
9749
  msgstr ""
9750
 
9751
- #: app/features/popup/event.php:132
9752
  msgid "Add Location"
9753
  msgstr ""
9754
 
9755
- #: app/features/popup/event.php:179
9756
  msgid "Add Organizer"
9757
  msgstr ""
9758
 
9759
- #: app/features/popup/event.php:219
9760
  msgid "All Categories"
9761
  msgstr ""
9762
 
9763
- #: app/features/popup/event.php:220
9764
  msgid "Most Used"
9765
  msgstr ""
9766
 
9767
- #: app/features/popup/event.php:231
9768
  msgid "Add New Category"
9769
  msgstr ""
9770
 
9771
- #: app/features/popup/event.php:242
9772
  msgid "Set Featured Image"
9773
  msgstr ""
9774
 
9775
- #: app/features/popup/event.php:252
9776
  msgid "Your Event Has Been Created."
9777
  msgstr ""
9778
 
9779
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
9780
  #: app/features/popup/shortcode.php:553
9781
  msgid "Prev"
9782
  msgstr ""
9783
 
9784
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
9785
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
9786
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
9787
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -9951,68 +9945,68 @@ msgstr ""
9951
  msgid "No search result."
9952
  msgstr ""
9953
 
9954
- #: app/features/speakers.php:112 app/features/speakers.php:197
9955
- #: app/features/speakers.php:287
9956
  msgid "Job Title"
9957
  msgstr ""
9958
 
9959
- #: app/features/speakers.php:115 app/features/speakers.php:198
9960
  msgid "Insert speaker job title."
9961
  msgstr ""
9962
 
9963
- #: app/features/speakers.php:123 app/features/speakers.php:202
9964
  msgid "Insert speaker phone number."
9965
  msgstr ""
9966
 
9967
- #: app/features/speakers.php:131 app/features/speakers.php:206
9968
  msgid "Insert speaker email address."
9969
  msgstr ""
9970
 
9971
- #: app/features/speakers.php:139 app/features/speakers.php:210
9972
  msgid "Insert URL of Website"
9973
  msgstr ""
9974
 
9975
- #: app/features/speakers.php:144 app/features/speakers.php:213
9976
  msgid "Facebook Page"
9977
  msgstr ""
9978
 
9979
- #: app/features/speakers.php:147 app/features/speakers.php:214
9980
  msgid "Insert URL of Facebook Page"
9981
  msgstr ""
9982
 
9983
- #: app/features/speakers.php:152 app/features/speakers.php:217
9984
  msgid "Instagram"
9985
  msgstr ""
9986
 
9987
- #: app/features/speakers.php:155 app/features/speakers.php:218
9988
  msgid "Insert URL of Instagram"
9989
  msgstr ""
9990
 
9991
- #: app/features/speakers.php:160 app/features/speakers.php:221
9992
  msgid "LinkedIn"
9993
  msgstr ""
9994
 
9995
- #: app/features/speakers.php:163
9996
  msgid "Insert URL of LinkedIn"
9997
  msgstr ""
9998
 
9999
- #: app/features/speakers.php:168 app/features/speakers.php:225
10000
  msgid "Twitter Page"
10001
  msgstr ""
10002
 
10003
- #: app/features/speakers.php:171 app/features/speakers.php:226
10004
  msgid "Insert URL of Twitter Page"
10005
  msgstr ""
10006
 
10007
- #: app/features/speakers.php:222
10008
  msgid "Insert URL of linkedin"
10009
  msgstr ""
10010
 
10011
- #: app/features/speakers.php:347
10012
  msgid "Sorry, You must insert speaker name!"
10013
  msgstr ""
10014
 
10015
- #: app/features/speakers.php:396
10016
  msgid ""
10017
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
10018
  "section and speaker widget section!"
@@ -10095,69 +10089,69 @@ msgctxt "plugin link"
10095
  msgid "Upgrade to Pro Version"
10096
  msgstr ""
10097
 
10098
- #: app/libraries/factory.php:234
10099
  msgctxt "plugin link"
10100
  msgid "Settings"
10101
  msgstr ""
10102
 
10103
- #: app/libraries/factory.php:239
10104
  msgctxt "plugin link"
10105
  msgid "Upgrade"
10106
  msgstr ""
10107
 
10108
- #: app/libraries/factory.php:393
10109
  msgid "day"
10110
  msgstr ""
10111
 
10112
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
10113
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
10114
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
10115
  msgid "days"
10116
  msgstr ""
10117
 
10118
- #: app/libraries/factory.php:395
10119
  msgid "hour"
10120
  msgstr ""
10121
 
10122
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
10123
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
10124
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
10125
  msgid "hours"
10126
  msgstr ""
10127
 
10128
- #: app/libraries/factory.php:397
10129
  msgid "minute"
10130
  msgstr ""
10131
 
10132
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
10133
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
10134
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
10135
  msgid "minutes"
10136
  msgstr ""
10137
 
10138
- #: app/libraries/factory.php:399
10139
  msgid "second"
10140
  msgstr ""
10141
 
10142
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
10143
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
10144
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
10145
  msgid "seconds"
10146
  msgstr ""
10147
 
10148
- #: app/libraries/factory.php:477
10149
  msgid "MEC Single Sidebar"
10150
  msgstr ""
10151
 
10152
- #: app/libraries/factory.php:478
10153
  msgid "Custom sidebar for single and modal page of MEC."
10154
  msgstr ""
10155
 
10156
- #: app/libraries/factory.php:1199
10157
  msgid "Notice:"
10158
  msgstr ""
10159
 
10160
- #: app/libraries/factory.php:1200
10161
  msgid "This update includes only bug fixes."
10162
  msgstr ""
10163
 
@@ -10306,10 +10300,6 @@ msgstr ""
10306
  msgid "%s Form"
10307
  msgstr ""
10308
 
10309
- #: app/libraries/main.php:689
10310
- msgid "MEC Cart"
10311
- msgstr ""
10312
-
10313
  #: app/libraries/main.php:726
10314
  msgid "Only For Bookers"
10315
  msgstr ""
@@ -10982,12 +10972,7 @@ msgstr ""
10982
  msgid "End at: %s - %s"
10983
  msgstr ""
10984
 
10985
- #: app/libraries/skins.php:1755
10986
- #, php-format
10987
- msgid "Every %s"
10988
- msgstr ""
10989
-
10990
- #: app/libraries/skins.php:1756
10991
  msgid "Repeating Event"
10992
  msgstr ""
10993
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:15+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
152
  msgstr ""
153
 
154
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
155
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
156
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
157
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
158
  #: app/features/mec/notifications.php:1922
186
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
187
  #: app/features/autoemails.php:60 app/features/events.php:606
188
  #: app/features/events.php:2650 app/features/events.php:2717
189
+ #: app/features/events.php:2806 app/features/events.php:4445
190
+ #: app/features/fes.php:280 app/features/fes/form.php:812
191
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
192
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
193
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
194
  #: app/features/organizers.php:112 app/features/organizers.php:153
195
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
196
+ #: app/features/speakers.php:211 app/libraries/main.php:653
197
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
198
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
199
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
343
  #: app/features/events.php:2808 app/features/mec/booking.php:800
344
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
345
  #: app/features/organizers.php:104 app/features/organizers.php:149
346
+ #: app/features/speakers.php:126 app/features/speakers.php:207
347
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
348
  msgid "Tel"
349
  msgstr ""
350
 
490
  msgid "Agreement"
491
  msgstr ""
492
 
493
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
494
+ #, php-format
495
+ msgid "I agree with %s"
496
+ msgstr ""
497
+
498
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
499
  #, php-format
500
  msgid "Instead of %s, the page title with a link will be show."
672
  #: app/features/events.php:1843 app/features/events.php:2014
673
  #: app/features/events.php:2029 app/features/events.php:2271
674
  #: app/features/events.php:2283 app/features/events.php:2476
675
+ #: app/features/events.php:2513 app/features/fes/form.php:460
676
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
677
  #: app/features/locations.php:341 app/features/mec/booking.php:113
678
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
679
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
750
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
751
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
752
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
753
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
754
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
755
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
756
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
757
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
758
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
906
 
907
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
908
  #: app/features/events.php:432 app/features/events.php:1283
909
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
910
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
911
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
912
  #: app/skins/single.php:1126 app/skins/single/default.php:213
913
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
978
  msgstr ""
979
 
980
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
981
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
982
  #: app/features/labels.php:61 app/features/labels.php:227
983
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
984
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1010
  msgstr ""
1011
 
1012
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1013
+ #: app/features/events.php:3876 app/features/events.php:4190
1014
  #: app/features/locations.php:58 app/features/locations.php:267
1015
  #: app/features/locations.php:329 app/features/locations.php:331
1016
  #: app/features/locations.php:340
1030
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1031
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1032
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1033
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1034
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1035
  #: app/features/search.php:97 app/libraries/main.php:3020
1036
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1044
 
1045
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1046
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1047
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1048
  #: app/skins/single.php:1406 app/skins/single.php:1473
1049
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1050
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1067
 
1068
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1069
  #: app/features/events.php:1519 app/features/events.php:1532
1070
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1071
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1072
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1073
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1112
 
1113
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1114
  #: app/features/events.php:431 app/features/events.php:3877
1115
+ #: app/features/events.php:4192 app/features/events.php:4193
1116
+ #: app/features/events.php:4194
1117
  #: app/features/mec/meta_boxes/display_options.php:1660
1118
  #: app/features/mec/meta_boxes/search_form.php:80
1119
  #: app/features/mec/meta_boxes/search_form.php:168
1128
  #: app/features/mec/meta_boxes/search_form.php:983
1129
  #: app/features/mec/meta_boxes/search_form.php:1070
1130
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1131
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1132
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1133
  #: app/features/organizers.php:58 app/features/organizers.php:208
1134
  #: app/features/organizers.php:277 app/features/organizers.php:279
1135
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1136
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1137
  #: app/features/popup/settings.php:263 app/features/search.php:103
1138
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1139
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1251
  #: app/features/booking/calendar_novel.php:145
1252
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1253
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1254
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1255
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1256
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1257
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1258
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1309
 
1310
  #: app/features/autoemails.php:74 app/features/events.php:230
1311
  #: app/features/labels.php:72 app/features/locations.php:70
1312
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1313
  #: app/features/tag.php:70
1314
  #, php-format
1315
  msgid "Edit %s"
1364
  msgid "Go to events page"
1365
  msgstr ""
1366
 
1367
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1368
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1369
  #: app/features/wc.php:91 app/libraries/main.php:3072
1370
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1435
  msgid "Back to Cart"
1436
  msgstr ""
1437
 
1438
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1439
  #: app/features/mec/settings.php:907
1440
  msgid "Event Color"
1441
  msgstr ""
1445
  msgstr ""
1446
 
1447
  #: app/features/contextual.php:55 app/features/mec.php:546
1448
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1449
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1450
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1451
  #: app/libraries/main.php:738
1452
  msgid "Settings"
1560
  msgstr ""
1561
 
1562
  #: app/features/contextual.php:166 app/features/events.php:1298
1563
+ #: app/features/fes/form.php:885
1564
  msgid "Currency Options"
1565
  msgstr ""
1566
 
1648
  msgstr ""
1649
 
1650
  #: app/features/dlfile.php:297 app/features/events.php:3874
1651
+ #: app/features/events.php:4183 app/features/events.php:4734
1652
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1653
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1654
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1655
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1658
  msgstr ""
1659
 
1660
  #: app/features/dlfile.php:301 app/features/events.php:1988
1661
+ #: app/features/events.php:2248 app/features/events.php:4184
1662
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1663
  #: app/libraries/hourlyschedule.php:152
1664
  msgid "Description"
1693
  msgstr ""
1694
 
1695
  #: app/features/emails/details.php:35 app/features/events.php:1223
1696
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1697
  msgid "After"
1698
  msgstr ""
1699
 
1702
  msgstr ""
1703
 
1704
  #: app/features/emails/details.php:40 app/features/events.php:192
1705
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1706
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1707
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1708
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1723
  msgid "Add Event"
1724
  msgstr ""
1725
 
1726
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1727
  msgid "Add New Event"
1728
  msgstr ""
1729
 
1730
+ #: app/features/events.php:196 app/features/ix.php:4614
1731
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1732
  #: app/skins/map/tpl.php:93
1733
  msgid "No events found!"
1738
  msgstr ""
1739
 
1740
  #: app/features/events.php:199 app/features/fes/list.php:100
1741
+ #: app/features/popup/event.php:259
1742
  msgid "View Event"
1743
  msgstr ""
1744
 
1747
  msgstr ""
1748
 
1749
  #: app/features/events.php:219 app/features/events.php:3831
1750
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1751
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1752
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1753
  #: app/libraries/main.php:7619
1756
 
1757
  #: app/features/events.php:229 app/features/labels.php:71
1758
  #: app/features/locations.php:69 app/features/organizers.php:69
1759
+ #: app/features/speakers.php:77 app/features/tag.php:69
1760
  #, php-format
1761
  msgid "All %s"
1762
  msgstr ""
1763
 
1764
  #: app/features/events.php:231 app/features/labels.php:73
1765
  #: app/features/locations.php:71 app/features/organizers.php:71
1766
+ #: app/features/speakers.php:79 app/features/tag.php:71
1767
  #, php-format
1768
  msgid "View %s"
1769
  msgstr ""
1770
 
1771
  #: app/features/events.php:232 app/features/labels.php:74
1772
  #: app/features/locations.php:72 app/features/organizers.php:72
1773
+ #: app/features/speakers.php:80 app/features/tag.php:72
1774
  #, php-format
1775
  msgid "Update %s"
1776
  msgstr ""
1777
 
1778
  #: app/features/events.php:233 app/features/labels.php:75
1779
  #: app/features/locations.php:73 app/features/organizers.php:73
1780
+ #: app/features/speakers.php:81 app/features/tag.php:73
1781
  #, php-format
1782
  msgid "Add New %s"
1783
  msgstr ""
1784
 
1785
  #: app/features/events.php:234 app/features/labels.php:76
1786
  #: app/features/locations.php:74 app/features/organizers.php:74
1787
+ #: app/features/speakers.php:82 app/features/tag.php:74
1788
  #, php-format
1789
  msgid "New %s Name"
1790
  msgstr ""
1791
 
1792
  #: app/features/events.php:235 app/features/labels.php:77
1793
  #: app/features/locations.php:75 app/features/organizers.php:75
1794
+ #: app/features/speakers.php:83 app/features/tag.php:75
1795
  #, php-format
1796
  msgid "Popular %s"
1797
  msgstr ""
1798
 
1799
  #: app/features/events.php:236 app/features/labels.php:78
1800
  #: app/features/locations.php:76 app/features/organizers.php:76
1801
+ #: app/features/speakers.php:84 app/features/tag.php:76
1802
  #, php-format
1803
  msgid "Search %s"
1804
  msgstr ""
1828
  #: app/features/events.php:278 app/features/events.php:336
1829
  #: app/features/locations.php:161 app/features/locations.php:213
1830
  #: app/features/organizers.php:133 app/features/organizers.php:164
1831
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1832
  msgid "Upload/Add image"
1833
  msgstr ""
1834
 
1837
  #: app/features/locations.php:393 app/features/locations.php:400
1838
  #: app/features/organizers.php:134 app/features/organizers.php:165
1839
  #: app/features/organizers.php:316 app/features/organizers.php:323
1840
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1841
  msgid "Remove image"
1842
  msgstr ""
1843
 
1853
  msgid "Date And Time"
1854
  msgstr ""
1855
 
1856
+ #: app/features/events.php:425 app/features/fes/form.php:386
1857
  msgid "Event Repeating"
1858
  msgstr ""
1859
 
1892
  msgstr ""
1893
 
1894
  #: app/features/events.php:605 app/features/events.php:2641
1895
+ #: app/features/events.php:4442 app/features/fes.php:280
1896
+ #: app/features/fes/form.php:816 app/features/labels.php:184
1897
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
1898
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
1899
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
1900
  msgid "Name"
1901
  msgstr ""
1906
  "overwrite in the next import from Google."
1907
  msgstr ""
1908
 
1909
+ #: app/features/events.php:619 app/features/fes/form.php:284
1910
  msgid "Date and Time"
1911
  msgstr ""
1912
 
1913
  #: app/features/events.php:622 app/features/events.php:626
1914
+ #: app/features/events.php:3878 app/features/events.php:4185
1915
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
1916
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
1917
  #: app/features/mec/meta_boxes/display_options.php:57
1918
  #: app/features/mec/meta_boxes/display_options.php:312
1930
  #: app/features/mec/meta_boxes/display_options.php:2347
1931
  #: app/features/mec/meta_boxes/display_options.php:2478
1932
  #: app/features/mec/meta_boxes/display_options.php:2584
1933
+ #: app/features/popup/event.php:79
1934
  msgid "Start Date"
1935
  msgstr ""
1936
 
1937
  #: app/features/events.php:642 app/features/events.php:646
1938
+ #: app/features/events.php:3879 app/features/events.php:4187
1939
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
1940
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
1941
  #: app/features/mec/meta_boxes/display_options.php:73
1942
  #: app/features/mec/meta_boxes/display_options.php:328
1945
  #: app/features/mec/meta_boxes/display_options.php:788
1946
  #: app/features/mec/meta_boxes/display_options.php:1618
1947
  #: app/features/mec/meta_boxes/display_options.php:2363
1948
+ #: app/features/popup/event.php:96
1949
  msgid "End Date"
1950
  msgstr ""
1951
 
1952
+ #: app/features/events.php:669 app/features/fes/form.php:326
1953
+ #: app/features/popup/event.php:113
1954
  msgid "All-day Event"
1955
  msgstr ""
1956
 
1957
+ #: app/features/events.php:679 app/features/fes/form.php:329
1958
  msgid "Hide Event Time"
1959
  msgstr ""
1960
 
1961
+ #: app/features/events.php:689 app/features/fes/form.php:332
1962
  msgid "Hide Event End Time"
1963
  msgstr ""
1964
 
1965
  #: app/features/events.php:694 app/features/events.php:698
1966
+ #: app/features/fes/form.php:336
1967
  msgid "Notes on the time"
1968
  msgstr ""
1969
 
1970
+ #: app/features/events.php:699 app/features/fes/form.php:337
1971
  msgid ""
1972
  "It shows next to event time on the Single Event Page. You can enter notes "
1973
  "such as timezone in this field."
1974
  msgstr ""
1975
 
1976
+ #: app/features/events.php:711 app/features/fes/form.php:344
1977
  msgid "Timezone"
1978
  msgstr ""
1979
 
1982
  #: app/features/events.php:1793 app/features/events.php:1813
1983
  #: app/features/events.php:1868 app/features/events.php:2438
1984
  #: app/features/events.php:2561 app/features/events.php:2672
1985
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
1986
  msgid "Inherit from global options"
1987
  msgstr ""
1988
 
1989
  #: app/features/events.php:725 app/features/events.php:728
1990
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
1991
  #: app/features/mec/settings.php:858
1992
  msgid "Countdown Method"
1993
  msgstr ""
1994
 
1995
+ #: app/features/events.php:730 app/features/fes/form.php:363
1996
  msgid "Count to Event Start"
1997
  msgstr ""
1998
 
1999
+ #: app/features/events.php:731 app/features/fes/form.php:364
2000
  msgid "Count to Event End"
2001
  msgstr ""
2002
 
2003
+ #: app/features/events.php:737 app/features/fes/form.php:371
2004
  #: app/modules/weather/darksky.php:57
2005
  msgid "Visibility"
2006
  msgstr ""
2007
 
2008
+ #: app/features/events.php:740 app/features/fes/form.php:374
2009
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2010
  msgid "Event Visibility"
2011
  msgstr ""
2012
 
2013
+ #: app/features/events.php:741 app/features/fes/form.php:375
2014
  msgid "Show on Shortcodes"
2015
  msgstr ""
2016
 
2017
+ #: app/features/events.php:742 app/features/fes/form.php:376
2018
  msgid "Hide on Shortcodes"
2019
  msgstr ""
2020
 
2021
+ #: app/features/events.php:749 app/features/fes/form.php:384
2022
  msgid "Repeating"
2023
  msgstr ""
2024
 
2026
  msgid "Event Repeating (Recurring events)"
2027
  msgstr ""
2028
 
2029
+ #: app/features/events.php:762 app/features/fes/form.php:390
2030
  msgid "Repeats"
2031
  msgstr ""
2032
 
2033
+ #: app/features/events.php:770 app/features/fes/form.php:392
2034
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2035
+ #: app/skins/default_full_calendar/tpl.php:79
2036
  #: app/skins/full_calendar/tpl.php:140
2037
  msgid "Daily"
2038
  msgstr ""
2039
 
2040
+ #: app/features/events.php:777 app/features/fes/form.php:393
2041
+ #: app/libraries/skins.php:1772
2042
  msgid "Every Weekday"
2043
  msgstr ""
2044
 
2045
+ #: app/features/events.php:784 app/features/fes/form.php:394
2046
+ #: app/libraries/skins.php:1769
2047
  msgid "Every Weekend"
2048
  msgstr ""
2049
 
2050
+ #: app/features/events.php:791 app/features/fes/form.php:395
2051
  msgid "Certain Weekdays"
2052
  msgstr ""
2053
 
2054
+ #: app/features/events.php:798 app/features/fes/form.php:396
2055
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2056
  #: app/skins/full_calendar/tpl.php:139
2057
  msgid "Weekly"
2058
  msgstr ""
2059
 
2060
+ #: app/features/events.php:805 app/features/fes/form.php:397
2061
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2062
+ #: app/skins/default_full_calendar/tpl.php:77
2063
  #: app/skins/full_calendar/tpl.php:138
2064
  msgid "Monthly"
2065
  msgstr ""
2066
 
2067
+ #: app/features/events.php:812 app/features/fes/form.php:398
2068
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2069
+ #: app/skins/default_full_calendar/tpl.php:76
2070
  #: app/skins/full_calendar/tpl.php:137
2071
  msgid "Yearly"
2072
  msgstr ""
2073
 
2074
+ #: app/features/events.php:819 app/features/fes/form.php:399
2075
  msgid "Custom Days"
2076
  msgstr ""
2077
 
2078
+ #: app/features/events.php:826 app/features/fes/form.php:400
2079
  msgid "Advanced"
2080
  msgstr ""
2081
 
2082
+ #: app/features/events.php:831 app/features/fes/form.php:404
2083
  msgid "Repeat Interval"
2084
  msgstr ""
2085
 
2086
+ #: app/features/events.php:833 app/features/fes/form.php:405
2087
  msgid "Repeat interval"
2088
  msgstr ""
2089
 
2090
+ #: app/features/events.php:837 app/features/fes/form.php:408
2091
  msgid "Week Days"
2092
  msgstr ""
2093
 
2099
 
2100
  #: app/features/events.php:860 app/features/events.php:2101
2101
  #: app/features/events.php:2129 app/features/events.php:2343
2102
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2103
  #: app/features/ix/import_g_calendar.php:51
2104
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2105
  #: app/libraries/skins.php:1389
2110
  #: app/features/events.php:2085 app/features/events.php:2167
2111
  #: app/features/events.php:2332 app/features/events.php:2376
2112
  #: app/features/events.php:2449 app/features/events.php:2566
2113
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2114
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2115
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2116
  msgid "Add"
2117
  msgstr ""
2118
 
2119
+ #: app/features/events.php:877 app/features/fes/form.php:456
2120
  msgid "Custom Days Repeating"
2121
  msgstr ""
2122
 
2123
+ #: app/features/events.php:880 app/features/fes/form.php:459
2124
  msgid ""
2125
  "Add certain days to event occurrence dates. If you have a single day event, "
2126
  "start and end dates should be the same, If you have a multiple day event, "
2129
 
2130
  #: app/features/events.php:891 app/features/events.php:2105
2131
  #: app/features/events.php:2133 app/features/events.php:2347
2132
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2133
  msgid "End"
2134
  msgstr ""
2135
 
2136
+ #: app/features/events.php:968 app/features/fes/form.php:532
2137
  msgid "First"
2138
  msgstr ""
2139
 
2140
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2141
  msgid "Second"
2142
  msgstr ""
2143
 
2144
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2145
  msgid "Third"
2146
  msgstr ""
2147
 
2148
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2149
  msgid "Fourth"
2150
  msgstr ""
2151
 
2152
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2153
  msgid "Last"
2154
  msgstr ""
2155
 
2156
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2157
  msgid "Ends Repeat"
2158
  msgstr ""
2159
 
2160
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2161
  msgid "Never"
2162
  msgstr ""
2163
 
2164
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2165
  msgid "On"
2166
  msgstr ""
2167
 
2168
  #: app/features/events.php:1227 app/features/events.php:1231
2169
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2170
  msgid "Occurrences times"
2171
  msgstr ""
2172
 
2176
  "10, the event will finish after 10 occurrences."
2177
  msgstr ""
2178
 
2179
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2180
  msgid "Show only one occurrence of this event"
2181
  msgstr ""
2182
 
2183
+ #: app/features/events.php:1277 app/features/events.php:4195
2184
+ #: app/features/fes/form.php:867
2185
  #: app/features/mec/meta_boxes/search_form.php:116
2186
  #: app/features/mec/meta_boxes/search_form.php:204
2187
  #: app/features/mec/meta_boxes/search_form.php:292
2205
  #: app/features/mec/notifications.php:1511
2206
  #: app/features/mec/notifications.php:1628
2207
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2208
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2209
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2210
  #: app/widgets/single.php:122
2211
  msgid "Event Cost"
2212
  msgstr ""
2213
 
2214
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2215
  msgid "Show the minimum price based on tickets"
2216
  msgstr ""
2217
 
2218
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2219
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2220
  #: app/libraries/main.php:646
2221
  msgid "Currency"
2222
  msgstr ""
2223
 
2224
  #: app/features/events.php:1310 app/features/events.php:1315
2225
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2226
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2227
  msgid "Currency Sign"
2228
  msgstr ""
2229
 
2230
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2231
  #: app/features/mec/settings.php:600
2232
  msgid "Default value will be \"currency\" if you leave it empty."
2233
  msgstr ""
2234
 
2235
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2236
  #: app/features/mec/settings.php:607
2237
  msgid "Currency Position"
2238
  msgstr ""
2239
 
2240
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2241
  #: app/features/mec/settings.php:610
2242
  msgid "$10 (Before)"
2243
  msgstr ""
2244
 
2245
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2246
  #: app/features/mec/settings.php:611
2247
  msgid "$ 10 (Before with Space)"
2248
  msgstr ""
2249
 
2250
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2251
  #: app/features/mec/settings.php:612
2252
  msgid "10$ (After)"
2253
  msgstr ""
2254
 
2255
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2256
  #: app/features/mec/settings.php:613
2257
  msgid "10 $ (After with Space)"
2258
  msgstr ""
2259
 
2260
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2261
  #: app/features/mec/settings.php:618
2262
  msgid "Thousand Separator"
2263
  msgstr ""
2264
 
2265
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2266
  #: app/features/mec/settings.php:624
2267
  msgid "Decimal Separator"
2268
  msgstr ""
2269
 
2270
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2271
  #: app/features/mec/settings.php:634
2272
  msgid "No decimal"
2273
  msgstr ""
2291
  msgid "Day 1"
2292
  msgstr ""
2293
 
2294
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2295
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2296
  msgid "Event Links"
2297
  msgstr ""
2298
 
2299
  #: app/features/events.php:1501 app/features/events.php:1509
2300
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2301
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2302
  #: app/libraries/main.php:7649
2303
  msgid "Event Link"
2304
  msgstr ""
2305
 
2306
  #: app/features/events.php:1504 app/features/events.php:1522
2307
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2308
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2309
  msgid "eg. http://yoursite.com/your-event"
2310
  msgstr ""
2311
 
2320
  msgid "URL Shortener"
2321
  msgstr ""
2322
 
2323
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2324
+ #: app/features/occurrences.php:530
2325
  msgid "More Information"
2326
  msgstr ""
2327
 
2328
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2329
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2330
  #: app/features/popup/shortcode.php:481
2331
  msgid "Current Window"
2332
  msgstr ""
2333
 
2334
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2335
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2336
  #: app/features/popup/shortcode.php:485
2337
  msgid "New Window"
2338
  msgstr ""
2339
 
2340
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2341
  msgid ""
2342
  "If you fill it, it will be shown in event details page as an optional link. "
2343
  "Insert full link including http(s)://"
2683
  msgstr ""
2684
 
2685
  #: app/features/events.php:1944 app/features/events.php:2211
2686
+ #: app/features/events.php:4182 app/features/fes.php:280
2687
  #: app/features/labels.php:183 app/features/locations.php:266
2688
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2689
  msgid "ID"
2690
  msgstr ""
2691
 
2694
  msgstr ""
2695
 
2696
  #: app/features/events.php:1956 app/features/events.php:2219
2697
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2698
  msgid "Start Time"
2699
  msgstr ""
2700
 
2701
  #: app/features/events.php:1970 app/features/events.php:2233
2702
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2703
  msgid "End Time"
2704
  msgstr ""
2705
 
2719
  #: app/features/events.php:2007 app/features/events.php:2011
2720
  #: app/features/events.php:2109 app/features/events.php:2136
2721
  #: app/features/events.php:2265 app/features/events.php:2268
2722
+ #: app/features/events.php:2349 app/features/events.php:4743
2723
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2724
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2725
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2865
  msgid "Fixed Fields"
2866
  msgstr ""
2867
 
2868
+ #: app/features/events.php:2887 app/features/events.php:4737
2869
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
2870
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
2871
  msgid "Attendees"
2891
  msgstr ""
2892
 
2893
  #: app/features/events.php:3757 app/features/mec.php:1374
2894
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
2895
  msgid "Upcoming Events"
2896
  msgstr ""
2897
 
2946
  msgstr ""
2947
 
2948
  #: app/features/events.php:4068 app/features/events.php:4069
2949
+ #: app/features/events.php:4295
2950
  msgid "Duplicate"
2951
  msgstr ""
2952
 
2953
+ #: app/features/events.php:4189
2954
  msgid "Link"
2955
  msgstr ""
2956
 
2957
+ #: app/features/events.php:4191 app/features/locations.php:111
2958
  #: app/features/locations.php:181 app/features/locations.php:268
2959
  #: app/features/mec/meta_boxes/search_form.php:108
2960
  #: app/features/mec/meta_boxes/search_form.php:196
2972
  msgid "Address"
2973
  msgstr ""
2974
 
2975
+ #: app/features/events.php:4193
2976
  #, php-format
2977
  msgid "%s Tel"
2978
  msgstr ""
2979
 
2980
+ #: app/features/events.php:4194
2981
  #, php-format
2982
  msgid "%s Email"
2983
  msgstr ""
2984
 
2985
+ #: app/features/events.php:4196 app/features/fes/form.php:953
2986
  #: app/features/mec/settings.php:876
2987
  msgid "Featured Image"
2988
  msgstr ""
2989
 
2990
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
2991
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
2992
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
2993
  msgid "Tags"
2994
  msgstr ""
2995
 
2996
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
2997
  #: app/features/mec.php:532 app/features/mec/modules.php:34
2998
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
2999
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3000
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3001
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3002
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3004
  msgid "Speakers"
3005
  msgstr ""
3006
 
3007
+ #: app/features/events.php:4448 app/features/fes.php:280
3008
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3009
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3010
  #: app/libraries/main.php:7592
3011
  msgid "Ticket"
3012
  msgstr ""
3013
 
3014
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3015
  msgid "Variations"
3016
  msgstr ""
3017
 
3018
+ #: app/features/events.php:4466 app/features/fes.php:356
3019
  msgid "Unknown"
3020
  msgstr ""
3021
 
3022
+ #: app/features/events.php:4494
3023
  msgid ""
3024
  "If you want to send an email, first select your attendees and then click in "
3025
  "the button below, please."
3026
  msgstr ""
3027
 
3028
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3029
  msgid "Send Email"
3030
  msgstr ""
3031
 
3032
+ #: app/features/events.php:4498
3033
  msgid "No Attendees Found!"
3034
  msgstr ""
3035
 
3036
+ #: app/features/events.php:4800
3037
  msgid "No Bookings Found!"
3038
  msgstr ""
3039
 
3153
  msgid "The event published."
3154
  msgstr ""
3155
 
3156
+ #: app/features/fes/form.php:180
3157
  msgid "Go back to events list"
3158
  msgstr ""
3159
 
3160
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3161
  #: app/features/mec/settings.php:1171
3162
  msgid "Excerpt"
3163
  msgstr ""
3164
 
3165
+ #: app/features/fes/form.php:273
3166
  msgid "Optional Event Excerpt"
3167
  msgstr ""
3168
 
3169
+ #: app/features/fes/form.php:280
3170
  msgid ""
3171
  "This event is imported from Google calendar so if you modify it would "
3172
  "overwrite in the next import from Google."
3173
  msgstr ""
3174
 
3175
+ #: app/features/fes/form.php:409
3176
  #: app/features/mec/meta_boxes/display_options.php:1494
3177
  #: app/libraries/main.php:476
3178
  msgid "Monday"
3179
  msgstr ""
3180
 
3181
+ #: app/features/fes/form.php:410
3182
  #: app/features/mec/meta_boxes/display_options.php:1495
3183
  #: app/libraries/main.php:476
3184
  msgid "Tuesday"
3185
  msgstr ""
3186
 
3187
+ #: app/features/fes/form.php:411
3188
  #: app/features/mec/meta_boxes/display_options.php:1496
3189
  #: app/libraries/main.php:476
3190
  msgid "Wednesday"
3191
  msgstr ""
3192
 
3193
+ #: app/features/fes/form.php:412
3194
  #: app/features/mec/meta_boxes/display_options.php:1497
3195
  #: app/libraries/main.php:476
3196
  msgid "Thursday"
3197
  msgstr ""
3198
 
3199
+ #: app/features/fes/form.php:413
3200
  #: app/features/mec/meta_boxes/display_options.php:1498
3201
  #: app/libraries/main.php:476
3202
  msgid "Friday"
3203
  msgstr ""
3204
 
3205
+ #: app/features/fes/form.php:414
3206
  #: app/features/mec/meta_boxes/display_options.php:1499
3207
  #: app/libraries/main.php:476
3208
  msgid "Saturday"
3209
  msgstr ""
3210
 
3211
+ #: app/features/fes/form.php:415
3212
  #: app/features/mec/meta_boxes/display_options.php:1493
3213
  #: app/libraries/main.php:476
3214
  msgid "Sunday"
3215
  msgstr ""
3216
 
3217
+ #: app/features/fes/form.php:768
3218
  msgid ""
3219
  "The event will finish after certain repeats. For example if you set it to "
3220
  "10, the event will finish after 10 repeats."
3221
  msgstr ""
3222
 
3223
+ #: app/features/fes/form.php:792
3224
  msgid "Note to reviewer"
3225
  msgstr ""
3226
 
3227
+ #: app/features/fes/form.php:810
3228
  msgid "User Data"
3229
  msgstr ""
3230
 
3231
+ #: app/features/fes/form.php:813
3232
  msgid "eg. yourname@gmail.com"
3233
  msgstr ""
3234
 
3235
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3236
+ #: app/features/popup/event.php:190
3237
  msgid "eg. John Smith"
3238
  msgstr ""
3239
 
3240
+ #: app/features/fes/form.php:835
3241
  msgid ""
3242
  "If you fill it, it will replace the default event page link. Insert full "
3243
  "link including http(s)://"
3244
  msgstr ""
3245
 
3246
+ #: app/features/fes/form.php:958
3247
  msgid "Remove Image"
3248
  msgstr ""
3249
 
3250
+ #: app/features/fes/form.php:1048
3251
  msgid "Insert your desired tags, comma separated."
3252
  msgstr ""
3253
 
3254
+ #: app/features/fes/form.php:1070
3255
  msgid "Speakers Names"
3256
  msgstr ""
3257
 
3258
+ #: app/features/fes/form.php:1071
3259
  msgid "Separate names with commas: Justin, Chris"
3260
  msgstr ""
3261
 
3262
+ #: app/features/fes/form.php:1116
3263
  #, php-format
3264
  msgid "I accept the %s in order to submit an event."
3265
  msgstr ""
3266
 
3267
+ #: app/features/fes/form.php:1116
3268
  msgid "Privacy Policy"
3269
  msgstr ""
3270
 
3271
+ #: app/features/fes/form.php:1118
3272
  msgid "I accept the Privacy Policy in order to submit an event."
3273
  msgstr ""
3274
 
3275
+ #: app/features/fes/form.php:1124
3276
  msgid "Submit Event"
3277
  msgstr ""
3278
 
3347
  msgid "The events are imported successfully!"
3348
  msgstr ""
3349
 
3350
+ #: app/features/ix.php:1342
3351
  msgid "Third Party plugin is not installed and activated!"
3352
  msgstr ""
3353
 
3354
+ #: app/features/ix.php:1366
3355
  msgid "Third Party plugin is invalid!"
3356
  msgstr ""
3357
 
3358
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3359
  msgid "API key and Calendar ID are required!"
3360
  msgstr ""
3361
 
3362
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3363
  msgid "Please select events to import!"
3364
  msgstr ""
3365
 
3366
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3367
  msgid "API key and Group URL are required!"
3368
  msgstr ""
3369
 
3370
+ #: app/features/ix.php:4137
3371
  msgid "Check at Meetup"
3372
  msgstr ""
3373
 
3374
+ #: app/features/ix.php:4303
3375
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3376
  msgstr ""
3377
 
3378
+ #: app/features/ix.php:4326
3379
  #, php-format
3380
  msgid "All seems good! Please click %s to authenticate your app."
3381
  msgstr ""
3382
 
3383
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3384
  #: app/features/mec/settings.php:1496
3385
  msgid "here"
3386
  msgstr ""
3387
 
3388
+ #: app/features/ix.php:4381
3389
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3390
  msgstr ""
3391
 
3392
+ #: app/features/ix.php:4543
3393
  #, php-format
3394
  msgid "%s events added to Google Calendar with success."
3395
  msgstr ""
3396
 
3397
+ #: app/features/ix.php:4544
3398
  #, php-format
3399
  msgid "%s Updated previously added events."
3400
  msgstr ""
3401
 
3402
+ #: app/features/ix.php:4545
3403
  #, php-format
3404
  msgid "%s events failed to add for following reasons: %s"
3405
  msgstr ""
3406
 
3407
+ #: app/features/ix.php:4577
3408
  msgid "Please insert your Facebook page's link."
3409
  msgstr ""
3410
 
3411
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3412
  msgid ""
3413
  "We were not able to recognize your Facebook page. Please check again and "
3414
  "provide a valid link."
3415
  msgstr ""
3416
 
3417
+ #: app/features/ix.php:4625
3418
  msgid "Please insert your facebook page's link."
3419
  msgstr ""
3420
 
3609
  msgid "Add to Google Calendar"
3610
  msgstr ""
3611
 
3612
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3613
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3614
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3615
  #: app/features/mec/single.php:604
3719
  msgid "Import all of your Facebook events into MEC."
3720
  msgstr ""
3721
 
3722
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
3723
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
3724
  msgid "Documentation"
3725
  msgstr ""
3991
  msgstr ""
3992
 
3993
  #: app/features/labels.php:79 app/features/locations.php:77
3994
+ #: app/features/organizers.php:77 app/features/speakers.php:85
3995
  #: app/features/tag.php:77
3996
  #, php-format
3997
  msgid "← Back to %s"
3998
  msgstr ""
3999
 
4000
  #: app/features/labels.php:80 app/features/locations.php:78
4001
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4002
  #: app/features/tag.php:78
4003
  #, php-format
4004
  msgid "no %s found."
4039
  msgstr ""
4040
 
4041
  #: app/features/labels.php:186 app/features/locations.php:269
4042
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4043
  #: app/modules/booking/steps/tickets.php:172
4044
  msgid "Count"
4045
  msgstr ""
4055
  msgstr ""
4056
 
4057
  #: app/features/locations.php:59 app/features/mec.php:526
4058
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4059
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4060
  #: app/libraries/main.php:7623
4061
  msgid "Locations"
4066
  msgstr ""
4067
 
4068
  #: app/features/locations.php:131 app/features/locations.php:197
4069
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4070
  msgid "Latitude"
4071
  msgstr ""
4072
 
4075
  msgstr ""
4076
 
4077
  #: app/features/locations.php:139 app/features/locations.php:201
4078
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4079
  msgid "Longitude"
4080
  msgstr ""
4081
 
4094
 
4095
  #: app/features/locations.php:156 app/features/locations.php:210
4096
  #: app/features/organizers.php:128 app/features/organizers.php:161
4097
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4098
  msgid "Thumbnail"
4099
  msgstr ""
4100
 
4101
  #: app/features/locations.php:329 app/features/occurrences.php:460
4102
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4103
  #, php-format
4104
  msgid "Event Main %s"
4105
  msgstr ""
4106
 
4107
  #: app/features/locations.php:332 app/features/occurrences.php:464
4108
+ #: app/features/popup/event.php:121
4109
  msgid "Hide location"
4110
  msgstr ""
4111
 
4112
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4113
  msgid "Insert a new location"
4114
  msgstr ""
4115
 
4117
  msgid "Choose one of saved locations or insert new one below."
4118
  msgstr ""
4119
 
4120
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4121
  msgid "Location Name"
4122
  msgstr ""
4123
 
4124
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4125
  msgid "eg. City Hall"
4126
  msgstr ""
4127
 
4128
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4129
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4130
  msgid "Event Location"
4131
  msgstr ""
4132
 
4133
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4134
  msgid "eg. City hall, Manhattan, New York"
4135
  msgstr ""
4136
 
4137
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4138
  msgid "Latitude/Longitude"
4139
  msgstr ""
4140
 
4141
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4142
  msgid ""
4143
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4144
  "to convert the location address to geopoint, Latitude and Longitude are the "
4147
  "the location on the map to find lat long coordinates."
4148
  msgstr ""
4149
 
4150
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4151
  msgid "Get Latitude and Longitude"
4152
  msgstr ""
4153
 
4154
  #: app/features/locations.php:392 app/features/organizers.php:315
4155
+ #: app/features/popup/event.php:209
4156
  msgid "Choose image"
4157
  msgstr ""
4158
 
4159
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4160
+ #: app/features/popup/event.php:140
4161
  msgid "Don't show map in single event page"
4162
  msgstr ""
4163
 
4164
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4165
  #: app/libraries/main.php:7654
4166
  msgid "Other Locations"
4167
  msgstr ""
4168
 
4169
+ #: app/features/locations.php:413
4170
  msgid ""
4171
  "You can select extra locations in addition to main location if you like."
4172
  msgstr ""
4232
  msgid "Support"
4233
  msgstr ""
4234
 
4235
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4236
  #: app/features/mec/meta_boxes/filter.php:71
4237
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4238
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4240
  msgstr ""
4241
 
4242
  #: app/features/mec.php:536 app/features/mec.php:596
4243
+ #: app/features/mec/dashboard.php:218
4244
  msgid "Shortcodes"
4245
  msgstr ""
4246
 
4428
  msgstr ""
4429
 
4430
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4431
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4432
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4433
  msgid "Version"
4434
  msgstr ""
4452
  msgstr ""
4453
 
4454
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4455
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4456
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4457
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4458
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4459
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4460
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
4959
  msgid "It applies only to the orders that are related to MEC."
4960
  msgstr ""
4961
 
4962
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
4963
  msgid "After Add to Cart"
4964
  msgstr ""
4965
 
4966
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
4967
  msgid "Redirect to Cart"
4968
  msgstr ""
4969
 
4970
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
4971
  msgid "Redirect to Checkout"
4972
  msgstr ""
4973
 
4974
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
4975
  msgid "Optional View Cart Button"
4976
  msgstr ""
4977
 
4978
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
4979
  msgid "Optional Checkout Button"
4980
  msgstr ""
4981
 
5027
  "(Stripe) got canceled."
5028
  msgstr ""
5029
 
5030
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5031
+ msgid "MEC Cart"
5032
+ msgstr ""
5033
+
5034
+ #: app/features/mec/booking.php:1118
5035
  msgid "Use MEC Cart System"
5036
  msgstr ""
5037
 
5038
+ #: app/features/mec/booking.php:1120
5039
  msgid ""
5040
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5041
  "adding a simple cart and checkout system to your website."
5042
  msgstr ""
5043
 
5044
+ #: app/features/mec/booking.php:1122
5045
  msgid "You cannot use following MEC features while using MEC Cart."
5046
  msgstr ""
5047
 
5048
+ #: app/features/mec/booking.php:1124
5049
  msgid "WooCommerce as Payment Gateway"
5050
  msgstr ""
5051
 
5052
+ #: app/features/mec/booking.php:1125
5053
  msgid "Currency Per Event"
5054
  msgstr ""
5055
 
5056
+ #: app/features/mec/booking.php:1126
5057
  msgid "Disable Gateways Per Event"
5058
  msgstr ""
5059
 
5060
+ #: app/features/mec/booking.php:1127
5061
  msgid "Stripe Connect Gateway"
5062
  msgstr ""
5063
 
5064
+ #: app/features/mec/booking.php:1128
5065
  msgid "Pay By WooCommerce Gateway"
5066
  msgstr ""
5067
 
5068
+ #: app/features/mec/booking.php:1129
5069
  msgid "Organizer Payment Module"
5070
  msgstr ""
5071
 
5072
+ #: app/features/mec/booking.php:1133
5073
  msgid "Cart Page"
5074
  msgstr ""
5075
 
5076
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5077
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5078
  #, php-format
5079
  msgid "Put %s shortcode into the page."
5080
  msgstr ""
5081
 
5082
+ #: app/features/mec/booking.php:1145
5083
  msgid "Checkout Page"
5084
  msgstr ""
5085
 
5086
+ #: app/features/mec/booking.php:1171
5087
  msgid "Enable Cart Invoice"
5088
  msgstr ""
5089
 
5090
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5091
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5092
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5093
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5095
  msgid "Saved"
5096
  msgstr ""
5097
 
5098
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5099
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5100
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5101
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5103
  msgid "Settings Saved!"
5104
  msgstr ""
5105
 
5106
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5107
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5108
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5109
  msgid "Please Refresh Page"
5119
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5120
  msgstr ""
5121
 
5122
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5123
  #, php-format
5124
  msgid ""
5125
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5127
  "Spots, etc you should upgrade to the Pro version."
5128
  msgstr ""
5129
 
5130
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5131
  msgid "lite"
5132
  msgstr ""
5133
 
5134
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5135
  #: app/features/mec/support.php:126
5136
  msgid "GO PREMIUM"
5137
  msgstr ""
5138
 
5139
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5140
  msgid "Getting started with Modern Events Calendar"
5141
  msgstr ""
5142
 
5143
+ #: app/features/mec/dashboard.php:113
5144
  msgid ""
5145
  "In this short video, you can learn how to make an event and put a calendar "
5146
  "on your website. Please watch this 2 minutes video to the end."
5147
  msgstr ""
5148
 
5149
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5150
  msgid "License Activation"
5151
  msgstr ""
5152
 
5153
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5154
  msgid "Activate Addons"
5155
  msgstr ""
5156
 
5157
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5158
  msgid "You cannot access this section."
5159
  msgstr ""
5160
 
5161
+ #: app/features/mec/dashboard.php:159
5162
  msgid ""
5163
  "In order to use all plugin features and options, please enter your purchase "
5164
  "code."
5165
  msgstr ""
5166
 
5167
+ #: app/features/mec/dashboard.php:267
5168
  msgid "Popular Gateways"
5169
  msgstr ""
5170
 
5171
+ #: app/features/mec/dashboard.php:325
5172
  msgid "Change Log"
5173
  msgstr ""
5174
 
6581
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
6582
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
6583
  #: app/features/popup/settings.php:272 app/features/search.php:109
6584
+ #: app/features/speakers.php:66 app/features/speakers.php:292
6585
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
6586
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
6587
  #: app/modules/speakers/details.php:18
7776
  msgid "Please, insert comma to separate reminder hours."
7777
  msgstr ""
7778
 
7779
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
7780
  #: app/libraries/main.php:705
7781
  msgid "New Event"
7782
  msgstr ""
9661
  msgid "Choose one of saved locations."
9662
  msgstr ""
9663
 
9664
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
9665
+ #: app/features/popup/event.php:171
9666
  msgid "Hide organizer"
9667
  msgstr ""
9668
 
9669
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
9670
+ #: app/features/popup/event.php:180
9671
  msgid "Choose one of saved organizers or insert new one below."
9672
  msgstr ""
9673
 
9680
  msgstr ""
9681
 
9682
  #: app/features/organizers.php:120 app/features/organizers.php:157
9683
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
9684
  msgid "Link to organizer page"
9685
  msgstr ""
9686
 
9692
  msgid "Contact info"
9693
  msgstr ""
9694
 
9695
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
9696
  msgid "Insert a new organizer"
9697
  msgstr ""
9698
 
9699
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
9700
  msgid "Phone number."
9701
  msgstr ""
9702
 
9703
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
9704
  msgid "eg. +1 (234) 5678"
9705
  msgstr ""
9706
 
9707
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
9708
  msgid "Email address."
9709
  msgstr ""
9710
 
9711
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
9712
  msgid "eg. john@smith.com"
9713
  msgstr ""
9714
 
9715
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
9716
  msgid "eg. https://webnus.net"
9717
  msgstr ""
9718
 
9726
  "You can select extra organizers in addition to main organizer if you like."
9727
  msgstr ""
9728
 
9729
+ #: app/features/popup/event.php:60
9730
  msgid "Adding an Event..."
9731
  msgstr ""
9732
 
9733
+ #: app/features/popup/event.php:68
9734
  msgid "Event Name"
9735
  msgstr ""
9736
 
9737
+ #: app/features/popup/event.php:69
9738
  msgid "Event name is required"
9739
  msgstr ""
9740
 
9741
+ #: app/features/popup/event.php:130
9742
  msgid "Choose one of saved locations or insert new one."
9743
  msgstr ""
9744
 
9745
+ #: app/features/popup/event.php:134
9746
  msgid "Add Location"
9747
  msgstr ""
9748
 
9749
+ #: app/features/popup/event.php:184
9750
  msgid "Add Organizer"
9751
  msgstr ""
9752
 
9753
+ #: app/features/popup/event.php:224
9754
  msgid "All Categories"
9755
  msgstr ""
9756
 
9757
+ #: app/features/popup/event.php:225
9758
  msgid "Most Used"
9759
  msgstr ""
9760
 
9761
+ #: app/features/popup/event.php:236
9762
  msgid "Add New Category"
9763
  msgstr ""
9764
 
9765
+ #: app/features/popup/event.php:247
9766
  msgid "Set Featured Image"
9767
  msgstr ""
9768
 
9769
+ #: app/features/popup/event.php:257
9770
  msgid "Your Event Has Been Created."
9771
  msgstr ""
9772
 
9773
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
9774
  #: app/features/popup/shortcode.php:553
9775
  msgid "Prev"
9776
  msgstr ""
9777
 
9778
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
9779
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
9780
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
9781
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
9945
  msgid "No search result."
9946
  msgstr ""
9947
 
9948
+ #: app/features/speakers.php:118 app/features/speakers.php:203
9949
+ #: app/features/speakers.php:293
9950
  msgid "Job Title"
9951
  msgstr ""
9952
 
9953
+ #: app/features/speakers.php:121 app/features/speakers.php:204
9954
  msgid "Insert speaker job title."
9955
  msgstr ""
9956
 
9957
+ #: app/features/speakers.php:129 app/features/speakers.php:208
9958
  msgid "Insert speaker phone number."
9959
  msgstr ""
9960
 
9961
+ #: app/features/speakers.php:137 app/features/speakers.php:212
9962
  msgid "Insert speaker email address."
9963
  msgstr ""
9964
 
9965
+ #: app/features/speakers.php:145 app/features/speakers.php:216
9966
  msgid "Insert URL of Website"
9967
  msgstr ""
9968
 
9969
+ #: app/features/speakers.php:150 app/features/speakers.php:219
9970
  msgid "Facebook Page"
9971
  msgstr ""
9972
 
9973
+ #: app/features/speakers.php:153 app/features/speakers.php:220
9974
  msgid "Insert URL of Facebook Page"
9975
  msgstr ""
9976
 
9977
+ #: app/features/speakers.php:158 app/features/speakers.php:223
9978
  msgid "Instagram"
9979
  msgstr ""
9980
 
9981
+ #: app/features/speakers.php:161 app/features/speakers.php:224
9982
  msgid "Insert URL of Instagram"
9983
  msgstr ""
9984
 
9985
+ #: app/features/speakers.php:166 app/features/speakers.php:227
9986
  msgid "LinkedIn"
9987
  msgstr ""
9988
 
9989
+ #: app/features/speakers.php:169
9990
  msgid "Insert URL of LinkedIn"
9991
  msgstr ""
9992
 
9993
+ #: app/features/speakers.php:174 app/features/speakers.php:231
9994
  msgid "Twitter Page"
9995
  msgstr ""
9996
 
9997
+ #: app/features/speakers.php:177 app/features/speakers.php:232
9998
  msgid "Insert URL of Twitter Page"
9999
  msgstr ""
10000
 
10001
+ #: app/features/speakers.php:228
10002
  msgid "Insert URL of linkedin"
10003
  msgstr ""
10004
 
10005
+ #: app/features/speakers.php:353
10006
  msgid "Sorry, You must insert speaker name!"
10007
  msgstr ""
10008
 
10009
+ #: app/features/speakers.php:402
10010
  msgid ""
10011
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
10012
  "section and speaker widget section!"
10089
  msgid "Upgrade to Pro Version"
10090
  msgstr ""
10091
 
10092
+ #: app/libraries/factory.php:232
10093
  msgctxt "plugin link"
10094
  msgid "Settings"
10095
  msgstr ""
10096
 
10097
+ #: app/libraries/factory.php:237
10098
  msgctxt "plugin link"
10099
  msgid "Upgrade"
10100
  msgstr ""
10101
 
10102
+ #: app/libraries/factory.php:391
10103
  msgid "day"
10104
  msgstr ""
10105
 
10106
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
10107
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
10108
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
10109
  msgid "days"
10110
  msgstr ""
10111
 
10112
+ #: app/libraries/factory.php:393
10113
  msgid "hour"
10114
  msgstr ""
10115
 
10116
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
10117
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
10118
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
10119
  msgid "hours"
10120
  msgstr ""
10121
 
10122
+ #: app/libraries/factory.php:395
10123
  msgid "minute"
10124
  msgstr ""
10125
 
10126
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
10127
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
10128
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
10129
  msgid "minutes"
10130
  msgstr ""
10131
 
10132
+ #: app/libraries/factory.php:397
10133
  msgid "second"
10134
  msgstr ""
10135
 
10136
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
10137
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
10138
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
10139
  msgid "seconds"
10140
  msgstr ""
10141
 
10142
+ #: app/libraries/factory.php:475
10143
  msgid "MEC Single Sidebar"
10144
  msgstr ""
10145
 
10146
+ #: app/libraries/factory.php:476
10147
  msgid "Custom sidebar for single and modal page of MEC."
10148
  msgstr ""
10149
 
10150
+ #: app/libraries/factory.php:1197
10151
  msgid "Notice:"
10152
  msgstr ""
10153
 
10154
+ #: app/libraries/factory.php:1198
10155
  msgid "This update includes only bug fixes."
10156
  msgstr ""
10157
 
10300
  msgid "%s Form"
10301
  msgstr ""
10302
 
 
 
 
 
10303
  #: app/libraries/main.php:726
10304
  msgid "Only For Bookers"
10305
  msgstr ""
10972
  msgid "End at: %s - %s"
10973
  msgstr ""
10974
 
10975
+ #: app/libraries/skins.php:1777
 
 
 
 
 
10976
  msgid "Repeating Event"
10977
  msgstr ""
10978
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
8
- "PO-Revision-Date: 2022-02-23 13:29+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -168,7 +168,7 @@ msgid "Canceled"
168
  msgstr ""
169
 
170
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
171
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
172
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
173
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
174
  #: app/features/mec/notifications.php:1922
@@ -206,14 +206,14 @@ msgstr "Nombre de la entrada"
206
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
207
  #: app/features/autoemails.php:60 app/features/events.php:606
208
  #: app/features/events.php:2650 app/features/events.php:2717
209
- #: app/features/events.php:2806 app/features/events.php:4443
210
- #: app/features/fes.php:280 app/features/fes/form.php:810
211
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
212
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
213
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
214
  #: app/features/organizers.php:112 app/features/organizers.php:153
215
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
216
- #: app/features/speakers.php:205 app/libraries/main.php:653
217
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
218
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
219
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -373,8 +373,8 @@ msgstr "Fecha"
373
  #: app/features/events.php:2808 app/features/mec/booking.php:800
374
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
375
  #: app/features/organizers.php:104 app/features/organizers.php:149
376
- #: app/features/speakers.php:120 app/features/speakers.php:201
377
- #: app/features/speakers.php:288 app/libraries/main.php:4252
378
  msgid "Tel"
379
  msgstr "Tel"
380
 
@@ -520,6 +520,11 @@ msgstr ""
520
  msgid "Agreement"
521
  msgstr "Acuerdo"
522
 
 
 
 
 
 
523
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
524
  #, php-format
525
  msgid "Instead of %s, the page title with a link will be show."
@@ -697,8 +702,8 @@ msgstr "Inserta los correos separados por coma para múltiples destinatarios."
697
  #: app/features/events.php:1843 app/features/events.php:2014
698
  #: app/features/events.php:2029 app/features/events.php:2271
699
  #: app/features/events.php:2283 app/features/events.php:2476
700
- #: app/features/events.php:2513 app/features/fes/form.php:458
701
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
702
  #: app/features/locations.php:341 app/features/mec/booking.php:113
703
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
704
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -775,9 +780,9 @@ msgstr "Inserta los correos separados por coma para múltiples destinatarios."
775
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
776
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
777
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
778
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
779
- #: app/features/organizers.php:289 app/features/popup/event.php:128
780
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
781
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
782
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
783
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -941,8 +946,8 @@ msgstr ""
941
 
942
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
943
  #: app/features/events.php:432 app/features/events.php:1283
944
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
945
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
946
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
947
  #: app/skins/single.php:1126 app/skins/single/default.php:213
948
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1021,7 +1026,7 @@ msgid "How to set label"
1021
  msgstr ""
1022
 
1023
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1024
- #: app/features/events.php:4195 app/features/fes/form.php:998
1025
  #: app/features/labels.php:61 app/features/labels.php:227
1026
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1027
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1057,7 +1062,7 @@ msgid "How to set location"
1057
  msgstr "Ocultar lugar"
1058
 
1059
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1060
- #: app/features/events.php:3876 app/features/events.php:4188
1061
  #: app/features/locations.php:58 app/features/locations.php:267
1062
  #: app/features/locations.php:329 app/features/locations.php:331
1063
  #: app/features/locations.php:340
@@ -1077,7 +1082,7 @@ msgstr "Ocultar lugar"
1077
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1078
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1079
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1080
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1081
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1082
  #: app/features/search.php:97 app/libraries/main.php:3020
1083
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1091,7 +1096,7 @@ msgstr "Localización"
1091
 
1092
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1093
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1094
- #: app/features/speakers.php:136 app/features/speakers.php:209
1095
  #: app/skins/single.php:1406 app/skins/single.php:1473
1096
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1097
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1114,7 +1119,7 @@ msgstr ""
1114
 
1115
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1116
  #: app/features/events.php:1519 app/features/events.php:1532
1117
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1118
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1119
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1120
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1165,8 +1170,8 @@ msgstr "Ocultar organizador"
1165
 
1166
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1167
  #: app/features/events.php:431 app/features/events.php:3877
1168
- #: app/features/events.php:4190 app/features/events.php:4191
1169
- #: app/features/events.php:4192
1170
  #: app/features/mec/meta_boxes/display_options.php:1660
1171
  #: app/features/mec/meta_boxes/search_form.php:80
1172
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1181,12 +1186,12 @@ msgstr "Ocultar organizador"
1181
  #: app/features/mec/meta_boxes/search_form.php:983
1182
  #: app/features/mec/meta_boxes/search_form.php:1070
1183
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1184
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1185
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1186
  #: app/features/organizers.php:58 app/features/organizers.php:208
1187
  #: app/features/organizers.php:277 app/features/organizers.php:279
1188
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1189
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1190
  #: app/features/popup/settings.php:263 app/features/search.php:103
1191
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1192
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1312,8 +1317,8 @@ msgstr "Hora"
1312
  #: app/features/booking/calendar_novel.php:145
1313
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1314
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1315
- #: app/libraries/render.php:554 app/libraries/render.php:758
1316
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1317
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1318
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1319
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1379,7 +1384,7 @@ msgstr "No hay eventos"
1379
 
1380
  #: app/features/autoemails.php:74 app/features/events.php:230
1381
  #: app/features/labels.php:72 app/features/locations.php:70
1382
- #: app/features/organizers.php:70 app/features/speakers.php:72
1383
  #: app/features/tag.php:70
1384
  #, php-format
1385
  msgid "Edit %s"
@@ -1447,7 +1452,7 @@ msgstr "El valor predeterminado es 6"
1447
  msgid "Go to events page"
1448
  msgstr "Ver eventos en Google Maps"
1449
 
1450
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1451
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1452
  #: app/features/wc.php:91 app/libraries/main.php:3072
1453
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1529,7 +1534,7 @@ msgstr "Reserva"
1529
  msgid "Back to Cart"
1530
  msgstr "Regrese a la lista de eventos."
1531
 
1532
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1533
  #: app/features/mec/settings.php:907
1534
  msgid "Event Color"
1535
  msgstr "Color del evento"
@@ -1541,8 +1546,8 @@ msgid "Recent Colors"
1541
  msgstr "Color del evento"
1542
 
1543
  #: app/features/contextual.php:55 app/features/mec.php:546
1544
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1545
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1546
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1547
  #: app/libraries/main.php:738
1548
  msgid "Settings"
@@ -1695,7 +1700,7 @@ msgid "Event Details/Single Event Page"
1695
  msgstr "Detalles del Evento/Página de Evento Único"
1696
 
1697
  #: app/features/contextual.php:166 app/features/events.php:1298
1698
- #: app/features/fes/form.php:883
1699
  msgid "Currency Options"
1700
  msgstr "Opciones de moneda"
1701
 
@@ -1791,8 +1796,8 @@ msgid "Public File to Download"
1791
  msgstr ""
1792
 
1793
  #: app/features/dlfile.php:297 app/features/events.php:3874
1794
- #: app/features/events.php:4181 app/features/events.php:4730
1795
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1796
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1797
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1798
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1801,7 +1806,7 @@ msgid "Title"
1801
  msgstr "Titulo"
1802
 
1803
  #: app/features/dlfile.php:301 app/features/events.php:1988
1804
- #: app/features/events.php:2248 app/features/events.php:4182
1805
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1806
  #: app/libraries/hourlyschedule.php:152
1807
  msgid "Description"
@@ -1848,7 +1853,7 @@ msgid "Before"
1848
  msgstr "Menos de 10€"
1849
 
1850
  #: app/features/emails/details.php:35 app/features/events.php:1223
1851
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1852
  msgid "After"
1853
  msgstr "Después"
1854
 
@@ -1859,7 +1864,7 @@ msgid "event occurrence."
1859
  msgstr "Siguiente repetición"
1860
 
1861
  #: app/features/emails/details.php:40 app/features/events.php:192
1862
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1863
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1864
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1865
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1880,11 +1885,11 @@ msgstr ""
1880
  msgid "Add Event"
1881
  msgstr "Nuevo evento"
1882
 
1883
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1884
  msgid "Add New Event"
1885
  msgstr "Añadir nuevo evento"
1886
 
1887
- #: app/features/events.php:196 app/features/ix.php:4573
1888
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1889
  #: app/skins/map/tpl.php:93
1890
  msgid "No events found!"
@@ -1895,7 +1900,7 @@ msgid "Edit Event"
1895
  msgstr "Editar Evento"
1896
 
1897
  #: app/features/events.php:199 app/features/fes/list.php:100
1898
- #: app/features/popup/event.php:254
1899
  msgid "View Event"
1900
  msgstr "Ver evento"
1901
 
@@ -1904,7 +1909,7 @@ msgid "No events found in Trash!"
1904
  msgstr "No hay eventos en la papelera"
1905
 
1906
  #: app/features/events.php:219 app/features/events.php:3831
1907
- #: app/features/events.php:4196 app/features/fes/form.php:972
1908
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1909
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1910
  #: app/libraries/main.php:7619
@@ -1913,49 +1918,49 @@ msgstr "Categorías"
1913
 
1914
  #: app/features/events.php:229 app/features/labels.php:71
1915
  #: app/features/locations.php:69 app/features/organizers.php:69
1916
- #: app/features/speakers.php:71 app/features/tag.php:69
1917
  #, php-format
1918
  msgid "All %s"
1919
  msgstr "Todos %s"
1920
 
1921
  #: app/features/events.php:231 app/features/labels.php:73
1922
  #: app/features/locations.php:71 app/features/organizers.php:71
1923
- #: app/features/speakers.php:73 app/features/tag.php:71
1924
  #, php-format
1925
  msgid "View %s"
1926
  msgstr "Ver %s"
1927
 
1928
  #: app/features/events.php:232 app/features/labels.php:74
1929
  #: app/features/locations.php:72 app/features/organizers.php:72
1930
- #: app/features/speakers.php:74 app/features/tag.php:72
1931
  #, php-format
1932
  msgid "Update %s"
1933
  msgstr "Actualizar %s"
1934
 
1935
  #: app/features/events.php:233 app/features/labels.php:75
1936
  #: app/features/locations.php:73 app/features/organizers.php:73
1937
- #: app/features/speakers.php:75 app/features/tag.php:73
1938
  #, php-format
1939
  msgid "Add New %s"
1940
  msgstr "Añadir nuevo %s"
1941
 
1942
  #: app/features/events.php:234 app/features/labels.php:76
1943
  #: app/features/locations.php:74 app/features/organizers.php:74
1944
- #: app/features/speakers.php:76 app/features/tag.php:74
1945
  #, php-format
1946
  msgid "New %s Name"
1947
  msgstr "Nuevo %s Nombre"
1948
 
1949
  #: app/features/events.php:235 app/features/labels.php:77
1950
  #: app/features/locations.php:75 app/features/organizers.php:75
1951
- #: app/features/speakers.php:77 app/features/tag.php:75
1952
  #, php-format
1953
  msgid "Popular %s"
1954
  msgstr "Popular %s"
1955
 
1956
  #: app/features/events.php:236 app/features/labels.php:78
1957
  #: app/features/locations.php:76 app/features/organizers.php:76
1958
- #: app/features/speakers.php:78 app/features/tag.php:76
1959
  #, php-format
1960
  msgid "Search %s"
1961
  msgstr "Buscar %s"
@@ -1985,7 +1990,7 @@ msgstr ""
1985
  #: app/features/events.php:278 app/features/events.php:336
1986
  #: app/features/locations.php:161 app/features/locations.php:213
1987
  #: app/features/organizers.php:133 app/features/organizers.php:164
1988
- #: app/features/speakers.php:181 app/features/speakers.php:232
1989
  msgid "Upload/Add image"
1990
  msgstr "Subir/Añadir imagen"
1991
 
@@ -1994,7 +1999,7 @@ msgstr "Subir/Añadir imagen"
1994
  #: app/features/locations.php:393 app/features/locations.php:400
1995
  #: app/features/organizers.php:134 app/features/organizers.php:165
1996
  #: app/features/organizers.php:316 app/features/organizers.php:323
1997
- #: app/features/speakers.php:182 app/features/speakers.php:233
1998
  msgid "Remove image"
1999
  msgstr "Eliminar imagen"
2000
 
@@ -2014,7 +2019,7 @@ msgstr "Detalle de evento"
2014
  msgid "Date And Time"
2015
  msgstr "Día y hora"
2016
 
2017
- #: app/features/events.php:425 app/features/fes/form.php:384
2018
  msgid "Event Repeating"
2019
  msgstr "Repetir el evento"
2020
 
@@ -2061,10 +2066,10 @@ msgid "Guest Data"
2061
  msgstr "Datos del invitado"
2062
 
2063
  #: app/features/events.php:605 app/features/events.php:2641
2064
- #: app/features/events.php:4440 app/features/fes.php:280
2065
- #: app/features/fes/form.php:814 app/features/labels.php:184
2066
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2067
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2068
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2069
  msgid "Name"
2070
  msgstr "Nombre"
@@ -2075,13 +2080,13 @@ msgid ""
2075
  "overwrite in the next import from Google."
2076
  msgstr ""
2077
 
2078
- #: app/features/events.php:619 app/features/fes/form.php:282
2079
  msgid "Date and Time"
2080
  msgstr "Día y hora"
2081
 
2082
  #: app/features/events.php:622 app/features/events.php:626
2083
- #: app/features/events.php:3878 app/features/events.php:4183
2084
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2085
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2086
  #: app/features/mec/meta_boxes/display_options.php:57
2087
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2099,13 +2104,13 @@ msgstr "Día y hora"
2099
  #: app/features/mec/meta_boxes/display_options.php:2347
2100
  #: app/features/mec/meta_boxes/display_options.php:2478
2101
  #: app/features/mec/meta_boxes/display_options.php:2584
2102
- #: app/features/popup/event.php:77
2103
  msgid "Start Date"
2104
  msgstr "Día de inicio"
2105
 
2106
  #: app/features/events.php:642 app/features/events.php:646
2107
- #: app/features/events.php:3879 app/features/events.php:4185
2108
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2109
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2110
  #: app/features/mec/meta_boxes/display_options.php:73
2111
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2114,33 +2119,33 @@ msgstr "Día de inicio"
2114
  #: app/features/mec/meta_boxes/display_options.php:788
2115
  #: app/features/mec/meta_boxes/display_options.php:1618
2116
  #: app/features/mec/meta_boxes/display_options.php:2363
2117
- #: app/features/popup/event.php:94
2118
  msgid "End Date"
2119
  msgstr "Día final"
2120
 
2121
- #: app/features/events.php:669 app/features/fes/form.php:324
2122
- #: app/features/popup/event.php:111
2123
  #, fuzzy
2124
  #| msgid "All Day Event"
2125
  msgid "All-day Event"
2126
  msgstr "Evento de todo el día"
2127
 
2128
- #: app/features/events.php:679 app/features/fes/form.php:327
2129
  msgid "Hide Event Time"
2130
  msgstr "Ocultar hora del evento"
2131
 
2132
- #: app/features/events.php:689 app/features/fes/form.php:330
2133
  msgid "Hide Event End Time"
2134
  msgstr "Oculta la hora de finalización del evento"
2135
 
2136
  #: app/features/events.php:694 app/features/events.php:698
2137
- #: app/features/fes/form.php:334
2138
  #, fuzzy
2139
  #| msgid "Note to reviewer"
2140
  msgid "Notes on the time"
2141
  msgstr "Nota al revisor"
2142
 
2143
- #: app/features/events.php:699 app/features/fes/form.php:335
2144
  #, fuzzy
2145
  #| msgid ""
2146
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2152,7 +2157,7 @@ msgstr ""
2152
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
2153
  "horaria, etc en este campo."
2154
 
2155
- #: app/features/events.php:711 app/features/fes/form.php:342
2156
  #, fuzzy
2157
  #| msgid "Timezone: %s"
2158
  msgid "Timezone"
@@ -2163,55 +2168,55 @@ msgstr "Zona horaria: %s"
2163
  #: app/features/events.php:1793 app/features/events.php:1813
2164
  #: app/features/events.php:1868 app/features/events.php:2438
2165
  #: app/features/events.php:2561 app/features/events.php:2672
2166
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2167
  msgid "Inherit from global options"
2168
  msgstr "Heredar opciones globales"
2169
 
2170
  #: app/features/events.php:725 app/features/events.php:728
2171
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2172
  #: app/features/mec/settings.php:858
2173
  #, fuzzy
2174
  #| msgid "Countdown View"
2175
  msgid "Countdown Method"
2176
  msgstr "Vista de cuenta regresiva"
2177
 
2178
- #: app/features/events.php:730 app/features/fes/form.php:361
2179
  #, fuzzy
2180
  #| msgid "On Event Start"
2181
  msgid "Count to Event Start"
2182
  msgstr "En el inicio del evento"
2183
 
2184
- #: app/features/events.php:731 app/features/fes/form.php:362
2185
  #, fuzzy
2186
  #| msgid "On Event End"
2187
  msgid "Count to Event End"
2188
  msgstr "El fin del evento"
2189
 
2190
- #: app/features/events.php:737 app/features/fes/form.php:369
2191
  #: app/modules/weather/darksky.php:57
2192
  msgid "Visibility"
2193
  msgstr "Visibilidad"
2194
 
2195
- #: app/features/events.php:740 app/features/fes/form.php:372
2196
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2197
  #, fuzzy
2198
  #| msgid "Visibility"
2199
  msgid "Event Visibility"
2200
  msgstr "Visibilidad"
2201
 
2202
- #: app/features/events.php:741 app/features/fes/form.php:373
2203
  #, fuzzy
2204
  #| msgid "Booking Price"
2205
  msgid "Show on Shortcodes"
2206
  msgstr "Precio de la reserva"
2207
 
2208
- #: app/features/events.php:742 app/features/fes/form.php:374
2209
  #, fuzzy
2210
  #| msgid "Shortcodes"
2211
  msgid "Hide on Shortcodes"
2212
  msgstr "Shortcodes"
2213
 
2214
- #: app/features/events.php:749 app/features/fes/form.php:382
2215
  #, fuzzy
2216
  #| msgid "Repeat"
2217
  msgid "Repeating"
@@ -2223,65 +2228,70 @@ msgstr "Repetir"
2223
  msgid "Event Repeating (Recurring events)"
2224
  msgstr "Repetir el evento"
2225
 
2226
- #: app/features/events.php:762 app/features/fes/form.php:388
2227
  msgid "Repeats"
2228
  msgstr "Repeticiones"
2229
 
2230
- #: app/features/events.php:770 app/features/fes/form.php:390
2231
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2232
  #: app/skins/full_calendar/tpl.php:140
2233
  msgid "Daily"
2234
  msgstr "Diariamente"
2235
 
2236
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2237
  msgid "Every Weekday"
2238
  msgstr "Cada día de la semana"
2239
 
2240
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2241
  msgid "Every Weekend"
2242
  msgstr "Cada fin de semana"
2243
 
2244
- #: app/features/events.php:791 app/features/fes/form.php:393
2245
  msgid "Certain Weekdays"
2246
  msgstr "Ciertos días de la semana"
2247
 
2248
- #: app/features/events.php:798 app/features/fes/form.php:394
2249
- #: app/skins/default_full_calendar/tpl.php:78
2250
  #: app/skins/full_calendar/tpl.php:139
2251
  msgid "Weekly"
2252
  msgstr "Semanal"
2253
 
2254
- #: app/features/events.php:805 app/features/fes/form.php:395
2255
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2256
  #: app/skins/full_calendar/tpl.php:138
2257
  msgid "Monthly"
2258
  msgstr "Mensual"
2259
 
2260
- #: app/features/events.php:812 app/features/fes/form.php:396
2261
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2262
  #: app/skins/full_calendar/tpl.php:137
2263
  msgid "Yearly"
2264
  msgstr "Anual"
2265
 
2266
- #: app/features/events.php:819 app/features/fes/form.php:397
2267
  msgid "Custom Days"
2268
  msgstr "Días personalizados"
2269
 
2270
- #: app/features/events.php:826 app/features/fes/form.php:398
2271
  #, fuzzy
2272
  #| msgid "Advanced Method"
2273
  msgid "Advanced"
2274
  msgstr "Método avanzado"
2275
 
2276
- #: app/features/events.php:831 app/features/fes/form.php:402
2277
  msgid "Repeat Interval"
2278
  msgstr "Intervalo de repetición"
2279
 
2280
- #: app/features/events.php:833 app/features/fes/form.php:403
2281
  msgid "Repeat interval"
2282
  msgstr "Intervalo de repetición"
2283
 
2284
- #: app/features/events.php:837 app/features/fes/form.php:406
2285
  msgid "Week Days"
2286
  msgstr "Días de semana"
2287
 
@@ -2295,7 +2305,7 @@ msgstr "Versión Pro de Modern Events Calendar"
2295
 
2296
  #: app/features/events.php:860 app/features/events.php:2101
2297
  #: app/features/events.php:2129 app/features/events.php:2343
2298
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2299
  #: app/features/ix/import_g_calendar.php:51
2300
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2301
  #: app/libraries/skins.php:1389
@@ -2306,19 +2316,19 @@ msgstr "Inicio"
2306
  #: app/features/events.php:2085 app/features/events.php:2167
2307
  #: app/features/events.php:2332 app/features/events.php:2376
2308
  #: app/features/events.php:2449 app/features/events.php:2566
2309
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2310
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2311
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2312
  msgid "Add"
2313
  msgstr "Añadir"
2314
 
2315
- #: app/features/events.php:877 app/features/fes/form.php:454
2316
  #, fuzzy
2317
  #| msgid "Custom Days"
2318
  msgid "Custom Days Repeating"
2319
  msgstr "Días personalizados"
2320
 
2321
- #: app/features/events.php:880 app/features/fes/form.php:457
2322
  msgid ""
2323
  "Add certain days to event occurrence dates. If you have a single day event, "
2324
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2327,52 +2337,52 @@ msgstr ""
2327
 
2328
  #: app/features/events.php:891 app/features/events.php:2105
2329
  #: app/features/events.php:2133 app/features/events.php:2347
2330
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2331
  msgid "End"
2332
  msgstr ""
2333
 
2334
- #: app/features/events.php:968 app/features/fes/form.php:530
2335
  #, fuzzy
2336
  #| msgid "Ticket name"
2337
  msgid "First"
2338
  msgstr "Nombre de la entrada"
2339
 
2340
- #: app/features/events.php:1010 app/features/fes/form.php:572
2341
  #, fuzzy
2342
  #| msgid "second"
2343
  msgid "Second"
2344
  msgstr "segundo"
2345
 
2346
- #: app/features/events.php:1052 app/features/fes/form.php:614
2347
  #, fuzzy
2348
  #| msgid "Third Party"
2349
  msgid "Third"
2350
  msgstr "Terceros"
2351
 
2352
- #: app/features/events.php:1094 app/features/fes/form.php:656
2353
  msgid "Fourth"
2354
  msgstr ""
2355
 
2356
- #: app/features/events.php:1136 app/features/fes/form.php:698
2357
  #, fuzzy
2358
  #| msgid "Last Year"
2359
  msgid "Last"
2360
  msgstr "Año pasado"
2361
 
2362
- #: app/features/events.php:1183 app/features/fes/form.php:744
2363
  msgid "Ends Repeat"
2364
  msgstr "Finaliza la repetición"
2365
 
2366
- #: app/features/events.php:1195 app/features/fes/form.php:748
2367
  msgid "Never"
2368
  msgstr "Nunca"
2369
 
2370
- #: app/features/events.php:1207 app/features/fes/form.php:753
2371
  msgid "On"
2372
  msgstr "On"
2373
 
2374
  #: app/features/events.php:1227 app/features/events.php:1231
2375
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2376
  msgid "Occurrences times"
2377
  msgstr "Ocurrencias del evento"
2378
 
@@ -2388,14 +2398,14 @@ msgstr ""
2388
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
2389
  "estableces en 10, el evento terminará después de 10 repeticiones."
2390
 
2391
- #: app/features/events.php:1248 app/features/fes/form.php:779
2392
  #, fuzzy
2393
  #| msgid "Next Occurrence of Other Events"
2394
  msgid "Show only one occurrence of this event"
2395
  msgstr "Próxima aparición de otros eventos"
2396
 
2397
- #: app/features/events.php:1277 app/features/events.php:4193
2398
- #: app/features/fes/form.php:865
2399
  #: app/features/mec/meta_boxes/search_form.php:116
2400
  #: app/features/mec/meta_boxes/search_form.php:204
2401
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2419,75 +2429,75 @@ msgstr "Próxima aparición de otros eventos"
2419
  #: app/features/mec/notifications.php:1511
2420
  #: app/features/mec/notifications.php:1628
2421
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2422
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2423
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2424
  #: app/widgets/single.php:122
2425
  msgid "Event Cost"
2426
  msgstr "Coste del evento"
2427
 
2428
- #: app/features/events.php:1292 app/features/fes/form.php:877
2429
  #, fuzzy
2430
  #| msgid "Show weather module on event page"
2431
  msgid "Show the minimum price based on tickets"
2432
  msgstr "Módulo de tiempo para mostrar en la página del evento"
2433
 
2434
- #: app/features/events.php:1300 app/features/fes/form.php:885
2435
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2436
  #: app/libraries/main.php:646
2437
  msgid "Currency"
2438
  msgstr "Moneda corriente"
2439
 
2440
  #: app/features/events.php:1310 app/features/events.php:1315
2441
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2442
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2443
  msgid "Currency Sign"
2444
  msgstr "Tipo de moneda"
2445
 
2446
- #: app/features/events.php:1316 app/features/fes/form.php:901
2447
  #: app/features/mec/settings.php:600
2448
  msgid "Default value will be \"currency\" if you leave it empty."
2449
  msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
2450
 
2451
- #: app/features/events.php:1323 app/features/fes/form.php:908
2452
  #: app/features/mec/settings.php:607
2453
  msgid "Currency Position"
2454
  msgstr "Posición en moneda extranjera"
2455
 
2456
- #: app/features/events.php:1326 app/features/fes/form.php:911
2457
  #: app/features/mec/settings.php:610
2458
  #, fuzzy
2459
  #| msgid "Before $10"
2460
  msgid "$10 (Before)"
2461
  msgstr "Menos de 10€"
2462
 
2463
- #: app/features/events.php:1327 app/features/fes/form.php:912
2464
  #: app/features/mec/settings.php:611
2465
  msgid "$ 10 (Before with Space)"
2466
  msgstr ""
2467
 
2468
- #: app/features/events.php:1328 app/features/fes/form.php:913
2469
  #: app/features/mec/settings.php:612
2470
  #, fuzzy
2471
  #| msgid "After"
2472
  msgid "10$ (After)"
2473
  msgstr "Después"
2474
 
2475
- #: app/features/events.php:1329 app/features/fes/form.php:914
2476
  #: app/features/mec/settings.php:613
2477
  msgid "10 $ (After with Space)"
2478
  msgstr ""
2479
 
2480
- #: app/features/events.php:1334 app/features/fes/form.php:919
2481
  #: app/features/mec/settings.php:618
2482
  msgid "Thousand Separator"
2483
  msgstr "Separador de miles"
2484
 
2485
- #: app/features/events.php:1340 app/features/fes/form.php:925
2486
  #: app/features/mec/settings.php:624
2487
  msgid "Decimal Separator"
2488
  msgstr "Separador de decimales"
2489
 
2490
- #: app/features/events.php:1350 app/features/fes/form.php:935
2491
  #: app/features/mec/settings.php:634
2492
  msgid "No decimal"
2493
  msgstr "No decimal"
@@ -2513,21 +2523,21 @@ msgstr ""
2513
  msgid "Day 1"
2514
  msgstr ""
2515
 
2516
- #: app/features/events.php:1498 app/features/fes/form.php:829
2517
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2518
  msgid "Event Links"
2519
  msgstr "Enlaces de eventos"
2520
 
2521
  #: app/features/events.php:1501 app/features/events.php:1509
2522
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2523
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2524
  #: app/libraries/main.php:7649
2525
  msgid "Event Link"
2526
  msgstr "Enlace del evento"
2527
 
2528
  #: app/features/events.php:1504 app/features/events.php:1522
2529
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2530
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2531
  msgid "eg. http://yoursite.com/your-event"
2532
  msgstr "ej. http://yoursite.com/your-event"
2533
 
@@ -2548,24 +2558,24 @@ msgstr ""
2548
  msgid "URL Shortener"
2549
  msgstr ""
2550
 
2551
- #: app/features/events.php:1525 app/features/fes/form.php:838
2552
- #: app/features/occurrences.php:527
2553
  msgid "More Information"
2554
  msgstr "Más Información"
2555
 
2556
- #: app/features/events.php:1527 app/features/fes/form.php:840
2557
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2558
  #: app/features/popup/shortcode.php:481
2559
  msgid "Current Window"
2560
  msgstr "Ventana actual"
2561
 
2562
- #: app/features/events.php:1528 app/features/fes/form.php:841
2563
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2564
  #: app/features/popup/shortcode.php:485
2565
  msgid "New Window"
2566
  msgstr "Nueva ventana"
2567
 
2568
- #: app/features/events.php:1533 app/features/fes/form.php:843
2569
  msgid ""
2570
  "If you fill it, it will be shown in event details page as an optional link. "
2571
  "Insert full link including http(s)://"
@@ -2945,9 +2955,9 @@ msgid "Ticket ID"
2945
  msgstr "Ticket"
2946
 
2947
  #: app/features/events.php:1944 app/features/events.php:2211
2948
- #: app/features/events.php:4180 app/features/fes.php:280
2949
  #: app/features/labels.php:183 app/features/locations.php:266
2950
- #: app/features/organizers.php:207 app/features/speakers.php:285
2951
  msgid "ID"
2952
  msgstr "ID"
2953
 
@@ -2956,12 +2966,12 @@ msgid "Ticket Name"
2956
  msgstr "Nombre del ticket"
2957
 
2958
  #: app/features/events.php:1956 app/features/events.php:2219
2959
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2960
  msgid "Start Time"
2961
  msgstr "Hora de Inicio"
2962
 
2963
  #: app/features/events.php:1970 app/features/events.php:2233
2964
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2965
  msgid "End Time"
2966
  msgstr "Hora de finalización"
2967
 
@@ -2983,7 +2993,7 @@ msgstr ""
2983
  #: app/features/events.php:2007 app/features/events.php:2011
2984
  #: app/features/events.php:2109 app/features/events.php:2136
2985
  #: app/features/events.php:2265 app/features/events.php:2268
2986
- #: app/features/events.php:2349 app/features/events.php:4739
2987
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2988
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2989
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3157,7 +3167,7 @@ msgstr "Límite de asistentes"
3157
  msgid "Fixed Fields"
3158
  msgstr "Campo obligatorio"
3159
 
3160
- #: app/features/events.php:2887 app/features/events.php:4733
3161
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3162
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3163
  msgid "Attendees"
@@ -3189,7 +3199,7 @@ msgid "Expired Events"
3189
  msgstr "Eventos pasados"
3190
 
3191
  #: app/features/events.php:3757 app/features/mec.php:1374
3192
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3193
  msgid "Upcoming Events"
3194
  msgstr "Próximos Eventos"
3195
 
@@ -3250,15 +3260,15 @@ msgid "JSON Export"
3250
  msgstr "Exportación JSON"
3251
 
3252
  #: app/features/events.php:4068 app/features/events.php:4069
3253
- #: app/features/events.php:4293
3254
  msgid "Duplicate"
3255
  msgstr "Duplicar"
3256
 
3257
- #: app/features/events.php:4187
3258
  msgid "Link"
3259
  msgstr "Enlace"
3260
 
3261
- #: app/features/events.php:4189 app/features/locations.php:111
3262
  #: app/features/locations.php:181 app/features/locations.php:268
3263
  #: app/features/mec/meta_boxes/search_form.php:108
3264
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3276,31 +3286,31 @@ msgstr "Enlace"
3276
  msgid "Address"
3277
  msgstr "Dirección"
3278
 
3279
- #: app/features/events.php:4191
3280
  #, php-format
3281
  msgid "%s Tel"
3282
  msgstr "%s Teléfono "
3283
 
3284
- #: app/features/events.php:4192
3285
  #, php-format
3286
  msgid "%s Email"
3287
  msgstr "%s Correo electrónico"
3288
 
3289
- #: app/features/events.php:4194 app/features/fes/form.php:951
3290
  #: app/features/mec/settings.php:876
3291
  msgid "Featured Image"
3292
  msgstr "Imagen destacada"
3293
 
3294
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3295
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3296
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3297
  msgid "Tags"
3298
  msgstr "Tags"
3299
 
3300
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3301
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3302
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3303
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3304
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3305
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3306
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3308,40 +3318,40 @@ msgstr "Tags"
3308
  msgid "Speakers"
3309
  msgstr ""
3310
 
3311
- #: app/features/events.php:4446 app/features/fes.php:280
3312
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3313
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3314
  #: app/libraries/main.php:7592
3315
  msgid "Ticket"
3316
  msgstr "Ticket"
3317
 
3318
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3319
  msgid "Variations"
3320
  msgstr ""
3321
 
3322
- #: app/features/events.php:4464 app/features/fes.php:356
3323
  msgid "Unknown"
3324
  msgstr ""
3325
 
3326
- #: app/features/events.php:4492
3327
  msgid ""
3328
  "If you want to send an email, first select your attendees and then click in "
3329
  "the button below, please."
3330
  msgstr ""
3331
 
3332
- #: app/features/events.php:4492 app/features/mec/report.php:57
3333
  #, fuzzy
3334
  #| msgid "Organizer Email"
3335
  msgid "Send Email"
3336
  msgstr "Correo electrónico del organizador"
3337
 
3338
- #: app/features/events.php:4496
3339
  #, fuzzy
3340
  #| msgid "Attendees Form"
3341
  msgid "No Attendees Found!"
3342
  msgstr "Asistentes"
3343
 
3344
- #: app/features/events.php:4797
3345
  #, fuzzy
3346
  #| msgid "No events found in Trash!"
3347
  msgid "No Bookings Found!"
@@ -3495,72 +3505,72 @@ msgstr "El evento presentado. Se publicará lo antes posible."
3495
  msgid "The event published."
3496
  msgstr "El evento a sido publicado."
3497
 
3498
- #: app/features/fes/form.php:178
3499
  #, fuzzy
3500
  #| msgid "Go back to events list."
3501
  msgid "Go back to events list"
3502
  msgstr "Regrese a la lista de eventos."
3503
 
3504
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3505
  #: app/features/mec/settings.php:1171
3506
  msgid "Excerpt"
3507
  msgstr ""
3508
 
3509
- #: app/features/fes/form.php:271
3510
  #, fuzzy
3511
  #| msgid "On Event Start"
3512
  msgid "Optional Event Excerpt"
3513
  msgstr "En el inicio del evento"
3514
 
3515
- #: app/features/fes/form.php:278
3516
  msgid ""
3517
  "This event is imported from Google calendar so if you modify it would "
3518
  "overwrite in the next import from Google."
3519
  msgstr ""
3520
 
3521
- #: app/features/fes/form.php:407
3522
  #: app/features/mec/meta_boxes/display_options.php:1494
3523
  #: app/libraries/main.php:476
3524
  msgid "Monday"
3525
  msgstr "Lunes"
3526
 
3527
- #: app/features/fes/form.php:408
3528
  #: app/features/mec/meta_boxes/display_options.php:1495
3529
  #: app/libraries/main.php:476
3530
  msgid "Tuesday"
3531
  msgstr "Martes"
3532
 
3533
- #: app/features/fes/form.php:409
3534
  #: app/features/mec/meta_boxes/display_options.php:1496
3535
  #: app/libraries/main.php:476
3536
  msgid "Wednesday"
3537
  msgstr "Miércoles"
3538
 
3539
- #: app/features/fes/form.php:410
3540
  #: app/features/mec/meta_boxes/display_options.php:1497
3541
  #: app/libraries/main.php:476
3542
  msgid "Thursday"
3543
  msgstr "Jueves"
3544
 
3545
- #: app/features/fes/form.php:411
3546
  #: app/features/mec/meta_boxes/display_options.php:1498
3547
  #: app/libraries/main.php:476
3548
  msgid "Friday"
3549
  msgstr "Viernes"
3550
 
3551
- #: app/features/fes/form.php:412
3552
  #: app/features/mec/meta_boxes/display_options.php:1499
3553
  #: app/libraries/main.php:476
3554
  msgid "Saturday"
3555
  msgstr "Sábado"
3556
 
3557
- #: app/features/fes/form.php:413
3558
  #: app/features/mec/meta_boxes/display_options.php:1493
3559
  #: app/libraries/main.php:476
3560
  msgid "Sunday"
3561
  msgstr "Domingo"
3562
 
3563
- #: app/features/fes/form.php:766
3564
  msgid ""
3565
  "The event will finish after certain repeats. For example if you set it to "
3566
  "10, the event will finish after 10 repeats."
@@ -3568,24 +3578,24 @@ msgstr ""
3568
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
3569
  "estableces en 10, el evento terminará después de 10 repeticiones."
3570
 
3571
- #: app/features/fes/form.php:790
3572
  msgid "Note to reviewer"
3573
  msgstr "Nota al revisor"
3574
 
3575
- #: app/features/fes/form.php:808
3576
  msgid "User Data"
3577
  msgstr "Datos del usuario"
3578
 
3579
- #: app/features/fes/form.php:811
3580
  msgid "eg. yourname@gmail.com"
3581
  msgstr "Ejemplo. sunombre@gmail.com"
3582
 
3583
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3584
- #: app/features/popup/event.php:185
3585
  msgid "eg. John Smith"
3586
  msgstr "ej. John Smith"
3587
 
3588
- #: app/features/fes/form.php:833
3589
  #, fuzzy
3590
  #| msgid ""
3591
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3597,39 +3607,39 @@ msgstr ""
3597
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
3598
  "defecto. Inserta todo el enlace incluyendo http(s)://"
3599
 
3600
- #: app/features/fes/form.php:956
3601
  msgid "Remove Image"
3602
  msgstr "Eliminar imagen"
3603
 
3604
- #: app/features/fes/form.php:1046
3605
  msgid "Insert your desired tags, comma separated."
3606
  msgstr "Inserta las etiquetas que quieras, separadas por comas."
3607
 
3608
- #: app/features/fes/form.php:1068
3609
  msgid "Speakers Names"
3610
  msgstr ""
3611
 
3612
- #: app/features/fes/form.php:1069
3613
  msgid "Separate names with commas: Justin, Chris"
3614
  msgstr ""
3615
 
3616
- #: app/features/fes/form.php:1114
3617
  #, fuzzy, php-format
3618
  #| msgid "Please %s/%s in order to submit new events."
3619
  msgid "I accept the %s in order to submit an event."
3620
  msgstr "Por favor %s/%s para poder añadir nuevos eventos."
3621
 
3622
- #: app/features/fes/form.php:1114
3623
  msgid "Privacy Policy"
3624
  msgstr ""
3625
 
3626
- #: app/features/fes/form.php:1116
3627
  #, fuzzy
3628
  #| msgid "Please %s/%s in order to submit new events."
3629
  msgid "I accept the Privacy Policy in order to submit an event."
3630
  msgstr "Por favor %s/%s para poder añadir nuevos eventos."
3631
 
3632
- #: app/features/fes/form.php:1122
3633
  #, fuzzy
3634
  #| msgid "Edit Event"
3635
  msgid "Submit Event"
@@ -3720,37 +3730,37 @@ msgstr "El tipo de archivo debería ser XML o ICS."
3720
  msgid "The events are imported successfully!"
3721
  msgstr "¡Los eventos se importaron correctamente!"
3722
 
3723
- #: app/features/ix.php:1301
3724
  msgid "Third Party plugin is not installed and activated!"
3725
  msgstr "¡Plugin de terceros no esta instalado ni activado!"
3726
 
3727
- #: app/features/ix.php:1325
3728
  msgid "Third Party plugin is invalid!"
3729
  msgstr "¡El Plugin de terceros no es válido!"
3730
 
3731
- #: app/features/ix.php:3300 app/features/ix.php:3361
3732
  #, fuzzy
3733
  #| msgid "Both of API key and Calendar ID are required!"
3734
  msgid "API key and Calendar ID are required!"
3735
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
3736
 
3737
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3738
  #, fuzzy
3739
  #| msgid "Please select some events to import!"
3740
  msgid "Please select events to import!"
3741
  msgstr "Por favor, ¡selecciona algunos eventos para importar!"
3742
 
3743
- #: app/features/ix.php:3794 app/features/ix.php:3857
3744
  #, fuzzy
3745
  #| msgid "Both of API key and Calendar ID are required!"
3746
  msgid "API key and Group URL are required!"
3747
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
3748
 
3749
- #: app/features/ix.php:4096
3750
  msgid "Check at Meetup"
3751
  msgstr ""
3752
 
3753
- #: app/features/ix.php:4262
3754
  #, fuzzy
3755
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3756
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
@@ -3758,18 +3768,18 @@ msgstr ""
3758
  "Todos los ID de cliente, secreto de cliente y ID de calendario son "
3759
  "necesarios."
3760
 
3761
- #: app/features/ix.php:4285
3762
  #, fuzzy, php-format
3763
  #| msgid "All seems good! Please click %s for authenticating your app."
3764
  msgid "All seems good! Please click %s to authenticate your app."
3765
  msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
3766
 
3767
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3768
  #: app/features/mec/settings.php:1496
3769
  msgid "here"
3770
  msgstr ""
3771
 
3772
- #: app/features/ix.php:4340
3773
  #, fuzzy
3774
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3775
  msgid "Client App, Client Secret, and Calendar ID are all required!"
@@ -3777,28 +3787,28 @@ msgstr ""
3777
  "¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
3778
  "son obligatorios!"
3779
 
3780
- #: app/features/ix.php:4502
3781
  #, fuzzy, php-format
3782
  #| msgid "%s events added to Google Calendar successfully."
3783
  msgid "%s events added to Google Calendar with success."
3784
  msgstr "%s eventos añadidos con éxito a Google Calendar."
3785
 
3786
- #: app/features/ix.php:4503
3787
  #, fuzzy, php-format
3788
  #| msgid "%s previously added events get updated."
3789
  msgid "%s Updated previously added events."
3790
  msgstr "%s eventos añadidos previamente se actualizan."
3791
 
3792
- #: app/features/ix.php:4504
3793
  #, php-format
3794
  msgid "%s events failed to add for following reasons: %s"
3795
  msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
3796
 
3797
- #: app/features/ix.php:4536
3798
  msgid "Please insert your Facebook page's link."
3799
  msgstr ""
3800
 
3801
- #: app/features/ix.php:4547 app/features/ix.php:4589
3802
  #, fuzzy
3803
  #| msgid ""
3804
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3810,7 +3820,7 @@ msgstr ""
3810
  "No pudimos reconocer tu página de Facebook. Por favor, verifícala y escribe "
3811
  "un nuevo enlace de página de Facebook."
3812
 
3813
- #: app/features/ix.php:4584
3814
  msgid "Please insert your facebook page's link."
3815
  msgstr "Por favor, inserta el enlace de tu página de Facebook."
3816
 
@@ -4021,7 +4031,7 @@ msgstr "Asistentes evento"
4021
  msgid "Add to Google Calendar"
4022
  msgstr "Añadir a Google Calendar"
4023
 
4024
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
4025
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
4026
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
4027
  #: app/features/mec/single.php:604
@@ -4140,7 +4150,7 @@ msgstr "Importar desde Facebook Calendar"
4140
  msgid "Import all of your Facebook events into MEC."
4141
  msgstr "Importar todos tus eventos de Facebook a MEC."
4142
 
4143
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4144
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4145
  msgid "Documentation"
4146
  msgstr "Documentación"
@@ -4453,7 +4463,7 @@ msgid ""
4453
  msgstr ""
4454
 
4455
  #: app/features/labels.php:79 app/features/locations.php:77
4456
- #: app/features/organizers.php:77 app/features/speakers.php:79
4457
  #: app/features/tag.php:77
4458
  #, fuzzy, php-format
4459
  #| msgid "No Search Options"
@@ -4461,7 +4471,7 @@ msgid "← Back to %s"
4461
  msgstr "No hay opciones de búsqueda"
4462
 
4463
  #: app/features/labels.php:80 app/features/locations.php:78
4464
- #: app/features/organizers.php:78 app/features/speakers.php:80
4465
  #: app/features/tag.php:78
4466
  #, fuzzy, php-format
4467
  #| msgid "No events found!"
@@ -4505,7 +4515,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4505
  msgstr ""
4506
 
4507
  #: app/features/labels.php:186 app/features/locations.php:269
4508
- #: app/features/organizers.php:210 app/features/speakers.php:289
4509
  #: app/modules/booking/steps/tickets.php:172
4510
  msgid "Count"
4511
  msgstr "Contador"
@@ -4521,7 +4531,7 @@ msgid "Event %s"
4521
  msgstr "Evento %s"
4522
 
4523
  #: app/features/locations.php:59 app/features/mec.php:526
4524
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4525
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4526
  #: app/libraries/main.php:7623
4527
  msgid "Locations"
@@ -4532,7 +4542,7 @@ msgid "Enter the location address"
4532
  msgstr "Introduce la dirección del lugar"
4533
 
4534
  #: app/features/locations.php:131 app/features/locations.php:197
4535
- #: app/features/locations.php:374 app/features/popup/event.php:149
4536
  msgid "Latitude"
4537
  msgstr "Latitud"
4538
 
@@ -4543,7 +4553,7 @@ msgid "Geo latitude (Optional for Lite)"
4543
  msgstr "Geo latitud (Opcional)"
4544
 
4545
  #: app/features/locations.php:139 app/features/locations.php:201
4546
- #: app/features/locations.php:375 app/features/popup/event.php:150
4547
  msgid "Longitude"
4548
  msgstr "Longitud"
4549
 
@@ -4568,22 +4578,22 @@ msgstr "Geo latitud (Opcional)"
4568
 
4569
  #: app/features/locations.php:156 app/features/locations.php:210
4570
  #: app/features/organizers.php:128 app/features/organizers.php:161
4571
- #: app/features/speakers.php:176 app/features/speakers.php:229
4572
  msgid "Thumbnail"
4573
  msgstr "Miniatura"
4574
 
4575
  #: app/features/locations.php:329 app/features/occurrences.php:460
4576
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4577
  #, php-format
4578
  msgid "Event Main %s"
4579
  msgstr "Principal %s del evento"
4580
 
4581
  #: app/features/locations.php:332 app/features/occurrences.php:464
4582
- #: app/features/popup/event.php:119
4583
  msgid "Hide location"
4584
  msgstr "Ocultar lugar"
4585
 
4586
- #: app/features/locations.php:333 app/features/popup/event.php:120
4587
  msgid "Insert a new location"
4588
  msgstr "Insertar nuevo lugar"
4589
 
@@ -4591,30 +4601,30 @@ msgstr "Insertar nuevo lugar"
4591
  msgid "Choose one of saved locations or insert new one below."
4592
  msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
4593
 
4594
- #: app/features/locations.php:348 app/features/popup/event.php:141
4595
  msgid "Location Name"
4596
  msgstr "Nombre del lugar"
4597
 
4598
- #: app/features/locations.php:349 app/features/popup/event.php:142
4599
  msgid "eg. City Hall"
4600
  msgstr "ej. Almería"
4601
 
4602
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4603
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4604
  msgid "Event Location"
4605
  msgstr "Lugar del evento"
4606
 
4607
- #: app/features/locations.php:353 app/features/popup/event.php:146
4608
  msgid "eg. City hall, Manhattan, New York"
4609
  msgstr "ej. Almería, España"
4610
 
4611
- #: app/features/locations.php:378 app/features/popup/event.php:153
4612
  #, fuzzy
4613
  #| msgid "Longitude"
4614
  msgid "Latitude/Longitude"
4615
  msgstr "Longitud"
4616
 
4617
- #: app/features/locations.php:379 app/features/popup/event.php:154
4618
  msgid ""
4619
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4620
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4623,28 +4633,28 @@ msgid ""
4623
  "the location on the map to find lat long coordinates."
4624
  msgstr ""
4625
 
4626
- #: app/features/locations.php:379 app/features/popup/event.php:154
4627
  msgid "Get Latitude and Longitude"
4628
  msgstr ""
4629
 
4630
  #: app/features/locations.php:392 app/features/organizers.php:315
4631
- #: app/features/popup/event.php:204
4632
  msgid "Choose image"
4633
  msgstr "Elegir imagen"
4634
 
4635
- #: app/features/locations.php:406 app/features/occurrences.php:480
4636
- #: app/features/popup/event.php:137
4637
  msgid "Don't show map in single event page"
4638
  msgstr "No mostrar el mapa en la página del detalle del evento"
4639
 
4640
- #: app/features/locations.php:409 app/libraries/main.php:7607
4641
  #: app/libraries/main.php:7654
4642
  #, fuzzy
4643
  #| msgid "Locations"
4644
  msgid "Other Locations"
4645
  msgstr "Lugar"
4646
 
4647
- #: app/features/locations.php:411
4648
  #, fuzzy
4649
  #| msgid ""
4650
  #| "You can select extra organizers in addition to main organizer if you like."
@@ -4719,7 +4729,7 @@ msgstr "Soporte"
4719
  msgid "Support"
4720
  msgstr "Soporte"
4721
 
4722
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4723
  #: app/features/mec/meta_boxes/filter.php:71
4724
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4725
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4727,7 +4737,7 @@ msgid "Organizers"
4727
  msgstr "Organizadores"
4728
 
4729
  #: app/features/mec.php:536 app/features/mec.php:596
4730
- #: app/features/mec/dashboard.php:221
4731
  msgid "Shortcodes"
4732
  msgstr "Shortcodes"
4733
 
@@ -4946,7 +4956,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4946
  msgstr ""
4947
 
4948
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4949
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4950
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4951
  msgid "Version"
4952
  msgstr "Versión"
@@ -4972,9 +4982,9 @@ msgid "Search..."
4972
  msgstr "Buscar %s"
4973
 
4974
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4975
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4976
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4977
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4978
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4979
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4980
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5565,31 +5575,31 @@ msgstr ""
5565
  msgid "It applies only to the orders that are related to MEC."
5566
  msgstr ""
5567
 
5568
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5569
  #, fuzzy
5570
  #| msgid "Add to Google Calendar"
5571
  msgid "After Add to Cart"
5572
  msgstr "Añadir a Google Calendar"
5573
 
5574
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5575
  #, fuzzy
5576
  #| msgid "Get Directions"
5577
  msgid "Redirect to Cart"
5578
  msgstr "Cómo llegar"
5579
 
5580
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5581
  #, fuzzy
5582
  #| msgid "Get Directions"
5583
  msgid "Redirect to Checkout"
5584
  msgstr "Cómo llegar"
5585
 
5586
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5587
  #, fuzzy
5588
  #| msgid "View Detail Button"
5589
  msgid "Optional View Cart Button"
5590
  msgstr "Ver detalle del botón"
5591
 
5592
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5593
  msgid "Optional Checkout Button"
5594
  msgstr ""
5595
 
@@ -5645,81 +5655,87 @@ msgid ""
5645
  "(Stripe) got canceled."
5646
  msgstr ""
5647
 
5648
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5649
  msgid "Use MEC Cart System"
5650
  msgstr ""
5651
 
5652
- #: app/features/mec/booking.php:1119
5653
  msgid ""
5654
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5655
  "adding a simple cart and checkout system to your website."
5656
  msgstr ""
5657
 
5658
- #: app/features/mec/booking.php:1121
5659
  msgid "You cannot use following MEC features while using MEC Cart."
5660
  msgstr ""
5661
 
5662
- #: app/features/mec/booking.php:1123
5663
  #, fuzzy
5664
  #| msgid "Payment Gateways"
5665
  msgid "WooCommerce as Payment Gateway"
5666
  msgstr "Pasarelas de pago"
5667
 
5668
- #: app/features/mec/booking.php:1124
5669
  #, fuzzy
5670
  #| msgid "Next Occurrence of Other Events"
5671
  msgid "Currency Per Event"
5672
  msgstr "Próxima aparición de otros eventos"
5673
 
5674
- #: app/features/mec/booking.php:1125
5675
  #, fuzzy
5676
  #| msgid "Payment Gateways"
5677
  msgid "Disable Gateways Per Event"
5678
  msgstr "Pasarelas de pago"
5679
 
5680
- #: app/features/mec/booking.php:1126
5681
  #, fuzzy
5682
  #| msgid "Payment Gateways"
5683
  msgid "Stripe Connect Gateway"
5684
  msgstr "Pasarelas de pago"
5685
 
5686
- #: app/features/mec/booking.php:1127
5687
  #, fuzzy
5688
  #| msgid "Payment Gateways"
5689
  msgid "Pay By WooCommerce Gateway"
5690
  msgstr "Pasarelas de pago"
5691
 
5692
- #: app/features/mec/booking.php:1128
5693
  #, fuzzy
5694
  #| msgid "Organizer Tel"
5695
  msgid "Organizer Payment Module"
5696
  msgstr "Teléfono del Organizador"
5697
 
5698
- #: app/features/mec/booking.php:1132
5699
  #, fuzzy
5700
  #| msgid "Start Date"
5701
  msgid "Cart Page"
5702
  msgstr "Día de inicio"
5703
 
5704
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5705
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5706
  #, php-format
5707
  msgid "Put %s shortcode into the page."
5708
  msgstr "Pon el shortcode %s en la página."
5709
 
5710
- #: app/features/mec/booking.php:1144
5711
  #, fuzzy
5712
  #| msgid "Checkout"
5713
  msgid "Checkout Page"
5714
  msgstr "Checkout"
5715
 
5716
- #: app/features/mec/booking.php:1170
5717
  #, fuzzy
5718
  #| msgid "Download Invoice"
5719
  msgid "Enable Cart Invoice"
5720
  msgstr "Descargar factura"
5721
 
5722
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5723
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5724
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5725
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5727,7 +5743,7 @@ msgstr "Descargar factura"
5727
  msgid "Saved"
5728
  msgstr "Guardado"
5729
 
5730
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5731
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5732
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5733
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5735,7 +5751,7 @@ msgstr "Guardado"
5735
  msgid "Settings Saved!"
5736
  msgstr "¡Ajustes guardados!"
5737
 
5738
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5739
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5740
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5741
  msgid "Please Refresh Page"
@@ -5751,12 +5767,7 @@ msgstr "Bienvenido %s"
5751
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5752
  msgstr "%s - El sistema gestor de eventos más potente y fácil de usar"
5753
 
5754
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5755
- msgctxt "plugin rate"
5756
- msgid "Rate the plugin ★★★★★"
5757
- msgstr ""
5758
-
5759
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5760
  #, fuzzy, php-format
5761
  #| msgid ""
5762
  #| "You're using %s version of Modern Events Calendar. To use advanced "
@@ -5771,71 +5782,54 @@ msgstr ""
5771
  "sistema de reserva avanzado, las temas modernos como agenda, horario, "
5772
  "masonry, vista anual, puntos disponibles, etc podrías %s a la versión Pro."
5773
 
5774
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5775
  msgid "lite"
5776
  msgstr "lite"
5777
 
5778
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5779
  #: app/features/mec/support.php:126
5780
  msgid "GO PREMIUM"
5781
  msgstr "IR A PREMIUM"
5782
 
5783
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5784
- #, php-format
5785
- msgid ""
5786
- "Easily get a discount coupon by rating us on %s or following and reposting "
5787
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5788
- msgstr ""
5789
-
5790
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5791
- #, fuzzy
5792
- #| msgid "Address"
5793
- msgid "WordPress"
5794
- msgstr "Dirección"
5795
-
5796
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5797
- msgid "Copouns!"
5798
- msgstr ""
5799
-
5800
- #: app/features/mec/dashboard.php:115
5801
  #, fuzzy
5802
  #| msgid "Modern Events Calendar"
5803
  msgid "Getting started with Modern Events Calendar"
5804
  msgstr "Modern Events Calendar"
5805
 
5806
- #: app/features/mec/dashboard.php:116
5807
  msgid ""
5808
  "In this short video, you can learn how to make an event and put a calendar "
5809
  "on your website. Please watch this 2 minutes video to the end."
5810
  msgstr ""
5811
 
5812
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5813
  #, fuzzy
5814
  #| msgid "MEC Activation"
5815
  msgid "License Activation"
5816
  msgstr "Activación MEC"
5817
 
5818
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5819
  #, fuzzy
5820
  #| msgid "MEC Activation"
5821
  msgid "Activate Addons"
5822
  msgstr "Activación MEC"
5823
 
5824
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5825
  msgid "You cannot access this section."
5826
  msgstr ""
5827
 
5828
- #: app/features/mec/dashboard.php:162
5829
  msgid ""
5830
  "In order to use all plugin features and options, please enter your purchase "
5831
  "code."
5832
  msgstr ""
5833
 
5834
- #: app/features/mec/dashboard.php:270
5835
  msgid "Popular Gateways"
5836
  msgstr "Pasarelas de pago populares"
5837
 
5838
- #: app/features/mec/dashboard.php:328
5839
  msgid "Change Log"
5840
  msgstr "Historial de cambios"
5841
 
@@ -7403,7 +7397,7 @@ msgstr ""
7403
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7404
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7405
  #: app/features/popup/settings.php:272 app/features/search.php:109
7406
- #: app/features/speakers.php:60 app/features/speakers.php:286
7407
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7408
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7409
  #: app/modules/speakers/details.php:18
@@ -8754,7 +8748,7 @@ msgstr ""
8754
  msgid "Please, insert comma to separate reminder hours."
8755
  msgstr ""
8756
 
8757
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8758
  #: app/libraries/main.php:705
8759
  msgid "New Event"
8760
  msgstr "Nuevo evento"
@@ -11075,13 +11069,13 @@ msgstr ""
11075
  msgid "Choose one of saved locations."
11076
  msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
11077
 
11078
- #: app/features/occurrences.php:491 app/features/organizers.php:280
11079
- #: app/features/popup/event.php:166
11080
  msgid "Hide organizer"
11081
  msgstr "Ocultar organizador"
11082
 
11083
- #: app/features/occurrences.php:499 app/features/organizers.php:289
11084
- #: app/features/popup/event.php:175
11085
  msgid "Choose one of saved organizers or insert new one below."
11086
  msgstr "Elige uno de los organizadores o inserta uno nuevo a continuación."
11087
 
@@ -11094,7 +11088,7 @@ msgid "Insert organizer email address."
11094
  msgstr "Insertar correo electrónico del organizador."
11095
 
11096
  #: app/features/organizers.php:120 app/features/organizers.php:157
11097
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11098
  msgid "Link to organizer page"
11099
  msgstr "Enlace a la página del organizador"
11100
 
@@ -11108,27 +11102,27 @@ msgstr ""
11108
  msgid "Contact info"
11109
  msgstr "Información de contacto"
11110
 
11111
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11112
  msgid "Insert a new organizer"
11113
  msgstr "Insertar nuevo organizador"
11114
 
11115
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11116
  msgid "Phone number."
11117
  msgstr "Número de teléfono."
11118
 
11119
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11120
  msgid "eg. +1 (234) 5678"
11121
  msgstr "ej. +34 900 123 456"
11122
 
11123
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11124
  msgid "Email address."
11125
  msgstr "Correo electrónico."
11126
 
11127
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11128
  msgid "eg. john@smith.com"
11129
  msgstr "ej. user@yoursite.com"
11130
 
11131
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11132
  msgid "eg. https://webnus.net"
11133
  msgstr "ej. https://webnus.net"
11134
 
@@ -11144,72 +11138,72 @@ msgstr ""
11144
  "Si quieres, puedes seleccionar organizadores adicionales además del "
11145
  "organizador principal."
11146
 
11147
- #: app/features/popup/event.php:58
11148
  #, fuzzy
11149
  #| msgid "Add Shortcode"
11150
  msgid "Adding an Event..."
11151
  msgstr "Nuevo Shortcode"
11152
 
11153
- #: app/features/popup/event.php:66
11154
  #, fuzzy
11155
  #| msgid "Event Note"
11156
  msgid "Event Name"
11157
  msgstr "Nota de evento"
11158
 
11159
- #: app/features/popup/event.php:67
11160
  msgid "Event name is required"
11161
  msgstr ""
11162
 
11163
- #: app/features/popup/event.php:128
11164
  #, fuzzy
11165
  #| msgid "Choose one of saved locations or insert new one below."
11166
  msgid "Choose one of saved locations or insert new one."
11167
  msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
11168
 
11169
- #: app/features/popup/event.php:132
11170
  #, fuzzy
11171
  #| msgid "Location"
11172
  msgid "Add Location"
11173
  msgstr "Localización"
11174
 
11175
- #: app/features/popup/event.php:179
11176
  #, fuzzy
11177
  #| msgid "Organizer"
11178
  msgid "Add Organizer"
11179
  msgstr "Organizador"
11180
 
11181
- #: app/features/popup/event.php:219
11182
  #, fuzzy
11183
  #| msgid "Categories"
11184
  msgid "All Categories"
11185
  msgstr "Categorías"
11186
 
11187
- #: app/features/popup/event.php:220
11188
  msgid "Most Used"
11189
  msgstr ""
11190
 
11191
- #: app/features/popup/event.php:231
11192
  #, fuzzy
11193
  #| msgid "Add New %s"
11194
  msgid "Add New Category"
11195
  msgstr "Añadir nuevo %s"
11196
 
11197
- #: app/features/popup/event.php:242
11198
  #, fuzzy
11199
  #| msgid "Featured Image"
11200
  msgid "Set Featured Image"
11201
  msgstr "Imagen destacada"
11202
 
11203
- #: app/features/popup/event.php:252
11204
  msgid "Your Event Has Been Created."
11205
  msgstr ""
11206
 
11207
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11208
  #: app/features/popup/shortcode.php:553
11209
  msgid "Prev"
11210
  msgstr ""
11211
 
11212
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11213
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11214
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11215
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11414,70 +11408,70 @@ msgstr "Buscar %s"
11414
  msgid "No search result."
11415
  msgstr ""
11416
 
11417
- #: app/features/speakers.php:112 app/features/speakers.php:197
11418
- #: app/features/speakers.php:287
11419
  msgid "Job Title"
11420
  msgstr ""
11421
 
11422
- #: app/features/speakers.php:115 app/features/speakers.php:198
11423
  msgid "Insert speaker job title."
11424
  msgstr ""
11425
 
11426
- #: app/features/speakers.php:123 app/features/speakers.php:202
11427
  msgid "Insert speaker phone number."
11428
  msgstr ""
11429
 
11430
- #: app/features/speakers.php:131 app/features/speakers.php:206
11431
  msgid "Insert speaker email address."
11432
  msgstr ""
11433
 
11434
- #: app/features/speakers.php:139 app/features/speakers.php:210
11435
  msgid "Insert URL of Website"
11436
  msgstr ""
11437
 
11438
- #: app/features/speakers.php:144 app/features/speakers.php:213
11439
  msgid "Facebook Page"
11440
  msgstr ""
11441
 
11442
- #: app/features/speakers.php:147 app/features/speakers.php:214
11443
  msgid "Insert URL of Facebook Page"
11444
  msgstr ""
11445
 
11446
- #: app/features/speakers.php:152 app/features/speakers.php:217
11447
  msgid "Instagram"
11448
  msgstr ""
11449
 
11450
- #: app/features/speakers.php:155 app/features/speakers.php:218
11451
  msgid "Insert URL of Instagram"
11452
  msgstr ""
11453
 
11454
- #: app/features/speakers.php:160 app/features/speakers.php:221
11455
  #, fuzzy
11456
  #| msgid "Linkedin"
11457
  msgid "LinkedIn"
11458
  msgstr "LinkedIn"
11459
 
11460
- #: app/features/speakers.php:163
11461
  msgid "Insert URL of LinkedIn"
11462
  msgstr ""
11463
 
11464
- #: app/features/speakers.php:168 app/features/speakers.php:225
11465
  msgid "Twitter Page"
11466
  msgstr ""
11467
 
11468
- #: app/features/speakers.php:171 app/features/speakers.php:226
11469
  msgid "Insert URL of Twitter Page"
11470
  msgstr ""
11471
 
11472
- #: app/features/speakers.php:222
11473
  msgid "Insert URL of linkedin"
11474
  msgstr ""
11475
 
11476
- #: app/features/speakers.php:347
11477
  msgid "Sorry, You must insert speaker name!"
11478
  msgstr ""
11479
 
11480
- #: app/features/speakers.php:396
11481
  msgid ""
11482
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11483
  "section and speaker widget section!"
@@ -11565,69 +11559,69 @@ msgctxt "plugin link"
11565
  msgid "Upgrade to Pro Version"
11566
  msgstr "Actualizar a Versión a Pro"
11567
 
11568
- #: app/libraries/factory.php:234
11569
  msgctxt "plugin link"
11570
  msgid "Settings"
11571
  msgstr "Ajustes"
11572
 
11573
- #: app/libraries/factory.php:239
11574
  msgctxt "plugin link"
11575
  msgid "Upgrade"
11576
  msgstr "Actualizar"
11577
 
11578
- #: app/libraries/factory.php:393
11579
  msgid "day"
11580
  msgstr "día "
11581
 
11582
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11583
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11584
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11585
  msgid "days"
11586
  msgstr "días"
11587
 
11588
- #: app/libraries/factory.php:395
11589
  msgid "hour"
11590
  msgstr "hora"
11591
 
11592
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11593
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11594
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11595
  msgid "hours"
11596
  msgstr "horas"
11597
 
11598
- #: app/libraries/factory.php:397
11599
  msgid "minute"
11600
  msgstr "minuto"
11601
 
11602
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11603
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11604
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11605
  msgid "minutes"
11606
  msgstr "minutos"
11607
 
11608
- #: app/libraries/factory.php:399
11609
  msgid "second"
11610
  msgstr "segundo"
11611
 
11612
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11613
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11614
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11615
  msgid "seconds"
11616
  msgstr "segundos"
11617
 
11618
- #: app/libraries/factory.php:477
11619
  msgid "MEC Single Sidebar"
11620
  msgstr "barra lateral MEC"
11621
 
11622
- #: app/libraries/factory.php:478
11623
  msgid "Custom sidebar for single and modal page of MEC."
11624
  msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
11625
 
11626
- #: app/libraries/factory.php:1199
11627
  msgid "Notice:"
11628
  msgstr ""
11629
 
11630
- #: app/libraries/factory.php:1200
11631
  msgid "This update includes only bug fixes."
11632
  msgstr ""
11633
 
@@ -11783,12 +11777,6 @@ msgstr "Shortcode"
11783
  msgid "%s Form"
11784
  msgstr ""
11785
 
11786
- #: app/libraries/main.php:689
11787
- #, fuzzy
11788
- #| msgid "Support"
11789
- msgid "MEC Cart"
11790
- msgstr "Soporte"
11791
-
11792
  #: app/libraries/main.php:726
11793
  msgid "Only For Bookers"
11794
  msgstr ""
@@ -12582,12 +12570,7 @@ msgstr "Hora de Inicio"
12582
  msgid "End at: %s - %s"
12583
  msgstr ""
12584
 
12585
- #: app/libraries/skins.php:1755
12586
- #, php-format
12587
- msgid "Every %s"
12588
- msgstr ""
12589
-
12590
- #: app/libraries/skins.php:1756
12591
  #, fuzzy
12592
  #| msgid "Repeat"
12593
  msgid "Repeating Event"
@@ -13081,6 +13064,11 @@ msgstr "Equipo de Webnus"
13081
  msgid "http://webnus.net"
13082
  msgstr "http://webnus.net"
13083
 
 
 
 
 
 
13084
  #, fuzzy
13085
  #~| msgid ""
13086
  #~| "The %s ticket is sold out. You can try another ticket or another date."
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
8
+ "PO-Revision-Date: 2022-03-03 10:15+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
168
  msgstr ""
169
 
170
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
171
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
172
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
173
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
174
  #: app/features/mec/notifications.php:1922
206
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
207
  #: app/features/autoemails.php:60 app/features/events.php:606
208
  #: app/features/events.php:2650 app/features/events.php:2717
209
+ #: app/features/events.php:2806 app/features/events.php:4445
210
+ #: app/features/fes.php:280 app/features/fes/form.php:812
211
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
212
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
213
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
214
  #: app/features/organizers.php:112 app/features/organizers.php:153
215
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
216
+ #: app/features/speakers.php:211 app/libraries/main.php:653
217
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
218
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
219
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
373
  #: app/features/events.php:2808 app/features/mec/booking.php:800
374
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
375
  #: app/features/organizers.php:104 app/features/organizers.php:149
376
+ #: app/features/speakers.php:126 app/features/speakers.php:207
377
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
378
  msgid "Tel"
379
  msgstr "Tel"
380
 
520
  msgid "Agreement"
521
  msgstr "Acuerdo"
522
 
523
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
524
+ #, php-format
525
+ msgid "I agree with %s"
526
+ msgstr ""
527
+
528
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
529
  #, php-format
530
  msgid "Instead of %s, the page title with a link will be show."
702
  #: app/features/events.php:1843 app/features/events.php:2014
703
  #: app/features/events.php:2029 app/features/events.php:2271
704
  #: app/features/events.php:2283 app/features/events.php:2476
705
+ #: app/features/events.php:2513 app/features/fes/form.php:460
706
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
707
  #: app/features/locations.php:341 app/features/mec/booking.php:113
708
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
709
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
780
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
781
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
782
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
783
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
784
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
785
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
786
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
787
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
788
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
946
 
947
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
948
  #: app/features/events.php:432 app/features/events.php:1283
949
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
950
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
951
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
952
  #: app/skins/single.php:1126 app/skins/single/default.php:213
953
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1026
  msgstr ""
1027
 
1028
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1029
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1030
  #: app/features/labels.php:61 app/features/labels.php:227
1031
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1032
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1062
  msgstr "Ocultar lugar"
1063
 
1064
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1065
+ #: app/features/events.php:3876 app/features/events.php:4190
1066
  #: app/features/locations.php:58 app/features/locations.php:267
1067
  #: app/features/locations.php:329 app/features/locations.php:331
1068
  #: app/features/locations.php:340
1082
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1083
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1084
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1085
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1086
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1087
  #: app/features/search.php:97 app/libraries/main.php:3020
1088
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1096
 
1097
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1098
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1099
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1100
  #: app/skins/single.php:1406 app/skins/single.php:1473
1101
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1102
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1119
 
1120
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1121
  #: app/features/events.php:1519 app/features/events.php:1532
1122
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1123
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1124
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1125
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1170
 
1171
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1172
  #: app/features/events.php:431 app/features/events.php:3877
1173
+ #: app/features/events.php:4192 app/features/events.php:4193
1174
+ #: app/features/events.php:4194
1175
  #: app/features/mec/meta_boxes/display_options.php:1660
1176
  #: app/features/mec/meta_boxes/search_form.php:80
1177
  #: app/features/mec/meta_boxes/search_form.php:168
1186
  #: app/features/mec/meta_boxes/search_form.php:983
1187
  #: app/features/mec/meta_boxes/search_form.php:1070
1188
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1189
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1190
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1191
  #: app/features/organizers.php:58 app/features/organizers.php:208
1192
  #: app/features/organizers.php:277 app/features/organizers.php:279
1193
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1194
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1195
  #: app/features/popup/settings.php:263 app/features/search.php:103
1196
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1197
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1317
  #: app/features/booking/calendar_novel.php:145
1318
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1319
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1320
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1321
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1322
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1323
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1324
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1384
 
1385
  #: app/features/autoemails.php:74 app/features/events.php:230
1386
  #: app/features/labels.php:72 app/features/locations.php:70
1387
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1388
  #: app/features/tag.php:70
1389
  #, php-format
1390
  msgid "Edit %s"
1452
  msgid "Go to events page"
1453
  msgstr "Ver eventos en Google Maps"
1454
 
1455
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1456
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1457
  #: app/features/wc.php:91 app/libraries/main.php:3072
1458
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1534
  msgid "Back to Cart"
1535
  msgstr "Regrese a la lista de eventos."
1536
 
1537
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1538
  #: app/features/mec/settings.php:907
1539
  msgid "Event Color"
1540
  msgstr "Color del evento"
1546
  msgstr "Color del evento"
1547
 
1548
  #: app/features/contextual.php:55 app/features/mec.php:546
1549
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1550
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1551
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1552
  #: app/libraries/main.php:738
1553
  msgid "Settings"
1700
  msgstr "Detalles del Evento/Página de Evento Único"
1701
 
1702
  #: app/features/contextual.php:166 app/features/events.php:1298
1703
+ #: app/features/fes/form.php:885
1704
  msgid "Currency Options"
1705
  msgstr "Opciones de moneda"
1706
 
1796
  msgstr ""
1797
 
1798
  #: app/features/dlfile.php:297 app/features/events.php:3874
1799
+ #: app/features/events.php:4183 app/features/events.php:4734
1800
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1801
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1802
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1803
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1806
  msgstr "Titulo"
1807
 
1808
  #: app/features/dlfile.php:301 app/features/events.php:1988
1809
+ #: app/features/events.php:2248 app/features/events.php:4184
1810
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1811
  #: app/libraries/hourlyschedule.php:152
1812
  msgid "Description"
1853
  msgstr "Menos de 10€"
1854
 
1855
  #: app/features/emails/details.php:35 app/features/events.php:1223
1856
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1857
  msgid "After"
1858
  msgstr "Después"
1859
 
1864
  msgstr "Siguiente repetición"
1865
 
1866
  #: app/features/emails/details.php:40 app/features/events.php:192
1867
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1868
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1869
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1870
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1885
  msgid "Add Event"
1886
  msgstr "Nuevo evento"
1887
 
1888
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1889
  msgid "Add New Event"
1890
  msgstr "Añadir nuevo evento"
1891
 
1892
+ #: app/features/events.php:196 app/features/ix.php:4614
1893
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1894
  #: app/skins/map/tpl.php:93
1895
  msgid "No events found!"
1900
  msgstr "Editar Evento"
1901
 
1902
  #: app/features/events.php:199 app/features/fes/list.php:100
1903
+ #: app/features/popup/event.php:259
1904
  msgid "View Event"
1905
  msgstr "Ver evento"
1906
 
1909
  msgstr "No hay eventos en la papelera"
1910
 
1911
  #: app/features/events.php:219 app/features/events.php:3831
1912
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1913
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1914
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1915
  #: app/libraries/main.php:7619
1918
 
1919
  #: app/features/events.php:229 app/features/labels.php:71
1920
  #: app/features/locations.php:69 app/features/organizers.php:69
1921
+ #: app/features/speakers.php:77 app/features/tag.php:69
1922
  #, php-format
1923
  msgid "All %s"
1924
  msgstr "Todos %s"
1925
 
1926
  #: app/features/events.php:231 app/features/labels.php:73
1927
  #: app/features/locations.php:71 app/features/organizers.php:71
1928
+ #: app/features/speakers.php:79 app/features/tag.php:71
1929
  #, php-format
1930
  msgid "View %s"
1931
  msgstr "Ver %s"
1932
 
1933
  #: app/features/events.php:232 app/features/labels.php:74
1934
  #: app/features/locations.php:72 app/features/organizers.php:72
1935
+ #: app/features/speakers.php:80 app/features/tag.php:72
1936
  #, php-format
1937
  msgid "Update %s"
1938
  msgstr "Actualizar %s"
1939
 
1940
  #: app/features/events.php:233 app/features/labels.php:75
1941
  #: app/features/locations.php:73 app/features/organizers.php:73
1942
+ #: app/features/speakers.php:81 app/features/tag.php:73
1943
  #, php-format
1944
  msgid "Add New %s"
1945
  msgstr "Añadir nuevo %s"
1946
 
1947
  #: app/features/events.php:234 app/features/labels.php:76
1948
  #: app/features/locations.php:74 app/features/organizers.php:74
1949
+ #: app/features/speakers.php:82 app/features/tag.php:74
1950
  #, php-format
1951
  msgid "New %s Name"
1952
  msgstr "Nuevo %s Nombre"
1953
 
1954
  #: app/features/events.php:235 app/features/labels.php:77
1955
  #: app/features/locations.php:75 app/features/organizers.php:75
1956
+ #: app/features/speakers.php:83 app/features/tag.php:75
1957
  #, php-format
1958
  msgid "Popular %s"
1959
  msgstr "Popular %s"
1960
 
1961
  #: app/features/events.php:236 app/features/labels.php:78
1962
  #: app/features/locations.php:76 app/features/organizers.php:76
1963
+ #: app/features/speakers.php:84 app/features/tag.php:76
1964
  #, php-format
1965
  msgid "Search %s"
1966
  msgstr "Buscar %s"
1990
  #: app/features/events.php:278 app/features/events.php:336
1991
  #: app/features/locations.php:161 app/features/locations.php:213
1992
  #: app/features/organizers.php:133 app/features/organizers.php:164
1993
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1994
  msgid "Upload/Add image"
1995
  msgstr "Subir/Añadir imagen"
1996
 
1999
  #: app/features/locations.php:393 app/features/locations.php:400
2000
  #: app/features/organizers.php:134 app/features/organizers.php:165
2001
  #: app/features/organizers.php:316 app/features/organizers.php:323
2002
+ #: app/features/speakers.php:188 app/features/speakers.php:239
2003
  msgid "Remove image"
2004
  msgstr "Eliminar imagen"
2005
 
2019
  msgid "Date And Time"
2020
  msgstr "Día y hora"
2021
 
2022
+ #: app/features/events.php:425 app/features/fes/form.php:386
2023
  msgid "Event Repeating"
2024
  msgstr "Repetir el evento"
2025
 
2066
  msgstr "Datos del invitado"
2067
 
2068
  #: app/features/events.php:605 app/features/events.php:2641
2069
+ #: app/features/events.php:4442 app/features/fes.php:280
2070
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2071
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2072
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2073
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2074
  msgid "Name"
2075
  msgstr "Nombre"
2080
  "overwrite in the next import from Google."
2081
  msgstr ""
2082
 
2083
+ #: app/features/events.php:619 app/features/fes/form.php:284
2084
  msgid "Date and Time"
2085
  msgstr "Día y hora"
2086
 
2087
  #: app/features/events.php:622 app/features/events.php:626
2088
+ #: app/features/events.php:3878 app/features/events.php:4185
2089
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2090
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2091
  #: app/features/mec/meta_boxes/display_options.php:57
2092
  #: app/features/mec/meta_boxes/display_options.php:312
2104
  #: app/features/mec/meta_boxes/display_options.php:2347
2105
  #: app/features/mec/meta_boxes/display_options.php:2478
2106
  #: app/features/mec/meta_boxes/display_options.php:2584
2107
+ #: app/features/popup/event.php:79
2108
  msgid "Start Date"
2109
  msgstr "Día de inicio"
2110
 
2111
  #: app/features/events.php:642 app/features/events.php:646
2112
+ #: app/features/events.php:3879 app/features/events.php:4187
2113
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2114
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2115
  #: app/features/mec/meta_boxes/display_options.php:73
2116
  #: app/features/mec/meta_boxes/display_options.php:328
2119
  #: app/features/mec/meta_boxes/display_options.php:788
2120
  #: app/features/mec/meta_boxes/display_options.php:1618
2121
  #: app/features/mec/meta_boxes/display_options.php:2363
2122
+ #: app/features/popup/event.php:96
2123
  msgid "End Date"
2124
  msgstr "Día final"
2125
 
2126
+ #: app/features/events.php:669 app/features/fes/form.php:326
2127
+ #: app/features/popup/event.php:113
2128
  #, fuzzy
2129
  #| msgid "All Day Event"
2130
  msgid "All-day Event"
2131
  msgstr "Evento de todo el día"
2132
 
2133
+ #: app/features/events.php:679 app/features/fes/form.php:329
2134
  msgid "Hide Event Time"
2135
  msgstr "Ocultar hora del evento"
2136
 
2137
+ #: app/features/events.php:689 app/features/fes/form.php:332
2138
  msgid "Hide Event End Time"
2139
  msgstr "Oculta la hora de finalización del evento"
2140
 
2141
  #: app/features/events.php:694 app/features/events.php:698
2142
+ #: app/features/fes/form.php:336
2143
  #, fuzzy
2144
  #| msgid "Note to reviewer"
2145
  msgid "Notes on the time"
2146
  msgstr "Nota al revisor"
2147
 
2148
+ #: app/features/events.php:699 app/features/fes/form.php:337
2149
  #, fuzzy
2150
  #| msgid ""
2151
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2157
  "Muestra la hora del siguiente evento en el calendario. Puedes insertar Zona "
2158
  "horaria, etc en este campo."
2159
 
2160
+ #: app/features/events.php:711 app/features/fes/form.php:344
2161
  #, fuzzy
2162
  #| msgid "Timezone: %s"
2163
  msgid "Timezone"
2168
  #: app/features/events.php:1793 app/features/events.php:1813
2169
  #: app/features/events.php:1868 app/features/events.php:2438
2170
  #: app/features/events.php:2561 app/features/events.php:2672
2171
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2172
  msgid "Inherit from global options"
2173
  msgstr "Heredar opciones globales"
2174
 
2175
  #: app/features/events.php:725 app/features/events.php:728
2176
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2177
  #: app/features/mec/settings.php:858
2178
  #, fuzzy
2179
  #| msgid "Countdown View"
2180
  msgid "Countdown Method"
2181
  msgstr "Vista de cuenta regresiva"
2182
 
2183
+ #: app/features/events.php:730 app/features/fes/form.php:363
2184
  #, fuzzy
2185
  #| msgid "On Event Start"
2186
  msgid "Count to Event Start"
2187
  msgstr "En el inicio del evento"
2188
 
2189
+ #: app/features/events.php:731 app/features/fes/form.php:364
2190
  #, fuzzy
2191
  #| msgid "On Event End"
2192
  msgid "Count to Event End"
2193
  msgstr "El fin del evento"
2194
 
2195
+ #: app/features/events.php:737 app/features/fes/form.php:371
2196
  #: app/modules/weather/darksky.php:57
2197
  msgid "Visibility"
2198
  msgstr "Visibilidad"
2199
 
2200
+ #: app/features/events.php:740 app/features/fes/form.php:374
2201
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2202
  #, fuzzy
2203
  #| msgid "Visibility"
2204
  msgid "Event Visibility"
2205
  msgstr "Visibilidad"
2206
 
2207
+ #: app/features/events.php:741 app/features/fes/form.php:375
2208
  #, fuzzy
2209
  #| msgid "Booking Price"
2210
  msgid "Show on Shortcodes"
2211
  msgstr "Precio de la reserva"
2212
 
2213
+ #: app/features/events.php:742 app/features/fes/form.php:376
2214
  #, fuzzy
2215
  #| msgid "Shortcodes"
2216
  msgid "Hide on Shortcodes"
2217
  msgstr "Shortcodes"
2218
 
2219
+ #: app/features/events.php:749 app/features/fes/form.php:384
2220
  #, fuzzy
2221
  #| msgid "Repeat"
2222
  msgid "Repeating"
2228
  msgid "Event Repeating (Recurring events)"
2229
  msgstr "Repetir el evento"
2230
 
2231
+ #: app/features/events.php:762 app/features/fes/form.php:390
2232
  msgid "Repeats"
2233
  msgstr "Repeticiones"
2234
 
2235
+ #: app/features/events.php:770 app/features/fes/form.php:392
2236
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2237
+ #: app/skins/default_full_calendar/tpl.php:79
2238
  #: app/skins/full_calendar/tpl.php:140
2239
  msgid "Daily"
2240
  msgstr "Diariamente"
2241
 
2242
+ #: app/features/events.php:777 app/features/fes/form.php:393
2243
+ #: app/libraries/skins.php:1772
2244
  msgid "Every Weekday"
2245
  msgstr "Cada día de la semana"
2246
 
2247
+ #: app/features/events.php:784 app/features/fes/form.php:394
2248
+ #: app/libraries/skins.php:1769
2249
  msgid "Every Weekend"
2250
  msgstr "Cada fin de semana"
2251
 
2252
+ #: app/features/events.php:791 app/features/fes/form.php:395
2253
  msgid "Certain Weekdays"
2254
  msgstr "Ciertos días de la semana"
2255
 
2256
+ #: app/features/events.php:798 app/features/fes/form.php:396
2257
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2258
  #: app/skins/full_calendar/tpl.php:139
2259
  msgid "Weekly"
2260
  msgstr "Semanal"
2261
 
2262
+ #: app/features/events.php:805 app/features/fes/form.php:397
2263
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2264
+ #: app/skins/default_full_calendar/tpl.php:77
2265
  #: app/skins/full_calendar/tpl.php:138
2266
  msgid "Monthly"
2267
  msgstr "Mensual"
2268
 
2269
+ #: app/features/events.php:812 app/features/fes/form.php:398
2270
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2271
+ #: app/skins/default_full_calendar/tpl.php:76
2272
  #: app/skins/full_calendar/tpl.php:137
2273
  msgid "Yearly"
2274
  msgstr "Anual"
2275
 
2276
+ #: app/features/events.php:819 app/features/fes/form.php:399
2277
  msgid "Custom Days"
2278
  msgstr "Días personalizados"
2279
 
2280
+ #: app/features/events.php:826 app/features/fes/form.php:400
2281
  #, fuzzy
2282
  #| msgid "Advanced Method"
2283
  msgid "Advanced"
2284
  msgstr "Método avanzado"
2285
 
2286
+ #: app/features/events.php:831 app/features/fes/form.php:404
2287
  msgid "Repeat Interval"
2288
  msgstr "Intervalo de repetición"
2289
 
2290
+ #: app/features/events.php:833 app/features/fes/form.php:405
2291
  msgid "Repeat interval"
2292
  msgstr "Intervalo de repetición"
2293
 
2294
+ #: app/features/events.php:837 app/features/fes/form.php:408
2295
  msgid "Week Days"
2296
  msgstr "Días de semana"
2297
 
2305
 
2306
  #: app/features/events.php:860 app/features/events.php:2101
2307
  #: app/features/events.php:2129 app/features/events.php:2343
2308
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2309
  #: app/features/ix/import_g_calendar.php:51
2310
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2311
  #: app/libraries/skins.php:1389
2316
  #: app/features/events.php:2085 app/features/events.php:2167
2317
  #: app/features/events.php:2332 app/features/events.php:2376
2318
  #: app/features/events.php:2449 app/features/events.php:2566
2319
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2320
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2321
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2322
  msgid "Add"
2323
  msgstr "Añadir"
2324
 
2325
+ #: app/features/events.php:877 app/features/fes/form.php:456
2326
  #, fuzzy
2327
  #| msgid "Custom Days"
2328
  msgid "Custom Days Repeating"
2329
  msgstr "Días personalizados"
2330
 
2331
+ #: app/features/events.php:880 app/features/fes/form.php:459
2332
  msgid ""
2333
  "Add certain days to event occurrence dates. If you have a single day event, "
2334
  "start and end dates should be the same, If you have a multiple day event, "
2337
 
2338
  #: app/features/events.php:891 app/features/events.php:2105
2339
  #: app/features/events.php:2133 app/features/events.php:2347
2340
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2341
  msgid "End"
2342
  msgstr ""
2343
 
2344
+ #: app/features/events.php:968 app/features/fes/form.php:532
2345
  #, fuzzy
2346
  #| msgid "Ticket name"
2347
  msgid "First"
2348
  msgstr "Nombre de la entrada"
2349
 
2350
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2351
  #, fuzzy
2352
  #| msgid "second"
2353
  msgid "Second"
2354
  msgstr "segundo"
2355
 
2356
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2357
  #, fuzzy
2358
  #| msgid "Third Party"
2359
  msgid "Third"
2360
  msgstr "Terceros"
2361
 
2362
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2363
  msgid "Fourth"
2364
  msgstr ""
2365
 
2366
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2367
  #, fuzzy
2368
  #| msgid "Last Year"
2369
  msgid "Last"
2370
  msgstr "Año pasado"
2371
 
2372
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2373
  msgid "Ends Repeat"
2374
  msgstr "Finaliza la repetición"
2375
 
2376
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2377
  msgid "Never"
2378
  msgstr "Nunca"
2379
 
2380
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2381
  msgid "On"
2382
  msgstr "On"
2383
 
2384
  #: app/features/events.php:1227 app/features/events.php:1231
2385
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2386
  msgid "Occurrences times"
2387
  msgstr "Ocurrencias del evento"
2388
 
2398
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
2399
  "estableces en 10, el evento terminará después de 10 repeticiones."
2400
 
2401
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2402
  #, fuzzy
2403
  #| msgid "Next Occurrence of Other Events"
2404
  msgid "Show only one occurrence of this event"
2405
  msgstr "Próxima aparición de otros eventos"
2406
 
2407
+ #: app/features/events.php:1277 app/features/events.php:4195
2408
+ #: app/features/fes/form.php:867
2409
  #: app/features/mec/meta_boxes/search_form.php:116
2410
  #: app/features/mec/meta_boxes/search_form.php:204
2411
  #: app/features/mec/meta_boxes/search_form.php:292
2429
  #: app/features/mec/notifications.php:1511
2430
  #: app/features/mec/notifications.php:1628
2431
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2432
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2433
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2434
  #: app/widgets/single.php:122
2435
  msgid "Event Cost"
2436
  msgstr "Coste del evento"
2437
 
2438
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2439
  #, fuzzy
2440
  #| msgid "Show weather module on event page"
2441
  msgid "Show the minimum price based on tickets"
2442
  msgstr "Módulo de tiempo para mostrar en la página del evento"
2443
 
2444
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2445
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2446
  #: app/libraries/main.php:646
2447
  msgid "Currency"
2448
  msgstr "Moneda corriente"
2449
 
2450
  #: app/features/events.php:1310 app/features/events.php:1315
2451
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2452
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2453
  msgid "Currency Sign"
2454
  msgstr "Tipo de moneda"
2455
 
2456
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2457
  #: app/features/mec/settings.php:600
2458
  msgid "Default value will be \"currency\" if you leave it empty."
2459
  msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
2460
 
2461
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2462
  #: app/features/mec/settings.php:607
2463
  msgid "Currency Position"
2464
  msgstr "Posición en moneda extranjera"
2465
 
2466
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2467
  #: app/features/mec/settings.php:610
2468
  #, fuzzy
2469
  #| msgid "Before $10"
2470
  msgid "$10 (Before)"
2471
  msgstr "Menos de 10€"
2472
 
2473
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2474
  #: app/features/mec/settings.php:611
2475
  msgid "$ 10 (Before with Space)"
2476
  msgstr ""
2477
 
2478
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2479
  #: app/features/mec/settings.php:612
2480
  #, fuzzy
2481
  #| msgid "After"
2482
  msgid "10$ (After)"
2483
  msgstr "Después"
2484
 
2485
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2486
  #: app/features/mec/settings.php:613
2487
  msgid "10 $ (After with Space)"
2488
  msgstr ""
2489
 
2490
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2491
  #: app/features/mec/settings.php:618
2492
  msgid "Thousand Separator"
2493
  msgstr "Separador de miles"
2494
 
2495
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2496
  #: app/features/mec/settings.php:624
2497
  msgid "Decimal Separator"
2498
  msgstr "Separador de decimales"
2499
 
2500
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2501
  #: app/features/mec/settings.php:634
2502
  msgid "No decimal"
2503
  msgstr "No decimal"
2523
  msgid "Day 1"
2524
  msgstr ""
2525
 
2526
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2527
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2528
  msgid "Event Links"
2529
  msgstr "Enlaces de eventos"
2530
 
2531
  #: app/features/events.php:1501 app/features/events.php:1509
2532
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2533
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2534
  #: app/libraries/main.php:7649
2535
  msgid "Event Link"
2536
  msgstr "Enlace del evento"
2537
 
2538
  #: app/features/events.php:1504 app/features/events.php:1522
2539
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2540
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2541
  msgid "eg. http://yoursite.com/your-event"
2542
  msgstr "ej. http://yoursite.com/your-event"
2543
 
2558
  msgid "URL Shortener"
2559
  msgstr ""
2560
 
2561
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2562
+ #: app/features/occurrences.php:530
2563
  msgid "More Information"
2564
  msgstr "Más Información"
2565
 
2566
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2567
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2568
  #: app/features/popup/shortcode.php:481
2569
  msgid "Current Window"
2570
  msgstr "Ventana actual"
2571
 
2572
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2573
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2574
  #: app/features/popup/shortcode.php:485
2575
  msgid "New Window"
2576
  msgstr "Nueva ventana"
2577
 
2578
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2579
  msgid ""
2580
  "If you fill it, it will be shown in event details page as an optional link. "
2581
  "Insert full link including http(s)://"
2955
  msgstr "Ticket"
2956
 
2957
  #: app/features/events.php:1944 app/features/events.php:2211
2958
+ #: app/features/events.php:4182 app/features/fes.php:280
2959
  #: app/features/labels.php:183 app/features/locations.php:266
2960
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2961
  msgid "ID"
2962
  msgstr "ID"
2963
 
2966
  msgstr "Nombre del ticket"
2967
 
2968
  #: app/features/events.php:1956 app/features/events.php:2219
2969
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2970
  msgid "Start Time"
2971
  msgstr "Hora de Inicio"
2972
 
2973
  #: app/features/events.php:1970 app/features/events.php:2233
2974
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2975
  msgid "End Time"
2976
  msgstr "Hora de finalización"
2977
 
2993
  #: app/features/events.php:2007 app/features/events.php:2011
2994
  #: app/features/events.php:2109 app/features/events.php:2136
2995
  #: app/features/events.php:2265 app/features/events.php:2268
2996
+ #: app/features/events.php:2349 app/features/events.php:4743
2997
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2998
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2999
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3167
  msgid "Fixed Fields"
3168
  msgstr "Campo obligatorio"
3169
 
3170
+ #: app/features/events.php:2887 app/features/events.php:4737
3171
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3172
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3173
  msgid "Attendees"
3199
  msgstr "Eventos pasados"
3200
 
3201
  #: app/features/events.php:3757 app/features/mec.php:1374
3202
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3203
  msgid "Upcoming Events"
3204
  msgstr "Próximos Eventos"
3205
 
3260
  msgstr "Exportación JSON"
3261
 
3262
  #: app/features/events.php:4068 app/features/events.php:4069
3263
+ #: app/features/events.php:4295
3264
  msgid "Duplicate"
3265
  msgstr "Duplicar"
3266
 
3267
+ #: app/features/events.php:4189
3268
  msgid "Link"
3269
  msgstr "Enlace"
3270
 
3271
+ #: app/features/events.php:4191 app/features/locations.php:111
3272
  #: app/features/locations.php:181 app/features/locations.php:268
3273
  #: app/features/mec/meta_boxes/search_form.php:108
3274
  #: app/features/mec/meta_boxes/search_form.php:196
3286
  msgid "Address"
3287
  msgstr "Dirección"
3288
 
3289
+ #: app/features/events.php:4193
3290
  #, php-format
3291
  msgid "%s Tel"
3292
  msgstr "%s Teléfono "
3293
 
3294
+ #: app/features/events.php:4194
3295
  #, php-format
3296
  msgid "%s Email"
3297
  msgstr "%s Correo electrónico"
3298
 
3299
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3300
  #: app/features/mec/settings.php:876
3301
  msgid "Featured Image"
3302
  msgstr "Imagen destacada"
3303
 
3304
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3305
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3306
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3307
  msgid "Tags"
3308
  msgstr "Tags"
3309
 
3310
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3311
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3312
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3313
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3314
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3315
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3316
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3318
  msgid "Speakers"
3319
  msgstr ""
3320
 
3321
+ #: app/features/events.php:4448 app/features/fes.php:280
3322
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3323
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3324
  #: app/libraries/main.php:7592
3325
  msgid "Ticket"
3326
  msgstr "Ticket"
3327
 
3328
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3329
  msgid "Variations"
3330
  msgstr ""
3331
 
3332
+ #: app/features/events.php:4466 app/features/fes.php:356
3333
  msgid "Unknown"
3334
  msgstr ""
3335
 
3336
+ #: app/features/events.php:4494
3337
  msgid ""
3338
  "If you want to send an email, first select your attendees and then click in "
3339
  "the button below, please."
3340
  msgstr ""
3341
 
3342
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3343
  #, fuzzy
3344
  #| msgid "Organizer Email"
3345
  msgid "Send Email"
3346
  msgstr "Correo electrónico del organizador"
3347
 
3348
+ #: app/features/events.php:4498
3349
  #, fuzzy
3350
  #| msgid "Attendees Form"
3351
  msgid "No Attendees Found!"
3352
  msgstr "Asistentes"
3353
 
3354
+ #: app/features/events.php:4800
3355
  #, fuzzy
3356
  #| msgid "No events found in Trash!"
3357
  msgid "No Bookings Found!"
3505
  msgid "The event published."
3506
  msgstr "El evento a sido publicado."
3507
 
3508
+ #: app/features/fes/form.php:180
3509
  #, fuzzy
3510
  #| msgid "Go back to events list."
3511
  msgid "Go back to events list"
3512
  msgstr "Regrese a la lista de eventos."
3513
 
3514
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3515
  #: app/features/mec/settings.php:1171
3516
  msgid "Excerpt"
3517
  msgstr ""
3518
 
3519
+ #: app/features/fes/form.php:273
3520
  #, fuzzy
3521
  #| msgid "On Event Start"
3522
  msgid "Optional Event Excerpt"
3523
  msgstr "En el inicio del evento"
3524
 
3525
+ #: app/features/fes/form.php:280
3526
  msgid ""
3527
  "This event is imported from Google calendar so if you modify it would "
3528
  "overwrite in the next import from Google."
3529
  msgstr ""
3530
 
3531
+ #: app/features/fes/form.php:409
3532
  #: app/features/mec/meta_boxes/display_options.php:1494
3533
  #: app/libraries/main.php:476
3534
  msgid "Monday"
3535
  msgstr "Lunes"
3536
 
3537
+ #: app/features/fes/form.php:410
3538
  #: app/features/mec/meta_boxes/display_options.php:1495
3539
  #: app/libraries/main.php:476
3540
  msgid "Tuesday"
3541
  msgstr "Martes"
3542
 
3543
+ #: app/features/fes/form.php:411
3544
  #: app/features/mec/meta_boxes/display_options.php:1496
3545
  #: app/libraries/main.php:476
3546
  msgid "Wednesday"
3547
  msgstr "Miércoles"
3548
 
3549
+ #: app/features/fes/form.php:412
3550
  #: app/features/mec/meta_boxes/display_options.php:1497
3551
  #: app/libraries/main.php:476
3552
  msgid "Thursday"
3553
  msgstr "Jueves"
3554
 
3555
+ #: app/features/fes/form.php:413
3556
  #: app/features/mec/meta_boxes/display_options.php:1498
3557
  #: app/libraries/main.php:476
3558
  msgid "Friday"
3559
  msgstr "Viernes"
3560
 
3561
+ #: app/features/fes/form.php:414
3562
  #: app/features/mec/meta_boxes/display_options.php:1499
3563
  #: app/libraries/main.php:476
3564
  msgid "Saturday"
3565
  msgstr "Sábado"
3566
 
3567
+ #: app/features/fes/form.php:415
3568
  #: app/features/mec/meta_boxes/display_options.php:1493
3569
  #: app/libraries/main.php:476
3570
  msgid "Sunday"
3571
  msgstr "Domingo"
3572
 
3573
+ #: app/features/fes/form.php:768
3574
  msgid ""
3575
  "The event will finish after certain repeats. For example if you set it to "
3576
  "10, the event will finish after 10 repeats."
3578
  "El evento finalizará después de ciertas repeticiones. Por ejemplo, si "
3579
  "estableces en 10, el evento terminará después de 10 repeticiones."
3580
 
3581
+ #: app/features/fes/form.php:792
3582
  msgid "Note to reviewer"
3583
  msgstr "Nota al revisor"
3584
 
3585
+ #: app/features/fes/form.php:810
3586
  msgid "User Data"
3587
  msgstr "Datos del usuario"
3588
 
3589
+ #: app/features/fes/form.php:813
3590
  msgid "eg. yourname@gmail.com"
3591
  msgstr "Ejemplo. sunombre@gmail.com"
3592
 
3593
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3594
+ #: app/features/popup/event.php:190
3595
  msgid "eg. John Smith"
3596
  msgstr "ej. John Smith"
3597
 
3598
+ #: app/features/fes/form.php:835
3599
  #, fuzzy
3600
  #| msgid ""
3601
  #| "If you fill it, it will be replaced instead of default event page link. "
3607
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
3608
  "defecto. Inserta todo el enlace incluyendo http(s)://"
3609
 
3610
+ #: app/features/fes/form.php:958
3611
  msgid "Remove Image"
3612
  msgstr "Eliminar imagen"
3613
 
3614
+ #: app/features/fes/form.php:1048
3615
  msgid "Insert your desired tags, comma separated."
3616
  msgstr "Inserta las etiquetas que quieras, separadas por comas."
3617
 
3618
+ #: app/features/fes/form.php:1070
3619
  msgid "Speakers Names"
3620
  msgstr ""
3621
 
3622
+ #: app/features/fes/form.php:1071
3623
  msgid "Separate names with commas: Justin, Chris"
3624
  msgstr ""
3625
 
3626
+ #: app/features/fes/form.php:1116
3627
  #, fuzzy, php-format
3628
  #| msgid "Please %s/%s in order to submit new events."
3629
  msgid "I accept the %s in order to submit an event."
3630
  msgstr "Por favor %s/%s para poder añadir nuevos eventos."
3631
 
3632
+ #: app/features/fes/form.php:1116
3633
  msgid "Privacy Policy"
3634
  msgstr ""
3635
 
3636
+ #: app/features/fes/form.php:1118
3637
  #, fuzzy
3638
  #| msgid "Please %s/%s in order to submit new events."
3639
  msgid "I accept the Privacy Policy in order to submit an event."
3640
  msgstr "Por favor %s/%s para poder añadir nuevos eventos."
3641
 
3642
+ #: app/features/fes/form.php:1124
3643
  #, fuzzy
3644
  #| msgid "Edit Event"
3645
  msgid "Submit Event"
3730
  msgid "The events are imported successfully!"
3731
  msgstr "¡Los eventos se importaron correctamente!"
3732
 
3733
+ #: app/features/ix.php:1342
3734
  msgid "Third Party plugin is not installed and activated!"
3735
  msgstr "¡Plugin de terceros no esta instalado ni activado!"
3736
 
3737
+ #: app/features/ix.php:1366
3738
  msgid "Third Party plugin is invalid!"
3739
  msgstr "¡El Plugin de terceros no es válido!"
3740
 
3741
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3742
  #, fuzzy
3743
  #| msgid "Both of API key and Calendar ID are required!"
3744
  msgid "API key and Calendar ID are required!"
3745
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
3746
 
3747
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3748
  #, fuzzy
3749
  #| msgid "Please select some events to import!"
3750
  msgid "Please select events to import!"
3751
  msgstr "Por favor, ¡selecciona algunos eventos para importar!"
3752
 
3753
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3754
  #, fuzzy
3755
  #| msgid "Both of API key and Calendar ID are required!"
3756
  msgid "API key and Group URL are required!"
3757
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
3758
 
3759
+ #: app/features/ix.php:4137
3760
  msgid "Check at Meetup"
3761
  msgstr ""
3762
 
3763
+ #: app/features/ix.php:4303
3764
  #, fuzzy
3765
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3766
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3768
  "Todos los ID de cliente, secreto de cliente y ID de calendario son "
3769
  "necesarios."
3770
 
3771
+ #: app/features/ix.php:4326
3772
  #, fuzzy, php-format
3773
  #| msgid "All seems good! Please click %s for authenticating your app."
3774
  msgid "All seems good! Please click %s to authenticate your app."
3775
  msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
3776
 
3777
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3778
  #: app/features/mec/settings.php:1496
3779
  msgid "here"
3780
  msgstr ""
3781
 
3782
+ #: app/features/ix.php:4381
3783
  #, fuzzy
3784
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3785
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3787
  "¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
3788
  "son obligatorios!"
3789
 
3790
+ #: app/features/ix.php:4543
3791
  #, fuzzy, php-format
3792
  #| msgid "%s events added to Google Calendar successfully."
3793
  msgid "%s events added to Google Calendar with success."
3794
  msgstr "%s eventos añadidos con éxito a Google Calendar."
3795
 
3796
+ #: app/features/ix.php:4544
3797
  #, fuzzy, php-format
3798
  #| msgid "%s previously added events get updated."
3799
  msgid "%s Updated previously added events."
3800
  msgstr "%s eventos añadidos previamente se actualizan."
3801
 
3802
+ #: app/features/ix.php:4545
3803
  #, php-format
3804
  msgid "%s events failed to add for following reasons: %s"
3805
  msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
3806
 
3807
+ #: app/features/ix.php:4577
3808
  msgid "Please insert your Facebook page's link."
3809
  msgstr ""
3810
 
3811
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3812
  #, fuzzy
3813
  #| msgid ""
3814
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3820
  "No pudimos reconocer tu página de Facebook. Por favor, verifícala y escribe "
3821
  "un nuevo enlace de página de Facebook."
3822
 
3823
+ #: app/features/ix.php:4625
3824
  msgid "Please insert your facebook page's link."
3825
  msgstr "Por favor, inserta el enlace de tu página de Facebook."
3826
 
4031
  msgid "Add to Google Calendar"
4032
  msgstr "Añadir a Google Calendar"
4033
 
4034
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
4035
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
4036
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
4037
  #: app/features/mec/single.php:604
4150
  msgid "Import all of your Facebook events into MEC."
4151
  msgstr "Importar todos tus eventos de Facebook a MEC."
4152
 
4153
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4154
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4155
  msgid "Documentation"
4156
  msgstr "Documentación"
4463
  msgstr ""
4464
 
4465
  #: app/features/labels.php:79 app/features/locations.php:77
4466
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4467
  #: app/features/tag.php:77
4468
  #, fuzzy, php-format
4469
  #| msgid "No Search Options"
4471
  msgstr "No hay opciones de búsqueda"
4472
 
4473
  #: app/features/labels.php:80 app/features/locations.php:78
4474
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4475
  #: app/features/tag.php:78
4476
  #, fuzzy, php-format
4477
  #| msgid "No events found!"
4515
  msgstr ""
4516
 
4517
  #: app/features/labels.php:186 app/features/locations.php:269
4518
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4519
  #: app/modules/booking/steps/tickets.php:172
4520
  msgid "Count"
4521
  msgstr "Contador"
4531
  msgstr "Evento %s"
4532
 
4533
  #: app/features/locations.php:59 app/features/mec.php:526
4534
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4535
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4536
  #: app/libraries/main.php:7623
4537
  msgid "Locations"
4542
  msgstr "Introduce la dirección del lugar"
4543
 
4544
  #: app/features/locations.php:131 app/features/locations.php:197
4545
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4546
  msgid "Latitude"
4547
  msgstr "Latitud"
4548
 
4553
  msgstr "Geo latitud (Opcional)"
4554
 
4555
  #: app/features/locations.php:139 app/features/locations.php:201
4556
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4557
  msgid "Longitude"
4558
  msgstr "Longitud"
4559
 
4578
 
4579
  #: app/features/locations.php:156 app/features/locations.php:210
4580
  #: app/features/organizers.php:128 app/features/organizers.php:161
4581
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4582
  msgid "Thumbnail"
4583
  msgstr "Miniatura"
4584
 
4585
  #: app/features/locations.php:329 app/features/occurrences.php:460
4586
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4587
  #, php-format
4588
  msgid "Event Main %s"
4589
  msgstr "Principal %s del evento"
4590
 
4591
  #: app/features/locations.php:332 app/features/occurrences.php:464
4592
+ #: app/features/popup/event.php:121
4593
  msgid "Hide location"
4594
  msgstr "Ocultar lugar"
4595
 
4596
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4597
  msgid "Insert a new location"
4598
  msgstr "Insertar nuevo lugar"
4599
 
4601
  msgid "Choose one of saved locations or insert new one below."
4602
  msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
4603
 
4604
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4605
  msgid "Location Name"
4606
  msgstr "Nombre del lugar"
4607
 
4608
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4609
  msgid "eg. City Hall"
4610
  msgstr "ej. Almería"
4611
 
4612
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4613
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4614
  msgid "Event Location"
4615
  msgstr "Lugar del evento"
4616
 
4617
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4618
  msgid "eg. City hall, Manhattan, New York"
4619
  msgstr "ej. Almería, España"
4620
 
4621
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4622
  #, fuzzy
4623
  #| msgid "Longitude"
4624
  msgid "Latitude/Longitude"
4625
  msgstr "Longitud"
4626
 
4627
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4628
  msgid ""
4629
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4630
  "to convert the location address to geopoint, Latitude and Longitude are the "
4633
  "the location on the map to find lat long coordinates."
4634
  msgstr ""
4635
 
4636
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4637
  msgid "Get Latitude and Longitude"
4638
  msgstr ""
4639
 
4640
  #: app/features/locations.php:392 app/features/organizers.php:315
4641
+ #: app/features/popup/event.php:209
4642
  msgid "Choose image"
4643
  msgstr "Elegir imagen"
4644
 
4645
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4646
+ #: app/features/popup/event.php:140
4647
  msgid "Don't show map in single event page"
4648
  msgstr "No mostrar el mapa en la página del detalle del evento"
4649
 
4650
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4651
  #: app/libraries/main.php:7654
4652
  #, fuzzy
4653
  #| msgid "Locations"
4654
  msgid "Other Locations"
4655
  msgstr "Lugar"
4656
 
4657
+ #: app/features/locations.php:413
4658
  #, fuzzy
4659
  #| msgid ""
4660
  #| "You can select extra organizers in addition to main organizer if you like."
4729
  msgid "Support"
4730
  msgstr "Soporte"
4731
 
4732
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4733
  #: app/features/mec/meta_boxes/filter.php:71
4734
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4735
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4737
  msgstr "Organizadores"
4738
 
4739
  #: app/features/mec.php:536 app/features/mec.php:596
4740
+ #: app/features/mec/dashboard.php:218
4741
  msgid "Shortcodes"
4742
  msgstr "Shortcodes"
4743
 
4956
  msgstr ""
4957
 
4958
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4959
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4960
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4961
  msgid "Version"
4962
  msgstr "Versión"
4982
  msgstr "Buscar %s"
4983
 
4984
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4985
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4986
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4987
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4988
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4989
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4990
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5575
  msgid "It applies only to the orders that are related to MEC."
5576
  msgstr ""
5577
 
5578
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5579
  #, fuzzy
5580
  #| msgid "Add to Google Calendar"
5581
  msgid "After Add to Cart"
5582
  msgstr "Añadir a Google Calendar"
5583
 
5584
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5585
  #, fuzzy
5586
  #| msgid "Get Directions"
5587
  msgid "Redirect to Cart"
5588
  msgstr "Cómo llegar"
5589
 
5590
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5591
  #, fuzzy
5592
  #| msgid "Get Directions"
5593
  msgid "Redirect to Checkout"
5594
  msgstr "Cómo llegar"
5595
 
5596
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5597
  #, fuzzy
5598
  #| msgid "View Detail Button"
5599
  msgid "Optional View Cart Button"
5600
  msgstr "Ver detalle del botón"
5601
 
5602
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5603
  msgid "Optional Checkout Button"
5604
  msgstr ""
5605
 
5655
  "(Stripe) got canceled."
5656
  msgstr ""
5657
 
5658
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5659
+ #, fuzzy
5660
+ #| msgid "Support"
5661
+ msgid "MEC Cart"
5662
+ msgstr "Soporte"
5663
+
5664
+ #: app/features/mec/booking.php:1118
5665
  msgid "Use MEC Cart System"
5666
  msgstr ""
5667
 
5668
+ #: app/features/mec/booking.php:1120
5669
  msgid ""
5670
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5671
  "adding a simple cart and checkout system to your website."
5672
  msgstr ""
5673
 
5674
+ #: app/features/mec/booking.php:1122
5675
  msgid "You cannot use following MEC features while using MEC Cart."
5676
  msgstr ""
5677
 
5678
+ #: app/features/mec/booking.php:1124
5679
  #, fuzzy
5680
  #| msgid "Payment Gateways"
5681
  msgid "WooCommerce as Payment Gateway"
5682
  msgstr "Pasarelas de pago"
5683
 
5684
+ #: app/features/mec/booking.php:1125
5685
  #, fuzzy
5686
  #| msgid "Next Occurrence of Other Events"
5687
  msgid "Currency Per Event"
5688
  msgstr "Próxima aparición de otros eventos"
5689
 
5690
+ #: app/features/mec/booking.php:1126
5691
  #, fuzzy
5692
  #| msgid "Payment Gateways"
5693
  msgid "Disable Gateways Per Event"
5694
  msgstr "Pasarelas de pago"
5695
 
5696
+ #: app/features/mec/booking.php:1127
5697
  #, fuzzy
5698
  #| msgid "Payment Gateways"
5699
  msgid "Stripe Connect Gateway"
5700
  msgstr "Pasarelas de pago"
5701
 
5702
+ #: app/features/mec/booking.php:1128
5703
  #, fuzzy
5704
  #| msgid "Payment Gateways"
5705
  msgid "Pay By WooCommerce Gateway"
5706
  msgstr "Pasarelas de pago"
5707
 
5708
+ #: app/features/mec/booking.php:1129
5709
  #, fuzzy
5710
  #| msgid "Organizer Tel"
5711
  msgid "Organizer Payment Module"
5712
  msgstr "Teléfono del Organizador"
5713
 
5714
+ #: app/features/mec/booking.php:1133
5715
  #, fuzzy
5716
  #| msgid "Start Date"
5717
  msgid "Cart Page"
5718
  msgstr "Día de inicio"
5719
 
5720
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5721
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5722
  #, php-format
5723
  msgid "Put %s shortcode into the page."
5724
  msgstr "Pon el shortcode %s en la página."
5725
 
5726
+ #: app/features/mec/booking.php:1145
5727
  #, fuzzy
5728
  #| msgid "Checkout"
5729
  msgid "Checkout Page"
5730
  msgstr "Checkout"
5731
 
5732
+ #: app/features/mec/booking.php:1171
5733
  #, fuzzy
5734
  #| msgid "Download Invoice"
5735
  msgid "Enable Cart Invoice"
5736
  msgstr "Descargar factura"
5737
 
5738
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5739
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5740
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5741
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5743
  msgid "Saved"
5744
  msgstr "Guardado"
5745
 
5746
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5747
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5748
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5749
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5751
  msgid "Settings Saved!"
5752
  msgstr "¡Ajustes guardados!"
5753
 
5754
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5755
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5756
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5757
  msgid "Please Refresh Page"
5767
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5768
  msgstr "%s - El sistema gestor de eventos más potente y fácil de usar"
5769
 
5770
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5771
  #, fuzzy, php-format
5772
  #| msgid ""
5773
  #| "You're using %s version of Modern Events Calendar. To use advanced "
5782
  "sistema de reserva avanzado, las temas modernos como agenda, horario, "
5783
  "masonry, vista anual, puntos disponibles, etc podrías %s a la versión Pro."
5784
 
5785
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5786
  msgid "lite"
5787
  msgstr "lite"
5788
 
5789
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5790
  #: app/features/mec/support.php:126
5791
  msgid "GO PREMIUM"
5792
  msgstr "IR A PREMIUM"
5793
 
5794
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5795
  #, fuzzy
5796
  #| msgid "Modern Events Calendar"
5797
  msgid "Getting started with Modern Events Calendar"
5798
  msgstr "Modern Events Calendar"
5799
 
5800
+ #: app/features/mec/dashboard.php:113
5801
  msgid ""
5802
  "In this short video, you can learn how to make an event and put a calendar "
5803
  "on your website. Please watch this 2 minutes video to the end."
5804
  msgstr ""
5805
 
5806
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5807
  #, fuzzy
5808
  #| msgid "MEC Activation"
5809
  msgid "License Activation"
5810
  msgstr "Activación MEC"
5811
 
5812
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5813
  #, fuzzy
5814
  #| msgid "MEC Activation"
5815
  msgid "Activate Addons"
5816
  msgstr "Activación MEC"
5817
 
5818
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5819
  msgid "You cannot access this section."
5820
  msgstr ""
5821
 
5822
+ #: app/features/mec/dashboard.php:159
5823
  msgid ""
5824
  "In order to use all plugin features and options, please enter your purchase "
5825
  "code."
5826
  msgstr ""
5827
 
5828
+ #: app/features/mec/dashboard.php:267
5829
  msgid "Popular Gateways"
5830
  msgstr "Pasarelas de pago populares"
5831
 
5832
+ #: app/features/mec/dashboard.php:325
5833
  msgid "Change Log"
5834
  msgstr "Historial de cambios"
5835
 
7397
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7398
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7399
  #: app/features/popup/settings.php:272 app/features/search.php:109
7400
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7401
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7402
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7403
  #: app/modules/speakers/details.php:18
8748
  msgid "Please, insert comma to separate reminder hours."
8749
  msgstr ""
8750
 
8751
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8752
  #: app/libraries/main.php:705
8753
  msgid "New Event"
8754
  msgstr "Nuevo evento"
11069
  msgid "Choose one of saved locations."
11070
  msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
11071
 
11072
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
11073
+ #: app/features/popup/event.php:171
11074
  msgid "Hide organizer"
11075
  msgstr "Ocultar organizador"
11076
 
11077
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
11078
+ #: app/features/popup/event.php:180
11079
  msgid "Choose one of saved organizers or insert new one below."
11080
  msgstr "Elige uno de los organizadores o inserta uno nuevo a continuación."
11081
 
11088
  msgstr "Insertar correo electrónico del organizador."
11089
 
11090
  #: app/features/organizers.php:120 app/features/organizers.php:157
11091
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
11092
  msgid "Link to organizer page"
11093
  msgstr "Enlace a la página del organizador"
11094
 
11102
  msgid "Contact info"
11103
  msgstr "Información de contacto"
11104
 
11105
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11106
  msgid "Insert a new organizer"
11107
  msgstr "Insertar nuevo organizador"
11108
 
11109
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11110
  msgid "Phone number."
11111
  msgstr "Número de teléfono."
11112
 
11113
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11114
  msgid "eg. +1 (234) 5678"
11115
  msgstr "ej. +34 900 123 456"
11116
 
11117
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11118
  msgid "Email address."
11119
  msgstr "Correo electrónico."
11120
 
11121
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11122
  msgid "eg. john@smith.com"
11123
  msgstr "ej. user@yoursite.com"
11124
 
11125
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11126
  msgid "eg. https://webnus.net"
11127
  msgstr "ej. https://webnus.net"
11128
 
11138
  "Si quieres, puedes seleccionar organizadores adicionales además del "
11139
  "organizador principal."
11140
 
11141
+ #: app/features/popup/event.php:60
11142
  #, fuzzy
11143
  #| msgid "Add Shortcode"
11144
  msgid "Adding an Event..."
11145
  msgstr "Nuevo Shortcode"
11146
 
11147
+ #: app/features/popup/event.php:68
11148
  #, fuzzy
11149
  #| msgid "Event Note"
11150
  msgid "Event Name"
11151
  msgstr "Nota de evento"
11152
 
11153
+ #: app/features/popup/event.php:69
11154
  msgid "Event name is required"
11155
  msgstr ""
11156
 
11157
+ #: app/features/popup/event.php:130
11158
  #, fuzzy
11159
  #| msgid "Choose one of saved locations or insert new one below."
11160
  msgid "Choose one of saved locations or insert new one."
11161
  msgstr "Elegir un lugar guardado o insertar un nuevo a continuación."
11162
 
11163
+ #: app/features/popup/event.php:134
11164
  #, fuzzy
11165
  #| msgid "Location"
11166
  msgid "Add Location"
11167
  msgstr "Localización"
11168
 
11169
+ #: app/features/popup/event.php:184
11170
  #, fuzzy
11171
  #| msgid "Organizer"
11172
  msgid "Add Organizer"
11173
  msgstr "Organizador"
11174
 
11175
+ #: app/features/popup/event.php:224
11176
  #, fuzzy
11177
  #| msgid "Categories"
11178
  msgid "All Categories"
11179
  msgstr "Categorías"
11180
 
11181
+ #: app/features/popup/event.php:225
11182
  msgid "Most Used"
11183
  msgstr ""
11184
 
11185
+ #: app/features/popup/event.php:236
11186
  #, fuzzy
11187
  #| msgid "Add New %s"
11188
  msgid "Add New Category"
11189
  msgstr "Añadir nuevo %s"
11190
 
11191
+ #: app/features/popup/event.php:247
11192
  #, fuzzy
11193
  #| msgid "Featured Image"
11194
  msgid "Set Featured Image"
11195
  msgstr "Imagen destacada"
11196
 
11197
+ #: app/features/popup/event.php:257
11198
  msgid "Your Event Has Been Created."
11199
  msgstr ""
11200
 
11201
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11202
  #: app/features/popup/shortcode.php:553
11203
  msgid "Prev"
11204
  msgstr ""
11205
 
11206
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11207
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11208
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11209
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11408
  msgid "No search result."
11409
  msgstr ""
11410
 
11411
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11412
+ #: app/features/speakers.php:293
11413
  msgid "Job Title"
11414
  msgstr ""
11415
 
11416
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11417
  msgid "Insert speaker job title."
11418
  msgstr ""
11419
 
11420
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11421
  msgid "Insert speaker phone number."
11422
  msgstr ""
11423
 
11424
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11425
  msgid "Insert speaker email address."
11426
  msgstr ""
11427
 
11428
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11429
  msgid "Insert URL of Website"
11430
  msgstr ""
11431
 
11432
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11433
  msgid "Facebook Page"
11434
  msgstr ""
11435
 
11436
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11437
  msgid "Insert URL of Facebook Page"
11438
  msgstr ""
11439
 
11440
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11441
  msgid "Instagram"
11442
  msgstr ""
11443
 
11444
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11445
  msgid "Insert URL of Instagram"
11446
  msgstr ""
11447
 
11448
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11449
  #, fuzzy
11450
  #| msgid "Linkedin"
11451
  msgid "LinkedIn"
11452
  msgstr "LinkedIn"
11453
 
11454
+ #: app/features/speakers.php:169
11455
  msgid "Insert URL of LinkedIn"
11456
  msgstr ""
11457
 
11458
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11459
  msgid "Twitter Page"
11460
  msgstr ""
11461
 
11462
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11463
  msgid "Insert URL of Twitter Page"
11464
  msgstr ""
11465
 
11466
+ #: app/features/speakers.php:228
11467
  msgid "Insert URL of linkedin"
11468
  msgstr ""
11469
 
11470
+ #: app/features/speakers.php:353
11471
  msgid "Sorry, You must insert speaker name!"
11472
  msgstr ""
11473
 
11474
+ #: app/features/speakers.php:402
11475
  msgid ""
11476
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11477
  "section and speaker widget section!"
11559
  msgid "Upgrade to Pro Version"
11560
  msgstr "Actualizar a Versión a Pro"
11561
 
11562
+ #: app/libraries/factory.php:232
11563
  msgctxt "plugin link"
11564
  msgid "Settings"
11565
  msgstr "Ajustes"
11566
 
11567
+ #: app/libraries/factory.php:237
11568
  msgctxt "plugin link"
11569
  msgid "Upgrade"
11570
  msgstr "Actualizar"
11571
 
11572
+ #: app/libraries/factory.php:391
11573
  msgid "day"
11574
  msgstr "día "
11575
 
11576
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11577
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11578
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11579
  msgid "days"
11580
  msgstr "días"
11581
 
11582
+ #: app/libraries/factory.php:393
11583
  msgid "hour"
11584
  msgstr "hora"
11585
 
11586
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11587
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11588
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11589
  msgid "hours"
11590
  msgstr "horas"
11591
 
11592
+ #: app/libraries/factory.php:395
11593
  msgid "minute"
11594
  msgstr "minuto"
11595
 
11596
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11597
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11598
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11599
  msgid "minutes"
11600
  msgstr "minutos"
11601
 
11602
+ #: app/libraries/factory.php:397
11603
  msgid "second"
11604
  msgstr "segundo"
11605
 
11606
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11607
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11608
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11609
  msgid "seconds"
11610
  msgstr "segundos"
11611
 
11612
+ #: app/libraries/factory.php:475
11613
  msgid "MEC Single Sidebar"
11614
  msgstr "barra lateral MEC"
11615
 
11616
+ #: app/libraries/factory.php:476
11617
  msgid "Custom sidebar for single and modal page of MEC."
11618
  msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
11619
 
11620
+ #: app/libraries/factory.php:1197
11621
  msgid "Notice:"
11622
  msgstr ""
11623
 
11624
+ #: app/libraries/factory.php:1198
11625
  msgid "This update includes only bug fixes."
11626
  msgstr ""
11627
 
11777
  msgid "%s Form"
11778
  msgstr ""
11779
 
 
 
 
 
 
 
11780
  #: app/libraries/main.php:726
11781
  msgid "Only For Bookers"
11782
  msgstr ""
12570
  msgid "End at: %s - %s"
12571
  msgstr ""
12572
 
12573
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12574
  #, fuzzy
12575
  #| msgid "Repeat"
12576
  msgid "Repeating Event"
13064
  msgid "http://webnus.net"
13065
  msgstr "http://webnus.net"
13066
 
13067
+ #, fuzzy
13068
+ #~| msgid "Address"
13069
+ #~ msgid "WordPress"
13070
+ #~ msgstr "Dirección"
13071
+
13072
  #, fuzzy
13073
  #~| msgid ""
13074
  #~| "The %s ticket is sold out. You can try another ticket or another date."
languages/modern-events-calendar-lite-fi_FI.mo CHANGED
Binary file
languages/modern-events-calendar-lite-fi_FI.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:29+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fi_FI\n"
@@ -157,7 +157,7 @@ msgid "Canceled"
157
  msgstr ""
158
 
159
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
160
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
161
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
162
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
163
  #: app/features/mec/notifications.php:1922
@@ -191,14 +191,14 @@ msgstr ""
191
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
192
  #: app/features/autoemails.php:60 app/features/events.php:606
193
  #: app/features/events.php:2650 app/features/events.php:2717
194
- #: app/features/events.php:2806 app/features/events.php:4443
195
- #: app/features/fes.php:280 app/features/fes/form.php:810
196
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
197
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
198
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
199
  #: app/features/organizers.php:112 app/features/organizers.php:153
200
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
201
- #: app/features/speakers.php:205 app/libraries/main.php:653
202
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
203
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
204
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -348,8 +348,8 @@ msgstr "Päivämäärä"
348
  #: app/features/events.php:2808 app/features/mec/booking.php:800
349
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
350
  #: app/features/organizers.php:104 app/features/organizers.php:149
351
- #: app/features/speakers.php:120 app/features/speakers.php:201
352
- #: app/features/speakers.php:288 app/libraries/main.php:4252
353
  msgid "Tel"
354
  msgstr ""
355
 
@@ -495,6 +495,11 @@ msgstr ""
495
  msgid "Agreement"
496
  msgstr ""
497
 
 
 
 
 
 
498
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
499
  #, php-format
500
  msgid "Instead of %s, the page title with a link will be show."
@@ -672,8 +677,8 @@ msgstr ""
672
  #: app/features/events.php:1843 app/features/events.php:2014
673
  #: app/features/events.php:2029 app/features/events.php:2271
674
  #: app/features/events.php:2283 app/features/events.php:2476
675
- #: app/features/events.php:2513 app/features/fes/form.php:458
676
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
677
  #: app/features/locations.php:341 app/features/mec/booking.php:113
678
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
679
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -750,9 +755,9 @@ msgstr ""
750
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
751
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
752
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
753
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
754
- #: app/features/organizers.php:289 app/features/popup/event.php:128
755
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
756
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
757
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
758
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -906,8 +911,8 @@ msgstr ""
906
 
907
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
908
  #: app/features/events.php:432 app/features/events.php:1283
909
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
910
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
911
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
912
  #: app/skins/single.php:1126 app/skins/single/default.php:213
913
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -978,7 +983,7 @@ msgid "How to set label"
978
  msgstr ""
979
 
980
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
981
- #: app/features/events.php:4195 app/features/fes/form.php:998
982
  #: app/features/labels.php:61 app/features/labels.php:227
983
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
984
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1010,7 +1015,7 @@ msgid "How to set location"
1010
  msgstr ""
1011
 
1012
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1013
- #: app/features/events.php:3876 app/features/events.php:4188
1014
  #: app/features/locations.php:58 app/features/locations.php:267
1015
  #: app/features/locations.php:329 app/features/locations.php:331
1016
  #: app/features/locations.php:340
@@ -1030,7 +1035,7 @@ msgstr ""
1030
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1031
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1032
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1033
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1034
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1035
  #: app/features/search.php:97 app/libraries/main.php:3020
1036
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1044,7 +1049,7 @@ msgstr ""
1044
 
1045
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1046
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1047
- #: app/features/speakers.php:136 app/features/speakers.php:209
1048
  #: app/skins/single.php:1406 app/skins/single.php:1473
1049
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1050
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1067,7 +1072,7 @@ msgstr ""
1067
 
1068
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1069
  #: app/features/events.php:1519 app/features/events.php:1532
1070
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1071
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1072
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1073
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1112,8 +1117,8 @@ msgstr ""
1112
 
1113
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1114
  #: app/features/events.php:431 app/features/events.php:3877
1115
- #: app/features/events.php:4190 app/features/events.php:4191
1116
- #: app/features/events.php:4192
1117
  #: app/features/mec/meta_boxes/display_options.php:1660
1118
  #: app/features/mec/meta_boxes/search_form.php:80
1119
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1128,12 +1133,12 @@ msgstr ""
1128
  #: app/features/mec/meta_boxes/search_form.php:983
1129
  #: app/features/mec/meta_boxes/search_form.php:1070
1130
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1131
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1132
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1133
  #: app/features/organizers.php:58 app/features/organizers.php:208
1134
  #: app/features/organizers.php:277 app/features/organizers.php:279
1135
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1136
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1137
  #: app/features/popup/settings.php:263 app/features/search.php:103
1138
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1139
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1251,8 +1256,8 @@ msgstr "Aika"
1251
  #: app/features/booking/calendar_novel.php:145
1252
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1253
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1254
- #: app/libraries/render.php:554 app/libraries/render.php:758
1255
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1256
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1257
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1258
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1309,7 +1314,7 @@ msgstr ""
1309
 
1310
  #: app/features/autoemails.php:74 app/features/events.php:230
1311
  #: app/features/labels.php:72 app/features/locations.php:70
1312
- #: app/features/organizers.php:70 app/features/speakers.php:72
1313
  #: app/features/tag.php:70
1314
  #, php-format
1315
  msgid "Edit %s"
@@ -1364,7 +1369,7 @@ msgstr ""
1364
  msgid "Go to events page"
1365
  msgstr ""
1366
 
1367
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1368
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1369
  #: app/features/wc.php:91 app/libraries/main.php:3072
1370
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1437,7 +1442,7 @@ msgstr ""
1437
  msgid "Back to Cart"
1438
  msgstr ""
1439
 
1440
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1441
  #: app/features/mec/settings.php:907
1442
  msgid "Event Color"
1443
  msgstr ""
@@ -1447,8 +1452,8 @@ msgid "Recent Colors"
1447
  msgstr ""
1448
 
1449
  #: app/features/contextual.php:55 app/features/mec.php:546
1450
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1451
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1452
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1453
  #: app/libraries/main.php:738
1454
  msgid "Settings"
@@ -1562,7 +1567,7 @@ msgid "Event Details/Single Event Page"
1562
  msgstr ""
1563
 
1564
  #: app/features/contextual.php:166 app/features/events.php:1298
1565
- #: app/features/fes/form.php:883
1566
  msgid "Currency Options"
1567
  msgstr ""
1568
 
@@ -1650,8 +1655,8 @@ msgid "Public File to Download"
1650
  msgstr ""
1651
 
1652
  #: app/features/dlfile.php:297 app/features/events.php:3874
1653
- #: app/features/events.php:4181 app/features/events.php:4730
1654
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1655
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1656
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1657
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1660,7 +1665,7 @@ msgid "Title"
1660
  msgstr ""
1661
 
1662
  #: app/features/dlfile.php:301 app/features/events.php:1988
1663
- #: app/features/events.php:2248 app/features/events.php:4182
1664
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1665
  #: app/libraries/hourlyschedule.php:152
1666
  msgid "Description"
@@ -1697,7 +1702,7 @@ msgid "Before"
1697
  msgstr ""
1698
 
1699
  #: app/features/emails/details.php:35 app/features/events.php:1223
1700
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1701
  msgid "After"
1702
  msgstr ""
1703
 
@@ -1706,7 +1711,7 @@ msgid "event occurrence."
1706
  msgstr ""
1707
 
1708
  #: app/features/emails/details.php:40 app/features/events.php:192
1709
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1710
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1711
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1712
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1727,11 +1732,11 @@ msgstr ""
1727
  msgid "Add Event"
1728
  msgstr ""
1729
 
1730
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1731
  msgid "Add New Event"
1732
  msgstr ""
1733
 
1734
- #: app/features/events.php:196 app/features/ix.php:4573
1735
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1736
  #: app/skins/map/tpl.php:93
1737
  msgid "No events found!"
@@ -1742,7 +1747,7 @@ msgid "Edit Event"
1742
  msgstr ""
1743
 
1744
  #: app/features/events.php:199 app/features/fes/list.php:100
1745
- #: app/features/popup/event.php:254
1746
  msgid "View Event"
1747
  msgstr ""
1748
 
@@ -1751,7 +1756,7 @@ msgid "No events found in Trash!"
1751
  msgstr ""
1752
 
1753
  #: app/features/events.php:219 app/features/events.php:3831
1754
- #: app/features/events.php:4196 app/features/fes/form.php:972
1755
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1756
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1757
  #: app/libraries/main.php:7619
@@ -1760,49 +1765,49 @@ msgstr ""
1760
 
1761
  #: app/features/events.php:229 app/features/labels.php:71
1762
  #: app/features/locations.php:69 app/features/organizers.php:69
1763
- #: app/features/speakers.php:71 app/features/tag.php:69
1764
  #, php-format
1765
  msgid "All %s"
1766
  msgstr ""
1767
 
1768
  #: app/features/events.php:231 app/features/labels.php:73
1769
  #: app/features/locations.php:71 app/features/organizers.php:71
1770
- #: app/features/speakers.php:73 app/features/tag.php:71
1771
  #, php-format
1772
  msgid "View %s"
1773
  msgstr ""
1774
 
1775
  #: app/features/events.php:232 app/features/labels.php:74
1776
  #: app/features/locations.php:72 app/features/organizers.php:72
1777
- #: app/features/speakers.php:74 app/features/tag.php:72
1778
  #, php-format
1779
  msgid "Update %s"
1780
  msgstr ""
1781
 
1782
  #: app/features/events.php:233 app/features/labels.php:75
1783
  #: app/features/locations.php:73 app/features/organizers.php:73
1784
- #: app/features/speakers.php:75 app/features/tag.php:73
1785
  #, php-format
1786
  msgid "Add New %s"
1787
  msgstr ""
1788
 
1789
  #: app/features/events.php:234 app/features/labels.php:76
1790
  #: app/features/locations.php:74 app/features/organizers.php:74
1791
- #: app/features/speakers.php:76 app/features/tag.php:74
1792
  #, php-format
1793
  msgid "New %s Name"
1794
  msgstr ""
1795
 
1796
  #: app/features/events.php:235 app/features/labels.php:77
1797
  #: app/features/locations.php:75 app/features/organizers.php:75
1798
- #: app/features/speakers.php:77 app/features/tag.php:75
1799
  #, php-format
1800
  msgid "Popular %s"
1801
  msgstr ""
1802
 
1803
  #: app/features/events.php:236 app/features/labels.php:78
1804
  #: app/features/locations.php:76 app/features/organizers.php:76
1805
- #: app/features/speakers.php:78 app/features/tag.php:76
1806
  #, php-format
1807
  msgid "Search %s"
1808
  msgstr ""
@@ -1832,7 +1837,7 @@ msgstr ""
1832
  #: app/features/events.php:278 app/features/events.php:336
1833
  #: app/features/locations.php:161 app/features/locations.php:213
1834
  #: app/features/organizers.php:133 app/features/organizers.php:164
1835
- #: app/features/speakers.php:181 app/features/speakers.php:232
1836
  msgid "Upload/Add image"
1837
  msgstr ""
1838
 
@@ -1841,7 +1846,7 @@ msgstr ""
1841
  #: app/features/locations.php:393 app/features/locations.php:400
1842
  #: app/features/organizers.php:134 app/features/organizers.php:165
1843
  #: app/features/organizers.php:316 app/features/organizers.php:323
1844
- #: app/features/speakers.php:182 app/features/speakers.php:233
1845
  msgid "Remove image"
1846
  msgstr ""
1847
 
@@ -1857,7 +1862,7 @@ msgstr ""
1857
  msgid "Date And Time"
1858
  msgstr ""
1859
 
1860
- #: app/features/events.php:425 app/features/fes/form.php:384
1861
  msgid "Event Repeating"
1862
  msgstr ""
1863
 
@@ -1896,10 +1901,10 @@ msgid "Guest Data"
1896
  msgstr ""
1897
 
1898
  #: app/features/events.php:605 app/features/events.php:2641
1899
- #: app/features/events.php:4440 app/features/fes.php:280
1900
- #: app/features/fes/form.php:814 app/features/labels.php:184
1901
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
1902
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
1903
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
1904
  msgid "Name"
1905
  msgstr ""
@@ -1910,13 +1915,13 @@ msgid ""
1910
  "overwrite in the next import from Google."
1911
  msgstr ""
1912
 
1913
- #: app/features/events.php:619 app/features/fes/form.php:282
1914
  msgid "Date and Time"
1915
  msgstr ""
1916
 
1917
  #: app/features/events.php:622 app/features/events.php:626
1918
- #: app/features/events.php:3878 app/features/events.php:4183
1919
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
1920
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
1921
  #: app/features/mec/meta_boxes/display_options.php:57
1922
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -1934,13 +1939,13 @@ msgstr ""
1934
  #: app/features/mec/meta_boxes/display_options.php:2347
1935
  #: app/features/mec/meta_boxes/display_options.php:2478
1936
  #: app/features/mec/meta_boxes/display_options.php:2584
1937
- #: app/features/popup/event.php:77
1938
  msgid "Start Date"
1939
  msgstr ""
1940
 
1941
  #: app/features/events.php:642 app/features/events.php:646
1942
- #: app/features/events.php:3879 app/features/events.php:4185
1943
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
1944
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
1945
  #: app/features/mec/meta_boxes/display_options.php:73
1946
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -1949,35 +1954,35 @@ msgstr ""
1949
  #: app/features/mec/meta_boxes/display_options.php:788
1950
  #: app/features/mec/meta_boxes/display_options.php:1618
1951
  #: app/features/mec/meta_boxes/display_options.php:2363
1952
- #: app/features/popup/event.php:94
1953
  msgid "End Date"
1954
  msgstr ""
1955
 
1956
- #: app/features/events.php:669 app/features/fes/form.php:324
1957
- #: app/features/popup/event.php:111
1958
  msgid "All-day Event"
1959
  msgstr ""
1960
 
1961
- #: app/features/events.php:679 app/features/fes/form.php:327
1962
  msgid "Hide Event Time"
1963
  msgstr ""
1964
 
1965
- #: app/features/events.php:689 app/features/fes/form.php:330
1966
  msgid "Hide Event End Time"
1967
  msgstr ""
1968
 
1969
  #: app/features/events.php:694 app/features/events.php:698
1970
- #: app/features/fes/form.php:334
1971
  msgid "Notes on the time"
1972
  msgstr ""
1973
 
1974
- #: app/features/events.php:699 app/features/fes/form.php:335
1975
  msgid ""
1976
  "It shows next to event time on the Single Event Page. You can enter notes "
1977
  "such as timezone in this field."
1978
  msgstr ""
1979
 
1980
- #: app/features/events.php:711 app/features/fes/form.php:342
1981
  msgid "Timezone"
1982
  msgstr ""
1983
 
@@ -1986,43 +1991,43 @@ msgstr ""
1986
  #: app/features/events.php:1793 app/features/events.php:1813
1987
  #: app/features/events.php:1868 app/features/events.php:2438
1988
  #: app/features/events.php:2561 app/features/events.php:2672
1989
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
1990
  msgid "Inherit from global options"
1991
  msgstr ""
1992
 
1993
  #: app/features/events.php:725 app/features/events.php:728
1994
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
1995
  #: app/features/mec/settings.php:858
1996
  msgid "Countdown Method"
1997
  msgstr ""
1998
 
1999
- #: app/features/events.php:730 app/features/fes/form.php:361
2000
  msgid "Count to Event Start"
2001
  msgstr ""
2002
 
2003
- #: app/features/events.php:731 app/features/fes/form.php:362
2004
  msgid "Count to Event End"
2005
  msgstr ""
2006
 
2007
- #: app/features/events.php:737 app/features/fes/form.php:369
2008
  #: app/modules/weather/darksky.php:57
2009
  msgid "Visibility"
2010
  msgstr ""
2011
 
2012
- #: app/features/events.php:740 app/features/fes/form.php:372
2013
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2014
  msgid "Event Visibility"
2015
  msgstr ""
2016
 
2017
- #: app/features/events.php:741 app/features/fes/form.php:373
2018
  msgid "Show on Shortcodes"
2019
  msgstr ""
2020
 
2021
- #: app/features/events.php:742 app/features/fes/form.php:374
2022
  msgid "Hide on Shortcodes"
2023
  msgstr ""
2024
 
2025
- #: app/features/events.php:749 app/features/fes/form.php:382
2026
  msgid "Repeating"
2027
  msgstr ""
2028
 
@@ -2030,63 +2035,68 @@ msgstr ""
2030
  msgid "Event Repeating (Recurring events)"
2031
  msgstr ""
2032
 
2033
- #: app/features/events.php:762 app/features/fes/form.php:388
2034
  msgid "Repeats"
2035
  msgstr ""
2036
 
2037
- #: app/features/events.php:770 app/features/fes/form.php:390
2038
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2039
  #: app/skins/full_calendar/tpl.php:140
2040
  msgid "Daily"
2041
  msgstr ""
2042
 
2043
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2044
  msgid "Every Weekday"
2045
  msgstr ""
2046
 
2047
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2048
  msgid "Every Weekend"
2049
  msgstr ""
2050
 
2051
- #: app/features/events.php:791 app/features/fes/form.php:393
2052
  msgid "Certain Weekdays"
2053
  msgstr ""
2054
 
2055
- #: app/features/events.php:798 app/features/fes/form.php:394
2056
- #: app/skins/default_full_calendar/tpl.php:78
2057
  #: app/skins/full_calendar/tpl.php:139
2058
  msgid "Weekly"
2059
  msgstr ""
2060
 
2061
- #: app/features/events.php:805 app/features/fes/form.php:395
2062
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2063
  #: app/skins/full_calendar/tpl.php:138
2064
  msgid "Monthly"
2065
  msgstr ""
2066
 
2067
- #: app/features/events.php:812 app/features/fes/form.php:396
2068
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2069
  #: app/skins/full_calendar/tpl.php:137
2070
  msgid "Yearly"
2071
  msgstr ""
2072
 
2073
- #: app/features/events.php:819 app/features/fes/form.php:397
2074
  msgid "Custom Days"
2075
  msgstr ""
2076
 
2077
- #: app/features/events.php:826 app/features/fes/form.php:398
2078
  msgid "Advanced"
2079
  msgstr ""
2080
 
2081
- #: app/features/events.php:831 app/features/fes/form.php:402
2082
  msgid "Repeat Interval"
2083
  msgstr ""
2084
 
2085
- #: app/features/events.php:833 app/features/fes/form.php:403
2086
  msgid "Repeat interval"
2087
  msgstr ""
2088
 
2089
- #: app/features/events.php:837 app/features/fes/form.php:406
2090
  msgid "Week Days"
2091
  msgstr ""
2092
 
@@ -2098,7 +2108,7 @@ msgstr ""
2098
 
2099
  #: app/features/events.php:860 app/features/events.php:2101
2100
  #: app/features/events.php:2129 app/features/events.php:2343
2101
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2102
  #: app/features/ix/import_g_calendar.php:51
2103
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2104
  #: app/libraries/skins.php:1389
@@ -2109,17 +2119,17 @@ msgstr ""
2109
  #: app/features/events.php:2085 app/features/events.php:2167
2110
  #: app/features/events.php:2332 app/features/events.php:2376
2111
  #: app/features/events.php:2449 app/features/events.php:2566
2112
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2113
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2114
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2115
  msgid "Add"
2116
  msgstr ""
2117
 
2118
- #: app/features/events.php:877 app/features/fes/form.php:454
2119
  msgid "Custom Days Repeating"
2120
  msgstr ""
2121
 
2122
- #: app/features/events.php:880 app/features/fes/form.php:457
2123
  msgid ""
2124
  "Add certain days to event occurrence dates. If you have a single day event, "
2125
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2128,44 +2138,44 @@ msgstr ""
2128
 
2129
  #: app/features/events.php:891 app/features/events.php:2105
2130
  #: app/features/events.php:2133 app/features/events.php:2347
2131
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2132
  msgid "End"
2133
  msgstr ""
2134
 
2135
- #: app/features/events.php:968 app/features/fes/form.php:530
2136
  msgid "First"
2137
  msgstr ""
2138
 
2139
- #: app/features/events.php:1010 app/features/fes/form.php:572
2140
  msgid "Second"
2141
  msgstr ""
2142
 
2143
- #: app/features/events.php:1052 app/features/fes/form.php:614
2144
  msgid "Third"
2145
  msgstr ""
2146
 
2147
- #: app/features/events.php:1094 app/features/fes/form.php:656
2148
  msgid "Fourth"
2149
  msgstr ""
2150
 
2151
- #: app/features/events.php:1136 app/features/fes/form.php:698
2152
  msgid "Last"
2153
  msgstr ""
2154
 
2155
- #: app/features/events.php:1183 app/features/fes/form.php:744
2156
  msgid "Ends Repeat"
2157
  msgstr ""
2158
 
2159
- #: app/features/events.php:1195 app/features/fes/form.php:748
2160
  msgid "Never"
2161
  msgstr ""
2162
 
2163
- #: app/features/events.php:1207 app/features/fes/form.php:753
2164
  msgid "On"
2165
  msgstr ""
2166
 
2167
  #: app/features/events.php:1227 app/features/events.php:1231
2168
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2169
  msgid "Occurrences times"
2170
  msgstr ""
2171
 
@@ -2175,12 +2185,12 @@ msgid ""
2175
  "10, the event will finish after 10 occurrences."
2176
  msgstr ""
2177
 
2178
- #: app/features/events.php:1248 app/features/fes/form.php:779
2179
  msgid "Show only one occurrence of this event"
2180
  msgstr ""
2181
 
2182
- #: app/features/events.php:1277 app/features/events.php:4193
2183
- #: app/features/fes/form.php:865
2184
  #: app/features/mec/meta_boxes/search_form.php:116
2185
  #: app/features/mec/meta_boxes/search_form.php:204
2186
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2204,69 +2214,69 @@ msgstr ""
2204
  #: app/features/mec/notifications.php:1511
2205
  #: app/features/mec/notifications.php:1628
2206
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2207
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2208
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2209
  #: app/widgets/single.php:122
2210
  msgid "Event Cost"
2211
  msgstr ""
2212
 
2213
- #: app/features/events.php:1292 app/features/fes/form.php:877
2214
  msgid "Show the minimum price based on tickets"
2215
  msgstr ""
2216
 
2217
- #: app/features/events.php:1300 app/features/fes/form.php:885
2218
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2219
  #: app/libraries/main.php:646
2220
  msgid "Currency"
2221
  msgstr ""
2222
 
2223
  #: app/features/events.php:1310 app/features/events.php:1315
2224
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2225
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2226
  msgid "Currency Sign"
2227
  msgstr ""
2228
 
2229
- #: app/features/events.php:1316 app/features/fes/form.php:901
2230
  #: app/features/mec/settings.php:600
2231
  msgid "Default value will be \"currency\" if you leave it empty."
2232
  msgstr ""
2233
 
2234
- #: app/features/events.php:1323 app/features/fes/form.php:908
2235
  #: app/features/mec/settings.php:607
2236
  msgid "Currency Position"
2237
  msgstr ""
2238
 
2239
- #: app/features/events.php:1326 app/features/fes/form.php:911
2240
  #: app/features/mec/settings.php:610
2241
  msgid "$10 (Before)"
2242
  msgstr ""
2243
 
2244
- #: app/features/events.php:1327 app/features/fes/form.php:912
2245
  #: app/features/mec/settings.php:611
2246
  msgid "$ 10 (Before with Space)"
2247
  msgstr ""
2248
 
2249
- #: app/features/events.php:1328 app/features/fes/form.php:913
2250
  #: app/features/mec/settings.php:612
2251
  msgid "10$ (After)"
2252
  msgstr ""
2253
 
2254
- #: app/features/events.php:1329 app/features/fes/form.php:914
2255
  #: app/features/mec/settings.php:613
2256
  msgid "10 $ (After with Space)"
2257
  msgstr ""
2258
 
2259
- #: app/features/events.php:1334 app/features/fes/form.php:919
2260
  #: app/features/mec/settings.php:618
2261
  msgid "Thousand Separator"
2262
  msgstr ""
2263
 
2264
- #: app/features/events.php:1340 app/features/fes/form.php:925
2265
  #: app/features/mec/settings.php:624
2266
  msgid "Decimal Separator"
2267
  msgstr ""
2268
 
2269
- #: app/features/events.php:1350 app/features/fes/form.php:935
2270
  #: app/features/mec/settings.php:634
2271
  msgid "No decimal"
2272
  msgstr ""
@@ -2290,21 +2300,21 @@ msgstr ""
2290
  msgid "Day 1"
2291
  msgstr ""
2292
 
2293
- #: app/features/events.php:1498 app/features/fes/form.php:829
2294
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2295
  msgid "Event Links"
2296
  msgstr ""
2297
 
2298
  #: app/features/events.php:1501 app/features/events.php:1509
2299
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2300
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2301
  #: app/libraries/main.php:7649
2302
  msgid "Event Link"
2303
  msgstr ""
2304
 
2305
  #: app/features/events.php:1504 app/features/events.php:1522
2306
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2307
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2308
  msgid "eg. http://yoursite.com/your-event"
2309
  msgstr ""
2310
 
@@ -2319,24 +2329,24 @@ msgstr ""
2319
  msgid "URL Shortener"
2320
  msgstr ""
2321
 
2322
- #: app/features/events.php:1525 app/features/fes/form.php:838
2323
- #: app/features/occurrences.php:527
2324
  msgid "More Information"
2325
  msgstr ""
2326
 
2327
- #: app/features/events.php:1527 app/features/fes/form.php:840
2328
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2329
  #: app/features/popup/shortcode.php:481
2330
  msgid "Current Window"
2331
  msgstr ""
2332
 
2333
- #: app/features/events.php:1528 app/features/fes/form.php:841
2334
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2335
  #: app/features/popup/shortcode.php:485
2336
  msgid "New Window"
2337
  msgstr ""
2338
 
2339
- #: app/features/events.php:1533 app/features/fes/form.php:843
2340
  msgid ""
2341
  "If you fill it, it will be shown in event details page as an optional link. "
2342
  "Insert full link including http(s)://"
@@ -2682,9 +2692,9 @@ msgid "Ticket ID"
2682
  msgstr ""
2683
 
2684
  #: app/features/events.php:1944 app/features/events.php:2211
2685
- #: app/features/events.php:4180 app/features/fes.php:280
2686
  #: app/features/labels.php:183 app/features/locations.php:266
2687
- #: app/features/organizers.php:207 app/features/speakers.php:285
2688
  msgid "ID"
2689
  msgstr ""
2690
 
@@ -2693,12 +2703,12 @@ msgid "Ticket Name"
2693
  msgstr ""
2694
 
2695
  #: app/features/events.php:1956 app/features/events.php:2219
2696
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2697
  msgid "Start Time"
2698
  msgstr ""
2699
 
2700
  #: app/features/events.php:1970 app/features/events.php:2233
2701
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2702
  msgid "End Time"
2703
  msgstr ""
2704
 
@@ -2718,7 +2728,7 @@ msgstr ""
2718
  #: app/features/events.php:2007 app/features/events.php:2011
2719
  #: app/features/events.php:2109 app/features/events.php:2136
2720
  #: app/features/events.php:2265 app/features/events.php:2268
2721
- #: app/features/events.php:2349 app/features/events.php:4739
2722
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2723
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2724
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -2864,7 +2874,7 @@ msgstr ""
2864
  msgid "Fixed Fields"
2865
  msgstr ""
2866
 
2867
- #: app/features/events.php:2887 app/features/events.php:4733
2868
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
2869
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
2870
  msgid "Attendees"
@@ -2890,7 +2900,7 @@ msgid "Expired Events"
2890
  msgstr ""
2891
 
2892
  #: app/features/events.php:3757 app/features/mec.php:1374
2893
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
2894
  msgid "Upcoming Events"
2895
  msgstr ""
2896
 
@@ -2945,15 +2955,15 @@ msgid "JSON Export"
2945
  msgstr ""
2946
 
2947
  #: app/features/events.php:4068 app/features/events.php:4069
2948
- #: app/features/events.php:4293
2949
  msgid "Duplicate"
2950
  msgstr ""
2951
 
2952
- #: app/features/events.php:4187
2953
  msgid "Link"
2954
  msgstr ""
2955
 
2956
- #: app/features/events.php:4189 app/features/locations.php:111
2957
  #: app/features/locations.php:181 app/features/locations.php:268
2958
  #: app/features/mec/meta_boxes/search_form.php:108
2959
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -2971,31 +2981,31 @@ msgstr ""
2971
  msgid "Address"
2972
  msgstr ""
2973
 
2974
- #: app/features/events.php:4191
2975
  #, php-format
2976
  msgid "%s Tel"
2977
  msgstr ""
2978
 
2979
- #: app/features/events.php:4192
2980
  #, php-format
2981
  msgid "%s Email"
2982
  msgstr ""
2983
 
2984
- #: app/features/events.php:4194 app/features/fes/form.php:951
2985
  #: app/features/mec/settings.php:876
2986
  msgid "Featured Image"
2987
  msgstr ""
2988
 
2989
- #: app/features/events.php:4197 app/features/fes/form.php:1044
2990
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
2991
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
2992
  msgid "Tags"
2993
  msgstr ""
2994
 
2995
- #: app/features/events.php:4201 app/features/fes/form.php:1066
2996
  #: app/features/mec.php:532 app/features/mec/modules.php:34
2997
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
2998
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
2999
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3000
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3001
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3003,36 +3013,36 @@ msgstr ""
3003
  msgid "Speakers"
3004
  msgstr ""
3005
 
3006
- #: app/features/events.php:4446 app/features/fes.php:280
3007
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3008
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3009
  #: app/libraries/main.php:7592
3010
  msgid "Ticket"
3011
  msgstr ""
3012
 
3013
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3014
  msgid "Variations"
3015
  msgstr ""
3016
 
3017
- #: app/features/events.php:4464 app/features/fes.php:356
3018
  msgid "Unknown"
3019
  msgstr ""
3020
 
3021
- #: app/features/events.php:4492
3022
  msgid ""
3023
  "If you want to send an email, first select your attendees and then click in "
3024
  "the button below, please."
3025
  msgstr ""
3026
 
3027
- #: app/features/events.php:4492 app/features/mec/report.php:57
3028
  msgid "Send Email"
3029
  msgstr ""
3030
 
3031
- #: app/features/events.php:4496
3032
  msgid "No Attendees Found!"
3033
  msgstr ""
3034
 
3035
- #: app/features/events.php:4797
3036
  msgid "No Bookings Found!"
3037
  msgstr ""
3038
 
@@ -3152,126 +3162,126 @@ msgstr ""
3152
  msgid "The event published."
3153
  msgstr ""
3154
 
3155
- #: app/features/fes/form.php:178
3156
  msgid "Go back to events list"
3157
  msgstr ""
3158
 
3159
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3160
  #: app/features/mec/settings.php:1171
3161
  msgid "Excerpt"
3162
  msgstr ""
3163
 
3164
- #: app/features/fes/form.php:271
3165
  msgid "Optional Event Excerpt"
3166
  msgstr ""
3167
 
3168
- #: app/features/fes/form.php:278
3169
  msgid ""
3170
  "This event is imported from Google calendar so if you modify it would "
3171
  "overwrite in the next import from Google."
3172
  msgstr ""
3173
 
3174
- #: app/features/fes/form.php:407
3175
  #: app/features/mec/meta_boxes/display_options.php:1494
3176
  #: app/libraries/main.php:476
3177
  msgid "Monday"
3178
  msgstr ""
3179
 
3180
- #: app/features/fes/form.php:408
3181
  #: app/features/mec/meta_boxes/display_options.php:1495
3182
  #: app/libraries/main.php:476
3183
  msgid "Tuesday"
3184
  msgstr ""
3185
 
3186
- #: app/features/fes/form.php:409
3187
  #: app/features/mec/meta_boxes/display_options.php:1496
3188
  #: app/libraries/main.php:476
3189
  msgid "Wednesday"
3190
  msgstr ""
3191
 
3192
- #: app/features/fes/form.php:410
3193
  #: app/features/mec/meta_boxes/display_options.php:1497
3194
  #: app/libraries/main.php:476
3195
  msgid "Thursday"
3196
  msgstr ""
3197
 
3198
- #: app/features/fes/form.php:411
3199
  #: app/features/mec/meta_boxes/display_options.php:1498
3200
  #: app/libraries/main.php:476
3201
  msgid "Friday"
3202
  msgstr ""
3203
 
3204
- #: app/features/fes/form.php:412
3205
  #: app/features/mec/meta_boxes/display_options.php:1499
3206
  #: app/libraries/main.php:476
3207
  msgid "Saturday"
3208
  msgstr ""
3209
 
3210
- #: app/features/fes/form.php:413
3211
  #: app/features/mec/meta_boxes/display_options.php:1493
3212
  #: app/libraries/main.php:476
3213
  msgid "Sunday"
3214
  msgstr ""
3215
 
3216
- #: app/features/fes/form.php:766
3217
  msgid ""
3218
  "The event will finish after certain repeats. For example if you set it to "
3219
  "10, the event will finish after 10 repeats."
3220
  msgstr ""
3221
 
3222
- #: app/features/fes/form.php:790
3223
  msgid "Note to reviewer"
3224
  msgstr ""
3225
 
3226
- #: app/features/fes/form.php:808
3227
  msgid "User Data"
3228
  msgstr ""
3229
 
3230
- #: app/features/fes/form.php:811
3231
  msgid "eg. yourname@gmail.com"
3232
  msgstr ""
3233
 
3234
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3235
- #: app/features/popup/event.php:185
3236
  msgid "eg. John Smith"
3237
  msgstr ""
3238
 
3239
- #: app/features/fes/form.php:833
3240
  msgid ""
3241
  "If you fill it, it will replace the default event page link. Insert full "
3242
  "link including http(s)://"
3243
  msgstr ""
3244
 
3245
- #: app/features/fes/form.php:956
3246
  msgid "Remove Image"
3247
  msgstr ""
3248
 
3249
- #: app/features/fes/form.php:1046
3250
  msgid "Insert your desired tags, comma separated."
3251
  msgstr ""
3252
 
3253
- #: app/features/fes/form.php:1068
3254
  msgid "Speakers Names"
3255
  msgstr ""
3256
 
3257
- #: app/features/fes/form.php:1069
3258
  msgid "Separate names with commas: Justin, Chris"
3259
  msgstr ""
3260
 
3261
- #: app/features/fes/form.php:1114
3262
  #, php-format
3263
  msgid "I accept the %s in order to submit an event."
3264
  msgstr ""
3265
 
3266
- #: app/features/fes/form.php:1114
3267
  msgid "Privacy Policy"
3268
  msgstr ""
3269
 
3270
- #: app/features/fes/form.php:1116
3271
  msgid "I accept the Privacy Policy in order to submit an event."
3272
  msgstr ""
3273
 
3274
- #: app/features/fes/form.php:1122
3275
  msgid "Submit Event"
3276
  msgstr ""
3277
 
@@ -3346,74 +3356,74 @@ msgstr ""
3346
  msgid "The events are imported successfully!"
3347
  msgstr ""
3348
 
3349
- #: app/features/ix.php:1301
3350
  msgid "Third Party plugin is not installed and activated!"
3351
  msgstr ""
3352
 
3353
- #: app/features/ix.php:1325
3354
  msgid "Third Party plugin is invalid!"
3355
  msgstr ""
3356
 
3357
- #: app/features/ix.php:3300 app/features/ix.php:3361
3358
  msgid "API key and Calendar ID are required!"
3359
  msgstr ""
3360
 
3361
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3362
  msgid "Please select events to import!"
3363
  msgstr ""
3364
 
3365
- #: app/features/ix.php:3794 app/features/ix.php:3857
3366
  msgid "API key and Group URL are required!"
3367
  msgstr ""
3368
 
3369
- #: app/features/ix.php:4096
3370
  msgid "Check at Meetup"
3371
  msgstr ""
3372
 
3373
- #: app/features/ix.php:4262
3374
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3375
  msgstr ""
3376
 
3377
- #: app/features/ix.php:4285
3378
  #, php-format
3379
  msgid "All seems good! Please click %s to authenticate your app."
3380
  msgstr ""
3381
 
3382
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3383
  #: app/features/mec/settings.php:1496
3384
  msgid "here"
3385
  msgstr ""
3386
 
3387
- #: app/features/ix.php:4340
3388
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3389
  msgstr ""
3390
 
3391
- #: app/features/ix.php:4502
3392
  #, php-format
3393
  msgid "%s events added to Google Calendar with success."
3394
  msgstr ""
3395
 
3396
- #: app/features/ix.php:4503
3397
  #, php-format
3398
  msgid "%s Updated previously added events."
3399
  msgstr ""
3400
 
3401
- #: app/features/ix.php:4504
3402
  #, php-format
3403
  msgid "%s events failed to add for following reasons: %s"
3404
  msgstr ""
3405
 
3406
- #: app/features/ix.php:4536
3407
  msgid "Please insert your Facebook page's link."
3408
  msgstr ""
3409
 
3410
- #: app/features/ix.php:4547 app/features/ix.php:4589
3411
  msgid ""
3412
  "We were not able to recognize your Facebook page. Please check again and "
3413
  "provide a valid link."
3414
  msgstr ""
3415
 
3416
- #: app/features/ix.php:4584
3417
  msgid "Please insert your facebook page's link."
3418
  msgstr ""
3419
 
@@ -3608,7 +3618,7 @@ msgstr ""
3608
  msgid "Add to Google Calendar"
3609
  msgstr ""
3610
 
3611
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3612
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3613
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3614
  #: app/features/mec/single.php:604
@@ -3718,7 +3728,7 @@ msgstr ""
3718
  msgid "Import all of your Facebook events into MEC."
3719
  msgstr ""
3720
 
3721
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
3722
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
3723
  msgid "Documentation"
3724
  msgstr ""
@@ -3990,14 +4000,14 @@ msgid ""
3990
  msgstr ""
3991
 
3992
  #: app/features/labels.php:79 app/features/locations.php:77
3993
- #: app/features/organizers.php:77 app/features/speakers.php:79
3994
  #: app/features/tag.php:77
3995
  #, php-format
3996
  msgid "← Back to %s"
3997
  msgstr ""
3998
 
3999
  #: app/features/labels.php:80 app/features/locations.php:78
4000
- #: app/features/organizers.php:78 app/features/speakers.php:80
4001
  #: app/features/tag.php:78
4002
  #, php-format
4003
  msgid "no %s found."
@@ -4038,7 +4048,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4038
  msgstr ""
4039
 
4040
  #: app/features/labels.php:186 app/features/locations.php:269
4041
- #: app/features/organizers.php:210 app/features/speakers.php:289
4042
  #: app/modules/booking/steps/tickets.php:172
4043
  msgid "Count"
4044
  msgstr ""
@@ -4054,7 +4064,7 @@ msgid "Event %s"
4054
  msgstr ""
4055
 
4056
  #: app/features/locations.php:59 app/features/mec.php:526
4057
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4058
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4059
  #: app/libraries/main.php:7623
4060
  msgid "Locations"
@@ -4065,7 +4075,7 @@ msgid "Enter the location address"
4065
  msgstr ""
4066
 
4067
  #: app/features/locations.php:131 app/features/locations.php:197
4068
- #: app/features/locations.php:374 app/features/popup/event.php:149
4069
  msgid "Latitude"
4070
  msgstr ""
4071
 
@@ -4074,7 +4084,7 @@ msgid "Geo latitude (Optional for Lite)"
4074
  msgstr ""
4075
 
4076
  #: app/features/locations.php:139 app/features/locations.php:201
4077
- #: app/features/locations.php:375 app/features/popup/event.php:150
4078
  msgid "Longitude"
4079
  msgstr ""
4080
 
@@ -4093,22 +4103,22 @@ msgstr ""
4093
 
4094
  #: app/features/locations.php:156 app/features/locations.php:210
4095
  #: app/features/organizers.php:128 app/features/organizers.php:161
4096
- #: app/features/speakers.php:176 app/features/speakers.php:229
4097
  msgid "Thumbnail"
4098
  msgstr ""
4099
 
4100
  #: app/features/locations.php:329 app/features/occurrences.php:460
4101
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4102
  #, php-format
4103
  msgid "Event Main %s"
4104
  msgstr ""
4105
 
4106
  #: app/features/locations.php:332 app/features/occurrences.php:464
4107
- #: app/features/popup/event.php:119
4108
  msgid "Hide location"
4109
  msgstr ""
4110
 
4111
- #: app/features/locations.php:333 app/features/popup/event.php:120
4112
  msgid "Insert a new location"
4113
  msgstr ""
4114
 
@@ -4116,28 +4126,28 @@ msgstr ""
4116
  msgid "Choose one of saved locations or insert new one below."
4117
  msgstr ""
4118
 
4119
- #: app/features/locations.php:348 app/features/popup/event.php:141
4120
  msgid "Location Name"
4121
  msgstr ""
4122
 
4123
- #: app/features/locations.php:349 app/features/popup/event.php:142
4124
  msgid "eg. City Hall"
4125
  msgstr ""
4126
 
4127
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4128
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4129
  msgid "Event Location"
4130
  msgstr ""
4131
 
4132
- #: app/features/locations.php:353 app/features/popup/event.php:146
4133
  msgid "eg. City hall, Manhattan, New York"
4134
  msgstr ""
4135
 
4136
- #: app/features/locations.php:378 app/features/popup/event.php:153
4137
  msgid "Latitude/Longitude"
4138
  msgstr ""
4139
 
4140
- #: app/features/locations.php:379 app/features/popup/event.php:154
4141
  msgid ""
4142
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4143
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4146,26 +4156,26 @@ msgid ""
4146
  "the location on the map to find lat long coordinates."
4147
  msgstr ""
4148
 
4149
- #: app/features/locations.php:379 app/features/popup/event.php:154
4150
  msgid "Get Latitude and Longitude"
4151
  msgstr ""
4152
 
4153
  #: app/features/locations.php:392 app/features/organizers.php:315
4154
- #: app/features/popup/event.php:204
4155
  msgid "Choose image"
4156
  msgstr ""
4157
 
4158
- #: app/features/locations.php:406 app/features/occurrences.php:480
4159
- #: app/features/popup/event.php:137
4160
  msgid "Don't show map in single event page"
4161
  msgstr ""
4162
 
4163
- #: app/features/locations.php:409 app/libraries/main.php:7607
4164
  #: app/libraries/main.php:7654
4165
  msgid "Other Locations"
4166
  msgstr ""
4167
 
4168
- #: app/features/locations.php:411
4169
  msgid ""
4170
  "You can select extra locations in addition to main location if you like."
4171
  msgstr ""
@@ -4231,7 +4241,7 @@ msgstr ""
4231
  msgid "Support"
4232
  msgstr ""
4233
 
4234
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4235
  #: app/features/mec/meta_boxes/filter.php:71
4236
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4237
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4239,7 +4249,7 @@ msgid "Organizers"
4239
  msgstr ""
4240
 
4241
  #: app/features/mec.php:536 app/features/mec.php:596
4242
- #: app/features/mec/dashboard.php:221
4243
  msgid "Shortcodes"
4244
  msgstr ""
4245
 
@@ -4427,7 +4437,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4427
  msgstr ""
4428
 
4429
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4430
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4431
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4432
  msgid "Version"
4433
  msgstr ""
@@ -4451,9 +4461,9 @@ msgid "Search..."
4451
  msgstr ""
4452
 
4453
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4454
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4455
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4456
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4457
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4458
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4459
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -4958,23 +4968,23 @@ msgstr ""
4958
  msgid "It applies only to the orders that are related to MEC."
4959
  msgstr ""
4960
 
4961
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
4962
  msgid "After Add to Cart"
4963
  msgstr ""
4964
 
4965
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
4966
  msgid "Redirect to Cart"
4967
  msgstr ""
4968
 
4969
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
4970
  msgid "Redirect to Checkout"
4971
  msgstr ""
4972
 
4973
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
4974
  msgid "Optional View Cart Button"
4975
  msgstr ""
4976
 
4977
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
4978
  msgid "Optional Checkout Button"
4979
  msgstr ""
4980
 
@@ -5026,63 +5036,67 @@ msgid ""
5026
  "(Stripe) got canceled."
5027
  msgstr ""
5028
 
5029
- #: app/features/mec/booking.php:1117
 
 
 
 
5030
  msgid "Use MEC Cart System"
5031
  msgstr ""
5032
 
5033
- #: app/features/mec/booking.php:1119
5034
  msgid ""
5035
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5036
  "adding a simple cart and checkout system to your website."
5037
  msgstr ""
5038
 
5039
- #: app/features/mec/booking.php:1121
5040
  msgid "You cannot use following MEC features while using MEC Cart."
5041
  msgstr ""
5042
 
5043
- #: app/features/mec/booking.php:1123
5044
  msgid "WooCommerce as Payment Gateway"
5045
  msgstr ""
5046
 
5047
- #: app/features/mec/booking.php:1124
5048
  msgid "Currency Per Event"
5049
  msgstr ""
5050
 
5051
- #: app/features/mec/booking.php:1125
5052
  msgid "Disable Gateways Per Event"
5053
  msgstr ""
5054
 
5055
- #: app/features/mec/booking.php:1126
5056
  msgid "Stripe Connect Gateway"
5057
  msgstr ""
5058
 
5059
- #: app/features/mec/booking.php:1127
5060
  msgid "Pay By WooCommerce Gateway"
5061
  msgstr ""
5062
 
5063
- #: app/features/mec/booking.php:1128
5064
  msgid "Organizer Payment Module"
5065
  msgstr ""
5066
 
5067
- #: app/features/mec/booking.php:1132
5068
  msgid "Cart Page"
5069
  msgstr ""
5070
 
5071
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5072
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5073
  #, php-format
5074
  msgid "Put %s shortcode into the page."
5075
  msgstr ""
5076
 
5077
- #: app/features/mec/booking.php:1144
5078
  msgid "Checkout Page"
5079
  msgstr ""
5080
 
5081
- #: app/features/mec/booking.php:1170
5082
  msgid "Enable Cart Invoice"
5083
  msgstr ""
5084
 
5085
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5086
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5087
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5088
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5090,7 +5104,7 @@ msgstr ""
5090
  msgid "Saved"
5091
  msgstr ""
5092
 
5093
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5094
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5095
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5096
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5098,7 +5112,7 @@ msgstr ""
5098
  msgid "Settings Saved!"
5099
  msgstr ""
5100
 
5101
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5102
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5103
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5104
  msgid "Please Refresh Page"
@@ -5114,12 +5128,7 @@ msgstr ""
5114
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5115
  msgstr ""
5116
 
5117
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5118
- msgctxt "plugin rate"
5119
- msgid "Rate the plugin ★★★★★"
5120
- msgstr ""
5121
-
5122
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5123
  #, php-format
5124
  msgid ""
5125
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5127,63 +5136,48 @@ msgid ""
5127
  "Spots, etc you should upgrade to the Pro version."
5128
  msgstr ""
5129
 
5130
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5131
  msgid "lite"
5132
  msgstr ""
5133
 
5134
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5135
  #: app/features/mec/support.php:126
5136
  msgid "GO PREMIUM"
5137
  msgstr ""
5138
 
5139
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5140
- #, php-format
5141
- msgid ""
5142
- "Easily get a discount coupon by rating us on %s or following and reposting "
5143
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5144
- msgstr ""
5145
-
5146
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5147
- msgid "WordPress"
5148
- msgstr ""
5149
-
5150
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5151
- msgid "Copouns!"
5152
- msgstr ""
5153
-
5154
- #: app/features/mec/dashboard.php:115
5155
  msgid "Getting started with Modern Events Calendar"
5156
  msgstr ""
5157
 
5158
- #: app/features/mec/dashboard.php:116
5159
  msgid ""
5160
  "In this short video, you can learn how to make an event and put a calendar "
5161
  "on your website. Please watch this 2 minutes video to the end."
5162
  msgstr ""
5163
 
5164
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5165
  msgid "License Activation"
5166
  msgstr ""
5167
 
5168
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5169
  msgid "Activate Addons"
5170
  msgstr ""
5171
 
5172
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5173
  msgid "You cannot access this section."
5174
  msgstr ""
5175
 
5176
- #: app/features/mec/dashboard.php:162
5177
  msgid ""
5178
  "In order to use all plugin features and options, please enter your purchase "
5179
  "code."
5180
  msgstr ""
5181
 
5182
- #: app/features/mec/dashboard.php:270
5183
  msgid "Popular Gateways"
5184
  msgstr ""
5185
 
5186
- #: app/features/mec/dashboard.php:328
5187
  msgid "Change Log"
5188
  msgstr ""
5189
 
@@ -6596,7 +6590,7 @@ msgstr ""
6596
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
6597
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
6598
  #: app/features/popup/settings.php:272 app/features/search.php:109
6599
- #: app/features/speakers.php:60 app/features/speakers.php:286
6600
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
6601
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
6602
  #: app/modules/speakers/details.php:18
@@ -7791,7 +7785,7 @@ msgstr ""
7791
  msgid "Please, insert comma to separate reminder hours."
7792
  msgstr ""
7793
 
7794
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
7795
  #: app/libraries/main.php:705
7796
  msgid "New Event"
7797
  msgstr ""
@@ -9676,13 +9670,13 @@ msgstr ""
9676
  msgid "Choose one of saved locations."
9677
  msgstr ""
9678
 
9679
- #: app/features/occurrences.php:491 app/features/organizers.php:280
9680
- #: app/features/popup/event.php:166
9681
  msgid "Hide organizer"
9682
  msgstr ""
9683
 
9684
- #: app/features/occurrences.php:499 app/features/organizers.php:289
9685
- #: app/features/popup/event.php:175
9686
  msgid "Choose one of saved organizers or insert new one below."
9687
  msgstr ""
9688
 
@@ -9695,7 +9689,7 @@ msgid "Insert organizer email address."
9695
  msgstr ""
9696
 
9697
  #: app/features/organizers.php:120 app/features/organizers.php:157
9698
- #: app/features/organizers.php:308 app/features/popup/event.php:198
9699
  msgid "Link to organizer page"
9700
  msgstr ""
9701
 
@@ -9707,27 +9701,27 @@ msgstr ""
9707
  msgid "Contact info"
9708
  msgstr ""
9709
 
9710
- #: app/features/organizers.php:281 app/features/popup/event.php:167
9711
  msgid "Insert a new organizer"
9712
  msgstr ""
9713
 
9714
- #: app/features/organizers.php:300 app/features/popup/event.php:188
9715
  msgid "Phone number."
9716
  msgstr ""
9717
 
9718
- #: app/features/organizers.php:301 app/features/popup/event.php:189
9719
  msgid "eg. +1 (234) 5678"
9720
  msgstr ""
9721
 
9722
- #: app/features/organizers.php:304 app/features/popup/event.php:193
9723
  msgid "Email address."
9724
  msgstr ""
9725
 
9726
- #: app/features/organizers.php:305 app/features/popup/event.php:194
9727
  msgid "eg. john@smith.com"
9728
  msgstr ""
9729
 
9730
- #: app/features/organizers.php:309 app/features/popup/event.php:199
9731
  msgid "eg. https://webnus.net"
9732
  msgstr ""
9733
 
@@ -9741,56 +9735,56 @@ msgid ""
9741
  "You can select extra organizers in addition to main organizer if you like."
9742
  msgstr ""
9743
 
9744
- #: app/features/popup/event.php:58
9745
  msgid "Adding an Event..."
9746
  msgstr ""
9747
 
9748
- #: app/features/popup/event.php:66
9749
  msgid "Event Name"
9750
  msgstr ""
9751
 
9752
- #: app/features/popup/event.php:67
9753
  msgid "Event name is required"
9754
  msgstr ""
9755
 
9756
- #: app/features/popup/event.php:128
9757
  msgid "Choose one of saved locations or insert new one."
9758
  msgstr ""
9759
 
9760
- #: app/features/popup/event.php:132
9761
  msgid "Add Location"
9762
  msgstr ""
9763
 
9764
- #: app/features/popup/event.php:179
9765
  msgid "Add Organizer"
9766
  msgstr ""
9767
 
9768
- #: app/features/popup/event.php:219
9769
  msgid "All Categories"
9770
  msgstr ""
9771
 
9772
- #: app/features/popup/event.php:220
9773
  msgid "Most Used"
9774
  msgstr ""
9775
 
9776
- #: app/features/popup/event.php:231
9777
  msgid "Add New Category"
9778
  msgstr ""
9779
 
9780
- #: app/features/popup/event.php:242
9781
  msgid "Set Featured Image"
9782
  msgstr ""
9783
 
9784
- #: app/features/popup/event.php:252
9785
  msgid "Your Event Has Been Created."
9786
  msgstr ""
9787
 
9788
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
9789
  #: app/features/popup/shortcode.php:553
9790
  msgid "Prev"
9791
  msgstr ""
9792
 
9793
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
9794
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
9795
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
9796
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -9960,68 +9954,68 @@ msgstr ""
9960
  msgid "No search result."
9961
  msgstr ""
9962
 
9963
- #: app/features/speakers.php:112 app/features/speakers.php:197
9964
- #: app/features/speakers.php:287
9965
  msgid "Job Title"
9966
  msgstr ""
9967
 
9968
- #: app/features/speakers.php:115 app/features/speakers.php:198
9969
  msgid "Insert speaker job title."
9970
  msgstr ""
9971
 
9972
- #: app/features/speakers.php:123 app/features/speakers.php:202
9973
  msgid "Insert speaker phone number."
9974
  msgstr ""
9975
 
9976
- #: app/features/speakers.php:131 app/features/speakers.php:206
9977
  msgid "Insert speaker email address."
9978
  msgstr ""
9979
 
9980
- #: app/features/speakers.php:139 app/features/speakers.php:210
9981
  msgid "Insert URL of Website"
9982
  msgstr ""
9983
 
9984
- #: app/features/speakers.php:144 app/features/speakers.php:213
9985
  msgid "Facebook Page"
9986
  msgstr ""
9987
 
9988
- #: app/features/speakers.php:147 app/features/speakers.php:214
9989
  msgid "Insert URL of Facebook Page"
9990
  msgstr ""
9991
 
9992
- #: app/features/speakers.php:152 app/features/speakers.php:217
9993
  msgid "Instagram"
9994
  msgstr ""
9995
 
9996
- #: app/features/speakers.php:155 app/features/speakers.php:218
9997
  msgid "Insert URL of Instagram"
9998
  msgstr ""
9999
 
10000
- #: app/features/speakers.php:160 app/features/speakers.php:221
10001
  msgid "LinkedIn"
10002
  msgstr ""
10003
 
10004
- #: app/features/speakers.php:163
10005
  msgid "Insert URL of LinkedIn"
10006
  msgstr ""
10007
 
10008
- #: app/features/speakers.php:168 app/features/speakers.php:225
10009
  msgid "Twitter Page"
10010
  msgstr ""
10011
 
10012
- #: app/features/speakers.php:171 app/features/speakers.php:226
10013
  msgid "Insert URL of Twitter Page"
10014
  msgstr ""
10015
 
10016
- #: app/features/speakers.php:222
10017
  msgid "Insert URL of linkedin"
10018
  msgstr ""
10019
 
10020
- #: app/features/speakers.php:347
10021
  msgid "Sorry, You must insert speaker name!"
10022
  msgstr ""
10023
 
10024
- #: app/features/speakers.php:396
10025
  msgid ""
10026
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
10027
  "section and speaker widget section!"
@@ -10104,69 +10098,69 @@ msgctxt "plugin link"
10104
  msgid "Upgrade to Pro Version"
10105
  msgstr ""
10106
 
10107
- #: app/libraries/factory.php:234
10108
  msgctxt "plugin link"
10109
  msgid "Settings"
10110
  msgstr ""
10111
 
10112
- #: app/libraries/factory.php:239
10113
  msgctxt "plugin link"
10114
  msgid "Upgrade"
10115
  msgstr ""
10116
 
10117
- #: app/libraries/factory.php:393
10118
  msgid "day"
10119
  msgstr ""
10120
 
10121
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
10122
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
10123
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
10124
  msgid "days"
10125
  msgstr ""
10126
 
10127
- #: app/libraries/factory.php:395
10128
  msgid "hour"
10129
  msgstr ""
10130
 
10131
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
10132
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
10133
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
10134
  msgid "hours"
10135
  msgstr ""
10136
 
10137
- #: app/libraries/factory.php:397
10138
  msgid "minute"
10139
  msgstr ""
10140
 
10141
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
10142
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
10143
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
10144
  msgid "minutes"
10145
  msgstr ""
10146
 
10147
- #: app/libraries/factory.php:399
10148
  msgid "second"
10149
  msgstr ""
10150
 
10151
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
10152
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
10153
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
10154
  msgid "seconds"
10155
  msgstr ""
10156
 
10157
- #: app/libraries/factory.php:477
10158
  msgid "MEC Single Sidebar"
10159
  msgstr ""
10160
 
10161
- #: app/libraries/factory.php:478
10162
  msgid "Custom sidebar for single and modal page of MEC."
10163
  msgstr ""
10164
 
10165
- #: app/libraries/factory.php:1199
10166
  msgid "Notice:"
10167
  msgstr ""
10168
 
10169
- #: app/libraries/factory.php:1200
10170
  msgid "This update includes only bug fixes."
10171
  msgstr ""
10172
 
@@ -10315,10 +10309,6 @@ msgstr ""
10315
  msgid "%s Form"
10316
  msgstr ""
10317
 
10318
- #: app/libraries/main.php:689
10319
- msgid "MEC Cart"
10320
- msgstr ""
10321
-
10322
  #: app/libraries/main.php:726
10323
  msgid "Only For Bookers"
10324
  msgstr ""
@@ -10991,12 +10981,7 @@ msgstr ""
10991
  msgid "End at: %s - %s"
10992
  msgstr ""
10993
 
10994
- #: app/libraries/skins.php:1755
10995
- #, php-format
10996
- msgid "Every %s"
10997
- msgstr ""
10998
-
10999
- #: app/libraries/skins.php:1756
11000
  msgid "Repeating Event"
11001
  msgstr ""
11002
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:15+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fi_FI\n"
157
  msgstr ""
158
 
159
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
160
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
161
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
162
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
163
  #: app/features/mec/notifications.php:1922
191
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
192
  #: app/features/autoemails.php:60 app/features/events.php:606
193
  #: app/features/events.php:2650 app/features/events.php:2717
194
+ #: app/features/events.php:2806 app/features/events.php:4445
195
+ #: app/features/fes.php:280 app/features/fes/form.php:812
196
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
197
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
198
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
199
  #: app/features/organizers.php:112 app/features/organizers.php:153
200
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
201
+ #: app/features/speakers.php:211 app/libraries/main.php:653
202
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
203
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
204
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
348
  #: app/features/events.php:2808 app/features/mec/booking.php:800
349
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
350
  #: app/features/organizers.php:104 app/features/organizers.php:149
351
+ #: app/features/speakers.php:126 app/features/speakers.php:207
352
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
353
  msgid "Tel"
354
  msgstr ""
355
 
495
  msgid "Agreement"
496
  msgstr ""
497
 
498
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
499
+ #, php-format
500
+ msgid "I agree with %s"
501
+ msgstr ""
502
+
503
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
504
  #, php-format
505
  msgid "Instead of %s, the page title with a link will be show."
677
  #: app/features/events.php:1843 app/features/events.php:2014
678
  #: app/features/events.php:2029 app/features/events.php:2271
679
  #: app/features/events.php:2283 app/features/events.php:2476
680
+ #: app/features/events.php:2513 app/features/fes/form.php:460
681
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
682
  #: app/features/locations.php:341 app/features/mec/booking.php:113
683
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
684
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
755
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
756
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
757
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
758
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
759
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
760
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
761
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
762
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
763
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
911
 
912
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
913
  #: app/features/events.php:432 app/features/events.php:1283
914
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
915
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
916
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
917
  #: app/skins/single.php:1126 app/skins/single/default.php:213
918
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
983
  msgstr ""
984
 
985
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
986
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
987
  #: app/features/labels.php:61 app/features/labels.php:227
988
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
989
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1015
  msgstr ""
1016
 
1017
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1018
+ #: app/features/events.php:3876 app/features/events.php:4190
1019
  #: app/features/locations.php:58 app/features/locations.php:267
1020
  #: app/features/locations.php:329 app/features/locations.php:331
1021
  #: app/features/locations.php:340
1035
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1036
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1037
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1038
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1039
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1040
  #: app/features/search.php:97 app/libraries/main.php:3020
1041
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1049
 
1050
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1051
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1052
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1053
  #: app/skins/single.php:1406 app/skins/single.php:1473
1054
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1055
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1072
 
1073
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1074
  #: app/features/events.php:1519 app/features/events.php:1532
1075
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1076
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1077
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1078
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1117
 
1118
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1119
  #: app/features/events.php:431 app/features/events.php:3877
1120
+ #: app/features/events.php:4192 app/features/events.php:4193
1121
+ #: app/features/events.php:4194
1122
  #: app/features/mec/meta_boxes/display_options.php:1660
1123
  #: app/features/mec/meta_boxes/search_form.php:80
1124
  #: app/features/mec/meta_boxes/search_form.php:168
1133
  #: app/features/mec/meta_boxes/search_form.php:983
1134
  #: app/features/mec/meta_boxes/search_form.php:1070
1135
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1136
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1137
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1138
  #: app/features/organizers.php:58 app/features/organizers.php:208
1139
  #: app/features/organizers.php:277 app/features/organizers.php:279
1140
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1141
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1142
  #: app/features/popup/settings.php:263 app/features/search.php:103
1143
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1144
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1256
  #: app/features/booking/calendar_novel.php:145
1257
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1258
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1259
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1260
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1261
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1262
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1263
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1314
 
1315
  #: app/features/autoemails.php:74 app/features/events.php:230
1316
  #: app/features/labels.php:72 app/features/locations.php:70
1317
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1318
  #: app/features/tag.php:70
1319
  #, php-format
1320
  msgid "Edit %s"
1369
  msgid "Go to events page"
1370
  msgstr ""
1371
 
1372
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1373
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1374
  #: app/features/wc.php:91 app/libraries/main.php:3072
1375
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1442
  msgid "Back to Cart"
1443
  msgstr ""
1444
 
1445
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1446
  #: app/features/mec/settings.php:907
1447
  msgid "Event Color"
1448
  msgstr ""
1452
  msgstr ""
1453
 
1454
  #: app/features/contextual.php:55 app/features/mec.php:546
1455
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1456
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1457
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1458
  #: app/libraries/main.php:738
1459
  msgid "Settings"
1567
  msgstr ""
1568
 
1569
  #: app/features/contextual.php:166 app/features/events.php:1298
1570
+ #: app/features/fes/form.php:885
1571
  msgid "Currency Options"
1572
  msgstr ""
1573
 
1655
  msgstr ""
1656
 
1657
  #: app/features/dlfile.php:297 app/features/events.php:3874
1658
+ #: app/features/events.php:4183 app/features/events.php:4734
1659
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1660
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1661
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1662
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1665
  msgstr ""
1666
 
1667
  #: app/features/dlfile.php:301 app/features/events.php:1988
1668
+ #: app/features/events.php:2248 app/features/events.php:4184
1669
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1670
  #: app/libraries/hourlyschedule.php:152
1671
  msgid "Description"
1702
  msgstr ""
1703
 
1704
  #: app/features/emails/details.php:35 app/features/events.php:1223
1705
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1706
  msgid "After"
1707
  msgstr ""
1708
 
1711
  msgstr ""
1712
 
1713
  #: app/features/emails/details.php:40 app/features/events.php:192
1714
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1715
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1716
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1717
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1732
  msgid "Add Event"
1733
  msgstr ""
1734
 
1735
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1736
  msgid "Add New Event"
1737
  msgstr ""
1738
 
1739
+ #: app/features/events.php:196 app/features/ix.php:4614
1740
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1741
  #: app/skins/map/tpl.php:93
1742
  msgid "No events found!"
1747
  msgstr ""
1748
 
1749
  #: app/features/events.php:199 app/features/fes/list.php:100
1750
+ #: app/features/popup/event.php:259
1751
  msgid "View Event"
1752
  msgstr ""
1753
 
1756
  msgstr ""
1757
 
1758
  #: app/features/events.php:219 app/features/events.php:3831
1759
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1760
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1761
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1762
  #: app/libraries/main.php:7619
1765
 
1766
  #: app/features/events.php:229 app/features/labels.php:71
1767
  #: app/features/locations.php:69 app/features/organizers.php:69
1768
+ #: app/features/speakers.php:77 app/features/tag.php:69
1769
  #, php-format
1770
  msgid "All %s"
1771
  msgstr ""
1772
 
1773
  #: app/features/events.php:231 app/features/labels.php:73
1774
  #: app/features/locations.php:71 app/features/organizers.php:71
1775
+ #: app/features/speakers.php:79 app/features/tag.php:71
1776
  #, php-format
1777
  msgid "View %s"
1778
  msgstr ""
1779
 
1780
  #: app/features/events.php:232 app/features/labels.php:74
1781
  #: app/features/locations.php:72 app/features/organizers.php:72
1782
+ #: app/features/speakers.php:80 app/features/tag.php:72
1783
  #, php-format
1784
  msgid "Update %s"
1785
  msgstr ""
1786
 
1787
  #: app/features/events.php:233 app/features/labels.php:75
1788
  #: app/features/locations.php:73 app/features/organizers.php:73
1789
+ #: app/features/speakers.php:81 app/features/tag.php:73
1790
  #, php-format
1791
  msgid "Add New %s"
1792
  msgstr ""
1793
 
1794
  #: app/features/events.php:234 app/features/labels.php:76
1795
  #: app/features/locations.php:74 app/features/organizers.php:74
1796
+ #: app/features/speakers.php:82 app/features/tag.php:74
1797
  #, php-format
1798
  msgid "New %s Name"
1799
  msgstr ""
1800
 
1801
  #: app/features/events.php:235 app/features/labels.php:77
1802
  #: app/features/locations.php:75 app/features/organizers.php:75
1803
+ #: app/features/speakers.php:83 app/features/tag.php:75
1804
  #, php-format
1805
  msgid "Popular %s"
1806
  msgstr ""
1807
 
1808
  #: app/features/events.php:236 app/features/labels.php:78
1809
  #: app/features/locations.php:76 app/features/organizers.php:76
1810
+ #: app/features/speakers.php:84 app/features/tag.php:76
1811
  #, php-format
1812
  msgid "Search %s"
1813
  msgstr ""
1837
  #: app/features/events.php:278 app/features/events.php:336
1838
  #: app/features/locations.php:161 app/features/locations.php:213
1839
  #: app/features/organizers.php:133 app/features/organizers.php:164
1840
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1841
  msgid "Upload/Add image"
1842
  msgstr ""
1843
 
1846
  #: app/features/locations.php:393 app/features/locations.php:400
1847
  #: app/features/organizers.php:134 app/features/organizers.php:165
1848
  #: app/features/organizers.php:316 app/features/organizers.php:323
1849
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1850
  msgid "Remove image"
1851
  msgstr ""
1852
 
1862
  msgid "Date And Time"
1863
  msgstr ""
1864
 
1865
+ #: app/features/events.php:425 app/features/fes/form.php:386
1866
  msgid "Event Repeating"
1867
  msgstr ""
1868
 
1901
  msgstr ""
1902
 
1903
  #: app/features/events.php:605 app/features/events.php:2641
1904
+ #: app/features/events.php:4442 app/features/fes.php:280
1905
+ #: app/features/fes/form.php:816 app/features/labels.php:184
1906
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
1907
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
1908
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
1909
  msgid "Name"
1910
  msgstr ""
1915
  "overwrite in the next import from Google."
1916
  msgstr ""
1917
 
1918
+ #: app/features/events.php:619 app/features/fes/form.php:284
1919
  msgid "Date and Time"
1920
  msgstr ""
1921
 
1922
  #: app/features/events.php:622 app/features/events.php:626
1923
+ #: app/features/events.php:3878 app/features/events.php:4185
1924
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
1925
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
1926
  #: app/features/mec/meta_boxes/display_options.php:57
1927
  #: app/features/mec/meta_boxes/display_options.php:312
1939
  #: app/features/mec/meta_boxes/display_options.php:2347
1940
  #: app/features/mec/meta_boxes/display_options.php:2478
1941
  #: app/features/mec/meta_boxes/display_options.php:2584
1942
+ #: app/features/popup/event.php:79
1943
  msgid "Start Date"
1944
  msgstr ""
1945
 
1946
  #: app/features/events.php:642 app/features/events.php:646
1947
+ #: app/features/events.php:3879 app/features/events.php:4187
1948
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
1949
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
1950
  #: app/features/mec/meta_boxes/display_options.php:73
1951
  #: app/features/mec/meta_boxes/display_options.php:328
1954
  #: app/features/mec/meta_boxes/display_options.php:788
1955
  #: app/features/mec/meta_boxes/display_options.php:1618
1956
  #: app/features/mec/meta_boxes/display_options.php:2363
1957
+ #: app/features/popup/event.php:96
1958
  msgid "End Date"
1959
  msgstr ""
1960
 
1961
+ #: app/features/events.php:669 app/features/fes/form.php:326
1962
+ #: app/features/popup/event.php:113
1963
  msgid "All-day Event"
1964
  msgstr ""
1965
 
1966
+ #: app/features/events.php:679 app/features/fes/form.php:329
1967
  msgid "Hide Event Time"
1968
  msgstr ""
1969
 
1970
+ #: app/features/events.php:689 app/features/fes/form.php:332
1971
  msgid "Hide Event End Time"
1972
  msgstr ""
1973
 
1974
  #: app/features/events.php:694 app/features/events.php:698
1975
+ #: app/features/fes/form.php:336
1976
  msgid "Notes on the time"
1977
  msgstr ""
1978
 
1979
+ #: app/features/events.php:699 app/features/fes/form.php:337
1980
  msgid ""
1981
  "It shows next to event time on the Single Event Page. You can enter notes "
1982
  "such as timezone in this field."
1983
  msgstr ""
1984
 
1985
+ #: app/features/events.php:711 app/features/fes/form.php:344
1986
  msgid "Timezone"
1987
  msgstr ""
1988
 
1991
  #: app/features/events.php:1793 app/features/events.php:1813
1992
  #: app/features/events.php:1868 app/features/events.php:2438
1993
  #: app/features/events.php:2561 app/features/events.php:2672
1994
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
1995
  msgid "Inherit from global options"
1996
  msgstr ""
1997
 
1998
  #: app/features/events.php:725 app/features/events.php:728
1999
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2000
  #: app/features/mec/settings.php:858
2001
  msgid "Countdown Method"
2002
  msgstr ""
2003
 
2004
+ #: app/features/events.php:730 app/features/fes/form.php:363
2005
  msgid "Count to Event Start"
2006
  msgstr ""
2007
 
2008
+ #: app/features/events.php:731 app/features/fes/form.php:364
2009
  msgid "Count to Event End"
2010
  msgstr ""
2011
 
2012
+ #: app/features/events.php:737 app/features/fes/form.php:371
2013
  #: app/modules/weather/darksky.php:57
2014
  msgid "Visibility"
2015
  msgstr ""
2016
 
2017
+ #: app/features/events.php:740 app/features/fes/form.php:374
2018
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2019
  msgid "Event Visibility"
2020
  msgstr ""
2021
 
2022
+ #: app/features/events.php:741 app/features/fes/form.php:375
2023
  msgid "Show on Shortcodes"
2024
  msgstr ""
2025
 
2026
+ #: app/features/events.php:742 app/features/fes/form.php:376
2027
  msgid "Hide on Shortcodes"
2028
  msgstr ""
2029
 
2030
+ #: app/features/events.php:749 app/features/fes/form.php:384
2031
  msgid "Repeating"
2032
  msgstr ""
2033
 
2035
  msgid "Event Repeating (Recurring events)"
2036
  msgstr ""
2037
 
2038
+ #: app/features/events.php:762 app/features/fes/form.php:390
2039
  msgid "Repeats"
2040
  msgstr ""
2041
 
2042
+ #: app/features/events.php:770 app/features/fes/form.php:392
2043
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2044
+ #: app/skins/default_full_calendar/tpl.php:79
2045
  #: app/skins/full_calendar/tpl.php:140
2046
  msgid "Daily"
2047
  msgstr ""
2048
 
2049
+ #: app/features/events.php:777 app/features/fes/form.php:393
2050
+ #: app/libraries/skins.php:1772
2051
  msgid "Every Weekday"
2052
  msgstr ""
2053
 
2054
+ #: app/features/events.php:784 app/features/fes/form.php:394
2055
+ #: app/libraries/skins.php:1769
2056
  msgid "Every Weekend"
2057
  msgstr ""
2058
 
2059
+ #: app/features/events.php:791 app/features/fes/form.php:395
2060
  msgid "Certain Weekdays"
2061
  msgstr ""
2062
 
2063
+ #: app/features/events.php:798 app/features/fes/form.php:396
2064
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2065
  #: app/skins/full_calendar/tpl.php:139
2066
  msgid "Weekly"
2067
  msgstr ""
2068
 
2069
+ #: app/features/events.php:805 app/features/fes/form.php:397
2070
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2071
+ #: app/skins/default_full_calendar/tpl.php:77
2072
  #: app/skins/full_calendar/tpl.php:138
2073
  msgid "Monthly"
2074
  msgstr ""
2075
 
2076
+ #: app/features/events.php:812 app/features/fes/form.php:398
2077
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2078
+ #: app/skins/default_full_calendar/tpl.php:76
2079
  #: app/skins/full_calendar/tpl.php:137
2080
  msgid "Yearly"
2081
  msgstr ""
2082
 
2083
+ #: app/features/events.php:819 app/features/fes/form.php:399
2084
  msgid "Custom Days"
2085
  msgstr ""
2086
 
2087
+ #: app/features/events.php:826 app/features/fes/form.php:400
2088
  msgid "Advanced"
2089
  msgstr ""
2090
 
2091
+ #: app/features/events.php:831 app/features/fes/form.php:404
2092
  msgid "Repeat Interval"
2093
  msgstr ""
2094
 
2095
+ #: app/features/events.php:833 app/features/fes/form.php:405
2096
  msgid "Repeat interval"
2097
  msgstr ""
2098
 
2099
+ #: app/features/events.php:837 app/features/fes/form.php:408
2100
  msgid "Week Days"
2101
  msgstr ""
2102
 
2108
 
2109
  #: app/features/events.php:860 app/features/events.php:2101
2110
  #: app/features/events.php:2129 app/features/events.php:2343
2111
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2112
  #: app/features/ix/import_g_calendar.php:51
2113
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2114
  #: app/libraries/skins.php:1389
2119
  #: app/features/events.php:2085 app/features/events.php:2167
2120
  #: app/features/events.php:2332 app/features/events.php:2376
2121
  #: app/features/events.php:2449 app/features/events.php:2566
2122
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2123
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2124
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2125
  msgid "Add"
2126
  msgstr ""
2127
 
2128
+ #: app/features/events.php:877 app/features/fes/form.php:456
2129
  msgid "Custom Days Repeating"
2130
  msgstr ""
2131
 
2132
+ #: app/features/events.php:880 app/features/fes/form.php:459
2133
  msgid ""
2134
  "Add certain days to event occurrence dates. If you have a single day event, "
2135
  "start and end dates should be the same, If you have a multiple day event, "
2138
 
2139
  #: app/features/events.php:891 app/features/events.php:2105
2140
  #: app/features/events.php:2133 app/features/events.php:2347
2141
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2142
  msgid "End"
2143
  msgstr ""
2144
 
2145
+ #: app/features/events.php:968 app/features/fes/form.php:532
2146
  msgid "First"
2147
  msgstr ""
2148
 
2149
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2150
  msgid "Second"
2151
  msgstr ""
2152
 
2153
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2154
  msgid "Third"
2155
  msgstr ""
2156
 
2157
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2158
  msgid "Fourth"
2159
  msgstr ""
2160
 
2161
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2162
  msgid "Last"
2163
  msgstr ""
2164
 
2165
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2166
  msgid "Ends Repeat"
2167
  msgstr ""
2168
 
2169
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2170
  msgid "Never"
2171
  msgstr ""
2172
 
2173
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2174
  msgid "On"
2175
  msgstr ""
2176
 
2177
  #: app/features/events.php:1227 app/features/events.php:1231
2178
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2179
  msgid "Occurrences times"
2180
  msgstr ""
2181
 
2185
  "10, the event will finish after 10 occurrences."
2186
  msgstr ""
2187
 
2188
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2189
  msgid "Show only one occurrence of this event"
2190
  msgstr ""
2191
 
2192
+ #: app/features/events.php:1277 app/features/events.php:4195
2193
+ #: app/features/fes/form.php:867
2194
  #: app/features/mec/meta_boxes/search_form.php:116
2195
  #: app/features/mec/meta_boxes/search_form.php:204
2196
  #: app/features/mec/meta_boxes/search_form.php:292
2214
  #: app/features/mec/notifications.php:1511
2215
  #: app/features/mec/notifications.php:1628
2216
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2217
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2218
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2219
  #: app/widgets/single.php:122
2220
  msgid "Event Cost"
2221
  msgstr ""
2222
 
2223
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2224
  msgid "Show the minimum price based on tickets"
2225
  msgstr ""
2226
 
2227
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2228
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2229
  #: app/libraries/main.php:646
2230
  msgid "Currency"
2231
  msgstr ""
2232
 
2233
  #: app/features/events.php:1310 app/features/events.php:1315
2234
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2235
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2236
  msgid "Currency Sign"
2237
  msgstr ""
2238
 
2239
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2240
  #: app/features/mec/settings.php:600
2241
  msgid "Default value will be \"currency\" if you leave it empty."
2242
  msgstr ""
2243
 
2244
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2245
  #: app/features/mec/settings.php:607
2246
  msgid "Currency Position"
2247
  msgstr ""
2248
 
2249
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2250
  #: app/features/mec/settings.php:610
2251
  msgid "$10 (Before)"
2252
  msgstr ""
2253
 
2254
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2255
  #: app/features/mec/settings.php:611
2256
  msgid "$ 10 (Before with Space)"
2257
  msgstr ""
2258
 
2259
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2260
  #: app/features/mec/settings.php:612
2261
  msgid "10$ (After)"
2262
  msgstr ""
2263
 
2264
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2265
  #: app/features/mec/settings.php:613
2266
  msgid "10 $ (After with Space)"
2267
  msgstr ""
2268
 
2269
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2270
  #: app/features/mec/settings.php:618
2271
  msgid "Thousand Separator"
2272
  msgstr ""
2273
 
2274
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2275
  #: app/features/mec/settings.php:624
2276
  msgid "Decimal Separator"
2277
  msgstr ""
2278
 
2279
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2280
  #: app/features/mec/settings.php:634
2281
  msgid "No decimal"
2282
  msgstr ""
2300
  msgid "Day 1"
2301
  msgstr ""
2302
 
2303
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2304
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2305
  msgid "Event Links"
2306
  msgstr ""
2307
 
2308
  #: app/features/events.php:1501 app/features/events.php:1509
2309
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2310
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2311
  #: app/libraries/main.php:7649
2312
  msgid "Event Link"
2313
  msgstr ""
2314
 
2315
  #: app/features/events.php:1504 app/features/events.php:1522
2316
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2317
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2318
  msgid "eg. http://yoursite.com/your-event"
2319
  msgstr ""
2320
 
2329
  msgid "URL Shortener"
2330
  msgstr ""
2331
 
2332
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2333
+ #: app/features/occurrences.php:530
2334
  msgid "More Information"
2335
  msgstr ""
2336
 
2337
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2338
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2339
  #: app/features/popup/shortcode.php:481
2340
  msgid "Current Window"
2341
  msgstr ""
2342
 
2343
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2344
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2345
  #: app/features/popup/shortcode.php:485
2346
  msgid "New Window"
2347
  msgstr ""
2348
 
2349
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2350
  msgid ""
2351
  "If you fill it, it will be shown in event details page as an optional link. "
2352
  "Insert full link including http(s)://"
2692
  msgstr ""
2693
 
2694
  #: app/features/events.php:1944 app/features/events.php:2211
2695
+ #: app/features/events.php:4182 app/features/fes.php:280
2696
  #: app/features/labels.php:183 app/features/locations.php:266
2697
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2698
  msgid "ID"
2699
  msgstr ""
2700
 
2703
  msgstr ""
2704
 
2705
  #: app/features/events.php:1956 app/features/events.php:2219
2706
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2707
  msgid "Start Time"
2708
  msgstr ""
2709
 
2710
  #: app/features/events.php:1970 app/features/events.php:2233
2711
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2712
  msgid "End Time"
2713
  msgstr ""
2714
 
2728
  #: app/features/events.php:2007 app/features/events.php:2011
2729
  #: app/features/events.php:2109 app/features/events.php:2136
2730
  #: app/features/events.php:2265 app/features/events.php:2268
2731
+ #: app/features/events.php:2349 app/features/events.php:4743
2732
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2733
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2734
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2874
  msgid "Fixed Fields"
2875
  msgstr ""
2876
 
2877
+ #: app/features/events.php:2887 app/features/events.php:4737
2878
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
2879
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
2880
  msgid "Attendees"
2900
  msgstr ""
2901
 
2902
  #: app/features/events.php:3757 app/features/mec.php:1374
2903
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
2904
  msgid "Upcoming Events"
2905
  msgstr ""
2906
 
2955
  msgstr ""
2956
 
2957
  #: app/features/events.php:4068 app/features/events.php:4069
2958
+ #: app/features/events.php:4295
2959
  msgid "Duplicate"
2960
  msgstr ""
2961
 
2962
+ #: app/features/events.php:4189
2963
  msgid "Link"
2964
  msgstr ""
2965
 
2966
+ #: app/features/events.php:4191 app/features/locations.php:111
2967
  #: app/features/locations.php:181 app/features/locations.php:268
2968
  #: app/features/mec/meta_boxes/search_form.php:108
2969
  #: app/features/mec/meta_boxes/search_form.php:196
2981
  msgid "Address"
2982
  msgstr ""
2983
 
2984
+ #: app/features/events.php:4193
2985
  #, php-format
2986
  msgid "%s Tel"
2987
  msgstr ""
2988
 
2989
+ #: app/features/events.php:4194
2990
  #, php-format
2991
  msgid "%s Email"
2992
  msgstr ""
2993
 
2994
+ #: app/features/events.php:4196 app/features/fes/form.php:953
2995
  #: app/features/mec/settings.php:876
2996
  msgid "Featured Image"
2997
  msgstr ""
2998
 
2999
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3000
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3001
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3002
  msgid "Tags"
3003
  msgstr ""
3004
 
3005
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3006
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3007
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3008
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3009
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3010
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3011
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3013
  msgid "Speakers"
3014
  msgstr ""
3015
 
3016
+ #: app/features/events.php:4448 app/features/fes.php:280
3017
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3018
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3019
  #: app/libraries/main.php:7592
3020
  msgid "Ticket"
3021
  msgstr ""
3022
 
3023
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3024
  msgid "Variations"
3025
  msgstr ""
3026
 
3027
+ #: app/features/events.php:4466 app/features/fes.php:356
3028
  msgid "Unknown"
3029
  msgstr ""
3030
 
3031
+ #: app/features/events.php:4494
3032
  msgid ""
3033
  "If you want to send an email, first select your attendees and then click in "
3034
  "the button below, please."
3035
  msgstr ""
3036
 
3037
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3038
  msgid "Send Email"
3039
  msgstr ""
3040
 
3041
+ #: app/features/events.php:4498
3042
  msgid "No Attendees Found!"
3043
  msgstr ""
3044
 
3045
+ #: app/features/events.php:4800
3046
  msgid "No Bookings Found!"
3047
  msgstr ""
3048
 
3162
  msgid "The event published."
3163
  msgstr ""
3164
 
3165
+ #: app/features/fes/form.php:180
3166
  msgid "Go back to events list"
3167
  msgstr ""
3168
 
3169
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3170
  #: app/features/mec/settings.php:1171
3171
  msgid "Excerpt"
3172
  msgstr ""
3173
 
3174
+ #: app/features/fes/form.php:273
3175
  msgid "Optional Event Excerpt"
3176
  msgstr ""
3177
 
3178
+ #: app/features/fes/form.php:280
3179
  msgid ""
3180
  "This event is imported from Google calendar so if you modify it would "
3181
  "overwrite in the next import from Google."
3182
  msgstr ""
3183
 
3184
+ #: app/features/fes/form.php:409
3185
  #: app/features/mec/meta_boxes/display_options.php:1494
3186
  #: app/libraries/main.php:476
3187
  msgid "Monday"
3188
  msgstr ""
3189
 
3190
+ #: app/features/fes/form.php:410
3191
  #: app/features/mec/meta_boxes/display_options.php:1495
3192
  #: app/libraries/main.php:476
3193
  msgid "Tuesday"
3194
  msgstr ""
3195
 
3196
+ #: app/features/fes/form.php:411
3197
  #: app/features/mec/meta_boxes/display_options.php:1496
3198
  #: app/libraries/main.php:476
3199
  msgid "Wednesday"
3200
  msgstr ""
3201
 
3202
+ #: app/features/fes/form.php:412
3203
  #: app/features/mec/meta_boxes/display_options.php:1497
3204
  #: app/libraries/main.php:476
3205
  msgid "Thursday"
3206
  msgstr ""
3207
 
3208
+ #: app/features/fes/form.php:413
3209
  #: app/features/mec/meta_boxes/display_options.php:1498
3210
  #: app/libraries/main.php:476
3211
  msgid "Friday"
3212
  msgstr ""
3213
 
3214
+ #: app/features/fes/form.php:414
3215
  #: app/features/mec/meta_boxes/display_options.php:1499
3216
  #: app/libraries/main.php:476
3217
  msgid "Saturday"
3218
  msgstr ""
3219
 
3220
+ #: app/features/fes/form.php:415
3221
  #: app/features/mec/meta_boxes/display_options.php:1493
3222
  #: app/libraries/main.php:476
3223
  msgid "Sunday"
3224
  msgstr ""
3225
 
3226
+ #: app/features/fes/form.php:768
3227
  msgid ""
3228
  "The event will finish after certain repeats. For example if you set it to "
3229
  "10, the event will finish after 10 repeats."
3230
  msgstr ""
3231
 
3232
+ #: app/features/fes/form.php:792
3233
  msgid "Note to reviewer"
3234
  msgstr ""
3235
 
3236
+ #: app/features/fes/form.php:810
3237
  msgid "User Data"
3238
  msgstr ""
3239
 
3240
+ #: app/features/fes/form.php:813
3241
  msgid "eg. yourname@gmail.com"
3242
  msgstr ""
3243
 
3244
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3245
+ #: app/features/popup/event.php:190
3246
  msgid "eg. John Smith"
3247
  msgstr ""
3248
 
3249
+ #: app/features/fes/form.php:835
3250
  msgid ""
3251
  "If you fill it, it will replace the default event page link. Insert full "
3252
  "link including http(s)://"
3253
  msgstr ""
3254
 
3255
+ #: app/features/fes/form.php:958
3256
  msgid "Remove Image"
3257
  msgstr ""
3258
 
3259
+ #: app/features/fes/form.php:1048
3260
  msgid "Insert your desired tags, comma separated."
3261
  msgstr ""
3262
 
3263
+ #: app/features/fes/form.php:1070
3264
  msgid "Speakers Names"
3265
  msgstr ""
3266
 
3267
+ #: app/features/fes/form.php:1071
3268
  msgid "Separate names with commas: Justin, Chris"
3269
  msgstr ""
3270
 
3271
+ #: app/features/fes/form.php:1116
3272
  #, php-format
3273
  msgid "I accept the %s in order to submit an event."
3274
  msgstr ""
3275
 
3276
+ #: app/features/fes/form.php:1116
3277
  msgid "Privacy Policy"
3278
  msgstr ""
3279
 
3280
+ #: app/features/fes/form.php:1118
3281
  msgid "I accept the Privacy Policy in order to submit an event."
3282
  msgstr ""
3283
 
3284
+ #: app/features/fes/form.php:1124
3285
  msgid "Submit Event"
3286
  msgstr ""
3287
 
3356
  msgid "The events are imported successfully!"
3357
  msgstr ""
3358
 
3359
+ #: app/features/ix.php:1342
3360
  msgid "Third Party plugin is not installed and activated!"
3361
  msgstr ""
3362
 
3363
+ #: app/features/ix.php:1366
3364
  msgid "Third Party plugin is invalid!"
3365
  msgstr ""
3366
 
3367
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3368
  msgid "API key and Calendar ID are required!"
3369
  msgstr ""
3370
 
3371
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3372
  msgid "Please select events to import!"
3373
  msgstr ""
3374
 
3375
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3376
  msgid "API key and Group URL are required!"
3377
  msgstr ""
3378
 
3379
+ #: app/features/ix.php:4137
3380
  msgid "Check at Meetup"
3381
  msgstr ""
3382
 
3383
+ #: app/features/ix.php:4303
3384
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3385
  msgstr ""
3386
 
3387
+ #: app/features/ix.php:4326
3388
  #, php-format
3389
  msgid "All seems good! Please click %s to authenticate your app."
3390
  msgstr ""
3391
 
3392
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3393
  #: app/features/mec/settings.php:1496
3394
  msgid "here"
3395
  msgstr ""
3396
 
3397
+ #: app/features/ix.php:4381
3398
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3399
  msgstr ""
3400
 
3401
+ #: app/features/ix.php:4543
3402
  #, php-format
3403
  msgid "%s events added to Google Calendar with success."
3404
  msgstr ""
3405
 
3406
+ #: app/features/ix.php:4544
3407
  #, php-format
3408
  msgid "%s Updated previously added events."
3409
  msgstr ""
3410
 
3411
+ #: app/features/ix.php:4545
3412
  #, php-format
3413
  msgid "%s events failed to add for following reasons: %s"
3414
  msgstr ""
3415
 
3416
+ #: app/features/ix.php:4577
3417
  msgid "Please insert your Facebook page's link."
3418
  msgstr ""
3419
 
3420
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3421
  msgid ""
3422
  "We were not able to recognize your Facebook page. Please check again and "
3423
  "provide a valid link."
3424
  msgstr ""
3425
 
3426
+ #: app/features/ix.php:4625
3427
  msgid "Please insert your facebook page's link."
3428
  msgstr ""
3429
 
3618
  msgid "Add to Google Calendar"
3619
  msgstr ""
3620
 
3621
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3622
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3623
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3624
  #: app/features/mec/single.php:604
3728
  msgid "Import all of your Facebook events into MEC."
3729
  msgstr ""
3730
 
3731
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
3732
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
3733
  msgid "Documentation"
3734
  msgstr ""
4000
  msgstr ""
4001
 
4002
  #: app/features/labels.php:79 app/features/locations.php:77
4003
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4004
  #: app/features/tag.php:77
4005
  #, php-format
4006
  msgid "← Back to %s"
4007
  msgstr ""
4008
 
4009
  #: app/features/labels.php:80 app/features/locations.php:78
4010
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4011
  #: app/features/tag.php:78
4012
  #, php-format
4013
  msgid "no %s found."
4048
  msgstr ""
4049
 
4050
  #: app/features/labels.php:186 app/features/locations.php:269
4051
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4052
  #: app/modules/booking/steps/tickets.php:172
4053
  msgid "Count"
4054
  msgstr ""
4064
  msgstr ""
4065
 
4066
  #: app/features/locations.php:59 app/features/mec.php:526
4067
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4068
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4069
  #: app/libraries/main.php:7623
4070
  msgid "Locations"
4075
  msgstr ""
4076
 
4077
  #: app/features/locations.php:131 app/features/locations.php:197
4078
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4079
  msgid "Latitude"
4080
  msgstr ""
4081
 
4084
  msgstr ""
4085
 
4086
  #: app/features/locations.php:139 app/features/locations.php:201
4087
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4088
  msgid "Longitude"
4089
  msgstr ""
4090
 
4103
 
4104
  #: app/features/locations.php:156 app/features/locations.php:210
4105
  #: app/features/organizers.php:128 app/features/organizers.php:161
4106
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4107
  msgid "Thumbnail"
4108
  msgstr ""
4109
 
4110
  #: app/features/locations.php:329 app/features/occurrences.php:460
4111
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4112
  #, php-format
4113
  msgid "Event Main %s"
4114
  msgstr ""
4115
 
4116
  #: app/features/locations.php:332 app/features/occurrences.php:464
4117
+ #: app/features/popup/event.php:121
4118
  msgid "Hide location"
4119
  msgstr ""
4120
 
4121
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4122
  msgid "Insert a new location"
4123
  msgstr ""
4124
 
4126
  msgid "Choose one of saved locations or insert new one below."
4127
  msgstr ""
4128
 
4129
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4130
  msgid "Location Name"
4131
  msgstr ""
4132
 
4133
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4134
  msgid "eg. City Hall"
4135
  msgstr ""
4136
 
4137
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4138
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4139
  msgid "Event Location"
4140
  msgstr ""
4141
 
4142
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4143
  msgid "eg. City hall, Manhattan, New York"
4144
  msgstr ""
4145
 
4146
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4147
  msgid "Latitude/Longitude"
4148
  msgstr ""
4149
 
4150
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4151
  msgid ""
4152
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4153
  "to convert the location address to geopoint, Latitude and Longitude are the "
4156
  "the location on the map to find lat long coordinates."
4157
  msgstr ""
4158
 
4159
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4160
  msgid "Get Latitude and Longitude"
4161
  msgstr ""
4162
 
4163
  #: app/features/locations.php:392 app/features/organizers.php:315
4164
+ #: app/features/popup/event.php:209
4165
  msgid "Choose image"
4166
  msgstr ""
4167
 
4168
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4169
+ #: app/features/popup/event.php:140
4170
  msgid "Don't show map in single event page"
4171
  msgstr ""
4172
 
4173
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4174
  #: app/libraries/main.php:7654
4175
  msgid "Other Locations"
4176
  msgstr ""
4177
 
4178
+ #: app/features/locations.php:413
4179
  msgid ""
4180
  "You can select extra locations in addition to main location if you like."
4181
  msgstr ""
4241
  msgid "Support"
4242
  msgstr ""
4243
 
4244
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4245
  #: app/features/mec/meta_boxes/filter.php:71
4246
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4247
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4249
  msgstr ""
4250
 
4251
  #: app/features/mec.php:536 app/features/mec.php:596
4252
+ #: app/features/mec/dashboard.php:218
4253
  msgid "Shortcodes"
4254
  msgstr ""
4255
 
4437
  msgstr ""
4438
 
4439
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4440
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4441
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4442
  msgid "Version"
4443
  msgstr ""
4461
  msgstr ""
4462
 
4463
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4464
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4465
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4466
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4467
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4468
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4469
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
4968
  msgid "It applies only to the orders that are related to MEC."
4969
  msgstr ""
4970
 
4971
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
4972
  msgid "After Add to Cart"
4973
  msgstr ""
4974
 
4975
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
4976
  msgid "Redirect to Cart"
4977
  msgstr ""
4978
 
4979
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
4980
  msgid "Redirect to Checkout"
4981
  msgstr ""
4982
 
4983
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
4984
  msgid "Optional View Cart Button"
4985
  msgstr ""
4986
 
4987
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
4988
  msgid "Optional Checkout Button"
4989
  msgstr ""
4990
 
5036
  "(Stripe) got canceled."
5037
  msgstr ""
5038
 
5039
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5040
+ msgid "MEC Cart"
5041
+ msgstr ""
5042
+
5043
+ #: app/features/mec/booking.php:1118
5044
  msgid "Use MEC Cart System"
5045
  msgstr ""
5046
 
5047
+ #: app/features/mec/booking.php:1120
5048
  msgid ""
5049
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5050
  "adding a simple cart and checkout system to your website."
5051
  msgstr ""
5052
 
5053
+ #: app/features/mec/booking.php:1122
5054
  msgid "You cannot use following MEC features while using MEC Cart."
5055
  msgstr ""
5056
 
5057
+ #: app/features/mec/booking.php:1124
5058
  msgid "WooCommerce as Payment Gateway"
5059
  msgstr ""
5060
 
5061
+ #: app/features/mec/booking.php:1125
5062
  msgid "Currency Per Event"
5063
  msgstr ""
5064
 
5065
+ #: app/features/mec/booking.php:1126
5066
  msgid "Disable Gateways Per Event"
5067
  msgstr ""
5068
 
5069
+ #: app/features/mec/booking.php:1127
5070
  msgid "Stripe Connect Gateway"
5071
  msgstr ""
5072
 
5073
+ #: app/features/mec/booking.php:1128
5074
  msgid "Pay By WooCommerce Gateway"
5075
  msgstr ""
5076
 
5077
+ #: app/features/mec/booking.php:1129
5078
  msgid "Organizer Payment Module"
5079
  msgstr ""
5080
 
5081
+ #: app/features/mec/booking.php:1133
5082
  msgid "Cart Page"
5083
  msgstr ""
5084
 
5085
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5086
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5087
  #, php-format
5088
  msgid "Put %s shortcode into the page."
5089
  msgstr ""
5090
 
5091
+ #: app/features/mec/booking.php:1145
5092
  msgid "Checkout Page"
5093
  msgstr ""
5094
 
5095
+ #: app/features/mec/booking.php:1171
5096
  msgid "Enable Cart Invoice"
5097
  msgstr ""
5098
 
5099
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5100
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5101
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5102
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5104
  msgid "Saved"
5105
  msgstr ""
5106
 
5107
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5108
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5109
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5110
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5112
  msgid "Settings Saved!"
5113
  msgstr ""
5114
 
5115
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5116
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5117
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5118
  msgid "Please Refresh Page"
5128
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5129
  msgstr ""
5130
 
5131
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5132
  #, php-format
5133
  msgid ""
5134
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5136
  "Spots, etc you should upgrade to the Pro version."
5137
  msgstr ""
5138
 
5139
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5140
  msgid "lite"
5141
  msgstr ""
5142
 
5143
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5144
  #: app/features/mec/support.php:126
5145
  msgid "GO PREMIUM"
5146
  msgstr ""
5147
 
5148
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5149
  msgid "Getting started with Modern Events Calendar"
5150
  msgstr ""
5151
 
5152
+ #: app/features/mec/dashboard.php:113
5153
  msgid ""
5154
  "In this short video, you can learn how to make an event and put a calendar "
5155
  "on your website. Please watch this 2 minutes video to the end."
5156
  msgstr ""
5157
 
5158
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5159
  msgid "License Activation"
5160
  msgstr ""
5161
 
5162
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5163
  msgid "Activate Addons"
5164
  msgstr ""
5165
 
5166
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5167
  msgid "You cannot access this section."
5168
  msgstr ""
5169
 
5170
+ #: app/features/mec/dashboard.php:159
5171
  msgid ""
5172
  "In order to use all plugin features and options, please enter your purchase "
5173
  "code."
5174
  msgstr ""
5175
 
5176
+ #: app/features/mec/dashboard.php:267
5177
  msgid "Popular Gateways"
5178
  msgstr ""
5179
 
5180
+ #: app/features/mec/dashboard.php:325
5181
  msgid "Change Log"
5182
  msgstr ""
5183
 
6590
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
6591
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
6592
  #: app/features/popup/settings.php:272 app/features/search.php:109
6593
+ #: app/features/speakers.php:66 app/features/speakers.php:292
6594
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
6595
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
6596
  #: app/modules/speakers/details.php:18
7785
  msgid "Please, insert comma to separate reminder hours."
7786
  msgstr ""
7787
 
7788
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
7789
  #: app/libraries/main.php:705
7790
  msgid "New Event"
7791
  msgstr ""
9670
  msgid "Choose one of saved locations."
9671
  msgstr ""
9672
 
9673
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
9674
+ #: app/features/popup/event.php:171
9675
  msgid "Hide organizer"
9676
  msgstr ""
9677
 
9678
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
9679
+ #: app/features/popup/event.php:180
9680
  msgid "Choose one of saved organizers or insert new one below."
9681
  msgstr ""
9682
 
9689
  msgstr ""
9690
 
9691
  #: app/features/organizers.php:120 app/features/organizers.php:157
9692
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
9693
  msgid "Link to organizer page"
9694
  msgstr ""
9695
 
9701
  msgid "Contact info"
9702
  msgstr ""
9703
 
9704
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
9705
  msgid "Insert a new organizer"
9706
  msgstr ""
9707
 
9708
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
9709
  msgid "Phone number."
9710
  msgstr ""
9711
 
9712
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
9713
  msgid "eg. +1 (234) 5678"
9714
  msgstr ""
9715
 
9716
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
9717
  msgid "Email address."
9718
  msgstr ""
9719
 
9720
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
9721
  msgid "eg. john@smith.com"
9722
  msgstr ""
9723
 
9724
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
9725
  msgid "eg. https://webnus.net"
9726
  msgstr ""
9727
 
9735
  "You can select extra organizers in addition to main organizer if you like."
9736
  msgstr ""
9737
 
9738
+ #: app/features/popup/event.php:60
9739
  msgid "Adding an Event..."
9740
  msgstr ""
9741
 
9742
+ #: app/features/popup/event.php:68
9743
  msgid "Event Name"
9744
  msgstr ""
9745
 
9746
+ #: app/features/popup/event.php:69
9747
  msgid "Event name is required"
9748
  msgstr ""
9749
 
9750
+ #: app/features/popup/event.php:130
9751
  msgid "Choose one of saved locations or insert new one."
9752
  msgstr ""
9753
 
9754
+ #: app/features/popup/event.php:134
9755
  msgid "Add Location"
9756
  msgstr ""
9757
 
9758
+ #: app/features/popup/event.php:184
9759
  msgid "Add Organizer"
9760
  msgstr ""
9761
 
9762
+ #: app/features/popup/event.php:224
9763
  msgid "All Categories"
9764
  msgstr ""
9765
 
9766
+ #: app/features/popup/event.php:225
9767
  msgid "Most Used"
9768
  msgstr ""
9769
 
9770
+ #: app/features/popup/event.php:236
9771
  msgid "Add New Category"
9772
  msgstr ""
9773
 
9774
+ #: app/features/popup/event.php:247
9775
  msgid "Set Featured Image"
9776
  msgstr ""
9777
 
9778
+ #: app/features/popup/event.php:257
9779
  msgid "Your Event Has Been Created."
9780
  msgstr ""
9781
 
9782
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
9783
  #: app/features/popup/shortcode.php:553
9784
  msgid "Prev"
9785
  msgstr ""
9786
 
9787
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
9788
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
9789
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
9790
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
9954
  msgid "No search result."
9955
  msgstr ""
9956
 
9957
+ #: app/features/speakers.php:118 app/features/speakers.php:203
9958
+ #: app/features/speakers.php:293
9959
  msgid "Job Title"
9960
  msgstr ""
9961
 
9962
+ #: app/features/speakers.php:121 app/features/speakers.php:204
9963
  msgid "Insert speaker job title."
9964
  msgstr ""
9965
 
9966
+ #: app/features/speakers.php:129 app/features/speakers.php:208
9967
  msgid "Insert speaker phone number."
9968
  msgstr ""
9969
 
9970
+ #: app/features/speakers.php:137 app/features/speakers.php:212
9971
  msgid "Insert speaker email address."
9972
  msgstr ""
9973
 
9974
+ #: app/features/speakers.php:145 app/features/speakers.php:216
9975
  msgid "Insert URL of Website"
9976
  msgstr ""
9977
 
9978
+ #: app/features/speakers.php:150 app/features/speakers.php:219
9979
  msgid "Facebook Page"
9980
  msgstr ""
9981
 
9982
+ #: app/features/speakers.php:153 app/features/speakers.php:220
9983
  msgid "Insert URL of Facebook Page"
9984
  msgstr ""
9985
 
9986
+ #: app/features/speakers.php:158 app/features/speakers.php:223
9987
  msgid "Instagram"
9988
  msgstr ""
9989
 
9990
+ #: app/features/speakers.php:161 app/features/speakers.php:224
9991
  msgid "Insert URL of Instagram"
9992
  msgstr ""
9993
 
9994
+ #: app/features/speakers.php:166 app/features/speakers.php:227
9995
  msgid "LinkedIn"
9996
  msgstr ""
9997
 
9998
+ #: app/features/speakers.php:169
9999
  msgid "Insert URL of LinkedIn"
10000
  msgstr ""
10001
 
10002
+ #: app/features/speakers.php:174 app/features/speakers.php:231
10003
  msgid "Twitter Page"
10004
  msgstr ""
10005
 
10006
+ #: app/features/speakers.php:177 app/features/speakers.php:232
10007
  msgid "Insert URL of Twitter Page"
10008
  msgstr ""
10009
 
10010
+ #: app/features/speakers.php:228
10011
  msgid "Insert URL of linkedin"
10012
  msgstr ""
10013
 
10014
+ #: app/features/speakers.php:353
10015
  msgid "Sorry, You must insert speaker name!"
10016
  msgstr ""
10017
 
10018
+ #: app/features/speakers.php:402
10019
  msgid ""
10020
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
10021
  "section and speaker widget section!"
10098
  msgid "Upgrade to Pro Version"
10099
  msgstr ""
10100
 
10101
+ #: app/libraries/factory.php:232
10102
  msgctxt "plugin link"
10103
  msgid "Settings"
10104
  msgstr ""
10105
 
10106
+ #: app/libraries/factory.php:237
10107
  msgctxt "plugin link"
10108
  msgid "Upgrade"
10109
  msgstr ""
10110
 
10111
+ #: app/libraries/factory.php:391
10112
  msgid "day"
10113
  msgstr ""
10114
 
10115
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
10116
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
10117
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
10118
  msgid "days"
10119
  msgstr ""
10120
 
10121
+ #: app/libraries/factory.php:393
10122
  msgid "hour"
10123
  msgstr ""
10124
 
10125
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
10126
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
10127
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
10128
  msgid "hours"
10129
  msgstr ""
10130
 
10131
+ #: app/libraries/factory.php:395
10132
  msgid "minute"
10133
  msgstr ""
10134
 
10135
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
10136
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
10137
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
10138
  msgid "minutes"
10139
  msgstr ""
10140
 
10141
+ #: app/libraries/factory.php:397
10142
  msgid "second"
10143
  msgstr ""
10144
 
10145
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
10146
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
10147
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
10148
  msgid "seconds"
10149
  msgstr ""
10150
 
10151
+ #: app/libraries/factory.php:475
10152
  msgid "MEC Single Sidebar"
10153
  msgstr ""
10154
 
10155
+ #: app/libraries/factory.php:476
10156
  msgid "Custom sidebar for single and modal page of MEC."
10157
  msgstr ""
10158
 
10159
+ #: app/libraries/factory.php:1197
10160
  msgid "Notice:"
10161
  msgstr ""
10162
 
10163
+ #: app/libraries/factory.php:1198
10164
  msgid "This update includes only bug fixes."
10165
  msgstr ""
10166
 
10309
  msgid "%s Form"
10310
  msgstr ""
10311
 
 
 
 
 
10312
  #: app/libraries/main.php:726
10313
  msgid "Only For Bookers"
10314
  msgstr ""
10981
  msgid "End at: %s - %s"
10982
  msgstr ""
10983
 
10984
+ #: app/libraries/skins.php:1777
 
 
 
 
 
10985
  msgid "Repeating Event"
10986
  msgstr ""
10987
 
languages/modern-events-calendar-lite-fr_FR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:29+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -171,7 +171,7 @@ msgid "Canceled"
171
  msgstr "Annulé"
172
 
173
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
174
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
175
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
176
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
177
  #: app/features/mec/notifications.php:1922
@@ -209,14 +209,14 @@ msgstr "Prénom"
209
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
210
  #: app/features/autoemails.php:60 app/features/events.php:606
211
  #: app/features/events.php:2650 app/features/events.php:2717
212
- #: app/features/events.php:2806 app/features/events.php:4443
213
- #: app/features/fes.php:280 app/features/fes/form.php:810
214
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
215
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
216
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
217
  #: app/features/organizers.php:112 app/features/organizers.php:153
218
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
219
- #: app/features/speakers.php:205 app/libraries/main.php:653
220
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
221
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
222
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -372,8 +372,8 @@ msgstr "Date"
372
  #: app/features/events.php:2808 app/features/mec/booking.php:800
373
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
374
  #: app/features/organizers.php:104 app/features/organizers.php:149
375
- #: app/features/speakers.php:120 app/features/speakers.php:201
376
- #: app/features/speakers.php:288 app/libraries/main.php:4252
377
  msgid "Tel"
378
  msgstr "Téléphone"
379
 
@@ -519,6 +519,11 @@ msgstr ""
519
  msgid "Agreement"
520
  msgstr "Accord"
521
 
 
 
 
 
 
522
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
523
  #, php-format
524
  msgid "Instead of %s, the page title with a link will be show."
@@ -699,8 +704,8 @@ msgstr ""
699
  #: app/features/events.php:1843 app/features/events.php:2014
700
  #: app/features/events.php:2029 app/features/events.php:2271
701
  #: app/features/events.php:2283 app/features/events.php:2476
702
- #: app/features/events.php:2513 app/features/fes/form.php:458
703
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
704
  #: app/features/locations.php:341 app/features/mec/booking.php:113
705
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
706
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -777,9 +782,9 @@ msgstr ""
777
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
778
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
779
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
780
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
781
- #: app/features/organizers.php:289 app/features/popup/event.php:128
782
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
783
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
784
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
785
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -943,8 +948,8 @@ msgstr ""
943
 
944
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
945
  #: app/features/events.php:432 app/features/events.php:1283
946
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
947
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
948
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
949
  #: app/skins/single.php:1126 app/skins/single/default.php:213
950
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1023,7 +1028,7 @@ msgid "How to set label"
1023
  msgstr ""
1024
 
1025
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1026
- #: app/features/events.php:4195 app/features/fes/form.php:998
1027
  #: app/features/labels.php:61 app/features/labels.php:227
1028
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1029
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1059,7 +1064,7 @@ msgid "How to set location"
1059
  msgstr "Cacher le lieu"
1060
 
1061
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1062
- #: app/features/events.php:3876 app/features/events.php:4188
1063
  #: app/features/locations.php:58 app/features/locations.php:267
1064
  #: app/features/locations.php:329 app/features/locations.php:331
1065
  #: app/features/locations.php:340
@@ -1079,7 +1084,7 @@ msgstr "Cacher le lieu"
1079
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1080
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1081
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1082
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1083
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1084
  #: app/features/search.php:97 app/libraries/main.php:3020
1085
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1093,7 +1098,7 @@ msgstr "Lieu"
1093
 
1094
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1095
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1096
- #: app/features/speakers.php:136 app/features/speakers.php:209
1097
  #: app/skins/single.php:1406 app/skins/single.php:1473
1098
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1099
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1116,7 +1121,7 @@ msgstr ""
1116
 
1117
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1118
  #: app/features/events.php:1519 app/features/events.php:1532
1119
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1120
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1121
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1122
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1167,8 +1172,8 @@ msgstr "Ne pas afficher l'organisateur"
1167
 
1168
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1169
  #: app/features/events.php:431 app/features/events.php:3877
1170
- #: app/features/events.php:4190 app/features/events.php:4191
1171
- #: app/features/events.php:4192
1172
  #: app/features/mec/meta_boxes/display_options.php:1660
1173
  #: app/features/mec/meta_boxes/search_form.php:80
1174
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1183,12 +1188,12 @@ msgstr "Ne pas afficher l'organisateur"
1183
  #: app/features/mec/meta_boxes/search_form.php:983
1184
  #: app/features/mec/meta_boxes/search_form.php:1070
1185
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1186
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1187
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1188
  #: app/features/organizers.php:58 app/features/organizers.php:208
1189
  #: app/features/organizers.php:277 app/features/organizers.php:279
1190
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1191
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1192
  #: app/features/popup/settings.php:263 app/features/search.php:103
1193
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1194
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1312,8 +1317,8 @@ msgstr "Heure"
1312
  #: app/features/booking/calendar_novel.php:145
1313
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1314
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1315
- #: app/libraries/render.php:554 app/libraries/render.php:758
1316
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1317
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1318
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1319
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1379,7 +1384,7 @@ msgstr "Pas d'événement actuellement programmé."
1379
 
1380
  #: app/features/autoemails.php:74 app/features/events.php:230
1381
  #: app/features/labels.php:72 app/features/locations.php:70
1382
- #: app/features/organizers.php:70 app/features/speakers.php:72
1383
  #: app/features/tag.php:70
1384
  #, php-format
1385
  msgid "Edit %s"
@@ -1445,7 +1450,7 @@ msgstr "Par défaut: vide"
1445
  msgid "Go to events page"
1446
  msgstr "Montrer la Carte sur les pages d'événement"
1447
 
1448
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1449
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1450
  #: app/features/wc.php:91 app/libraries/main.php:3072
1451
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1527,7 +1532,7 @@ msgstr "Réservation"
1527
  msgid "Back to Cart"
1528
  msgstr "Retourner à la liste des évènements."
1529
 
1530
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1531
  #: app/features/mec/settings.php:907
1532
  msgid "Event Color"
1533
  msgstr "Couleur de l'événement"
@@ -1539,8 +1544,8 @@ msgid "Recent Colors"
1539
  msgstr "Couleur de l'événement"
1540
 
1541
  #: app/features/contextual.php:55 app/features/mec.php:546
1542
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1543
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1544
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1545
  #: app/libraries/main.php:738
1546
  msgid "Settings"
@@ -1654,7 +1659,7 @@ msgid "Event Details/Single Event Page"
1654
  msgstr "Détail de l'événement/Page de l'événement"
1655
 
1656
  #: app/features/contextual.php:166 app/features/events.php:1298
1657
- #: app/features/fes/form.php:883
1658
  msgid "Currency Options"
1659
  msgstr "Options de devise"
1660
 
@@ -1746,8 +1751,8 @@ msgid "Public File to Download"
1746
  msgstr ""
1747
 
1748
  #: app/features/dlfile.php:297 app/features/events.php:3874
1749
- #: app/features/events.php:4181 app/features/events.php:4730
1750
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1751
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1752
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1753
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1756,7 +1761,7 @@ msgid "Title"
1756
  msgstr "Titre"
1757
 
1758
  #: app/features/dlfile.php:301 app/features/events.php:1988
1759
- #: app/features/events.php:2248 app/features/events.php:4182
1760
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1761
  #: app/libraries/hourlyschedule.php:152
1762
  msgid "Description"
@@ -1803,7 +1808,7 @@ msgid "Before"
1803
  msgstr "Avant €10"
1804
 
1805
  #: app/features/emails/details.php:35 app/features/events.php:1223
1806
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1807
  msgid "After"
1808
  msgstr "Après X répétitions"
1809
 
@@ -1814,7 +1819,7 @@ msgid "event occurrence."
1814
  msgstr "Prochain déroulement"
1815
 
1816
  #: app/features/emails/details.php:40 app/features/events.php:192
1817
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1818
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1819
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1820
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1835,11 +1840,11 @@ msgstr ""
1835
  msgid "Add Event"
1836
  msgstr "Ajouter un événement"
1837
 
1838
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1839
  msgid "Add New Event"
1840
  msgstr "Ajouter un nouvel événement"
1841
 
1842
- #: app/features/events.php:196 app/features/ix.php:4573
1843
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1844
  #: app/skins/map/tpl.php:93
1845
  msgid "No events found!"
@@ -1850,7 +1855,7 @@ msgid "Edit Event"
1850
  msgstr ""
1851
 
1852
  #: app/features/events.php:199 app/features/fes/list.php:100
1853
- #: app/features/popup/event.php:254
1854
  msgid "View Event"
1855
  msgstr "Voir l'événement"
1856
 
@@ -1859,7 +1864,7 @@ msgid "No events found in Trash!"
1859
  msgstr "Aucun événement trouvé dans la corbeille !"
1860
 
1861
  #: app/features/events.php:219 app/features/events.php:3831
1862
- #: app/features/events.php:4196 app/features/fes/form.php:972
1863
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1864
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1865
  #: app/libraries/main.php:7619
@@ -1868,49 +1873,49 @@ msgstr "Catégories"
1868
 
1869
  #: app/features/events.php:229 app/features/labels.php:71
1870
  #: app/features/locations.php:69 app/features/organizers.php:69
1871
- #: app/features/speakers.php:71 app/features/tag.php:69
1872
  #, php-format
1873
  msgid "All %s"
1874
  msgstr "Tous %s"
1875
 
1876
  #: app/features/events.php:231 app/features/labels.php:73
1877
  #: app/features/locations.php:71 app/features/organizers.php:71
1878
- #: app/features/speakers.php:73 app/features/tag.php:71
1879
  #, php-format
1880
  msgid "View %s"
1881
  msgstr "Voir %s"
1882
 
1883
  #: app/features/events.php:232 app/features/labels.php:74
1884
  #: app/features/locations.php:72 app/features/organizers.php:72
1885
- #: app/features/speakers.php:74 app/features/tag.php:72
1886
  #, php-format
1887
  msgid "Update %s"
1888
  msgstr "Mettre à jour %s"
1889
 
1890
  #: app/features/events.php:233 app/features/labels.php:75
1891
  #: app/features/locations.php:73 app/features/organizers.php:73
1892
- #: app/features/speakers.php:75 app/features/tag.php:73
1893
  #, php-format
1894
  msgid "Add New %s"
1895
  msgstr "Ajouter un nouvel %s"
1896
 
1897
  #: app/features/events.php:234 app/features/labels.php:76
1898
  #: app/features/locations.php:74 app/features/organizers.php:74
1899
- #: app/features/speakers.php:76 app/features/tag.php:74
1900
  #, php-format
1901
  msgid "New %s Name"
1902
  msgstr "Nouveau nom %s"
1903
 
1904
  #: app/features/events.php:235 app/features/labels.php:77
1905
  #: app/features/locations.php:75 app/features/organizers.php:75
1906
- #: app/features/speakers.php:77 app/features/tag.php:75
1907
  #, php-format
1908
  msgid "Popular %s"
1909
  msgstr "%s populaire (s)"
1910
 
1911
  #: app/features/events.php:236 app/features/labels.php:78
1912
  #: app/features/locations.php:76 app/features/organizers.php:76
1913
- #: app/features/speakers.php:78 app/features/tag.php:76
1914
  #, php-format
1915
  msgid "Search %s"
1916
  msgstr "Rechercher %s"
@@ -1940,7 +1945,7 @@ msgstr ""
1940
  #: app/features/events.php:278 app/features/events.php:336
1941
  #: app/features/locations.php:161 app/features/locations.php:213
1942
  #: app/features/organizers.php:133 app/features/organizers.php:164
1943
- #: app/features/speakers.php:181 app/features/speakers.php:232
1944
  msgid "Upload/Add image"
1945
  msgstr "Mettre en ligne une image"
1946
 
@@ -1949,7 +1954,7 @@ msgstr "Mettre en ligne une image"
1949
  #: app/features/locations.php:393 app/features/locations.php:400
1950
  #: app/features/organizers.php:134 app/features/organizers.php:165
1951
  #: app/features/organizers.php:316 app/features/organizers.php:323
1952
- #: app/features/speakers.php:182 app/features/speakers.php:233
1953
  msgid "Remove image"
1954
  msgstr "Supprimer l'image"
1955
 
@@ -1965,7 +1970,7 @@ msgstr "Détails"
1965
  msgid "Date And Time"
1966
  msgstr "Date et heure"
1967
 
1968
- #: app/features/events.php:425 app/features/fes/form.php:384
1969
  msgid "Event Repeating"
1970
  msgstr "Événement récurrent"
1971
 
@@ -2010,10 +2015,10 @@ msgid "Guest Data"
2010
  msgstr "Coordonnées de l'Invité"
2011
 
2012
  #: app/features/events.php:605 app/features/events.php:2641
2013
- #: app/features/events.php:4440 app/features/fes.php:280
2014
- #: app/features/fes/form.php:814 app/features/labels.php:184
2015
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2016
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2017
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2018
  msgid "Name"
2019
  msgstr "Nom"
@@ -2024,13 +2029,13 @@ msgid ""
2024
  "overwrite in the next import from Google."
2025
  msgstr ""
2026
 
2027
- #: app/features/events.php:619 app/features/fes/form.php:282
2028
  msgid "Date and Time"
2029
  msgstr "Date et heure"
2030
 
2031
  #: app/features/events.php:622 app/features/events.php:626
2032
- #: app/features/events.php:3878 app/features/events.php:4183
2033
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2034
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2035
  #: app/features/mec/meta_boxes/display_options.php:57
2036
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2048,13 +2053,13 @@ msgstr "Date et heure"
2048
  #: app/features/mec/meta_boxes/display_options.php:2347
2049
  #: app/features/mec/meta_boxes/display_options.php:2478
2050
  #: app/features/mec/meta_boxes/display_options.php:2584
2051
- #: app/features/popup/event.php:77
2052
  msgid "Start Date"
2053
  msgstr "Date de début"
2054
 
2055
  #: app/features/events.php:642 app/features/events.php:646
2056
- #: app/features/events.php:3879 app/features/events.php:4185
2057
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2058
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2059
  #: app/features/mec/meta_boxes/display_options.php:73
2060
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2063,33 +2068,33 @@ msgstr "Date de début"
2063
  #: app/features/mec/meta_boxes/display_options.php:788
2064
  #: app/features/mec/meta_boxes/display_options.php:1618
2065
  #: app/features/mec/meta_boxes/display_options.php:2363
2066
- #: app/features/popup/event.php:94
2067
  msgid "End Date"
2068
  msgstr "Date de fin"
2069
 
2070
- #: app/features/events.php:669 app/features/fes/form.php:324
2071
- #: app/features/popup/event.php:111
2072
  #, fuzzy
2073
  #| msgid "All Day Event"
2074
  msgid "All-day Event"
2075
  msgstr "Ne pas renseigner d'horaires"
2076
 
2077
- #: app/features/events.php:679 app/features/fes/form.php:327
2078
  msgid "Hide Event Time"
2079
  msgstr "Masquer l'heure de début"
2080
 
2081
- #: app/features/events.php:689 app/features/fes/form.php:330
2082
  msgid "Hide Event End Time"
2083
  msgstr "Masquer l'heure de fin"
2084
 
2085
  #: app/features/events.php:694 app/features/events.php:698
2086
- #: app/features/fes/form.php:334
2087
  #, fuzzy
2088
  #| msgid "Note to reviewer"
2089
  msgid "Notes on the time"
2090
  msgstr "Note à l'Administrateur"
2091
 
2092
- #: app/features/events.php:699 app/features/fes/form.php:335
2093
  #, fuzzy
2094
  #| msgid ""
2095
  #| "It shows next to event time on single event page. You can insert Timezone "
@@ -2101,7 +2106,7 @@ msgstr ""
2101
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
2102
  "insérer y insérer un fuseau horaire."
2103
 
2104
- #: app/features/events.php:711 app/features/fes/form.php:342
2105
  #, fuzzy
2106
  #| msgid "Timezone: %s"
2107
  msgid "Timezone"
@@ -2112,55 +2117,55 @@ msgstr "Fuseau Horaire : %s"
2112
  #: app/features/events.php:1793 app/features/events.php:1813
2113
  #: app/features/events.php:1868 app/features/events.php:2438
2114
  #: app/features/events.php:2561 app/features/events.php:2672
2115
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2116
  msgid "Inherit from global options"
2117
  msgstr "Hériter des options globales"
2118
 
2119
  #: app/features/events.php:725 app/features/events.php:728
2120
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2121
  #: app/features/mec/settings.php:858
2122
  #, fuzzy
2123
  #| msgid "Countdown View"
2124
  msgid "Countdown Method"
2125
  msgstr "Vue sur Compte à Rebours"
2126
 
2127
- #: app/features/events.php:730 app/features/fes/form.php:361
2128
  #, fuzzy
2129
  #| msgid "On Event Start"
2130
  msgid "Count to Event Start"
2131
  msgstr "Au début de l'événement"
2132
 
2133
- #: app/features/events.php:731 app/features/fes/form.php:362
2134
  #, fuzzy
2135
  #| msgid "On Event End"
2136
  msgid "Count to Event End"
2137
  msgstr "À la fin de l'événement"
2138
 
2139
- #: app/features/events.php:737 app/features/fes/form.php:369
2140
  #: app/modules/weather/darksky.php:57
2141
  msgid "Visibility"
2142
  msgstr ""
2143
 
2144
- #: app/features/events.php:740 app/features/fes/form.php:372
2145
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2146
  #, fuzzy
2147
  #| msgid "Event Cost"
2148
  msgid "Event Visibility"
2149
  msgstr "Tarif de l'événement"
2150
 
2151
- #: app/features/events.php:741 app/features/fes/form.php:373
2152
  #, fuzzy
2153
  #| msgid "Booking Style"
2154
  msgid "Show on Shortcodes"
2155
  msgstr "Style de réservation"
2156
 
2157
- #: app/features/events.php:742 app/features/fes/form.php:374
2158
  #, fuzzy
2159
  #| msgid "Shortcodes"
2160
  msgid "Hide on Shortcodes"
2161
  msgstr "Shortcodes"
2162
 
2163
- #: app/features/events.php:749 app/features/fes/form.php:382
2164
  msgid "Repeating"
2165
  msgstr "Répetition"
2166
 
@@ -2168,63 +2173,68 @@ msgstr "Répetition"
2168
  msgid "Event Repeating (Recurring events)"
2169
  msgstr "Événement récurrent"
2170
 
2171
- #: app/features/events.php:762 app/features/fes/form.php:388
2172
  msgid "Repeats"
2173
  msgstr "Récurrence"
2174
 
2175
- #: app/features/events.php:770 app/features/fes/form.php:390
2176
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2177
  #: app/skins/full_calendar/tpl.php:140
2178
  msgid "Daily"
2179
  msgstr "Quotidienne"
2180
 
2181
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2182
  msgid "Every Weekday"
2183
  msgstr "Tous les jours de la semaine"
2184
 
2185
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2186
  msgid "Every Weekend"
2187
  msgstr "Tous les week-ends"
2188
 
2189
- #: app/features/events.php:791 app/features/fes/form.php:393
2190
  msgid "Certain Weekdays"
2191
  msgstr "Certains jours de la semaine"
2192
 
2193
- #: app/features/events.php:798 app/features/fes/form.php:394
2194
- #: app/skins/default_full_calendar/tpl.php:78
2195
  #: app/skins/full_calendar/tpl.php:139
2196
  msgid "Weekly"
2197
  msgstr "Hebdomadaire"
2198
 
2199
- #: app/features/events.php:805 app/features/fes/form.php:395
2200
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2201
  #: app/skins/full_calendar/tpl.php:138
2202
  msgid "Monthly"
2203
  msgstr "Mensuelle"
2204
 
2205
- #: app/features/events.php:812 app/features/fes/form.php:396
2206
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2207
  #: app/skins/full_calendar/tpl.php:137
2208
  msgid "Yearly"
2209
  msgstr "Annuelle"
2210
 
2211
- #: app/features/events.php:819 app/features/fes/form.php:397
2212
  msgid "Custom Days"
2213
  msgstr "Choisir les dates"
2214
 
2215
- #: app/features/events.php:826 app/features/fes/form.php:398
2216
  msgid "Advanced"
2217
  msgstr "Méthode avancée"
2218
 
2219
- #: app/features/events.php:831 app/features/fes/form.php:402
2220
  msgid "Repeat Interval"
2221
  msgstr "Interval de répétition"
2222
 
2223
- #: app/features/events.php:833 app/features/fes/form.php:403
2224
  msgid "Repeat interval"
2225
  msgstr "Interval de répétition"
2226
 
2227
- #: app/features/events.php:837 app/features/fes/form.php:406
2228
  msgid "Week Days"
2229
  msgstr "Jours de la semaine"
2230
 
@@ -2238,7 +2248,7 @@ msgstr "Modern Events Calendar version Pro"
2238
 
2239
  #: app/features/events.php:860 app/features/events.php:2101
2240
  #: app/features/events.php:2129 app/features/events.php:2343
2241
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2242
  #: app/features/ix/import_g_calendar.php:51
2243
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2244
  #: app/libraries/skins.php:1389
@@ -2249,17 +2259,17 @@ msgstr "Démarrer"
2249
  #: app/features/events.php:2085 app/features/events.php:2167
2250
  #: app/features/events.php:2332 app/features/events.php:2376
2251
  #: app/features/events.php:2449 app/features/events.php:2566
2252
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2253
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2254
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2255
  msgid "Add"
2256
  msgstr "Ajouter"
2257
 
2258
- #: app/features/events.php:877 app/features/fes/form.php:454
2259
  msgid "Custom Days Repeating"
2260
  msgstr "Choisir les dates de récurence"
2261
 
2262
- #: app/features/events.php:880 app/features/fes/form.php:457
2263
  msgid ""
2264
  "Add certain days to event occurrence dates. If you have a single day event, "
2265
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2268,48 +2278,48 @@ msgstr ""
2268
 
2269
  #: app/features/events.php:891 app/features/events.php:2105
2270
  #: app/features/events.php:2133 app/features/events.php:2347
2271
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2272
  msgid "End"
2273
  msgstr "FIn"
2274
 
2275
- #: app/features/events.php:968 app/features/fes/form.php:530
2276
  #, fuzzy
2277
  #| msgid "First name"
2278
  msgid "First"
2279
  msgstr "Prénom"
2280
 
2281
- #: app/features/events.php:1010 app/features/fes/form.php:572
2282
  msgid "Second"
2283
  msgstr "seconde"
2284
 
2285
- #: app/features/events.php:1052 app/features/fes/form.php:614
2286
  msgid "Third"
2287
  msgstr ""
2288
 
2289
- #: app/features/events.php:1094 app/features/fes/form.php:656
2290
  msgid "Fourth"
2291
  msgstr ""
2292
 
2293
- #: app/features/events.php:1136 app/features/fes/form.php:698
2294
  #, fuzzy
2295
  #| msgid "Last name"
2296
  msgid "Last"
2297
  msgstr "Nom"
2298
 
2299
- #: app/features/events.php:1183 app/features/fes/form.php:744
2300
  msgid "Ends Repeat"
2301
  msgstr "Fin de l'événement"
2302
 
2303
- #: app/features/events.php:1195 app/features/fes/form.php:748
2304
  msgid "Never"
2305
  msgstr "Jamais"
2306
 
2307
- #: app/features/events.php:1207 app/features/fes/form.php:753
2308
  msgid "On"
2309
  msgstr "Date de fin"
2310
 
2311
  #: app/features/events.php:1227 app/features/events.php:1231
2312
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2313
  msgid "Occurrences times"
2314
  msgstr "Nombre de répétition de l'événement"
2315
 
@@ -2326,12 +2336,12 @@ msgstr ""
2326
  "exemple, si vous le réglez à 10, l'événement se terminera après 10 "
2327
  "répétitions."
2328
 
2329
- #: app/features/events.php:1248 app/features/fes/form.php:779
2330
  msgid "Show only one occurrence of this event"
2331
  msgstr "Afficher uniquement une occurence pour cet événement"
2332
 
2333
- #: app/features/events.php:1277 app/features/events.php:4193
2334
- #: app/features/fes/form.php:865
2335
  #: app/features/mec/meta_boxes/search_form.php:116
2336
  #: app/features/mec/meta_boxes/search_form.php:204
2337
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2355,73 +2365,73 @@ msgstr "Afficher uniquement une occurence pour cet événement"
2355
  #: app/features/mec/notifications.php:1511
2356
  #: app/features/mec/notifications.php:1628
2357
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2358
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2359
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2360
  #: app/widgets/single.php:122
2361
  msgid "Event Cost"
2362
  msgstr "Tarif de l'événement"
2363
 
2364
- #: app/features/events.php:1292 app/features/fes/form.php:877
2365
  msgid "Show the minimum price based on tickets"
2366
  msgstr ""
2367
 
2368
- #: app/features/events.php:1300 app/features/fes/form.php:885
2369
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2370
  #: app/libraries/main.php:646
2371
  msgid "Currency"
2372
  msgstr "Devise"
2373
 
2374
  #: app/features/events.php:1310 app/features/events.php:1315
2375
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2376
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2377
  msgid "Currency Sign"
2378
  msgstr "Symbole de la devise"
2379
 
2380
- #: app/features/events.php:1316 app/features/fes/form.php:901
2381
  #: app/features/mec/settings.php:600
2382
  msgid "Default value will be \"currency\" if you leave it empty."
2383
  msgstr "Si elle est vide, la valeur par défaut sera utilisée."
2384
 
2385
- #: app/features/events.php:1323 app/features/fes/form.php:908
2386
  #: app/features/mec/settings.php:607
2387
  msgid "Currency Position"
2388
  msgstr "Position du symbole de devise"
2389
 
2390
- #: app/features/events.php:1326 app/features/fes/form.php:911
2391
  #: app/features/mec/settings.php:610
2392
  #, fuzzy
2393
  #| msgid "Before $10"
2394
  msgid "$10 (Before)"
2395
  msgstr "Avant €10"
2396
 
2397
- #: app/features/events.php:1327 app/features/fes/form.php:912
2398
  #: app/features/mec/settings.php:611
2399
  msgid "$ 10 (Before with Space)"
2400
  msgstr ""
2401
 
2402
- #: app/features/events.php:1328 app/features/fes/form.php:913
2403
  #: app/features/mec/settings.php:612
2404
  #, fuzzy
2405
  #| msgid "After"
2406
  msgid "10$ (After)"
2407
  msgstr "Après X répétitions"
2408
 
2409
- #: app/features/events.php:1329 app/features/fes/form.php:914
2410
  #: app/features/mec/settings.php:613
2411
  msgid "10 $ (After with Space)"
2412
  msgstr ""
2413
 
2414
- #: app/features/events.php:1334 app/features/fes/form.php:919
2415
  #: app/features/mec/settings.php:618
2416
  msgid "Thousand Separator"
2417
  msgstr "Séparateur des milliers"
2418
 
2419
- #: app/features/events.php:1340 app/features/fes/form.php:925
2420
  #: app/features/mec/settings.php:624
2421
  msgid "Decimal Separator"
2422
  msgstr "Séparateur des décimales"
2423
 
2424
- #: app/features/events.php:1350 app/features/fes/form.php:935
2425
  #: app/features/mec/settings.php:634
2426
  msgid "No decimal"
2427
  msgstr "Pas de décimales"
@@ -2445,21 +2455,21 @@ msgstr ""
2445
  msgid "Day 1"
2446
  msgstr ""
2447
 
2448
- #: app/features/events.php:1498 app/features/fes/form.php:829
2449
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2450
  msgid "Event Links"
2451
  msgstr "Liens de l'évenements"
2452
 
2453
  #: app/features/events.php:1501 app/features/events.php:1509
2454
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2455
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2456
  #: app/libraries/main.php:7649
2457
  msgid "Event Link"
2458
  msgstr "Lien de l'événement"
2459
 
2460
  #: app/features/events.php:1504 app/features/events.php:1522
2461
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2462
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2463
  msgid "eg. http://yoursite.com/your-event"
2464
  msgstr "eg. http://yoursite.com/your-event"
2465
 
@@ -2478,24 +2488,24 @@ msgstr "Lien principal. Affiché sur la page de l'événement"
2478
  msgid "URL Shortener"
2479
  msgstr ""
2480
 
2481
- #: app/features/events.php:1525 app/features/fes/form.php:838
2482
- #: app/features/occurrences.php:527
2483
  msgid "More Information"
2484
  msgstr "Plus d'Informations"
2485
 
2486
- #: app/features/events.php:1527 app/features/fes/form.php:840
2487
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2488
  #: app/features/popup/shortcode.php:481
2489
  msgid "Current Window"
2490
  msgstr "Ouvrir dans l'onglet actuel"
2491
 
2492
- #: app/features/events.php:1528 app/features/fes/form.php:841
2493
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2494
  #: app/features/popup/shortcode.php:485
2495
  msgid "New Window"
2496
  msgstr "Ouvrir dans un nouvel onglet"
2497
 
2498
- #: app/features/events.php:1533 app/features/fes/form.php:843
2499
  msgid ""
2500
  "If you fill it, it will be shown in event details page as an optional link. "
2501
  "Insert full link including http(s)://"
@@ -2867,9 +2877,9 @@ msgid "Ticket ID"
2867
  msgstr "Billets"
2868
 
2869
  #: app/features/events.php:1944 app/features/events.php:2211
2870
- #: app/features/events.php:4180 app/features/fes.php:280
2871
  #: app/features/labels.php:183 app/features/locations.php:266
2872
- #: app/features/organizers.php:207 app/features/speakers.php:285
2873
  msgid "ID"
2874
  msgstr "ID"
2875
 
@@ -2878,12 +2888,12 @@ msgid "Ticket Name"
2878
  msgstr "Nom du billet"
2879
 
2880
  #: app/features/events.php:1956 app/features/events.php:2219
2881
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2882
  msgid "Start Time"
2883
  msgstr "Début"
2884
 
2885
  #: app/features/events.php:1970 app/features/events.php:2233
2886
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2887
  msgid "End Time"
2888
  msgstr "Fin"
2889
 
@@ -2905,7 +2915,7 @@ msgstr ""
2905
  #: app/features/events.php:2007 app/features/events.php:2011
2906
  #: app/features/events.php:2109 app/features/events.php:2136
2907
  #: app/features/events.php:2265 app/features/events.php:2268
2908
- #: app/features/events.php:2349 app/features/events.php:4739
2909
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2910
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2911
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3065,7 +3075,7 @@ msgstr "Liste des participants"
3065
  msgid "Fixed Fields"
3066
  msgstr "Champ obligatoire"
3067
 
3068
- #: app/features/events.php:2887 app/features/events.php:4733
3069
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3070
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3071
  msgid "Attendees"
@@ -3097,7 +3107,7 @@ msgid "Expired Events"
3097
  msgstr "Evénements éxpirés"
3098
 
3099
  #: app/features/events.php:3757 app/features/mec.php:1374
3100
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3101
  msgid "Upcoming Events"
3102
  msgstr "Prochains évenements"
3103
 
@@ -3156,15 +3166,15 @@ msgid "JSON Export"
3156
  msgstr "Exporter en JSON"
3157
 
3158
  #: app/features/events.php:4068 app/features/events.php:4069
3159
- #: app/features/events.php:4293
3160
  msgid "Duplicate"
3161
  msgstr "Dupliquer"
3162
 
3163
- #: app/features/events.php:4187
3164
  msgid "Link"
3165
  msgstr "Lien"
3166
 
3167
- #: app/features/events.php:4189 app/features/locations.php:111
3168
  #: app/features/locations.php:181 app/features/locations.php:268
3169
  #: app/features/mec/meta_boxes/search_form.php:108
3170
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3182,31 +3192,31 @@ msgstr "Lien"
3182
  msgid "Address"
3183
  msgstr "Adresse"
3184
 
3185
- #: app/features/events.php:4191
3186
  #, php-format
3187
  msgid "%s Tel"
3188
  msgstr "%s Téléphone"
3189
 
3190
- #: app/features/events.php:4192
3191
  #, php-format
3192
  msgid "%s Email"
3193
  msgstr "%s mail"
3194
 
3195
- #: app/features/events.php:4194 app/features/fes/form.php:951
3196
  #: app/features/mec/settings.php:876
3197
  msgid "Featured Image"
3198
  msgstr "Image Principale"
3199
 
3200
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3201
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3202
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3203
  msgid "Tags"
3204
  msgstr "Étiquettes"
3205
 
3206
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3207
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3208
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3209
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3210
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3211
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3212
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3214,36 +3224,36 @@ msgstr "Étiquettes"
3214
  msgid "Speakers"
3215
  msgstr "Orateurs"
3216
 
3217
- #: app/features/events.php:4446 app/features/fes.php:280
3218
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3219
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3220
  #: app/libraries/main.php:7592
3221
  msgid "Ticket"
3222
  msgstr "Billets"
3223
 
3224
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3225
  msgid "Variations"
3226
  msgstr "Vérifications"
3227
 
3228
- #: app/features/events.php:4464 app/features/fes.php:356
3229
  msgid "Unknown"
3230
  msgstr "Inconnu"
3231
 
3232
- #: app/features/events.php:4492
3233
  msgid ""
3234
  "If you want to send an email, first select your attendees and then click in "
3235
  "the button below, please."
3236
  msgstr ""
3237
 
3238
- #: app/features/events.php:4492 app/features/mec/report.php:57
3239
  msgid "Send Email"
3240
  msgstr "Envoyer le mail"
3241
 
3242
- #: app/features/events.php:4496
3243
  msgid "No Attendees Found!"
3244
  msgstr "Aucune réservation trouvée!"
3245
 
3246
- #: app/features/events.php:4797
3247
  #, fuzzy
3248
  #| msgid "No bookings found!"
3249
  msgid "No Bookings Found!"
@@ -3381,70 +3391,70 @@ msgstr "Événement soumis. Il sera publié dans les plus brefs délais."
3381
  msgid "The event published."
3382
  msgstr "Événement Publié."
3383
 
3384
- #: app/features/fes/form.php:178
3385
  msgid "Go back to events list"
3386
  msgstr "Retourner à la liste des évènements."
3387
 
3388
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3389
  #: app/features/mec/settings.php:1171
3390
  msgid "Excerpt"
3391
  msgstr ""
3392
 
3393
- #: app/features/fes/form.php:271
3394
  #, fuzzy
3395
  #| msgid "On Event Start"
3396
  msgid "Optional Event Excerpt"
3397
  msgstr "Au début de l'événement"
3398
 
3399
- #: app/features/fes/form.php:278
3400
  msgid ""
3401
  "This event is imported from Google calendar so if you modify it would "
3402
  "overwrite in the next import from Google."
3403
  msgstr ""
3404
 
3405
- #: app/features/fes/form.php:407
3406
  #: app/features/mec/meta_boxes/display_options.php:1494
3407
  #: app/libraries/main.php:476
3408
  msgid "Monday"
3409
  msgstr "Lundi"
3410
 
3411
- #: app/features/fes/form.php:408
3412
  #: app/features/mec/meta_boxes/display_options.php:1495
3413
  #: app/libraries/main.php:476
3414
  msgid "Tuesday"
3415
  msgstr "Mardi"
3416
 
3417
- #: app/features/fes/form.php:409
3418
  #: app/features/mec/meta_boxes/display_options.php:1496
3419
  #: app/libraries/main.php:476
3420
  msgid "Wednesday"
3421
  msgstr "Mercredi"
3422
 
3423
- #: app/features/fes/form.php:410
3424
  #: app/features/mec/meta_boxes/display_options.php:1497
3425
  #: app/libraries/main.php:476
3426
  msgid "Thursday"
3427
  msgstr "Jeudi"
3428
 
3429
- #: app/features/fes/form.php:411
3430
  #: app/features/mec/meta_boxes/display_options.php:1498
3431
  #: app/libraries/main.php:476
3432
  msgid "Friday"
3433
  msgstr "Vendredi"
3434
 
3435
- #: app/features/fes/form.php:412
3436
  #: app/features/mec/meta_boxes/display_options.php:1499
3437
  #: app/libraries/main.php:476
3438
  msgid "Saturday"
3439
  msgstr "Samedi"
3440
 
3441
- #: app/features/fes/form.php:413
3442
  #: app/features/mec/meta_boxes/display_options.php:1493
3443
  #: app/libraries/main.php:476
3444
  msgid "Sunday"
3445
  msgstr "Dimanche"
3446
 
3447
- #: app/features/fes/form.php:766
3448
  msgid ""
3449
  "The event will finish after certain repeats. For example if you set it to "
3450
  "10, the event will finish after 10 repeats."
@@ -3453,24 +3463,24 @@ msgstr ""
3453
  "exemple, si vous le réglez à 10, l'événement se terminera après 10 "
3454
  "répétitions."
3455
 
3456
- #: app/features/fes/form.php:790
3457
  msgid "Note to reviewer"
3458
  msgstr "Note à l'Administrateur"
3459
 
3460
- #: app/features/fes/form.php:808
3461
  msgid "User Data"
3462
  msgstr "Vos coordonnées"
3463
 
3464
- #: app/features/fes/form.php:811
3465
  msgid "eg. yourname@gmail.com"
3466
  msgstr "votre@email.fr"
3467
 
3468
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3469
- #: app/features/popup/event.php:185
3470
  msgid "eg. John Smith"
3471
  msgstr "ex : Surnom"
3472
 
3473
- #: app/features/fes/form.php:833
3474
  #, fuzzy
3475
  #| msgid ""
3476
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3480,39 +3490,39 @@ msgid ""
3480
  "link including http(s)://"
3481
  msgstr "Lien principal. Affiché sur la page de l'événement"
3482
 
3483
- #: app/features/fes/form.php:956
3484
  msgid "Remove Image"
3485
  msgstr "Supprimer l'image"
3486
 
3487
- #: app/features/fes/form.php:1046
3488
  msgid "Insert your desired tags, comma separated."
3489
  msgstr "Insérez les étiquettes souhaitées séparés par des virgules."
3490
 
3491
- #: app/features/fes/form.php:1068
3492
  msgid "Speakers Names"
3493
  msgstr "Option d’orateur"
3494
 
3495
- #: app/features/fes/form.php:1069
3496
  msgid "Separate names with commas: Justin, Chris"
3497
  msgstr ""
3498
 
3499
- #: app/features/fes/form.php:1114
3500
  #, fuzzy, php-format
3501
  #| msgid "Please %s/%s in order to submit new events."
3502
  msgid "I accept the %s in order to submit an event."
3503
  msgstr "Merci de %s/%s pour soumettre une date."
3504
 
3505
- #: app/features/fes/form.php:1114
3506
  msgid "Privacy Policy"
3507
  msgstr ""
3508
 
3509
- #: app/features/fes/form.php:1116
3510
  #, fuzzy
3511
  #| msgid "Please %s/%s in order to submit new events."
3512
  msgid "I accept the Privacy Policy in order to submit an event."
3513
  msgstr "Merci de %s/%s pour soumettre une date."
3514
 
3515
- #: app/features/fes/form.php:1122
3516
  #, fuzzy
3517
  #| msgid "Edit Events"
3518
  msgid "Submit Event"
@@ -3593,81 +3603,81 @@ msgstr ""
3593
  msgid "The events are imported successfully!"
3594
  msgstr ""
3595
 
3596
- #: app/features/ix.php:1301
3597
  msgid "Third Party plugin is not installed and activated!"
3598
  msgstr ""
3599
 
3600
- #: app/features/ix.php:1325
3601
  msgid "Third Party plugin is invalid!"
3602
  msgstr ""
3603
 
3604
- #: app/features/ix.php:3300 app/features/ix.php:3361
3605
  #, fuzzy
3606
  #| msgid "Both of API key and Calendar ID are required!"
3607
  msgid "API key and Calendar ID are required!"
3608
  msgstr "La clé API et le Calendar ID sont requis !"
3609
 
3610
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3611
  #, fuzzy
3612
  #| msgid "Please select some events to import!"
3613
  msgid "Please select events to import!"
3614
  msgstr "Merci de sélectionner les évènements à Importer !"
3615
 
3616
- #: app/features/ix.php:3794 app/features/ix.php:3857
3617
  #, fuzzy
3618
  #| msgid "Both of API key and Calendar ID are required!"
3619
  msgid "API key and Group URL are required!"
3620
  msgstr "La clé API et le Calendar ID sont requis !"
3621
 
3622
- #: app/features/ix.php:4096
3623
  msgid "Check at Meetup"
3624
  msgstr ""
3625
 
3626
- #: app/features/ix.php:4262
3627
  #, fuzzy
3628
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3629
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3630
  msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
3631
 
3632
- #: app/features/ix.php:4285
3633
  #, fuzzy, php-format
3634
  #| msgid "All seems good! Please click %s for authenticating your app."
3635
  msgid "All seems good! Please click %s to authenticate your app."
3636
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
3637
 
3638
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3639
  #: app/features/mec/settings.php:1496
3640
  msgid "here"
3641
  msgstr ""
3642
 
3643
- #: app/features/ix.php:4340
3644
  #, fuzzy
3645
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3646
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3647
  msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
3648
 
3649
- #: app/features/ix.php:4502
3650
  #, fuzzy, php-format
3651
  #| msgid "%s events added to Google Calendar successfully."
3652
  msgid "%s events added to Google Calendar with success."
3653
  msgstr "%s évènements ajoutés à Google Agenda avec succès."
3654
 
3655
- #: app/features/ix.php:4503
3656
  #, fuzzy, php-format
3657
  #| msgid "%s previously added events get updated."
3658
  msgid "%s Updated previously added events."
3659
  msgstr "%s évènements précédemment ajoutés ont été mis à jour."
3660
 
3661
- #: app/features/ix.php:4504
3662
  #, php-format
3663
  msgid "%s events failed to add for following reasons: %s"
3664
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
3665
 
3666
- #: app/features/ix.php:4536
3667
  msgid "Please insert your Facebook page's link."
3668
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
3669
 
3670
- #: app/features/ix.php:4547 app/features/ix.php:4589
3671
  #, fuzzy
3672
  #| msgid ""
3673
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3679,7 +3689,7 @@ msgstr ""
3679
  "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
3680
  "une adresse Facebook Page valide."
3681
 
3682
- #: app/features/ix.php:4584
3683
  msgid "Please insert your facebook page's link."
3684
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
3685
 
@@ -3891,7 +3901,7 @@ msgstr "Participants à l'Événement"
3891
  msgid "Add to Google Calendar"
3892
  msgstr "Ajouter à Google Agenda"
3893
 
3894
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3895
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3896
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3897
  #: app/features/mec/single.php:604
@@ -4005,7 +4015,7 @@ msgstr "Importer depuis Calendrier Facebook"
4005
  msgid "Import all of your Facebook events into MEC."
4006
  msgstr "Importer tous vos évènements Facebook dans l'extension M.E.C. ."
4007
 
4008
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4009
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4010
  msgid "Documentation"
4011
  msgstr "Documentation"
@@ -4330,7 +4340,7 @@ msgid ""
4330
  msgstr ""
4331
 
4332
  #: app/features/labels.php:79 app/features/locations.php:77
4333
- #: app/features/organizers.php:77 app/features/speakers.php:79
4334
  #: app/features/tag.php:77
4335
  #, fuzzy, php-format
4336
  #| msgid "← Back to Coupons"
@@ -4338,7 +4348,7 @@ msgid "← Back to %s"
4338
  msgstr "← Retour aux coupons"
4339
 
4340
  #: app/features/labels.php:80 app/features/locations.php:78
4341
- #: app/features/organizers.php:78 app/features/speakers.php:80
4342
  #: app/features/tag.php:78
4343
  #, fuzzy, php-format
4344
  #| msgid "No events found!"
@@ -4382,7 +4392,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4382
  msgstr ""
4383
 
4384
  #: app/features/labels.php:186 app/features/locations.php:269
4385
- #: app/features/organizers.php:210 app/features/speakers.php:289
4386
  #: app/modules/booking/steps/tickets.php:172
4387
  msgid "Count"
4388
  msgstr "Apparition"
@@ -4398,7 +4408,7 @@ msgid "Event %s"
4398
  msgstr "%s événement"
4399
 
4400
  #: app/features/locations.php:59 app/features/mec.php:526
4401
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4402
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4403
  #: app/libraries/main.php:7623
4404
  msgid "Locations"
@@ -4409,7 +4419,7 @@ msgid "Enter the location address"
4409
  msgstr "Entrez l'adresse du Lieu"
4410
 
4411
  #: app/features/locations.php:131 app/features/locations.php:197
4412
- #: app/features/locations.php:374 app/features/popup/event.php:149
4413
  msgid "Latitude"
4414
  msgstr "Latitude"
4415
 
@@ -4420,7 +4430,7 @@ msgid "Geo latitude (Optional for Lite)"
4420
  msgstr "Geo latitude (Facultatif)"
4421
 
4422
  #: app/features/locations.php:139 app/features/locations.php:201
4423
- #: app/features/locations.php:375 app/features/popup/event.php:150
4424
  msgid "Longitude"
4425
  msgstr "Longitude"
4426
 
@@ -4445,22 +4455,22 @@ msgstr "Geo latitude (Facultatif)"
4445
 
4446
  #: app/features/locations.php:156 app/features/locations.php:210
4447
  #: app/features/organizers.php:128 app/features/organizers.php:161
4448
- #: app/features/speakers.php:176 app/features/speakers.php:229
4449
  msgid "Thumbnail"
4450
  msgstr "Miniature"
4451
 
4452
  #: app/features/locations.php:329 app/features/occurrences.php:460
4453
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4454
  #, php-format
4455
  msgid "Event Main %s"
4456
  msgstr "Événement principal %s"
4457
 
4458
  #: app/features/locations.php:332 app/features/occurrences.php:464
4459
- #: app/features/popup/event.php:119
4460
  msgid "Hide location"
4461
  msgstr "Cacher le lieu"
4462
 
4463
- #: app/features/locations.php:333 app/features/popup/event.php:120
4464
  msgid "Insert a new location"
4465
  msgstr "Ajouter un nouveau lieu"
4466
 
@@ -4468,28 +4478,28 @@ msgstr "Ajouter un nouveau lieu"
4468
  msgid "Choose one of saved locations or insert new one below."
4469
  msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
4470
 
4471
- #: app/features/locations.php:348 app/features/popup/event.php:141
4472
  msgid "Location Name"
4473
  msgstr "Nom du Lieu"
4474
 
4475
- #: app/features/locations.php:349 app/features/popup/event.php:142
4476
  msgid "eg. City Hall"
4477
  msgstr "Ex : La Source"
4478
 
4479
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4480
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4481
  msgid "Event Location"
4482
  msgstr "Lieu de l'événement"
4483
 
4484
- #: app/features/locations.php:353 app/features/popup/event.php:146
4485
  msgid "eg. City hall, Manhattan, New York"
4486
  msgstr "Ex : Grenoble (38)"
4487
 
4488
- #: app/features/locations.php:378 app/features/popup/event.php:153
4489
  msgid "Latitude/Longitude"
4490
  msgstr "Latitude/Longitude"
4491
 
4492
- #: app/features/locations.php:379 app/features/popup/event.php:154
4493
  msgid ""
4494
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4495
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4498,26 +4508,26 @@ msgid ""
4498
  "the location on the map to find lat long coordinates."
4499
  msgstr ""
4500
 
4501
- #: app/features/locations.php:379 app/features/popup/event.php:154
4502
  msgid "Get Latitude and Longitude"
4503
  msgstr ""
4504
 
4505
  #: app/features/locations.php:392 app/features/organizers.php:315
4506
- #: app/features/popup/event.php:204
4507
  msgid "Choose image"
4508
  msgstr "Choisir une image"
4509
 
4510
- #: app/features/locations.php:406 app/features/occurrences.php:480
4511
- #: app/features/popup/event.php:137
4512
  msgid "Don't show map in single event page"
4513
  msgstr "Ne pas afficher de carte pour cet événement"
4514
 
4515
- #: app/features/locations.php:409 app/libraries/main.php:7607
4516
  #: app/libraries/main.php:7654
4517
  msgid "Other Locations"
4518
  msgstr "Autres lieux"
4519
 
4520
- #: app/features/locations.php:411
4521
  msgid ""
4522
  "You can select extra locations in addition to main location if you like."
4523
  msgstr ""
@@ -4595,7 +4605,7 @@ msgstr "MEC - Aide"
4595
  msgid "Support"
4596
  msgstr "Aide"
4597
 
4598
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4599
  #: app/features/mec/meta_boxes/filter.php:71
4600
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4601
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4603,7 +4613,7 @@ msgid "Organizers"
4603
  msgstr "Organisateurs"
4604
 
4605
  #: app/features/mec.php:536 app/features/mec.php:596
4606
- #: app/features/mec/dashboard.php:221
4607
  msgid "Shortcodes"
4608
  msgstr "Shortcodes"
4609
 
@@ -4818,7 +4828,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4818
  msgstr ""
4819
 
4820
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4821
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4822
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4823
  msgid "Version"
4824
  msgstr "Version"
@@ -4842,9 +4852,9 @@ msgid "Search..."
4842
  msgstr "Recherche…"
4843
 
4844
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4845
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4846
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4847
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4848
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4849
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4850
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5431,29 +5441,29 @@ msgstr "Compléter automatiquement les commandes WooCommerce"
5431
  msgid "It applies only to the orders that are related to MEC."
5432
  msgstr "Cela s'applique uniquement aux commandes liées a l'extension M.E.C."
5433
 
5434
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5435
  msgid "After Add to Cart"
5436
  msgstr ""
5437
 
5438
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5439
  #, fuzzy
5440
  #| msgid "Redirection Page"
5441
  msgid "Redirect to Cart"
5442
  msgstr "Redirection"
5443
 
5444
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5445
  #, fuzzy
5446
  #| msgid "Redirection Page"
5447
  msgid "Redirect to Checkout"
5448
  msgstr "Redirection"
5449
 
5450
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5451
  #, fuzzy
5452
  #| msgid "View Detail Button"
5453
  msgid "Optional View Cart Button"
5454
  msgstr "Afficher le boutons de détail"
5455
 
5456
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5457
  msgid "Optional Checkout Button"
5458
  msgstr ""
5459
 
@@ -5509,81 +5519,87 @@ msgid ""
5509
  "(Stripe) got canceled."
5510
  msgstr ""
5511
 
5512
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5513
  msgid "Use MEC Cart System"
5514
  msgstr ""
5515
 
5516
- #: app/features/mec/booking.php:1119
5517
  msgid ""
5518
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5519
  "adding a simple cart and checkout system to your website."
5520
  msgstr ""
5521
 
5522
- #: app/features/mec/booking.php:1121
5523
  msgid "You cannot use following MEC features while using MEC Cart."
5524
  msgstr ""
5525
 
5526
- #: app/features/mec/booking.php:1123
5527
  #, fuzzy
5528
  #| msgid "Set Up a Payment Gateway"
5529
  msgid "WooCommerce as Payment Gateway"
5530
  msgstr "Passerelle de paiement"
5531
 
5532
- #: app/features/mec/booking.php:1124
5533
  #, fuzzy
5534
  #| msgid "Next Occurrence of Other Events"
5535
  msgid "Currency Per Event"
5536
  msgstr "Prochaine Occurrence de l'événement à venir"
5537
 
5538
- #: app/features/mec/booking.php:1125
5539
  #, fuzzy
5540
  #| msgid "Payment Gateways"
5541
  msgid "Disable Gateways Per Event"
5542
  msgstr "Passerelle de paiement"
5543
 
5544
- #: app/features/mec/booking.php:1126
5545
  #, fuzzy
5546
  #| msgid "Stripe Connect"
5547
  msgid "Stripe Connect Gateway"
5548
  msgstr "Stripe Connect"
5549
 
5550
- #: app/features/mec/booking.php:1127
5551
  #, fuzzy
5552
  #| msgid "Pay by WooCommerce"
5553
  msgid "Pay By WooCommerce Gateway"
5554
  msgstr "Payer via WooCommerce"
5555
 
5556
- #: app/features/mec/booking.php:1128
5557
  #, fuzzy
5558
  #| msgid "Enable Organizer Payment Module"
5559
  msgid "Organizer Payment Module"
5560
  msgstr "Activer module de coupons"
5561
 
5562
- #: app/features/mec/booking.php:1132
5563
  #, fuzzy
5564
  #| msgid "Start Date"
5565
  msgid "Cart Page"
5566
  msgstr "Date de début"
5567
 
5568
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5569
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5570
  #, php-format
5571
  msgid "Put %s shortcode into the page."
5572
  msgstr "Mettez %s le shortcode de dans la page."
5573
 
5574
- #: app/features/mec/booking.php:1144
5575
  #, fuzzy
5576
  #| msgid "Checkout"
5577
  msgid "Checkout Page"
5578
  msgstr "Commander"
5579
 
5580
- #: app/features/mec/booking.php:1170
5581
  #, fuzzy
5582
  #| msgid "Enable Invoice"
5583
  msgid "Enable Cart Invoice"
5584
  msgstr "Activer les factures"
5585
 
5586
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5587
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5588
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5589
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5591,7 +5607,7 @@ msgstr "Activer les factures"
5591
  msgid "Saved"
5592
  msgstr "Sauvegardé"
5593
 
5594
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5595
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5596
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5597
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5599,7 +5615,7 @@ msgstr "Sauvegardé"
5599
  msgid "Settings Saved!"
5600
  msgstr ""
5601
 
5602
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5603
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5604
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5605
  msgid "Please Refresh Page"
@@ -5618,12 +5634,7 @@ msgstr "Bienvenue %s"
5618
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5619
  msgstr "Calendrier des événements"
5620
 
5621
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5622
- msgctxt "plugin rate"
5623
- msgid "Rate the plugin ★★★★★"
5624
- msgstr ""
5625
-
5626
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5627
  #, php-format
5628
  msgid ""
5629
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5631,71 +5642,54 @@ msgid ""
5631
  "Spots, etc you should upgrade to the Pro version."
5632
  msgstr ""
5633
 
5634
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5635
  msgid "lite"
5636
  msgstr ""
5637
 
5638
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5639
  #: app/features/mec/support.php:126
5640
  msgid "GO PREMIUM"
5641
  msgstr ""
5642
 
5643
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5644
- #, php-format
5645
- msgid ""
5646
- "Easily get a discount coupon by rating us on %s or following and reposting "
5647
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5648
- msgstr ""
5649
-
5650
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5651
- #, fuzzy
5652
- #| msgid "Address"
5653
- msgid "WordPress"
5654
- msgstr "Adresse"
5655
-
5656
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5657
- msgid "Copouns!"
5658
- msgstr ""
5659
-
5660
- #: app/features/mec/dashboard.php:115
5661
  #, fuzzy
5662
  #| msgid "Modern Events Calendar"
5663
  msgid "Getting started with Modern Events Calendar"
5664
  msgstr "Modern Events Calendar"
5665
 
5666
- #: app/features/mec/dashboard.php:116
5667
  msgid ""
5668
  "In this short video, you can learn how to make an event and put a calendar "
5669
  "on your website. Please watch this 2 minutes video to the end."
5670
  msgstr ""
5671
 
5672
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5673
  #, fuzzy
5674
  #| msgid "MEC Activation"
5675
  msgid "License Activation"
5676
  msgstr "Activation de l'extension"
5677
 
5678
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5679
  #, fuzzy
5680
  #| msgid "MEC Activation"
5681
  msgid "Activate Addons"
5682
  msgstr "Activation de l'extension"
5683
 
5684
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5685
  msgid "You cannot access this section."
5686
  msgstr ""
5687
 
5688
- #: app/features/mec/dashboard.php:162
5689
  msgid ""
5690
  "In order to use all plugin features and options, please enter your purchase "
5691
  "code."
5692
  msgstr ""
5693
 
5694
- #: app/features/mec/dashboard.php:270
5695
  msgid "Popular Gateways"
5696
  msgstr "Passerelle populaire"
5697
 
5698
- #: app/features/mec/dashboard.php:328
5699
  msgid "Change Log"
5700
  msgstr "Journal des modifications"
5701
 
@@ -7263,7 +7257,7 @@ msgstr ""
7263
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7264
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7265
  #: app/features/popup/settings.php:272 app/features/search.php:109
7266
- #: app/features/speakers.php:60 app/features/speakers.php:286
7267
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7268
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7269
  #: app/modules/speakers/details.php:18
@@ -8605,7 +8599,7 @@ msgstr ""
8605
  msgid "Please, insert comma to separate reminder hours."
8606
  msgstr ""
8607
 
8608
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8609
  #: app/libraries/main.php:705
8610
  msgid "New Event"
8611
  msgstr "Nouvel événement"
@@ -10855,13 +10849,13 @@ msgstr ""
10855
  msgid "Choose one of saved locations."
10856
  msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
10857
 
10858
- #: app/features/occurrences.php:491 app/features/organizers.php:280
10859
- #: app/features/popup/event.php:166
10860
  msgid "Hide organizer"
10861
  msgstr "Ne pas afficher l'organisateur"
10862
 
10863
- #: app/features/occurrences.php:499 app/features/organizers.php:289
10864
- #: app/features/popup/event.php:175
10865
  msgid "Choose one of saved organizers or insert new one below."
10866
  msgstr "Choisir un organisateur existant ou en ajouter un nouveau."
10867
 
@@ -10874,7 +10868,7 @@ msgid "Insert organizer email address."
10874
  msgstr "Ajouter l'email de l'organisateur."
10875
 
10876
  #: app/features/organizers.php:120 app/features/organizers.php:157
10877
- #: app/features/organizers.php:308 app/features/popup/event.php:198
10878
  msgid "Link to organizer page"
10879
  msgstr "Lien vers la page de l'organisateur"
10880
 
@@ -10888,27 +10882,27 @@ msgstr ""
10888
  msgid "Contact info"
10889
  msgstr "Informations de contact"
10890
 
10891
- #: app/features/organizers.php:281 app/features/popup/event.php:167
10892
  msgid "Insert a new organizer"
10893
  msgstr "Ajouter un nouvel organisateur"
10894
 
10895
- #: app/features/organizers.php:300 app/features/popup/event.php:188
10896
  msgid "Phone number."
10897
  msgstr "Numéro de téléphone."
10898
 
10899
- #: app/features/organizers.php:301 app/features/popup/event.php:189
10900
  msgid "eg. +1 (234) 5678"
10901
  msgstr "ex : +33 (0)4 76 36 55 76"
10902
 
10903
- #: app/features/organizers.php:304 app/features/popup/event.php:193
10904
  msgid "Email address."
10905
  msgstr "Adresse e-mail."
10906
 
10907
- #: app/features/organizers.php:305 app/features/popup/event.php:194
10908
  msgid "eg. john@smith.com"
10909
  msgstr "ex : votre@surnom.com"
10910
 
10911
- #: app/features/organizers.php:309 app/features/popup/event.php:199
10912
  msgid "eg. https://webnus.net"
10913
  msgstr "eg. https://webnus.net"
10914
 
@@ -10924,72 +10918,72 @@ msgstr ""
10924
  "Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
10925
  "l'organisateur principal si vous le souhaitez."
10926
 
10927
- #: app/features/popup/event.php:58
10928
  #, fuzzy
10929
  #| msgid "Add Shortcode"
10930
  msgid "Adding an Event..."
10931
  msgstr "Ajouter un Shortcode"
10932
 
10933
- #: app/features/popup/event.php:66
10934
  #, fuzzy
10935
  #| msgid "Event Note"
10936
  msgid "Event Name"
10937
  msgstr "Note sur l'événement"
10938
 
10939
- #: app/features/popup/event.php:67
10940
  msgid "Event name is required"
10941
  msgstr ""
10942
 
10943
- #: app/features/popup/event.php:128
10944
  #, fuzzy
10945
  #| msgid "Choose one of saved locations or insert new one below."
10946
  msgid "Choose one of saved locations or insert new one."
10947
  msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
10948
 
10949
- #: app/features/popup/event.php:132
10950
  #, fuzzy
10951
  #| msgid "Add New Location"
10952
  msgid "Add Location"
10953
  msgstr "Ajouter un nouveau Lieu"
10954
 
10955
- #: app/features/popup/event.php:179
10956
  #, fuzzy
10957
  #| msgid "Add New Organizer"
10958
  msgid "Add Organizer"
10959
  msgstr "Ajouter un nouvel organisateur"
10960
 
10961
- #: app/features/popup/event.php:219
10962
  #, fuzzy
10963
  #| msgid "Categories"
10964
  msgid "All Categories"
10965
  msgstr "Catégories"
10966
 
10967
- #: app/features/popup/event.php:220
10968
  msgid "Most Used"
10969
  msgstr ""
10970
 
10971
- #: app/features/popup/event.php:231
10972
  #, fuzzy
10973
  #| msgid "Add New Label"
10974
  msgid "Add New Category"
10975
  msgstr "Ajouter une étquette"
10976
 
10977
- #: app/features/popup/event.php:242
10978
  #, fuzzy
10979
  #| msgid "Featured Image"
10980
  msgid "Set Featured Image"
10981
  msgstr "Image Principale"
10982
 
10983
- #: app/features/popup/event.php:252
10984
  msgid "Your Event Has Been Created."
10985
  msgstr ""
10986
 
10987
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
10988
  #: app/features/popup/shortcode.php:553
10989
  msgid "Prev"
10990
  msgstr ""
10991
 
10992
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
10993
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
10994
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
10995
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11192,70 +11186,70 @@ msgstr "Recherche"
11192
  msgid "No search result."
11193
  msgstr ""
11194
 
11195
- #: app/features/speakers.php:112 app/features/speakers.php:197
11196
- #: app/features/speakers.php:287
11197
  msgid "Job Title"
11198
  msgstr "Titre de l’emploi"
11199
 
11200
- #: app/features/speakers.php:115 app/features/speakers.php:198
11201
  msgid "Insert speaker job title."
11202
  msgstr ""
11203
 
11204
- #: app/features/speakers.php:123 app/features/speakers.php:202
11205
  msgid "Insert speaker phone number."
11206
  msgstr "Ajouter le numéro de téléphone de l'organisateur."
11207
 
11208
- #: app/features/speakers.php:131 app/features/speakers.php:206
11209
  msgid "Insert speaker email address."
11210
  msgstr "Ajouter l'email de l'organisateur."
11211
 
11212
- #: app/features/speakers.php:139 app/features/speakers.php:210
11213
  #, fuzzy
11214
  #| msgid "Insert URL of LinkedIn"
11215
  msgid "Insert URL of Website"
11216
  msgstr "Insérer l’url de la page LinkedIn"
11217
 
11218
- #: app/features/speakers.php:144 app/features/speakers.php:213
11219
  msgid "Facebook Page"
11220
  msgstr "URL Page Facebook"
11221
 
11222
- #: app/features/speakers.php:147 app/features/speakers.php:214
11223
  msgid "Insert URL of Facebook Page"
11224
  msgstr "Insérer l’url de la page Facebook"
11225
 
11226
- #: app/features/speakers.php:152 app/features/speakers.php:217
11227
  msgid "Instagram"
11228
  msgstr ""
11229
 
11230
- #: app/features/speakers.php:155 app/features/speakers.php:218
11231
  msgid "Insert URL of Instagram"
11232
  msgstr "Insérer l’url de la page Instagram"
11233
 
11234
- #: app/features/speakers.php:160 app/features/speakers.php:221
11235
  msgid "LinkedIn"
11236
  msgstr "Linkedin"
11237
 
11238
- #: app/features/speakers.php:163
11239
  msgid "Insert URL of LinkedIn"
11240
  msgstr "Insérer l’url de la page LinkedIn"
11241
 
11242
- #: app/features/speakers.php:168 app/features/speakers.php:225
11243
  msgid "Twitter Page"
11244
  msgstr "Twitter"
11245
 
11246
- #: app/features/speakers.php:171 app/features/speakers.php:226
11247
  msgid "Insert URL of Twitter Page"
11248
  msgstr "Insérer l’url de la page Twitter"
11249
 
11250
- #: app/features/speakers.php:222
11251
  msgid "Insert URL of linkedin"
11252
  msgstr "Insérer l’url de la page linkedin"
11253
 
11254
- #: app/features/speakers.php:347
11255
  msgid "Sorry, You must insert speaker name!"
11256
  msgstr ""
11257
 
11258
- #: app/features/speakers.php:396
11259
  msgid ""
11260
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11261
  "section and speaker widget section!"
@@ -11343,71 +11337,71 @@ msgctxt "plugin link"
11343
  msgid "Upgrade to Pro Version"
11344
  msgstr ""
11345
 
11346
- #: app/libraries/factory.php:234
11347
  msgctxt "plugin link"
11348
  msgid "Settings"
11349
  msgstr "Paramètres"
11350
 
11351
- #: app/libraries/factory.php:239
11352
  msgctxt "plugin link"
11353
  msgid "Upgrade"
11354
  msgstr ""
11355
 
11356
- #: app/libraries/factory.php:393
11357
  msgid "day"
11358
  msgstr "jour"
11359
 
11360
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11361
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11362
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11363
  msgid "days"
11364
  msgstr "jours"
11365
 
11366
- #: app/libraries/factory.php:395
11367
  msgid "hour"
11368
  msgstr "heure"
11369
 
11370
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11371
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11372
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11373
  msgid "hours"
11374
  msgstr "heures"
11375
 
11376
- #: app/libraries/factory.php:397
11377
  msgid "minute"
11378
  msgstr "minute"
11379
 
11380
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11381
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11382
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11383
  msgid "minutes"
11384
  msgstr "minutes"
11385
 
11386
- #: app/libraries/factory.php:399
11387
  msgid "second"
11388
  msgstr "seconde"
11389
 
11390
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11391
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11392
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11393
  msgid "seconds"
11394
  msgstr "secondes"
11395
 
11396
- #: app/libraries/factory.php:477
11397
  msgid "MEC Single Sidebar"
11398
  msgstr "Barre latérale M.E.C."
11399
 
11400
- #: app/libraries/factory.php:478
11401
  msgid "Custom sidebar for single and modal page of MEC."
11402
  msgstr ""
11403
  "Barre latérale personnalisée pour les pages d'événement et les pop-ups "
11404
  "modales de M.E.C. ."
11405
 
11406
- #: app/libraries/factory.php:1199
11407
  msgid "Notice:"
11408
  msgstr ""
11409
 
11410
- #: app/libraries/factory.php:1200
11411
  msgid "This update includes only bug fixes."
11412
  msgstr ""
11413
 
@@ -11561,12 +11555,6 @@ msgstr "Shortcode"
11561
  msgid "%s Form"
11562
  msgstr ""
11563
 
11564
- #: app/libraries/main.php:689
11565
- #, fuzzy
11566
- #| msgid "MEC - Report"
11567
- msgid "MEC Cart"
11568
- msgstr "MEC - Rapports"
11569
-
11570
  #: app/libraries/main.php:726
11571
  msgid "Only For Bookers"
11572
  msgstr ""
@@ -12316,12 +12304,7 @@ msgstr "Début"
12316
  msgid "End at: %s - %s"
12317
  msgstr ""
12318
 
12319
- #: app/libraries/skins.php:1755
12320
- #, php-format
12321
- msgid "Every %s"
12322
- msgstr ""
12323
-
12324
- #: app/libraries/skins.php:1756
12325
  #, fuzzy
12326
  #| msgid "Repeating"
12327
  msgid "Repeating Event"
@@ -12803,6 +12786,11 @@ msgstr "e.g. Webnus"
12803
  msgid "http://webnus.net"
12804
  msgstr ""
12805
 
 
 
 
 
 
12806
  #, fuzzy
12807
  #~| msgid ""
12808
  #~| "The %s ticket is sold out. You can try another ticket or another date."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:15+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
171
  msgstr "Annulé"
172
 
173
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
174
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
175
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
176
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
177
  #: app/features/mec/notifications.php:1922
209
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
210
  #: app/features/autoemails.php:60 app/features/events.php:606
211
  #: app/features/events.php:2650 app/features/events.php:2717
212
+ #: app/features/events.php:2806 app/features/events.php:4445
213
+ #: app/features/fes.php:280 app/features/fes/form.php:812
214
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
215
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
216
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
217
  #: app/features/organizers.php:112 app/features/organizers.php:153
218
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
219
+ #: app/features/speakers.php:211 app/libraries/main.php:653
220
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
221
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
222
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
372
  #: app/features/events.php:2808 app/features/mec/booking.php:800
373
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
374
  #: app/features/organizers.php:104 app/features/organizers.php:149
375
+ #: app/features/speakers.php:126 app/features/speakers.php:207
376
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
377
  msgid "Tel"
378
  msgstr "Téléphone"
379
 
519
  msgid "Agreement"
520
  msgstr "Accord"
521
 
522
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
523
+ #, php-format
524
+ msgid "I agree with %s"
525
+ msgstr ""
526
+
527
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
528
  #, php-format
529
  msgid "Instead of %s, the page title with a link will be show."
704
  #: app/features/events.php:1843 app/features/events.php:2014
705
  #: app/features/events.php:2029 app/features/events.php:2271
706
  #: app/features/events.php:2283 app/features/events.php:2476
707
+ #: app/features/events.php:2513 app/features/fes/form.php:460
708
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
709
  #: app/features/locations.php:341 app/features/mec/booking.php:113
710
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
711
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
782
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
783
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
784
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
785
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
786
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
787
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
788
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
789
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
790
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
948
 
949
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
950
  #: app/features/events.php:432 app/features/events.php:1283
951
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
952
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
953
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
954
  #: app/skins/single.php:1126 app/skins/single/default.php:213
955
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1028
  msgstr ""
1029
 
1030
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1031
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1032
  #: app/features/labels.php:61 app/features/labels.php:227
1033
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1034
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1064
  msgstr "Cacher le lieu"
1065
 
1066
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1067
+ #: app/features/events.php:3876 app/features/events.php:4190
1068
  #: app/features/locations.php:58 app/features/locations.php:267
1069
  #: app/features/locations.php:329 app/features/locations.php:331
1070
  #: app/features/locations.php:340
1084
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1085
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1086
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1087
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1088
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1089
  #: app/features/search.php:97 app/libraries/main.php:3020
1090
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1098
 
1099
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1100
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1101
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1102
  #: app/skins/single.php:1406 app/skins/single.php:1473
1103
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1104
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1121
 
1122
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1123
  #: app/features/events.php:1519 app/features/events.php:1532
1124
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1125
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1126
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1127
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1172
 
1173
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1174
  #: app/features/events.php:431 app/features/events.php:3877
1175
+ #: app/features/events.php:4192 app/features/events.php:4193
1176
+ #: app/features/events.php:4194
1177
  #: app/features/mec/meta_boxes/display_options.php:1660
1178
  #: app/features/mec/meta_boxes/search_form.php:80
1179
  #: app/features/mec/meta_boxes/search_form.php:168
1188
  #: app/features/mec/meta_boxes/search_form.php:983
1189
  #: app/features/mec/meta_boxes/search_form.php:1070
1190
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1191
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1192
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1193
  #: app/features/organizers.php:58 app/features/organizers.php:208
1194
  #: app/features/organizers.php:277 app/features/organizers.php:279
1195
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1196
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1197
  #: app/features/popup/settings.php:263 app/features/search.php:103
1198
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1199
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1317
  #: app/features/booking/calendar_novel.php:145
1318
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1319
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1320
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1321
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1322
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1323
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1324
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1384
 
1385
  #: app/features/autoemails.php:74 app/features/events.php:230
1386
  #: app/features/labels.php:72 app/features/locations.php:70
1387
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1388
  #: app/features/tag.php:70
1389
  #, php-format
1390
  msgid "Edit %s"
1450
  msgid "Go to events page"
1451
  msgstr "Montrer la Carte sur les pages d'événement"
1452
 
1453
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1454
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1455
  #: app/features/wc.php:91 app/libraries/main.php:3072
1456
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1532
  msgid "Back to Cart"
1533
  msgstr "Retourner à la liste des évènements."
1534
 
1535
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1536
  #: app/features/mec/settings.php:907
1537
  msgid "Event Color"
1538
  msgstr "Couleur de l'événement"
1544
  msgstr "Couleur de l'événement"
1545
 
1546
  #: app/features/contextual.php:55 app/features/mec.php:546
1547
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1548
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1549
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1550
  #: app/libraries/main.php:738
1551
  msgid "Settings"
1659
  msgstr "Détail de l'événement/Page de l'événement"
1660
 
1661
  #: app/features/contextual.php:166 app/features/events.php:1298
1662
+ #: app/features/fes/form.php:885
1663
  msgid "Currency Options"
1664
  msgstr "Options de devise"
1665
 
1751
  msgstr ""
1752
 
1753
  #: app/features/dlfile.php:297 app/features/events.php:3874
1754
+ #: app/features/events.php:4183 app/features/events.php:4734
1755
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1756
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1757
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1758
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1761
  msgstr "Titre"
1762
 
1763
  #: app/features/dlfile.php:301 app/features/events.php:1988
1764
+ #: app/features/events.php:2248 app/features/events.php:4184
1765
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1766
  #: app/libraries/hourlyschedule.php:152
1767
  msgid "Description"
1808
  msgstr "Avant €10"
1809
 
1810
  #: app/features/emails/details.php:35 app/features/events.php:1223
1811
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1812
  msgid "After"
1813
  msgstr "Après X répétitions"
1814
 
1819
  msgstr "Prochain déroulement"
1820
 
1821
  #: app/features/emails/details.php:40 app/features/events.php:192
1822
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1823
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1824
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1825
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1840
  msgid "Add Event"
1841
  msgstr "Ajouter un événement"
1842
 
1843
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1844
  msgid "Add New Event"
1845
  msgstr "Ajouter un nouvel événement"
1846
 
1847
+ #: app/features/events.php:196 app/features/ix.php:4614
1848
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1849
  #: app/skins/map/tpl.php:93
1850
  msgid "No events found!"
1855
  msgstr ""
1856
 
1857
  #: app/features/events.php:199 app/features/fes/list.php:100
1858
+ #: app/features/popup/event.php:259
1859
  msgid "View Event"
1860
  msgstr "Voir l'événement"
1861
 
1864
  msgstr "Aucun événement trouvé dans la corbeille !"
1865
 
1866
  #: app/features/events.php:219 app/features/events.php:3831
1867
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1868
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1869
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1870
  #: app/libraries/main.php:7619
1873
 
1874
  #: app/features/events.php:229 app/features/labels.php:71
1875
  #: app/features/locations.php:69 app/features/organizers.php:69
1876
+ #: app/features/speakers.php:77 app/features/tag.php:69
1877
  #, php-format
1878
  msgid "All %s"
1879
  msgstr "Tous %s"
1880
 
1881
  #: app/features/events.php:231 app/features/labels.php:73
1882
  #: app/features/locations.php:71 app/features/organizers.php:71
1883
+ #: app/features/speakers.php:79 app/features/tag.php:71
1884
  #, php-format
1885
  msgid "View %s"
1886
  msgstr "Voir %s"
1887
 
1888
  #: app/features/events.php:232 app/features/labels.php:74
1889
  #: app/features/locations.php:72 app/features/organizers.php:72
1890
+ #: app/features/speakers.php:80 app/features/tag.php:72
1891
  #, php-format
1892
  msgid "Update %s"
1893
  msgstr "Mettre à jour %s"
1894
 
1895
  #: app/features/events.php:233 app/features/labels.php:75
1896
  #: app/features/locations.php:73 app/features/organizers.php:73
1897
+ #: app/features/speakers.php:81 app/features/tag.php:73
1898
  #, php-format
1899
  msgid "Add New %s"
1900
  msgstr "Ajouter un nouvel %s"
1901
 
1902
  #: app/features/events.php:234 app/features/labels.php:76
1903
  #: app/features/locations.php:74 app/features/organizers.php:74
1904
+ #: app/features/speakers.php:82 app/features/tag.php:74
1905
  #, php-format
1906
  msgid "New %s Name"
1907
  msgstr "Nouveau nom %s"
1908
 
1909
  #: app/features/events.php:235 app/features/labels.php:77
1910
  #: app/features/locations.php:75 app/features/organizers.php:75
1911
+ #: app/features/speakers.php:83 app/features/tag.php:75
1912
  #, php-format
1913
  msgid "Popular %s"
1914
  msgstr "%s populaire (s)"
1915
 
1916
  #: app/features/events.php:236 app/features/labels.php:78
1917
  #: app/features/locations.php:76 app/features/organizers.php:76
1918
+ #: app/features/speakers.php:84 app/features/tag.php:76
1919
  #, php-format
1920
  msgid "Search %s"
1921
  msgstr "Rechercher %s"
1945
  #: app/features/events.php:278 app/features/events.php:336
1946
  #: app/features/locations.php:161 app/features/locations.php:213
1947
  #: app/features/organizers.php:133 app/features/organizers.php:164
1948
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1949
  msgid "Upload/Add image"
1950
  msgstr "Mettre en ligne une image"
1951
 
1954
  #: app/features/locations.php:393 app/features/locations.php:400
1955
  #: app/features/organizers.php:134 app/features/organizers.php:165
1956
  #: app/features/organizers.php:316 app/features/organizers.php:323
1957
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1958
  msgid "Remove image"
1959
  msgstr "Supprimer l'image"
1960
 
1970
  msgid "Date And Time"
1971
  msgstr "Date et heure"
1972
 
1973
+ #: app/features/events.php:425 app/features/fes/form.php:386
1974
  msgid "Event Repeating"
1975
  msgstr "Événement récurrent"
1976
 
2015
  msgstr "Coordonnées de l'Invité"
2016
 
2017
  #: app/features/events.php:605 app/features/events.php:2641
2018
+ #: app/features/events.php:4442 app/features/fes.php:280
2019
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2020
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2021
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2022
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2023
  msgid "Name"
2024
  msgstr "Nom"
2029
  "overwrite in the next import from Google."
2030
  msgstr ""
2031
 
2032
+ #: app/features/events.php:619 app/features/fes/form.php:284
2033
  msgid "Date and Time"
2034
  msgstr "Date et heure"
2035
 
2036
  #: app/features/events.php:622 app/features/events.php:626
2037
+ #: app/features/events.php:3878 app/features/events.php:4185
2038
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2039
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2040
  #: app/features/mec/meta_boxes/display_options.php:57
2041
  #: app/features/mec/meta_boxes/display_options.php:312
2053
  #: app/features/mec/meta_boxes/display_options.php:2347
2054
  #: app/features/mec/meta_boxes/display_options.php:2478
2055
  #: app/features/mec/meta_boxes/display_options.php:2584
2056
+ #: app/features/popup/event.php:79
2057
  msgid "Start Date"
2058
  msgstr "Date de début"
2059
 
2060
  #: app/features/events.php:642 app/features/events.php:646
2061
+ #: app/features/events.php:3879 app/features/events.php:4187
2062
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2063
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2064
  #: app/features/mec/meta_boxes/display_options.php:73
2065
  #: app/features/mec/meta_boxes/display_options.php:328
2068
  #: app/features/mec/meta_boxes/display_options.php:788
2069
  #: app/features/mec/meta_boxes/display_options.php:1618
2070
  #: app/features/mec/meta_boxes/display_options.php:2363
2071
+ #: app/features/popup/event.php:96
2072
  msgid "End Date"
2073
  msgstr "Date de fin"
2074
 
2075
+ #: app/features/events.php:669 app/features/fes/form.php:326
2076
+ #: app/features/popup/event.php:113
2077
  #, fuzzy
2078
  #| msgid "All Day Event"
2079
  msgid "All-day Event"
2080
  msgstr "Ne pas renseigner d'horaires"
2081
 
2082
+ #: app/features/events.php:679 app/features/fes/form.php:329
2083
  msgid "Hide Event Time"
2084
  msgstr "Masquer l'heure de début"
2085
 
2086
+ #: app/features/events.php:689 app/features/fes/form.php:332
2087
  msgid "Hide Event End Time"
2088
  msgstr "Masquer l'heure de fin"
2089
 
2090
  #: app/features/events.php:694 app/features/events.php:698
2091
+ #: app/features/fes/form.php:336
2092
  #, fuzzy
2093
  #| msgid "Note to reviewer"
2094
  msgid "Notes on the time"
2095
  msgstr "Note à l'Administrateur"
2096
 
2097
+ #: app/features/events.php:699 app/features/fes/form.php:337
2098
  #, fuzzy
2099
  #| msgid ""
2100
  #| "It shows next to event time on single event page. You can insert Timezone "
2106
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
2107
  "insérer y insérer un fuseau horaire."
2108
 
2109
+ #: app/features/events.php:711 app/features/fes/form.php:344
2110
  #, fuzzy
2111
  #| msgid "Timezone: %s"
2112
  msgid "Timezone"
2117
  #: app/features/events.php:1793 app/features/events.php:1813
2118
  #: app/features/events.php:1868 app/features/events.php:2438
2119
  #: app/features/events.php:2561 app/features/events.php:2672
2120
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2121
  msgid "Inherit from global options"
2122
  msgstr "Hériter des options globales"
2123
 
2124
  #: app/features/events.php:725 app/features/events.php:728
2125
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2126
  #: app/features/mec/settings.php:858
2127
  #, fuzzy
2128
  #| msgid "Countdown View"
2129
  msgid "Countdown Method"
2130
  msgstr "Vue sur Compte à Rebours"
2131
 
2132
+ #: app/features/events.php:730 app/features/fes/form.php:363
2133
  #, fuzzy
2134
  #| msgid "On Event Start"
2135
  msgid "Count to Event Start"
2136
  msgstr "Au début de l'événement"
2137
 
2138
+ #: app/features/events.php:731 app/features/fes/form.php:364
2139
  #, fuzzy
2140
  #| msgid "On Event End"
2141
  msgid "Count to Event End"
2142
  msgstr "À la fin de l'événement"
2143
 
2144
+ #: app/features/events.php:737 app/features/fes/form.php:371
2145
  #: app/modules/weather/darksky.php:57
2146
  msgid "Visibility"
2147
  msgstr ""
2148
 
2149
+ #: app/features/events.php:740 app/features/fes/form.php:374
2150
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2151
  #, fuzzy
2152
  #| msgid "Event Cost"
2153
  msgid "Event Visibility"
2154
  msgstr "Tarif de l'événement"
2155
 
2156
+ #: app/features/events.php:741 app/features/fes/form.php:375
2157
  #, fuzzy
2158
  #| msgid "Booking Style"
2159
  msgid "Show on Shortcodes"
2160
  msgstr "Style de réservation"
2161
 
2162
+ #: app/features/events.php:742 app/features/fes/form.php:376
2163
  #, fuzzy
2164
  #| msgid "Shortcodes"
2165
  msgid "Hide on Shortcodes"
2166
  msgstr "Shortcodes"
2167
 
2168
+ #: app/features/events.php:749 app/features/fes/form.php:384
2169
  msgid "Repeating"
2170
  msgstr "Répetition"
2171
 
2173
  msgid "Event Repeating (Recurring events)"
2174
  msgstr "Événement récurrent"
2175
 
2176
+ #: app/features/events.php:762 app/features/fes/form.php:390
2177
  msgid "Repeats"
2178
  msgstr "Récurrence"
2179
 
2180
+ #: app/features/events.php:770 app/features/fes/form.php:392
2181
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2182
+ #: app/skins/default_full_calendar/tpl.php:79
2183
  #: app/skins/full_calendar/tpl.php:140
2184
  msgid "Daily"
2185
  msgstr "Quotidienne"
2186
 
2187
+ #: app/features/events.php:777 app/features/fes/form.php:393
2188
+ #: app/libraries/skins.php:1772
2189
  msgid "Every Weekday"
2190
  msgstr "Tous les jours de la semaine"
2191
 
2192
+ #: app/features/events.php:784 app/features/fes/form.php:394
2193
+ #: app/libraries/skins.php:1769
2194
  msgid "Every Weekend"
2195
  msgstr "Tous les week-ends"
2196
 
2197
+ #: app/features/events.php:791 app/features/fes/form.php:395
2198
  msgid "Certain Weekdays"
2199
  msgstr "Certains jours de la semaine"
2200
 
2201
+ #: app/features/events.php:798 app/features/fes/form.php:396
2202
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2203
  #: app/skins/full_calendar/tpl.php:139
2204
  msgid "Weekly"
2205
  msgstr "Hebdomadaire"
2206
 
2207
+ #: app/features/events.php:805 app/features/fes/form.php:397
2208
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2209
+ #: app/skins/default_full_calendar/tpl.php:77
2210
  #: app/skins/full_calendar/tpl.php:138
2211
  msgid "Monthly"
2212
  msgstr "Mensuelle"
2213
 
2214
+ #: app/features/events.php:812 app/features/fes/form.php:398
2215
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2216
+ #: app/skins/default_full_calendar/tpl.php:76
2217
  #: app/skins/full_calendar/tpl.php:137
2218
  msgid "Yearly"
2219
  msgstr "Annuelle"
2220
 
2221
+ #: app/features/events.php:819 app/features/fes/form.php:399
2222
  msgid "Custom Days"
2223
  msgstr "Choisir les dates"
2224
 
2225
+ #: app/features/events.php:826 app/features/fes/form.php:400
2226
  msgid "Advanced"
2227
  msgstr "Méthode avancée"
2228
 
2229
+ #: app/features/events.php:831 app/features/fes/form.php:404
2230
  msgid "Repeat Interval"
2231
  msgstr "Interval de répétition"
2232
 
2233
+ #: app/features/events.php:833 app/features/fes/form.php:405
2234
  msgid "Repeat interval"
2235
  msgstr "Interval de répétition"
2236
 
2237
+ #: app/features/events.php:837 app/features/fes/form.php:408
2238
  msgid "Week Days"
2239
  msgstr "Jours de la semaine"
2240
 
2248
 
2249
  #: app/features/events.php:860 app/features/events.php:2101
2250
  #: app/features/events.php:2129 app/features/events.php:2343
2251
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2252
  #: app/features/ix/import_g_calendar.php:51
2253
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2254
  #: app/libraries/skins.php:1389
2259
  #: app/features/events.php:2085 app/features/events.php:2167
2260
  #: app/features/events.php:2332 app/features/events.php:2376
2261
  #: app/features/events.php:2449 app/features/events.php:2566
2262
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2263
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2264
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2265
  msgid "Add"
2266
  msgstr "Ajouter"
2267
 
2268
+ #: app/features/events.php:877 app/features/fes/form.php:456
2269
  msgid "Custom Days Repeating"
2270
  msgstr "Choisir les dates de récurence"
2271
 
2272
+ #: app/features/events.php:880 app/features/fes/form.php:459
2273
  msgid ""
2274
  "Add certain days to event occurrence dates. If you have a single day event, "
2275
  "start and end dates should be the same, If you have a multiple day event, "
2278
 
2279
  #: app/features/events.php:891 app/features/events.php:2105
2280
  #: app/features/events.php:2133 app/features/events.php:2347
2281
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2282
  msgid "End"
2283
  msgstr "FIn"
2284
 
2285
+ #: app/features/events.php:968 app/features/fes/form.php:532
2286
  #, fuzzy
2287
  #| msgid "First name"
2288
  msgid "First"
2289
  msgstr "Prénom"
2290
 
2291
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2292
  msgid "Second"
2293
  msgstr "seconde"
2294
 
2295
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2296
  msgid "Third"
2297
  msgstr ""
2298
 
2299
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2300
  msgid "Fourth"
2301
  msgstr ""
2302
 
2303
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2304
  #, fuzzy
2305
  #| msgid "Last name"
2306
  msgid "Last"
2307
  msgstr "Nom"
2308
 
2309
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2310
  msgid "Ends Repeat"
2311
  msgstr "Fin de l'événement"
2312
 
2313
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2314
  msgid "Never"
2315
  msgstr "Jamais"
2316
 
2317
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2318
  msgid "On"
2319
  msgstr "Date de fin"
2320
 
2321
  #: app/features/events.php:1227 app/features/events.php:1231
2322
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2323
  msgid "Occurrences times"
2324
  msgstr "Nombre de répétition de l'événement"
2325
 
2336
  "exemple, si vous le réglez à 10, l'événement se terminera après 10 "
2337
  "répétitions."
2338
 
2339
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2340
  msgid "Show only one occurrence of this event"
2341
  msgstr "Afficher uniquement une occurence pour cet événement"
2342
 
2343
+ #: app/features/events.php:1277 app/features/events.php:4195
2344
+ #: app/features/fes/form.php:867
2345
  #: app/features/mec/meta_boxes/search_form.php:116
2346
  #: app/features/mec/meta_boxes/search_form.php:204
2347
  #: app/features/mec/meta_boxes/search_form.php:292
2365
  #: app/features/mec/notifications.php:1511
2366
  #: app/features/mec/notifications.php:1628
2367
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2368
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2369
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2370
  #: app/widgets/single.php:122
2371
  msgid "Event Cost"
2372
  msgstr "Tarif de l'événement"
2373
 
2374
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2375
  msgid "Show the minimum price based on tickets"
2376
  msgstr ""
2377
 
2378
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2379
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2380
  #: app/libraries/main.php:646
2381
  msgid "Currency"
2382
  msgstr "Devise"
2383
 
2384
  #: app/features/events.php:1310 app/features/events.php:1315
2385
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2386
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2387
  msgid "Currency Sign"
2388
  msgstr "Symbole de la devise"
2389
 
2390
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2391
  #: app/features/mec/settings.php:600
2392
  msgid "Default value will be \"currency\" if you leave it empty."
2393
  msgstr "Si elle est vide, la valeur par défaut sera utilisée."
2394
 
2395
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2396
  #: app/features/mec/settings.php:607
2397
  msgid "Currency Position"
2398
  msgstr "Position du symbole de devise"
2399
 
2400
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2401
  #: app/features/mec/settings.php:610
2402
  #, fuzzy
2403
  #| msgid "Before $10"
2404
  msgid "$10 (Before)"
2405
  msgstr "Avant €10"
2406
 
2407
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2408
  #: app/features/mec/settings.php:611
2409
  msgid "$ 10 (Before with Space)"
2410
  msgstr ""
2411
 
2412
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2413
  #: app/features/mec/settings.php:612
2414
  #, fuzzy
2415
  #| msgid "After"
2416
  msgid "10$ (After)"
2417
  msgstr "Après X répétitions"
2418
 
2419
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2420
  #: app/features/mec/settings.php:613
2421
  msgid "10 $ (After with Space)"
2422
  msgstr ""
2423
 
2424
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2425
  #: app/features/mec/settings.php:618
2426
  msgid "Thousand Separator"
2427
  msgstr "Séparateur des milliers"
2428
 
2429
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2430
  #: app/features/mec/settings.php:624
2431
  msgid "Decimal Separator"
2432
  msgstr "Séparateur des décimales"
2433
 
2434
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2435
  #: app/features/mec/settings.php:634
2436
  msgid "No decimal"
2437
  msgstr "Pas de décimales"
2455
  msgid "Day 1"
2456
  msgstr ""
2457
 
2458
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2459
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2460
  msgid "Event Links"
2461
  msgstr "Liens de l'évenements"
2462
 
2463
  #: app/features/events.php:1501 app/features/events.php:1509
2464
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2465
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2466
  #: app/libraries/main.php:7649
2467
  msgid "Event Link"
2468
  msgstr "Lien de l'événement"
2469
 
2470
  #: app/features/events.php:1504 app/features/events.php:1522
2471
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2472
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2473
  msgid "eg. http://yoursite.com/your-event"
2474
  msgstr "eg. http://yoursite.com/your-event"
2475
 
2488
  msgid "URL Shortener"
2489
  msgstr ""
2490
 
2491
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2492
+ #: app/features/occurrences.php:530
2493
  msgid "More Information"
2494
  msgstr "Plus d'Informations"
2495
 
2496
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2497
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2498
  #: app/features/popup/shortcode.php:481
2499
  msgid "Current Window"
2500
  msgstr "Ouvrir dans l'onglet actuel"
2501
 
2502
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2503
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2504
  #: app/features/popup/shortcode.php:485
2505
  msgid "New Window"
2506
  msgstr "Ouvrir dans un nouvel onglet"
2507
 
2508
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2509
  msgid ""
2510
  "If you fill it, it will be shown in event details page as an optional link. "
2511
  "Insert full link including http(s)://"
2877
  msgstr "Billets"
2878
 
2879
  #: app/features/events.php:1944 app/features/events.php:2211
2880
+ #: app/features/events.php:4182 app/features/fes.php:280
2881
  #: app/features/labels.php:183 app/features/locations.php:266
2882
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2883
  msgid "ID"
2884
  msgstr "ID"
2885
 
2888
  msgstr "Nom du billet"
2889
 
2890
  #: app/features/events.php:1956 app/features/events.php:2219
2891
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2892
  msgid "Start Time"
2893
  msgstr "Début"
2894
 
2895
  #: app/features/events.php:1970 app/features/events.php:2233
2896
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2897
  msgid "End Time"
2898
  msgstr "Fin"
2899
 
2915
  #: app/features/events.php:2007 app/features/events.php:2011
2916
  #: app/features/events.php:2109 app/features/events.php:2136
2917
  #: app/features/events.php:2265 app/features/events.php:2268
2918
+ #: app/features/events.php:2349 app/features/events.php:4743
2919
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2920
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2921
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3075
  msgid "Fixed Fields"
3076
  msgstr "Champ obligatoire"
3077
 
3078
+ #: app/features/events.php:2887 app/features/events.php:4737
3079
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3080
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3081
  msgid "Attendees"
3107
  msgstr "Evénements éxpirés"
3108
 
3109
  #: app/features/events.php:3757 app/features/mec.php:1374
3110
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3111
  msgid "Upcoming Events"
3112
  msgstr "Prochains évenements"
3113
 
3166
  msgstr "Exporter en JSON"
3167
 
3168
  #: app/features/events.php:4068 app/features/events.php:4069
3169
+ #: app/features/events.php:4295
3170
  msgid "Duplicate"
3171
  msgstr "Dupliquer"
3172
 
3173
+ #: app/features/events.php:4189
3174
  msgid "Link"
3175
  msgstr "Lien"
3176
 
3177
+ #: app/features/events.php:4191 app/features/locations.php:111
3178
  #: app/features/locations.php:181 app/features/locations.php:268
3179
  #: app/features/mec/meta_boxes/search_form.php:108
3180
  #: app/features/mec/meta_boxes/search_form.php:196
3192
  msgid "Address"
3193
  msgstr "Adresse"
3194
 
3195
+ #: app/features/events.php:4193
3196
  #, php-format
3197
  msgid "%s Tel"
3198
  msgstr "%s Téléphone"
3199
 
3200
+ #: app/features/events.php:4194
3201
  #, php-format
3202
  msgid "%s Email"
3203
  msgstr "%s mail"
3204
 
3205
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3206
  #: app/features/mec/settings.php:876
3207
  msgid "Featured Image"
3208
  msgstr "Image Principale"
3209
 
3210
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3211
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3212
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3213
  msgid "Tags"
3214
  msgstr "Étiquettes"
3215
 
3216
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3217
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3218
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3219
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3220
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3221
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3222
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3224
  msgid "Speakers"
3225
  msgstr "Orateurs"
3226
 
3227
+ #: app/features/events.php:4448 app/features/fes.php:280
3228
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3229
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3230
  #: app/libraries/main.php:7592
3231
  msgid "Ticket"
3232
  msgstr "Billets"
3233
 
3234
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3235
  msgid "Variations"
3236
  msgstr "Vérifications"
3237
 
3238
+ #: app/features/events.php:4466 app/features/fes.php:356
3239
  msgid "Unknown"
3240
  msgstr "Inconnu"
3241
 
3242
+ #: app/features/events.php:4494
3243
  msgid ""
3244
  "If you want to send an email, first select your attendees and then click in "
3245
  "the button below, please."
3246
  msgstr ""
3247
 
3248
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3249
  msgid "Send Email"
3250
  msgstr "Envoyer le mail"
3251
 
3252
+ #: app/features/events.php:4498
3253
  msgid "No Attendees Found!"
3254
  msgstr "Aucune réservation trouvée!"
3255
 
3256
+ #: app/features/events.php:4800
3257
  #, fuzzy
3258
  #| msgid "No bookings found!"
3259
  msgid "No Bookings Found!"
3391
  msgid "The event published."
3392
  msgstr "Événement Publié."
3393
 
3394
+ #: app/features/fes/form.php:180
3395
  msgid "Go back to events list"
3396
  msgstr "Retourner à la liste des évènements."
3397
 
3398
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3399
  #: app/features/mec/settings.php:1171
3400
  msgid "Excerpt"
3401
  msgstr ""
3402
 
3403
+ #: app/features/fes/form.php:273
3404
  #, fuzzy
3405
  #| msgid "On Event Start"
3406
  msgid "Optional Event Excerpt"
3407
  msgstr "Au début de l'événement"
3408
 
3409
+ #: app/features/fes/form.php:280
3410
  msgid ""
3411
  "This event is imported from Google calendar so if you modify it would "
3412
  "overwrite in the next import from Google."
3413
  msgstr ""
3414
 
3415
+ #: app/features/fes/form.php:409
3416
  #: app/features/mec/meta_boxes/display_options.php:1494
3417
  #: app/libraries/main.php:476
3418
  msgid "Monday"
3419
  msgstr "Lundi"
3420
 
3421
+ #: app/features/fes/form.php:410
3422
  #: app/features/mec/meta_boxes/display_options.php:1495
3423
  #: app/libraries/main.php:476
3424
  msgid "Tuesday"
3425
  msgstr "Mardi"
3426
 
3427
+ #: app/features/fes/form.php:411
3428
  #: app/features/mec/meta_boxes/display_options.php:1496
3429
  #: app/libraries/main.php:476
3430
  msgid "Wednesday"
3431
  msgstr "Mercredi"
3432
 
3433
+ #: app/features/fes/form.php:412
3434
  #: app/features/mec/meta_boxes/display_options.php:1497
3435
  #: app/libraries/main.php:476
3436
  msgid "Thursday"
3437
  msgstr "Jeudi"
3438
 
3439
+ #: app/features/fes/form.php:413
3440
  #: app/features/mec/meta_boxes/display_options.php:1498
3441
  #: app/libraries/main.php:476
3442
  msgid "Friday"
3443
  msgstr "Vendredi"
3444
 
3445
+ #: app/features/fes/form.php:414
3446
  #: app/features/mec/meta_boxes/display_options.php:1499
3447
  #: app/libraries/main.php:476
3448
  msgid "Saturday"
3449
  msgstr "Samedi"
3450
 
3451
+ #: app/features/fes/form.php:415
3452
  #: app/features/mec/meta_boxes/display_options.php:1493
3453
  #: app/libraries/main.php:476
3454
  msgid "Sunday"
3455
  msgstr "Dimanche"
3456
 
3457
+ #: app/features/fes/form.php:768
3458
  msgid ""
3459
  "The event will finish after certain repeats. For example if you set it to "
3460
  "10, the event will finish after 10 repeats."
3463
  "exemple, si vous le réglez à 10, l'événement se terminera après 10 "
3464
  "répétitions."
3465
 
3466
+ #: app/features/fes/form.php:792
3467
  msgid "Note to reviewer"
3468
  msgstr "Note à l'Administrateur"
3469
 
3470
+ #: app/features/fes/form.php:810
3471
  msgid "User Data"
3472
  msgstr "Vos coordonnées"
3473
 
3474
+ #: app/features/fes/form.php:813
3475
  msgid "eg. yourname@gmail.com"
3476
  msgstr "votre@email.fr"
3477
 
3478
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3479
+ #: app/features/popup/event.php:190
3480
  msgid "eg. John Smith"
3481
  msgstr "ex : Surnom"
3482
 
3483
+ #: app/features/fes/form.php:835
3484
  #, fuzzy
3485
  #| msgid ""
3486
  #| "If you fill it, it will be replaced instead of default event page link. "
3490
  "link including http(s)://"
3491
  msgstr "Lien principal. Affiché sur la page de l'événement"
3492
 
3493
+ #: app/features/fes/form.php:958
3494
  msgid "Remove Image"
3495
  msgstr "Supprimer l'image"
3496
 
3497
+ #: app/features/fes/form.php:1048
3498
  msgid "Insert your desired tags, comma separated."
3499
  msgstr "Insérez les étiquettes souhaitées séparés par des virgules."
3500
 
3501
+ #: app/features/fes/form.php:1070
3502
  msgid "Speakers Names"
3503
  msgstr "Option d’orateur"
3504
 
3505
+ #: app/features/fes/form.php:1071
3506
  msgid "Separate names with commas: Justin, Chris"
3507
  msgstr ""
3508
 
3509
+ #: app/features/fes/form.php:1116
3510
  #, fuzzy, php-format
3511
  #| msgid "Please %s/%s in order to submit new events."
3512
  msgid "I accept the %s in order to submit an event."
3513
  msgstr "Merci de %s/%s pour soumettre une date."
3514
 
3515
+ #: app/features/fes/form.php:1116
3516
  msgid "Privacy Policy"
3517
  msgstr ""
3518
 
3519
+ #: app/features/fes/form.php:1118
3520
  #, fuzzy
3521
  #| msgid "Please %s/%s in order to submit new events."
3522
  msgid "I accept the Privacy Policy in order to submit an event."
3523
  msgstr "Merci de %s/%s pour soumettre une date."
3524
 
3525
+ #: app/features/fes/form.php:1124
3526
  #, fuzzy
3527
  #| msgid "Edit Events"
3528
  msgid "Submit Event"
3603
  msgid "The events are imported successfully!"
3604
  msgstr ""
3605
 
3606
+ #: app/features/ix.php:1342
3607
  msgid "Third Party plugin is not installed and activated!"
3608
  msgstr ""
3609
 
3610
+ #: app/features/ix.php:1366
3611
  msgid "Third Party plugin is invalid!"
3612
  msgstr ""
3613
 
3614
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3615
  #, fuzzy
3616
  #| msgid "Both of API key and Calendar ID are required!"
3617
  msgid "API key and Calendar ID are required!"
3618
  msgstr "La clé API et le Calendar ID sont requis !"
3619
 
3620
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3621
  #, fuzzy
3622
  #| msgid "Please select some events to import!"
3623
  msgid "Please select events to import!"
3624
  msgstr "Merci de sélectionner les évènements à Importer !"
3625
 
3626
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3627
  #, fuzzy
3628
  #| msgid "Both of API key and Calendar ID are required!"
3629
  msgid "API key and Group URL are required!"
3630
  msgstr "La clé API et le Calendar ID sont requis !"
3631
 
3632
+ #: app/features/ix.php:4137
3633
  msgid "Check at Meetup"
3634
  msgstr ""
3635
 
3636
+ #: app/features/ix.php:4303
3637
  #, fuzzy
3638
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3639
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3640
  msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
3641
 
3642
+ #: app/features/ix.php:4326
3643
  #, fuzzy, php-format
3644
  #| msgid "All seems good! Please click %s for authenticating your app."
3645
  msgid "All seems good! Please click %s to authenticate your app."
3646
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
3647
 
3648
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3649
  #: app/features/mec/settings.php:1496
3650
  msgid "here"
3651
  msgstr ""
3652
 
3653
+ #: app/features/ix.php:4381
3654
  #, fuzzy
3655
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3656
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3657
  msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
3658
 
3659
+ #: app/features/ix.php:4543
3660
  #, fuzzy, php-format
3661
  #| msgid "%s events added to Google Calendar successfully."
3662
  msgid "%s events added to Google Calendar with success."
3663
  msgstr "%s évènements ajoutés à Google Agenda avec succès."
3664
 
3665
+ #: app/features/ix.php:4544
3666
  #, fuzzy, php-format
3667
  #| msgid "%s previously added events get updated."
3668
  msgid "%s Updated previously added events."
3669
  msgstr "%s évènements précédemment ajoutés ont été mis à jour."
3670
 
3671
+ #: app/features/ix.php:4545
3672
  #, php-format
3673
  msgid "%s events failed to add for following reasons: %s"
3674
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
3675
 
3676
+ #: app/features/ix.php:4577
3677
  msgid "Please insert your Facebook page's link."
3678
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
3679
 
3680
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3681
  #, fuzzy
3682
  #| msgid ""
3683
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3689
  "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
3690
  "une adresse Facebook Page valide."
3691
 
3692
+ #: app/features/ix.php:4625
3693
  msgid "Please insert your facebook page's link."
3694
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
3695
 
3901
  msgid "Add to Google Calendar"
3902
  msgstr "Ajouter à Google Agenda"
3903
 
3904
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3905
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3906
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3907
  #: app/features/mec/single.php:604
4015
  msgid "Import all of your Facebook events into MEC."
4016
  msgstr "Importer tous vos évènements Facebook dans l'extension M.E.C. ."
4017
 
4018
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4019
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4020
  msgid "Documentation"
4021
  msgstr "Documentation"
4340
  msgstr ""
4341
 
4342
  #: app/features/labels.php:79 app/features/locations.php:77
4343
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4344
  #: app/features/tag.php:77
4345
  #, fuzzy, php-format
4346
  #| msgid "← Back to Coupons"
4348
  msgstr "← Retour aux coupons"
4349
 
4350
  #: app/features/labels.php:80 app/features/locations.php:78
4351
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4352
  #: app/features/tag.php:78
4353
  #, fuzzy, php-format
4354
  #| msgid "No events found!"
4392
  msgstr ""
4393
 
4394
  #: app/features/labels.php:186 app/features/locations.php:269
4395
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4396
  #: app/modules/booking/steps/tickets.php:172
4397
  msgid "Count"
4398
  msgstr "Apparition"
4408
  msgstr "%s événement"
4409
 
4410
  #: app/features/locations.php:59 app/features/mec.php:526
4411
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4412
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4413
  #: app/libraries/main.php:7623
4414
  msgid "Locations"
4419
  msgstr "Entrez l'adresse du Lieu"
4420
 
4421
  #: app/features/locations.php:131 app/features/locations.php:197
4422
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4423
  msgid "Latitude"
4424
  msgstr "Latitude"
4425
 
4430
  msgstr "Geo latitude (Facultatif)"
4431
 
4432
  #: app/features/locations.php:139 app/features/locations.php:201
4433
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4434
  msgid "Longitude"
4435
  msgstr "Longitude"
4436
 
4455
 
4456
  #: app/features/locations.php:156 app/features/locations.php:210
4457
  #: app/features/organizers.php:128 app/features/organizers.php:161
4458
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4459
  msgid "Thumbnail"
4460
  msgstr "Miniature"
4461
 
4462
  #: app/features/locations.php:329 app/features/occurrences.php:460
4463
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4464
  #, php-format
4465
  msgid "Event Main %s"
4466
  msgstr "Événement principal %s"
4467
 
4468
  #: app/features/locations.php:332 app/features/occurrences.php:464
4469
+ #: app/features/popup/event.php:121
4470
  msgid "Hide location"
4471
  msgstr "Cacher le lieu"
4472
 
4473
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4474
  msgid "Insert a new location"
4475
  msgstr "Ajouter un nouveau lieu"
4476
 
4478
  msgid "Choose one of saved locations or insert new one below."
4479
  msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
4480
 
4481
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4482
  msgid "Location Name"
4483
  msgstr "Nom du Lieu"
4484
 
4485
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4486
  msgid "eg. City Hall"
4487
  msgstr "Ex : La Source"
4488
 
4489
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4490
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4491
  msgid "Event Location"
4492
  msgstr "Lieu de l'événement"
4493
 
4494
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4495
  msgid "eg. City hall, Manhattan, New York"
4496
  msgstr "Ex : Grenoble (38)"
4497
 
4498
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4499
  msgid "Latitude/Longitude"
4500
  msgstr "Latitude/Longitude"
4501
 
4502
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4503
  msgid ""
4504
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4505
  "to convert the location address to geopoint, Latitude and Longitude are the "
4508
  "the location on the map to find lat long coordinates."
4509
  msgstr ""
4510
 
4511
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4512
  msgid "Get Latitude and Longitude"
4513
  msgstr ""
4514
 
4515
  #: app/features/locations.php:392 app/features/organizers.php:315
4516
+ #: app/features/popup/event.php:209
4517
  msgid "Choose image"
4518
  msgstr "Choisir une image"
4519
 
4520
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4521
+ #: app/features/popup/event.php:140
4522
  msgid "Don't show map in single event page"
4523
  msgstr "Ne pas afficher de carte pour cet événement"
4524
 
4525
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4526
  #: app/libraries/main.php:7654
4527
  msgid "Other Locations"
4528
  msgstr "Autres lieux"
4529
 
4530
+ #: app/features/locations.php:413
4531
  msgid ""
4532
  "You can select extra locations in addition to main location if you like."
4533
  msgstr ""
4605
  msgid "Support"
4606
  msgstr "Aide"
4607
 
4608
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4609
  #: app/features/mec/meta_boxes/filter.php:71
4610
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4611
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4613
  msgstr "Organisateurs"
4614
 
4615
  #: app/features/mec.php:536 app/features/mec.php:596
4616
+ #: app/features/mec/dashboard.php:218
4617
  msgid "Shortcodes"
4618
  msgstr "Shortcodes"
4619
 
4828
  msgstr ""
4829
 
4830
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4831
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4832
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4833
  msgid "Version"
4834
  msgstr "Version"
4852
  msgstr "Recherche…"
4853
 
4854
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4855
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4856
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4857
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4858
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4859
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4860
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5441
  msgid "It applies only to the orders that are related to MEC."
5442
  msgstr "Cela s'applique uniquement aux commandes liées a l'extension M.E.C."
5443
 
5444
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5445
  msgid "After Add to Cart"
5446
  msgstr ""
5447
 
5448
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5449
  #, fuzzy
5450
  #| msgid "Redirection Page"
5451
  msgid "Redirect to Cart"
5452
  msgstr "Redirection"
5453
 
5454
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5455
  #, fuzzy
5456
  #| msgid "Redirection Page"
5457
  msgid "Redirect to Checkout"
5458
  msgstr "Redirection"
5459
 
5460
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5461
  #, fuzzy
5462
  #| msgid "View Detail Button"
5463
  msgid "Optional View Cart Button"
5464
  msgstr "Afficher le boutons de détail"
5465
 
5466
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5467
  msgid "Optional Checkout Button"
5468
  msgstr ""
5469
 
5519
  "(Stripe) got canceled."
5520
  msgstr ""
5521
 
5522
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5523
+ #, fuzzy
5524
+ #| msgid "MEC - Report"
5525
+ msgid "MEC Cart"
5526
+ msgstr "MEC - Rapports"
5527
+
5528
+ #: app/features/mec/booking.php:1118
5529
  msgid "Use MEC Cart System"
5530
  msgstr ""
5531
 
5532
+ #: app/features/mec/booking.php:1120
5533
  msgid ""
5534
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5535
  "adding a simple cart and checkout system to your website."
5536
  msgstr ""
5537
 
5538
+ #: app/features/mec/booking.php:1122
5539
  msgid "You cannot use following MEC features while using MEC Cart."
5540
  msgstr ""
5541
 
5542
+ #: app/features/mec/booking.php:1124
5543
  #, fuzzy
5544
  #| msgid "Set Up a Payment Gateway"
5545
  msgid "WooCommerce as Payment Gateway"
5546
  msgstr "Passerelle de paiement"
5547
 
5548
+ #: app/features/mec/booking.php:1125
5549
  #, fuzzy
5550
  #| msgid "Next Occurrence of Other Events"
5551
  msgid "Currency Per Event"
5552
  msgstr "Prochaine Occurrence de l'événement à venir"
5553
 
5554
+ #: app/features/mec/booking.php:1126
5555
  #, fuzzy
5556
  #| msgid "Payment Gateways"
5557
  msgid "Disable Gateways Per Event"
5558
  msgstr "Passerelle de paiement"
5559
 
5560
+ #: app/features/mec/booking.php:1127
5561
  #, fuzzy
5562
  #| msgid "Stripe Connect"
5563
  msgid "Stripe Connect Gateway"
5564
  msgstr "Stripe Connect"
5565
 
5566
+ #: app/features/mec/booking.php:1128
5567
  #, fuzzy
5568
  #| msgid "Pay by WooCommerce"
5569
  msgid "Pay By WooCommerce Gateway"
5570
  msgstr "Payer via WooCommerce"
5571
 
5572
+ #: app/features/mec/booking.php:1129
5573
  #, fuzzy
5574
  #| msgid "Enable Organizer Payment Module"
5575
  msgid "Organizer Payment Module"
5576
  msgstr "Activer module de coupons"
5577
 
5578
+ #: app/features/mec/booking.php:1133
5579
  #, fuzzy
5580
  #| msgid "Start Date"
5581
  msgid "Cart Page"
5582
  msgstr "Date de début"
5583
 
5584
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5585
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5586
  #, php-format
5587
  msgid "Put %s shortcode into the page."
5588
  msgstr "Mettez %s le shortcode de dans la page."
5589
 
5590
+ #: app/features/mec/booking.php:1145
5591
  #, fuzzy
5592
  #| msgid "Checkout"
5593
  msgid "Checkout Page"
5594
  msgstr "Commander"
5595
 
5596
+ #: app/features/mec/booking.php:1171
5597
  #, fuzzy
5598
  #| msgid "Enable Invoice"
5599
  msgid "Enable Cart Invoice"
5600
  msgstr "Activer les factures"
5601
 
5602
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5603
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5604
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5605
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5607
  msgid "Saved"
5608
  msgstr "Sauvegardé"
5609
 
5610
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5611
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5612
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5613
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5615
  msgid "Settings Saved!"
5616
  msgstr ""
5617
 
5618
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5619
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5620
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5621
  msgid "Please Refresh Page"
5634
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5635
  msgstr "Calendrier des événements"
5636
 
5637
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5638
  #, php-format
5639
  msgid ""
5640
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5642
  "Spots, etc you should upgrade to the Pro version."
5643
  msgstr ""
5644
 
5645
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5646
  msgid "lite"
5647
  msgstr ""
5648
 
5649
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5650
  #: app/features/mec/support.php:126
5651
  msgid "GO PREMIUM"
5652
  msgstr ""
5653
 
5654
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5655
  #, fuzzy
5656
  #| msgid "Modern Events Calendar"
5657
  msgid "Getting started with Modern Events Calendar"
5658
  msgstr "Modern Events Calendar"
5659
 
5660
+ #: app/features/mec/dashboard.php:113
5661
  msgid ""
5662
  "In this short video, you can learn how to make an event and put a calendar "
5663
  "on your website. Please watch this 2 minutes video to the end."
5664
  msgstr ""
5665
 
5666
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5667
  #, fuzzy
5668
  #| msgid "MEC Activation"
5669
  msgid "License Activation"
5670
  msgstr "Activation de l'extension"
5671
 
5672
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5673
  #, fuzzy
5674
  #| msgid "MEC Activation"
5675
  msgid "Activate Addons"
5676
  msgstr "Activation de l'extension"
5677
 
5678
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5679
  msgid "You cannot access this section."
5680
  msgstr ""
5681
 
5682
+ #: app/features/mec/dashboard.php:159
5683
  msgid ""
5684
  "In order to use all plugin features and options, please enter your purchase "
5685
  "code."
5686
  msgstr ""
5687
 
5688
+ #: app/features/mec/dashboard.php:267
5689
  msgid "Popular Gateways"
5690
  msgstr "Passerelle populaire"
5691
 
5692
+ #: app/features/mec/dashboard.php:325
5693
  msgid "Change Log"
5694
  msgstr "Journal des modifications"
5695
 
7257
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7258
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7259
  #: app/features/popup/settings.php:272 app/features/search.php:109
7260
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7261
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7262
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7263
  #: app/modules/speakers/details.php:18
8599
  msgid "Please, insert comma to separate reminder hours."
8600
  msgstr ""
8601
 
8602
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8603
  #: app/libraries/main.php:705
8604
  msgid "New Event"
8605
  msgstr "Nouvel événement"
10849
  msgid "Choose one of saved locations."
10850
  msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
10851
 
10852
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
10853
+ #: app/features/popup/event.php:171
10854
  msgid "Hide organizer"
10855
  msgstr "Ne pas afficher l'organisateur"
10856
 
10857
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
10858
+ #: app/features/popup/event.php:180
10859
  msgid "Choose one of saved organizers or insert new one below."
10860
  msgstr "Choisir un organisateur existant ou en ajouter un nouveau."
10861
 
10868
  msgstr "Ajouter l'email de l'organisateur."
10869
 
10870
  #: app/features/organizers.php:120 app/features/organizers.php:157
10871
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
10872
  msgid "Link to organizer page"
10873
  msgstr "Lien vers la page de l'organisateur"
10874
 
10882
  msgid "Contact info"
10883
  msgstr "Informations de contact"
10884
 
10885
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
10886
  msgid "Insert a new organizer"
10887
  msgstr "Ajouter un nouvel organisateur"
10888
 
10889
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
10890
  msgid "Phone number."
10891
  msgstr "Numéro de téléphone."
10892
 
10893
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
10894
  msgid "eg. +1 (234) 5678"
10895
  msgstr "ex : +33 (0)4 76 36 55 76"
10896
 
10897
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
10898
  msgid "Email address."
10899
  msgstr "Adresse e-mail."
10900
 
10901
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
10902
  msgid "eg. john@smith.com"
10903
  msgstr "ex : votre@surnom.com"
10904
 
10905
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
10906
  msgid "eg. https://webnus.net"
10907
  msgstr "eg. https://webnus.net"
10908
 
10918
  "Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
10919
  "l'organisateur principal si vous le souhaitez."
10920
 
10921
+ #: app/features/popup/event.php:60
10922
  #, fuzzy
10923
  #| msgid "Add Shortcode"
10924
  msgid "Adding an Event..."
10925
  msgstr "Ajouter un Shortcode"
10926
 
10927
+ #: app/features/popup/event.php:68
10928
  #, fuzzy
10929
  #| msgid "Event Note"
10930
  msgid "Event Name"
10931
  msgstr "Note sur l'événement"
10932
 
10933
+ #: app/features/popup/event.php:69
10934
  msgid "Event name is required"
10935
  msgstr ""
10936
 
10937
+ #: app/features/popup/event.php:130
10938
  #, fuzzy
10939
  #| msgid "Choose one of saved locations or insert new one below."
10940
  msgid "Choose one of saved locations or insert new one."
10941
  msgstr "Choisir un lieu dans la liste ou ajouter un nouveau lieu."
10942
 
10943
+ #: app/features/popup/event.php:134
10944
  #, fuzzy
10945
  #| msgid "Add New Location"
10946
  msgid "Add Location"
10947
  msgstr "Ajouter un nouveau Lieu"
10948
 
10949
+ #: app/features/popup/event.php:184
10950
  #, fuzzy
10951
  #| msgid "Add New Organizer"
10952
  msgid "Add Organizer"
10953
  msgstr "Ajouter un nouvel organisateur"
10954
 
10955
+ #: app/features/popup/event.php:224
10956
  #, fuzzy
10957
  #| msgid "Categories"
10958
  msgid "All Categories"
10959
  msgstr "Catégories"
10960
 
10961
+ #: app/features/popup/event.php:225
10962
  msgid "Most Used"
10963
  msgstr ""
10964
 
10965
+ #: app/features/popup/event.php:236
10966
  #, fuzzy
10967
  #| msgid "Add New Label"
10968
  msgid "Add New Category"
10969
  msgstr "Ajouter une étquette"
10970
 
10971
+ #: app/features/popup/event.php:247
10972
  #, fuzzy
10973
  #| msgid "Featured Image"
10974
  msgid "Set Featured Image"
10975
  msgstr "Image Principale"
10976
 
10977
+ #: app/features/popup/event.php:257
10978
  msgid "Your Event Has Been Created."
10979
  msgstr ""
10980
 
10981
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
10982
  #: app/features/popup/shortcode.php:553
10983
  msgid "Prev"
10984
  msgstr ""
10985
 
10986
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
10987
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
10988
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
10989
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11186
  msgid "No search result."
11187
  msgstr ""
11188
 
11189
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11190
+ #: app/features/speakers.php:293
11191
  msgid "Job Title"
11192
  msgstr "Titre de l’emploi"
11193
 
11194
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11195
  msgid "Insert speaker job title."
11196
  msgstr ""
11197
 
11198
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11199
  msgid "Insert speaker phone number."
11200
  msgstr "Ajouter le numéro de téléphone de l'organisateur."
11201
 
11202
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11203
  msgid "Insert speaker email address."
11204
  msgstr "Ajouter l'email de l'organisateur."
11205
 
11206
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11207
  #, fuzzy
11208
  #| msgid "Insert URL of LinkedIn"
11209
  msgid "Insert URL of Website"
11210
  msgstr "Insérer l’url de la page LinkedIn"
11211
 
11212
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11213
  msgid "Facebook Page"
11214
  msgstr "URL Page Facebook"
11215
 
11216
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11217
  msgid "Insert URL of Facebook Page"
11218
  msgstr "Insérer l’url de la page Facebook"
11219
 
11220
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11221
  msgid "Instagram"
11222
  msgstr ""
11223
 
11224
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11225
  msgid "Insert URL of Instagram"
11226
  msgstr "Insérer l’url de la page Instagram"
11227
 
11228
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11229
  msgid "LinkedIn"
11230
  msgstr "Linkedin"
11231
 
11232
+ #: app/features/speakers.php:169
11233
  msgid "Insert URL of LinkedIn"
11234
  msgstr "Insérer l’url de la page LinkedIn"
11235
 
11236
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11237
  msgid "Twitter Page"
11238
  msgstr "Twitter"
11239
 
11240
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11241
  msgid "Insert URL of Twitter Page"
11242
  msgstr "Insérer l’url de la page Twitter"
11243
 
11244
+ #: app/features/speakers.php:228
11245
  msgid "Insert URL of linkedin"
11246
  msgstr "Insérer l’url de la page linkedin"
11247
 
11248
+ #: app/features/speakers.php:353
11249
  msgid "Sorry, You must insert speaker name!"
11250
  msgstr ""
11251
 
11252
+ #: app/features/speakers.php:402
11253
  msgid ""
11254
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11255
  "section and speaker widget section!"
11337
  msgid "Upgrade to Pro Version"
11338
  msgstr ""
11339
 
11340
+ #: app/libraries/factory.php:232
11341
  msgctxt "plugin link"
11342
  msgid "Settings"
11343
  msgstr "Paramètres"
11344
 
11345
+ #: app/libraries/factory.php:237
11346
  msgctxt "plugin link"
11347
  msgid "Upgrade"
11348
  msgstr ""
11349
 
11350
+ #: app/libraries/factory.php:391
11351
  msgid "day"
11352
  msgstr "jour"
11353
 
11354
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11355
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11356
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11357
  msgid "days"
11358
  msgstr "jours"
11359
 
11360
+ #: app/libraries/factory.php:393
11361
  msgid "hour"
11362
  msgstr "heure"
11363
 
11364
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11365
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11366
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11367
  msgid "hours"
11368
  msgstr "heures"
11369
 
11370
+ #: app/libraries/factory.php:395
11371
  msgid "minute"
11372
  msgstr "minute"
11373
 
11374
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11375
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11376
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11377
  msgid "minutes"
11378
  msgstr "minutes"
11379
 
11380
+ #: app/libraries/factory.php:397
11381
  msgid "second"
11382
  msgstr "seconde"
11383
 
11384
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11385
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11386
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11387
  msgid "seconds"
11388
  msgstr "secondes"
11389
 
11390
+ #: app/libraries/factory.php:475
11391
  msgid "MEC Single Sidebar"
11392
  msgstr "Barre latérale M.E.C."
11393
 
11394
+ #: app/libraries/factory.php:476
11395
  msgid "Custom sidebar for single and modal page of MEC."
11396
  msgstr ""
11397
  "Barre latérale personnalisée pour les pages d'événement et les pop-ups "
11398
  "modales de M.E.C. ."
11399
 
11400
+ #: app/libraries/factory.php:1197
11401
  msgid "Notice:"
11402
  msgstr ""
11403
 
11404
+ #: app/libraries/factory.php:1198
11405
  msgid "This update includes only bug fixes."
11406
  msgstr ""
11407
 
11555
  msgid "%s Form"
11556
  msgstr ""
11557
 
 
 
 
 
 
 
11558
  #: app/libraries/main.php:726
11559
  msgid "Only For Bookers"
11560
  msgstr ""
12304
  msgid "End at: %s - %s"
12305
  msgstr ""
12306
 
12307
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12308
  #, fuzzy
12309
  #| msgid "Repeating"
12310
  msgid "Repeating Event"
12786
  msgid "http://webnus.net"
12787
  msgstr ""
12788
 
12789
+ #, fuzzy
12790
+ #~| msgid "Address"
12791
+ #~ msgid "WordPress"
12792
+ #~ msgstr "Adresse"
12793
+
12794
  #, fuzzy
12795
  #~| msgid ""
12796
  #~| "The %s ticket is sold out. You can try another ticket or another date."
languages/modern-events-calendar-lite-hu_HU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:29+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -162,7 +162,7 @@ msgid "Canceled"
162
  msgstr ""
163
 
164
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
165
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
166
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
167
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
168
  #: app/features/mec/notifications.php:1922
@@ -200,14 +200,14 @@ msgstr "Keresztnév"
200
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
201
  #: app/features/autoemails.php:60 app/features/events.php:606
202
  #: app/features/events.php:2650 app/features/events.php:2717
203
- #: app/features/events.php:2806 app/features/events.php:4443
204
- #: app/features/fes.php:280 app/features/fes/form.php:810
205
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
206
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
207
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
208
  #: app/features/organizers.php:112 app/features/organizers.php:153
209
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
210
- #: app/features/speakers.php:205 app/libraries/main.php:653
211
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
212
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
213
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -363,8 +363,8 @@ msgstr "dátum"
363
  #: app/features/events.php:2808 app/features/mec/booking.php:800
364
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
365
  #: app/features/organizers.php:104 app/features/organizers.php:149
366
- #: app/features/speakers.php:120 app/features/speakers.php:201
367
- #: app/features/speakers.php:288 app/libraries/main.php:4252
368
  msgid "Tel"
369
  msgstr ""
370
 
@@ -510,6 +510,11 @@ msgstr ""
510
  msgid "Agreement"
511
  msgstr ""
512
 
 
 
 
 
 
513
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
514
  #, php-format
515
  msgid "Instead of %s, the page title with a link will be show."
@@ -687,8 +692,8 @@ msgstr ""
687
  #: app/features/events.php:1843 app/features/events.php:2014
688
  #: app/features/events.php:2029 app/features/events.php:2271
689
  #: app/features/events.php:2283 app/features/events.php:2476
690
- #: app/features/events.php:2513 app/features/fes/form.php:458
691
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
692
  #: app/features/locations.php:341 app/features/mec/booking.php:113
693
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
694
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -765,9 +770,9 @@ msgstr ""
765
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
766
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
767
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
768
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
769
- #: app/features/organizers.php:289 app/features/popup/event.php:128
770
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
771
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
772
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
773
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -927,8 +932,8 @@ msgstr ""
927
 
928
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
929
  #: app/features/events.php:432 app/features/events.php:1283
930
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
931
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
932
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
933
  #: app/skins/single.php:1126 app/skins/single/default.php:213
934
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1003,7 +1008,7 @@ msgid "How to set label"
1003
  msgstr ""
1004
 
1005
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1006
- #: app/features/events.php:4195 app/features/fes/form.php:998
1007
  #: app/features/labels.php:61 app/features/labels.php:227
1008
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1009
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1037,7 +1042,7 @@ msgid "How to set location"
1037
  msgstr "Esemény ezen a helyszínen"
1038
 
1039
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1040
- #: app/features/events.php:3876 app/features/events.php:4188
1041
  #: app/features/locations.php:58 app/features/locations.php:267
1042
  #: app/features/locations.php:329 app/features/locations.php:331
1043
  #: app/features/locations.php:340
@@ -1057,7 +1062,7 @@ msgstr "Esemény ezen a helyszínen"
1057
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1058
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1059
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1060
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1061
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1062
  #: app/features/search.php:97 app/libraries/main.php:3020
1063
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1071,7 +1076,7 @@ msgstr "helyszín"
1071
 
1072
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1073
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1074
- #: app/features/speakers.php:136 app/features/speakers.php:209
1075
  #: app/skins/single.php:1406 app/skins/single.php:1473
1076
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1077
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1094,7 +1099,7 @@ msgstr ""
1094
 
1095
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1096
  #: app/features/events.php:1519 app/features/events.php:1532
1097
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1098
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1099
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1100
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1141,8 +1146,8 @@ msgstr "Szervező"
1141
 
1142
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1143
  #: app/features/events.php:431 app/features/events.php:3877
1144
- #: app/features/events.php:4190 app/features/events.php:4191
1145
- #: app/features/events.php:4192
1146
  #: app/features/mec/meta_boxes/display_options.php:1660
1147
  #: app/features/mec/meta_boxes/search_form.php:80
1148
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1157,12 +1162,12 @@ msgstr "Szervező"
1157
  #: app/features/mec/meta_boxes/search_form.php:983
1158
  #: app/features/mec/meta_boxes/search_form.php:1070
1159
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1160
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1161
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1162
  #: app/features/organizers.php:58 app/features/organizers.php:208
1163
  #: app/features/organizers.php:277 app/features/organizers.php:279
1164
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1165
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1166
  #: app/features/popup/settings.php:263 app/features/search.php:103
1167
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1168
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1282,8 +1287,8 @@ msgstr "időpont"
1282
  #: app/features/booking/calendar_novel.php:145
1283
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1284
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1285
- #: app/libraries/render.php:554 app/libraries/render.php:758
1286
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1287
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1288
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1289
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1345,7 +1350,7 @@ msgstr "Jelentkezési lap"
1345
 
1346
  #: app/features/autoemails.php:74 app/features/events.php:230
1347
  #: app/features/labels.php:72 app/features/locations.php:70
1348
- #: app/features/organizers.php:70 app/features/speakers.php:72
1349
  #: app/features/tag.php:70
1350
  #, php-format
1351
  msgid "Edit %s"
@@ -1402,7 +1407,7 @@ msgstr ""
1402
  msgid "Go to events page"
1403
  msgstr ""
1404
 
1405
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1406
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1407
  #: app/features/wc.php:91 app/libraries/main.php:3072
1408
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1482,7 +1487,7 @@ msgstr ""
1482
  msgid "Back to Cart"
1483
  msgstr "helyszín"
1484
 
1485
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1486
  #: app/features/mec/settings.php:907
1487
  msgid "Event Color"
1488
  msgstr ""
@@ -1492,8 +1497,8 @@ msgid "Recent Colors"
1492
  msgstr ""
1493
 
1494
  #: app/features/contextual.php:55 app/features/mec.php:546
1495
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1496
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1497
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1498
  #: app/libraries/main.php:738
1499
  msgid "Settings"
@@ -1607,7 +1612,7 @@ msgid "Event Details/Single Event Page"
1607
  msgstr ""
1608
 
1609
  #: app/features/contextual.php:166 app/features/events.php:1298
1610
- #: app/features/fes/form.php:883
1611
  msgid "Currency Options"
1612
  msgstr ""
1613
 
@@ -1697,8 +1702,8 @@ msgid "Public File to Download"
1697
  msgstr ""
1698
 
1699
  #: app/features/dlfile.php:297 app/features/events.php:3874
1700
- #: app/features/events.php:4181 app/features/events.php:4730
1701
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1702
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1703
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1704
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1707,7 +1712,7 @@ msgid "Title"
1707
  msgstr ""
1708
 
1709
  #: app/features/dlfile.php:301 app/features/events.php:1988
1710
- #: app/features/events.php:2248 app/features/events.php:4182
1711
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1712
  #: app/libraries/hourlyschedule.php:152
1713
  msgid "Description"
@@ -1748,7 +1753,7 @@ msgid "Before"
1748
  msgstr ""
1749
 
1750
  #: app/features/emails/details.php:35 app/features/events.php:1223
1751
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1752
  msgid "After"
1753
  msgstr ""
1754
 
@@ -1757,7 +1762,7 @@ msgid "event occurrence."
1757
  msgstr ""
1758
 
1759
  #: app/features/emails/details.php:40 app/features/events.php:192
1760
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1761
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1762
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1763
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1778,11 +1783,11 @@ msgstr ""
1778
  msgid "Add Event"
1779
  msgstr ""
1780
 
1781
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1782
  msgid "Add New Event"
1783
  msgstr ""
1784
 
1785
- #: app/features/events.php:196 app/features/ix.php:4573
1786
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1787
  #: app/skins/map/tpl.php:93
1788
  msgid "No events found!"
@@ -1793,7 +1798,7 @@ msgid "Edit Event"
1793
  msgstr ""
1794
 
1795
  #: app/features/events.php:199 app/features/fes/list.php:100
1796
- #: app/features/popup/event.php:254
1797
  msgid "View Event"
1798
  msgstr ""
1799
 
@@ -1802,7 +1807,7 @@ msgid "No events found in Trash!"
1802
  msgstr ""
1803
 
1804
  #: app/features/events.php:219 app/features/events.php:3831
1805
- #: app/features/events.php:4196 app/features/fes/form.php:972
1806
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1807
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1808
  #: app/libraries/main.php:7619
@@ -1811,49 +1816,49 @@ msgstr ""
1811
 
1812
  #: app/features/events.php:229 app/features/labels.php:71
1813
  #: app/features/locations.php:69 app/features/organizers.php:69
1814
- #: app/features/speakers.php:71 app/features/tag.php:69
1815
  #, php-format
1816
  msgid "All %s"
1817
  msgstr ""
1818
 
1819
  #: app/features/events.php:231 app/features/labels.php:73
1820
  #: app/features/locations.php:71 app/features/organizers.php:71
1821
- #: app/features/speakers.php:73 app/features/tag.php:71
1822
  #, php-format
1823
  msgid "View %s"
1824
  msgstr ""
1825
 
1826
  #: app/features/events.php:232 app/features/labels.php:74
1827
  #: app/features/locations.php:72 app/features/organizers.php:72
1828
- #: app/features/speakers.php:74 app/features/tag.php:72
1829
  #, php-format
1830
  msgid "Update %s"
1831
  msgstr ""
1832
 
1833
  #: app/features/events.php:233 app/features/labels.php:75
1834
  #: app/features/locations.php:73 app/features/organizers.php:73
1835
- #: app/features/speakers.php:75 app/features/tag.php:73
1836
  #, php-format
1837
  msgid "Add New %s"
1838
  msgstr ""
1839
 
1840
  #: app/features/events.php:234 app/features/labels.php:76
1841
  #: app/features/locations.php:74 app/features/organizers.php:74
1842
- #: app/features/speakers.php:76 app/features/tag.php:74
1843
  #, php-format
1844
  msgid "New %s Name"
1845
  msgstr ""
1846
 
1847
  #: app/features/events.php:235 app/features/labels.php:77
1848
  #: app/features/locations.php:75 app/features/organizers.php:75
1849
- #: app/features/speakers.php:77 app/features/tag.php:75
1850
  #, php-format
1851
  msgid "Popular %s"
1852
  msgstr ""
1853
 
1854
  #: app/features/events.php:236 app/features/labels.php:78
1855
  #: app/features/locations.php:76 app/features/organizers.php:76
1856
- #: app/features/speakers.php:78 app/features/tag.php:76
1857
  #, php-format
1858
  msgid "Search %s"
1859
  msgstr ""
@@ -1883,7 +1888,7 @@ msgstr ""
1883
  #: app/features/events.php:278 app/features/events.php:336
1884
  #: app/features/locations.php:161 app/features/locations.php:213
1885
  #: app/features/organizers.php:133 app/features/organizers.php:164
1886
- #: app/features/speakers.php:181 app/features/speakers.php:232
1887
  msgid "Upload/Add image"
1888
  msgstr ""
1889
 
@@ -1892,7 +1897,7 @@ msgstr ""
1892
  #: app/features/locations.php:393 app/features/locations.php:400
1893
  #: app/features/organizers.php:134 app/features/organizers.php:165
1894
  #: app/features/organizers.php:316 app/features/organizers.php:323
1895
- #: app/features/speakers.php:182 app/features/speakers.php:233
1896
  msgid "Remove image"
1897
  msgstr ""
1898
 
@@ -1908,7 +1913,7 @@ msgstr ""
1908
  msgid "Date And Time"
1909
  msgstr ""
1910
 
1911
- #: app/features/events.php:425 app/features/fes/form.php:384
1912
  msgid "Event Repeating"
1913
  msgstr ""
1914
 
@@ -1951,10 +1956,10 @@ msgid "Guest Data"
1951
  msgstr ""
1952
 
1953
  #: app/features/events.php:605 app/features/events.php:2641
1954
- #: app/features/events.php:4440 app/features/fes.php:280
1955
- #: app/features/fes/form.php:814 app/features/labels.php:184
1956
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
1957
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
1958
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
1959
  msgid "Name"
1960
  msgstr "Név"
@@ -1965,13 +1970,13 @@ msgid ""
1965
  "overwrite in the next import from Google."
1966
  msgstr ""
1967
 
1968
- #: app/features/events.php:619 app/features/fes/form.php:282
1969
  msgid "Date and Time"
1970
  msgstr ""
1971
 
1972
  #: app/features/events.php:622 app/features/events.php:626
1973
- #: app/features/events.php:3878 app/features/events.php:4183
1974
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
1975
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
1976
  #: app/features/mec/meta_boxes/display_options.php:57
1977
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -1989,13 +1994,13 @@ msgstr ""
1989
  #: app/features/mec/meta_boxes/display_options.php:2347
1990
  #: app/features/mec/meta_boxes/display_options.php:2478
1991
  #: app/features/mec/meta_boxes/display_options.php:2584
1992
- #: app/features/popup/event.php:77
1993
  msgid "Start Date"
1994
  msgstr ""
1995
 
1996
  #: app/features/events.php:642 app/features/events.php:646
1997
- #: app/features/events.php:3879 app/features/events.php:4185
1998
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
1999
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2000
  #: app/features/mec/meta_boxes/display_options.php:73
2001
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2004,35 +2009,35 @@ msgstr ""
2004
  #: app/features/mec/meta_boxes/display_options.php:788
2005
  #: app/features/mec/meta_boxes/display_options.php:1618
2006
  #: app/features/mec/meta_boxes/display_options.php:2363
2007
- #: app/features/popup/event.php:94
2008
  msgid "End Date"
2009
  msgstr ""
2010
 
2011
- #: app/features/events.php:669 app/features/fes/form.php:324
2012
- #: app/features/popup/event.php:111
2013
  msgid "All-day Event"
2014
  msgstr ""
2015
 
2016
- #: app/features/events.php:679 app/features/fes/form.php:327
2017
  msgid "Hide Event Time"
2018
  msgstr ""
2019
 
2020
- #: app/features/events.php:689 app/features/fes/form.php:330
2021
  msgid "Hide Event End Time"
2022
  msgstr ""
2023
 
2024
  #: app/features/events.php:694 app/features/events.php:698
2025
- #: app/features/fes/form.php:334
2026
  msgid "Notes on the time"
2027
  msgstr ""
2028
 
2029
- #: app/features/events.php:699 app/features/fes/form.php:335
2030
  msgid ""
2031
  "It shows next to event time on the Single Event Page. You can enter notes "
2032
  "such as timezone in this field."
2033
  msgstr ""
2034
 
2035
- #: app/features/events.php:711 app/features/fes/form.php:342
2036
  #, fuzzy
2037
  #| msgid "Time"
2038
  msgid "Timezone"
@@ -2043,51 +2048,51 @@ msgstr "időpont"
2043
  #: app/features/events.php:1793 app/features/events.php:1813
2044
  #: app/features/events.php:1868 app/features/events.php:2438
2045
  #: app/features/events.php:2561 app/features/events.php:2672
2046
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2047
  msgid "Inherit from global options"
2048
  msgstr ""
2049
 
2050
  #: app/features/events.php:725 app/features/events.php:728
2051
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2052
  #: app/features/mec/settings.php:858
2053
  msgid "Countdown Method"
2054
  msgstr ""
2055
 
2056
- #: app/features/events.php:730 app/features/fes/form.php:361
2057
  #, fuzzy
2058
  #| msgid "Name"
2059
  msgid "Count to Event Start"
2060
  msgstr "Név"
2061
 
2062
- #: app/features/events.php:731 app/features/fes/form.php:362
2063
  msgid "Count to Event End"
2064
  msgstr ""
2065
 
2066
- #: app/features/events.php:737 app/features/fes/form.php:369
2067
  #: app/modules/weather/darksky.php:57
2068
  msgid "Visibility"
2069
  msgstr ""
2070
 
2071
- #: app/features/events.php:740 app/features/fes/form.php:372
2072
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2073
  #, fuzzy
2074
  #| msgid "Event at this location"
2075
  msgid "Event Visibility"
2076
  msgstr "Esemény ezen a helyszínen"
2077
 
2078
- #: app/features/events.php:741 app/features/fes/form.php:373
2079
  #, fuzzy
2080
  #| msgid "Bookings"
2081
  msgid "Show on Shortcodes"
2082
  msgstr "Foglalások"
2083
 
2084
- #: app/features/events.php:742 app/features/fes/form.php:374
2085
  #, fuzzy
2086
  #| msgid "Bookings"
2087
  msgid "Hide on Shortcodes"
2088
  msgstr "Foglalások"
2089
 
2090
- #: app/features/events.php:749 app/features/fes/form.php:382
2091
  msgid "Repeating"
2092
  msgstr ""
2093
 
@@ -2095,63 +2100,68 @@ msgstr ""
2095
  msgid "Event Repeating (Recurring events)"
2096
  msgstr ""
2097
 
2098
- #: app/features/events.php:762 app/features/fes/form.php:388
2099
  msgid "Repeats"
2100
  msgstr ""
2101
 
2102
- #: app/features/events.php:770 app/features/fes/form.php:390
2103
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2104
  #: app/skins/full_calendar/tpl.php:140
2105
  msgid "Daily"
2106
  msgstr ""
2107
 
2108
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2109
  msgid "Every Weekday"
2110
  msgstr ""
2111
 
2112
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2113
  msgid "Every Weekend"
2114
  msgstr ""
2115
 
2116
- #: app/features/events.php:791 app/features/fes/form.php:393
2117
  msgid "Certain Weekdays"
2118
  msgstr ""
2119
 
2120
- #: app/features/events.php:798 app/features/fes/form.php:394
2121
- #: app/skins/default_full_calendar/tpl.php:78
2122
  #: app/skins/full_calendar/tpl.php:139
2123
  msgid "Weekly"
2124
  msgstr ""
2125
 
2126
- #: app/features/events.php:805 app/features/fes/form.php:395
2127
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2128
  #: app/skins/full_calendar/tpl.php:138
2129
  msgid "Monthly"
2130
  msgstr ""
2131
 
2132
- #: app/features/events.php:812 app/features/fes/form.php:396
2133
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2134
  #: app/skins/full_calendar/tpl.php:137
2135
  msgid "Yearly"
2136
  msgstr ""
2137
 
2138
- #: app/features/events.php:819 app/features/fes/form.php:397
2139
  msgid "Custom Days"
2140
  msgstr ""
2141
 
2142
- #: app/features/events.php:826 app/features/fes/form.php:398
2143
  msgid "Advanced"
2144
  msgstr ""
2145
 
2146
- #: app/features/events.php:831 app/features/fes/form.php:402
2147
  msgid "Repeat Interval"
2148
  msgstr ""
2149
 
2150
- #: app/features/events.php:833 app/features/fes/form.php:403
2151
  msgid "Repeat interval"
2152
  msgstr ""
2153
 
2154
- #: app/features/events.php:837 app/features/fes/form.php:406
2155
  msgid "Week Days"
2156
  msgstr ""
2157
 
@@ -2163,7 +2173,7 @@ msgstr ""
2163
 
2164
  #: app/features/events.php:860 app/features/events.php:2101
2165
  #: app/features/events.php:2129 app/features/events.php:2343
2166
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2167
  #: app/features/ix/import_g_calendar.php:51
2168
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2169
  #: app/libraries/skins.php:1389
@@ -2174,17 +2184,17 @@ msgstr ""
2174
  #: app/features/events.php:2085 app/features/events.php:2167
2175
  #: app/features/events.php:2332 app/features/events.php:2376
2176
  #: app/features/events.php:2449 app/features/events.php:2566
2177
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2178
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2179
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2180
  msgid "Add"
2181
  msgstr ""
2182
 
2183
- #: app/features/events.php:877 app/features/fes/form.php:454
2184
  msgid "Custom Days Repeating"
2185
  msgstr ""
2186
 
2187
- #: app/features/events.php:880 app/features/fes/form.php:457
2188
  msgid ""
2189
  "Add certain days to event occurrence dates. If you have a single day event, "
2190
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2193,50 +2203,50 @@ msgstr ""
2193
 
2194
  #: app/features/events.php:891 app/features/events.php:2105
2195
  #: app/features/events.php:2133 app/features/events.php:2347
2196
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2197
  msgid "End"
2198
  msgstr ""
2199
 
2200
- #: app/features/events.php:968 app/features/fes/form.php:530
2201
  #, fuzzy
2202
  #| msgid "First name"
2203
  msgid "First"
2204
  msgstr "Keresztnév"
2205
 
2206
- #: app/features/events.php:1010 app/features/fes/form.php:572
2207
  #, fuzzy
2208
  #| msgid "seconds"
2209
  msgid "Second"
2210
  msgstr "másodperc"
2211
 
2212
- #: app/features/events.php:1052 app/features/fes/form.php:614
2213
  msgid "Third"
2214
  msgstr ""
2215
 
2216
- #: app/features/events.php:1094 app/features/fes/form.php:656
2217
  msgid "Fourth"
2218
  msgstr ""
2219
 
2220
- #: app/features/events.php:1136 app/features/fes/form.php:698
2221
  #, fuzzy
2222
  #| msgid "Last name"
2223
  msgid "Last"
2224
  msgstr "Vezetéknév"
2225
 
2226
- #: app/features/events.php:1183 app/features/fes/form.php:744
2227
  msgid "Ends Repeat"
2228
  msgstr ""
2229
 
2230
- #: app/features/events.php:1195 app/features/fes/form.php:748
2231
  msgid "Never"
2232
  msgstr ""
2233
 
2234
- #: app/features/events.php:1207 app/features/fes/form.php:753
2235
  msgid "On"
2236
  msgstr ""
2237
 
2238
  #: app/features/events.php:1227 app/features/events.php:1231
2239
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2240
  msgid "Occurrences times"
2241
  msgstr ""
2242
 
@@ -2246,12 +2256,12 @@ msgid ""
2246
  "10, the event will finish after 10 occurrences."
2247
  msgstr ""
2248
 
2249
- #: app/features/events.php:1248 app/features/fes/form.php:779
2250
  msgid "Show only one occurrence of this event"
2251
  msgstr ""
2252
 
2253
- #: app/features/events.php:1277 app/features/events.php:4193
2254
- #: app/features/fes/form.php:865
2255
  #: app/features/mec/meta_boxes/search_form.php:116
2256
  #: app/features/mec/meta_boxes/search_form.php:204
2257
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2275,69 +2285,69 @@ msgstr ""
2275
  #: app/features/mec/notifications.php:1511
2276
  #: app/features/mec/notifications.php:1628
2277
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2278
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2279
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2280
  #: app/widgets/single.php:122
2281
  msgid "Event Cost"
2282
  msgstr ""
2283
 
2284
- #: app/features/events.php:1292 app/features/fes/form.php:877
2285
  msgid "Show the minimum price based on tickets"
2286
  msgstr ""
2287
 
2288
- #: app/features/events.php:1300 app/features/fes/form.php:885
2289
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2290
  #: app/libraries/main.php:646
2291
  msgid "Currency"
2292
  msgstr ""
2293
 
2294
  #: app/features/events.php:1310 app/features/events.php:1315
2295
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2296
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2297
  msgid "Currency Sign"
2298
  msgstr ""
2299
 
2300
- #: app/features/events.php:1316 app/features/fes/form.php:901
2301
  #: app/features/mec/settings.php:600
2302
  msgid "Default value will be \"currency\" if you leave it empty."
2303
  msgstr ""
2304
 
2305
- #: app/features/events.php:1323 app/features/fes/form.php:908
2306
  #: app/features/mec/settings.php:607
2307
  msgid "Currency Position"
2308
  msgstr ""
2309
 
2310
- #: app/features/events.php:1326 app/features/fes/form.php:911
2311
  #: app/features/mec/settings.php:610
2312
  msgid "$10 (Before)"
2313
  msgstr ""
2314
 
2315
- #: app/features/events.php:1327 app/features/fes/form.php:912
2316
  #: app/features/mec/settings.php:611
2317
  msgid "$ 10 (Before with Space)"
2318
  msgstr ""
2319
 
2320
- #: app/features/events.php:1328 app/features/fes/form.php:913
2321
  #: app/features/mec/settings.php:612
2322
  msgid "10$ (After)"
2323
  msgstr ""
2324
 
2325
- #: app/features/events.php:1329 app/features/fes/form.php:914
2326
  #: app/features/mec/settings.php:613
2327
  msgid "10 $ (After with Space)"
2328
  msgstr ""
2329
 
2330
- #: app/features/events.php:1334 app/features/fes/form.php:919
2331
  #: app/features/mec/settings.php:618
2332
  msgid "Thousand Separator"
2333
  msgstr ""
2334
 
2335
- #: app/features/events.php:1340 app/features/fes/form.php:925
2336
  #: app/features/mec/settings.php:624
2337
  msgid "Decimal Separator"
2338
  msgstr ""
2339
 
2340
- #: app/features/events.php:1350 app/features/fes/form.php:935
2341
  #: app/features/mec/settings.php:634
2342
  msgid "No decimal"
2343
  msgstr ""
@@ -2361,21 +2371,21 @@ msgstr ""
2361
  msgid "Day 1"
2362
  msgstr ""
2363
 
2364
- #: app/features/events.php:1498 app/features/fes/form.php:829
2365
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2366
  msgid "Event Links"
2367
  msgstr ""
2368
 
2369
  #: app/features/events.php:1501 app/features/events.php:1509
2370
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2371
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2372
  #: app/libraries/main.php:7649
2373
  msgid "Event Link"
2374
  msgstr ""
2375
 
2376
  #: app/features/events.php:1504 app/features/events.php:1522
2377
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2378
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2379
  msgid "eg. http://yoursite.com/your-event"
2380
  msgstr ""
2381
 
@@ -2390,24 +2400,24 @@ msgstr ""
2390
  msgid "URL Shortener"
2391
  msgstr ""
2392
 
2393
- #: app/features/events.php:1525 app/features/fes/form.php:838
2394
- #: app/features/occurrences.php:527
2395
  msgid "More Information"
2396
  msgstr ""
2397
 
2398
- #: app/features/events.php:1527 app/features/fes/form.php:840
2399
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2400
  #: app/features/popup/shortcode.php:481
2401
  msgid "Current Window"
2402
  msgstr ""
2403
 
2404
- #: app/features/events.php:1528 app/features/fes/form.php:841
2405
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2406
  #: app/features/popup/shortcode.php:485
2407
  msgid "New Window"
2408
  msgstr ""
2409
 
2410
- #: app/features/events.php:1533 app/features/fes/form.php:843
2411
  msgid ""
2412
  "If you fill it, it will be shown in event details page as an optional link. "
2413
  "Insert full link including http(s)://"
@@ -2765,9 +2775,9 @@ msgid "Ticket ID"
2765
  msgstr "Keresztnév"
2766
 
2767
  #: app/features/events.php:1944 app/features/events.php:2211
2768
- #: app/features/events.php:4180 app/features/fes.php:280
2769
  #: app/features/labels.php:183 app/features/locations.php:266
2770
- #: app/features/organizers.php:207 app/features/speakers.php:285
2771
  msgid "ID"
2772
  msgstr ""
2773
 
@@ -2776,12 +2786,12 @@ msgid "Ticket Name"
2776
  msgstr ""
2777
 
2778
  #: app/features/events.php:1956 app/features/events.php:2219
2779
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2780
  msgid "Start Time"
2781
  msgstr ""
2782
 
2783
  #: app/features/events.php:1970 app/features/events.php:2233
2784
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2785
  msgid "End Time"
2786
  msgstr ""
2787
 
@@ -2803,7 +2813,7 @@ msgstr ""
2803
  #: app/features/events.php:2007 app/features/events.php:2011
2804
  #: app/features/events.php:2109 app/features/events.php:2136
2805
  #: app/features/events.php:2265 app/features/events.php:2268
2806
- #: app/features/events.php:2349 app/features/events.php:4739
2807
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2808
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2809
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -2955,7 +2965,7 @@ msgstr "Jelentkezési lap"
2955
  msgid "Fixed Fields"
2956
  msgstr "Töltse ki az adatokat!"
2957
 
2958
- #: app/features/events.php:2887 app/features/events.php:4733
2959
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
2960
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
2961
  msgid "Attendees"
@@ -2981,7 +2991,7 @@ msgid "Expired Events"
2981
  msgstr ""
2982
 
2983
  #: app/features/events.php:3757 app/features/mec.php:1374
2984
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
2985
  msgid "Upcoming Events"
2986
  msgstr ""
2987
 
@@ -3042,15 +3052,15 @@ msgid "JSON Export"
3042
  msgstr ""
3043
 
3044
  #: app/features/events.php:4068 app/features/events.php:4069
3045
- #: app/features/events.php:4293
3046
  msgid "Duplicate"
3047
  msgstr ""
3048
 
3049
- #: app/features/events.php:4187
3050
  msgid "Link"
3051
  msgstr ""
3052
 
3053
- #: app/features/events.php:4189 app/features/locations.php:111
3054
  #: app/features/locations.php:181 app/features/locations.php:268
3055
  #: app/features/mec/meta_boxes/search_form.php:108
3056
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3068,31 +3078,31 @@ msgstr ""
3068
  msgid "Address"
3069
  msgstr ""
3070
 
3071
- #: app/features/events.php:4191
3072
  #, php-format
3073
  msgid "%s Tel"
3074
  msgstr ""
3075
 
3076
- #: app/features/events.php:4192
3077
  #, php-format
3078
  msgid "%s Email"
3079
  msgstr ""
3080
 
3081
- #: app/features/events.php:4194 app/features/fes/form.php:951
3082
  #: app/features/mec/settings.php:876
3083
  msgid "Featured Image"
3084
  msgstr ""
3085
 
3086
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3087
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3088
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3089
  msgid "Tags"
3090
  msgstr ""
3091
 
3092
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3093
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3094
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3095
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3096
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3097
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3098
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3100,38 +3110,38 @@ msgstr ""
3100
  msgid "Speakers"
3101
  msgstr ""
3102
 
3103
- #: app/features/events.php:4446 app/features/fes.php:280
3104
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3105
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3106
  #: app/libraries/main.php:7592
3107
  msgid "Ticket"
3108
  msgstr ""
3109
 
3110
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3111
  msgid "Variations"
3112
  msgstr ""
3113
 
3114
- #: app/features/events.php:4464 app/features/fes.php:356
3115
  msgid "Unknown"
3116
  msgstr ""
3117
 
3118
- #: app/features/events.php:4492
3119
  msgid ""
3120
  "If you want to send an email, first select your attendees and then click in "
3121
  "the button below, please."
3122
  msgstr ""
3123
 
3124
- #: app/features/events.php:4492 app/features/mec/report.php:57
3125
  msgid "Send Email"
3126
  msgstr ""
3127
 
3128
- #: app/features/events.php:4496
3129
  #, fuzzy
3130
  #| msgid "Attendees Form"
3131
  msgid "No Attendees Found!"
3132
  msgstr "Jelentkezési lap"
3133
 
3134
- #: app/features/events.php:4797
3135
  #, fuzzy
3136
  #| msgid "Attendees Form"
3137
  msgid "No Bookings Found!"
@@ -3265,126 +3275,126 @@ msgstr ""
3265
  msgid "The event published."
3266
  msgstr ""
3267
 
3268
- #: app/features/fes/form.php:178
3269
  msgid "Go back to events list"
3270
  msgstr ""
3271
 
3272
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3273
  #: app/features/mec/settings.php:1171
3274
  msgid "Excerpt"
3275
  msgstr ""
3276
 
3277
- #: app/features/fes/form.php:271
3278
  msgid "Optional Event Excerpt"
3279
  msgstr ""
3280
 
3281
- #: app/features/fes/form.php:278
3282
  msgid ""
3283
  "This event is imported from Google calendar so if you modify it would "
3284
  "overwrite in the next import from Google."
3285
  msgstr ""
3286
 
3287
- #: app/features/fes/form.php:407
3288
  #: app/features/mec/meta_boxes/display_options.php:1494
3289
  #: app/libraries/main.php:476
3290
  msgid "Monday"
3291
  msgstr ""
3292
 
3293
- #: app/features/fes/form.php:408
3294
  #: app/features/mec/meta_boxes/display_options.php:1495
3295
  #: app/libraries/main.php:476
3296
  msgid "Tuesday"
3297
  msgstr ""
3298
 
3299
- #: app/features/fes/form.php:409
3300
  #: app/features/mec/meta_boxes/display_options.php:1496
3301
  #: app/libraries/main.php:476
3302
  msgid "Wednesday"
3303
  msgstr ""
3304
 
3305
- #: app/features/fes/form.php:410
3306
  #: app/features/mec/meta_boxes/display_options.php:1497
3307
  #: app/libraries/main.php:476
3308
  msgid "Thursday"
3309
  msgstr ""
3310
 
3311
- #: app/features/fes/form.php:411
3312
  #: app/features/mec/meta_boxes/display_options.php:1498
3313
  #: app/libraries/main.php:476
3314
  msgid "Friday"
3315
  msgstr ""
3316
 
3317
- #: app/features/fes/form.php:412
3318
  #: app/features/mec/meta_boxes/display_options.php:1499
3319
  #: app/libraries/main.php:476
3320
  msgid "Saturday"
3321
  msgstr ""
3322
 
3323
- #: app/features/fes/form.php:413
3324
  #: app/features/mec/meta_boxes/display_options.php:1493
3325
  #: app/libraries/main.php:476
3326
  msgid "Sunday"
3327
  msgstr ""
3328
 
3329
- #: app/features/fes/form.php:766
3330
  msgid ""
3331
  "The event will finish after certain repeats. For example if you set it to "
3332
  "10, the event will finish after 10 repeats."
3333
  msgstr ""
3334
 
3335
- #: app/features/fes/form.php:790
3336
  msgid "Note to reviewer"
3337
  msgstr ""
3338
 
3339
- #: app/features/fes/form.php:808
3340
  msgid "User Data"
3341
  msgstr ""
3342
 
3343
- #: app/features/fes/form.php:811
3344
  msgid "eg. yourname@gmail.com"
3345
  msgstr ""
3346
 
3347
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3348
- #: app/features/popup/event.php:185
3349
  msgid "eg. John Smith"
3350
  msgstr ""
3351
 
3352
- #: app/features/fes/form.php:833
3353
  msgid ""
3354
  "If you fill it, it will replace the default event page link. Insert full "
3355
  "link including http(s)://"
3356
  msgstr ""
3357
 
3358
- #: app/features/fes/form.php:956
3359
  msgid "Remove Image"
3360
  msgstr ""
3361
 
3362
- #: app/features/fes/form.php:1046
3363
  msgid "Insert your desired tags, comma separated."
3364
  msgstr ""
3365
 
3366
- #: app/features/fes/form.php:1068
3367
  msgid "Speakers Names"
3368
  msgstr ""
3369
 
3370
- #: app/features/fes/form.php:1069
3371
  msgid "Separate names with commas: Justin, Chris"
3372
  msgstr ""
3373
 
3374
- #: app/features/fes/form.php:1114
3375
  #, php-format
3376
  msgid "I accept the %s in order to submit an event."
3377
  msgstr ""
3378
 
3379
- #: app/features/fes/form.php:1114
3380
  msgid "Privacy Policy"
3381
  msgstr ""
3382
 
3383
- #: app/features/fes/form.php:1116
3384
  msgid "I accept the Privacy Policy in order to submit an event."
3385
  msgstr ""
3386
 
3387
- #: app/features/fes/form.php:1122
3388
  #, fuzzy
3389
  #| msgid "Facebook Events"
3390
  msgid "Submit Event"
@@ -3463,77 +3473,77 @@ msgstr ""
3463
  msgid "The events are imported successfully!"
3464
  msgstr ""
3465
 
3466
- #: app/features/ix.php:1301
3467
  msgid "Third Party plugin is not installed and activated!"
3468
  msgstr ""
3469
 
3470
- #: app/features/ix.php:1325
3471
  msgid "Third Party plugin is invalid!"
3472
  msgstr ""
3473
 
3474
- #: app/features/ix.php:3300 app/features/ix.php:3361
3475
  msgid "API key and Calendar ID are required!"
3476
  msgstr ""
3477
 
3478
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3479
  #, fuzzy
3480
  #| msgid "Please select some tickets!"
3481
  msgid "Please select events to import!"
3482
  msgstr "Kérjük, válasszon néhány jegyet!"
3483
 
3484
- #: app/features/ix.php:3794 app/features/ix.php:3857
3485
  msgid "API key and Group URL are required!"
3486
  msgstr ""
3487
 
3488
- #: app/features/ix.php:4096
3489
  msgid "Check at Meetup"
3490
  msgstr ""
3491
 
3492
- #: app/features/ix.php:4262
3493
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3494
  msgstr ""
3495
 
3496
- #: app/features/ix.php:4285
3497
  #, php-format
3498
  msgid "All seems good! Please click %s to authenticate your app."
3499
  msgstr ""
3500
 
3501
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3502
  #: app/features/mec/settings.php:1496
3503
  msgid "here"
3504
  msgstr ""
3505
 
3506
- #: app/features/ix.php:4340
3507
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3508
  msgstr ""
3509
 
3510
- #: app/features/ix.php:4502
3511
  #, fuzzy, php-format
3512
  #| msgid "+ Add to Google Calendar"
3513
  msgid "%s events added to Google Calendar with success."
3514
  msgstr "+ Google Naptárba mentés"
3515
 
3516
- #: app/features/ix.php:4503
3517
  #, php-format
3518
  msgid "%s Updated previously added events."
3519
  msgstr ""
3520
 
3521
- #: app/features/ix.php:4504
3522
  #, php-format
3523
  msgid "%s events failed to add for following reasons: %s"
3524
  msgstr ""
3525
 
3526
- #: app/features/ix.php:4536
3527
  msgid "Please insert your Facebook page's link."
3528
  msgstr ""
3529
 
3530
- #: app/features/ix.php:4547 app/features/ix.php:4589
3531
  msgid ""
3532
  "We were not able to recognize your Facebook page. Please check again and "
3533
  "provide a valid link."
3534
  msgstr ""
3535
 
3536
- #: app/features/ix.php:4584
3537
  msgid "Please insert your facebook page's link."
3538
  msgstr ""
3539
 
@@ -3732,7 +3742,7 @@ msgstr "Facebook események"
3732
  msgid "Add to Google Calendar"
3733
  msgstr "Google Naptárba mentés"
3734
 
3735
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3736
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3737
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3738
  #: app/features/mec/single.php:604
@@ -3846,7 +3856,7 @@ msgstr ""
3846
  msgid "Import all of your Facebook events into MEC."
3847
  msgstr ""
3848
 
3849
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
3850
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
3851
  msgid "Documentation"
3852
  msgstr ""
@@ -4122,14 +4132,14 @@ msgid ""
4122
  msgstr ""
4123
 
4124
  #: app/features/labels.php:79 app/features/locations.php:77
4125
- #: app/features/organizers.php:77 app/features/speakers.php:79
4126
  #: app/features/tag.php:77
4127
  #, php-format
4128
  msgid "← Back to %s"
4129
  msgstr ""
4130
 
4131
  #: app/features/labels.php:80 app/features/locations.php:78
4132
- #: app/features/organizers.php:78 app/features/speakers.php:80
4133
  #: app/features/tag.php:78
4134
  #, php-format
4135
  msgid "no %s found."
@@ -4170,7 +4180,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4170
  msgstr ""
4171
 
4172
  #: app/features/labels.php:186 app/features/locations.php:269
4173
- #: app/features/organizers.php:210 app/features/speakers.php:289
4174
  #: app/modules/booking/steps/tickets.php:172
4175
  msgid "Count"
4176
  msgstr ""
@@ -4186,7 +4196,7 @@ msgid "Event %s"
4186
  msgstr ""
4187
 
4188
  #: app/features/locations.php:59 app/features/mec.php:526
4189
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4190
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4191
  #: app/libraries/main.php:7623
4192
  msgid "Locations"
@@ -4197,7 +4207,7 @@ msgid "Enter the location address"
4197
  msgstr ""
4198
 
4199
  #: app/features/locations.php:131 app/features/locations.php:197
4200
- #: app/features/locations.php:374 app/features/popup/event.php:149
4201
  msgid "Latitude"
4202
  msgstr ""
4203
 
@@ -4206,7 +4216,7 @@ msgid "Geo latitude (Optional for Lite)"
4206
  msgstr ""
4207
 
4208
  #: app/features/locations.php:139 app/features/locations.php:201
4209
- #: app/features/locations.php:375 app/features/popup/event.php:150
4210
  msgid "Longitude"
4211
  msgstr ""
4212
 
@@ -4227,22 +4237,22 @@ msgstr ""
4227
 
4228
  #: app/features/locations.php:156 app/features/locations.php:210
4229
  #: app/features/organizers.php:128 app/features/organizers.php:161
4230
- #: app/features/speakers.php:176 app/features/speakers.php:229
4231
  msgid "Thumbnail"
4232
  msgstr ""
4233
 
4234
  #: app/features/locations.php:329 app/features/occurrences.php:460
4235
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4236
  #, php-format
4237
  msgid "Event Main %s"
4238
  msgstr ""
4239
 
4240
  #: app/features/locations.php:332 app/features/occurrences.php:464
4241
- #: app/features/popup/event.php:119
4242
  msgid "Hide location"
4243
  msgstr ""
4244
 
4245
- #: app/features/locations.php:333 app/features/popup/event.php:120
4246
  msgid "Insert a new location"
4247
  msgstr ""
4248
 
@@ -4250,28 +4260,28 @@ msgstr ""
4250
  msgid "Choose one of saved locations or insert new one below."
4251
  msgstr ""
4252
 
4253
- #: app/features/locations.php:348 app/features/popup/event.php:141
4254
  msgid "Location Name"
4255
  msgstr ""
4256
 
4257
- #: app/features/locations.php:349 app/features/popup/event.php:142
4258
  msgid "eg. City Hall"
4259
  msgstr ""
4260
 
4261
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4262
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4263
  msgid "Event Location"
4264
  msgstr ""
4265
 
4266
- #: app/features/locations.php:353 app/features/popup/event.php:146
4267
  msgid "eg. City hall, Manhattan, New York"
4268
  msgstr ""
4269
 
4270
- #: app/features/locations.php:378 app/features/popup/event.php:153
4271
  msgid "Latitude/Longitude"
4272
  msgstr ""
4273
 
4274
- #: app/features/locations.php:379 app/features/popup/event.php:154
4275
  msgid ""
4276
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4277
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4280,28 +4290,28 @@ msgid ""
4280
  "the location on the map to find lat long coordinates."
4281
  msgstr ""
4282
 
4283
- #: app/features/locations.php:379 app/features/popup/event.php:154
4284
  msgid "Get Latitude and Longitude"
4285
  msgstr ""
4286
 
4287
  #: app/features/locations.php:392 app/features/organizers.php:315
4288
- #: app/features/popup/event.php:204
4289
  msgid "Choose image"
4290
  msgstr ""
4291
 
4292
- #: app/features/locations.php:406 app/features/occurrences.php:480
4293
- #: app/features/popup/event.php:137
4294
  msgid "Don't show map in single event page"
4295
  msgstr ""
4296
 
4297
- #: app/features/locations.php:409 app/libraries/main.php:7607
4298
  #: app/libraries/main.php:7654
4299
  #, fuzzy
4300
  #| msgid "Location"
4301
  msgid "Other Locations"
4302
  msgstr "helyszín"
4303
 
4304
- #: app/features/locations.php:411
4305
  msgid ""
4306
  "You can select extra locations in addition to main location if you like."
4307
  msgstr ""
@@ -4369,7 +4379,7 @@ msgstr ""
4369
  msgid "Support"
4370
  msgstr ""
4371
 
4372
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4373
  #: app/features/mec/meta_boxes/filter.php:71
4374
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4375
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4377,7 +4387,7 @@ msgid "Organizers"
4377
  msgstr ""
4378
 
4379
  #: app/features/mec.php:536 app/features/mec.php:596
4380
- #: app/features/mec/dashboard.php:221
4381
  msgid "Shortcodes"
4382
  msgstr ""
4383
 
@@ -4575,7 +4585,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4575
  msgstr ""
4576
 
4577
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4578
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4579
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4580
  msgid "Version"
4581
  msgstr ""
@@ -4599,9 +4609,9 @@ msgid "Search..."
4599
  msgstr ""
4600
 
4601
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4602
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4603
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4604
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4605
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4606
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4607
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5140,27 +5150,27 @@ msgstr ""
5140
  msgid "It applies only to the orders that are related to MEC."
5141
  msgstr ""
5142
 
5143
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5144
  msgid "After Add to Cart"
5145
  msgstr ""
5146
 
5147
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5148
  #, fuzzy
5149
  #| msgid "Get Direction"
5150
  msgid "Redirect to Cart"
5151
  msgstr "Útvonaltervezés"
5152
 
5153
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5154
  #, fuzzy
5155
  #| msgid "Get Direction"
5156
  msgid "Redirect to Checkout"
5157
  msgstr "Útvonaltervezés"
5158
 
5159
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5160
  msgid "Optional View Cart Button"
5161
  msgstr ""
5162
 
5163
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5164
  msgid "Optional Checkout Button"
5165
  msgstr ""
5166
 
@@ -5216,75 +5226,81 @@ msgid ""
5216
  "(Stripe) got canceled."
5217
  msgstr ""
5218
 
5219
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5220
  msgid "Use MEC Cart System"
5221
  msgstr ""
5222
 
5223
- #: app/features/mec/booking.php:1119
5224
  msgid ""
5225
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5226
  "adding a simple cart and checkout system to your website."
5227
  msgstr ""
5228
 
5229
- #: app/features/mec/booking.php:1121
5230
  msgid "You cannot use following MEC features while using MEC Cart."
5231
  msgstr ""
5232
 
5233
- #: app/features/mec/booking.php:1123
5234
  msgid "WooCommerce as Payment Gateway"
5235
  msgstr ""
5236
 
5237
- #: app/features/mec/booking.php:1124
5238
  #, fuzzy
5239
  #| msgid "Facebook Events"
5240
  msgid "Currency Per Event"
5241
  msgstr "Facebook események"
5242
 
5243
- #: app/features/mec/booking.php:1125
5244
  #, fuzzy
5245
  #| msgid "Facebook Events"
5246
  msgid "Disable Gateways Per Event"
5247
  msgstr "Facebook események"
5248
 
5249
- #: app/features/mec/booking.php:1126
5250
  msgid "Stripe Connect Gateway"
5251
  msgstr ""
5252
 
5253
- #: app/features/mec/booking.php:1127
5254
  msgid "Pay By WooCommerce Gateway"
5255
  msgstr ""
5256
 
5257
- #: app/features/mec/booking.php:1128
5258
  #, fuzzy
5259
  #| msgid "Organizer"
5260
  msgid "Organizer Payment Module"
5261
  msgstr "Szervező"
5262
 
5263
- #: app/features/mec/booking.php:1132
5264
  #, fuzzy
5265
  #| msgid "Facebook Events"
5266
  msgid "Cart Page"
5267
  msgstr "Facebook események"
5268
 
5269
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5270
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5271
  #, php-format
5272
  msgid "Put %s shortcode into the page."
5273
  msgstr ""
5274
 
5275
- #: app/features/mec/booking.php:1144
5276
  #, fuzzy
5277
  #| msgid "Checkout"
5278
  msgid "Checkout Page"
5279
  msgstr "Ellenőrzés"
5280
 
5281
- #: app/features/mec/booking.php:1170
5282
  #, fuzzy
5283
  #| msgid "Bookings"
5284
  msgid "Enable Cart Invoice"
5285
  msgstr "Foglalások"
5286
 
5287
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5288
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5289
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5290
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5292,7 +5308,7 @@ msgstr "Foglalások"
5292
  msgid "Saved"
5293
  msgstr ""
5294
 
5295
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5296
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5297
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5298
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5300,7 +5316,7 @@ msgstr ""
5300
  msgid "Settings Saved!"
5301
  msgstr ""
5302
 
5303
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5304
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5305
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5306
  msgid "Please Refresh Page"
@@ -5316,12 +5332,7 @@ msgstr ""
5316
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5317
  msgstr ""
5318
 
5319
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5320
- msgctxt "plugin rate"
5321
- msgid "Rate the plugin ★★★★★"
5322
- msgstr ""
5323
-
5324
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5325
  #, php-format
5326
  msgid ""
5327
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5329,63 +5340,48 @@ msgid ""
5329
  "Spots, etc you should upgrade to the Pro version."
5330
  msgstr ""
5331
 
5332
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5333
  msgid "lite"
5334
  msgstr ""
5335
 
5336
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5337
  #: app/features/mec/support.php:126
5338
  msgid "GO PREMIUM"
5339
  msgstr ""
5340
 
5341
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5342
- #, php-format
5343
- msgid ""
5344
- "Easily get a discount coupon by rating us on %s or following and reposting "
5345
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5346
- msgstr ""
5347
-
5348
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5349
- msgid "WordPress"
5350
- msgstr ""
5351
-
5352
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5353
- msgid "Copouns!"
5354
- msgstr ""
5355
-
5356
- #: app/features/mec/dashboard.php:115
5357
  msgid "Getting started with Modern Events Calendar"
5358
  msgstr ""
5359
 
5360
- #: app/features/mec/dashboard.php:116
5361
  msgid ""
5362
  "In this short video, you can learn how to make an event and put a calendar "
5363
  "on your website. Please watch this 2 minutes video to the end."
5364
  msgstr ""
5365
 
5366
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5367
  msgid "License Activation"
5368
  msgstr ""
5369
 
5370
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5371
  msgid "Activate Addons"
5372
  msgstr ""
5373
 
5374
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5375
  msgid "You cannot access this section."
5376
  msgstr ""
5377
 
5378
- #: app/features/mec/dashboard.php:162
5379
  msgid ""
5380
  "In order to use all plugin features and options, please enter your purchase "
5381
  "code."
5382
  msgstr ""
5383
 
5384
- #: app/features/mec/dashboard.php:270
5385
  msgid "Popular Gateways"
5386
  msgstr ""
5387
 
5388
- #: app/features/mec/dashboard.php:328
5389
  msgid "Change Log"
5390
  msgstr ""
5391
 
@@ -6828,7 +6824,7 @@ msgstr ""
6828
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
6829
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
6830
  #: app/features/popup/settings.php:272 app/features/search.php:109
6831
- #: app/features/speakers.php:60 app/features/speakers.php:286
6832
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
6833
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
6834
  #: app/modules/speakers/details.php:18
@@ -8081,7 +8077,7 @@ msgstr ""
8081
  msgid "Please, insert comma to separate reminder hours."
8082
  msgstr ""
8083
 
8084
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8085
  #: app/libraries/main.php:705
8086
  msgid "New Event"
8087
  msgstr ""
@@ -10060,13 +10056,13 @@ msgstr ""
10060
  msgid "Choose one of saved locations."
10061
  msgstr ""
10062
 
10063
- #: app/features/occurrences.php:491 app/features/organizers.php:280
10064
- #: app/features/popup/event.php:166
10065
  msgid "Hide organizer"
10066
  msgstr ""
10067
 
10068
- #: app/features/occurrences.php:499 app/features/organizers.php:289
10069
- #: app/features/popup/event.php:175
10070
  msgid "Choose one of saved organizers or insert new one below."
10071
  msgstr ""
10072
 
@@ -10079,7 +10075,7 @@ msgid "Insert organizer email address."
10079
  msgstr ""
10080
 
10081
  #: app/features/organizers.php:120 app/features/organizers.php:157
10082
- #: app/features/organizers.php:308 app/features/popup/event.php:198
10083
  msgid "Link to organizer page"
10084
  msgstr ""
10085
 
@@ -10091,27 +10087,27 @@ msgstr ""
10091
  msgid "Contact info"
10092
  msgstr ""
10093
 
10094
- #: app/features/organizers.php:281 app/features/popup/event.php:167
10095
  msgid "Insert a new organizer"
10096
  msgstr ""
10097
 
10098
- #: app/features/organizers.php:300 app/features/popup/event.php:188
10099
  msgid "Phone number."
10100
  msgstr ""
10101
 
10102
- #: app/features/organizers.php:301 app/features/popup/event.php:189
10103
  msgid "eg. +1 (234) 5678"
10104
  msgstr ""
10105
 
10106
- #: app/features/organizers.php:304 app/features/popup/event.php:193
10107
  msgid "Email address."
10108
  msgstr ""
10109
 
10110
- #: app/features/organizers.php:305 app/features/popup/event.php:194
10111
  msgid "eg. john@smith.com"
10112
  msgstr "például john@smith.com"
10113
 
10114
- #: app/features/organizers.php:309 app/features/popup/event.php:199
10115
  msgid "eg. https://webnus.net"
10116
  msgstr ""
10117
 
@@ -10125,66 +10121,66 @@ msgid ""
10125
  "You can select extra organizers in addition to main organizer if you like."
10126
  msgstr ""
10127
 
10128
- #: app/features/popup/event.php:58
10129
  msgid "Adding an Event..."
10130
  msgstr ""
10131
 
10132
- #: app/features/popup/event.php:66
10133
  #, fuzzy
10134
  #| msgid "Name"
10135
  msgid "Event Name"
10136
  msgstr "Név"
10137
 
10138
- #: app/features/popup/event.php:67
10139
  msgid "Event name is required"
10140
  msgstr ""
10141
 
10142
- #: app/features/popup/event.php:128
10143
  msgid "Choose one of saved locations or insert new one."
10144
  msgstr ""
10145
 
10146
- #: app/features/popup/event.php:132
10147
  #, fuzzy
10148
  #| msgid "Location"
10149
  msgid "Add Location"
10150
  msgstr "helyszín"
10151
 
10152
- #: app/features/popup/event.php:179
10153
  #, fuzzy
10154
  #| msgid "Organizer"
10155
  msgid "Add Organizer"
10156
  msgstr "Szervező"
10157
 
10158
- #: app/features/popup/event.php:219
10159
  #, fuzzy
10160
  #| msgid "Category"
10161
  msgid "All Categories"
10162
  msgstr "kategória"
10163
 
10164
- #: app/features/popup/event.php:220
10165
  msgid "Most Used"
10166
  msgstr ""
10167
 
10168
- #: app/features/popup/event.php:231
10169
  #, fuzzy
10170
  #| msgid "Category"
10171
  msgid "Add New Category"
10172
  msgstr "kategória"
10173
 
10174
- #: app/features/popup/event.php:242
10175
  msgid "Set Featured Image"
10176
  msgstr ""
10177
 
10178
- #: app/features/popup/event.php:252
10179
  msgid "Your Event Has Been Created."
10180
  msgstr ""
10181
 
10182
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
10183
  #: app/features/popup/shortcode.php:553
10184
  msgid "Prev"
10185
  msgstr ""
10186
 
10187
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
10188
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
10189
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
10190
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -10358,70 +10354,70 @@ msgstr ""
10358
  msgid "No search result."
10359
  msgstr ""
10360
 
10361
- #: app/features/speakers.php:112 app/features/speakers.php:197
10362
- #: app/features/speakers.php:287
10363
  msgid "Job Title"
10364
  msgstr ""
10365
 
10366
- #: app/features/speakers.php:115 app/features/speakers.php:198
10367
  msgid "Insert speaker job title."
10368
  msgstr ""
10369
 
10370
- #: app/features/speakers.php:123 app/features/speakers.php:202
10371
  msgid "Insert speaker phone number."
10372
  msgstr ""
10373
 
10374
- #: app/features/speakers.php:131 app/features/speakers.php:206
10375
  msgid "Insert speaker email address."
10376
  msgstr ""
10377
 
10378
- #: app/features/speakers.php:139 app/features/speakers.php:210
10379
  msgid "Insert URL of Website"
10380
  msgstr ""
10381
 
10382
- #: app/features/speakers.php:144 app/features/speakers.php:213
10383
  #, fuzzy
10384
  #| msgid "Facebook Events"
10385
  msgid "Facebook Page"
10386
  msgstr "Facebook események"
10387
 
10388
- #: app/features/speakers.php:147 app/features/speakers.php:214
10389
  msgid "Insert URL of Facebook Page"
10390
  msgstr ""
10391
 
10392
- #: app/features/speakers.php:152 app/features/speakers.php:217
10393
  msgid "Instagram"
10394
  msgstr ""
10395
 
10396
- #: app/features/speakers.php:155 app/features/speakers.php:218
10397
  msgid "Insert URL of Instagram"
10398
  msgstr ""
10399
 
10400
- #: app/features/speakers.php:160 app/features/speakers.php:221
10401
  msgid "LinkedIn"
10402
  msgstr ""
10403
 
10404
- #: app/features/speakers.php:163
10405
  msgid "Insert URL of LinkedIn"
10406
  msgstr ""
10407
 
10408
- #: app/features/speakers.php:168 app/features/speakers.php:225
10409
  msgid "Twitter Page"
10410
  msgstr ""
10411
 
10412
- #: app/features/speakers.php:171 app/features/speakers.php:226
10413
  msgid "Insert URL of Twitter Page"
10414
  msgstr ""
10415
 
10416
- #: app/features/speakers.php:222
10417
  msgid "Insert URL of linkedin"
10418
  msgstr ""
10419
 
10420
- #: app/features/speakers.php:347
10421
  msgid "Sorry, You must insert speaker name!"
10422
  msgstr ""
10423
 
10424
- #: app/features/speakers.php:396
10425
  msgid ""
10426
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
10427
  "section and speaker widget section!"
@@ -10506,69 +10502,69 @@ msgctxt "plugin link"
10506
  msgid "Upgrade to Pro Version"
10507
  msgstr ""
10508
 
10509
- #: app/libraries/factory.php:234
10510
  msgctxt "plugin link"
10511
  msgid "Settings"
10512
  msgstr ""
10513
 
10514
- #: app/libraries/factory.php:239
10515
  msgctxt "plugin link"
10516
  msgid "Upgrade"
10517
  msgstr ""
10518
 
10519
- #: app/libraries/factory.php:393
10520
  msgid "day"
10521
  msgstr ""
10522
 
10523
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
10524
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
10525
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
10526
  msgid "days"
10527
  msgstr "Nap"
10528
 
10529
- #: app/libraries/factory.php:395
10530
  msgid "hour"
10531
  msgstr ""
10532
 
10533
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
10534
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
10535
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
10536
  msgid "hours"
10537
  msgstr "óra"
10538
 
10539
- #: app/libraries/factory.php:397
10540
  msgid "minute"
10541
  msgstr ""
10542
 
10543
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
10544
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
10545
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
10546
  msgid "minutes"
10547
  msgstr "perc"
10548
 
10549
- #: app/libraries/factory.php:399
10550
  msgid "second"
10551
  msgstr ""
10552
 
10553
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
10554
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
10555
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
10556
  msgid "seconds"
10557
  msgstr "másodperc"
10558
 
10559
- #: app/libraries/factory.php:477
10560
  msgid "MEC Single Sidebar"
10561
  msgstr ""
10562
 
10563
- #: app/libraries/factory.php:478
10564
  msgid "Custom sidebar for single and modal page of MEC."
10565
  msgstr ""
10566
 
10567
- #: app/libraries/factory.php:1199
10568
  msgid "Notice:"
10569
  msgstr ""
10570
 
10571
- #: app/libraries/factory.php:1200
10572
  msgid "This update includes only bug fixes."
10573
  msgstr ""
10574
 
@@ -10718,12 +10714,6 @@ msgstr "Facebook események"
10718
  msgid "%s Form"
10719
  msgstr ""
10720
 
10721
- #: app/libraries/main.php:689
10722
- #, fuzzy
10723
- #| msgid "Name"
10724
- msgid "MEC Cart"
10725
- msgstr "Név"
10726
-
10727
  #: app/libraries/main.php:726
10728
  msgid "Only For Bookers"
10729
  msgstr ""
@@ -11452,12 +11442,7 @@ msgstr ""
11452
  msgid "End at: %s - %s"
11453
  msgstr ""
11454
 
11455
- #: app/libraries/skins.php:1755
11456
- #, php-format
11457
- msgid "Every %s"
11458
- msgstr ""
11459
-
11460
- #: app/libraries/skins.php:1756
11461
  #, fuzzy
11462
  #| msgid "Facebook Events"
11463
  msgid "Repeating Event"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
162
  msgstr ""
163
 
164
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
165
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
166
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
167
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
168
  #: app/features/mec/notifications.php:1922
200
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
201
  #: app/features/autoemails.php:60 app/features/events.php:606
202
  #: app/features/events.php:2650 app/features/events.php:2717
203
+ #: app/features/events.php:2806 app/features/events.php:4445
204
+ #: app/features/fes.php:280 app/features/fes/form.php:812
205
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
206
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
207
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
208
  #: app/features/organizers.php:112 app/features/organizers.php:153
209
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
210
+ #: app/features/speakers.php:211 app/libraries/main.php:653
211
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
212
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
213
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
363
  #: app/features/events.php:2808 app/features/mec/booking.php:800
364
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
365
  #: app/features/organizers.php:104 app/features/organizers.php:149
366
+ #: app/features/speakers.php:126 app/features/speakers.php:207
367
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
368
  msgid "Tel"
369
  msgstr ""
370
 
510
  msgid "Agreement"
511
  msgstr ""
512
 
513
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
514
+ #, php-format
515
+ msgid "I agree with %s"
516
+ msgstr ""
517
+
518
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
519
  #, php-format
520
  msgid "Instead of %s, the page title with a link will be show."
692
  #: app/features/events.php:1843 app/features/events.php:2014
693
  #: app/features/events.php:2029 app/features/events.php:2271
694
  #: app/features/events.php:2283 app/features/events.php:2476
695
+ #: app/features/events.php:2513 app/features/fes/form.php:460
696
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
697
  #: app/features/locations.php:341 app/features/mec/booking.php:113
698
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
699
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
770
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
771
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
772
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
773
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
774
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
775
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
776
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
777
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
778
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
932
 
933
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
934
  #: app/features/events.php:432 app/features/events.php:1283
935
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
936
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
937
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
938
  #: app/skins/single.php:1126 app/skins/single/default.php:213
939
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1008
  msgstr ""
1009
 
1010
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1011
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1012
  #: app/features/labels.php:61 app/features/labels.php:227
1013
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1014
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1042
  msgstr "Esemény ezen a helyszínen"
1043
 
1044
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1045
+ #: app/features/events.php:3876 app/features/events.php:4190
1046
  #: app/features/locations.php:58 app/features/locations.php:267
1047
  #: app/features/locations.php:329 app/features/locations.php:331
1048
  #: app/features/locations.php:340
1062
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1063
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1064
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1065
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1066
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1067
  #: app/features/search.php:97 app/libraries/main.php:3020
1068
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1076
 
1077
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1078
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1079
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1080
  #: app/skins/single.php:1406 app/skins/single.php:1473
1081
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1082
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1099
 
1100
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1101
  #: app/features/events.php:1519 app/features/events.php:1532
1102
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1103
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1104
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1105
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1146
 
1147
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1148
  #: app/features/events.php:431 app/features/events.php:3877
1149
+ #: app/features/events.php:4192 app/features/events.php:4193
1150
+ #: app/features/events.php:4194
1151
  #: app/features/mec/meta_boxes/display_options.php:1660
1152
  #: app/features/mec/meta_boxes/search_form.php:80
1153
  #: app/features/mec/meta_boxes/search_form.php:168
1162
  #: app/features/mec/meta_boxes/search_form.php:983
1163
  #: app/features/mec/meta_boxes/search_form.php:1070
1164
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1165
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1166
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1167
  #: app/features/organizers.php:58 app/features/organizers.php:208
1168
  #: app/features/organizers.php:277 app/features/organizers.php:279
1169
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1170
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1171
  #: app/features/popup/settings.php:263 app/features/search.php:103
1172
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1173
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1287
  #: app/features/booking/calendar_novel.php:145
1288
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1289
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1290
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1291
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1292
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1293
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1294
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1350
 
1351
  #: app/features/autoemails.php:74 app/features/events.php:230
1352
  #: app/features/labels.php:72 app/features/locations.php:70
1353
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1354
  #: app/features/tag.php:70
1355
  #, php-format
1356
  msgid "Edit %s"
1407
  msgid "Go to events page"
1408
  msgstr ""
1409
 
1410
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1411
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1412
  #: app/features/wc.php:91 app/libraries/main.php:3072
1413
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1487
  msgid "Back to Cart"
1488
  msgstr "helyszín"
1489
 
1490
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1491
  #: app/features/mec/settings.php:907
1492
  msgid "Event Color"
1493
  msgstr ""
1497
  msgstr ""
1498
 
1499
  #: app/features/contextual.php:55 app/features/mec.php:546
1500
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1501
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1502
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1503
  #: app/libraries/main.php:738
1504
  msgid "Settings"
1612
  msgstr ""
1613
 
1614
  #: app/features/contextual.php:166 app/features/events.php:1298
1615
+ #: app/features/fes/form.php:885
1616
  msgid "Currency Options"
1617
  msgstr ""
1618
 
1702
  msgstr ""
1703
 
1704
  #: app/features/dlfile.php:297 app/features/events.php:3874
1705
+ #: app/features/events.php:4183 app/features/events.php:4734
1706
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1707
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1708
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1709
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1712
  msgstr ""
1713
 
1714
  #: app/features/dlfile.php:301 app/features/events.php:1988
1715
+ #: app/features/events.php:2248 app/features/events.php:4184
1716
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1717
  #: app/libraries/hourlyschedule.php:152
1718
  msgid "Description"
1753
  msgstr ""
1754
 
1755
  #: app/features/emails/details.php:35 app/features/events.php:1223
1756
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1757
  msgid "After"
1758
  msgstr ""
1759
 
1762
  msgstr ""
1763
 
1764
  #: app/features/emails/details.php:40 app/features/events.php:192
1765
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1766
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1767
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1768
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1783
  msgid "Add Event"
1784
  msgstr ""
1785
 
1786
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1787
  msgid "Add New Event"
1788
  msgstr ""
1789
 
1790
+ #: app/features/events.php:196 app/features/ix.php:4614
1791
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1792
  #: app/skins/map/tpl.php:93
1793
  msgid "No events found!"
1798
  msgstr ""
1799
 
1800
  #: app/features/events.php:199 app/features/fes/list.php:100
1801
+ #: app/features/popup/event.php:259
1802
  msgid "View Event"
1803
  msgstr ""
1804
 
1807
  msgstr ""
1808
 
1809
  #: app/features/events.php:219 app/features/events.php:3831
1810
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1811
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1812
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1813
  #: app/libraries/main.php:7619
1816
 
1817
  #: app/features/events.php:229 app/features/labels.php:71
1818
  #: app/features/locations.php:69 app/features/organizers.php:69
1819
+ #: app/features/speakers.php:77 app/features/tag.php:69
1820
  #, php-format
1821
  msgid "All %s"
1822
  msgstr ""
1823
 
1824
  #: app/features/events.php:231 app/features/labels.php:73
1825
  #: app/features/locations.php:71 app/features/organizers.php:71
1826
+ #: app/features/speakers.php:79 app/features/tag.php:71
1827
  #, php-format
1828
  msgid "View %s"
1829
  msgstr ""
1830
 
1831
  #: app/features/events.php:232 app/features/labels.php:74
1832
  #: app/features/locations.php:72 app/features/organizers.php:72
1833
+ #: app/features/speakers.php:80 app/features/tag.php:72
1834
  #, php-format
1835
  msgid "Update %s"
1836
  msgstr ""
1837
 
1838
  #: app/features/events.php:233 app/features/labels.php:75
1839
  #: app/features/locations.php:73 app/features/organizers.php:73
1840
+ #: app/features/speakers.php:81 app/features/tag.php:73
1841
  #, php-format
1842
  msgid "Add New %s"
1843
  msgstr ""
1844
 
1845
  #: app/features/events.php:234 app/features/labels.php:76
1846
  #: app/features/locations.php:74 app/features/organizers.php:74
1847
+ #: app/features/speakers.php:82 app/features/tag.php:74
1848
  #, php-format
1849
  msgid "New %s Name"
1850
  msgstr ""
1851
 
1852
  #: app/features/events.php:235 app/features/labels.php:77
1853
  #: app/features/locations.php:75 app/features/organizers.php:75
1854
+ #: app/features/speakers.php:83 app/features/tag.php:75
1855
  #, php-format
1856
  msgid "Popular %s"
1857
  msgstr ""
1858
 
1859
  #: app/features/events.php:236 app/features/labels.php:78
1860
  #: app/features/locations.php:76 app/features/organizers.php:76
1861
+ #: app/features/speakers.php:84 app/features/tag.php:76
1862
  #, php-format
1863
  msgid "Search %s"
1864
  msgstr ""
1888
  #: app/features/events.php:278 app/features/events.php:336
1889
  #: app/features/locations.php:161 app/features/locations.php:213
1890
  #: app/features/organizers.php:133 app/features/organizers.php:164
1891
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1892
  msgid "Upload/Add image"
1893
  msgstr ""
1894
 
1897
  #: app/features/locations.php:393 app/features/locations.php:400
1898
  #: app/features/organizers.php:134 app/features/organizers.php:165
1899
  #: app/features/organizers.php:316 app/features/organizers.php:323
1900
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1901
  msgid "Remove image"
1902
  msgstr ""
1903
 
1913
  msgid "Date And Time"
1914
  msgstr ""
1915
 
1916
+ #: app/features/events.php:425 app/features/fes/form.php:386
1917
  msgid "Event Repeating"
1918
  msgstr ""
1919
 
1956
  msgstr ""
1957
 
1958
  #: app/features/events.php:605 app/features/events.php:2641
1959
+ #: app/features/events.php:4442 app/features/fes.php:280
1960
+ #: app/features/fes/form.php:816 app/features/labels.php:184
1961
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
1962
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
1963
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
1964
  msgid "Name"
1965
  msgstr "Név"
1970
  "overwrite in the next import from Google."
1971
  msgstr ""
1972
 
1973
+ #: app/features/events.php:619 app/features/fes/form.php:284
1974
  msgid "Date and Time"
1975
  msgstr ""
1976
 
1977
  #: app/features/events.php:622 app/features/events.php:626
1978
+ #: app/features/events.php:3878 app/features/events.php:4185
1979
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
1980
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
1981
  #: app/features/mec/meta_boxes/display_options.php:57
1982
  #: app/features/mec/meta_boxes/display_options.php:312
1994
  #: app/features/mec/meta_boxes/display_options.php:2347
1995
  #: app/features/mec/meta_boxes/display_options.php:2478
1996
  #: app/features/mec/meta_boxes/display_options.php:2584
1997
+ #: app/features/popup/event.php:79
1998
  msgid "Start Date"
1999
  msgstr ""
2000
 
2001
  #: app/features/events.php:642 app/features/events.php:646
2002
+ #: app/features/events.php:3879 app/features/events.php:4187
2003
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2004
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2005
  #: app/features/mec/meta_boxes/display_options.php:73
2006
  #: app/features/mec/meta_boxes/display_options.php:328
2009
  #: app/features/mec/meta_boxes/display_options.php:788
2010
  #: app/features/mec/meta_boxes/display_options.php:1618
2011
  #: app/features/mec/meta_boxes/display_options.php:2363
2012
+ #: app/features/popup/event.php:96
2013
  msgid "End Date"
2014
  msgstr ""
2015
 
2016
+ #: app/features/events.php:669 app/features/fes/form.php:326
2017
+ #: app/features/popup/event.php:113
2018
  msgid "All-day Event"
2019
  msgstr ""
2020
 
2021
+ #: app/features/events.php:679 app/features/fes/form.php:329
2022
  msgid "Hide Event Time"
2023
  msgstr ""
2024
 
2025
+ #: app/features/events.php:689 app/features/fes/form.php:332
2026
  msgid "Hide Event End Time"
2027
  msgstr ""
2028
 
2029
  #: app/features/events.php:694 app/features/events.php:698
2030
+ #: app/features/fes/form.php:336
2031
  msgid "Notes on the time"
2032
  msgstr ""
2033
 
2034
+ #: app/features/events.php:699 app/features/fes/form.php:337
2035
  msgid ""
2036
  "It shows next to event time on the Single Event Page. You can enter notes "
2037
  "such as timezone in this field."
2038
  msgstr ""
2039
 
2040
+ #: app/features/events.php:711 app/features/fes/form.php:344
2041
  #, fuzzy
2042
  #| msgid "Time"
2043
  msgid "Timezone"
2048
  #: app/features/events.php:1793 app/features/events.php:1813
2049
  #: app/features/events.php:1868 app/features/events.php:2438
2050
  #: app/features/events.php:2561 app/features/events.php:2672
2051
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2052
  msgid "Inherit from global options"
2053
  msgstr ""
2054
 
2055
  #: app/features/events.php:725 app/features/events.php:728
2056
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2057
  #: app/features/mec/settings.php:858
2058
  msgid "Countdown Method"
2059
  msgstr ""
2060
 
2061
+ #: app/features/events.php:730 app/features/fes/form.php:363
2062
  #, fuzzy
2063
  #| msgid "Name"
2064
  msgid "Count to Event Start"
2065
  msgstr "Név"
2066
 
2067
+ #: app/features/events.php:731 app/features/fes/form.php:364
2068
  msgid "Count to Event End"
2069
  msgstr ""
2070
 
2071
+ #: app/features/events.php:737 app/features/fes/form.php:371
2072
  #: app/modules/weather/darksky.php:57
2073
  msgid "Visibility"
2074
  msgstr ""
2075
 
2076
+ #: app/features/events.php:740 app/features/fes/form.php:374
2077
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2078
  #, fuzzy
2079
  #| msgid "Event at this location"
2080
  msgid "Event Visibility"
2081
  msgstr "Esemény ezen a helyszínen"
2082
 
2083
+ #: app/features/events.php:741 app/features/fes/form.php:375
2084
  #, fuzzy
2085
  #| msgid "Bookings"
2086
  msgid "Show on Shortcodes"
2087
  msgstr "Foglalások"
2088
 
2089
+ #: app/features/events.php:742 app/features/fes/form.php:376
2090
  #, fuzzy
2091
  #| msgid "Bookings"
2092
  msgid "Hide on Shortcodes"
2093
  msgstr "Foglalások"
2094
 
2095
+ #: app/features/events.php:749 app/features/fes/form.php:384
2096
  msgid "Repeating"
2097
  msgstr ""
2098
 
2100
  msgid "Event Repeating (Recurring events)"
2101
  msgstr ""
2102
 
2103
+ #: app/features/events.php:762 app/features/fes/form.php:390
2104
  msgid "Repeats"
2105
  msgstr ""
2106
 
2107
+ #: app/features/events.php:770 app/features/fes/form.php:392
2108
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2109
+ #: app/skins/default_full_calendar/tpl.php:79
2110
  #: app/skins/full_calendar/tpl.php:140
2111
  msgid "Daily"
2112
  msgstr ""
2113
 
2114
+ #: app/features/events.php:777 app/features/fes/form.php:393
2115
+ #: app/libraries/skins.php:1772
2116
  msgid "Every Weekday"
2117
  msgstr ""
2118
 
2119
+ #: app/features/events.php:784 app/features/fes/form.php:394
2120
+ #: app/libraries/skins.php:1769
2121
  msgid "Every Weekend"
2122
  msgstr ""
2123
 
2124
+ #: app/features/events.php:791 app/features/fes/form.php:395
2125
  msgid "Certain Weekdays"
2126
  msgstr ""
2127
 
2128
+ #: app/features/events.php:798 app/features/fes/form.php:396
2129
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2130
  #: app/skins/full_calendar/tpl.php:139
2131
  msgid "Weekly"
2132
  msgstr ""
2133
 
2134
+ #: app/features/events.php:805 app/features/fes/form.php:397
2135
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2136
+ #: app/skins/default_full_calendar/tpl.php:77
2137
  #: app/skins/full_calendar/tpl.php:138
2138
  msgid "Monthly"
2139
  msgstr ""
2140
 
2141
+ #: app/features/events.php:812 app/features/fes/form.php:398
2142
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2143
+ #: app/skins/default_full_calendar/tpl.php:76
2144
  #: app/skins/full_calendar/tpl.php:137
2145
  msgid "Yearly"
2146
  msgstr ""
2147
 
2148
+ #: app/features/events.php:819 app/features/fes/form.php:399
2149
  msgid "Custom Days"
2150
  msgstr ""
2151
 
2152
+ #: app/features/events.php:826 app/features/fes/form.php:400
2153
  msgid "Advanced"
2154
  msgstr ""
2155
 
2156
+ #: app/features/events.php:831 app/features/fes/form.php:404
2157
  msgid "Repeat Interval"
2158
  msgstr ""
2159
 
2160
+ #: app/features/events.php:833 app/features/fes/form.php:405
2161
  msgid "Repeat interval"
2162
  msgstr ""
2163
 
2164
+ #: app/features/events.php:837 app/features/fes/form.php:408
2165
  msgid "Week Days"
2166
  msgstr ""
2167
 
2173
 
2174
  #: app/features/events.php:860 app/features/events.php:2101
2175
  #: app/features/events.php:2129 app/features/events.php:2343
2176
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2177
  #: app/features/ix/import_g_calendar.php:51
2178
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2179
  #: app/libraries/skins.php:1389
2184
  #: app/features/events.php:2085 app/features/events.php:2167
2185
  #: app/features/events.php:2332 app/features/events.php:2376
2186
  #: app/features/events.php:2449 app/features/events.php:2566
2187
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2188
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2189
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2190
  msgid "Add"
2191
  msgstr ""
2192
 
2193
+ #: app/features/events.php:877 app/features/fes/form.php:456
2194
  msgid "Custom Days Repeating"
2195
  msgstr ""
2196
 
2197
+ #: app/features/events.php:880 app/features/fes/form.php:459
2198
  msgid ""
2199
  "Add certain days to event occurrence dates. If you have a single day event, "
2200
  "start and end dates should be the same, If you have a multiple day event, "
2203
 
2204
  #: app/features/events.php:891 app/features/events.php:2105
2205
  #: app/features/events.php:2133 app/features/events.php:2347
2206
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2207
  msgid "End"
2208
  msgstr ""
2209
 
2210
+ #: app/features/events.php:968 app/features/fes/form.php:532
2211
  #, fuzzy
2212
  #| msgid "First name"
2213
  msgid "First"
2214
  msgstr "Keresztnév"
2215
 
2216
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2217
  #, fuzzy
2218
  #| msgid "seconds"
2219
  msgid "Second"
2220
  msgstr "másodperc"
2221
 
2222
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2223
  msgid "Third"
2224
  msgstr ""
2225
 
2226
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2227
  msgid "Fourth"
2228
  msgstr ""
2229
 
2230
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2231
  #, fuzzy
2232
  #| msgid "Last name"
2233
  msgid "Last"
2234
  msgstr "Vezetéknév"
2235
 
2236
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2237
  msgid "Ends Repeat"
2238
  msgstr ""
2239
 
2240
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2241
  msgid "Never"
2242
  msgstr ""
2243
 
2244
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2245
  msgid "On"
2246
  msgstr ""
2247
 
2248
  #: app/features/events.php:1227 app/features/events.php:1231
2249
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2250
  msgid "Occurrences times"
2251
  msgstr ""
2252
 
2256
  "10, the event will finish after 10 occurrences."
2257
  msgstr ""
2258
 
2259
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2260
  msgid "Show only one occurrence of this event"
2261
  msgstr ""
2262
 
2263
+ #: app/features/events.php:1277 app/features/events.php:4195
2264
+ #: app/features/fes/form.php:867
2265
  #: app/features/mec/meta_boxes/search_form.php:116
2266
  #: app/features/mec/meta_boxes/search_form.php:204
2267
  #: app/features/mec/meta_boxes/search_form.php:292
2285
  #: app/features/mec/notifications.php:1511
2286
  #: app/features/mec/notifications.php:1628
2287
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2288
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2289
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2290
  #: app/widgets/single.php:122
2291
  msgid "Event Cost"
2292
  msgstr ""
2293
 
2294
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2295
  msgid "Show the minimum price based on tickets"
2296
  msgstr ""
2297
 
2298
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2299
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2300
  #: app/libraries/main.php:646
2301
  msgid "Currency"
2302
  msgstr ""
2303
 
2304
  #: app/features/events.php:1310 app/features/events.php:1315
2305
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2306
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2307
  msgid "Currency Sign"
2308
  msgstr ""
2309
 
2310
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2311
  #: app/features/mec/settings.php:600
2312
  msgid "Default value will be \"currency\" if you leave it empty."
2313
  msgstr ""
2314
 
2315
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2316
  #: app/features/mec/settings.php:607
2317
  msgid "Currency Position"
2318
  msgstr ""
2319
 
2320
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2321
  #: app/features/mec/settings.php:610
2322
  msgid "$10 (Before)"
2323
  msgstr ""
2324
 
2325
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2326
  #: app/features/mec/settings.php:611
2327
  msgid "$ 10 (Before with Space)"
2328
  msgstr ""
2329
 
2330
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2331
  #: app/features/mec/settings.php:612
2332
  msgid "10$ (After)"
2333
  msgstr ""
2334
 
2335
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2336
  #: app/features/mec/settings.php:613
2337
  msgid "10 $ (After with Space)"
2338
  msgstr ""
2339
 
2340
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2341
  #: app/features/mec/settings.php:618
2342
  msgid "Thousand Separator"
2343
  msgstr ""
2344
 
2345
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2346
  #: app/features/mec/settings.php:624
2347
  msgid "Decimal Separator"
2348
  msgstr ""
2349
 
2350
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2351
  #: app/features/mec/settings.php:634
2352
  msgid "No decimal"
2353
  msgstr ""
2371
  msgid "Day 1"
2372
  msgstr ""
2373
 
2374
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2375
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2376
  msgid "Event Links"
2377
  msgstr ""
2378
 
2379
  #: app/features/events.php:1501 app/features/events.php:1509
2380
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2381
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2382
  #: app/libraries/main.php:7649
2383
  msgid "Event Link"
2384
  msgstr ""
2385
 
2386
  #: app/features/events.php:1504 app/features/events.php:1522
2387
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2388
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2389
  msgid "eg. http://yoursite.com/your-event"
2390
  msgstr ""
2391
 
2400
  msgid "URL Shortener"
2401
  msgstr ""
2402
 
2403
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2404
+ #: app/features/occurrences.php:530
2405
  msgid "More Information"
2406
  msgstr ""
2407
 
2408
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2409
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2410
  #: app/features/popup/shortcode.php:481
2411
  msgid "Current Window"
2412
  msgstr ""
2413
 
2414
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2415
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2416
  #: app/features/popup/shortcode.php:485
2417
  msgid "New Window"
2418
  msgstr ""
2419
 
2420
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2421
  msgid ""
2422
  "If you fill it, it will be shown in event details page as an optional link. "
2423
  "Insert full link including http(s)://"
2775
  msgstr "Keresztnév"
2776
 
2777
  #: app/features/events.php:1944 app/features/events.php:2211
2778
+ #: app/features/events.php:4182 app/features/fes.php:280
2779
  #: app/features/labels.php:183 app/features/locations.php:266
2780
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2781
  msgid "ID"
2782
  msgstr ""
2783
 
2786
  msgstr ""
2787
 
2788
  #: app/features/events.php:1956 app/features/events.php:2219
2789
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2790
  msgid "Start Time"
2791
  msgstr ""
2792
 
2793
  #: app/features/events.php:1970 app/features/events.php:2233
2794
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2795
  msgid "End Time"
2796
  msgstr ""
2797
 
2813
  #: app/features/events.php:2007 app/features/events.php:2011
2814
  #: app/features/events.php:2109 app/features/events.php:2136
2815
  #: app/features/events.php:2265 app/features/events.php:2268
2816
+ #: app/features/events.php:2349 app/features/events.php:4743
2817
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2818
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2819
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
2965
  msgid "Fixed Fields"
2966
  msgstr "Töltse ki az adatokat!"
2967
 
2968
+ #: app/features/events.php:2887 app/features/events.php:4737
2969
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
2970
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
2971
  msgid "Attendees"
2991
  msgstr ""
2992
 
2993
  #: app/features/events.php:3757 app/features/mec.php:1374
2994
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
2995
  msgid "Upcoming Events"
2996
  msgstr ""
2997
 
3052
  msgstr ""
3053
 
3054
  #: app/features/events.php:4068 app/features/events.php:4069
3055
+ #: app/features/events.php:4295
3056
  msgid "Duplicate"
3057
  msgstr ""
3058
 
3059
+ #: app/features/events.php:4189
3060
  msgid "Link"
3061
  msgstr ""
3062
 
3063
+ #: app/features/events.php:4191 app/features/locations.php:111
3064
  #: app/features/locations.php:181 app/features/locations.php:268
3065
  #: app/features/mec/meta_boxes/search_form.php:108
3066
  #: app/features/mec/meta_boxes/search_form.php:196
3078
  msgid "Address"
3079
  msgstr ""
3080
 
3081
+ #: app/features/events.php:4193
3082
  #, php-format
3083
  msgid "%s Tel"
3084
  msgstr ""
3085
 
3086
+ #: app/features/events.php:4194
3087
  #, php-format
3088
  msgid "%s Email"
3089
  msgstr ""
3090
 
3091
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3092
  #: app/features/mec/settings.php:876
3093
  msgid "Featured Image"
3094
  msgstr ""
3095
 
3096
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3097
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3098
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3099
  msgid "Tags"
3100
  msgstr ""
3101
 
3102
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3103
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3104
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3105
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3106
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3107
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3108
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3110
  msgid "Speakers"
3111
  msgstr ""
3112
 
3113
+ #: app/features/events.php:4448 app/features/fes.php:280
3114
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3115
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3116
  #: app/libraries/main.php:7592
3117
  msgid "Ticket"
3118
  msgstr ""
3119
 
3120
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3121
  msgid "Variations"
3122
  msgstr ""
3123
 
3124
+ #: app/features/events.php:4466 app/features/fes.php:356
3125
  msgid "Unknown"
3126
  msgstr ""
3127
 
3128
+ #: app/features/events.php:4494
3129
  msgid ""
3130
  "If you want to send an email, first select your attendees and then click in "
3131
  "the button below, please."
3132
  msgstr ""
3133
 
3134
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3135
  msgid "Send Email"
3136
  msgstr ""
3137
 
3138
+ #: app/features/events.php:4498
3139
  #, fuzzy
3140
  #| msgid "Attendees Form"
3141
  msgid "No Attendees Found!"
3142
  msgstr "Jelentkezési lap"
3143
 
3144
+ #: app/features/events.php:4800
3145
  #, fuzzy
3146
  #| msgid "Attendees Form"
3147
  msgid "No Bookings Found!"
3275
  msgid "The event published."
3276
  msgstr ""
3277
 
3278
+ #: app/features/fes/form.php:180
3279
  msgid "Go back to events list"
3280
  msgstr ""
3281
 
3282
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3283
  #: app/features/mec/settings.php:1171
3284
  msgid "Excerpt"
3285
  msgstr ""
3286
 
3287
+ #: app/features/fes/form.php:273
3288
  msgid "Optional Event Excerpt"
3289
  msgstr ""
3290
 
3291
+ #: app/features/fes/form.php:280
3292
  msgid ""
3293
  "This event is imported from Google calendar so if you modify it would "
3294
  "overwrite in the next import from Google."
3295
  msgstr ""
3296
 
3297
+ #: app/features/fes/form.php:409
3298
  #: app/features/mec/meta_boxes/display_options.php:1494
3299
  #: app/libraries/main.php:476
3300
  msgid "Monday"
3301
  msgstr ""
3302
 
3303
+ #: app/features/fes/form.php:410
3304
  #: app/features/mec/meta_boxes/display_options.php:1495
3305
  #: app/libraries/main.php:476
3306
  msgid "Tuesday"
3307
  msgstr ""
3308
 
3309
+ #: app/features/fes/form.php:411
3310
  #: app/features/mec/meta_boxes/display_options.php:1496
3311
  #: app/libraries/main.php:476
3312
  msgid "Wednesday"
3313
  msgstr ""
3314
 
3315
+ #: app/features/fes/form.php:412
3316
  #: app/features/mec/meta_boxes/display_options.php:1497
3317
  #: app/libraries/main.php:476
3318
  msgid "Thursday"
3319
  msgstr ""
3320
 
3321
+ #: app/features/fes/form.php:413
3322
  #: app/features/mec/meta_boxes/display_options.php:1498
3323
  #: app/libraries/main.php:476
3324
  msgid "Friday"
3325
  msgstr ""
3326
 
3327
+ #: app/features/fes/form.php:414
3328
  #: app/features/mec/meta_boxes/display_options.php:1499
3329
  #: app/libraries/main.php:476
3330
  msgid "Saturday"
3331
  msgstr ""
3332
 
3333
+ #: app/features/fes/form.php:415
3334
  #: app/features/mec/meta_boxes/display_options.php:1493
3335
  #: app/libraries/main.php:476
3336
  msgid "Sunday"
3337
  msgstr ""
3338
 
3339
+ #: app/features/fes/form.php:768
3340
  msgid ""
3341
  "The event will finish after certain repeats. For example if you set it to "
3342
  "10, the event will finish after 10 repeats."
3343
  msgstr ""
3344
 
3345
+ #: app/features/fes/form.php:792
3346
  msgid "Note to reviewer"
3347
  msgstr ""
3348
 
3349
+ #: app/features/fes/form.php:810
3350
  msgid "User Data"
3351
  msgstr ""
3352
 
3353
+ #: app/features/fes/form.php:813
3354
  msgid "eg. yourname@gmail.com"
3355
  msgstr ""
3356
 
3357
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3358
+ #: app/features/popup/event.php:190
3359
  msgid "eg. John Smith"
3360
  msgstr ""
3361
 
3362
+ #: app/features/fes/form.php:835
3363
  msgid ""
3364
  "If you fill it, it will replace the default event page link. Insert full "
3365
  "link including http(s)://"
3366
  msgstr ""
3367
 
3368
+ #: app/features/fes/form.php:958
3369
  msgid "Remove Image"
3370
  msgstr ""
3371
 
3372
+ #: app/features/fes/form.php:1048
3373
  msgid "Insert your desired tags, comma separated."
3374
  msgstr ""
3375
 
3376
+ #: app/features/fes/form.php:1070
3377
  msgid "Speakers Names"
3378
  msgstr ""
3379
 
3380
+ #: app/features/fes/form.php:1071
3381
  msgid "Separate names with commas: Justin, Chris"
3382
  msgstr ""
3383
 
3384
+ #: app/features/fes/form.php:1116
3385
  #, php-format
3386
  msgid "I accept the %s in order to submit an event."
3387
  msgstr ""
3388
 
3389
+ #: app/features/fes/form.php:1116
3390
  msgid "Privacy Policy"
3391
  msgstr ""
3392
 
3393
+ #: app/features/fes/form.php:1118
3394
  msgid "I accept the Privacy Policy in order to submit an event."
3395
  msgstr ""
3396
 
3397
+ #: app/features/fes/form.php:1124
3398
  #, fuzzy
3399
  #| msgid "Facebook Events"
3400
  msgid "Submit Event"
3473
  msgid "The events are imported successfully!"
3474
  msgstr ""
3475
 
3476
+ #: app/features/ix.php:1342
3477
  msgid "Third Party plugin is not installed and activated!"
3478
  msgstr ""
3479
 
3480
+ #: app/features/ix.php:1366
3481
  msgid "Third Party plugin is invalid!"
3482
  msgstr ""
3483
 
3484
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3485
  msgid "API key and Calendar ID are required!"
3486
  msgstr ""
3487
 
3488
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3489
  #, fuzzy
3490
  #| msgid "Please select some tickets!"
3491
  msgid "Please select events to import!"
3492
  msgstr "Kérjük, válasszon néhány jegyet!"
3493
 
3494
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3495
  msgid "API key and Group URL are required!"
3496
  msgstr ""
3497
 
3498
+ #: app/features/ix.php:4137
3499
  msgid "Check at Meetup"
3500
  msgstr ""
3501
 
3502
+ #: app/features/ix.php:4303
3503
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3504
  msgstr ""
3505
 
3506
+ #: app/features/ix.php:4326
3507
  #, php-format
3508
  msgid "All seems good! Please click %s to authenticate your app."
3509
  msgstr ""
3510
 
3511
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3512
  #: app/features/mec/settings.php:1496
3513
  msgid "here"
3514
  msgstr ""
3515
 
3516
+ #: app/features/ix.php:4381
3517
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3518
  msgstr ""
3519
 
3520
+ #: app/features/ix.php:4543
3521
  #, fuzzy, php-format
3522
  #| msgid "+ Add to Google Calendar"
3523
  msgid "%s events added to Google Calendar with success."
3524
  msgstr "+ Google Naptárba mentés"
3525
 
3526
+ #: app/features/ix.php:4544
3527
  #, php-format
3528
  msgid "%s Updated previously added events."
3529
  msgstr ""
3530
 
3531
+ #: app/features/ix.php:4545
3532
  #, php-format
3533
  msgid "%s events failed to add for following reasons: %s"
3534
  msgstr ""
3535
 
3536
+ #: app/features/ix.php:4577
3537
  msgid "Please insert your Facebook page's link."
3538
  msgstr ""
3539
 
3540
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3541
  msgid ""
3542
  "We were not able to recognize your Facebook page. Please check again and "
3543
  "provide a valid link."
3544
  msgstr ""
3545
 
3546
+ #: app/features/ix.php:4625
3547
  msgid "Please insert your facebook page's link."
3548
  msgstr ""
3549
 
3742
  msgid "Add to Google Calendar"
3743
  msgstr "Google Naptárba mentés"
3744
 
3745
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3746
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3747
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3748
  #: app/features/mec/single.php:604
3856
  msgid "Import all of your Facebook events into MEC."
3857
  msgstr ""
3858
 
3859
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
3860
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
3861
  msgid "Documentation"
3862
  msgstr ""
4132
  msgstr ""
4133
 
4134
  #: app/features/labels.php:79 app/features/locations.php:77
4135
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4136
  #: app/features/tag.php:77
4137
  #, php-format
4138
  msgid "← Back to %s"
4139
  msgstr ""
4140
 
4141
  #: app/features/labels.php:80 app/features/locations.php:78
4142
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4143
  #: app/features/tag.php:78
4144
  #, php-format
4145
  msgid "no %s found."
4180
  msgstr ""
4181
 
4182
  #: app/features/labels.php:186 app/features/locations.php:269
4183
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4184
  #: app/modules/booking/steps/tickets.php:172
4185
  msgid "Count"
4186
  msgstr ""
4196
  msgstr ""
4197
 
4198
  #: app/features/locations.php:59 app/features/mec.php:526
4199
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4200
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4201
  #: app/libraries/main.php:7623
4202
  msgid "Locations"
4207
  msgstr ""
4208
 
4209
  #: app/features/locations.php:131 app/features/locations.php:197
4210
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4211
  msgid "Latitude"
4212
  msgstr ""
4213
 
4216
  msgstr ""
4217
 
4218
  #: app/features/locations.php:139 app/features/locations.php:201
4219
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4220
  msgid "Longitude"
4221
  msgstr ""
4222
 
4237
 
4238
  #: app/features/locations.php:156 app/features/locations.php:210
4239
  #: app/features/organizers.php:128 app/features/organizers.php:161
4240
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4241
  msgid "Thumbnail"
4242
  msgstr ""
4243
 
4244
  #: app/features/locations.php:329 app/features/occurrences.php:460
4245
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4246
  #, php-format
4247
  msgid "Event Main %s"
4248
  msgstr ""
4249
 
4250
  #: app/features/locations.php:332 app/features/occurrences.php:464
4251
+ #: app/features/popup/event.php:121
4252
  msgid "Hide location"
4253
  msgstr ""
4254
 
4255
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4256
  msgid "Insert a new location"
4257
  msgstr ""
4258
 
4260
  msgid "Choose one of saved locations or insert new one below."
4261
  msgstr ""
4262
 
4263
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4264
  msgid "Location Name"
4265
  msgstr ""
4266
 
4267
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4268
  msgid "eg. City Hall"
4269
  msgstr ""
4270
 
4271
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4272
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4273
  msgid "Event Location"
4274
  msgstr ""
4275
 
4276
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4277
  msgid "eg. City hall, Manhattan, New York"
4278
  msgstr ""
4279
 
4280
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4281
  msgid "Latitude/Longitude"
4282
  msgstr ""
4283
 
4284
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4285
  msgid ""
4286
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4287
  "to convert the location address to geopoint, Latitude and Longitude are the "
4290
  "the location on the map to find lat long coordinates."
4291
  msgstr ""
4292
 
4293
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4294
  msgid "Get Latitude and Longitude"
4295
  msgstr ""
4296
 
4297
  #: app/features/locations.php:392 app/features/organizers.php:315
4298
+ #: app/features/popup/event.php:209
4299
  msgid "Choose image"
4300
  msgstr ""
4301
 
4302
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4303
+ #: app/features/popup/event.php:140
4304
  msgid "Don't show map in single event page"
4305
  msgstr ""
4306
 
4307
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4308
  #: app/libraries/main.php:7654
4309
  #, fuzzy
4310
  #| msgid "Location"
4311
  msgid "Other Locations"
4312
  msgstr "helyszín"
4313
 
4314
+ #: app/features/locations.php:413
4315
  msgid ""
4316
  "You can select extra locations in addition to main location if you like."
4317
  msgstr ""
4379
  msgid "Support"
4380
  msgstr ""
4381
 
4382
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4383
  #: app/features/mec/meta_boxes/filter.php:71
4384
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4385
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4387
  msgstr ""
4388
 
4389
  #: app/features/mec.php:536 app/features/mec.php:596
4390
+ #: app/features/mec/dashboard.php:218
4391
  msgid "Shortcodes"
4392
  msgstr ""
4393
 
4585
  msgstr ""
4586
 
4587
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4588
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4589
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4590
  msgid "Version"
4591
  msgstr ""
4609
  msgstr ""
4610
 
4611
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4612
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4613
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4614
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4615
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4616
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4617
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5150
  msgid "It applies only to the orders that are related to MEC."
5151
  msgstr ""
5152
 
5153
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5154
  msgid "After Add to Cart"
5155
  msgstr ""
5156
 
5157
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5158
  #, fuzzy
5159
  #| msgid "Get Direction"
5160
  msgid "Redirect to Cart"
5161
  msgstr "Útvonaltervezés"
5162
 
5163
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5164
  #, fuzzy
5165
  #| msgid "Get Direction"
5166
  msgid "Redirect to Checkout"
5167
  msgstr "Útvonaltervezés"
5168
 
5169
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5170
  msgid "Optional View Cart Button"
5171
  msgstr ""
5172
 
5173
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5174
  msgid "Optional Checkout Button"
5175
  msgstr ""
5176
 
5226
  "(Stripe) got canceled."
5227
  msgstr ""
5228
 
5229
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5230
+ #, fuzzy
5231
+ #| msgid "Name"
5232
+ msgid "MEC Cart"
5233
+ msgstr "Név"
5234
+
5235
+ #: app/features/mec/booking.php:1118
5236
  msgid "Use MEC Cart System"
5237
  msgstr ""
5238
 
5239
+ #: app/features/mec/booking.php:1120
5240
  msgid ""
5241
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5242
  "adding a simple cart and checkout system to your website."
5243
  msgstr ""
5244
 
5245
+ #: app/features/mec/booking.php:1122
5246
  msgid "You cannot use following MEC features while using MEC Cart."
5247
  msgstr ""
5248
 
5249
+ #: app/features/mec/booking.php:1124
5250
  msgid "WooCommerce as Payment Gateway"
5251
  msgstr ""
5252
 
5253
+ #: app/features/mec/booking.php:1125
5254
  #, fuzzy
5255
  #| msgid "Facebook Events"
5256
  msgid "Currency Per Event"
5257
  msgstr "Facebook események"
5258
 
5259
+ #: app/features/mec/booking.php:1126
5260
  #, fuzzy
5261
  #| msgid "Facebook Events"
5262
  msgid "Disable Gateways Per Event"
5263
  msgstr "Facebook események"
5264
 
5265
+ #: app/features/mec/booking.php:1127
5266
  msgid "Stripe Connect Gateway"
5267
  msgstr ""
5268
 
5269
+ #: app/features/mec/booking.php:1128
5270
  msgid "Pay By WooCommerce Gateway"
5271
  msgstr ""
5272
 
5273
+ #: app/features/mec/booking.php:1129
5274
  #, fuzzy
5275
  #| msgid "Organizer"
5276
  msgid "Organizer Payment Module"
5277
  msgstr "Szervező"
5278
 
5279
+ #: app/features/mec/booking.php:1133
5280
  #, fuzzy
5281
  #| msgid "Facebook Events"
5282
  msgid "Cart Page"
5283
  msgstr "Facebook események"
5284
 
5285
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5286
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5287
  #, php-format
5288
  msgid "Put %s shortcode into the page."
5289
  msgstr ""
5290
 
5291
+ #: app/features/mec/booking.php:1145
5292
  #, fuzzy
5293
  #| msgid "Checkout"
5294
  msgid "Checkout Page"
5295
  msgstr "Ellenőrzés"
5296
 
5297
+ #: app/features/mec/booking.php:1171
5298
  #, fuzzy
5299
  #| msgid "Bookings"
5300
  msgid "Enable Cart Invoice"
5301
  msgstr "Foglalások"
5302
 
5303
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5304
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5305
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5306
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5308
  msgid "Saved"
5309
  msgstr ""
5310
 
5311
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5312
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5313
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5314
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5316
  msgid "Settings Saved!"
5317
  msgstr ""
5318
 
5319
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5320
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5321
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5322
  msgid "Please Refresh Page"
5332
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5333
  msgstr ""
5334
 
5335
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5336
  #, php-format
5337
  msgid ""
5338
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5340
  "Spots, etc you should upgrade to the Pro version."
5341
  msgstr ""
5342
 
5343
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5344
  msgid "lite"
5345
  msgstr ""
5346
 
5347
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5348
  #: app/features/mec/support.php:126
5349
  msgid "GO PREMIUM"
5350
  msgstr ""
5351
 
5352
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5353
  msgid "Getting started with Modern Events Calendar"
5354
  msgstr ""
5355
 
5356
+ #: app/features/mec/dashboard.php:113
5357
  msgid ""
5358
  "In this short video, you can learn how to make an event and put a calendar "
5359
  "on your website. Please watch this 2 minutes video to the end."
5360
  msgstr ""
5361
 
5362
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5363
  msgid "License Activation"
5364
  msgstr ""
5365
 
5366
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5367
  msgid "Activate Addons"
5368
  msgstr ""
5369
 
5370
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5371
  msgid "You cannot access this section."
5372
  msgstr ""
5373
 
5374
+ #: app/features/mec/dashboard.php:159
5375
  msgid ""
5376
  "In order to use all plugin features and options, please enter your purchase "
5377
  "code."
5378
  msgstr ""
5379
 
5380
+ #: app/features/mec/dashboard.php:267
5381
  msgid "Popular Gateways"
5382
  msgstr ""
5383
 
5384
+ #: app/features/mec/dashboard.php:325
5385
  msgid "Change Log"
5386
  msgstr ""
5387
 
6824
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
6825
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
6826
  #: app/features/popup/settings.php:272 app/features/search.php:109
6827
+ #: app/features/speakers.php:66 app/features/speakers.php:292
6828
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
6829
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
6830
  #: app/modules/speakers/details.php:18
8077
  msgid "Please, insert comma to separate reminder hours."
8078
  msgstr ""
8079
 
8080
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8081
  #: app/libraries/main.php:705
8082
  msgid "New Event"
8083
  msgstr ""
10056
  msgid "Choose one of saved locations."
10057
  msgstr ""
10058
 
10059
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
10060
+ #: app/features/popup/event.php:171
10061
  msgid "Hide organizer"
10062
  msgstr ""
10063
 
10064
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
10065
+ #: app/features/popup/event.php:180
10066
  msgid "Choose one of saved organizers or insert new one below."
10067
  msgstr ""
10068
 
10075
  msgstr ""
10076
 
10077
  #: app/features/organizers.php:120 app/features/organizers.php:157
10078
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
10079
  msgid "Link to organizer page"
10080
  msgstr ""
10081
 
10087
  msgid "Contact info"
10088
  msgstr ""
10089
 
10090
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
10091
  msgid "Insert a new organizer"
10092
  msgstr ""
10093
 
10094
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
10095
  msgid "Phone number."
10096
  msgstr ""
10097
 
10098
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
10099
  msgid "eg. +1 (234) 5678"
10100
  msgstr ""
10101
 
10102
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
10103
  msgid "Email address."
10104
  msgstr ""
10105
 
10106
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
10107
  msgid "eg. john@smith.com"
10108
  msgstr "például john@smith.com"
10109
 
10110
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
10111
  msgid "eg. https://webnus.net"
10112
  msgstr ""
10113
 
10121
  "You can select extra organizers in addition to main organizer if you like."
10122
  msgstr ""
10123
 
10124
+ #: app/features/popup/event.php:60
10125
  msgid "Adding an Event..."
10126
  msgstr ""
10127
 
10128
+ #: app/features/popup/event.php:68
10129
  #, fuzzy
10130
  #| msgid "Name"
10131
  msgid "Event Name"
10132
  msgstr "Név"
10133
 
10134
+ #: app/features/popup/event.php:69
10135
  msgid "Event name is required"
10136
  msgstr ""
10137
 
10138
+ #: app/features/popup/event.php:130
10139
  msgid "Choose one of saved locations or insert new one."
10140
  msgstr ""
10141
 
10142
+ #: app/features/popup/event.php:134
10143
  #, fuzzy
10144
  #| msgid "Location"
10145
  msgid "Add Location"
10146
  msgstr "helyszín"
10147
 
10148
+ #: app/features/popup/event.php:184
10149
  #, fuzzy
10150
  #| msgid "Organizer"
10151
  msgid "Add Organizer"
10152
  msgstr "Szervező"
10153
 
10154
+ #: app/features/popup/event.php:224
10155
  #, fuzzy
10156
  #| msgid "Category"
10157
  msgid "All Categories"
10158
  msgstr "kategória"
10159
 
10160
+ #: app/features/popup/event.php:225
10161
  msgid "Most Used"
10162
  msgstr ""
10163
 
10164
+ #: app/features/popup/event.php:236
10165
  #, fuzzy
10166
  #| msgid "Category"
10167
  msgid "Add New Category"
10168
  msgstr "kategória"
10169
 
10170
+ #: app/features/popup/event.php:247
10171
  msgid "Set Featured Image"
10172
  msgstr ""
10173
 
10174
+ #: app/features/popup/event.php:257
10175
  msgid "Your Event Has Been Created."
10176
  msgstr ""
10177
 
10178
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
10179
  #: app/features/popup/shortcode.php:553
10180
  msgid "Prev"
10181
  msgstr ""
10182
 
10183
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
10184
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
10185
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
10186
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
10354
  msgid "No search result."
10355
  msgstr ""
10356
 
10357
+ #: app/features/speakers.php:118 app/features/speakers.php:203
10358
+ #: app/features/speakers.php:293
10359
  msgid "Job Title"
10360
  msgstr ""
10361
 
10362
+ #: app/features/speakers.php:121 app/features/speakers.php:204
10363
  msgid "Insert speaker job title."
10364
  msgstr ""
10365
 
10366
+ #: app/features/speakers.php:129 app/features/speakers.php:208
10367
  msgid "Insert speaker phone number."
10368
  msgstr ""
10369
 
10370
+ #: app/features/speakers.php:137 app/features/speakers.php:212
10371
  msgid "Insert speaker email address."
10372
  msgstr ""
10373
 
10374
+ #: app/features/speakers.php:145 app/features/speakers.php:216
10375
  msgid "Insert URL of Website"
10376
  msgstr ""
10377
 
10378
+ #: app/features/speakers.php:150 app/features/speakers.php:219
10379
  #, fuzzy
10380
  #| msgid "Facebook Events"
10381
  msgid "Facebook Page"
10382
  msgstr "Facebook események"
10383
 
10384
+ #: app/features/speakers.php:153 app/features/speakers.php:220
10385
  msgid "Insert URL of Facebook Page"
10386
  msgstr ""
10387
 
10388
+ #: app/features/speakers.php:158 app/features/speakers.php:223
10389
  msgid "Instagram"
10390
  msgstr ""
10391
 
10392
+ #: app/features/speakers.php:161 app/features/speakers.php:224
10393
  msgid "Insert URL of Instagram"
10394
  msgstr ""
10395
 
10396
+ #: app/features/speakers.php:166 app/features/speakers.php:227
10397
  msgid "LinkedIn"
10398
  msgstr ""
10399
 
10400
+ #: app/features/speakers.php:169
10401
  msgid "Insert URL of LinkedIn"
10402
  msgstr ""
10403
 
10404
+ #: app/features/speakers.php:174 app/features/speakers.php:231
10405
  msgid "Twitter Page"
10406
  msgstr ""
10407
 
10408
+ #: app/features/speakers.php:177 app/features/speakers.php:232
10409
  msgid "Insert URL of Twitter Page"
10410
  msgstr ""
10411
 
10412
+ #: app/features/speakers.php:228
10413
  msgid "Insert URL of linkedin"
10414
  msgstr ""
10415
 
10416
+ #: app/features/speakers.php:353
10417
  msgid "Sorry, You must insert speaker name!"
10418
  msgstr ""
10419
 
10420
+ #: app/features/speakers.php:402
10421
  msgid ""
10422
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
10423
  "section and speaker widget section!"
10502
  msgid "Upgrade to Pro Version"
10503
  msgstr ""
10504
 
10505
+ #: app/libraries/factory.php:232
10506
  msgctxt "plugin link"
10507
  msgid "Settings"
10508
  msgstr ""
10509
 
10510
+ #: app/libraries/factory.php:237
10511
  msgctxt "plugin link"
10512
  msgid "Upgrade"
10513
  msgstr ""
10514
 
10515
+ #: app/libraries/factory.php:391
10516
  msgid "day"
10517
  msgstr ""
10518
 
10519
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
10520
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
10521
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
10522
  msgid "days"
10523
  msgstr "Nap"
10524
 
10525
+ #: app/libraries/factory.php:393
10526
  msgid "hour"
10527
  msgstr ""
10528
 
10529
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
10530
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
10531
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
10532
  msgid "hours"
10533
  msgstr "óra"
10534
 
10535
+ #: app/libraries/factory.php:395
10536
  msgid "minute"
10537
  msgstr ""
10538
 
10539
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
10540
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
10541
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
10542
  msgid "minutes"
10543
  msgstr "perc"
10544
 
10545
+ #: app/libraries/factory.php:397
10546
  msgid "second"
10547
  msgstr ""
10548
 
10549
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
10550
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
10551
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
10552
  msgid "seconds"
10553
  msgstr "másodperc"
10554
 
10555
+ #: app/libraries/factory.php:475
10556
  msgid "MEC Single Sidebar"
10557
  msgstr ""
10558
 
10559
+ #: app/libraries/factory.php:476
10560
  msgid "Custom sidebar for single and modal page of MEC."
10561
  msgstr ""
10562
 
10563
+ #: app/libraries/factory.php:1197
10564
  msgid "Notice:"
10565
  msgstr ""
10566
 
10567
+ #: app/libraries/factory.php:1198
10568
  msgid "This update includes only bug fixes."
10569
  msgstr ""
10570
 
10714
  msgid "%s Form"
10715
  msgstr ""
10716
 
 
 
 
 
 
 
10717
  #: app/libraries/main.php:726
10718
  msgid "Only For Bookers"
10719
  msgstr ""
11442
  msgid "End at: %s - %s"
11443
  msgstr ""
11444
 
11445
+ #: app/libraries/skins.php:1777
 
 
 
 
 
11446
  #, fuzzy
11447
  #| msgid "Facebook Events"
11448
  msgid "Repeating Event"
languages/modern-events-calendar-lite-it_IT.mo CHANGED
Binary file
languages/modern-events-calendar-lite-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:28+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -179,7 +179,7 @@ msgid "Canceled"
179
  msgstr "Cancellato"
180
 
181
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
182
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
183
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
184
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
185
  #: app/features/mec/notifications.php:1922
@@ -217,14 +217,14 @@ msgstr "Nome"
217
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
218
  #: app/features/autoemails.php:60 app/features/events.php:606
219
  #: app/features/events.php:2650 app/features/events.php:2717
220
- #: app/features/events.php:2806 app/features/events.php:4443
221
- #: app/features/fes.php:280 app/features/fes/form.php:810
222
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
223
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
224
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
225
  #: app/features/organizers.php:112 app/features/organizers.php:153
226
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
227
- #: app/features/speakers.php:205 app/libraries/main.php:653
228
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
229
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
230
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -384,8 +384,8 @@ msgstr "Data"
384
  #: app/features/events.php:2808 app/features/mec/booking.php:800
385
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
386
  #: app/features/organizers.php:104 app/features/organizers.php:149
387
- #: app/features/speakers.php:120 app/features/speakers.php:201
388
- #: app/features/speakers.php:288 app/libraries/main.php:4252
389
  msgid "Tel"
390
  msgstr "Tel"
391
 
@@ -531,6 +531,11 @@ msgstr ""
531
  msgid "Agreement"
532
  msgstr ""
533
 
 
 
 
 
 
534
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
535
  #, php-format
536
  msgid "Instead of %s, the page title with a link will be show."
@@ -708,8 +713,8 @@ msgstr "Puoi inserire più destinatari email separati da virgola."
708
  #: app/features/events.php:1843 app/features/events.php:2014
709
  #: app/features/events.php:2029 app/features/events.php:2271
710
  #: app/features/events.php:2283 app/features/events.php:2476
711
- #: app/features/events.php:2513 app/features/fes/form.php:458
712
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
713
  #: app/features/locations.php:341 app/features/mec/booking.php:113
714
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
715
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -786,9 +791,9 @@ msgstr "Puoi inserire più destinatari email separati da virgola."
786
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
787
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
788
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
789
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
790
- #: app/features/organizers.php:289 app/features/popup/event.php:128
791
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
792
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
793
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
794
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -952,8 +957,8 @@ msgstr ""
952
 
953
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
954
  #: app/features/events.php:432 app/features/events.php:1283
955
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
956
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
957
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
958
  #: app/skins/single.php:1126 app/skins/single/default.php:213
959
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1032,7 +1037,7 @@ msgid "How to set label"
1032
  msgstr ""
1033
 
1034
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1035
- #: app/features/events.php:4195 app/features/fes/form.php:998
1036
  #: app/features/labels.php:61 app/features/labels.php:227
1037
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1038
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1068,7 +1073,7 @@ msgid "How to set location"
1068
  msgstr "Nascondi luogo"
1069
 
1070
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1071
- #: app/features/events.php:3876 app/features/events.php:4188
1072
  #: app/features/locations.php:58 app/features/locations.php:267
1073
  #: app/features/locations.php:329 app/features/locations.php:331
1074
  #: app/features/locations.php:340
@@ -1088,7 +1093,7 @@ msgstr "Nascondi luogo"
1088
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1089
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1090
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1091
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1092
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1093
  #: app/features/search.php:97 app/libraries/main.php:3020
1094
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1102,7 +1107,7 @@ msgstr "Luogo"
1102
 
1103
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1104
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1105
- #: app/features/speakers.php:136 app/features/speakers.php:209
1106
  #: app/skins/single.php:1406 app/skins/single.php:1473
1107
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1108
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1125,7 +1130,7 @@ msgstr ""
1125
 
1126
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1127
  #: app/features/events.php:1519 app/features/events.php:1532
1128
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1129
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1130
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1131
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1176,8 +1181,8 @@ msgstr "Nascondi organizzatore"
1176
 
1177
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1178
  #: app/features/events.php:431 app/features/events.php:3877
1179
- #: app/features/events.php:4190 app/features/events.php:4191
1180
- #: app/features/events.php:4192
1181
  #: app/features/mec/meta_boxes/display_options.php:1660
1182
  #: app/features/mec/meta_boxes/search_form.php:80
1183
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1192,12 +1197,12 @@ msgstr "Nascondi organizzatore"
1192
  #: app/features/mec/meta_boxes/search_form.php:983
1193
  #: app/features/mec/meta_boxes/search_form.php:1070
1194
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1195
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1196
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1197
  #: app/features/organizers.php:58 app/features/organizers.php:208
1198
  #: app/features/organizers.php:277 app/features/organizers.php:279
1199
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1200
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1201
  #: app/features/popup/settings.php:263 app/features/search.php:103
1202
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1203
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1319,8 +1324,8 @@ msgstr "Ora"
1319
  #: app/features/booking/calendar_novel.php:145
1320
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1321
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1322
- #: app/libraries/render.php:554 app/libraries/render.php:758
1323
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1324
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1325
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1326
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1386,7 +1391,7 @@ msgstr "Nessun evento trovato!"
1386
 
1387
  #: app/features/autoemails.php:74 app/features/events.php:230
1388
  #: app/features/labels.php:72 app/features/locations.php:70
1389
- #: app/features/organizers.php:70 app/features/speakers.php:72
1390
  #: app/features/tag.php:70
1391
  #, php-format
1392
  msgid "Edit %s"
@@ -1452,7 +1457,7 @@ msgstr "Di default è 6"
1452
  msgid "Go to events page"
1453
  msgstr "Mostra Google Map sulla pagina dell'evento"
1454
 
1455
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1456
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1457
  #: app/features/wc.php:91 app/libraries/main.php:3072
1458
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1534,7 +1539,7 @@ msgstr "Prenotazione"
1534
  msgid "Back to Cart"
1535
  msgstr "Torna alla lista eventi."
1536
 
1537
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1538
  #: app/features/mec/settings.php:907
1539
  msgid "Event Color"
1540
  msgstr "Colore Evento"
@@ -1546,8 +1551,8 @@ msgid "Recent Colors"
1546
  msgstr "Colore Evento"
1547
 
1548
  #: app/features/contextual.php:55 app/features/mec.php:546
1549
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1550
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1551
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1552
  #: app/libraries/main.php:738
1553
  msgid "Settings"
@@ -1661,7 +1666,7 @@ msgid "Event Details/Single Event Page"
1661
  msgstr "Dettaglii evento/Pagina singola evento"
1662
 
1663
  #: app/features/contextual.php:166 app/features/events.php:1298
1664
- #: app/features/fes/form.php:883
1665
  msgid "Currency Options"
1666
  msgstr "Opzioni valuta"
1667
 
@@ -1753,8 +1758,8 @@ msgid "Public File to Download"
1753
  msgstr ""
1754
 
1755
  #: app/features/dlfile.php:297 app/features/events.php:3874
1756
- #: app/features/events.php:4181 app/features/events.php:4730
1757
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1758
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1759
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1760
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1763,7 +1768,7 @@ msgid "Title"
1763
  msgstr "Titolo"
1764
 
1765
  #: app/features/dlfile.php:301 app/features/events.php:1988
1766
- #: app/features/events.php:2248 app/features/events.php:4182
1767
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1768
  #: app/libraries/hourlyschedule.php:152
1769
  msgid "Description"
@@ -1810,7 +1815,7 @@ msgid "Before"
1810
  msgstr "Prima €10"
1811
 
1812
  #: app/features/emails/details.php:35 app/features/events.php:1223
1813
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1814
  msgid "After"
1815
  msgstr "Dopo"
1816
 
@@ -1821,7 +1826,7 @@ msgid "event occurrence."
1821
  msgstr "Prossimo avvenimento"
1822
 
1823
  #: app/features/emails/details.php:40 app/features/events.php:192
1824
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1825
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1826
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1827
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1842,11 +1847,11 @@ msgstr ""
1842
  msgid "Add Event"
1843
  msgstr "Aggiungi Evento"
1844
 
1845
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1846
  msgid "Add New Event"
1847
  msgstr "Aggiungi nuovo Evento"
1848
 
1849
- #: app/features/events.php:196 app/features/ix.php:4573
1850
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1851
  #: app/skins/map/tpl.php:93
1852
  msgid "No events found!"
@@ -1857,7 +1862,7 @@ msgid "Edit Event"
1857
  msgstr ""
1858
 
1859
  #: app/features/events.php:199 app/features/fes/list.php:100
1860
- #: app/features/popup/event.php:254
1861
  msgid "View Event"
1862
  msgstr "Visualizza Evento"
1863
 
@@ -1866,7 +1871,7 @@ msgid "No events found in Trash!"
1866
  msgstr "Nessun evento trovato nel cestino!"
1867
 
1868
  #: app/features/events.php:219 app/features/events.php:3831
1869
- #: app/features/events.php:4196 app/features/fes/form.php:972
1870
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1871
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1872
  #: app/libraries/main.php:7619
@@ -1875,49 +1880,49 @@ msgstr "Categorie"
1875
 
1876
  #: app/features/events.php:229 app/features/labels.php:71
1877
  #: app/features/locations.php:69 app/features/organizers.php:69
1878
- #: app/features/speakers.php:71 app/features/tag.php:69
1879
  #, php-format
1880
  msgid "All %s"
1881
  msgstr ""
1882
 
1883
  #: app/features/events.php:231 app/features/labels.php:73
1884
  #: app/features/locations.php:71 app/features/organizers.php:71
1885
- #: app/features/speakers.php:73 app/features/tag.php:71
1886
  #, php-format
1887
  msgid "View %s"
1888
  msgstr ""
1889
 
1890
  #: app/features/events.php:232 app/features/labels.php:74
1891
  #: app/features/locations.php:72 app/features/organizers.php:72
1892
- #: app/features/speakers.php:74 app/features/tag.php:72
1893
  #, php-format
1894
  msgid "Update %s"
1895
  msgstr ""
1896
 
1897
  #: app/features/events.php:233 app/features/labels.php:75
1898
  #: app/features/locations.php:73 app/features/organizers.php:73
1899
- #: app/features/speakers.php:75 app/features/tag.php:73
1900
  #, php-format
1901
  msgid "Add New %s"
1902
  msgstr ""
1903
 
1904
  #: app/features/events.php:234 app/features/labels.php:76
1905
  #: app/features/locations.php:74 app/features/organizers.php:74
1906
- #: app/features/speakers.php:76 app/features/tag.php:74
1907
  #, php-format
1908
  msgid "New %s Name"
1909
  msgstr ""
1910
 
1911
  #: app/features/events.php:235 app/features/labels.php:77
1912
  #: app/features/locations.php:75 app/features/organizers.php:75
1913
- #: app/features/speakers.php:77 app/features/tag.php:75
1914
  #, php-format
1915
  msgid "Popular %s"
1916
  msgstr ""
1917
 
1918
  #: app/features/events.php:236 app/features/labels.php:78
1919
  #: app/features/locations.php:76 app/features/organizers.php:76
1920
- #: app/features/speakers.php:78 app/features/tag.php:76
1921
  #, php-format
1922
  msgid "Search %s"
1923
  msgstr ""
@@ -1947,7 +1952,7 @@ msgstr ""
1947
  #: app/features/events.php:278 app/features/events.php:336
1948
  #: app/features/locations.php:161 app/features/locations.php:213
1949
  #: app/features/organizers.php:133 app/features/organizers.php:164
1950
- #: app/features/speakers.php:181 app/features/speakers.php:232
1951
  msgid "Upload/Add image"
1952
  msgstr "Carica/Aggiungi immagine"
1953
 
@@ -1956,7 +1961,7 @@ msgstr "Carica/Aggiungi immagine"
1956
  #: app/features/locations.php:393 app/features/locations.php:400
1957
  #: app/features/organizers.php:134 app/features/organizers.php:165
1958
  #: app/features/organizers.php:316 app/features/organizers.php:323
1959
- #: app/features/speakers.php:182 app/features/speakers.php:233
1960
  msgid "Remove image"
1961
  msgstr "Rimuovi immagine"
1962
 
@@ -1976,7 +1981,7 @@ msgstr "Dettaglio Evento"
1976
  msgid "Date And Time"
1977
  msgstr "Data e Ora"
1978
 
1979
- #: app/features/events.php:425 app/features/fes/form.php:384
1980
  msgid "Event Repeating"
1981
  msgstr "Ripetizione dell'evento"
1982
 
@@ -2021,10 +2026,10 @@ msgid "Guest Data"
2021
  msgstr "Dati dell'ospite"
2022
 
2023
  #: app/features/events.php:605 app/features/events.php:2641
2024
- #: app/features/events.php:4440 app/features/fes.php:280
2025
- #: app/features/fes/form.php:814 app/features/labels.php:184
2026
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2027
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2028
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2029
  msgid "Name"
2030
  msgstr "Nome"
@@ -2035,13 +2040,13 @@ msgid ""
2035
  "overwrite in the next import from Google."
2036
  msgstr ""
2037
 
2038
- #: app/features/events.php:619 app/features/fes/form.php:282
2039
  msgid "Date and Time"
2040
  msgstr "Data e Ora"
2041
 
2042
  #: app/features/events.php:622 app/features/events.php:626
2043
- #: app/features/events.php:3878 app/features/events.php:4183
2044
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2045
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2046
  #: app/features/mec/meta_boxes/display_options.php:57
2047
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2059,13 +2064,13 @@ msgstr "Data e Ora"
2059
  #: app/features/mec/meta_boxes/display_options.php:2347
2060
  #: app/features/mec/meta_boxes/display_options.php:2478
2061
  #: app/features/mec/meta_boxes/display_options.php:2584
2062
- #: app/features/popup/event.php:77
2063
  msgid "Start Date"
2064
  msgstr "Data di inizio"
2065
 
2066
  #: app/features/events.php:642 app/features/events.php:646
2067
- #: app/features/events.php:3879 app/features/events.php:4185
2068
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2069
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2070
  #: app/features/mec/meta_boxes/display_options.php:73
2071
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2074,33 +2079,33 @@ msgstr "Data di inizio"
2074
  #: app/features/mec/meta_boxes/display_options.php:788
2075
  #: app/features/mec/meta_boxes/display_options.php:1618
2076
  #: app/features/mec/meta_boxes/display_options.php:2363
2077
- #: app/features/popup/event.php:94
2078
  msgid "End Date"
2079
  msgstr "Data di fine"
2080
 
2081
- #: app/features/events.php:669 app/features/fes/form.php:324
2082
- #: app/features/popup/event.php:111
2083
  #, fuzzy
2084
  #| msgid "All Day Event"
2085
  msgid "All-day Event"
2086
  msgstr "Evento giornaliero"
2087
 
2088
- #: app/features/events.php:679 app/features/fes/form.php:327
2089
  msgid "Hide Event Time"
2090
  msgstr "Nascondi ora dell'evento"
2091
 
2092
- #: app/features/events.php:689 app/features/fes/form.php:330
2093
  msgid "Hide Event End Time"
2094
  msgstr "Nascondi ora di fine dell'evento"
2095
 
2096
  #: app/features/events.php:694 app/features/events.php:698
2097
- #: app/features/fes/form.php:334
2098
  #, fuzzy
2099
  #| msgid "Note to reviewer"
2100
  msgid "Notes on the time"
2101
  msgstr "Note per il revisore"
2102
 
2103
- #: app/features/events.php:699 app/features/fes/form.php:335
2104
  #, fuzzy
2105
  #| msgid ""
2106
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2112,7 +2117,7 @@ msgstr ""
2112
  "Mostra il successivo all'ora dell'evento sul calendario. E' possibile "
2113
  "inserire in questo campo Timezone etc."
2114
 
2115
- #: app/features/events.php:711 app/features/fes/form.php:342
2116
  #, fuzzy
2117
  #| msgid "Timezone: %s"
2118
  msgid "Timezone"
@@ -2123,55 +2128,55 @@ msgstr "Fuso orario: %s"
2123
  #: app/features/events.php:1793 app/features/events.php:1813
2124
  #: app/features/events.php:1868 app/features/events.php:2438
2125
  #: app/features/events.php:2561 app/features/events.php:2672
2126
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2127
  msgid "Inherit from global options"
2128
  msgstr "Eredita da opzioni globali"
2129
 
2130
  #: app/features/events.php:725 app/features/events.php:728
2131
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2132
  #: app/features/mec/settings.php:858
2133
  #, fuzzy
2134
  #| msgid "Countdown View"
2135
  msgid "Countdown Method"
2136
  msgstr "Visualizza conto alla rovescia"
2137
 
2138
- #: app/features/events.php:730 app/features/fes/form.php:361
2139
  #, fuzzy
2140
  #| msgid "Start Date"
2141
  msgid "Count to Event Start"
2142
  msgstr "Data di inizio"
2143
 
2144
- #: app/features/events.php:731 app/features/fes/form.php:362
2145
  #, fuzzy
2146
  #| msgid "No event found!"
2147
  msgid "Count to Event End"
2148
  msgstr "Nessun evento trovato!"
2149
 
2150
- #: app/features/events.php:737 app/features/fes/form.php:369
2151
  #: app/modules/weather/darksky.php:57
2152
  msgid "Visibility"
2153
  msgstr ""
2154
 
2155
- #: app/features/events.php:740 app/features/fes/form.php:372
2156
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2157
  #, fuzzy
2158
  #| msgid "Event Cost"
2159
  msgid "Event Visibility"
2160
  msgstr "Costo Evento"
2161
 
2162
- #: app/features/events.php:741 app/features/fes/form.php:373
2163
  #, fuzzy
2164
  #| msgid "Booking"
2165
  msgid "Show on Shortcodes"
2166
  msgstr "Prenotazione"
2167
 
2168
- #: app/features/events.php:742 app/features/fes/form.php:374
2169
  #, fuzzy
2170
  #| msgid "Shortcodes"
2171
  msgid "Hide on Shortcodes"
2172
  msgstr "Shortcode"
2173
 
2174
- #: app/features/events.php:749 app/features/fes/form.php:382
2175
  #, fuzzy
2176
  #| msgid "Repeat"
2177
  msgid "Repeating"
@@ -2183,65 +2188,70 @@ msgstr "Ripeti"
2183
  msgid "Event Repeating (Recurring events)"
2184
  msgstr "Ripetizione dell'evento"
2185
 
2186
- #: app/features/events.php:762 app/features/fes/form.php:388
2187
  msgid "Repeats"
2188
  msgstr "Ripeti"
2189
 
2190
- #: app/features/events.php:770 app/features/fes/form.php:390
2191
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2192
  #: app/skins/full_calendar/tpl.php:140
2193
  msgid "Daily"
2194
  msgstr "Giornaliero"
2195
 
2196
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2197
  msgid "Every Weekday"
2198
  msgstr "Ogni settimana"
2199
 
2200
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2201
  msgid "Every Weekend"
2202
  msgstr "Ogni fine settimana"
2203
 
2204
- #: app/features/events.php:791 app/features/fes/form.php:393
2205
  msgid "Certain Weekdays"
2206
  msgstr "Alcuni fine settimana"
2207
 
2208
- #: app/features/events.php:798 app/features/fes/form.php:394
2209
- #: app/skins/default_full_calendar/tpl.php:78
2210
  #: app/skins/full_calendar/tpl.php:139
2211
  msgid "Weekly"
2212
  msgstr "Settimanale"
2213
 
2214
- #: app/features/events.php:805 app/features/fes/form.php:395
2215
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2216
  #: app/skins/full_calendar/tpl.php:138
2217
  msgid "Monthly"
2218
  msgstr "Mensile"
2219
 
2220
- #: app/features/events.php:812 app/features/fes/form.php:396
2221
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2222
  #: app/skins/full_calendar/tpl.php:137
2223
  msgid "Yearly"
2224
  msgstr "Annuale"
2225
 
2226
- #: app/features/events.php:819 app/features/fes/form.php:397
2227
  msgid "Custom Days"
2228
  msgstr "Date personalizzate"
2229
 
2230
- #: app/features/events.php:826 app/features/fes/form.php:398
2231
  #, fuzzy
2232
  #| msgid "Advanced Method"
2233
  msgid "Advanced"
2234
  msgstr "Metodo avanzato"
2235
 
2236
- #: app/features/events.php:831 app/features/fes/form.php:402
2237
  msgid "Repeat Interval"
2238
  msgstr "Ripeti intervallo"
2239
 
2240
- #: app/features/events.php:833 app/features/fes/form.php:403
2241
  msgid "Repeat interval"
2242
  msgstr "Ripeti intervallo"
2243
 
2244
- #: app/features/events.php:837 app/features/fes/form.php:406
2245
  msgid "Week Days"
2246
  msgstr "Giorni della settimana"
2247
 
@@ -2253,7 +2263,7 @@ msgstr ""
2253
 
2254
  #: app/features/events.php:860 app/features/events.php:2101
2255
  #: app/features/events.php:2129 app/features/events.php:2343
2256
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2257
  #: app/features/ix/import_g_calendar.php:51
2258
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2259
  #: app/libraries/skins.php:1389
@@ -2264,19 +2274,19 @@ msgstr "Partenza"
2264
  #: app/features/events.php:2085 app/features/events.php:2167
2265
  #: app/features/events.php:2332 app/features/events.php:2376
2266
  #: app/features/events.php:2449 app/features/events.php:2566
2267
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2268
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2269
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2270
  msgid "Add"
2271
  msgstr "Aggiungi"
2272
 
2273
- #: app/features/events.php:877 app/features/fes/form.php:454
2274
  #, fuzzy
2275
  #| msgid "Custom Days"
2276
  msgid "Custom Days Repeating"
2277
  msgstr "Date personalizzate"
2278
 
2279
- #: app/features/events.php:880 app/features/fes/form.php:457
2280
  msgid ""
2281
  "Add certain days to event occurrence dates. If you have a single day event, "
2282
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2285,52 +2295,52 @@ msgstr ""
2285
 
2286
  #: app/features/events.php:891 app/features/events.php:2105
2287
  #: app/features/events.php:2133 app/features/events.php:2347
2288
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2289
  #, fuzzy
2290
  #| msgid "Enabled"
2291
  msgid "End"
2292
  msgstr "Abilitato"
2293
 
2294
- #: app/features/events.php:968 app/features/fes/form.php:530
2295
  #, fuzzy
2296
  #| msgid "First name"
2297
  msgid "First"
2298
  msgstr "Nome"
2299
 
2300
- #: app/features/events.php:1010 app/features/fes/form.php:572
2301
  #, fuzzy
2302
  #| msgid "second"
2303
  msgid "Second"
2304
  msgstr "secondo"
2305
 
2306
- #: app/features/events.php:1052 app/features/fes/form.php:614
2307
  msgid "Third"
2308
  msgstr ""
2309
 
2310
- #: app/features/events.php:1094 app/features/fes/form.php:656
2311
  msgid "Fourth"
2312
  msgstr ""
2313
 
2314
- #: app/features/events.php:1136 app/features/fes/form.php:698
2315
  #, fuzzy
2316
  #| msgid "Last name"
2317
  msgid "Last"
2318
  msgstr "Cognome"
2319
 
2320
- #: app/features/events.php:1183 app/features/fes/form.php:744
2321
  msgid "Ends Repeat"
2322
  msgstr "Fine ripetizione"
2323
 
2324
- #: app/features/events.php:1195 app/features/fes/form.php:748
2325
  msgid "Never"
2326
  msgstr "Mai"
2327
 
2328
- #: app/features/events.php:1207 app/features/fes/form.php:753
2329
  msgid "On"
2330
  msgstr "Il"
2331
 
2332
  #: app/features/events.php:1227 app/features/events.php:1231
2333
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2334
  msgid "Occurrences times"
2335
  msgstr "Occorrenze"
2336
 
@@ -2346,14 +2356,14 @@ msgstr ""
2346
  "L'evento terminerà dopo un certo numero di ripetizioni. Ad esempio se si "
2347
  "imposta a 10, l'evento terminerà dopo 10 ripetizioni."
2348
 
2349
- #: app/features/events.php:1248 app/features/fes/form.php:779
2350
  #, fuzzy
2351
  #| msgid "Next Occurrence of Other Events"
2352
  msgid "Show only one occurrence of this event"
2353
  msgstr "Il prossimo evento degli altri eventi"
2354
 
2355
- #: app/features/events.php:1277 app/features/events.php:4193
2356
- #: app/features/fes/form.php:865
2357
  #: app/features/mec/meta_boxes/search_form.php:116
2358
  #: app/features/mec/meta_boxes/search_form.php:204
2359
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2377,73 +2387,73 @@ msgstr "Il prossimo evento degli altri eventi"
2377
  #: app/features/mec/notifications.php:1511
2378
  #: app/features/mec/notifications.php:1628
2379
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2380
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2381
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2382
  #: app/widgets/single.php:122
2383
  msgid "Event Cost"
2384
  msgstr "Costo Evento"
2385
 
2386
- #: app/features/events.php:1292 app/features/fes/form.php:877
2387
  msgid "Show the minimum price based on tickets"
2388
  msgstr ""
2389
 
2390
- #: app/features/events.php:1300 app/features/fes/form.php:885
2391
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2392
  #: app/libraries/main.php:646
2393
  msgid "Currency"
2394
  msgstr "Valuta"
2395
 
2396
  #: app/features/events.php:1310 app/features/events.php:1315
2397
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2398
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2399
  msgid "Currency Sign"
2400
  msgstr "Segno valuta"
2401
 
2402
- #: app/features/events.php:1316 app/features/fes/form.php:901
2403
  #: app/features/mec/settings.php:600
2404
  msgid "Default value will be \"currency\" if you leave it empty."
2405
  msgstr "Il valore predefinito sarà \"valuta\" se viene lasciato vuoto."
2406
 
2407
- #: app/features/events.php:1323 app/features/fes/form.php:908
2408
  #: app/features/mec/settings.php:607
2409
  msgid "Currency Position"
2410
  msgstr "Posizione valuta"
2411
 
2412
- #: app/features/events.php:1326 app/features/fes/form.php:911
2413
  #: app/features/mec/settings.php:610
2414
  #, fuzzy
2415
  #| msgid "Before $10"
2416
  msgid "$10 (Before)"
2417
  msgstr "Prima €10"
2418
 
2419
- #: app/features/events.php:1327 app/features/fes/form.php:912
2420
  #: app/features/mec/settings.php:611
2421
  msgid "$ 10 (Before with Space)"
2422
  msgstr ""
2423
 
2424
- #: app/features/events.php:1328 app/features/fes/form.php:913
2425
  #: app/features/mec/settings.php:612
2426
  #, fuzzy
2427
  #| msgid "After"
2428
  msgid "10$ (After)"
2429
  msgstr "Dopo"
2430
 
2431
- #: app/features/events.php:1329 app/features/fes/form.php:914
2432
  #: app/features/mec/settings.php:613
2433
  msgid "10 $ (After with Space)"
2434
  msgstr ""
2435
 
2436
- #: app/features/events.php:1334 app/features/fes/form.php:919
2437
  #: app/features/mec/settings.php:618
2438
  msgid "Thousand Separator"
2439
  msgstr "Separatore migliaia"
2440
 
2441
- #: app/features/events.php:1340 app/features/fes/form.php:925
2442
  #: app/features/mec/settings.php:624
2443
  msgid "Decimal Separator"
2444
  msgstr "Separatore decimale"
2445
 
2446
- #: app/features/events.php:1350 app/features/fes/form.php:935
2447
  #: app/features/mec/settings.php:634
2448
  msgid "No decimal"
2449
  msgstr "Senza decimali"
@@ -2469,21 +2479,21 @@ msgstr ""
2469
  msgid "Day 1"
2470
  msgstr ""
2471
 
2472
- #: app/features/events.php:1498 app/features/fes/form.php:829
2473
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2474
  msgid "Event Links"
2475
  msgstr "Link dell'evento"
2476
 
2477
  #: app/features/events.php:1501 app/features/events.php:1509
2478
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2479
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2480
  #: app/libraries/main.php:7649
2481
  msgid "Event Link"
2482
  msgstr "Link dell'evento"
2483
 
2484
  #: app/features/events.php:1504 app/features/events.php:1522
2485
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2486
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2487
  msgid "eg. http://yoursite.com/your-event"
2488
  msgstr "es. http://iltuosito.it/il-tuo-evento"
2489
 
@@ -2504,24 +2514,24 @@ msgstr ""
2504
  msgid "URL Shortener"
2505
  msgstr ""
2506
 
2507
- #: app/features/events.php:1525 app/features/fes/form.php:838
2508
- #: app/features/occurrences.php:527
2509
  msgid "More Information"
2510
  msgstr "Maggiori informazioni"
2511
 
2512
- #: app/features/events.php:1527 app/features/fes/form.php:840
2513
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2514
  #: app/features/popup/shortcode.php:481
2515
  msgid "Current Window"
2516
  msgstr "Finestra corrente"
2517
 
2518
- #: app/features/events.php:1528 app/features/fes/form.php:841
2519
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2520
  #: app/features/popup/shortcode.php:485
2521
  msgid "New Window"
2522
  msgstr "Nuova finestra"
2523
 
2524
- #: app/features/events.php:1533 app/features/fes/form.php:843
2525
  msgid ""
2526
  "If you fill it, it will be shown in event details page as an optional link. "
2527
  "Insert full link including http(s)://"
@@ -2900,9 +2910,9 @@ msgid "Ticket ID"
2900
  msgstr "Ticket"
2901
 
2902
  #: app/features/events.php:1944 app/features/events.php:2211
2903
- #: app/features/events.php:4180 app/features/fes.php:280
2904
  #: app/features/labels.php:183 app/features/locations.php:266
2905
- #: app/features/organizers.php:207 app/features/speakers.php:285
2906
  msgid "ID"
2907
  msgstr "ID"
2908
 
@@ -2911,12 +2921,12 @@ msgid "Ticket Name"
2911
  msgstr "Nome biglietto/ticket"
2912
 
2913
  #: app/features/events.php:1956 app/features/events.php:2219
2914
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2915
  msgid "Start Time"
2916
  msgstr "Ora di inizio"
2917
 
2918
  #: app/features/events.php:1970 app/features/events.php:2233
2919
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2920
  msgid "End Time"
2921
  msgstr "Ora di fine"
2922
 
@@ -2938,7 +2948,7 @@ msgstr ""
2938
  #: app/features/events.php:2007 app/features/events.php:2011
2939
  #: app/features/events.php:2109 app/features/events.php:2136
2940
  #: app/features/events.php:2265 app/features/events.php:2268
2941
- #: app/features/events.php:2349 app/features/events.php:4739
2942
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2943
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2944
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3104,7 +3114,7 @@ msgstr "Limite partecipanti"
3104
  msgid "Fixed Fields"
3105
  msgstr "Campo obbligatorio"
3106
 
3107
- #: app/features/events.php:2887 app/features/events.php:4733
3108
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3109
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3110
  msgid "Attendees"
@@ -3136,7 +3146,7 @@ msgid "Expired Events"
3136
  msgstr ""
3137
 
3138
  #: app/features/events.php:3757 app/features/mec.php:1374
3139
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3140
  msgid "Upcoming Events"
3141
  msgstr ""
3142
 
@@ -3197,15 +3207,15 @@ msgid "JSON Export"
3197
  msgstr "Esporta JSON"
3198
 
3199
  #: app/features/events.php:4068 app/features/events.php:4069
3200
- #: app/features/events.php:4293
3201
  msgid "Duplicate"
3202
  msgstr "Duplica"
3203
 
3204
- #: app/features/events.php:4187
3205
  msgid "Link"
3206
  msgstr "Link"
3207
 
3208
- #: app/features/events.php:4189 app/features/locations.php:111
3209
  #: app/features/locations.php:181 app/features/locations.php:268
3210
  #: app/features/mec/meta_boxes/search_form.php:108
3211
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3223,31 +3233,31 @@ msgstr "Link"
3223
  msgid "Address"
3224
  msgstr "Indirizzo"
3225
 
3226
- #: app/features/events.php:4191
3227
  #, php-format
3228
  msgid "%s Tel"
3229
  msgstr ""
3230
 
3231
- #: app/features/events.php:4192
3232
  #, php-format
3233
  msgid "%s Email"
3234
  msgstr ""
3235
 
3236
- #: app/features/events.php:4194 app/features/fes/form.php:951
3237
  #: app/features/mec/settings.php:876
3238
  msgid "Featured Image"
3239
  msgstr "Immagine in evidenza"
3240
 
3241
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3242
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3243
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3244
  msgid "Tags"
3245
  msgstr "Tag"
3246
 
3247
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3248
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3249
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3250
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3251
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3252
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3253
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3255,42 +3265,42 @@ msgstr "Tag"
3255
  msgid "Speakers"
3256
  msgstr ""
3257
 
3258
- #: app/features/events.php:4446 app/features/fes.php:280
3259
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3260
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3261
  #: app/libraries/main.php:7592
3262
  msgid "Ticket"
3263
  msgstr "Ticket"
3264
 
3265
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3266
  #, fuzzy
3267
  #| msgid "Verification"
3268
  msgid "Variations"
3269
  msgstr "Verifica"
3270
 
3271
- #: app/features/events.php:4464 app/features/fes.php:356
3272
  msgid "Unknown"
3273
  msgstr "Sconosciuto"
3274
 
3275
- #: app/features/events.php:4492
3276
  msgid ""
3277
  "If you want to send an email, first select your attendees and then click in "
3278
  "the button below, please."
3279
  msgstr ""
3280
 
3281
- #: app/features/events.php:4492 app/features/mec/report.php:57
3282
  #, fuzzy
3283
  #| msgid "Organizer Email"
3284
  msgid "Send Email"
3285
  msgstr "Email organizzatore"
3286
 
3287
- #: app/features/events.php:4496
3288
  #, fuzzy
3289
  #| msgid "Attendees Form"
3290
  msgid "No Attendees Found!"
3291
  msgstr "Form partecipanti"
3292
 
3293
- #: app/features/events.php:4797
3294
  #, fuzzy
3295
  #| msgid "No bookings found!"
3296
  msgid "No Bookings Found!"
@@ -3432,70 +3442,70 @@ msgstr "L'evento è stato salvato. Verrà pubblicato il prima possibile."
3432
  msgid "The event published."
3433
  msgstr "L'evento è stato pubblicato."
3434
 
3435
- #: app/features/fes/form.php:178
3436
  #, fuzzy
3437
  #| msgid "Go back to events list."
3438
  msgid "Go back to events list"
3439
  msgstr "Torna alla lista eventi."
3440
 
3441
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3442
  #: app/features/mec/settings.php:1171
3443
  msgid "Excerpt"
3444
  msgstr ""
3445
 
3446
- #: app/features/fes/form.php:271
3447
  msgid "Optional Event Excerpt"
3448
  msgstr ""
3449
 
3450
- #: app/features/fes/form.php:278
3451
  msgid ""
3452
  "This event is imported from Google calendar so if you modify it would "
3453
  "overwrite in the next import from Google."
3454
  msgstr ""
3455
 
3456
- #: app/features/fes/form.php:407
3457
  #: app/features/mec/meta_boxes/display_options.php:1494
3458
  #: app/libraries/main.php:476
3459
  msgid "Monday"
3460
  msgstr "Lunedì"
3461
 
3462
- #: app/features/fes/form.php:408
3463
  #: app/features/mec/meta_boxes/display_options.php:1495
3464
  #: app/libraries/main.php:476
3465
  msgid "Tuesday"
3466
  msgstr "Martedì"
3467
 
3468
- #: app/features/fes/form.php:409
3469
  #: app/features/mec/meta_boxes/display_options.php:1496
3470
  #: app/libraries/main.php:476
3471
  msgid "Wednesday"
3472
  msgstr "Mercoledì"
3473
 
3474
- #: app/features/fes/form.php:410
3475
  #: app/features/mec/meta_boxes/display_options.php:1497
3476
  #: app/libraries/main.php:476
3477
  msgid "Thursday"
3478
  msgstr "Giovedì"
3479
 
3480
- #: app/features/fes/form.php:411
3481
  #: app/features/mec/meta_boxes/display_options.php:1498
3482
  #: app/libraries/main.php:476
3483
  msgid "Friday"
3484
  msgstr "Venerdì"
3485
 
3486
- #: app/features/fes/form.php:412
3487
  #: app/features/mec/meta_boxes/display_options.php:1499
3488
  #: app/libraries/main.php:476
3489
  msgid "Saturday"
3490
  msgstr "Sabato"
3491
 
3492
- #: app/features/fes/form.php:413
3493
  #: app/features/mec/meta_boxes/display_options.php:1493
3494
  #: app/libraries/main.php:476
3495
  msgid "Sunday"
3496
  msgstr "Domenica"
3497
 
3498
- #: app/features/fes/form.php:766
3499
  msgid ""
3500
  "The event will finish after certain repeats. For example if you set it to "
3501
  "10, the event will finish after 10 repeats."
@@ -3503,24 +3513,24 @@ msgstr ""
3503
  "L'evento terminerà dopo un certo numero di ripetizioni. Ad esempio se si "
3504
  "imposta a 10, l'evento terminerà dopo 10 ripetizioni."
3505
 
3506
- #: app/features/fes/form.php:790
3507
  msgid "Note to reviewer"
3508
  msgstr "Note per il revisore"
3509
 
3510
- #: app/features/fes/form.php:808
3511
  msgid "User Data"
3512
  msgstr "Dati utente"
3513
 
3514
- #: app/features/fes/form.php:811
3515
  msgid "eg. yourname@gmail.com"
3516
  msgstr "es. iltuonome@gmail.com"
3517
 
3518
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3519
- #: app/features/popup/event.php:185
3520
  msgid "eg. John Smith"
3521
  msgstr "es. Mario Rossi"
3522
 
3523
- #: app/features/fes/form.php:833
3524
  #, fuzzy
3525
  #| msgid ""
3526
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3532,41 +3542,41 @@ msgstr ""
3532
  "Se compilato, verrà sostituito invece del collegamento della pagina degli "
3533
  "eventi predefiniti. Inserisci il collegamento completo compreso http (s): //"
3534
 
3535
- #: app/features/fes/form.php:956
3536
  msgid "Remove Image"
3537
  msgstr "Rimuovi immagine"
3538
 
3539
- #: app/features/fes/form.php:1046
3540
  msgid "Insert your desired tags, comma separated."
3541
  msgstr "Inserisci i tag desiderati, separati da virgola."
3542
 
3543
- #: app/features/fes/form.php:1068
3544
  #, fuzzy
3545
  #| msgid "No Search Options"
3546
  msgid "Speakers Names"
3547
  msgstr "Nessuna opzione di ricerca"
3548
 
3549
- #: app/features/fes/form.php:1069
3550
  msgid "Separate names with commas: Justin, Chris"
3551
  msgstr ""
3552
 
3553
- #: app/features/fes/form.php:1114
3554
  #, fuzzy, php-format
3555
  #| msgid "Please %s/%s in order to submit new events."
3556
  msgid "I accept the %s in order to submit an event."
3557
  msgstr "Si prega di %s/%s prima di inserire nuovi eventi."
3558
 
3559
- #: app/features/fes/form.php:1114
3560
  msgid "Privacy Policy"
3561
  msgstr ""
3562
 
3563
- #: app/features/fes/form.php:1116
3564
  #, fuzzy
3565
  #| msgid "Please %s/%s in order to submit new events."
3566
  msgid "I accept the Privacy Policy in order to submit an event."
3567
  msgstr "Si prega di %s/%s prima di inserire nuovi eventi."
3568
 
3569
- #: app/features/fes/form.php:1122
3570
  #, fuzzy
3571
  #| msgid "Edit Events"
3572
  msgid "Submit Event"
@@ -3651,86 +3661,86 @@ msgstr ""
3651
  msgid "The events are imported successfully!"
3652
  msgstr ""
3653
 
3654
- #: app/features/ix.php:1301
3655
  msgid "Third Party plugin is not installed and activated!"
3656
  msgstr ""
3657
 
3658
- #: app/features/ix.php:1325
3659
  msgid "Third Party plugin is invalid!"
3660
  msgstr ""
3661
 
3662
- #: app/features/ix.php:3300 app/features/ix.php:3361
3663
  #, fuzzy
3664
  #| msgid "Both of API key and Calendar ID are required!"
3665
  msgid "API key and Calendar ID are required!"
3666
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
3667
 
3668
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3669
  #, fuzzy
3670
  #| msgid "Please select some events to import!"
3671
  msgid "Please select events to import!"
3672
  msgstr "Si prega di selezionare degli eventi da importare!"
3673
 
3674
- #: app/features/ix.php:3794 app/features/ix.php:3857
3675
  #, fuzzy
3676
  #| msgid "Both of API key and Calendar ID are required!"
3677
  msgid "API key and Group URL are required!"
3678
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
3679
 
3680
- #: app/features/ix.php:4096
3681
  msgid "Check at Meetup"
3682
  msgstr ""
3683
 
3684
- #: app/features/ix.php:4262
3685
  #, fuzzy
3686
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3687
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3688
  msgstr "Tutti gli ID Clienti, Client Secret e ID Calendario sono obbligatori!"
3689
 
3690
- #: app/features/ix.php:4285
3691
  #, fuzzy, php-format
3692
  #| msgid "All seems good! Please click %s for authenticating your app."
3693
  msgid "All seems good! Please click %s to authenticate your app."
3694
  msgstr "Sembra tutto ok! Fai clic su% s per autenticare l'applicazione."
3695
 
3696
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3697
  #: app/features/mec/settings.php:1496
3698
  msgid "here"
3699
  msgstr ""
3700
 
3701
- #: app/features/ix.php:4340
3702
  #, fuzzy
3703
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3704
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3705
  msgstr ""
3706
  "Tutte le applicazioni Client, Client Secret e ID Calendario sono obbligatori!"
3707
 
3708
- #: app/features/ix.php:4502
3709
  #, fuzzy, php-format
3710
  #| msgid "%s events added to Google Calendar successfully."
3711
  msgid "%s events added to Google Calendar with success."
3712
  msgstr "%s eventi aggiunti con successo dal calendario di Google."
3713
 
3714
- #: app/features/ix.php:4503
3715
  #, fuzzy, php-format
3716
  #| msgid "%s previously added events get updated."
3717
  msgid "%s Updated previously added events."
3718
  msgstr "%s eventi precedentemente aggiunti vengono aggiornati."
3719
 
3720
- #: app/features/ix.php:4504
3721
  #, php-format
3722
  msgid "%s events failed to add for following reasons: %s"
3723
  msgstr ""
3724
  "%s eventi non sono stati aggiornati, è fallita l'importazione per diverse "
3725
  "ragioni: %s"
3726
 
3727
- #: app/features/ix.php:4536
3728
  #, fuzzy
3729
  #| msgid "Please insert your facebook page's link."
3730
  msgid "Please insert your Facebook page's link."
3731
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
3732
 
3733
- #: app/features/ix.php:4547 app/features/ix.php:4589
3734
  #, fuzzy
3735
  #| msgid ""
3736
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3742,7 +3752,7 @@ msgstr ""
3742
  "Non riusciamo ad accedere alla vostra pagina Facebook. Si prega di "
3743
  "verificare e inserire una pagina valida."
3744
 
3745
- #: app/features/ix.php:4584
3746
  msgid "Please insert your facebook page's link."
3747
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
3748
 
@@ -3959,7 +3969,7 @@ msgstr "Partecipanti all'evento"
3959
  msgid "Add to Google Calendar"
3960
  msgstr "Aggiungi al calendario Google"
3961
 
3962
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3963
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3964
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3965
  #: app/features/mec/single.php:604
@@ -4077,7 +4087,7 @@ msgstr "Importa dal calendario Facebook"
4077
  msgid "Import all of your Facebook events into MEC."
4078
  msgstr "Importa tutti gli eventi dal tuo Facebook in MEC."
4079
 
4080
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4081
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4082
  msgid "Documentation"
4083
  msgstr "Documentazione"
@@ -4404,7 +4414,7 @@ msgid ""
4404
  msgstr ""
4405
 
4406
  #: app/features/labels.php:79 app/features/locations.php:77
4407
- #: app/features/organizers.php:77 app/features/speakers.php:79
4408
  #: app/features/tag.php:77
4409
  #, fuzzy, php-format
4410
  #| msgid "Search Coupons"
@@ -4412,7 +4422,7 @@ msgid "← Back to %s"
4412
  msgstr "Ricerca Coupon"
4413
 
4414
  #: app/features/labels.php:80 app/features/locations.php:78
4415
- #: app/features/organizers.php:78 app/features/speakers.php:80
4416
  #: app/features/tag.php:78
4417
  #, fuzzy, php-format
4418
  #| msgid "No events found!"
@@ -4458,7 +4468,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4458
  msgstr ""
4459
 
4460
  #: app/features/labels.php:186 app/features/locations.php:269
4461
- #: app/features/organizers.php:210 app/features/speakers.php:289
4462
  #: app/modules/booking/steps/tickets.php:172
4463
  msgid "Count"
4464
  msgstr "Numero"
@@ -4474,7 +4484,7 @@ msgid "Event %s"
4474
  msgstr ""
4475
 
4476
  #: app/features/locations.php:59 app/features/mec.php:526
4477
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4478
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4479
  #: app/libraries/main.php:7623
4480
  msgid "Locations"
@@ -4485,7 +4495,7 @@ msgid "Enter the location address"
4485
  msgstr "Inserisci l'indirizzo del luogo"
4486
 
4487
  #: app/features/locations.php:131 app/features/locations.php:197
4488
- #: app/features/locations.php:374 app/features/popup/event.php:149
4489
  msgid "Latitude"
4490
  msgstr "Latitudine"
4491
 
@@ -4496,7 +4506,7 @@ msgid "Geo latitude (Optional for Lite)"
4496
  msgstr "Latitudine geografica (opzionale)"
4497
 
4498
  #: app/features/locations.php:139 app/features/locations.php:201
4499
- #: app/features/locations.php:375 app/features/popup/event.php:150
4500
  msgid "Longitude"
4501
  msgstr "Longitudine"
4502
 
@@ -4521,22 +4531,22 @@ msgstr "Latitudine geografica (opzionale)"
4521
 
4522
  #: app/features/locations.php:156 app/features/locations.php:210
4523
  #: app/features/organizers.php:128 app/features/organizers.php:161
4524
- #: app/features/speakers.php:176 app/features/speakers.php:229
4525
  msgid "Thumbnail"
4526
  msgstr "Anteprima"
4527
 
4528
  #: app/features/locations.php:329 app/features/occurrences.php:460
4529
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4530
  #, php-format
4531
  msgid "Event Main %s"
4532
  msgstr ""
4533
 
4534
  #: app/features/locations.php:332 app/features/occurrences.php:464
4535
- #: app/features/popup/event.php:119
4536
  msgid "Hide location"
4537
  msgstr "Nascondi luogo"
4538
 
4539
- #: app/features/locations.php:333 app/features/popup/event.php:120
4540
  msgid "Insert a new location"
4541
  msgstr "Inserisci un nuovo luogo"
4542
 
@@ -4544,30 +4554,30 @@ msgstr "Inserisci un nuovo luogo"
4544
  msgid "Choose one of saved locations or insert new one below."
4545
  msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
4546
 
4547
- #: app/features/locations.php:348 app/features/popup/event.php:141
4548
  msgid "Location Name"
4549
  msgstr "Nome del luogo"
4550
 
4551
- #: app/features/locations.php:349 app/features/popup/event.php:142
4552
  msgid "eg. City Hall"
4553
  msgstr "es. Città"
4554
 
4555
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4556
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4557
  msgid "Event Location"
4558
  msgstr "Luogo dell'evento"
4559
 
4560
- #: app/features/locations.php:353 app/features/popup/event.php:146
4561
  msgid "eg. City hall, Manhattan, New York"
4562
  msgstr "es. Città, Roma, Campobasso"
4563
 
4564
- #: app/features/locations.php:378 app/features/popup/event.php:153
4565
  #, fuzzy
4566
  #| msgid "Longitude"
4567
  msgid "Latitude/Longitude"
4568
  msgstr "Longitudine"
4569
 
4570
- #: app/features/locations.php:379 app/features/popup/event.php:154
4571
  msgid ""
4572
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4573
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4576,28 +4586,28 @@ msgid ""
4576
  "the location on the map to find lat long coordinates."
4577
  msgstr ""
4578
 
4579
- #: app/features/locations.php:379 app/features/popup/event.php:154
4580
  msgid "Get Latitude and Longitude"
4581
  msgstr ""
4582
 
4583
  #: app/features/locations.php:392 app/features/organizers.php:315
4584
- #: app/features/popup/event.php:204
4585
  msgid "Choose image"
4586
  msgstr "Seleziona immagine"
4587
 
4588
- #: app/features/locations.php:406 app/features/occurrences.php:480
4589
- #: app/features/popup/event.php:137
4590
  msgid "Don't show map in single event page"
4591
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
4592
 
4593
- #: app/features/locations.php:409 app/libraries/main.php:7607
4594
  #: app/libraries/main.php:7654
4595
  #, fuzzy
4596
  #| msgid "Search Locations"
4597
  msgid "Other Locations"
4598
  msgstr "Cerca luoghi"
4599
 
4600
- #: app/features/locations.php:411
4601
  msgid ""
4602
  "You can select extra locations in addition to main location if you like."
4603
  msgstr ""
@@ -4675,7 +4685,7 @@ msgstr "Supporto"
4675
  msgid "Support"
4676
  msgstr "Supporto"
4677
 
4678
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4679
  #: app/features/mec/meta_boxes/filter.php:71
4680
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4681
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4683,7 +4693,7 @@ msgid "Organizers"
4683
  msgstr "Organizzatori"
4684
 
4685
  #: app/features/mec.php:536 app/features/mec.php:596
4686
- #: app/features/mec/dashboard.php:221
4687
  msgid "Shortcodes"
4688
  msgstr "Shortcode"
4689
 
@@ -4901,7 +4911,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4901
  msgstr ""
4902
 
4903
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4904
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4905
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4906
  msgid "Version"
4907
  msgstr "Versione"
@@ -4927,9 +4937,9 @@ msgid "Search..."
4927
  msgstr "Casella di ricerca"
4928
 
4929
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4930
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4931
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4932
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4933
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4934
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4935
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5526,27 +5536,27 @@ msgstr "Completa automaticamente gli ordini WooCommerce"
5526
  msgid "It applies only to the orders that are related to MEC."
5527
  msgstr "È applicato solo agli ordini legati alla MEC."
5528
 
5529
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5530
  msgid "After Add to Cart"
5531
  msgstr ""
5532
 
5533
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5534
  #, fuzzy
5535
  #| msgid "Get Direction"
5536
  msgid "Redirect to Cart"
5537
  msgstr "Prendi la direzione"
5538
 
5539
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5540
  #, fuzzy
5541
  #| msgid "Get Direction"
5542
  msgid "Redirect to Checkout"
5543
  msgstr "Prendi la direzione"
5544
 
5545
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5546
  msgid "Optional View Cart Button"
5547
  msgstr ""
5548
 
5549
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5550
  msgid "Optional Checkout Button"
5551
  msgstr ""
5552
 
@@ -5604,81 +5614,87 @@ msgid ""
5604
  "(Stripe) got canceled."
5605
  msgstr ""
5606
 
5607
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5608
  msgid "Use MEC Cart System"
5609
  msgstr ""
5610
 
5611
- #: app/features/mec/booking.php:1119
5612
  msgid ""
5613
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5614
  "adding a simple cart and checkout system to your website."
5615
  msgstr ""
5616
 
5617
- #: app/features/mec/booking.php:1121
5618
  msgid "You cannot use following MEC features while using MEC Cart."
5619
  msgstr ""
5620
 
5621
- #: app/features/mec/booking.php:1123
5622
  #, fuzzy
5623
  #| msgid "Payment Gateways"
5624
  msgid "WooCommerce as Payment Gateway"
5625
  msgstr "Gateway di pagamento"
5626
 
5627
- #: app/features/mec/booking.php:1124
5628
  #, fuzzy
5629
  #| msgid "Next Occurrence of Other Events"
5630
  msgid "Currency Per Event"
5631
  msgstr "Il prossimo evento degli altri eventi"
5632
 
5633
- #: app/features/mec/booking.php:1125
5634
  #, fuzzy
5635
  #| msgid "Payment Gateways"
5636
  msgid "Disable Gateways Per Event"
5637
  msgstr "Gateway di pagamento"
5638
 
5639
- #: app/features/mec/booking.php:1126
5640
  #, fuzzy
5641
  #| msgid "Stripe"
5642
  msgid "Stripe Connect Gateway"
5643
  msgstr "Banda"
5644
 
5645
- #: app/features/mec/booking.php:1127
5646
  #, fuzzy
5647
  #| msgid "Pay by WooCommerce"
5648
  msgid "Pay By WooCommerce Gateway"
5649
  msgstr "Pagamento da WooCommerce"
5650
 
5651
- #: app/features/mec/booking.php:1128
5652
  #, fuzzy
5653
  #| msgid "New Organizer Name"
5654
  msgid "Organizer Payment Module"
5655
  msgstr "Nuovo nome Organizzatore"
5656
 
5657
- #: app/features/mec/booking.php:1132
5658
  #, fuzzy
5659
  #| msgid "Start Date"
5660
  msgid "Cart Page"
5661
  msgstr "Data di inizio"
5662
 
5663
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5664
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5665
  #, php-format
5666
  msgid "Put %s shortcode into the page."
5667
  msgstr "Inserisci %s sulla pagina."
5668
 
5669
- #: app/features/mec/booking.php:1144
5670
  #, fuzzy
5671
  #| msgid "Checkout"
5672
  msgid "Checkout Page"
5673
  msgstr "Checkout"
5674
 
5675
- #: app/features/mec/booking.php:1170
5676
  #, fuzzy
5677
  #| msgid "Enable booking module"
5678
  msgid "Enable Cart Invoice"
5679
  msgstr "Attiva modulo prenotazione"
5680
 
5681
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5682
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5683
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5684
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5686,7 +5702,7 @@ msgstr "Attiva modulo prenotazione"
5686
  msgid "Saved"
5687
  msgstr "Salvato"
5688
 
5689
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5690
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5691
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5692
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5694,7 +5710,7 @@ msgstr "Salvato"
5694
  msgid "Settings Saved!"
5695
  msgstr ""
5696
 
5697
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5698
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5699
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5700
  msgid "Please Refresh Page"
@@ -5710,12 +5726,7 @@ msgstr "Benvenuto %s"
5710
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5711
  msgstr ""
5712
 
5713
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5714
- msgctxt "plugin rate"
5715
- msgid "Rate the plugin ★★★★★"
5716
- msgstr ""
5717
-
5718
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5719
  #, php-format
5720
  msgid ""
5721
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5723,71 +5734,54 @@ msgid ""
5723
  "Spots, etc you should upgrade to the Pro version."
5724
  msgstr ""
5725
 
5726
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5727
  msgid "lite"
5728
  msgstr ""
5729
 
5730
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5731
  #: app/features/mec/support.php:126
5732
  msgid "GO PREMIUM"
5733
  msgstr ""
5734
 
5735
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5736
- #, php-format
5737
- msgid ""
5738
- "Easily get a discount coupon by rating us on %s or following and reposting "
5739
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5740
- msgstr ""
5741
-
5742
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5743
- #, fuzzy
5744
- #| msgid "Address"
5745
- msgid "WordPress"
5746
- msgstr "Indirizzo"
5747
-
5748
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5749
- msgid "Copouns!"
5750
- msgstr ""
5751
-
5752
- #: app/features/mec/dashboard.php:115
5753
  #, fuzzy
5754
  #| msgid "Modern Events Calendar"
5755
  msgid "Getting started with Modern Events Calendar"
5756
  msgstr "Calendario moderno degli eventi"
5757
 
5758
- #: app/features/mec/dashboard.php:116
5759
  msgid ""
5760
  "In this short video, you can learn how to make an event and put a calendar "
5761
  "on your website. Please watch this 2 minutes video to the end."
5762
  msgstr ""
5763
 
5764
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5765
  #, fuzzy
5766
  #| msgid "MEC Activation"
5767
  msgid "License Activation"
5768
  msgstr "Attivazione"
5769
 
5770
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5771
  #, fuzzy
5772
  #| msgid "MEC Activation"
5773
  msgid "Activate Addons"
5774
  msgstr "Attivazione"
5775
 
5776
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5777
  msgid "You cannot access this section."
5778
  msgstr ""
5779
 
5780
- #: app/features/mec/dashboard.php:162
5781
  msgid ""
5782
  "In order to use all plugin features and options, please enter your purchase "
5783
  "code."
5784
  msgstr ""
5785
 
5786
- #: app/features/mec/dashboard.php:270
5787
  msgid "Popular Gateways"
5788
  msgstr ""
5789
 
5790
- #: app/features/mec/dashboard.php:328
5791
  msgid "Change Log"
5792
  msgstr "Log modifiche"
5793
 
@@ -7337,7 +7331,7 @@ msgstr ""
7337
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7338
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7339
  #: app/features/popup/settings.php:272 app/features/search.php:109
7340
- #: app/features/speakers.php:60 app/features/speakers.php:286
7341
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7342
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7343
  #: app/modules/speakers/details.php:18
@@ -8677,7 +8671,7 @@ msgstr ""
8677
  msgid "Please, insert comma to separate reminder hours."
8678
  msgstr ""
8679
 
8680
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8681
  #: app/libraries/main.php:705
8682
  msgid "New Event"
8683
  msgstr "Nuovo Evento"
@@ -10993,13 +10987,13 @@ msgstr ""
10993
  msgid "Choose one of saved locations."
10994
  msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
10995
 
10996
- #: app/features/occurrences.php:491 app/features/organizers.php:280
10997
- #: app/features/popup/event.php:166
10998
  msgid "Hide organizer"
10999
  msgstr "Nascondi organizzatore"
11000
 
11001
- #: app/features/occurrences.php:499 app/features/organizers.php:289
11002
- #: app/features/popup/event.php:175
11003
  msgid "Choose one of saved organizers or insert new one below."
11004
  msgstr ""
11005
  "Seleziona uno tra gli organizzatori salvati oppure inserisci uni nuovo."
@@ -11013,7 +11007,7 @@ msgid "Insert organizer email address."
11013
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
11014
 
11015
  #: app/features/organizers.php:120 app/features/organizers.php:157
11016
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11017
  msgid "Link to organizer page"
11018
  msgstr "Link alla pagina dell'organizzatore"
11019
 
@@ -11027,27 +11021,27 @@ msgstr ""
11027
  msgid "Contact info"
11028
  msgstr "Info di contatto"
11029
 
11030
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11031
  msgid "Insert a new organizer"
11032
  msgstr "Inserisci un nuovo organizzatore"
11033
 
11034
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11035
  msgid "Phone number."
11036
  msgstr ""
11037
 
11038
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11039
  msgid "eg. +1 (234) 5678"
11040
  msgstr "es. +1 (234) 5678"
11041
 
11042
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11043
  msgid "Email address."
11044
  msgstr ""
11045
 
11046
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11047
  msgid "eg. john@smith.com"
11048
  msgstr "es. mario@rossi.it"
11049
 
11050
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11051
  #, fuzzy
11052
  #| msgid "http://webnus.biz"
11053
  msgid "eg. https://webnus.net"
@@ -11063,72 +11057,72 @@ msgid ""
11063
  "You can select extra organizers in addition to main organizer if you like."
11064
  msgstr ""
11065
 
11066
- #: app/features/popup/event.php:58
11067
  #, fuzzy
11068
  #| msgid "Add Shortcode"
11069
  msgid "Adding an Event..."
11070
  msgstr "Aggiungi Shortcode"
11071
 
11072
- #: app/features/popup/event.php:66
11073
  #, fuzzy
11074
  #| msgid "Event Note"
11075
  msgid "Event Name"
11076
  msgstr "Note dell'evento"
11077
 
11078
- #: app/features/popup/event.php:67
11079
  msgid "Event name is required"
11080
  msgstr ""
11081
 
11082
- #: app/features/popup/event.php:128
11083
  #, fuzzy
11084
  #| msgid "Choose one of saved locations or insert new one below."
11085
  msgid "Choose one of saved locations or insert new one."
11086
  msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
11087
 
11088
- #: app/features/popup/event.php:132
11089
  #, fuzzy
11090
  #| msgid "Add New Location"
11091
  msgid "Add Location"
11092
  msgstr "Aggiungi nuovo Luogo"
11093
 
11094
- #: app/features/popup/event.php:179
11095
  #, fuzzy
11096
  #| msgid "Add New Organizer"
11097
  msgid "Add Organizer"
11098
  msgstr "Aggiungi nuovo Organizzatore"
11099
 
11100
- #: app/features/popup/event.php:219
11101
  #, fuzzy
11102
  #| msgid "Categories"
11103
  msgid "All Categories"
11104
  msgstr "Categorie"
11105
 
11106
- #: app/features/popup/event.php:220
11107
  msgid "Most Used"
11108
  msgstr ""
11109
 
11110
- #: app/features/popup/event.php:231
11111
  #, fuzzy
11112
  #| msgid "Add New Label"
11113
  msgid "Add New Category"
11114
  msgstr "Aggiungi nuova Etichetta"
11115
 
11116
- #: app/features/popup/event.php:242
11117
  #, fuzzy
11118
  #| msgid "Featured Image"
11119
  msgid "Set Featured Image"
11120
  msgstr "Immagine in evidenza"
11121
 
11122
- #: app/features/popup/event.php:252
11123
  msgid "Your Event Has Been Created."
11124
  msgstr ""
11125
 
11126
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11127
  #: app/features/popup/shortcode.php:553
11128
  msgid "Prev"
11129
  msgstr ""
11130
 
11131
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11132
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11133
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11134
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11331,92 +11325,92 @@ msgstr "Casella di ricerca"
11331
  msgid "No search result."
11332
  msgstr ""
11333
 
11334
- #: app/features/speakers.php:112 app/features/speakers.php:197
11335
- #: app/features/speakers.php:287
11336
  #, fuzzy
11337
  #| msgid "Title"
11338
  msgid "Job Title"
11339
  msgstr "Titolo"
11340
 
11341
- #: app/features/speakers.php:115 app/features/speakers.php:198
11342
  msgid "Insert speaker job title."
11343
  msgstr ""
11344
 
11345
- #: app/features/speakers.php:123 app/features/speakers.php:202
11346
  #, fuzzy
11347
  #| msgid "Insert organizer phone number."
11348
  msgid "Insert speaker phone number."
11349
  msgstr "Inserisci il numero di telefono dell'organizzatore."
11350
 
11351
- #: app/features/speakers.php:131 app/features/speakers.php:206
11352
  #, fuzzy
11353
  #| msgid "Insert organizer email address."
11354
  msgid "Insert speaker email address."
11355
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
11356
 
11357
- #: app/features/speakers.php:139 app/features/speakers.php:210
11358
  #, fuzzy
11359
  #| msgid "Insert -1 for unlimited usage"
11360
  msgid "Insert URL of Website"
11361
  msgstr "Inserire -1 per utilizzo illimitato"
11362
 
11363
- #: app/features/speakers.php:144 app/features/speakers.php:213
11364
  #, fuzzy
11365
  #| msgid "Facebook Page Link"
11366
  msgid "Facebook Page"
11367
  msgstr "Link della pagina Facebook"
11368
 
11369
- #: app/features/speakers.php:147 app/features/speakers.php:214
11370
  #, fuzzy
11371
  #| msgid "Import from Facebook Calendar"
11372
  msgid "Insert URL of Facebook Page"
11373
  msgstr "Importa dal calendario Facebook"
11374
 
11375
- #: app/features/speakers.php:152 app/features/speakers.php:217
11376
  msgid "Instagram"
11377
  msgstr ""
11378
 
11379
- #: app/features/speakers.php:155 app/features/speakers.php:218
11380
  #, fuzzy
11381
  #| msgid "Insert -1 for unlimited usage"
11382
  msgid "Insert URL of Instagram"
11383
  msgstr "Inserire -1 per utilizzo illimitato"
11384
 
11385
- #: app/features/speakers.php:160 app/features/speakers.php:221
11386
  #, fuzzy
11387
  #| msgid "Linkedin"
11388
  msgid "LinkedIn"
11389
  msgstr "Linkedin"
11390
 
11391
- #: app/features/speakers.php:163
11392
  #, fuzzy
11393
  #| msgid "Insert -1 for unlimited usage"
11394
  msgid "Insert URL of LinkedIn"
11395
  msgstr "Inserire -1 per utilizzo illimitato"
11396
 
11397
- #: app/features/speakers.php:168 app/features/speakers.php:225
11398
  #, fuzzy
11399
  #| msgid "Twitter"
11400
  msgid "Twitter Page"
11401
  msgstr "Twitter"
11402
 
11403
- #: app/features/speakers.php:171 app/features/speakers.php:226
11404
  #, fuzzy
11405
  #| msgid "Insert -1 for unlimited usage"
11406
  msgid "Insert URL of Twitter Page"
11407
  msgstr "Inserire -1 per utilizzo illimitato"
11408
 
11409
- #: app/features/speakers.php:222
11410
  #, fuzzy
11411
  #| msgid "Insert -1 for unlimited usage"
11412
  msgid "Insert URL of linkedin"
11413
  msgstr "Inserire -1 per utilizzo illimitato"
11414
 
11415
- #: app/features/speakers.php:347
11416
  msgid "Sorry, You must insert speaker name!"
11417
  msgstr ""
11418
 
11419
- #: app/features/speakers.php:396
11420
  msgid ""
11421
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11422
  "section and speaker widget section!"
@@ -11504,69 +11498,69 @@ msgctxt "plugin link"
11504
  msgid "Upgrade to Pro Version"
11505
  msgstr ""
11506
 
11507
- #: app/libraries/factory.php:234
11508
  msgctxt "plugin link"
11509
  msgid "Settings"
11510
  msgstr "Impostazioni"
11511
 
11512
- #: app/libraries/factory.php:239
11513
  msgctxt "plugin link"
11514
  msgid "Upgrade"
11515
  msgstr ""
11516
 
11517
- #: app/libraries/factory.php:393
11518
  msgid "day"
11519
  msgstr "giorno"
11520
 
11521
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11522
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11523
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11524
  msgid "days"
11525
  msgstr "giorni"
11526
 
11527
- #: app/libraries/factory.php:395
11528
  msgid "hour"
11529
  msgstr "ora"
11530
 
11531
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11532
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11533
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11534
  msgid "hours"
11535
  msgstr "ore"
11536
 
11537
- #: app/libraries/factory.php:397
11538
  msgid "minute"
11539
  msgstr "minuto"
11540
 
11541
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11542
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11543
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11544
  msgid "minutes"
11545
  msgstr "minuti"
11546
 
11547
- #: app/libraries/factory.php:399
11548
  msgid "second"
11549
  msgstr "secondo"
11550
 
11551
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11552
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11553
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11554
  msgid "seconds"
11555
  msgstr "secondi"
11556
 
11557
- #: app/libraries/factory.php:477
11558
  msgid "MEC Single Sidebar"
11559
  msgstr ""
11560
 
11561
- #: app/libraries/factory.php:478
11562
  msgid "Custom sidebar for single and modal page of MEC."
11563
  msgstr ""
11564
 
11565
- #: app/libraries/factory.php:1199
11566
  msgid "Notice:"
11567
  msgstr ""
11568
 
11569
- #: app/libraries/factory.php:1200
11570
  msgid "This update includes only bug fixes."
11571
  msgstr ""
11572
 
@@ -11722,12 +11716,6 @@ msgstr "Shortcode"
11722
  msgid "%s Form"
11723
  msgstr ""
11724
 
11725
- #: app/libraries/main.php:689
11726
- #, fuzzy
11727
- #| msgid "Support"
11728
- msgid "MEC Cart"
11729
- msgstr "Supporto"
11730
-
11731
  #: app/libraries/main.php:726
11732
  msgid "Only For Bookers"
11733
  msgstr ""
@@ -12518,12 +12506,7 @@ msgstr "Ora di inizio"
12518
  msgid "End at: %s - %s"
12519
  msgstr ""
12520
 
12521
- #: app/libraries/skins.php:1755
12522
- #, php-format
12523
- msgid "Every %s"
12524
- msgstr ""
12525
-
12526
- #: app/libraries/skins.php:1756
12527
  #, fuzzy
12528
  #| msgid "Repeat"
12529
  msgid "Repeating Event"
@@ -13021,6 +13004,11 @@ msgstr "Team Webnus"
13021
  msgid "http://webnus.net"
13022
  msgstr ""
13023
 
 
 
 
 
 
13024
  #, fuzzy
13025
  #~| msgid "MEC Transaction ID: %s"
13026
  #~ msgid "MEC Transaction ID: %s, Event Title: %s"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
179
  msgstr "Cancellato"
180
 
181
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
182
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
183
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
184
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
185
  #: app/features/mec/notifications.php:1922
217
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
218
  #: app/features/autoemails.php:60 app/features/events.php:606
219
  #: app/features/events.php:2650 app/features/events.php:2717
220
+ #: app/features/events.php:2806 app/features/events.php:4445
221
+ #: app/features/fes.php:280 app/features/fes/form.php:812
222
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
223
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
224
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
225
  #: app/features/organizers.php:112 app/features/organizers.php:153
226
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
227
+ #: app/features/speakers.php:211 app/libraries/main.php:653
228
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
229
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
230
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
384
  #: app/features/events.php:2808 app/features/mec/booking.php:800
385
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
386
  #: app/features/organizers.php:104 app/features/organizers.php:149
387
+ #: app/features/speakers.php:126 app/features/speakers.php:207
388
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
389
  msgid "Tel"
390
  msgstr "Tel"
391
 
531
  msgid "Agreement"
532
  msgstr ""
533
 
534
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
535
+ #, php-format
536
+ msgid "I agree with %s"
537
+ msgstr ""
538
+
539
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
540
  #, php-format
541
  msgid "Instead of %s, the page title with a link will be show."
713
  #: app/features/events.php:1843 app/features/events.php:2014
714
  #: app/features/events.php:2029 app/features/events.php:2271
715
  #: app/features/events.php:2283 app/features/events.php:2476
716
+ #: app/features/events.php:2513 app/features/fes/form.php:460
717
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
718
  #: app/features/locations.php:341 app/features/mec/booking.php:113
719
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
720
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
791
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
792
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
793
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
794
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
795
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
796
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
797
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
798
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
799
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
957
 
958
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
959
  #: app/features/events.php:432 app/features/events.php:1283
960
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
961
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
962
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
963
  #: app/skins/single.php:1126 app/skins/single/default.php:213
964
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1037
  msgstr ""
1038
 
1039
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1040
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1041
  #: app/features/labels.php:61 app/features/labels.php:227
1042
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1043
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1073
  msgstr "Nascondi luogo"
1074
 
1075
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1076
+ #: app/features/events.php:3876 app/features/events.php:4190
1077
  #: app/features/locations.php:58 app/features/locations.php:267
1078
  #: app/features/locations.php:329 app/features/locations.php:331
1079
  #: app/features/locations.php:340
1093
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1094
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1095
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1096
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1097
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1098
  #: app/features/search.php:97 app/libraries/main.php:3020
1099
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1107
 
1108
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1109
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1110
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1111
  #: app/skins/single.php:1406 app/skins/single.php:1473
1112
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1113
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1130
 
1131
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1132
  #: app/features/events.php:1519 app/features/events.php:1532
1133
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1134
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1135
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1136
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1181
 
1182
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1183
  #: app/features/events.php:431 app/features/events.php:3877
1184
+ #: app/features/events.php:4192 app/features/events.php:4193
1185
+ #: app/features/events.php:4194
1186
  #: app/features/mec/meta_boxes/display_options.php:1660
1187
  #: app/features/mec/meta_boxes/search_form.php:80
1188
  #: app/features/mec/meta_boxes/search_form.php:168
1197
  #: app/features/mec/meta_boxes/search_form.php:983
1198
  #: app/features/mec/meta_boxes/search_form.php:1070
1199
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1200
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1201
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1202
  #: app/features/organizers.php:58 app/features/organizers.php:208
1203
  #: app/features/organizers.php:277 app/features/organizers.php:279
1204
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1205
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1206
  #: app/features/popup/settings.php:263 app/features/search.php:103
1207
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1208
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1324
  #: app/features/booking/calendar_novel.php:145
1325
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1326
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1327
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1328
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1329
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1330
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1331
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1391
 
1392
  #: app/features/autoemails.php:74 app/features/events.php:230
1393
  #: app/features/labels.php:72 app/features/locations.php:70
1394
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1395
  #: app/features/tag.php:70
1396
  #, php-format
1397
  msgid "Edit %s"
1457
  msgid "Go to events page"
1458
  msgstr "Mostra Google Map sulla pagina dell'evento"
1459
 
1460
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1461
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1462
  #: app/features/wc.php:91 app/libraries/main.php:3072
1463
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1539
  msgid "Back to Cart"
1540
  msgstr "Torna alla lista eventi."
1541
 
1542
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1543
  #: app/features/mec/settings.php:907
1544
  msgid "Event Color"
1545
  msgstr "Colore Evento"
1551
  msgstr "Colore Evento"
1552
 
1553
  #: app/features/contextual.php:55 app/features/mec.php:546
1554
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1555
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1556
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1557
  #: app/libraries/main.php:738
1558
  msgid "Settings"
1666
  msgstr "Dettaglii evento/Pagina singola evento"
1667
 
1668
  #: app/features/contextual.php:166 app/features/events.php:1298
1669
+ #: app/features/fes/form.php:885
1670
  msgid "Currency Options"
1671
  msgstr "Opzioni valuta"
1672
 
1758
  msgstr ""
1759
 
1760
  #: app/features/dlfile.php:297 app/features/events.php:3874
1761
+ #: app/features/events.php:4183 app/features/events.php:4734
1762
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1763
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1764
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1765
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1768
  msgstr "Titolo"
1769
 
1770
  #: app/features/dlfile.php:301 app/features/events.php:1988
1771
+ #: app/features/events.php:2248 app/features/events.php:4184
1772
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1773
  #: app/libraries/hourlyschedule.php:152
1774
  msgid "Description"
1815
  msgstr "Prima €10"
1816
 
1817
  #: app/features/emails/details.php:35 app/features/events.php:1223
1818
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1819
  msgid "After"
1820
  msgstr "Dopo"
1821
 
1826
  msgstr "Prossimo avvenimento"
1827
 
1828
  #: app/features/emails/details.php:40 app/features/events.php:192
1829
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1830
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1831
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1832
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1847
  msgid "Add Event"
1848
  msgstr "Aggiungi Evento"
1849
 
1850
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1851
  msgid "Add New Event"
1852
  msgstr "Aggiungi nuovo Evento"
1853
 
1854
+ #: app/features/events.php:196 app/features/ix.php:4614
1855
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1856
  #: app/skins/map/tpl.php:93
1857
  msgid "No events found!"
1862
  msgstr ""
1863
 
1864
  #: app/features/events.php:199 app/features/fes/list.php:100
1865
+ #: app/features/popup/event.php:259
1866
  msgid "View Event"
1867
  msgstr "Visualizza Evento"
1868
 
1871
  msgstr "Nessun evento trovato nel cestino!"
1872
 
1873
  #: app/features/events.php:219 app/features/events.php:3831
1874
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1875
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1876
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1877
  #: app/libraries/main.php:7619
1880
 
1881
  #: app/features/events.php:229 app/features/labels.php:71
1882
  #: app/features/locations.php:69 app/features/organizers.php:69
1883
+ #: app/features/speakers.php:77 app/features/tag.php:69
1884
  #, php-format
1885
  msgid "All %s"
1886
  msgstr ""
1887
 
1888
  #: app/features/events.php:231 app/features/labels.php:73
1889
  #: app/features/locations.php:71 app/features/organizers.php:71
1890
+ #: app/features/speakers.php:79 app/features/tag.php:71
1891
  #, php-format
1892
  msgid "View %s"
1893
  msgstr ""
1894
 
1895
  #: app/features/events.php:232 app/features/labels.php:74
1896
  #: app/features/locations.php:72 app/features/organizers.php:72
1897
+ #: app/features/speakers.php:80 app/features/tag.php:72
1898
  #, php-format
1899
  msgid "Update %s"
1900
  msgstr ""
1901
 
1902
  #: app/features/events.php:233 app/features/labels.php:75
1903
  #: app/features/locations.php:73 app/features/organizers.php:73
1904
+ #: app/features/speakers.php:81 app/features/tag.php:73
1905
  #, php-format
1906
  msgid "Add New %s"
1907
  msgstr ""
1908
 
1909
  #: app/features/events.php:234 app/features/labels.php:76
1910
  #: app/features/locations.php:74 app/features/organizers.php:74
1911
+ #: app/features/speakers.php:82 app/features/tag.php:74
1912
  #, php-format
1913
  msgid "New %s Name"
1914
  msgstr ""
1915
 
1916
  #: app/features/events.php:235 app/features/labels.php:77
1917
  #: app/features/locations.php:75 app/features/organizers.php:75
1918
+ #: app/features/speakers.php:83 app/features/tag.php:75
1919
  #, php-format
1920
  msgid "Popular %s"
1921
  msgstr ""
1922
 
1923
  #: app/features/events.php:236 app/features/labels.php:78
1924
  #: app/features/locations.php:76 app/features/organizers.php:76
1925
+ #: app/features/speakers.php:84 app/features/tag.php:76
1926
  #, php-format
1927
  msgid "Search %s"
1928
  msgstr ""
1952
  #: app/features/events.php:278 app/features/events.php:336
1953
  #: app/features/locations.php:161 app/features/locations.php:213
1954
  #: app/features/organizers.php:133 app/features/organizers.php:164
1955
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1956
  msgid "Upload/Add image"
1957
  msgstr "Carica/Aggiungi immagine"
1958
 
1961
  #: app/features/locations.php:393 app/features/locations.php:400
1962
  #: app/features/organizers.php:134 app/features/organizers.php:165
1963
  #: app/features/organizers.php:316 app/features/organizers.php:323
1964
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1965
  msgid "Remove image"
1966
  msgstr "Rimuovi immagine"
1967
 
1981
  msgid "Date And Time"
1982
  msgstr "Data e Ora"
1983
 
1984
+ #: app/features/events.php:425 app/features/fes/form.php:386
1985
  msgid "Event Repeating"
1986
  msgstr "Ripetizione dell'evento"
1987
 
2026
  msgstr "Dati dell'ospite"
2027
 
2028
  #: app/features/events.php:605 app/features/events.php:2641
2029
+ #: app/features/events.php:4442 app/features/fes.php:280
2030
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2031
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2032
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2033
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2034
  msgid "Name"
2035
  msgstr "Nome"
2040
  "overwrite in the next import from Google."
2041
  msgstr ""
2042
 
2043
+ #: app/features/events.php:619 app/features/fes/form.php:284
2044
  msgid "Date and Time"
2045
  msgstr "Data e Ora"
2046
 
2047
  #: app/features/events.php:622 app/features/events.php:626
2048
+ #: app/features/events.php:3878 app/features/events.php:4185
2049
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2050
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2051
  #: app/features/mec/meta_boxes/display_options.php:57
2052
  #: app/features/mec/meta_boxes/display_options.php:312
2064
  #: app/features/mec/meta_boxes/display_options.php:2347
2065
  #: app/features/mec/meta_boxes/display_options.php:2478
2066
  #: app/features/mec/meta_boxes/display_options.php:2584
2067
+ #: app/features/popup/event.php:79
2068
  msgid "Start Date"
2069
  msgstr "Data di inizio"
2070
 
2071
  #: app/features/events.php:642 app/features/events.php:646
2072
+ #: app/features/events.php:3879 app/features/events.php:4187
2073
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2074
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2075
  #: app/features/mec/meta_boxes/display_options.php:73
2076
  #: app/features/mec/meta_boxes/display_options.php:328
2079
  #: app/features/mec/meta_boxes/display_options.php:788
2080
  #: app/features/mec/meta_boxes/display_options.php:1618
2081
  #: app/features/mec/meta_boxes/display_options.php:2363
2082
+ #: app/features/popup/event.php:96
2083
  msgid "End Date"
2084
  msgstr "Data di fine"
2085
 
2086
+ #: app/features/events.php:669 app/features/fes/form.php:326
2087
+ #: app/features/popup/event.php:113
2088
  #, fuzzy
2089
  #| msgid "All Day Event"
2090
  msgid "All-day Event"
2091
  msgstr "Evento giornaliero"
2092
 
2093
+ #: app/features/events.php:679 app/features/fes/form.php:329
2094
  msgid "Hide Event Time"
2095
  msgstr "Nascondi ora dell'evento"
2096
 
2097
+ #: app/features/events.php:689 app/features/fes/form.php:332
2098
  msgid "Hide Event End Time"
2099
  msgstr "Nascondi ora di fine dell'evento"
2100
 
2101
  #: app/features/events.php:694 app/features/events.php:698
2102
+ #: app/features/fes/form.php:336
2103
  #, fuzzy
2104
  #| msgid "Note to reviewer"
2105
  msgid "Notes on the time"
2106
  msgstr "Note per il revisore"
2107
 
2108
+ #: app/features/events.php:699 app/features/fes/form.php:337
2109
  #, fuzzy
2110
  #| msgid ""
2111
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2117
  "Mostra il successivo all'ora dell'evento sul calendario. E' possibile "
2118
  "inserire in questo campo Timezone etc."
2119
 
2120
+ #: app/features/events.php:711 app/features/fes/form.php:344
2121
  #, fuzzy
2122
  #| msgid "Timezone: %s"
2123
  msgid "Timezone"
2128
  #: app/features/events.php:1793 app/features/events.php:1813
2129
  #: app/features/events.php:1868 app/features/events.php:2438
2130
  #: app/features/events.php:2561 app/features/events.php:2672
2131
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2132
  msgid "Inherit from global options"
2133
  msgstr "Eredita da opzioni globali"
2134
 
2135
  #: app/features/events.php:725 app/features/events.php:728
2136
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2137
  #: app/features/mec/settings.php:858
2138
  #, fuzzy
2139
  #| msgid "Countdown View"
2140
  msgid "Countdown Method"
2141
  msgstr "Visualizza conto alla rovescia"
2142
 
2143
+ #: app/features/events.php:730 app/features/fes/form.php:363
2144
  #, fuzzy
2145
  #| msgid "Start Date"
2146
  msgid "Count to Event Start"
2147
  msgstr "Data di inizio"
2148
 
2149
+ #: app/features/events.php:731 app/features/fes/form.php:364
2150
  #, fuzzy
2151
  #| msgid "No event found!"
2152
  msgid "Count to Event End"
2153
  msgstr "Nessun evento trovato!"
2154
 
2155
+ #: app/features/events.php:737 app/features/fes/form.php:371
2156
  #: app/modules/weather/darksky.php:57
2157
  msgid "Visibility"
2158
  msgstr ""
2159
 
2160
+ #: app/features/events.php:740 app/features/fes/form.php:374
2161
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2162
  #, fuzzy
2163
  #| msgid "Event Cost"
2164
  msgid "Event Visibility"
2165
  msgstr "Costo Evento"
2166
 
2167
+ #: app/features/events.php:741 app/features/fes/form.php:375
2168
  #, fuzzy
2169
  #| msgid "Booking"
2170
  msgid "Show on Shortcodes"
2171
  msgstr "Prenotazione"
2172
 
2173
+ #: app/features/events.php:742 app/features/fes/form.php:376
2174
  #, fuzzy
2175
  #| msgid "Shortcodes"
2176
  msgid "Hide on Shortcodes"
2177
  msgstr "Shortcode"
2178
 
2179
+ #: app/features/events.php:749 app/features/fes/form.php:384
2180
  #, fuzzy
2181
  #| msgid "Repeat"
2182
  msgid "Repeating"
2188
  msgid "Event Repeating (Recurring events)"
2189
  msgstr "Ripetizione dell'evento"
2190
 
2191
+ #: app/features/events.php:762 app/features/fes/form.php:390
2192
  msgid "Repeats"
2193
  msgstr "Ripeti"
2194
 
2195
+ #: app/features/events.php:770 app/features/fes/form.php:392
2196
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2197
+ #: app/skins/default_full_calendar/tpl.php:79
2198
  #: app/skins/full_calendar/tpl.php:140
2199
  msgid "Daily"
2200
  msgstr "Giornaliero"
2201
 
2202
+ #: app/features/events.php:777 app/features/fes/form.php:393
2203
+ #: app/libraries/skins.php:1772
2204
  msgid "Every Weekday"
2205
  msgstr "Ogni settimana"
2206
 
2207
+ #: app/features/events.php:784 app/features/fes/form.php:394
2208
+ #: app/libraries/skins.php:1769
2209
  msgid "Every Weekend"
2210
  msgstr "Ogni fine settimana"
2211
 
2212
+ #: app/features/events.php:791 app/features/fes/form.php:395
2213
  msgid "Certain Weekdays"
2214
  msgstr "Alcuni fine settimana"
2215
 
2216
+ #: app/features/events.php:798 app/features/fes/form.php:396
2217
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2218
  #: app/skins/full_calendar/tpl.php:139
2219
  msgid "Weekly"
2220
  msgstr "Settimanale"
2221
 
2222
+ #: app/features/events.php:805 app/features/fes/form.php:397
2223
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2224
+ #: app/skins/default_full_calendar/tpl.php:77
2225
  #: app/skins/full_calendar/tpl.php:138
2226
  msgid "Monthly"
2227
  msgstr "Mensile"
2228
 
2229
+ #: app/features/events.php:812 app/features/fes/form.php:398
2230
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2231
+ #: app/skins/default_full_calendar/tpl.php:76
2232
  #: app/skins/full_calendar/tpl.php:137
2233
  msgid "Yearly"
2234
  msgstr "Annuale"
2235
 
2236
+ #: app/features/events.php:819 app/features/fes/form.php:399
2237
  msgid "Custom Days"
2238
  msgstr "Date personalizzate"
2239
 
2240
+ #: app/features/events.php:826 app/features/fes/form.php:400
2241
  #, fuzzy
2242
  #| msgid "Advanced Method"
2243
  msgid "Advanced"
2244
  msgstr "Metodo avanzato"
2245
 
2246
+ #: app/features/events.php:831 app/features/fes/form.php:404
2247
  msgid "Repeat Interval"
2248
  msgstr "Ripeti intervallo"
2249
 
2250
+ #: app/features/events.php:833 app/features/fes/form.php:405
2251
  msgid "Repeat interval"
2252
  msgstr "Ripeti intervallo"
2253
 
2254
+ #: app/features/events.php:837 app/features/fes/form.php:408
2255
  msgid "Week Days"
2256
  msgstr "Giorni della settimana"
2257
 
2263
 
2264
  #: app/features/events.php:860 app/features/events.php:2101
2265
  #: app/features/events.php:2129 app/features/events.php:2343
2266
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2267
  #: app/features/ix/import_g_calendar.php:51
2268
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2269
  #: app/libraries/skins.php:1389
2274
  #: app/features/events.php:2085 app/features/events.php:2167
2275
  #: app/features/events.php:2332 app/features/events.php:2376
2276
  #: app/features/events.php:2449 app/features/events.php:2566
2277
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2278
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2279
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2280
  msgid "Add"
2281
  msgstr "Aggiungi"
2282
 
2283
+ #: app/features/events.php:877 app/features/fes/form.php:456
2284
  #, fuzzy
2285
  #| msgid "Custom Days"
2286
  msgid "Custom Days Repeating"
2287
  msgstr "Date personalizzate"
2288
 
2289
+ #: app/features/events.php:880 app/features/fes/form.php:459
2290
  msgid ""
2291
  "Add certain days to event occurrence dates. If you have a single day event, "
2292
  "start and end dates should be the same, If you have a multiple day event, "
2295
 
2296
  #: app/features/events.php:891 app/features/events.php:2105
2297
  #: app/features/events.php:2133 app/features/events.php:2347
2298
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2299
  #, fuzzy
2300
  #| msgid "Enabled"
2301
  msgid "End"
2302
  msgstr "Abilitato"
2303
 
2304
+ #: app/features/events.php:968 app/features/fes/form.php:532
2305
  #, fuzzy
2306
  #| msgid "First name"
2307
  msgid "First"
2308
  msgstr "Nome"
2309
 
2310
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2311
  #, fuzzy
2312
  #| msgid "second"
2313
  msgid "Second"
2314
  msgstr "secondo"
2315
 
2316
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2317
  msgid "Third"
2318
  msgstr ""
2319
 
2320
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2321
  msgid "Fourth"
2322
  msgstr ""
2323
 
2324
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2325
  #, fuzzy
2326
  #| msgid "Last name"
2327
  msgid "Last"
2328
  msgstr "Cognome"
2329
 
2330
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2331
  msgid "Ends Repeat"
2332
  msgstr "Fine ripetizione"
2333
 
2334
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2335
  msgid "Never"
2336
  msgstr "Mai"
2337
 
2338
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2339
  msgid "On"
2340
  msgstr "Il"
2341
 
2342
  #: app/features/events.php:1227 app/features/events.php:1231
2343
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2344
  msgid "Occurrences times"
2345
  msgstr "Occorrenze"
2346
 
2356
  "L'evento terminerà dopo un certo numero di ripetizioni. Ad esempio se si "
2357
  "imposta a 10, l'evento terminerà dopo 10 ripetizioni."
2358
 
2359
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2360
  #, fuzzy
2361
  #| msgid "Next Occurrence of Other Events"
2362
  msgid "Show only one occurrence of this event"
2363
  msgstr "Il prossimo evento degli altri eventi"
2364
 
2365
+ #: app/features/events.php:1277 app/features/events.php:4195
2366
+ #: app/features/fes/form.php:867
2367
  #: app/features/mec/meta_boxes/search_form.php:116
2368
  #: app/features/mec/meta_boxes/search_form.php:204
2369
  #: app/features/mec/meta_boxes/search_form.php:292
2387
  #: app/features/mec/notifications.php:1511
2388
  #: app/features/mec/notifications.php:1628
2389
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2390
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2391
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2392
  #: app/widgets/single.php:122
2393
  msgid "Event Cost"
2394
  msgstr "Costo Evento"
2395
 
2396
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2397
  msgid "Show the minimum price based on tickets"
2398
  msgstr ""
2399
 
2400
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2401
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2402
  #: app/libraries/main.php:646
2403
  msgid "Currency"
2404
  msgstr "Valuta"
2405
 
2406
  #: app/features/events.php:1310 app/features/events.php:1315
2407
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2408
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2409
  msgid "Currency Sign"
2410
  msgstr "Segno valuta"
2411
 
2412
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2413
  #: app/features/mec/settings.php:600
2414
  msgid "Default value will be \"currency\" if you leave it empty."
2415
  msgstr "Il valore predefinito sarà \"valuta\" se viene lasciato vuoto."
2416
 
2417
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2418
  #: app/features/mec/settings.php:607
2419
  msgid "Currency Position"
2420
  msgstr "Posizione valuta"
2421
 
2422
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2423
  #: app/features/mec/settings.php:610
2424
  #, fuzzy
2425
  #| msgid "Before $10"
2426
  msgid "$10 (Before)"
2427
  msgstr "Prima €10"
2428
 
2429
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2430
  #: app/features/mec/settings.php:611
2431
  msgid "$ 10 (Before with Space)"
2432
  msgstr ""
2433
 
2434
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2435
  #: app/features/mec/settings.php:612
2436
  #, fuzzy
2437
  #| msgid "After"
2438
  msgid "10$ (After)"
2439
  msgstr "Dopo"
2440
 
2441
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2442
  #: app/features/mec/settings.php:613
2443
  msgid "10 $ (After with Space)"
2444
  msgstr ""
2445
 
2446
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2447
  #: app/features/mec/settings.php:618
2448
  msgid "Thousand Separator"
2449
  msgstr "Separatore migliaia"
2450
 
2451
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2452
  #: app/features/mec/settings.php:624
2453
  msgid "Decimal Separator"
2454
  msgstr "Separatore decimale"
2455
 
2456
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2457
  #: app/features/mec/settings.php:634
2458
  msgid "No decimal"
2459
  msgstr "Senza decimali"
2479
  msgid "Day 1"
2480
  msgstr ""
2481
 
2482
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2483
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2484
  msgid "Event Links"
2485
  msgstr "Link dell'evento"
2486
 
2487
  #: app/features/events.php:1501 app/features/events.php:1509
2488
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2489
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2490
  #: app/libraries/main.php:7649
2491
  msgid "Event Link"
2492
  msgstr "Link dell'evento"
2493
 
2494
  #: app/features/events.php:1504 app/features/events.php:1522
2495
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2496
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2497
  msgid "eg. http://yoursite.com/your-event"
2498
  msgstr "es. http://iltuosito.it/il-tuo-evento"
2499
 
2514
  msgid "URL Shortener"
2515
  msgstr ""
2516
 
2517
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2518
+ #: app/features/occurrences.php:530
2519
  msgid "More Information"
2520
  msgstr "Maggiori informazioni"
2521
 
2522
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2523
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2524
  #: app/features/popup/shortcode.php:481
2525
  msgid "Current Window"
2526
  msgstr "Finestra corrente"
2527
 
2528
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2529
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2530
  #: app/features/popup/shortcode.php:485
2531
  msgid "New Window"
2532
  msgstr "Nuova finestra"
2533
 
2534
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2535
  msgid ""
2536
  "If you fill it, it will be shown in event details page as an optional link. "
2537
  "Insert full link including http(s)://"
2910
  msgstr "Ticket"
2911
 
2912
  #: app/features/events.php:1944 app/features/events.php:2211
2913
+ #: app/features/events.php:4182 app/features/fes.php:280
2914
  #: app/features/labels.php:183 app/features/locations.php:266
2915
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2916
  msgid "ID"
2917
  msgstr "ID"
2918
 
2921
  msgstr "Nome biglietto/ticket"
2922
 
2923
  #: app/features/events.php:1956 app/features/events.php:2219
2924
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2925
  msgid "Start Time"
2926
  msgstr "Ora di inizio"
2927
 
2928
  #: app/features/events.php:1970 app/features/events.php:2233
2929
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2930
  msgid "End Time"
2931
  msgstr "Ora di fine"
2932
 
2948
  #: app/features/events.php:2007 app/features/events.php:2011
2949
  #: app/features/events.php:2109 app/features/events.php:2136
2950
  #: app/features/events.php:2265 app/features/events.php:2268
2951
+ #: app/features/events.php:2349 app/features/events.php:4743
2952
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2953
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2954
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3114
  msgid "Fixed Fields"
3115
  msgstr "Campo obbligatorio"
3116
 
3117
+ #: app/features/events.php:2887 app/features/events.php:4737
3118
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3119
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3120
  msgid "Attendees"
3146
  msgstr ""
3147
 
3148
  #: app/features/events.php:3757 app/features/mec.php:1374
3149
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3150
  msgid "Upcoming Events"
3151
  msgstr ""
3152
 
3207
  msgstr "Esporta JSON"
3208
 
3209
  #: app/features/events.php:4068 app/features/events.php:4069
3210
+ #: app/features/events.php:4295
3211
  msgid "Duplicate"
3212
  msgstr "Duplica"
3213
 
3214
+ #: app/features/events.php:4189
3215
  msgid "Link"
3216
  msgstr "Link"
3217
 
3218
+ #: app/features/events.php:4191 app/features/locations.php:111
3219
  #: app/features/locations.php:181 app/features/locations.php:268
3220
  #: app/features/mec/meta_boxes/search_form.php:108
3221
  #: app/features/mec/meta_boxes/search_form.php:196
3233
  msgid "Address"
3234
  msgstr "Indirizzo"
3235
 
3236
+ #: app/features/events.php:4193
3237
  #, php-format
3238
  msgid "%s Tel"
3239
  msgstr ""
3240
 
3241
+ #: app/features/events.php:4194
3242
  #, php-format
3243
  msgid "%s Email"
3244
  msgstr ""
3245
 
3246
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3247
  #: app/features/mec/settings.php:876
3248
  msgid "Featured Image"
3249
  msgstr "Immagine in evidenza"
3250
 
3251
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3252
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3253
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3254
  msgid "Tags"
3255
  msgstr "Tag"
3256
 
3257
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3258
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3259
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3260
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3261
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3262
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3263
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3265
  msgid "Speakers"
3266
  msgstr ""
3267
 
3268
+ #: app/features/events.php:4448 app/features/fes.php:280
3269
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3270
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3271
  #: app/libraries/main.php:7592
3272
  msgid "Ticket"
3273
  msgstr "Ticket"
3274
 
3275
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3276
  #, fuzzy
3277
  #| msgid "Verification"
3278
  msgid "Variations"
3279
  msgstr "Verifica"
3280
 
3281
+ #: app/features/events.php:4466 app/features/fes.php:356
3282
  msgid "Unknown"
3283
  msgstr "Sconosciuto"
3284
 
3285
+ #: app/features/events.php:4494
3286
  msgid ""
3287
  "If you want to send an email, first select your attendees and then click in "
3288
  "the button below, please."
3289
  msgstr ""
3290
 
3291
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3292
  #, fuzzy
3293
  #| msgid "Organizer Email"
3294
  msgid "Send Email"
3295
  msgstr "Email organizzatore"
3296
 
3297
+ #: app/features/events.php:4498
3298
  #, fuzzy
3299
  #| msgid "Attendees Form"
3300
  msgid "No Attendees Found!"
3301
  msgstr "Form partecipanti"
3302
 
3303
+ #: app/features/events.php:4800
3304
  #, fuzzy
3305
  #| msgid "No bookings found!"
3306
  msgid "No Bookings Found!"
3442
  msgid "The event published."
3443
  msgstr "L'evento è stato pubblicato."
3444
 
3445
+ #: app/features/fes/form.php:180
3446
  #, fuzzy
3447
  #| msgid "Go back to events list."
3448
  msgid "Go back to events list"
3449
  msgstr "Torna alla lista eventi."
3450
 
3451
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3452
  #: app/features/mec/settings.php:1171
3453
  msgid "Excerpt"
3454
  msgstr ""
3455
 
3456
+ #: app/features/fes/form.php:273
3457
  msgid "Optional Event Excerpt"
3458
  msgstr ""
3459
 
3460
+ #: app/features/fes/form.php:280
3461
  msgid ""
3462
  "This event is imported from Google calendar so if you modify it would "
3463
  "overwrite in the next import from Google."
3464
  msgstr ""
3465
 
3466
+ #: app/features/fes/form.php:409
3467
  #: app/features/mec/meta_boxes/display_options.php:1494
3468
  #: app/libraries/main.php:476
3469
  msgid "Monday"
3470
  msgstr "Lunedì"
3471
 
3472
+ #: app/features/fes/form.php:410
3473
  #: app/features/mec/meta_boxes/display_options.php:1495
3474
  #: app/libraries/main.php:476
3475
  msgid "Tuesday"
3476
  msgstr "Martedì"
3477
 
3478
+ #: app/features/fes/form.php:411
3479
  #: app/features/mec/meta_boxes/display_options.php:1496
3480
  #: app/libraries/main.php:476
3481
  msgid "Wednesday"
3482
  msgstr "Mercoledì"
3483
 
3484
+ #: app/features/fes/form.php:412
3485
  #: app/features/mec/meta_boxes/display_options.php:1497
3486
  #: app/libraries/main.php:476
3487
  msgid "Thursday"
3488
  msgstr "Giovedì"
3489
 
3490
+ #: app/features/fes/form.php:413
3491
  #: app/features/mec/meta_boxes/display_options.php:1498
3492
  #: app/libraries/main.php:476
3493
  msgid "Friday"
3494
  msgstr "Venerdì"
3495
 
3496
+ #: app/features/fes/form.php:414
3497
  #: app/features/mec/meta_boxes/display_options.php:1499
3498
  #: app/libraries/main.php:476
3499
  msgid "Saturday"
3500
  msgstr "Sabato"
3501
 
3502
+ #: app/features/fes/form.php:415
3503
  #: app/features/mec/meta_boxes/display_options.php:1493
3504
  #: app/libraries/main.php:476
3505
  msgid "Sunday"
3506
  msgstr "Domenica"
3507
 
3508
+ #: app/features/fes/form.php:768
3509
  msgid ""
3510
  "The event will finish after certain repeats. For example if you set it to "
3511
  "10, the event will finish after 10 repeats."
3513
  "L'evento terminerà dopo un certo numero di ripetizioni. Ad esempio se si "
3514
  "imposta a 10, l'evento terminerà dopo 10 ripetizioni."
3515
 
3516
+ #: app/features/fes/form.php:792
3517
  msgid "Note to reviewer"
3518
  msgstr "Note per il revisore"
3519
 
3520
+ #: app/features/fes/form.php:810
3521
  msgid "User Data"
3522
  msgstr "Dati utente"
3523
 
3524
+ #: app/features/fes/form.php:813
3525
  msgid "eg. yourname@gmail.com"
3526
  msgstr "es. iltuonome@gmail.com"
3527
 
3528
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3529
+ #: app/features/popup/event.php:190
3530
  msgid "eg. John Smith"
3531
  msgstr "es. Mario Rossi"
3532
 
3533
+ #: app/features/fes/form.php:835
3534
  #, fuzzy
3535
  #| msgid ""
3536
  #| "If you fill it, it will be replaced instead of default event page link. "
3542
  "Se compilato, verrà sostituito invece del collegamento della pagina degli "
3543
  "eventi predefiniti. Inserisci il collegamento completo compreso http (s): //"
3544
 
3545
+ #: app/features/fes/form.php:958
3546
  msgid "Remove Image"
3547
  msgstr "Rimuovi immagine"
3548
 
3549
+ #: app/features/fes/form.php:1048
3550
  msgid "Insert your desired tags, comma separated."
3551
  msgstr "Inserisci i tag desiderati, separati da virgola."
3552
 
3553
+ #: app/features/fes/form.php:1070
3554
  #, fuzzy
3555
  #| msgid "No Search Options"
3556
  msgid "Speakers Names"
3557
  msgstr "Nessuna opzione di ricerca"
3558
 
3559
+ #: app/features/fes/form.php:1071
3560
  msgid "Separate names with commas: Justin, Chris"
3561
  msgstr ""
3562
 
3563
+ #: app/features/fes/form.php:1116
3564
  #, fuzzy, php-format
3565
  #| msgid "Please %s/%s in order to submit new events."
3566
  msgid "I accept the %s in order to submit an event."
3567
  msgstr "Si prega di %s/%s prima di inserire nuovi eventi."
3568
 
3569
+ #: app/features/fes/form.php:1116
3570
  msgid "Privacy Policy"
3571
  msgstr ""
3572
 
3573
+ #: app/features/fes/form.php:1118
3574
  #, fuzzy
3575
  #| msgid "Please %s/%s in order to submit new events."
3576
  msgid "I accept the Privacy Policy in order to submit an event."
3577
  msgstr "Si prega di %s/%s prima di inserire nuovi eventi."
3578
 
3579
+ #: app/features/fes/form.php:1124
3580
  #, fuzzy
3581
  #| msgid "Edit Events"
3582
  msgid "Submit Event"
3661
  msgid "The events are imported successfully!"
3662
  msgstr ""
3663
 
3664
+ #: app/features/ix.php:1342
3665
  msgid "Third Party plugin is not installed and activated!"
3666
  msgstr ""
3667
 
3668
+ #: app/features/ix.php:1366
3669
  msgid "Third Party plugin is invalid!"
3670
  msgstr ""
3671
 
3672
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3673
  #, fuzzy
3674
  #| msgid "Both of API key and Calendar ID are required!"
3675
  msgid "API key and Calendar ID are required!"
3676
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
3677
 
3678
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3679
  #, fuzzy
3680
  #| msgid "Please select some events to import!"
3681
  msgid "Please select events to import!"
3682
  msgstr "Si prega di selezionare degli eventi da importare!"
3683
 
3684
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3685
  #, fuzzy
3686
  #| msgid "Both of API key and Calendar ID are required!"
3687
  msgid "API key and Group URL are required!"
3688
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
3689
 
3690
+ #: app/features/ix.php:4137
3691
  msgid "Check at Meetup"
3692
  msgstr ""
3693
 
3694
+ #: app/features/ix.php:4303
3695
  #, fuzzy
3696
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3697
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3698
  msgstr "Tutti gli ID Clienti, Client Secret e ID Calendario sono obbligatori!"
3699
 
3700
+ #: app/features/ix.php:4326
3701
  #, fuzzy, php-format
3702
  #| msgid "All seems good! Please click %s for authenticating your app."
3703
  msgid "All seems good! Please click %s to authenticate your app."
3704
  msgstr "Sembra tutto ok! Fai clic su% s per autenticare l'applicazione."
3705
 
3706
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3707
  #: app/features/mec/settings.php:1496
3708
  msgid "here"
3709
  msgstr ""
3710
 
3711
+ #: app/features/ix.php:4381
3712
  #, fuzzy
3713
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3714
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3715
  msgstr ""
3716
  "Tutte le applicazioni Client, Client Secret e ID Calendario sono obbligatori!"
3717
 
3718
+ #: app/features/ix.php:4543
3719
  #, fuzzy, php-format
3720
  #| msgid "%s events added to Google Calendar successfully."
3721
  msgid "%s events added to Google Calendar with success."
3722
  msgstr "%s eventi aggiunti con successo dal calendario di Google."
3723
 
3724
+ #: app/features/ix.php:4544
3725
  #, fuzzy, php-format
3726
  #| msgid "%s previously added events get updated."
3727
  msgid "%s Updated previously added events."
3728
  msgstr "%s eventi precedentemente aggiunti vengono aggiornati."
3729
 
3730
+ #: app/features/ix.php:4545
3731
  #, php-format
3732
  msgid "%s events failed to add for following reasons: %s"
3733
  msgstr ""
3734
  "%s eventi non sono stati aggiornati, è fallita l'importazione per diverse "
3735
  "ragioni: %s"
3736
 
3737
+ #: app/features/ix.php:4577
3738
  #, fuzzy
3739
  #| msgid "Please insert your facebook page's link."
3740
  msgid "Please insert your Facebook page's link."
3741
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
3742
 
3743
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3744
  #, fuzzy
3745
  #| msgid ""
3746
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3752
  "Non riusciamo ad accedere alla vostra pagina Facebook. Si prega di "
3753
  "verificare e inserire una pagina valida."
3754
 
3755
+ #: app/features/ix.php:4625
3756
  msgid "Please insert your facebook page's link."
3757
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
3758
 
3969
  msgid "Add to Google Calendar"
3970
  msgstr "Aggiungi al calendario Google"
3971
 
3972
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3973
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3974
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3975
  #: app/features/mec/single.php:604
4087
  msgid "Import all of your Facebook events into MEC."
4088
  msgstr "Importa tutti gli eventi dal tuo Facebook in MEC."
4089
 
4090
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4091
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4092
  msgid "Documentation"
4093
  msgstr "Documentazione"
4414
  msgstr ""
4415
 
4416
  #: app/features/labels.php:79 app/features/locations.php:77
4417
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4418
  #: app/features/tag.php:77
4419
  #, fuzzy, php-format
4420
  #| msgid "Search Coupons"
4422
  msgstr "Ricerca Coupon"
4423
 
4424
  #: app/features/labels.php:80 app/features/locations.php:78
4425
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4426
  #: app/features/tag.php:78
4427
  #, fuzzy, php-format
4428
  #| msgid "No events found!"
4468
  msgstr ""
4469
 
4470
  #: app/features/labels.php:186 app/features/locations.php:269
4471
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4472
  #: app/modules/booking/steps/tickets.php:172
4473
  msgid "Count"
4474
  msgstr "Numero"
4484
  msgstr ""
4485
 
4486
  #: app/features/locations.php:59 app/features/mec.php:526
4487
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4488
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4489
  #: app/libraries/main.php:7623
4490
  msgid "Locations"
4495
  msgstr "Inserisci l'indirizzo del luogo"
4496
 
4497
  #: app/features/locations.php:131 app/features/locations.php:197
4498
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4499
  msgid "Latitude"
4500
  msgstr "Latitudine"
4501
 
4506
  msgstr "Latitudine geografica (opzionale)"
4507
 
4508
  #: app/features/locations.php:139 app/features/locations.php:201
4509
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4510
  msgid "Longitude"
4511
  msgstr "Longitudine"
4512
 
4531
 
4532
  #: app/features/locations.php:156 app/features/locations.php:210
4533
  #: app/features/organizers.php:128 app/features/organizers.php:161
4534
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4535
  msgid "Thumbnail"
4536
  msgstr "Anteprima"
4537
 
4538
  #: app/features/locations.php:329 app/features/occurrences.php:460
4539
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4540
  #, php-format
4541
  msgid "Event Main %s"
4542
  msgstr ""
4543
 
4544
  #: app/features/locations.php:332 app/features/occurrences.php:464
4545
+ #: app/features/popup/event.php:121
4546
  msgid "Hide location"
4547
  msgstr "Nascondi luogo"
4548
 
4549
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4550
  msgid "Insert a new location"
4551
  msgstr "Inserisci un nuovo luogo"
4552
 
4554
  msgid "Choose one of saved locations or insert new one below."
4555
  msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
4556
 
4557
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4558
  msgid "Location Name"
4559
  msgstr "Nome del luogo"
4560
 
4561
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4562
  msgid "eg. City Hall"
4563
  msgstr "es. Città"
4564
 
4565
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4566
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4567
  msgid "Event Location"
4568
  msgstr "Luogo dell'evento"
4569
 
4570
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4571
  msgid "eg. City hall, Manhattan, New York"
4572
  msgstr "es. Città, Roma, Campobasso"
4573
 
4574
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4575
  #, fuzzy
4576
  #| msgid "Longitude"
4577
  msgid "Latitude/Longitude"
4578
  msgstr "Longitudine"
4579
 
4580
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4581
  msgid ""
4582
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4583
  "to convert the location address to geopoint, Latitude and Longitude are the "
4586
  "the location on the map to find lat long coordinates."
4587
  msgstr ""
4588
 
4589
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4590
  msgid "Get Latitude and Longitude"
4591
  msgstr ""
4592
 
4593
  #: app/features/locations.php:392 app/features/organizers.php:315
4594
+ #: app/features/popup/event.php:209
4595
  msgid "Choose image"
4596
  msgstr "Seleziona immagine"
4597
 
4598
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4599
+ #: app/features/popup/event.php:140
4600
  msgid "Don't show map in single event page"
4601
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
4602
 
4603
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4604
  #: app/libraries/main.php:7654
4605
  #, fuzzy
4606
  #| msgid "Search Locations"
4607
  msgid "Other Locations"
4608
  msgstr "Cerca luoghi"
4609
 
4610
+ #: app/features/locations.php:413
4611
  msgid ""
4612
  "You can select extra locations in addition to main location if you like."
4613
  msgstr ""
4685
  msgid "Support"
4686
  msgstr "Supporto"
4687
 
4688
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4689
  #: app/features/mec/meta_boxes/filter.php:71
4690
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4691
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4693
  msgstr "Organizzatori"
4694
 
4695
  #: app/features/mec.php:536 app/features/mec.php:596
4696
+ #: app/features/mec/dashboard.php:218
4697
  msgid "Shortcodes"
4698
  msgstr "Shortcode"
4699
 
4911
  msgstr ""
4912
 
4913
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4914
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4915
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4916
  msgid "Version"
4917
  msgstr "Versione"
4937
  msgstr "Casella di ricerca"
4938
 
4939
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4940
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4941
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4942
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4943
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4944
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4945
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5536
  msgid "It applies only to the orders that are related to MEC."
5537
  msgstr "È applicato solo agli ordini legati alla MEC."
5538
 
5539
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5540
  msgid "After Add to Cart"
5541
  msgstr ""
5542
 
5543
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5544
  #, fuzzy
5545
  #| msgid "Get Direction"
5546
  msgid "Redirect to Cart"
5547
  msgstr "Prendi la direzione"
5548
 
5549
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5550
  #, fuzzy
5551
  #| msgid "Get Direction"
5552
  msgid "Redirect to Checkout"
5553
  msgstr "Prendi la direzione"
5554
 
5555
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5556
  msgid "Optional View Cart Button"
5557
  msgstr ""
5558
 
5559
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5560
  msgid "Optional Checkout Button"
5561
  msgstr ""
5562
 
5614
  "(Stripe) got canceled."
5615
  msgstr ""
5616
 
5617
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5618
+ #, fuzzy
5619
+ #| msgid "Support"
5620
+ msgid "MEC Cart"
5621
+ msgstr "Supporto"
5622
+
5623
+ #: app/features/mec/booking.php:1118
5624
  msgid "Use MEC Cart System"
5625
  msgstr ""
5626
 
5627
+ #: app/features/mec/booking.php:1120
5628
  msgid ""
5629
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5630
  "adding a simple cart and checkout system to your website."
5631
  msgstr ""
5632
 
5633
+ #: app/features/mec/booking.php:1122
5634
  msgid "You cannot use following MEC features while using MEC Cart."
5635
  msgstr ""
5636
 
5637
+ #: app/features/mec/booking.php:1124
5638
  #, fuzzy
5639
  #| msgid "Payment Gateways"
5640
  msgid "WooCommerce as Payment Gateway"
5641
  msgstr "Gateway di pagamento"
5642
 
5643
+ #: app/features/mec/booking.php:1125
5644
  #, fuzzy
5645
  #| msgid "Next Occurrence of Other Events"
5646
  msgid "Currency Per Event"
5647
  msgstr "Il prossimo evento degli altri eventi"
5648
 
5649
+ #: app/features/mec/booking.php:1126
5650
  #, fuzzy
5651
  #| msgid "Payment Gateways"
5652
  msgid "Disable Gateways Per Event"
5653
  msgstr "Gateway di pagamento"
5654
 
5655
+ #: app/features/mec/booking.php:1127
5656
  #, fuzzy
5657
  #| msgid "Stripe"
5658
  msgid "Stripe Connect Gateway"
5659
  msgstr "Banda"
5660
 
5661
+ #: app/features/mec/booking.php:1128
5662
  #, fuzzy
5663
  #| msgid "Pay by WooCommerce"
5664
  msgid "Pay By WooCommerce Gateway"
5665
  msgstr "Pagamento da WooCommerce"
5666
 
5667
+ #: app/features/mec/booking.php:1129
5668
  #, fuzzy
5669
  #| msgid "New Organizer Name"
5670
  msgid "Organizer Payment Module"
5671
  msgstr "Nuovo nome Organizzatore"
5672
 
5673
+ #: app/features/mec/booking.php:1133
5674
  #, fuzzy
5675
  #| msgid "Start Date"
5676
  msgid "Cart Page"
5677
  msgstr "Data di inizio"
5678
 
5679
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5680
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5681
  #, php-format
5682
  msgid "Put %s shortcode into the page."
5683
  msgstr "Inserisci %s sulla pagina."
5684
 
5685
+ #: app/features/mec/booking.php:1145
5686
  #, fuzzy
5687
  #| msgid "Checkout"
5688
  msgid "Checkout Page"
5689
  msgstr "Checkout"
5690
 
5691
+ #: app/features/mec/booking.php:1171
5692
  #, fuzzy
5693
  #| msgid "Enable booking module"
5694
  msgid "Enable Cart Invoice"
5695
  msgstr "Attiva modulo prenotazione"
5696
 
5697
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5698
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5699
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5700
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5702
  msgid "Saved"
5703
  msgstr "Salvato"
5704
 
5705
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5706
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5707
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5708
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5710
  msgid "Settings Saved!"
5711
  msgstr ""
5712
 
5713
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5714
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5715
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5716
  msgid "Please Refresh Page"
5726
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5727
  msgstr ""
5728
 
5729
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5730
  #, php-format
5731
  msgid ""
5732
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5734
  "Spots, etc you should upgrade to the Pro version."
5735
  msgstr ""
5736
 
5737
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5738
  msgid "lite"
5739
  msgstr ""
5740
 
5741
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5742
  #: app/features/mec/support.php:126
5743
  msgid "GO PREMIUM"
5744
  msgstr ""
5745
 
5746
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5747
  #, fuzzy
5748
  #| msgid "Modern Events Calendar"
5749
  msgid "Getting started with Modern Events Calendar"
5750
  msgstr "Calendario moderno degli eventi"
5751
 
5752
+ #: app/features/mec/dashboard.php:113
5753
  msgid ""
5754
  "In this short video, you can learn how to make an event and put a calendar "
5755
  "on your website. Please watch this 2 minutes video to the end."
5756
  msgstr ""
5757
 
5758
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5759
  #, fuzzy
5760
  #| msgid "MEC Activation"
5761
  msgid "License Activation"
5762
  msgstr "Attivazione"
5763
 
5764
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5765
  #, fuzzy
5766
  #| msgid "MEC Activation"
5767
  msgid "Activate Addons"
5768
  msgstr "Attivazione"
5769
 
5770
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5771
  msgid "You cannot access this section."
5772
  msgstr ""
5773
 
5774
+ #: app/features/mec/dashboard.php:159
5775
  msgid ""
5776
  "In order to use all plugin features and options, please enter your purchase "
5777
  "code."
5778
  msgstr ""
5779
 
5780
+ #: app/features/mec/dashboard.php:267
5781
  msgid "Popular Gateways"
5782
  msgstr ""
5783
 
5784
+ #: app/features/mec/dashboard.php:325
5785
  msgid "Change Log"
5786
  msgstr "Log modifiche"
5787
 
7331
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7332
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7333
  #: app/features/popup/settings.php:272 app/features/search.php:109
7334
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7335
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7336
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7337
  #: app/modules/speakers/details.php:18
8671
  msgid "Please, insert comma to separate reminder hours."
8672
  msgstr ""
8673
 
8674
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8675
  #: app/libraries/main.php:705
8676
  msgid "New Event"
8677
  msgstr "Nuovo Evento"
10987
  msgid "Choose one of saved locations."
10988
  msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
10989
 
10990
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
10991
+ #: app/features/popup/event.php:171
10992
  msgid "Hide organizer"
10993
  msgstr "Nascondi organizzatore"
10994
 
10995
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
10996
+ #: app/features/popup/event.php:180
10997
  msgid "Choose one of saved organizers or insert new one below."
10998
  msgstr ""
10999
  "Seleziona uno tra gli organizzatori salvati oppure inserisci uni nuovo."
11007
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
11008
 
11009
  #: app/features/organizers.php:120 app/features/organizers.php:157
11010
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
11011
  msgid "Link to organizer page"
11012
  msgstr "Link alla pagina dell'organizzatore"
11013
 
11021
  msgid "Contact info"
11022
  msgstr "Info di contatto"
11023
 
11024
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11025
  msgid "Insert a new organizer"
11026
  msgstr "Inserisci un nuovo organizzatore"
11027
 
11028
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11029
  msgid "Phone number."
11030
  msgstr ""
11031
 
11032
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11033
  msgid "eg. +1 (234) 5678"
11034
  msgstr "es. +1 (234) 5678"
11035
 
11036
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11037
  msgid "Email address."
11038
  msgstr ""
11039
 
11040
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11041
  msgid "eg. john@smith.com"
11042
  msgstr "es. mario@rossi.it"
11043
 
11044
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11045
  #, fuzzy
11046
  #| msgid "http://webnus.biz"
11047
  msgid "eg. https://webnus.net"
11057
  "You can select extra organizers in addition to main organizer if you like."
11058
  msgstr ""
11059
 
11060
+ #: app/features/popup/event.php:60
11061
  #, fuzzy
11062
  #| msgid "Add Shortcode"
11063
  msgid "Adding an Event..."
11064
  msgstr "Aggiungi Shortcode"
11065
 
11066
+ #: app/features/popup/event.php:68
11067
  #, fuzzy
11068
  #| msgid "Event Note"
11069
  msgid "Event Name"
11070
  msgstr "Note dell'evento"
11071
 
11072
+ #: app/features/popup/event.php:69
11073
  msgid "Event name is required"
11074
  msgstr ""
11075
 
11076
+ #: app/features/popup/event.php:130
11077
  #, fuzzy
11078
  #| msgid "Choose one of saved locations or insert new one below."
11079
  msgid "Choose one of saved locations or insert new one."
11080
  msgstr "Scegli uno dei luoghi salvati o inserisci uno nuovo."
11081
 
11082
+ #: app/features/popup/event.php:134
11083
  #, fuzzy
11084
  #| msgid "Add New Location"
11085
  msgid "Add Location"
11086
  msgstr "Aggiungi nuovo Luogo"
11087
 
11088
+ #: app/features/popup/event.php:184
11089
  #, fuzzy
11090
  #| msgid "Add New Organizer"
11091
  msgid "Add Organizer"
11092
  msgstr "Aggiungi nuovo Organizzatore"
11093
 
11094
+ #: app/features/popup/event.php:224
11095
  #, fuzzy
11096
  #| msgid "Categories"
11097
  msgid "All Categories"
11098
  msgstr "Categorie"
11099
 
11100
+ #: app/features/popup/event.php:225
11101
  msgid "Most Used"
11102
  msgstr ""
11103
 
11104
+ #: app/features/popup/event.php:236
11105
  #, fuzzy
11106
  #| msgid "Add New Label"
11107
  msgid "Add New Category"
11108
  msgstr "Aggiungi nuova Etichetta"
11109
 
11110
+ #: app/features/popup/event.php:247
11111
  #, fuzzy
11112
  #| msgid "Featured Image"
11113
  msgid "Set Featured Image"
11114
  msgstr "Immagine in evidenza"
11115
 
11116
+ #: app/features/popup/event.php:257
11117
  msgid "Your Event Has Been Created."
11118
  msgstr ""
11119
 
11120
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11121
  #: app/features/popup/shortcode.php:553
11122
  msgid "Prev"
11123
  msgstr ""
11124
 
11125
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11126
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11127
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11128
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11325
  msgid "No search result."
11326
  msgstr ""
11327
 
11328
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11329
+ #: app/features/speakers.php:293
11330
  #, fuzzy
11331
  #| msgid "Title"
11332
  msgid "Job Title"
11333
  msgstr "Titolo"
11334
 
11335
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11336
  msgid "Insert speaker job title."
11337
  msgstr ""
11338
 
11339
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11340
  #, fuzzy
11341
  #| msgid "Insert organizer phone number."
11342
  msgid "Insert speaker phone number."
11343
  msgstr "Inserisci il numero di telefono dell'organizzatore."
11344
 
11345
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11346
  #, fuzzy
11347
  #| msgid "Insert organizer email address."
11348
  msgid "Insert speaker email address."
11349
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
11350
 
11351
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11352
  #, fuzzy
11353
  #| msgid "Insert -1 for unlimited usage"
11354
  msgid "Insert URL of Website"
11355
  msgstr "Inserire -1 per utilizzo illimitato"
11356
 
11357
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11358
  #, fuzzy
11359
  #| msgid "Facebook Page Link"
11360
  msgid "Facebook Page"
11361
  msgstr "Link della pagina Facebook"
11362
 
11363
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11364
  #, fuzzy
11365
  #| msgid "Import from Facebook Calendar"
11366
  msgid "Insert URL of Facebook Page"
11367
  msgstr "Importa dal calendario Facebook"
11368
 
11369
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11370
  msgid "Instagram"
11371
  msgstr ""
11372
 
11373
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11374
  #, fuzzy
11375
  #| msgid "Insert -1 for unlimited usage"
11376
  msgid "Insert URL of Instagram"
11377
  msgstr "Inserire -1 per utilizzo illimitato"
11378
 
11379
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11380
  #, fuzzy
11381
  #| msgid "Linkedin"
11382
  msgid "LinkedIn"
11383
  msgstr "Linkedin"
11384
 
11385
+ #: app/features/speakers.php:169
11386
  #, fuzzy
11387
  #| msgid "Insert -1 for unlimited usage"
11388
  msgid "Insert URL of LinkedIn"
11389
  msgstr "Inserire -1 per utilizzo illimitato"
11390
 
11391
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11392
  #, fuzzy
11393
  #| msgid "Twitter"
11394
  msgid "Twitter Page"
11395
  msgstr "Twitter"
11396
 
11397
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11398
  #, fuzzy
11399
  #| msgid "Insert -1 for unlimited usage"
11400
  msgid "Insert URL of Twitter Page"
11401
  msgstr "Inserire -1 per utilizzo illimitato"
11402
 
11403
+ #: app/features/speakers.php:228
11404
  #, fuzzy
11405
  #| msgid "Insert -1 for unlimited usage"
11406
  msgid "Insert URL of linkedin"
11407
  msgstr "Inserire -1 per utilizzo illimitato"
11408
 
11409
+ #: app/features/speakers.php:353
11410
  msgid "Sorry, You must insert speaker name!"
11411
  msgstr ""
11412
 
11413
+ #: app/features/speakers.php:402
11414
  msgid ""
11415
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11416
  "section and speaker widget section!"
11498
  msgid "Upgrade to Pro Version"
11499
  msgstr ""
11500
 
11501
+ #: app/libraries/factory.php:232
11502
  msgctxt "plugin link"
11503
  msgid "Settings"
11504
  msgstr "Impostazioni"
11505
 
11506
+ #: app/libraries/factory.php:237
11507
  msgctxt "plugin link"
11508
  msgid "Upgrade"
11509
  msgstr ""
11510
 
11511
+ #: app/libraries/factory.php:391
11512
  msgid "day"
11513
  msgstr "giorno"
11514
 
11515
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11516
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11517
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11518
  msgid "days"
11519
  msgstr "giorni"
11520
 
11521
+ #: app/libraries/factory.php:393
11522
  msgid "hour"
11523
  msgstr "ora"
11524
 
11525
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11526
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11527
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11528
  msgid "hours"
11529
  msgstr "ore"
11530
 
11531
+ #: app/libraries/factory.php:395
11532
  msgid "minute"
11533
  msgstr "minuto"
11534
 
11535
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11536
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11537
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11538
  msgid "minutes"
11539
  msgstr "minuti"
11540
 
11541
+ #: app/libraries/factory.php:397
11542
  msgid "second"
11543
  msgstr "secondo"
11544
 
11545
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11546
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11547
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11548
  msgid "seconds"
11549
  msgstr "secondi"
11550
 
11551
+ #: app/libraries/factory.php:475
11552
  msgid "MEC Single Sidebar"
11553
  msgstr ""
11554
 
11555
+ #: app/libraries/factory.php:476
11556
  msgid "Custom sidebar for single and modal page of MEC."
11557
  msgstr ""
11558
 
11559
+ #: app/libraries/factory.php:1197
11560
  msgid "Notice:"
11561
  msgstr ""
11562
 
11563
+ #: app/libraries/factory.php:1198
11564
  msgid "This update includes only bug fixes."
11565
  msgstr ""
11566
 
11716
  msgid "%s Form"
11717
  msgstr ""
11718
 
 
 
 
 
 
 
11719
  #: app/libraries/main.php:726
11720
  msgid "Only For Bookers"
11721
  msgstr ""
12506
  msgid "End at: %s - %s"
12507
  msgstr ""
12508
 
12509
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12510
  #, fuzzy
12511
  #| msgid "Repeat"
12512
  msgid "Repeating Event"
13004
  msgid "http://webnus.net"
13005
  msgstr ""
13006
 
13007
+ #, fuzzy
13008
+ #~| msgid "Address"
13009
+ #~ msgid "WordPress"
13010
+ #~ msgstr "Indirizzo"
13011
+
13012
  #, fuzzy
13013
  #~| msgid "MEC Transaction ID: %s"
13014
  #~ msgid "MEC Transaction ID: %s, Event Title: %s"
languages/modern-events-calendar-lite-nb_NO.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nb_NO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:28+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
@@ -173,7 +173,7 @@ msgid "Canceled"
173
  msgstr "Kansellert"
174
 
175
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
176
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
177
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
178
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
179
  #: app/features/mec/notifications.php:1922
@@ -211,14 +211,14 @@ msgstr "Fornavn"
211
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
212
  #: app/features/autoemails.php:60 app/features/events.php:606
213
  #: app/features/events.php:2650 app/features/events.php:2717
214
- #: app/features/events.php:2806 app/features/events.php:4443
215
- #: app/features/fes.php:280 app/features/fes/form.php:810
216
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
217
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
218
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
219
  #: app/features/organizers.php:112 app/features/organizers.php:153
220
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
221
- #: app/features/speakers.php:205 app/libraries/main.php:653
222
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
223
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
224
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -378,8 +378,8 @@ msgstr "Dato"
378
  #: app/features/events.php:2808 app/features/mec/booking.php:800
379
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
380
  #: app/features/organizers.php:104 app/features/organizers.php:149
381
- #: app/features/speakers.php:120 app/features/speakers.php:201
382
- #: app/features/speakers.php:288 app/libraries/main.php:4252
383
  msgid "Tel"
384
  msgstr "Tlf"
385
 
@@ -525,6 +525,12 @@ msgstr ""
525
  msgid "Agreement"
526
  msgstr "Avtalen"
527
 
 
 
 
 
 
 
528
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
529
  #, php-format
530
  msgid "Instead of %s, the page title with a link will be show."
@@ -702,8 +708,8 @@ msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
702
  #: app/features/events.php:1843 app/features/events.php:2014
703
  #: app/features/events.php:2029 app/features/events.php:2271
704
  #: app/features/events.php:2283 app/features/events.php:2476
705
- #: app/features/events.php:2513 app/features/fes/form.php:458
706
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
707
  #: app/features/locations.php:341 app/features/mec/booking.php:113
708
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
709
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -780,9 +786,9 @@ msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
780
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
781
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
782
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
783
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
784
- #: app/features/organizers.php:289 app/features/popup/event.php:128
785
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
786
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
787
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
788
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -946,8 +952,8 @@ msgstr ""
946
 
947
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
948
  #: app/features/events.php:432 app/features/events.php:1283
949
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
950
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
951
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
952
  #: app/skins/single.php:1126 app/skins/single/default.php:213
953
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1026,7 +1032,7 @@ msgid "How to set label"
1026
  msgstr ""
1027
 
1028
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1029
- #: app/features/events.php:4195 app/features/fes/form.php:998
1030
  #: app/features/labels.php:61 app/features/labels.php:227
1031
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1032
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1062,7 +1068,7 @@ msgid "How to set location"
1062
  msgstr "Skjul Plassering"
1063
 
1064
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1065
- #: app/features/events.php:3876 app/features/events.php:4188
1066
  #: app/features/locations.php:58 app/features/locations.php:267
1067
  #: app/features/locations.php:329 app/features/locations.php:331
1068
  #: app/features/locations.php:340
@@ -1082,7 +1088,7 @@ msgstr "Skjul Plassering"
1082
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1083
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1084
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1085
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1086
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1087
  #: app/features/search.php:97 app/libraries/main.php:3020
1088
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1096,7 +1102,7 @@ msgstr "Sted"
1096
 
1097
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1098
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1099
- #: app/features/speakers.php:136 app/features/speakers.php:209
1100
  #: app/skins/single.php:1406 app/skins/single.php:1473
1101
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1102
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1119,7 +1125,7 @@ msgstr ""
1119
 
1120
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1121
  #: app/features/events.php:1519 app/features/events.php:1532
1122
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1123
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1124
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1125
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1170,8 +1176,8 @@ msgstr "Skjul arrangør"
1170
 
1171
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1172
  #: app/features/events.php:431 app/features/events.php:3877
1173
- #: app/features/events.php:4190 app/features/events.php:4191
1174
- #: app/features/events.php:4192
1175
  #: app/features/mec/meta_boxes/display_options.php:1660
1176
  #: app/features/mec/meta_boxes/search_form.php:80
1177
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1186,12 +1192,12 @@ msgstr "Skjul arrangør"
1186
  #: app/features/mec/meta_boxes/search_form.php:983
1187
  #: app/features/mec/meta_boxes/search_form.php:1070
1188
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1189
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1190
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1191
  #: app/features/organizers.php:58 app/features/organizers.php:208
1192
  #: app/features/organizers.php:277 app/features/organizers.php:279
1193
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1194
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1195
  #: app/features/popup/settings.php:263 app/features/search.php:103
1196
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1197
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1317,8 +1323,8 @@ msgstr "Tid"
1317
  #: app/features/booking/calendar_novel.php:145
1318
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1319
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1320
- #: app/libraries/render.php:554 app/libraries/render.php:758
1321
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1322
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1323
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1324
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1385,7 +1391,7 @@ msgstr "Ingen hendelser funnet!"
1385
 
1386
  #: app/features/autoemails.php:74 app/features/events.php:230
1387
  #: app/features/labels.php:72 app/features/locations.php:70
1388
- #: app/features/organizers.php:70 app/features/speakers.php:72
1389
  #: app/features/tag.php:70
1390
  #, php-format
1391
  msgid "Edit %s"
@@ -1451,7 +1457,7 @@ msgstr "Standard er 6"
1451
  msgid "Go to events page"
1452
  msgstr "Vis Google Maps på arrangementside"
1453
 
1454
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1455
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1456
  #: app/features/wc.php:91 app/libraries/main.php:3072
1457
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1533,7 +1539,7 @@ msgstr "Bestilling"
1533
  msgid "Back to Cart"
1534
  msgstr "Tilbake til arrangementliste."
1535
 
1536
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1537
  #: app/features/mec/settings.php:907
1538
  msgid "Event Color"
1539
  msgstr "Arrangementsfarge"
@@ -1545,8 +1551,8 @@ msgid "Recent Colors"
1545
  msgstr "Arrangementsfarge"
1546
 
1547
  #: app/features/contextual.php:55 app/features/mec.php:546
1548
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1549
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1550
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1551
  #: app/libraries/main.php:738
1552
  msgid "Settings"
@@ -1698,7 +1704,7 @@ msgid "Event Details/Single Event Page"
1698
  msgstr "Arrangements Detaljer/Enkeltarrangementsside"
1699
 
1700
  #: app/features/contextual.php:166 app/features/events.php:1298
1701
- #: app/features/fes/form.php:883
1702
  msgid "Currency Options"
1703
  msgstr "Valutavalg"
1704
 
@@ -1794,8 +1800,8 @@ msgid "Public File to Download"
1794
  msgstr ""
1795
 
1796
  #: app/features/dlfile.php:297 app/features/events.php:3874
1797
- #: app/features/events.php:4181 app/features/events.php:4730
1798
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1799
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1800
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1801
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1804,7 +1810,7 @@ msgid "Title"
1804
  msgstr "Tittel"
1805
 
1806
  #: app/features/dlfile.php:301 app/features/events.php:1988
1807
- #: app/features/events.php:2248 app/features/events.php:4182
1808
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1809
  #: app/libraries/hourlyschedule.php:152
1810
  msgid "Description"
@@ -1851,7 +1857,7 @@ msgid "Before"
1851
  msgstr "Før $10"
1852
 
1853
  #: app/features/emails/details.php:35 app/features/events.php:1223
1854
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1855
  msgid "After"
1856
  msgstr "Etter"
1857
 
@@ -1862,7 +1868,7 @@ msgid "event occurrence."
1862
  msgstr "Neste Forekomst"
1863
 
1864
  #: app/features/emails/details.php:40 app/features/events.php:192
1865
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1866
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1867
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1868
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1883,11 +1889,11 @@ msgstr ""
1883
  msgid "Add Event"
1884
  msgstr "Legg til Arrangement"
1885
 
1886
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1887
  msgid "Add New Event"
1888
  msgstr "Legg til nytt arrangement"
1889
 
1890
- #: app/features/events.php:196 app/features/ix.php:4573
1891
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1892
  #: app/skins/map/tpl.php:93
1893
  msgid "No events found!"
@@ -1898,7 +1904,7 @@ msgid "Edit Event"
1898
  msgstr "Rediger arrangement"
1899
 
1900
  #: app/features/events.php:199 app/features/fes/list.php:100
1901
- #: app/features/popup/event.php:254
1902
  msgid "View Event"
1903
  msgstr "Vis arrangement"
1904
 
@@ -1907,7 +1913,7 @@ msgid "No events found in Trash!"
1907
  msgstr "Ingen arrangement funnet i søppelbøtta!"
1908
 
1909
  #: app/features/events.php:219 app/features/events.php:3831
1910
- #: app/features/events.php:4196 app/features/fes/form.php:972
1911
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1912
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1913
  #: app/libraries/main.php:7619
@@ -1916,49 +1922,49 @@ msgstr "Kategorier"
1916
 
1917
  #: app/features/events.php:229 app/features/labels.php:71
1918
  #: app/features/locations.php:69 app/features/organizers.php:69
1919
- #: app/features/speakers.php:71 app/features/tag.php:69
1920
  #, php-format
1921
  msgid "All %s"
1922
  msgstr "Alle %s"
1923
 
1924
  #: app/features/events.php:231 app/features/labels.php:73
1925
  #: app/features/locations.php:71 app/features/organizers.php:71
1926
- #: app/features/speakers.php:73 app/features/tag.php:71
1927
  #, php-format
1928
  msgid "View %s"
1929
  msgstr "Se %s"
1930
 
1931
  #: app/features/events.php:232 app/features/labels.php:74
1932
  #: app/features/locations.php:72 app/features/organizers.php:72
1933
- #: app/features/speakers.php:74 app/features/tag.php:72
1934
  #, php-format
1935
  msgid "Update %s"
1936
  msgstr "Oppdatere %s"
1937
 
1938
  #: app/features/events.php:233 app/features/labels.php:75
1939
  #: app/features/locations.php:73 app/features/organizers.php:73
1940
- #: app/features/speakers.php:75 app/features/tag.php:73
1941
  #, php-format
1942
  msgid "Add New %s"
1943
  msgstr "Legg til ny %s"
1944
 
1945
  #: app/features/events.php:234 app/features/labels.php:76
1946
  #: app/features/locations.php:74 app/features/organizers.php:74
1947
- #: app/features/speakers.php:76 app/features/tag.php:74
1948
  #, php-format
1949
  msgid "New %s Name"
1950
  msgstr "Ny %s navn"
1951
 
1952
  #: app/features/events.php:235 app/features/labels.php:77
1953
  #: app/features/locations.php:75 app/features/organizers.php:75
1954
- #: app/features/speakers.php:77 app/features/tag.php:75
1955
  #, php-format
1956
  msgid "Popular %s"
1957
  msgstr "Populære %s"
1958
 
1959
  #: app/features/events.php:236 app/features/labels.php:78
1960
  #: app/features/locations.php:76 app/features/organizers.php:76
1961
- #: app/features/speakers.php:78 app/features/tag.php:76
1962
  #, php-format
1963
  msgid "Search %s"
1964
  msgstr "Søk i %s"
@@ -1988,7 +1994,7 @@ msgstr ""
1988
  #: app/features/events.php:278 app/features/events.php:336
1989
  #: app/features/locations.php:161 app/features/locations.php:213
1990
  #: app/features/organizers.php:133 app/features/organizers.php:164
1991
- #: app/features/speakers.php:181 app/features/speakers.php:232
1992
  msgid "Upload/Add image"
1993
  msgstr "Last opp/Legg til bilde"
1994
 
@@ -1997,7 +2003,7 @@ msgstr "Last opp/Legg til bilde"
1997
  #: app/features/locations.php:393 app/features/locations.php:400
1998
  #: app/features/organizers.php:134 app/features/organizers.php:165
1999
  #: app/features/organizers.php:316 app/features/organizers.php:323
2000
- #: app/features/speakers.php:182 app/features/speakers.php:233
2001
  msgid "Remove image"
2002
  msgstr "Fjern bilde"
2003
 
@@ -2017,7 +2023,7 @@ msgstr "Arrangementsdetaljer"
2017
  msgid "Date And Time"
2018
  msgstr "Dato og klokkeslett"
2019
 
2020
- #: app/features/events.php:425 app/features/fes/form.php:384
2021
  msgid "Event Repeating"
2022
  msgstr "Gjentakende arrangement"
2023
 
@@ -2066,10 +2072,10 @@ msgid "Guest Data"
2066
  msgstr "Gjestedata"
2067
 
2068
  #: app/features/events.php:605 app/features/events.php:2641
2069
- #: app/features/events.php:4440 app/features/fes.php:280
2070
- #: app/features/fes/form.php:814 app/features/labels.php:184
2071
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2072
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2073
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2074
  msgid "Name"
2075
  msgstr "Navn"
@@ -2080,13 +2086,13 @@ msgid ""
2080
  "overwrite in the next import from Google."
2081
  msgstr ""
2082
 
2083
- #: app/features/events.php:619 app/features/fes/form.php:282
2084
  msgid "Date and Time"
2085
  msgstr "Dato og klokkeslett"
2086
 
2087
  #: app/features/events.php:622 app/features/events.php:626
2088
- #: app/features/events.php:3878 app/features/events.php:4183
2089
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2090
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2091
  #: app/features/mec/meta_boxes/display_options.php:57
2092
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2104,13 +2110,13 @@ msgstr "Dato og klokkeslett"
2104
  #: app/features/mec/meta_boxes/display_options.php:2347
2105
  #: app/features/mec/meta_boxes/display_options.php:2478
2106
  #: app/features/mec/meta_boxes/display_options.php:2584
2107
- #: app/features/popup/event.php:77
2108
  msgid "Start Date"
2109
  msgstr "Startdato"
2110
 
2111
  #: app/features/events.php:642 app/features/events.php:646
2112
- #: app/features/events.php:3879 app/features/events.php:4185
2113
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2114
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2115
  #: app/features/mec/meta_boxes/display_options.php:73
2116
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2119,33 +2125,33 @@ msgstr "Startdato"
2119
  #: app/features/mec/meta_boxes/display_options.php:788
2120
  #: app/features/mec/meta_boxes/display_options.php:1618
2121
  #: app/features/mec/meta_boxes/display_options.php:2363
2122
- #: app/features/popup/event.php:94
2123
  msgid "End Date"
2124
  msgstr "Sluttdato"
2125
 
2126
- #: app/features/events.php:669 app/features/fes/form.php:324
2127
- #: app/features/popup/event.php:111
2128
  #, fuzzy
2129
  #| msgid "All Day Event"
2130
  msgid "All-day Event"
2131
  msgstr "Heldagsarrangement"
2132
 
2133
- #: app/features/events.php:679 app/features/fes/form.php:327
2134
  msgid "Hide Event Time"
2135
  msgstr "Skjul Arrangementet Tid"
2136
 
2137
- #: app/features/events.php:689 app/features/fes/form.php:330
2138
  msgid "Hide Event End Time"
2139
  msgstr "Skjul hendelsens sluttid"
2140
 
2141
  #: app/features/events.php:694 app/features/events.php:698
2142
- #: app/features/fes/form.php:334
2143
  #, fuzzy
2144
  #| msgid "Note to reviewer"
2145
  msgid "Notes on the time"
2146
  msgstr "Merknad til redaktør"
2147
 
2148
- #: app/features/events.php:699 app/features/fes/form.php:335
2149
  #, fuzzy
2150
  #| msgid ""
2151
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2157,7 +2163,7 @@ msgstr ""
2157
  "Den viser ved siden av arrangementstid på kalenderen. Du kan sette inn "
2158
  "tidszone etc. i dette feltet."
2159
 
2160
- #: app/features/events.php:711 app/features/fes/form.php:342
2161
  #, fuzzy
2162
  #| msgid "Timezone: %s"
2163
  msgid "Timezone"
@@ -2168,55 +2174,55 @@ msgstr "Tidssone: %s"
2168
  #: app/features/events.php:1793 app/features/events.php:1813
2169
  #: app/features/events.php:1868 app/features/events.php:2438
2170
  #: app/features/events.php:2561 app/features/events.php:2672
2171
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2172
  msgid "Inherit from global options"
2173
  msgstr "Overfør fra globale instillinger"
2174
 
2175
  #: app/features/events.php:725 app/features/events.php:728
2176
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2177
  #: app/features/mec/settings.php:858
2178
  #, fuzzy
2179
  #| msgid "Countdown View"
2180
  msgid "Countdown Method"
2181
  msgstr "Nedtelling Visning"
2182
 
2183
- #: app/features/events.php:730 app/features/fes/form.php:361
2184
  #, fuzzy
2185
  #| msgid "On Event Start"
2186
  msgid "Count to Event Start"
2187
  msgstr "På Arrangement Start"
2188
 
2189
- #: app/features/events.php:731 app/features/fes/form.php:362
2190
  #, fuzzy
2191
  #| msgid "On Event End"
2192
  msgid "Count to Event End"
2193
  msgstr "På hendelsesslutt"
2194
 
2195
- #: app/features/events.php:737 app/features/fes/form.php:369
2196
  #: app/modules/weather/darksky.php:57
2197
  msgid "Visibility"
2198
  msgstr "Synlighet"
2199
 
2200
- #: app/features/events.php:740 app/features/fes/form.php:372
2201
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2202
  #, fuzzy
2203
  #| msgid "Visibility"
2204
  msgid "Event Visibility"
2205
  msgstr "Synlighet"
2206
 
2207
- #: app/features/events.php:741 app/features/fes/form.php:373
2208
  #, fuzzy
2209
  #| msgid "Booking Style"
2210
  msgid "Show on Shortcodes"
2211
  msgstr "Bestilling stil"
2212
 
2213
- #: app/features/events.php:742 app/features/fes/form.php:374
2214
  #, fuzzy
2215
  #| msgid "Shortcodes"
2216
  msgid "Hide on Shortcodes"
2217
  msgstr "Shortcodes"
2218
 
2219
- #: app/features/events.php:749 app/features/fes/form.php:382
2220
  #, fuzzy
2221
  #| msgid "Repeat"
2222
  msgid "Repeating"
@@ -2228,65 +2234,70 @@ msgstr "Gjenta"
2228
  msgid "Event Repeating (Recurring events)"
2229
  msgstr "Gjentakende arrangement"
2230
 
2231
- #: app/features/events.php:762 app/features/fes/form.php:388
2232
  msgid "Repeats"
2233
  msgstr "Gjentakelser"
2234
 
2235
- #: app/features/events.php:770 app/features/fes/form.php:390
2236
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2237
  #: app/skins/full_calendar/tpl.php:140
2238
  msgid "Daily"
2239
  msgstr "Daglig"
2240
 
2241
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2242
  msgid "Every Weekday"
2243
  msgstr "Hver ukedag"
2244
 
2245
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2246
  msgid "Every Weekend"
2247
  msgstr "Hver Helg"
2248
 
2249
- #: app/features/events.php:791 app/features/fes/form.php:393
2250
  msgid "Certain Weekdays"
2251
  msgstr "Enkelte Ukedager"
2252
 
2253
- #: app/features/events.php:798 app/features/fes/form.php:394
2254
- #: app/skins/default_full_calendar/tpl.php:78
2255
  #: app/skins/full_calendar/tpl.php:139
2256
  msgid "Weekly"
2257
  msgstr "Ukentlig"
2258
 
2259
- #: app/features/events.php:805 app/features/fes/form.php:395
2260
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2261
  #: app/skins/full_calendar/tpl.php:138
2262
  msgid "Monthly"
2263
  msgstr "Månedlig"
2264
 
2265
- #: app/features/events.php:812 app/features/fes/form.php:396
2266
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2267
  #: app/skins/full_calendar/tpl.php:137
2268
  msgid "Yearly"
2269
  msgstr "Årlig"
2270
 
2271
- #: app/features/events.php:819 app/features/fes/form.php:397
2272
  msgid "Custom Days"
2273
  msgstr "Tilpassede dager"
2274
 
2275
- #: app/features/events.php:826 app/features/fes/form.php:398
2276
  #, fuzzy
2277
  #| msgid "Advanced Method"
2278
  msgid "Advanced"
2279
  msgstr "Avansert Metode"
2280
 
2281
- #: app/features/events.php:831 app/features/fes/form.php:402
2282
  msgid "Repeat Interval"
2283
  msgstr "Repetisjonsintervall"
2284
 
2285
- #: app/features/events.php:833 app/features/fes/form.php:403
2286
  msgid "Repeat interval"
2287
  msgstr "Repetisjonsintervall"
2288
 
2289
- #: app/features/events.php:837 app/features/fes/form.php:406
2290
  msgid "Week Days"
2291
  msgstr "Ukesdager"
2292
 
@@ -2300,7 +2311,7 @@ msgstr "Pro-versjonen av Modern Events Calendar"
2300
 
2301
  #: app/features/events.php:860 app/features/events.php:2101
2302
  #: app/features/events.php:2129 app/features/events.php:2343
2303
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2304
  #: app/features/ix/import_g_calendar.php:51
2305
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2306
  #: app/libraries/skins.php:1389
@@ -2311,19 +2322,19 @@ msgstr "Start"
2311
  #: app/features/events.php:2085 app/features/events.php:2167
2312
  #: app/features/events.php:2332 app/features/events.php:2376
2313
  #: app/features/events.php:2449 app/features/events.php:2566
2314
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2315
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2316
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2317
  msgid "Add"
2318
  msgstr "Legg til"
2319
 
2320
- #: app/features/events.php:877 app/features/fes/form.php:454
2321
  #, fuzzy
2322
  #| msgid "Custom Days"
2323
  msgid "Custom Days Repeating"
2324
  msgstr "Tilpassede dager"
2325
 
2326
- #: app/features/events.php:880 app/features/fes/form.php:457
2327
  msgid ""
2328
  "Add certain days to event occurrence dates. If you have a single day event, "
2329
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2332,52 +2343,52 @@ msgstr ""
2332
 
2333
  #: app/features/events.php:891 app/features/events.php:2105
2334
  #: app/features/events.php:2133 app/features/events.php:2347
2335
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2336
  msgid "End"
2337
  msgstr "Slutt"
2338
 
2339
- #: app/features/events.php:968 app/features/fes/form.php:530
2340
  #, fuzzy
2341
  #| msgid "First name"
2342
  msgid "First"
2343
  msgstr "Fornavn"
2344
 
2345
- #: app/features/events.php:1010 app/features/fes/form.php:572
2346
  #, fuzzy
2347
  #| msgid "second"
2348
  msgid "Second"
2349
  msgstr "sekund"
2350
 
2351
- #: app/features/events.php:1052 app/features/fes/form.php:614
2352
  #, fuzzy
2353
  #| msgid "Third Party"
2354
  msgid "Third"
2355
  msgstr "Tredjepart"
2356
 
2357
- #: app/features/events.php:1094 app/features/fes/form.php:656
2358
  msgid "Fourth"
2359
  msgstr ""
2360
 
2361
- #: app/features/events.php:1136 app/features/fes/form.php:698
2362
  #, fuzzy
2363
  #| msgid "Last name"
2364
  msgid "Last"
2365
  msgstr "Etternavn"
2366
 
2367
- #: app/features/events.php:1183 app/features/fes/form.php:744
2368
  msgid "Ends Repeat"
2369
  msgstr "Avslutter repetisjon"
2370
 
2371
- #: app/features/events.php:1195 app/features/fes/form.php:748
2372
  msgid "Never"
2373
  msgstr "Aldri"
2374
 
2375
- #: app/features/events.php:1207 app/features/fes/form.php:753
2376
  msgid "On"
2377
  msgstr "På"
2378
 
2379
  #: app/features/events.php:1227 app/features/events.php:1231
2380
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2381
  msgid "Occurrences times"
2382
  msgstr "Gjentagende tider"
2383
 
@@ -2393,14 +2404,14 @@ msgstr ""
2393
  "Arrangementet vil bli ferdig etter enkelte gjentagelser. For eksempel hvis "
2394
  "du setter det til 10, vil arrangementet avsluttes etter 10 gjentakelser."
2395
 
2396
- #: app/features/events.php:1248 app/features/fes/form.php:779
2397
  #, fuzzy
2398
  #| msgid "Next Occurrence of Other Events"
2399
  msgid "Show only one occurrence of this event"
2400
  msgstr "Neste forekomst av Andre Arrangement"
2401
 
2402
- #: app/features/events.php:1277 app/features/events.php:4193
2403
- #: app/features/fes/form.php:865
2404
  #: app/features/mec/meta_boxes/search_form.php:116
2405
  #: app/features/mec/meta_boxes/search_form.php:204
2406
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2424,75 +2435,75 @@ msgstr "Neste forekomst av Andre Arrangement"
2424
  #: app/features/mec/notifications.php:1511
2425
  #: app/features/mec/notifications.php:1628
2426
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2427
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2428
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2429
  #: app/widgets/single.php:122
2430
  msgid "Event Cost"
2431
  msgstr "Kostnad for arrangementet"
2432
 
2433
- #: app/features/events.php:1292 app/features/fes/form.php:877
2434
  #, fuzzy
2435
  #| msgid "Show weather module on event page"
2436
  msgid "Show the minimum price based on tickets"
2437
  msgstr "Vi vær modul på arrangement side"
2438
 
2439
- #: app/features/events.php:1300 app/features/fes/form.php:885
2440
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2441
  #: app/libraries/main.php:646
2442
  msgid "Currency"
2443
  msgstr "Valuta"
2444
 
2445
  #: app/features/events.php:1310 app/features/events.php:1315
2446
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2447
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2448
  msgid "Currency Sign"
2449
  msgstr "Valutategn"
2450
 
2451
- #: app/features/events.php:1316 app/features/fes/form.php:901
2452
  #: app/features/mec/settings.php:600
2453
  msgid "Default value will be \"currency\" if you leave it empty."
2454
  msgstr "Standardverdien vil være \"valuta\" hvis du lar den stå tom."
2455
 
2456
- #: app/features/events.php:1323 app/features/fes/form.php:908
2457
  #: app/features/mec/settings.php:607
2458
  msgid "Currency Position"
2459
  msgstr "Valutaområde"
2460
 
2461
- #: app/features/events.php:1326 app/features/fes/form.php:911
2462
  #: app/features/mec/settings.php:610
2463
  #, fuzzy
2464
  #| msgid "Before $10"
2465
  msgid "$10 (Before)"
2466
  msgstr "Før $10"
2467
 
2468
- #: app/features/events.php:1327 app/features/fes/form.php:912
2469
  #: app/features/mec/settings.php:611
2470
  msgid "$ 10 (Before with Space)"
2471
  msgstr ""
2472
 
2473
- #: app/features/events.php:1328 app/features/fes/form.php:913
2474
  #: app/features/mec/settings.php:612
2475
  #, fuzzy
2476
  #| msgid "After"
2477
  msgid "10$ (After)"
2478
  msgstr "Etter"
2479
 
2480
- #: app/features/events.php:1329 app/features/fes/form.php:914
2481
  #: app/features/mec/settings.php:613
2482
  msgid "10 $ (After with Space)"
2483
  msgstr ""
2484
 
2485
- #: app/features/events.php:1334 app/features/fes/form.php:919
2486
  #: app/features/mec/settings.php:618
2487
  msgid "Thousand Separator"
2488
  msgstr "Tusen-separator"
2489
 
2490
- #: app/features/events.php:1340 app/features/fes/form.php:925
2491
  #: app/features/mec/settings.php:624
2492
  msgid "Decimal Separator"
2493
  msgstr "Desimal-separator"
2494
 
2495
- #: app/features/events.php:1350 app/features/fes/form.php:935
2496
  #: app/features/mec/settings.php:634
2497
  msgid "No decimal"
2498
  msgstr "Ingen desimal"
@@ -2518,21 +2529,21 @@ msgstr ""
2518
  msgid "Day 1"
2519
  msgstr "Dag 1"
2520
 
2521
- #: app/features/events.php:1498 app/features/fes/form.php:829
2522
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2523
  msgid "Event Links"
2524
  msgstr "Arrangemenslenker"
2525
 
2526
  #: app/features/events.php:1501 app/features/events.php:1509
2527
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2528
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2529
  #: app/libraries/main.php:7649
2530
  msgid "Event Link"
2531
  msgstr "Arrangemenslenke"
2532
 
2533
  #: app/features/events.php:1504 app/features/events.php:1522
2534
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2535
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2536
  msgid "eg. http://yoursite.com/your-event"
2537
  msgstr "f.eks. http://dinside.com/ditt-arrangement"
2538
 
@@ -2553,24 +2564,24 @@ msgstr ""
2553
  msgid "URL Shortener"
2554
  msgstr ""
2555
 
2556
- #: app/features/events.php:1525 app/features/fes/form.php:838
2557
- #: app/features/occurrences.php:527
2558
  msgid "More Information"
2559
  msgstr "Mer informasjon"
2560
 
2561
- #: app/features/events.php:1527 app/features/fes/form.php:840
2562
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2563
  #: app/features/popup/shortcode.php:481
2564
  msgid "Current Window"
2565
  msgstr "Gjeldende vindu"
2566
 
2567
- #: app/features/events.php:1528 app/features/fes/form.php:841
2568
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2569
  #: app/features/popup/shortcode.php:485
2570
  msgid "New Window"
2571
  msgstr "Nytt vindu"
2572
 
2573
- #: app/features/events.php:1533 app/features/fes/form.php:843
2574
  msgid ""
2575
  "If you fill it, it will be shown in event details page as an optional link. "
2576
  "Insert full link including http(s)://"
@@ -2952,9 +2963,9 @@ msgid "Ticket ID"
2952
  msgstr "Billett"
2953
 
2954
  #: app/features/events.php:1944 app/features/events.php:2211
2955
- #: app/features/events.php:4180 app/features/fes.php:280
2956
  #: app/features/labels.php:183 app/features/locations.php:266
2957
- #: app/features/organizers.php:207 app/features/speakers.php:285
2958
  msgid "ID"
2959
  msgstr "ID"
2960
 
@@ -2963,12 +2974,12 @@ msgid "Ticket Name"
2963
  msgstr "Billettnavn"
2964
 
2965
  #: app/features/events.php:1956 app/features/events.php:2219
2966
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2967
  msgid "Start Time"
2968
  msgstr "Starttid"
2969
 
2970
  #: app/features/events.php:1970 app/features/events.php:2233
2971
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2972
  msgid "End Time"
2973
  msgstr "Sluttidspunkt"
2974
 
@@ -2990,7 +3001,7 @@ msgstr ""
2990
  #: app/features/events.php:2007 app/features/events.php:2011
2991
  #: app/features/events.php:2109 app/features/events.php:2136
2992
  #: app/features/events.php:2265 app/features/events.php:2268
2993
- #: app/features/events.php:2349 app/features/events.php:4739
2994
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2995
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2996
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3166,7 +3177,7 @@ msgstr "Deltagerbegrensning"
3166
  msgid "Fixed Fields"
3167
  msgstr "Obligatorisk skjemafelt"
3168
 
3169
- #: app/features/events.php:2887 app/features/events.php:4733
3170
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3171
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3172
  msgid "Attendees"
@@ -3198,7 +3209,7 @@ msgid "Expired Events"
3198
  msgstr "Utløpte arrangementer"
3199
 
3200
  #: app/features/events.php:3757 app/features/mec.php:1374
3201
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3202
  msgid "Upcoming Events"
3203
  msgstr "Kommende arrangementer"
3204
 
@@ -3259,15 +3270,15 @@ msgid "JSON Export"
3259
  msgstr "JSON Eksport"
3260
 
3261
  #: app/features/events.php:4068 app/features/events.php:4069
3262
- #: app/features/events.php:4293
3263
  msgid "Duplicate"
3264
  msgstr "Dupliser"
3265
 
3266
- #: app/features/events.php:4187
3267
  msgid "Link"
3268
  msgstr "Lenke"
3269
 
3270
- #: app/features/events.php:4189 app/features/locations.php:111
3271
  #: app/features/locations.php:181 app/features/locations.php:268
3272
  #: app/features/mec/meta_boxes/search_form.php:108
3273
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3285,31 +3296,31 @@ msgstr "Lenke"
3285
  msgid "Address"
3286
  msgstr "Adresse"
3287
 
3288
- #: app/features/events.php:4191
3289
  #, php-format
3290
  msgid "%s Tel"
3291
  msgstr "%s Tlf"
3292
 
3293
- #: app/features/events.php:4192
3294
  #, php-format
3295
  msgid "%s Email"
3296
  msgstr "%s E-post"
3297
 
3298
- #: app/features/events.php:4194 app/features/fes/form.php:951
3299
  #: app/features/mec/settings.php:876
3300
  msgid "Featured Image"
3301
  msgstr "Fremhevet bilde"
3302
 
3303
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3304
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3305
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3306
  msgid "Tags"
3307
  msgstr "Stikkord"
3308
 
3309
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3310
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3311
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3312
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3313
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3314
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3315
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3317,40 +3328,40 @@ msgstr "Stikkord"
3317
  msgid "Speakers"
3318
  msgstr "Foredragsholdere"
3319
 
3320
- #: app/features/events.php:4446 app/features/fes.php:280
3321
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3322
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3323
  #: app/libraries/main.php:7592
3324
  msgid "Ticket"
3325
  msgstr "Billett"
3326
 
3327
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3328
  msgid "Variations"
3329
  msgstr "Variasjoner"
3330
 
3331
- #: app/features/events.php:4464 app/features/fes.php:356
3332
  msgid "Unknown"
3333
  msgstr "Ukjent"
3334
 
3335
- #: app/features/events.php:4492
3336
  msgid ""
3337
  "If you want to send an email, first select your attendees and then click in "
3338
  "the button below, please."
3339
  msgstr ""
3340
 
3341
- #: app/features/events.php:4492 app/features/mec/report.php:57
3342
  #, fuzzy
3343
  #| msgid "Organizer Email"
3344
  msgid "Send Email"
3345
  msgstr "Arrangør e-post"
3346
 
3347
- #: app/features/events.php:4496
3348
  #, fuzzy
3349
  #| msgid "Attendees Form"
3350
  msgid "No Attendees Found!"
3351
  msgstr "Deltagerskjema"
3352
 
3353
- #: app/features/events.php:4797
3354
  #, fuzzy
3355
  #| msgid "No bookings found!"
3356
  msgid "No Bookings Found!"
@@ -3496,72 +3507,72 @@ msgstr "Hendelsen innsendt. Den vil publisere så snart som mulig."
3496
  msgid "The event published."
3497
  msgstr "Arrangement er publisert."
3498
 
3499
- #: app/features/fes/form.php:178
3500
  #, fuzzy
3501
  #| msgid "Go back to events list."
3502
  msgid "Go back to events list"
3503
  msgstr "Tilbake til arrangementliste."
3504
 
3505
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3506
  #: app/features/mec/settings.php:1171
3507
  msgid "Excerpt"
3508
  msgstr ""
3509
 
3510
- #: app/features/fes/form.php:271
3511
  #, fuzzy
3512
  #| msgid "On Event Start"
3513
  msgid "Optional Event Excerpt"
3514
  msgstr "På Arrangement Start"
3515
 
3516
- #: app/features/fes/form.php:278
3517
  msgid ""
3518
  "This event is imported from Google calendar so if you modify it would "
3519
  "overwrite in the next import from Google."
3520
  msgstr ""
3521
 
3522
- #: app/features/fes/form.php:407
3523
  #: app/features/mec/meta_boxes/display_options.php:1494
3524
  #: app/libraries/main.php:476
3525
  msgid "Monday"
3526
  msgstr "Mandag"
3527
 
3528
- #: app/features/fes/form.php:408
3529
  #: app/features/mec/meta_boxes/display_options.php:1495
3530
  #: app/libraries/main.php:476
3531
  msgid "Tuesday"
3532
  msgstr "Tirsdag"
3533
 
3534
- #: app/features/fes/form.php:409
3535
  #: app/features/mec/meta_boxes/display_options.php:1496
3536
  #: app/libraries/main.php:476
3537
  msgid "Wednesday"
3538
  msgstr "Onsdag"
3539
 
3540
- #: app/features/fes/form.php:410
3541
  #: app/features/mec/meta_boxes/display_options.php:1497
3542
  #: app/libraries/main.php:476
3543
  msgid "Thursday"
3544
  msgstr "Torsdag"
3545
 
3546
- #: app/features/fes/form.php:411
3547
  #: app/features/mec/meta_boxes/display_options.php:1498
3548
  #: app/libraries/main.php:476
3549
  msgid "Friday"
3550
  msgstr "Fredag"
3551
 
3552
- #: app/features/fes/form.php:412
3553
  #: app/features/mec/meta_boxes/display_options.php:1499
3554
  #: app/libraries/main.php:476
3555
  msgid "Saturday"
3556
  msgstr "Lørdag"
3557
 
3558
- #: app/features/fes/form.php:413
3559
  #: app/features/mec/meta_boxes/display_options.php:1493
3560
  #: app/libraries/main.php:476
3561
  msgid "Sunday"
3562
  msgstr "Søndag"
3563
 
3564
- #: app/features/fes/form.php:766
3565
  msgid ""
3566
  "The event will finish after certain repeats. For example if you set it to "
3567
  "10, the event will finish after 10 repeats."
@@ -3569,24 +3580,24 @@ msgstr ""
3569
  "Arrangementet vil bli ferdig etter enkelte gjentagelser. For eksempel hvis "
3570
  "du setter det til 10, vil arrangementet avsluttes etter 10 gjentakelser."
3571
 
3572
- #: app/features/fes/form.php:790
3573
  msgid "Note to reviewer"
3574
  msgstr "Merknad til redaktør"
3575
 
3576
- #: app/features/fes/form.php:808
3577
  msgid "User Data"
3578
  msgstr "Brukdata"
3579
 
3580
- #: app/features/fes/form.php:811
3581
  msgid "eg. yourname@gmail.com"
3582
  msgstr "f.eks. dittanavn@gmail.com"
3583
 
3584
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3585
- #: app/features/popup/event.php:185
3586
  msgid "eg. John Smith"
3587
  msgstr "f.eks. Ola Nordmann"
3588
 
3589
- #: app/features/fes/form.php:833
3590
  #, fuzzy
3591
  #| msgid ""
3592
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3598,41 +3609,41 @@ msgstr ""
3598
  "Hvis du fyller den ut, vil den erstatte standardkoblingen. Sett inn full "
3599
  "link inkludert http(s)://"
3600
 
3601
- #: app/features/fes/form.php:956
3602
  msgid "Remove Image"
3603
  msgstr "Fjern bilde"
3604
 
3605
- #: app/features/fes/form.php:1046
3606
  msgid "Insert your desired tags, comma separated."
3607
  msgstr "Stikkord (kommaseparert)."
3608
 
3609
- #: app/features/fes/form.php:1068
3610
  #, fuzzy
3611
  #| msgid "Speakers"
3612
  msgid "Speakers Names"
3613
  msgstr "Foredragsholdere"
3614
 
3615
- #: app/features/fes/form.php:1069
3616
  msgid "Separate names with commas: Justin, Chris"
3617
  msgstr ""
3618
 
3619
- #: app/features/fes/form.php:1114
3620
  #, fuzzy, php-format
3621
  #| msgid "Please %s/%s in order to submit new events."
3622
  msgid "I accept the %s in order to submit an event."
3623
  msgstr "Vennligst% s /% s for å sende inn nye hendelser."
3624
 
3625
- #: app/features/fes/form.php:1114
3626
  msgid "Privacy Policy"
3627
  msgstr ""
3628
 
3629
- #: app/features/fes/form.php:1116
3630
  #, fuzzy
3631
  #| msgid "Please %s/%s in order to submit new events."
3632
  msgid "I accept the Privacy Policy in order to submit an event."
3633
  msgstr "Vennligst% s /% s for å sende inn nye hendelser."
3634
 
3635
- #: app/features/fes/form.php:1122
3636
  #, fuzzy
3637
  #| msgid "Edit Event"
3638
  msgid "Submit Event"
@@ -3722,81 +3733,81 @@ msgstr "Filtypen skal være XML eller ICS."
3722
  msgid "The events are imported successfully!"
3723
  msgstr "Hendelser er vellykket importert!"
3724
 
3725
- #: app/features/ix.php:1301
3726
  msgid "Third Party plugin is not installed and activated!"
3727
  msgstr "Tredjeparts plugin er ikke installert og aktivert!"
3728
 
3729
- #: app/features/ix.php:1325
3730
  msgid "Third Party plugin is invalid!"
3731
  msgstr "Tredjeparts plugin er ugyldig!"
3732
 
3733
- #: app/features/ix.php:3300 app/features/ix.php:3361
3734
  #, fuzzy
3735
  #| msgid "Both of API key and Calendar ID are required!"
3736
  msgid "API key and Calendar ID are required!"
3737
  msgstr "Både API nøkkel og Kalender ID er påkrevd!"
3738
 
3739
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3740
  #, fuzzy
3741
  #| msgid "Please select some events to import!"
3742
  msgid "Please select events to import!"
3743
  msgstr "Vennligst velg data som skal importeres!"
3744
 
3745
- #: app/features/ix.php:3794 app/features/ix.php:3857
3746
  #, fuzzy
3747
  #| msgid "Both of API key and Group URL are required!"
3748
  msgid "API key and Group URL are required!"
3749
  msgstr "Både API-nøkkel og gruppe-URL kreves!"
3750
 
3751
- #: app/features/ix.php:4096
3752
  msgid "Check at Meetup"
3753
  msgstr "Sjekk på Meetup"
3754
 
3755
- #: app/features/ix.php:4262
3756
  #, fuzzy
3757
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3758
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3759
  msgstr "Alle Klient ID, Klient Hemmelig Kode og Kalender-ID er påkrevd!"
3760
 
3761
- #: app/features/ix.php:4285
3762
  #, fuzzy, php-format
3763
  #| msgid "All seems good! Please click %s for authenticating your app."
3764
  msgid "All seems good! Please click %s to authenticate your app."
3765
  msgstr "Alt ser bra ut! Klikk %s for å godkjenne din app."
3766
 
3767
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3768
  #: app/features/mec/settings.php:1496
3769
  msgid "here"
3770
  msgstr ""
3771
 
3772
- #: app/features/ix.php:4340
3773
  #, fuzzy
3774
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3775
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3776
  msgstr "Alle felt, klientapp, klienthemmelig og kalender-ID er påkrevd!"
3777
 
3778
- #: app/features/ix.php:4502
3779
  #, fuzzy, php-format
3780
  #| msgid "%s events added to Google Calendar successfully."
3781
  msgid "%s events added to Google Calendar with success."
3782
  msgstr "%s hendelser lagt til i Google Kalender vellykket."
3783
 
3784
- #: app/features/ix.php:4503
3785
  #, fuzzy, php-format
3786
  #| msgid "%s previously added events get updated."
3787
  msgid "%s Updated previously added events."
3788
  msgstr "%s tidligere hendelser lagt til blir oppdatert."
3789
 
3790
- #: app/features/ix.php:4504
3791
  #, php-format
3792
  msgid "%s events failed to add for following reasons: %s"
3793
  msgstr "%s hendelser kunne ikke tilføyes av følgende grunner: %s"
3794
 
3795
- #: app/features/ix.php:4536
3796
  msgid "Please insert your Facebook page's link."
3797
  msgstr "Vennligst sett inn lenken til Facebook-siden din."
3798
 
3799
- #: app/features/ix.php:4547 app/features/ix.php:4589
3800
  #, fuzzy
3801
  #| msgid ""
3802
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3808,7 +3819,7 @@ msgstr ""
3808
  "Vi kunne ikke gjenkjenne din Facebook-side. Vennligst sjekk den og gi oss en "
3809
  "gyldig Facebook side link."
3810
 
3811
- #: app/features/ix.php:4584
3812
  msgid "Please insert your facebook page's link."
3813
  msgstr "Vennligst sett inn linken til din Facebook-side."
3814
 
@@ -4018,7 +4029,7 @@ msgstr "Arrangementsdeltakere"
4018
  msgid "Add to Google Calendar"
4019
  msgstr "Legg til i Google Kalender"
4020
 
4021
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
4022
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
4023
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
4024
  #: app/features/mec/single.php:604
@@ -4137,7 +4148,7 @@ msgstr "Importer fra Facebook Kalender"
4137
  msgid "Import all of your Facebook events into MEC."
4138
  msgstr "Importer alle dine Facebook-hendelser i MEC."
4139
 
4140
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4141
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4142
  msgid "Documentation"
4143
  msgstr "Dokumentasjon"
@@ -4454,7 +4465,7 @@ msgstr ""
4454
  "for at de er riktige."
4455
 
4456
  #: app/features/labels.php:79 app/features/locations.php:77
4457
- #: app/features/organizers.php:77 app/features/speakers.php:79
4458
  #: app/features/tag.php:77
4459
  #, fuzzy, php-format
4460
  #| msgid "Search Coupons"
@@ -4462,7 +4473,7 @@ msgid "← Back to %s"
4462
  msgstr "Søk etter rabattkoder"
4463
 
4464
  #: app/features/labels.php:80 app/features/locations.php:78
4465
- #: app/features/organizers.php:78 app/features/speakers.php:80
4466
  #: app/features/tag.php:78
4467
  #, fuzzy, php-format
4468
  #| msgid "No events found!"
@@ -4508,7 +4519,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4508
  msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
4509
 
4510
  #: app/features/labels.php:186 app/features/locations.php:269
4511
- #: app/features/organizers.php:210 app/features/speakers.php:289
4512
  #: app/modules/booking/steps/tickets.php:172
4513
  msgid "Count"
4514
  msgstr "Antall"
@@ -4524,7 +4535,7 @@ msgid "Event %s"
4524
  msgstr "Arrangement %s"
4525
 
4526
  #: app/features/locations.php:59 app/features/mec.php:526
4527
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4528
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4529
  #: app/libraries/main.php:7623
4530
  msgid "Locations"
@@ -4535,7 +4546,7 @@ msgid "Enter the location address"
4535
  msgstr "Angi stedsadresse"
4536
 
4537
  #: app/features/locations.php:131 app/features/locations.php:197
4538
- #: app/features/locations.php:374 app/features/popup/event.php:149
4539
  msgid "Latitude"
4540
  msgstr "Breddegrad"
4541
 
@@ -4546,7 +4557,7 @@ msgid "Geo latitude (Optional for Lite)"
4546
  msgstr "Geo Latitude (Valgfritt)"
4547
 
4548
  #: app/features/locations.php:139 app/features/locations.php:201
4549
- #: app/features/locations.php:375 app/features/popup/event.php:150
4550
  msgid "Longitude"
4551
  msgstr "Lengdegrad"
4552
 
@@ -4571,22 +4582,22 @@ msgstr "Geo Latitude (Valgfritt)"
4571
 
4572
  #: app/features/locations.php:156 app/features/locations.php:210
4573
  #: app/features/organizers.php:128 app/features/organizers.php:161
4574
- #: app/features/speakers.php:176 app/features/speakers.php:229
4575
  msgid "Thumbnail"
4576
  msgstr "Miniatyrbilde"
4577
 
4578
  #: app/features/locations.php:329 app/features/occurrences.php:460
4579
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4580
  #, php-format
4581
  msgid "Event Main %s"
4582
  msgstr "Hendelse Hoved %s"
4583
 
4584
  #: app/features/locations.php:332 app/features/occurrences.php:464
4585
- #: app/features/popup/event.php:119
4586
  msgid "Hide location"
4587
  msgstr "Skjul Plassering"
4588
 
4589
- #: app/features/locations.php:333 app/features/popup/event.php:120
4590
  msgid "Insert a new location"
4591
  msgstr "Sett inn nytt sted"
4592
 
@@ -4594,30 +4605,30 @@ msgstr "Sett inn nytt sted"
4594
  msgid "Choose one of saved locations or insert new one below."
4595
  msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
4596
 
4597
- #: app/features/locations.php:348 app/features/popup/event.php:141
4598
  msgid "Location Name"
4599
  msgstr "Skriv inn stedsnavn..."
4600
 
4601
- #: app/features/locations.php:349 app/features/popup/event.php:142
4602
  msgid "eg. City Hall"
4603
  msgstr "f.eks. rådhuset"
4604
 
4605
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4606
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4607
  msgid "Event Location"
4608
  msgstr "Arrangementssted"
4609
 
4610
- #: app/features/locations.php:353 app/features/popup/event.php:146
4611
  msgid "eg. City hall, Manhattan, New York"
4612
  msgstr "f.eks Norske Operaen, Oslo, Norge"
4613
 
4614
- #: app/features/locations.php:378 app/features/popup/event.php:153
4615
  #, fuzzy
4616
  #| msgid "Longitude"
4617
  msgid "Latitude/Longitude"
4618
  msgstr "Lengdegrad"
4619
 
4620
- #: app/features/locations.php:379 app/features/popup/event.php:154
4621
  msgid ""
4622
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4623
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4626,28 +4637,28 @@ msgid ""
4626
  "the location on the map to find lat long coordinates."
4627
  msgstr ""
4628
 
4629
- #: app/features/locations.php:379 app/features/popup/event.php:154
4630
  msgid "Get Latitude and Longitude"
4631
  msgstr ""
4632
 
4633
  #: app/features/locations.php:392 app/features/organizers.php:315
4634
- #: app/features/popup/event.php:204
4635
  msgid "Choose image"
4636
  msgstr "Velg bilde"
4637
 
4638
- #: app/features/locations.php:406 app/features/occurrences.php:480
4639
- #: app/features/popup/event.php:137
4640
  msgid "Don't show map in single event page"
4641
  msgstr "Ikke vis kart i enkelt arrangement visning"
4642
 
4643
- #: app/features/locations.php:409 app/libraries/main.php:7607
4644
  #: app/libraries/main.php:7654
4645
  #, fuzzy
4646
  #| msgid "Locations"
4647
  msgid "Other Locations"
4648
  msgstr "Steder"
4649
 
4650
- #: app/features/locations.php:411
4651
  #, fuzzy
4652
  #| msgid ""
4653
  #| "You can select extra organizers in addition to main organizer if you like."
@@ -4735,7 +4746,7 @@ msgstr "MEC-støtte"
4735
  msgid "Support"
4736
  msgstr "Support"
4737
 
4738
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4739
  #: app/features/mec/meta_boxes/filter.php:71
4740
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4741
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4743,7 +4754,7 @@ msgid "Organizers"
4743
  msgstr "Arrangører"
4744
 
4745
  #: app/features/mec.php:536 app/features/mec.php:596
4746
- #: app/features/mec/dashboard.php:221
4747
  msgid "Shortcodes"
4748
  msgstr "Shortcodes"
4749
 
@@ -4962,7 +4973,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4962
  msgstr ""
4963
 
4964
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4965
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4966
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4967
  msgid "Version"
4968
  msgstr "Versjon"
@@ -4986,9 +4997,9 @@ msgid "Search..."
4986
  msgstr "Søk..."
4987
 
4988
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4989
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4990
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4991
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4992
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4993
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4994
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5589,31 +5600,31 @@ msgstr "Automatisk fullfør WC ordre"
5589
  msgid "It applies only to the orders that are related to MEC."
5590
  msgstr "Det gjelder kun ordrene som er relatert til MEC."
5591
 
5592
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5593
  #, fuzzy
5594
  #| msgid "Add to Cart"
5595
  msgid "After Add to Cart"
5596
  msgstr "Legg til Handlekurv"
5597
 
5598
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5599
  #, fuzzy
5600
  #| msgid "Get Directions"
5601
  msgid "Redirect to Cart"
5602
  msgstr "Få veibeskrivelse"
5603
 
5604
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5605
  #, fuzzy
5606
  #| msgid "Get Directions"
5607
  msgid "Redirect to Checkout"
5608
  msgstr "Få veibeskrivelse"
5609
 
5610
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5611
  #, fuzzy
5612
  #| msgid "View Detail Button"
5613
  msgid "Optional View Cart Button"
5614
  msgstr "Se Detalj Knapp"
5615
 
5616
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5617
  msgid "Optional Checkout Button"
5618
  msgstr ""
5619
 
@@ -5669,81 +5680,87 @@ msgid ""
5669
  "(Stripe) got canceled."
5670
  msgstr ""
5671
 
5672
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5673
  msgid "Use MEC Cart System"
5674
  msgstr ""
5675
 
5676
- #: app/features/mec/booking.php:1119
5677
  msgid ""
5678
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5679
  "adding a simple cart and checkout system to your website."
5680
  msgstr ""
5681
 
5682
- #: app/features/mec/booking.php:1121
5683
  msgid "You cannot use following MEC features while using MEC Cart."
5684
  msgstr ""
5685
 
5686
- #: app/features/mec/booking.php:1123
5687
  #, fuzzy
5688
  #| msgid "Set Up a Payment Gateway"
5689
  msgid "WooCommerce as Payment Gateway"
5690
  msgstr "Konfigurere en gateway for betaling"
5691
 
5692
- #: app/features/mec/booking.php:1124
5693
  #, fuzzy
5694
  #| msgid "Next Occurrence of Other Events"
5695
  msgid "Currency Per Event"
5696
  msgstr "Neste forekomst av Andre Arrangement"
5697
 
5698
- #: app/features/mec/booking.php:1125
5699
  #, fuzzy
5700
  #| msgid "Payment Gateways"
5701
  msgid "Disable Gateways Per Event"
5702
  msgstr "Betalingsløsninger"
5703
 
5704
- #: app/features/mec/booking.php:1126
5705
  #, fuzzy
5706
  #| msgid "Stripe"
5707
  msgid "Stripe Connect Gateway"
5708
  msgstr "Stripe"
5709
 
5710
- #: app/features/mec/booking.php:1127
5711
  #, fuzzy
5712
  #| msgid "Set Up WooCommerce Gateway"
5713
  msgid "Pay By WooCommerce Gateway"
5714
  msgstr "Konfigurer WooCommerce-gateway"
5715
 
5716
- #: app/features/mec/booking.php:1128
5717
  #, fuzzy
5718
  #| msgid "Organizer Tel"
5719
  msgid "Organizer Payment Module"
5720
  msgstr "Tlf til arrangør"
5721
 
5722
- #: app/features/mec/booking.php:1132
5723
  #, fuzzy
5724
  #| msgid "Start Date"
5725
  msgid "Cart Page"
5726
  msgstr "Startdato"
5727
 
5728
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5729
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5730
  #, php-format
5731
  msgid "Put %s shortcode into the page."
5732
  msgstr "Sett% s shortcode inn på siden."
5733
 
5734
- #: app/features/mec/booking.php:1144
5735
  #, fuzzy
5736
  #| msgid "Checkout"
5737
  msgid "Checkout Page"
5738
  msgstr "Til kassen"
5739
 
5740
- #: app/features/mec/booking.php:1170
5741
  #, fuzzy
5742
  #| msgid "Download Invoice"
5743
  msgid "Enable Cart Invoice"
5744
  msgstr "Last ned Faktura"
5745
 
5746
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5747
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5748
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5749
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5751,7 +5768,7 @@ msgstr "Last ned Faktura"
5751
  msgid "Saved"
5752
  msgstr "Lagret"
5753
 
5754
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5755
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5756
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5757
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5759,7 +5776,7 @@ msgstr "Lagret"
5759
  msgid "Settings Saved!"
5760
  msgstr "Innstillinger Lagret!"
5761
 
5762
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5763
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5764
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5765
  msgid "Please Refresh Page"
@@ -5775,12 +5792,7 @@ msgstr "Velkommen %s"
5775
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5776
  msgstr "%s-mektig & enkelt å bruke Events Management System"
5777
 
5778
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5779
- msgctxt "plugin rate"
5780
- msgid "Rate the plugin ★★★★★"
5781
- msgstr "Ranger plugin ★ ★ ★ ★ ★"
5782
-
5783
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5784
  #, fuzzy, php-format
5785
  #| msgid ""
5786
  #| "You're using %s version of Modern Events Calendar. To use advanced "
@@ -5795,61 +5807,44 @@ msgstr ""
5795
  "bruke avanserte booking system, moderne skins som agenda, tidsplan, murverk, "
5796
  "årlig visning, tilgjengelige spots, etc bør du %s til Pro-versjonen."
5797
 
5798
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5799
  msgid "lite"
5800
  msgstr "lett"
5801
 
5802
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5803
  #: app/features/mec/support.php:126
5804
  msgid "GO PREMIUM"
5805
  msgstr "GO PREMIUM"
5806
 
5807
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5808
- #, php-format
5809
- msgid ""
5810
- "Easily get a discount coupon by rating us on %s or following and reposting "
5811
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5812
- msgstr ""
5813
-
5814
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5815
- #, fuzzy
5816
- #| msgid "Address"
5817
- msgid "WordPress"
5818
- msgstr "Adresse"
5819
-
5820
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5821
- msgid "Copouns!"
5822
- msgstr ""
5823
-
5824
- #: app/features/mec/dashboard.php:115
5825
  #, fuzzy
5826
  #| msgid "Modern Events Calendar"
5827
  msgid "Getting started with Modern Events Calendar"
5828
  msgstr "Modern Events Calendar"
5829
 
5830
- #: app/features/mec/dashboard.php:116
5831
  msgid ""
5832
  "In this short video, you can learn how to make an event and put a calendar "
5833
  "on your website. Please watch this 2 minutes video to the end."
5834
  msgstr ""
5835
 
5836
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5837
  #, fuzzy
5838
  #| msgid "MEC Activation"
5839
  msgid "License Activation"
5840
  msgstr "MEC Aktivisering"
5841
 
5842
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5843
  #, fuzzy
5844
  #| msgid "Activate License"
5845
  msgid "Activate Addons"
5846
  msgstr "Aktiver Lisens"
5847
 
5848
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5849
  msgid "You cannot access this section."
5850
  msgstr ""
5851
 
5852
- #: app/features/mec/dashboard.php:162
5853
  msgid ""
5854
  "In order to use all plugin features and options, please enter your purchase "
5855
  "code."
@@ -5857,11 +5852,11 @@ msgstr ""
5857
  "For å bruke alle plugin funksjoner og alternativer, vennligst skriv inn din "
5858
  "kjøpskode."
5859
 
5860
- #: app/features/mec/dashboard.php:270
5861
  msgid "Popular Gateways"
5862
  msgstr "Populære Gatewayer"
5863
 
5864
- #: app/features/mec/dashboard.php:328
5865
  msgid "Change Log"
5866
  msgstr "Endringslogg"
5867
 
@@ -7428,7 +7423,7 @@ msgstr ""
7428
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7429
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7430
  #: app/features/popup/settings.php:272 app/features/search.php:109
7431
- #: app/features/speakers.php:60 app/features/speakers.php:286
7432
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7433
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7434
  #: app/modules/speakers/details.php:18
@@ -8779,7 +8774,7 @@ msgstr ""
8779
  msgid "Please, insert comma to separate reminder hours."
8780
  msgstr ""
8781
 
8782
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8783
  #: app/libraries/main.php:705
8784
  msgid "New Event"
8785
  msgstr "Nytt Arrangement"
@@ -11135,13 +11130,13 @@ msgstr ""
11135
  msgid "Choose one of saved locations."
11136
  msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
11137
 
11138
- #: app/features/occurrences.php:491 app/features/organizers.php:280
11139
- #: app/features/popup/event.php:166
11140
  msgid "Hide organizer"
11141
  msgstr "Skjul arrangør"
11142
 
11143
- #: app/features/occurrences.php:499 app/features/organizers.php:289
11144
- #: app/features/popup/event.php:175
11145
  msgid "Choose one of saved organizers or insert new one below."
11146
  msgstr "Velg en av lagrede arrangører eller sett inn en ny nedenfor."
11147
 
@@ -11154,7 +11149,7 @@ msgid "Insert organizer email address."
11154
  msgstr "Sett inn organisatorens e-postadresse."
11155
 
11156
  #: app/features/organizers.php:120 app/features/organizers.php:157
11157
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11158
  msgid "Link to organizer page"
11159
  msgstr "Lenke til arrangørside"
11160
 
@@ -11166,27 +11161,27 @@ msgstr "Benytt dette feltet til å linke arrangør til andre bruker profil sider
11166
  msgid "Contact info"
11167
  msgstr "Kontaktinfo"
11168
 
11169
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11170
  msgid "Insert a new organizer"
11171
  msgstr "Sett inn en ny arrangør"
11172
 
11173
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11174
  msgid "Phone number."
11175
  msgstr "Telefonnummer."
11176
 
11177
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11178
  msgid "eg. +1 (234) 5678"
11179
  msgstr "f.eks. +47 22334455"
11180
 
11181
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11182
  msgid "Email address."
11183
  msgstr "E-postadresse."
11184
 
11185
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11186
  msgid "eg. john@smith.com"
11187
  msgstr "f.eks. Ola Nordmann"
11188
 
11189
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11190
  msgid "eg. https://webnus.net"
11191
  msgstr "F.eks. https://webnus.net"
11192
 
@@ -11201,72 +11196,72 @@ msgid ""
11201
  msgstr ""
11202
  "Du kan velge ekstra arrangører i tillegg hovedarrangør hvis du trenger det."
11203
 
11204
- #: app/features/popup/event.php:58
11205
  #, fuzzy
11206
  #| msgid "Add Shortcode"
11207
  msgid "Adding an Event..."
11208
  msgstr "Legg til kortkode"
11209
 
11210
- #: app/features/popup/event.php:66
11211
  #, fuzzy
11212
  #| msgid "Event Note"
11213
  msgid "Event Name"
11214
  msgstr "Arrangementsnotat"
11215
 
11216
- #: app/features/popup/event.php:67
11217
  msgid "Event name is required"
11218
  msgstr ""
11219
 
11220
- #: app/features/popup/event.php:128
11221
  #, fuzzy
11222
  #| msgid "Choose one of saved locations or insert new one below."
11223
  msgid "Choose one of saved locations or insert new one."
11224
  msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
11225
 
11226
- #: app/features/popup/event.php:132
11227
  #, fuzzy
11228
  #| msgid "Location"
11229
  msgid "Add Location"
11230
  msgstr "Sted"
11231
 
11232
- #: app/features/popup/event.php:179
11233
  #, fuzzy
11234
  #| msgid "Organizer"
11235
  msgid "Add Organizer"
11236
  msgstr "Arrangør"
11237
 
11238
- #: app/features/popup/event.php:219
11239
  #, fuzzy
11240
  #| msgid "Categories"
11241
  msgid "All Categories"
11242
  msgstr "Kategorier"
11243
 
11244
- #: app/features/popup/event.php:220
11245
  msgid "Most Used"
11246
  msgstr ""
11247
 
11248
- #: app/features/popup/event.php:231
11249
  #, fuzzy
11250
  #| msgid "Add New Coupon"
11251
  msgid "Add New Category"
11252
  msgstr "Legg til ny rabattkode"
11253
 
11254
- #: app/features/popup/event.php:242
11255
  #, fuzzy
11256
  #| msgid "Featured Image"
11257
  msgid "Set Featured Image"
11258
  msgstr "Fremhevet bilde"
11259
 
11260
- #: app/features/popup/event.php:252
11261
  msgid "Your Event Has Been Created."
11262
  msgstr ""
11263
 
11264
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11265
  #: app/features/popup/shortcode.php:553
11266
  msgid "Prev"
11267
  msgstr ""
11268
 
11269
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11270
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11271
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11272
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11475,78 +11470,78 @@ msgstr "Søk i %s"
11475
  msgid "No search result."
11476
  msgstr ""
11477
 
11478
- #: app/features/speakers.php:112 app/features/speakers.php:197
11479
- #: app/features/speakers.php:287
11480
  msgid "Job Title"
11481
  msgstr "Yrkestittel"
11482
 
11483
- #: app/features/speakers.php:115 app/features/speakers.php:198
11484
  msgid "Insert speaker job title."
11485
  msgstr "Sette inn instruktørstilling."
11486
 
11487
- #: app/features/speakers.php:123 app/features/speakers.php:202
11488
  msgid "Insert speaker phone number."
11489
  msgstr "Sette inn instruktørens telefonnummer."
11490
 
11491
- #: app/features/speakers.php:131 app/features/speakers.php:206
11492
  msgid "Insert speaker email address."
11493
  msgstr "Sette inn instruktørens epost."
11494
 
11495
- #: app/features/speakers.php:139 app/features/speakers.php:210
11496
  #, fuzzy
11497
  #| msgid "Insert URL of Twitter Page"
11498
  msgid "Insert URL of Website"
11499
  msgstr "Sett inn nettadressen til Twitter-siden"
11500
 
11501
- #: app/features/speakers.php:144 app/features/speakers.php:213
11502
  msgid "Facebook Page"
11503
  msgstr "Facebook-side"
11504
 
11505
- #: app/features/speakers.php:147 app/features/speakers.php:214
11506
  msgid "Insert URL of Facebook Page"
11507
  msgstr "Sett inn nettadressen til Facebook-siden"
11508
 
11509
- #: app/features/speakers.php:152 app/features/speakers.php:217
11510
  msgid "Instagram"
11511
  msgstr ""
11512
 
11513
- #: app/features/speakers.php:155 app/features/speakers.php:218
11514
  #, fuzzy
11515
  #| msgid "Insert URL of Twitter Page"
11516
  msgid "Insert URL of Instagram"
11517
  msgstr "Sett inn nettadressen til Twitter-siden"
11518
 
11519
- #: app/features/speakers.php:160 app/features/speakers.php:221
11520
  #, fuzzy
11521
  #| msgid "Linkedin"
11522
  msgid "LinkedIn"
11523
  msgstr "LinkedIn"
11524
 
11525
- #: app/features/speakers.php:163
11526
  #, fuzzy
11527
  #| msgid "Insert URL of Twitter Page"
11528
  msgid "Insert URL of LinkedIn"
11529
  msgstr "Sett inn nettadressen til Twitter-siden"
11530
 
11531
- #: app/features/speakers.php:168 app/features/speakers.php:225
11532
  msgid "Twitter Page"
11533
  msgstr "Twitter-side"
11534
 
11535
- #: app/features/speakers.php:171 app/features/speakers.php:226
11536
  msgid "Insert URL of Twitter Page"
11537
  msgstr "Sett inn nettadressen til Twitter-siden"
11538
 
11539
- #: app/features/speakers.php:222
11540
  #, fuzzy
11541
  #| msgid "Insert URL of Google+"
11542
  msgid "Insert URL of linkedin"
11543
  msgstr "Sett inn nettadressen til Google +"
11544
 
11545
- #: app/features/speakers.php:347
11546
  msgid "Sorry, You must insert speaker name!"
11547
  msgstr ""
11548
 
11549
- #: app/features/speakers.php:396
11550
  msgid ""
11551
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11552
  "section and speaker widget section!"
@@ -11634,69 +11629,69 @@ msgctxt "plugin link"
11634
  msgid "Upgrade to Pro Version"
11635
  msgstr "Oppgrader til Pro versjon"
11636
 
11637
- #: app/libraries/factory.php:234
11638
  msgctxt "plugin link"
11639
  msgid "Settings"
11640
  msgstr "Innstillinger"
11641
 
11642
- #: app/libraries/factory.php:239
11643
  msgctxt "plugin link"
11644
  msgid "Upgrade"
11645
  msgstr "Oppgrader"
11646
 
11647
- #: app/libraries/factory.php:393
11648
  msgid "day"
11649
  msgstr "dag"
11650
 
11651
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11652
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11653
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11654
  msgid "days"
11655
  msgstr "dager"
11656
 
11657
- #: app/libraries/factory.php:395
11658
  msgid "hour"
11659
  msgstr "time"
11660
 
11661
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11662
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11663
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11664
  msgid "hours"
11665
  msgstr "timer"
11666
 
11667
- #: app/libraries/factory.php:397
11668
  msgid "minute"
11669
  msgstr "minutt"
11670
 
11671
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11672
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11673
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11674
  msgid "minutes"
11675
  msgstr "minutter"
11676
 
11677
- #: app/libraries/factory.php:399
11678
  msgid "second"
11679
  msgstr "sekund"
11680
 
11681
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11682
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11683
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11684
  msgid "seconds"
11685
  msgstr "sekunder"
11686
 
11687
- #: app/libraries/factory.php:477
11688
  msgid "MEC Single Sidebar"
11689
  msgstr "MEC Singel Sidebar"
11690
 
11691
- #: app/libraries/factory.php:478
11692
  msgid "Custom sidebar for single and modal page of MEC."
11693
  msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
11694
 
11695
- #: app/libraries/factory.php:1199
11696
  msgid "Notice:"
11697
  msgstr ""
11698
 
11699
- #: app/libraries/factory.php:1200
11700
  msgid "This update includes only bug fixes."
11701
  msgstr ""
11702
 
@@ -11854,12 +11849,6 @@ msgstr "Kortkode"
11854
  msgid "%s Form"
11855
  msgstr ""
11856
 
11857
- #: app/libraries/main.php:689
11858
- #, fuzzy
11859
- #| msgid "MEC - Support"
11860
- msgid "MEC Cart"
11861
- msgstr "MEC-støtte"
11862
-
11863
  #: app/libraries/main.php:726
11864
  msgid "Only For Bookers"
11865
  msgstr ""
@@ -12649,12 +12638,7 @@ msgstr "Starttid"
12649
  msgid "End at: %s - %s"
12650
  msgstr ""
12651
 
12652
- #: app/libraries/skins.php:1755
12653
- #, php-format
12654
- msgid "Every %s"
12655
- msgstr ""
12656
-
12657
- #: app/libraries/skins.php:1756
12658
  #, fuzzy
12659
  #| msgid "Repeat"
12660
  msgid "Repeating Event"
@@ -13146,6 +13130,15 @@ msgstr "Webnus Team"
13146
  msgid "http://webnus.net"
13147
  msgstr "http://webnus.net"
13148
 
 
 
 
 
 
 
 
 
 
13149
  #, fuzzy
13150
  #~| msgid ""
13151
  #~| "The %s ticket is sold out. You can try another ticket or another date."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
173
  msgstr "Kansellert"
174
 
175
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
176
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
177
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
178
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
179
  #: app/features/mec/notifications.php:1922
211
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
212
  #: app/features/autoemails.php:60 app/features/events.php:606
213
  #: app/features/events.php:2650 app/features/events.php:2717
214
+ #: app/features/events.php:2806 app/features/events.php:4445
215
+ #: app/features/fes.php:280 app/features/fes/form.php:812
216
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
217
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
218
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
219
  #: app/features/organizers.php:112 app/features/organizers.php:153
220
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
221
+ #: app/features/speakers.php:211 app/libraries/main.php:653
222
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
223
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
224
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
378
  #: app/features/events.php:2808 app/features/mec/booking.php:800
379
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
380
  #: app/features/organizers.php:104 app/features/organizers.php:149
381
+ #: app/features/speakers.php:126 app/features/speakers.php:207
382
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
383
  msgid "Tel"
384
  msgstr "Tlf"
385
 
525
  msgid "Agreement"
526
  msgstr "Avtalen"
527
 
528
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
529
+ #, fuzzy, php-format
530
+ #| msgid "Integrate with MEC"
531
+ msgid "I agree with %s"
532
+ msgstr "Integrer med MEC"
533
+
534
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
535
  #, php-format
536
  msgid "Instead of %s, the page title with a link will be show."
708
  #: app/features/events.php:1843 app/features/events.php:2014
709
  #: app/features/events.php:2029 app/features/events.php:2271
710
  #: app/features/events.php:2283 app/features/events.php:2476
711
+ #: app/features/events.php:2513 app/features/fes/form.php:460
712
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
713
  #: app/features/locations.php:341 app/features/mec/booking.php:113
714
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
715
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
786
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
787
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
788
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
789
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
790
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
791
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
792
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
793
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
794
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
952
 
953
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
954
  #: app/features/events.php:432 app/features/events.php:1283
955
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
956
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
957
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
958
  #: app/skins/single.php:1126 app/skins/single/default.php:213
959
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1032
  msgstr ""
1033
 
1034
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1035
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1036
  #: app/features/labels.php:61 app/features/labels.php:227
1037
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1038
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1068
  msgstr "Skjul Plassering"
1069
 
1070
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1071
+ #: app/features/events.php:3876 app/features/events.php:4190
1072
  #: app/features/locations.php:58 app/features/locations.php:267
1073
  #: app/features/locations.php:329 app/features/locations.php:331
1074
  #: app/features/locations.php:340
1088
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1089
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1090
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1091
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1092
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1093
  #: app/features/search.php:97 app/libraries/main.php:3020
1094
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1102
 
1103
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1104
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1105
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1106
  #: app/skins/single.php:1406 app/skins/single.php:1473
1107
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1108
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1125
 
1126
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1127
  #: app/features/events.php:1519 app/features/events.php:1532
1128
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1129
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1130
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1131
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1176
 
1177
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1178
  #: app/features/events.php:431 app/features/events.php:3877
1179
+ #: app/features/events.php:4192 app/features/events.php:4193
1180
+ #: app/features/events.php:4194
1181
  #: app/features/mec/meta_boxes/display_options.php:1660
1182
  #: app/features/mec/meta_boxes/search_form.php:80
1183
  #: app/features/mec/meta_boxes/search_form.php:168
1192
  #: app/features/mec/meta_boxes/search_form.php:983
1193
  #: app/features/mec/meta_boxes/search_form.php:1070
1194
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1195
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1196
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1197
  #: app/features/organizers.php:58 app/features/organizers.php:208
1198
  #: app/features/organizers.php:277 app/features/organizers.php:279
1199
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1200
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1201
  #: app/features/popup/settings.php:263 app/features/search.php:103
1202
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1203
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1323
  #: app/features/booking/calendar_novel.php:145
1324
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1325
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1326
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1327
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1328
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1329
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1330
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1391
 
1392
  #: app/features/autoemails.php:74 app/features/events.php:230
1393
  #: app/features/labels.php:72 app/features/locations.php:70
1394
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1395
  #: app/features/tag.php:70
1396
  #, php-format
1397
  msgid "Edit %s"
1457
  msgid "Go to events page"
1458
  msgstr "Vis Google Maps på arrangementside"
1459
 
1460
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1461
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1462
  #: app/features/wc.php:91 app/libraries/main.php:3072
1463
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1539
  msgid "Back to Cart"
1540
  msgstr "Tilbake til arrangementliste."
1541
 
1542
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1543
  #: app/features/mec/settings.php:907
1544
  msgid "Event Color"
1545
  msgstr "Arrangementsfarge"
1551
  msgstr "Arrangementsfarge"
1552
 
1553
  #: app/features/contextual.php:55 app/features/mec.php:546
1554
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1555
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1556
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1557
  #: app/libraries/main.php:738
1558
  msgid "Settings"
1704
  msgstr "Arrangements Detaljer/Enkeltarrangementsside"
1705
 
1706
  #: app/features/contextual.php:166 app/features/events.php:1298
1707
+ #: app/features/fes/form.php:885
1708
  msgid "Currency Options"
1709
  msgstr "Valutavalg"
1710
 
1800
  msgstr ""
1801
 
1802
  #: app/features/dlfile.php:297 app/features/events.php:3874
1803
+ #: app/features/events.php:4183 app/features/events.php:4734
1804
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1805
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1806
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1807
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1810
  msgstr "Tittel"
1811
 
1812
  #: app/features/dlfile.php:301 app/features/events.php:1988
1813
+ #: app/features/events.php:2248 app/features/events.php:4184
1814
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1815
  #: app/libraries/hourlyschedule.php:152
1816
  msgid "Description"
1857
  msgstr "Før $10"
1858
 
1859
  #: app/features/emails/details.php:35 app/features/events.php:1223
1860
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1861
  msgid "After"
1862
  msgstr "Etter"
1863
 
1868
  msgstr "Neste Forekomst"
1869
 
1870
  #: app/features/emails/details.php:40 app/features/events.php:192
1871
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1872
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1873
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1874
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1889
  msgid "Add Event"
1890
  msgstr "Legg til Arrangement"
1891
 
1892
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1893
  msgid "Add New Event"
1894
  msgstr "Legg til nytt arrangement"
1895
 
1896
+ #: app/features/events.php:196 app/features/ix.php:4614
1897
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1898
  #: app/skins/map/tpl.php:93
1899
  msgid "No events found!"
1904
  msgstr "Rediger arrangement"
1905
 
1906
  #: app/features/events.php:199 app/features/fes/list.php:100
1907
+ #: app/features/popup/event.php:259
1908
  msgid "View Event"
1909
  msgstr "Vis arrangement"
1910
 
1913
  msgstr "Ingen arrangement funnet i søppelbøtta!"
1914
 
1915
  #: app/features/events.php:219 app/features/events.php:3831
1916
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1917
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1918
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1919
  #: app/libraries/main.php:7619
1922
 
1923
  #: app/features/events.php:229 app/features/labels.php:71
1924
  #: app/features/locations.php:69 app/features/organizers.php:69
1925
+ #: app/features/speakers.php:77 app/features/tag.php:69
1926
  #, php-format
1927
  msgid "All %s"
1928
  msgstr "Alle %s"
1929
 
1930
  #: app/features/events.php:231 app/features/labels.php:73
1931
  #: app/features/locations.php:71 app/features/organizers.php:71
1932
+ #: app/features/speakers.php:79 app/features/tag.php:71
1933
  #, php-format
1934
  msgid "View %s"
1935
  msgstr "Se %s"
1936
 
1937
  #: app/features/events.php:232 app/features/labels.php:74
1938
  #: app/features/locations.php:72 app/features/organizers.php:72
1939
+ #: app/features/speakers.php:80 app/features/tag.php:72
1940
  #, php-format
1941
  msgid "Update %s"
1942
  msgstr "Oppdatere %s"
1943
 
1944
  #: app/features/events.php:233 app/features/labels.php:75
1945
  #: app/features/locations.php:73 app/features/organizers.php:73
1946
+ #: app/features/speakers.php:81 app/features/tag.php:73
1947
  #, php-format
1948
  msgid "Add New %s"
1949
  msgstr "Legg til ny %s"
1950
 
1951
  #: app/features/events.php:234 app/features/labels.php:76
1952
  #: app/features/locations.php:74 app/features/organizers.php:74
1953
+ #: app/features/speakers.php:82 app/features/tag.php:74
1954
  #, php-format
1955
  msgid "New %s Name"
1956
  msgstr "Ny %s navn"
1957
 
1958
  #: app/features/events.php:235 app/features/labels.php:77
1959
  #: app/features/locations.php:75 app/features/organizers.php:75
1960
+ #: app/features/speakers.php:83 app/features/tag.php:75
1961
  #, php-format
1962
  msgid "Popular %s"
1963
  msgstr "Populære %s"
1964
 
1965
  #: app/features/events.php:236 app/features/labels.php:78
1966
  #: app/features/locations.php:76 app/features/organizers.php:76
1967
+ #: app/features/speakers.php:84 app/features/tag.php:76
1968
  #, php-format
1969
  msgid "Search %s"
1970
  msgstr "Søk i %s"
1994
  #: app/features/events.php:278 app/features/events.php:336
1995
  #: app/features/locations.php:161 app/features/locations.php:213
1996
  #: app/features/organizers.php:133 app/features/organizers.php:164
1997
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1998
  msgid "Upload/Add image"
1999
  msgstr "Last opp/Legg til bilde"
2000
 
2003
  #: app/features/locations.php:393 app/features/locations.php:400
2004
  #: app/features/organizers.php:134 app/features/organizers.php:165
2005
  #: app/features/organizers.php:316 app/features/organizers.php:323
2006
+ #: app/features/speakers.php:188 app/features/speakers.php:239
2007
  msgid "Remove image"
2008
  msgstr "Fjern bilde"
2009
 
2023
  msgid "Date And Time"
2024
  msgstr "Dato og klokkeslett"
2025
 
2026
+ #: app/features/events.php:425 app/features/fes/form.php:386
2027
  msgid "Event Repeating"
2028
  msgstr "Gjentakende arrangement"
2029
 
2072
  msgstr "Gjestedata"
2073
 
2074
  #: app/features/events.php:605 app/features/events.php:2641
2075
+ #: app/features/events.php:4442 app/features/fes.php:280
2076
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2077
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2078
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2079
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2080
  msgid "Name"
2081
  msgstr "Navn"
2086
  "overwrite in the next import from Google."
2087
  msgstr ""
2088
 
2089
+ #: app/features/events.php:619 app/features/fes/form.php:284
2090
  msgid "Date and Time"
2091
  msgstr "Dato og klokkeslett"
2092
 
2093
  #: app/features/events.php:622 app/features/events.php:626
2094
+ #: app/features/events.php:3878 app/features/events.php:4185
2095
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2096
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2097
  #: app/features/mec/meta_boxes/display_options.php:57
2098
  #: app/features/mec/meta_boxes/display_options.php:312
2110
  #: app/features/mec/meta_boxes/display_options.php:2347
2111
  #: app/features/mec/meta_boxes/display_options.php:2478
2112
  #: app/features/mec/meta_boxes/display_options.php:2584
2113
+ #: app/features/popup/event.php:79
2114
  msgid "Start Date"
2115
  msgstr "Startdato"
2116
 
2117
  #: app/features/events.php:642 app/features/events.php:646
2118
+ #: app/features/events.php:3879 app/features/events.php:4187
2119
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2120
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2121
  #: app/features/mec/meta_boxes/display_options.php:73
2122
  #: app/features/mec/meta_boxes/display_options.php:328
2125
  #: app/features/mec/meta_boxes/display_options.php:788
2126
  #: app/features/mec/meta_boxes/display_options.php:1618
2127
  #: app/features/mec/meta_boxes/display_options.php:2363
2128
+ #: app/features/popup/event.php:96
2129
  msgid "End Date"
2130
  msgstr "Sluttdato"
2131
 
2132
+ #: app/features/events.php:669 app/features/fes/form.php:326
2133
+ #: app/features/popup/event.php:113
2134
  #, fuzzy
2135
  #| msgid "All Day Event"
2136
  msgid "All-day Event"
2137
  msgstr "Heldagsarrangement"
2138
 
2139
+ #: app/features/events.php:679 app/features/fes/form.php:329
2140
  msgid "Hide Event Time"
2141
  msgstr "Skjul Arrangementet Tid"
2142
 
2143
+ #: app/features/events.php:689 app/features/fes/form.php:332
2144
  msgid "Hide Event End Time"
2145
  msgstr "Skjul hendelsens sluttid"
2146
 
2147
  #: app/features/events.php:694 app/features/events.php:698
2148
+ #: app/features/fes/form.php:336
2149
  #, fuzzy
2150
  #| msgid "Note to reviewer"
2151
  msgid "Notes on the time"
2152
  msgstr "Merknad til redaktør"
2153
 
2154
+ #: app/features/events.php:699 app/features/fes/form.php:337
2155
  #, fuzzy
2156
  #| msgid ""
2157
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2163
  "Den viser ved siden av arrangementstid på kalenderen. Du kan sette inn "
2164
  "tidszone etc. i dette feltet."
2165
 
2166
+ #: app/features/events.php:711 app/features/fes/form.php:344
2167
  #, fuzzy
2168
  #| msgid "Timezone: %s"
2169
  msgid "Timezone"
2174
  #: app/features/events.php:1793 app/features/events.php:1813
2175
  #: app/features/events.php:1868 app/features/events.php:2438
2176
  #: app/features/events.php:2561 app/features/events.php:2672
2177
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2178
  msgid "Inherit from global options"
2179
  msgstr "Overfør fra globale instillinger"
2180
 
2181
  #: app/features/events.php:725 app/features/events.php:728
2182
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2183
  #: app/features/mec/settings.php:858
2184
  #, fuzzy
2185
  #| msgid "Countdown View"
2186
  msgid "Countdown Method"
2187
  msgstr "Nedtelling Visning"
2188
 
2189
+ #: app/features/events.php:730 app/features/fes/form.php:363
2190
  #, fuzzy
2191
  #| msgid "On Event Start"
2192
  msgid "Count to Event Start"
2193
  msgstr "På Arrangement Start"
2194
 
2195
+ #: app/features/events.php:731 app/features/fes/form.php:364
2196
  #, fuzzy
2197
  #| msgid "On Event End"
2198
  msgid "Count to Event End"
2199
  msgstr "På hendelsesslutt"
2200
 
2201
+ #: app/features/events.php:737 app/features/fes/form.php:371
2202
  #: app/modules/weather/darksky.php:57
2203
  msgid "Visibility"
2204
  msgstr "Synlighet"
2205
 
2206
+ #: app/features/events.php:740 app/features/fes/form.php:374
2207
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2208
  #, fuzzy
2209
  #| msgid "Visibility"
2210
  msgid "Event Visibility"
2211
  msgstr "Synlighet"
2212
 
2213
+ #: app/features/events.php:741 app/features/fes/form.php:375
2214
  #, fuzzy
2215
  #| msgid "Booking Style"
2216
  msgid "Show on Shortcodes"
2217
  msgstr "Bestilling stil"
2218
 
2219
+ #: app/features/events.php:742 app/features/fes/form.php:376
2220
  #, fuzzy
2221
  #| msgid "Shortcodes"
2222
  msgid "Hide on Shortcodes"
2223
  msgstr "Shortcodes"
2224
 
2225
+ #: app/features/events.php:749 app/features/fes/form.php:384
2226
  #, fuzzy
2227
  #| msgid "Repeat"
2228
  msgid "Repeating"
2234
  msgid "Event Repeating (Recurring events)"
2235
  msgstr "Gjentakende arrangement"
2236
 
2237
+ #: app/features/events.php:762 app/features/fes/form.php:390
2238
  msgid "Repeats"
2239
  msgstr "Gjentakelser"
2240
 
2241
+ #: app/features/events.php:770 app/features/fes/form.php:392
2242
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2243
+ #: app/skins/default_full_calendar/tpl.php:79
2244
  #: app/skins/full_calendar/tpl.php:140
2245
  msgid "Daily"
2246
  msgstr "Daglig"
2247
 
2248
+ #: app/features/events.php:777 app/features/fes/form.php:393
2249
+ #: app/libraries/skins.php:1772
2250
  msgid "Every Weekday"
2251
  msgstr "Hver ukedag"
2252
 
2253
+ #: app/features/events.php:784 app/features/fes/form.php:394
2254
+ #: app/libraries/skins.php:1769
2255
  msgid "Every Weekend"
2256
  msgstr "Hver Helg"
2257
 
2258
+ #: app/features/events.php:791 app/features/fes/form.php:395
2259
  msgid "Certain Weekdays"
2260
  msgstr "Enkelte Ukedager"
2261
 
2262
+ #: app/features/events.php:798 app/features/fes/form.php:396
2263
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2264
  #: app/skins/full_calendar/tpl.php:139
2265
  msgid "Weekly"
2266
  msgstr "Ukentlig"
2267
 
2268
+ #: app/features/events.php:805 app/features/fes/form.php:397
2269
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2270
+ #: app/skins/default_full_calendar/tpl.php:77
2271
  #: app/skins/full_calendar/tpl.php:138
2272
  msgid "Monthly"
2273
  msgstr "Månedlig"
2274
 
2275
+ #: app/features/events.php:812 app/features/fes/form.php:398
2276
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2277
+ #: app/skins/default_full_calendar/tpl.php:76
2278
  #: app/skins/full_calendar/tpl.php:137
2279
  msgid "Yearly"
2280
  msgstr "Årlig"
2281
 
2282
+ #: app/features/events.php:819 app/features/fes/form.php:399
2283
  msgid "Custom Days"
2284
  msgstr "Tilpassede dager"
2285
 
2286
+ #: app/features/events.php:826 app/features/fes/form.php:400
2287
  #, fuzzy
2288
  #| msgid "Advanced Method"
2289
  msgid "Advanced"
2290
  msgstr "Avansert Metode"
2291
 
2292
+ #: app/features/events.php:831 app/features/fes/form.php:404
2293
  msgid "Repeat Interval"
2294
  msgstr "Repetisjonsintervall"
2295
 
2296
+ #: app/features/events.php:833 app/features/fes/form.php:405
2297
  msgid "Repeat interval"
2298
  msgstr "Repetisjonsintervall"
2299
 
2300
+ #: app/features/events.php:837 app/features/fes/form.php:408
2301
  msgid "Week Days"
2302
  msgstr "Ukesdager"
2303
 
2311
 
2312
  #: app/features/events.php:860 app/features/events.php:2101
2313
  #: app/features/events.php:2129 app/features/events.php:2343
2314
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2315
  #: app/features/ix/import_g_calendar.php:51
2316
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2317
  #: app/libraries/skins.php:1389
2322
  #: app/features/events.php:2085 app/features/events.php:2167
2323
  #: app/features/events.php:2332 app/features/events.php:2376
2324
  #: app/features/events.php:2449 app/features/events.php:2566
2325
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2326
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2327
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2328
  msgid "Add"
2329
  msgstr "Legg til"
2330
 
2331
+ #: app/features/events.php:877 app/features/fes/form.php:456
2332
  #, fuzzy
2333
  #| msgid "Custom Days"
2334
  msgid "Custom Days Repeating"
2335
  msgstr "Tilpassede dager"
2336
 
2337
+ #: app/features/events.php:880 app/features/fes/form.php:459
2338
  msgid ""
2339
  "Add certain days to event occurrence dates. If you have a single day event, "
2340
  "start and end dates should be the same, If you have a multiple day event, "
2343
 
2344
  #: app/features/events.php:891 app/features/events.php:2105
2345
  #: app/features/events.php:2133 app/features/events.php:2347
2346
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2347
  msgid "End"
2348
  msgstr "Slutt"
2349
 
2350
+ #: app/features/events.php:968 app/features/fes/form.php:532
2351
  #, fuzzy
2352
  #| msgid "First name"
2353
  msgid "First"
2354
  msgstr "Fornavn"
2355
 
2356
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2357
  #, fuzzy
2358
  #| msgid "second"
2359
  msgid "Second"
2360
  msgstr "sekund"
2361
 
2362
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2363
  #, fuzzy
2364
  #| msgid "Third Party"
2365
  msgid "Third"
2366
  msgstr "Tredjepart"
2367
 
2368
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2369
  msgid "Fourth"
2370
  msgstr ""
2371
 
2372
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2373
  #, fuzzy
2374
  #| msgid "Last name"
2375
  msgid "Last"
2376
  msgstr "Etternavn"
2377
 
2378
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2379
  msgid "Ends Repeat"
2380
  msgstr "Avslutter repetisjon"
2381
 
2382
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2383
  msgid "Never"
2384
  msgstr "Aldri"
2385
 
2386
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2387
  msgid "On"
2388
  msgstr "På"
2389
 
2390
  #: app/features/events.php:1227 app/features/events.php:1231
2391
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2392
  msgid "Occurrences times"
2393
  msgstr "Gjentagende tider"
2394
 
2404
  "Arrangementet vil bli ferdig etter enkelte gjentagelser. For eksempel hvis "
2405
  "du setter det til 10, vil arrangementet avsluttes etter 10 gjentakelser."
2406
 
2407
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2408
  #, fuzzy
2409
  #| msgid "Next Occurrence of Other Events"
2410
  msgid "Show only one occurrence of this event"
2411
  msgstr "Neste forekomst av Andre Arrangement"
2412
 
2413
+ #: app/features/events.php:1277 app/features/events.php:4195
2414
+ #: app/features/fes/form.php:867
2415
  #: app/features/mec/meta_boxes/search_form.php:116
2416
  #: app/features/mec/meta_boxes/search_form.php:204
2417
  #: app/features/mec/meta_boxes/search_form.php:292
2435
  #: app/features/mec/notifications.php:1511
2436
  #: app/features/mec/notifications.php:1628
2437
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2438
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2439
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2440
  #: app/widgets/single.php:122
2441
  msgid "Event Cost"
2442
  msgstr "Kostnad for arrangementet"
2443
 
2444
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2445
  #, fuzzy
2446
  #| msgid "Show weather module on event page"
2447
  msgid "Show the minimum price based on tickets"
2448
  msgstr "Vi vær modul på arrangement side"
2449
 
2450
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2451
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2452
  #: app/libraries/main.php:646
2453
  msgid "Currency"
2454
  msgstr "Valuta"
2455
 
2456
  #: app/features/events.php:1310 app/features/events.php:1315
2457
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2458
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2459
  msgid "Currency Sign"
2460
  msgstr "Valutategn"
2461
 
2462
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2463
  #: app/features/mec/settings.php:600
2464
  msgid "Default value will be \"currency\" if you leave it empty."
2465
  msgstr "Standardverdien vil være \"valuta\" hvis du lar den stå tom."
2466
 
2467
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2468
  #: app/features/mec/settings.php:607
2469
  msgid "Currency Position"
2470
  msgstr "Valutaområde"
2471
 
2472
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2473
  #: app/features/mec/settings.php:610
2474
  #, fuzzy
2475
  #| msgid "Before $10"
2476
  msgid "$10 (Before)"
2477
  msgstr "Før $10"
2478
 
2479
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2480
  #: app/features/mec/settings.php:611
2481
  msgid "$ 10 (Before with Space)"
2482
  msgstr ""
2483
 
2484
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2485
  #: app/features/mec/settings.php:612
2486
  #, fuzzy
2487
  #| msgid "After"
2488
  msgid "10$ (After)"
2489
  msgstr "Etter"
2490
 
2491
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2492
  #: app/features/mec/settings.php:613
2493
  msgid "10 $ (After with Space)"
2494
  msgstr ""
2495
 
2496
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2497
  #: app/features/mec/settings.php:618
2498
  msgid "Thousand Separator"
2499
  msgstr "Tusen-separator"
2500
 
2501
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2502
  #: app/features/mec/settings.php:624
2503
  msgid "Decimal Separator"
2504
  msgstr "Desimal-separator"
2505
 
2506
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2507
  #: app/features/mec/settings.php:634
2508
  msgid "No decimal"
2509
  msgstr "Ingen desimal"
2529
  msgid "Day 1"
2530
  msgstr "Dag 1"
2531
 
2532
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2533
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2534
  msgid "Event Links"
2535
  msgstr "Arrangemenslenker"
2536
 
2537
  #: app/features/events.php:1501 app/features/events.php:1509
2538
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2539
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2540
  #: app/libraries/main.php:7649
2541
  msgid "Event Link"
2542
  msgstr "Arrangemenslenke"
2543
 
2544
  #: app/features/events.php:1504 app/features/events.php:1522
2545
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2546
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2547
  msgid "eg. http://yoursite.com/your-event"
2548
  msgstr "f.eks. http://dinside.com/ditt-arrangement"
2549
 
2564
  msgid "URL Shortener"
2565
  msgstr ""
2566
 
2567
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2568
+ #: app/features/occurrences.php:530
2569
  msgid "More Information"
2570
  msgstr "Mer informasjon"
2571
 
2572
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2573
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2574
  #: app/features/popup/shortcode.php:481
2575
  msgid "Current Window"
2576
  msgstr "Gjeldende vindu"
2577
 
2578
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2579
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2580
  #: app/features/popup/shortcode.php:485
2581
  msgid "New Window"
2582
  msgstr "Nytt vindu"
2583
 
2584
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2585
  msgid ""
2586
  "If you fill it, it will be shown in event details page as an optional link. "
2587
  "Insert full link including http(s)://"
2963
  msgstr "Billett"
2964
 
2965
  #: app/features/events.php:1944 app/features/events.php:2211
2966
+ #: app/features/events.php:4182 app/features/fes.php:280
2967
  #: app/features/labels.php:183 app/features/locations.php:266
2968
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2969
  msgid "ID"
2970
  msgstr "ID"
2971
 
2974
  msgstr "Billettnavn"
2975
 
2976
  #: app/features/events.php:1956 app/features/events.php:2219
2977
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2978
  msgid "Start Time"
2979
  msgstr "Starttid"
2980
 
2981
  #: app/features/events.php:1970 app/features/events.php:2233
2982
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2983
  msgid "End Time"
2984
  msgstr "Sluttidspunkt"
2985
 
3001
  #: app/features/events.php:2007 app/features/events.php:2011
3002
  #: app/features/events.php:2109 app/features/events.php:2136
3003
  #: app/features/events.php:2265 app/features/events.php:2268
3004
+ #: app/features/events.php:2349 app/features/events.php:4743
3005
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
3006
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
3007
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3177
  msgid "Fixed Fields"
3178
  msgstr "Obligatorisk skjemafelt"
3179
 
3180
+ #: app/features/events.php:2887 app/features/events.php:4737
3181
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3182
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3183
  msgid "Attendees"
3209
  msgstr "Utløpte arrangementer"
3210
 
3211
  #: app/features/events.php:3757 app/features/mec.php:1374
3212
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3213
  msgid "Upcoming Events"
3214
  msgstr "Kommende arrangementer"
3215
 
3270
  msgstr "JSON Eksport"
3271
 
3272
  #: app/features/events.php:4068 app/features/events.php:4069
3273
+ #: app/features/events.php:4295
3274
  msgid "Duplicate"
3275
  msgstr "Dupliser"
3276
 
3277
+ #: app/features/events.php:4189
3278
  msgid "Link"
3279
  msgstr "Lenke"
3280
 
3281
+ #: app/features/events.php:4191 app/features/locations.php:111
3282
  #: app/features/locations.php:181 app/features/locations.php:268
3283
  #: app/features/mec/meta_boxes/search_form.php:108
3284
  #: app/features/mec/meta_boxes/search_form.php:196
3296
  msgid "Address"
3297
  msgstr "Adresse"
3298
 
3299
+ #: app/features/events.php:4193
3300
  #, php-format
3301
  msgid "%s Tel"
3302
  msgstr "%s Tlf"
3303
 
3304
+ #: app/features/events.php:4194
3305
  #, php-format
3306
  msgid "%s Email"
3307
  msgstr "%s E-post"
3308
 
3309
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3310
  #: app/features/mec/settings.php:876
3311
  msgid "Featured Image"
3312
  msgstr "Fremhevet bilde"
3313
 
3314
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3315
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3316
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3317
  msgid "Tags"
3318
  msgstr "Stikkord"
3319
 
3320
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3321
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3322
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3323
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3324
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3325
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3326
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3328
  msgid "Speakers"
3329
  msgstr "Foredragsholdere"
3330
 
3331
+ #: app/features/events.php:4448 app/features/fes.php:280
3332
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3333
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3334
  #: app/libraries/main.php:7592
3335
  msgid "Ticket"
3336
  msgstr "Billett"
3337
 
3338
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3339
  msgid "Variations"
3340
  msgstr "Variasjoner"
3341
 
3342
+ #: app/features/events.php:4466 app/features/fes.php:356
3343
  msgid "Unknown"
3344
  msgstr "Ukjent"
3345
 
3346
+ #: app/features/events.php:4494
3347
  msgid ""
3348
  "If you want to send an email, first select your attendees and then click in "
3349
  "the button below, please."
3350
  msgstr ""
3351
 
3352
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3353
  #, fuzzy
3354
  #| msgid "Organizer Email"
3355
  msgid "Send Email"
3356
  msgstr "Arrangør e-post"
3357
 
3358
+ #: app/features/events.php:4498
3359
  #, fuzzy
3360
  #| msgid "Attendees Form"
3361
  msgid "No Attendees Found!"
3362
  msgstr "Deltagerskjema"
3363
 
3364
+ #: app/features/events.php:4800
3365
  #, fuzzy
3366
  #| msgid "No bookings found!"
3367
  msgid "No Bookings Found!"
3507
  msgid "The event published."
3508
  msgstr "Arrangement er publisert."
3509
 
3510
+ #: app/features/fes/form.php:180
3511
  #, fuzzy
3512
  #| msgid "Go back to events list."
3513
  msgid "Go back to events list"
3514
  msgstr "Tilbake til arrangementliste."
3515
 
3516
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3517
  #: app/features/mec/settings.php:1171
3518
  msgid "Excerpt"
3519
  msgstr ""
3520
 
3521
+ #: app/features/fes/form.php:273
3522
  #, fuzzy
3523
  #| msgid "On Event Start"
3524
  msgid "Optional Event Excerpt"
3525
  msgstr "På Arrangement Start"
3526
 
3527
+ #: app/features/fes/form.php:280
3528
  msgid ""
3529
  "This event is imported from Google calendar so if you modify it would "
3530
  "overwrite in the next import from Google."
3531
  msgstr ""
3532
 
3533
+ #: app/features/fes/form.php:409
3534
  #: app/features/mec/meta_boxes/display_options.php:1494
3535
  #: app/libraries/main.php:476
3536
  msgid "Monday"
3537
  msgstr "Mandag"
3538
 
3539
+ #: app/features/fes/form.php:410
3540
  #: app/features/mec/meta_boxes/display_options.php:1495
3541
  #: app/libraries/main.php:476
3542
  msgid "Tuesday"
3543
  msgstr "Tirsdag"
3544
 
3545
+ #: app/features/fes/form.php:411
3546
  #: app/features/mec/meta_boxes/display_options.php:1496
3547
  #: app/libraries/main.php:476
3548
  msgid "Wednesday"
3549
  msgstr "Onsdag"
3550
 
3551
+ #: app/features/fes/form.php:412
3552
  #: app/features/mec/meta_boxes/display_options.php:1497
3553
  #: app/libraries/main.php:476
3554
  msgid "Thursday"
3555
  msgstr "Torsdag"
3556
 
3557
+ #: app/features/fes/form.php:413
3558
  #: app/features/mec/meta_boxes/display_options.php:1498
3559
  #: app/libraries/main.php:476
3560
  msgid "Friday"
3561
  msgstr "Fredag"
3562
 
3563
+ #: app/features/fes/form.php:414
3564
  #: app/features/mec/meta_boxes/display_options.php:1499
3565
  #: app/libraries/main.php:476
3566
  msgid "Saturday"
3567
  msgstr "Lørdag"
3568
 
3569
+ #: app/features/fes/form.php:415
3570
  #: app/features/mec/meta_boxes/display_options.php:1493
3571
  #: app/libraries/main.php:476
3572
  msgid "Sunday"
3573
  msgstr "Søndag"
3574
 
3575
+ #: app/features/fes/form.php:768
3576
  msgid ""
3577
  "The event will finish after certain repeats. For example if you set it to "
3578
  "10, the event will finish after 10 repeats."
3580
  "Arrangementet vil bli ferdig etter enkelte gjentagelser. For eksempel hvis "
3581
  "du setter det til 10, vil arrangementet avsluttes etter 10 gjentakelser."
3582
 
3583
+ #: app/features/fes/form.php:792
3584
  msgid "Note to reviewer"
3585
  msgstr "Merknad til redaktør"
3586
 
3587
+ #: app/features/fes/form.php:810
3588
  msgid "User Data"
3589
  msgstr "Brukdata"
3590
 
3591
+ #: app/features/fes/form.php:813
3592
  msgid "eg. yourname@gmail.com"
3593
  msgstr "f.eks. dittanavn@gmail.com"
3594
 
3595
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3596
+ #: app/features/popup/event.php:190
3597
  msgid "eg. John Smith"
3598
  msgstr "f.eks. Ola Nordmann"
3599
 
3600
+ #: app/features/fes/form.php:835
3601
  #, fuzzy
3602
  #| msgid ""
3603
  #| "If you fill it, it will be replaced instead of default event page link. "
3609
  "Hvis du fyller den ut, vil den erstatte standardkoblingen. Sett inn full "
3610
  "link inkludert http(s)://"
3611
 
3612
+ #: app/features/fes/form.php:958
3613
  msgid "Remove Image"
3614
  msgstr "Fjern bilde"
3615
 
3616
+ #: app/features/fes/form.php:1048
3617
  msgid "Insert your desired tags, comma separated."
3618
  msgstr "Stikkord (kommaseparert)."
3619
 
3620
+ #: app/features/fes/form.php:1070
3621
  #, fuzzy
3622
  #| msgid "Speakers"
3623
  msgid "Speakers Names"
3624
  msgstr "Foredragsholdere"
3625
 
3626
+ #: app/features/fes/form.php:1071
3627
  msgid "Separate names with commas: Justin, Chris"
3628
  msgstr ""
3629
 
3630
+ #: app/features/fes/form.php:1116
3631
  #, fuzzy, php-format
3632
  #| msgid "Please %s/%s in order to submit new events."
3633
  msgid "I accept the %s in order to submit an event."
3634
  msgstr "Vennligst% s /% s for å sende inn nye hendelser."
3635
 
3636
+ #: app/features/fes/form.php:1116
3637
  msgid "Privacy Policy"
3638
  msgstr ""
3639
 
3640
+ #: app/features/fes/form.php:1118
3641
  #, fuzzy
3642
  #| msgid "Please %s/%s in order to submit new events."
3643
  msgid "I accept the Privacy Policy in order to submit an event."
3644
  msgstr "Vennligst% s /% s for å sende inn nye hendelser."
3645
 
3646
+ #: app/features/fes/form.php:1124
3647
  #, fuzzy
3648
  #| msgid "Edit Event"
3649
  msgid "Submit Event"
3733
  msgid "The events are imported successfully!"
3734
  msgstr "Hendelser er vellykket importert!"
3735
 
3736
+ #: app/features/ix.php:1342
3737
  msgid "Third Party plugin is not installed and activated!"
3738
  msgstr "Tredjeparts plugin er ikke installert og aktivert!"
3739
 
3740
+ #: app/features/ix.php:1366
3741
  msgid "Third Party plugin is invalid!"
3742
  msgstr "Tredjeparts plugin er ugyldig!"
3743
 
3744
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3745
  #, fuzzy
3746
  #| msgid "Both of API key and Calendar ID are required!"
3747
  msgid "API key and Calendar ID are required!"
3748
  msgstr "Både API nøkkel og Kalender ID er påkrevd!"
3749
 
3750
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3751
  #, fuzzy
3752
  #| msgid "Please select some events to import!"
3753
  msgid "Please select events to import!"
3754
  msgstr "Vennligst velg data som skal importeres!"
3755
 
3756
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3757
  #, fuzzy
3758
  #| msgid "Both of API key and Group URL are required!"
3759
  msgid "API key and Group URL are required!"
3760
  msgstr "Både API-nøkkel og gruppe-URL kreves!"
3761
 
3762
+ #: app/features/ix.php:4137
3763
  msgid "Check at Meetup"
3764
  msgstr "Sjekk på Meetup"
3765
 
3766
+ #: app/features/ix.php:4303
3767
  #, fuzzy
3768
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3769
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3770
  msgstr "Alle Klient ID, Klient Hemmelig Kode og Kalender-ID er påkrevd!"
3771
 
3772
+ #: app/features/ix.php:4326
3773
  #, fuzzy, php-format
3774
  #| msgid "All seems good! Please click %s for authenticating your app."
3775
  msgid "All seems good! Please click %s to authenticate your app."
3776
  msgstr "Alt ser bra ut! Klikk %s for å godkjenne din app."
3777
 
3778
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3779
  #: app/features/mec/settings.php:1496
3780
  msgid "here"
3781
  msgstr ""
3782
 
3783
+ #: app/features/ix.php:4381
3784
  #, fuzzy
3785
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3786
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3787
  msgstr "Alle felt, klientapp, klienthemmelig og kalender-ID er påkrevd!"
3788
 
3789
+ #: app/features/ix.php:4543
3790
  #, fuzzy, php-format
3791
  #| msgid "%s events added to Google Calendar successfully."
3792
  msgid "%s events added to Google Calendar with success."
3793
  msgstr "%s hendelser lagt til i Google Kalender vellykket."
3794
 
3795
+ #: app/features/ix.php:4544
3796
  #, fuzzy, php-format
3797
  #| msgid "%s previously added events get updated."
3798
  msgid "%s Updated previously added events."
3799
  msgstr "%s tidligere hendelser lagt til blir oppdatert."
3800
 
3801
+ #: app/features/ix.php:4545
3802
  #, php-format
3803
  msgid "%s events failed to add for following reasons: %s"
3804
  msgstr "%s hendelser kunne ikke tilføyes av følgende grunner: %s"
3805
 
3806
+ #: app/features/ix.php:4577
3807
  msgid "Please insert your Facebook page's link."
3808
  msgstr "Vennligst sett inn lenken til Facebook-siden din."
3809
 
3810
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3811
  #, fuzzy
3812
  #| msgid ""
3813
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3819
  "Vi kunne ikke gjenkjenne din Facebook-side. Vennligst sjekk den og gi oss en "
3820
  "gyldig Facebook side link."
3821
 
3822
+ #: app/features/ix.php:4625
3823
  msgid "Please insert your facebook page's link."
3824
  msgstr "Vennligst sett inn linken til din Facebook-side."
3825
 
4029
  msgid "Add to Google Calendar"
4030
  msgstr "Legg til i Google Kalender"
4031
 
4032
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
4033
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
4034
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
4035
  #: app/features/mec/single.php:604
4148
  msgid "Import all of your Facebook events into MEC."
4149
  msgstr "Importer alle dine Facebook-hendelser i MEC."
4150
 
4151
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4152
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4153
  msgid "Documentation"
4154
  msgstr "Dokumentasjon"
4465
  "for at de er riktige."
4466
 
4467
  #: app/features/labels.php:79 app/features/locations.php:77
4468
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4469
  #: app/features/tag.php:77
4470
  #, fuzzy, php-format
4471
  #| msgid "Search Coupons"
4473
  msgstr "Søk etter rabattkoder"
4474
 
4475
  #: app/features/labels.php:80 app/features/locations.php:78
4476
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4477
  #: app/features/tag.php:78
4478
  #, fuzzy, php-format
4479
  #| msgid "No events found!"
4519
  msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
4520
 
4521
  #: app/features/labels.php:186 app/features/locations.php:269
4522
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4523
  #: app/modules/booking/steps/tickets.php:172
4524
  msgid "Count"
4525
  msgstr "Antall"
4535
  msgstr "Arrangement %s"
4536
 
4537
  #: app/features/locations.php:59 app/features/mec.php:526
4538
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4539
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4540
  #: app/libraries/main.php:7623
4541
  msgid "Locations"
4546
  msgstr "Angi stedsadresse"
4547
 
4548
  #: app/features/locations.php:131 app/features/locations.php:197
4549
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4550
  msgid "Latitude"
4551
  msgstr "Breddegrad"
4552
 
4557
  msgstr "Geo Latitude (Valgfritt)"
4558
 
4559
  #: app/features/locations.php:139 app/features/locations.php:201
4560
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4561
  msgid "Longitude"
4562
  msgstr "Lengdegrad"
4563
 
4582
 
4583
  #: app/features/locations.php:156 app/features/locations.php:210
4584
  #: app/features/organizers.php:128 app/features/organizers.php:161
4585
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4586
  msgid "Thumbnail"
4587
  msgstr "Miniatyrbilde"
4588
 
4589
  #: app/features/locations.php:329 app/features/occurrences.php:460
4590
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4591
  #, php-format
4592
  msgid "Event Main %s"
4593
  msgstr "Hendelse Hoved %s"
4594
 
4595
  #: app/features/locations.php:332 app/features/occurrences.php:464
4596
+ #: app/features/popup/event.php:121
4597
  msgid "Hide location"
4598
  msgstr "Skjul Plassering"
4599
 
4600
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4601
  msgid "Insert a new location"
4602
  msgstr "Sett inn nytt sted"
4603
 
4605
  msgid "Choose one of saved locations or insert new one below."
4606
  msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
4607
 
4608
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4609
  msgid "Location Name"
4610
  msgstr "Skriv inn stedsnavn..."
4611
 
4612
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4613
  msgid "eg. City Hall"
4614
  msgstr "f.eks. rådhuset"
4615
 
4616
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4617
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4618
  msgid "Event Location"
4619
  msgstr "Arrangementssted"
4620
 
4621
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4622
  msgid "eg. City hall, Manhattan, New York"
4623
  msgstr "f.eks Norske Operaen, Oslo, Norge"
4624
 
4625
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4626
  #, fuzzy
4627
  #| msgid "Longitude"
4628
  msgid "Latitude/Longitude"
4629
  msgstr "Lengdegrad"
4630
 
4631
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4632
  msgid ""
4633
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4634
  "to convert the location address to geopoint, Latitude and Longitude are the "
4637
  "the location on the map to find lat long coordinates."
4638
  msgstr ""
4639
 
4640
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4641
  msgid "Get Latitude and Longitude"
4642
  msgstr ""
4643
 
4644
  #: app/features/locations.php:392 app/features/organizers.php:315
4645
+ #: app/features/popup/event.php:209
4646
  msgid "Choose image"
4647
  msgstr "Velg bilde"
4648
 
4649
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4650
+ #: app/features/popup/event.php:140
4651
  msgid "Don't show map in single event page"
4652
  msgstr "Ikke vis kart i enkelt arrangement visning"
4653
 
4654
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4655
  #: app/libraries/main.php:7654
4656
  #, fuzzy
4657
  #| msgid "Locations"
4658
  msgid "Other Locations"
4659
  msgstr "Steder"
4660
 
4661
+ #: app/features/locations.php:413
4662
  #, fuzzy
4663
  #| msgid ""
4664
  #| "You can select extra organizers in addition to main organizer if you like."
4746
  msgid "Support"
4747
  msgstr "Support"
4748
 
4749
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4750
  #: app/features/mec/meta_boxes/filter.php:71
4751
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4752
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4754
  msgstr "Arrangører"
4755
 
4756
  #: app/features/mec.php:536 app/features/mec.php:596
4757
+ #: app/features/mec/dashboard.php:218
4758
  msgid "Shortcodes"
4759
  msgstr "Shortcodes"
4760
 
4973
  msgstr ""
4974
 
4975
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4976
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4977
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4978
  msgid "Version"
4979
  msgstr "Versjon"
4997
  msgstr "Søk..."
4998
 
4999
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
5000
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
5001
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
5002
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
5003
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
5004
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
5005
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5600
  msgid "It applies only to the orders that are related to MEC."
5601
  msgstr "Det gjelder kun ordrene som er relatert til MEC."
5602
 
5603
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5604
  #, fuzzy
5605
  #| msgid "Add to Cart"
5606
  msgid "After Add to Cart"
5607
  msgstr "Legg til Handlekurv"
5608
 
5609
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5610
  #, fuzzy
5611
  #| msgid "Get Directions"
5612
  msgid "Redirect to Cart"
5613
  msgstr "Få veibeskrivelse"
5614
 
5615
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5616
  #, fuzzy
5617
  #| msgid "Get Directions"
5618
  msgid "Redirect to Checkout"
5619
  msgstr "Få veibeskrivelse"
5620
 
5621
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5622
  #, fuzzy
5623
  #| msgid "View Detail Button"
5624
  msgid "Optional View Cart Button"
5625
  msgstr "Se Detalj Knapp"
5626
 
5627
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5628
  msgid "Optional Checkout Button"
5629
  msgstr ""
5630
 
5680
  "(Stripe) got canceled."
5681
  msgstr ""
5682
 
5683
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5684
+ #, fuzzy
5685
+ #| msgid "MEC - Support"
5686
+ msgid "MEC Cart"
5687
+ msgstr "MEC-støtte"
5688
+
5689
+ #: app/features/mec/booking.php:1118
5690
  msgid "Use MEC Cart System"
5691
  msgstr ""
5692
 
5693
+ #: app/features/mec/booking.php:1120
5694
  msgid ""
5695
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5696
  "adding a simple cart and checkout system to your website."
5697
  msgstr ""
5698
 
5699
+ #: app/features/mec/booking.php:1122
5700
  msgid "You cannot use following MEC features while using MEC Cart."
5701
  msgstr ""
5702
 
5703
+ #: app/features/mec/booking.php:1124
5704
  #, fuzzy
5705
  #| msgid "Set Up a Payment Gateway"
5706
  msgid "WooCommerce as Payment Gateway"
5707
  msgstr "Konfigurere en gateway for betaling"
5708
 
5709
+ #: app/features/mec/booking.php:1125
5710
  #, fuzzy
5711
  #| msgid "Next Occurrence of Other Events"
5712
  msgid "Currency Per Event"
5713
  msgstr "Neste forekomst av Andre Arrangement"
5714
 
5715
+ #: app/features/mec/booking.php:1126
5716
  #, fuzzy
5717
  #| msgid "Payment Gateways"
5718
  msgid "Disable Gateways Per Event"
5719
  msgstr "Betalingsløsninger"
5720
 
5721
+ #: app/features/mec/booking.php:1127
5722
  #, fuzzy
5723
  #| msgid "Stripe"
5724
  msgid "Stripe Connect Gateway"
5725
  msgstr "Stripe"
5726
 
5727
+ #: app/features/mec/booking.php:1128
5728
  #, fuzzy
5729
  #| msgid "Set Up WooCommerce Gateway"
5730
  msgid "Pay By WooCommerce Gateway"
5731
  msgstr "Konfigurer WooCommerce-gateway"
5732
 
5733
+ #: app/features/mec/booking.php:1129
5734
  #, fuzzy
5735
  #| msgid "Organizer Tel"
5736
  msgid "Organizer Payment Module"
5737
  msgstr "Tlf til arrangør"
5738
 
5739
+ #: app/features/mec/booking.php:1133
5740
  #, fuzzy
5741
  #| msgid "Start Date"
5742
  msgid "Cart Page"
5743
  msgstr "Startdato"
5744
 
5745
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5746
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5747
  #, php-format
5748
  msgid "Put %s shortcode into the page."
5749
  msgstr "Sett% s shortcode inn på siden."
5750
 
5751
+ #: app/features/mec/booking.php:1145
5752
  #, fuzzy
5753
  #| msgid "Checkout"
5754
  msgid "Checkout Page"
5755
  msgstr "Til kassen"
5756
 
5757
+ #: app/features/mec/booking.php:1171
5758
  #, fuzzy
5759
  #| msgid "Download Invoice"
5760
  msgid "Enable Cart Invoice"
5761
  msgstr "Last ned Faktura"
5762
 
5763
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5764
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5765
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5766
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5768
  msgid "Saved"
5769
  msgstr "Lagret"
5770
 
5771
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5772
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5773
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5774
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5776
  msgid "Settings Saved!"
5777
  msgstr "Innstillinger Lagret!"
5778
 
5779
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5780
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5781
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5782
  msgid "Please Refresh Page"
5792
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5793
  msgstr "%s-mektig & enkelt å bruke Events Management System"
5794
 
5795
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5796
  #, fuzzy, php-format
5797
  #| msgid ""
5798
  #| "You're using %s version of Modern Events Calendar. To use advanced "
5807
  "bruke avanserte booking system, moderne skins som agenda, tidsplan, murverk, "
5808
  "årlig visning, tilgjengelige spots, etc bør du %s til Pro-versjonen."
5809
 
5810
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5811
  msgid "lite"
5812
  msgstr "lett"
5813
 
5814
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5815
  #: app/features/mec/support.php:126
5816
  msgid "GO PREMIUM"
5817
  msgstr "GO PREMIUM"
5818
 
5819
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5820
  #, fuzzy
5821
  #| msgid "Modern Events Calendar"
5822
  msgid "Getting started with Modern Events Calendar"
5823
  msgstr "Modern Events Calendar"
5824
 
5825
+ #: app/features/mec/dashboard.php:113
5826
  msgid ""
5827
  "In this short video, you can learn how to make an event and put a calendar "
5828
  "on your website. Please watch this 2 minutes video to the end."
5829
  msgstr ""
5830
 
5831
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5832
  #, fuzzy
5833
  #| msgid "MEC Activation"
5834
  msgid "License Activation"
5835
  msgstr "MEC Aktivisering"
5836
 
5837
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5838
  #, fuzzy
5839
  #| msgid "Activate License"
5840
  msgid "Activate Addons"
5841
  msgstr "Aktiver Lisens"
5842
 
5843
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5844
  msgid "You cannot access this section."
5845
  msgstr ""
5846
 
5847
+ #: app/features/mec/dashboard.php:159
5848
  msgid ""
5849
  "In order to use all plugin features and options, please enter your purchase "
5850
  "code."
5852
  "For å bruke alle plugin funksjoner og alternativer, vennligst skriv inn din "
5853
  "kjøpskode."
5854
 
5855
+ #: app/features/mec/dashboard.php:267
5856
  msgid "Popular Gateways"
5857
  msgstr "Populære Gatewayer"
5858
 
5859
+ #: app/features/mec/dashboard.php:325
5860
  msgid "Change Log"
5861
  msgstr "Endringslogg"
5862
 
7423
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7424
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7425
  #: app/features/popup/settings.php:272 app/features/search.php:109
7426
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7427
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7428
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7429
  #: app/modules/speakers/details.php:18
8774
  msgid "Please, insert comma to separate reminder hours."
8775
  msgstr ""
8776
 
8777
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8778
  #: app/libraries/main.php:705
8779
  msgid "New Event"
8780
  msgstr "Nytt Arrangement"
11130
  msgid "Choose one of saved locations."
11131
  msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
11132
 
11133
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
11134
+ #: app/features/popup/event.php:171
11135
  msgid "Hide organizer"
11136
  msgstr "Skjul arrangør"
11137
 
11138
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
11139
+ #: app/features/popup/event.php:180
11140
  msgid "Choose one of saved organizers or insert new one below."
11141
  msgstr "Velg en av lagrede arrangører eller sett inn en ny nedenfor."
11142
 
11149
  msgstr "Sett inn organisatorens e-postadresse."
11150
 
11151
  #: app/features/organizers.php:120 app/features/organizers.php:157
11152
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
11153
  msgid "Link to organizer page"
11154
  msgstr "Lenke til arrangørside"
11155
 
11161
  msgid "Contact info"
11162
  msgstr "Kontaktinfo"
11163
 
11164
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11165
  msgid "Insert a new organizer"
11166
  msgstr "Sett inn en ny arrangør"
11167
 
11168
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11169
  msgid "Phone number."
11170
  msgstr "Telefonnummer."
11171
 
11172
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11173
  msgid "eg. +1 (234) 5678"
11174
  msgstr "f.eks. +47 22334455"
11175
 
11176
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11177
  msgid "Email address."
11178
  msgstr "E-postadresse."
11179
 
11180
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11181
  msgid "eg. john@smith.com"
11182
  msgstr "f.eks. Ola Nordmann"
11183
 
11184
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11185
  msgid "eg. https://webnus.net"
11186
  msgstr "F.eks. https://webnus.net"
11187
 
11196
  msgstr ""
11197
  "Du kan velge ekstra arrangører i tillegg hovedarrangør hvis du trenger det."
11198
 
11199
+ #: app/features/popup/event.php:60
11200
  #, fuzzy
11201
  #| msgid "Add Shortcode"
11202
  msgid "Adding an Event..."
11203
  msgstr "Legg til kortkode"
11204
 
11205
+ #: app/features/popup/event.php:68
11206
  #, fuzzy
11207
  #| msgid "Event Note"
11208
  msgid "Event Name"
11209
  msgstr "Arrangementsnotat"
11210
 
11211
+ #: app/features/popup/event.php:69
11212
  msgid "Event name is required"
11213
  msgstr ""
11214
 
11215
+ #: app/features/popup/event.php:130
11216
  #, fuzzy
11217
  #| msgid "Choose one of saved locations or insert new one below."
11218
  msgid "Choose one of saved locations or insert new one."
11219
  msgstr "Velg en av de lagrede stedene eller sett inn en ny en under."
11220
 
11221
+ #: app/features/popup/event.php:134
11222
  #, fuzzy
11223
  #| msgid "Location"
11224
  msgid "Add Location"
11225
  msgstr "Sted"
11226
 
11227
+ #: app/features/popup/event.php:184
11228
  #, fuzzy
11229
  #| msgid "Organizer"
11230
  msgid "Add Organizer"
11231
  msgstr "Arrangør"
11232
 
11233
+ #: app/features/popup/event.php:224
11234
  #, fuzzy
11235
  #| msgid "Categories"
11236
  msgid "All Categories"
11237
  msgstr "Kategorier"
11238
 
11239
+ #: app/features/popup/event.php:225
11240
  msgid "Most Used"
11241
  msgstr ""
11242
 
11243
+ #: app/features/popup/event.php:236
11244
  #, fuzzy
11245
  #| msgid "Add New Coupon"
11246
  msgid "Add New Category"
11247
  msgstr "Legg til ny rabattkode"
11248
 
11249
+ #: app/features/popup/event.php:247
11250
  #, fuzzy
11251
  #| msgid "Featured Image"
11252
  msgid "Set Featured Image"
11253
  msgstr "Fremhevet bilde"
11254
 
11255
+ #: app/features/popup/event.php:257
11256
  msgid "Your Event Has Been Created."
11257
  msgstr ""
11258
 
11259
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11260
  #: app/features/popup/shortcode.php:553
11261
  msgid "Prev"
11262
  msgstr ""
11263
 
11264
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11265
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11266
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11267
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11470
  msgid "No search result."
11471
  msgstr ""
11472
 
11473
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11474
+ #: app/features/speakers.php:293
11475
  msgid "Job Title"
11476
  msgstr "Yrkestittel"
11477
 
11478
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11479
  msgid "Insert speaker job title."
11480
  msgstr "Sette inn instruktørstilling."
11481
 
11482
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11483
  msgid "Insert speaker phone number."
11484
  msgstr "Sette inn instruktørens telefonnummer."
11485
 
11486
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11487
  msgid "Insert speaker email address."
11488
  msgstr "Sette inn instruktørens epost."
11489
 
11490
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11491
  #, fuzzy
11492
  #| msgid "Insert URL of Twitter Page"
11493
  msgid "Insert URL of Website"
11494
  msgstr "Sett inn nettadressen til Twitter-siden"
11495
 
11496
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11497
  msgid "Facebook Page"
11498
  msgstr "Facebook-side"
11499
 
11500
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11501
  msgid "Insert URL of Facebook Page"
11502
  msgstr "Sett inn nettadressen til Facebook-siden"
11503
 
11504
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11505
  msgid "Instagram"
11506
  msgstr ""
11507
 
11508
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11509
  #, fuzzy
11510
  #| msgid "Insert URL of Twitter Page"
11511
  msgid "Insert URL of Instagram"
11512
  msgstr "Sett inn nettadressen til Twitter-siden"
11513
 
11514
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11515
  #, fuzzy
11516
  #| msgid "Linkedin"
11517
  msgid "LinkedIn"
11518
  msgstr "LinkedIn"
11519
 
11520
+ #: app/features/speakers.php:169
11521
  #, fuzzy
11522
  #| msgid "Insert URL of Twitter Page"
11523
  msgid "Insert URL of LinkedIn"
11524
  msgstr "Sett inn nettadressen til Twitter-siden"
11525
 
11526
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11527
  msgid "Twitter Page"
11528
  msgstr "Twitter-side"
11529
 
11530
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11531
  msgid "Insert URL of Twitter Page"
11532
  msgstr "Sett inn nettadressen til Twitter-siden"
11533
 
11534
+ #: app/features/speakers.php:228
11535
  #, fuzzy
11536
  #| msgid "Insert URL of Google+"
11537
  msgid "Insert URL of linkedin"
11538
  msgstr "Sett inn nettadressen til Google +"
11539
 
11540
+ #: app/features/speakers.php:353
11541
  msgid "Sorry, You must insert speaker name!"
11542
  msgstr ""
11543
 
11544
+ #: app/features/speakers.php:402
11545
  msgid ""
11546
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11547
  "section and speaker widget section!"
11629
  msgid "Upgrade to Pro Version"
11630
  msgstr "Oppgrader til Pro versjon"
11631
 
11632
+ #: app/libraries/factory.php:232
11633
  msgctxt "plugin link"
11634
  msgid "Settings"
11635
  msgstr "Innstillinger"
11636
 
11637
+ #: app/libraries/factory.php:237
11638
  msgctxt "plugin link"
11639
  msgid "Upgrade"
11640
  msgstr "Oppgrader"
11641
 
11642
+ #: app/libraries/factory.php:391
11643
  msgid "day"
11644
  msgstr "dag"
11645
 
11646
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11647
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11648
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11649
  msgid "days"
11650
  msgstr "dager"
11651
 
11652
+ #: app/libraries/factory.php:393
11653
  msgid "hour"
11654
  msgstr "time"
11655
 
11656
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11657
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11658
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11659
  msgid "hours"
11660
  msgstr "timer"
11661
 
11662
+ #: app/libraries/factory.php:395
11663
  msgid "minute"
11664
  msgstr "minutt"
11665
 
11666
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11667
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11668
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11669
  msgid "minutes"
11670
  msgstr "minutter"
11671
 
11672
+ #: app/libraries/factory.php:397
11673
  msgid "second"
11674
  msgstr "sekund"
11675
 
11676
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11677
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11678
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11679
  msgid "seconds"
11680
  msgstr "sekunder"
11681
 
11682
+ #: app/libraries/factory.php:475
11683
  msgid "MEC Single Sidebar"
11684
  msgstr "MEC Singel Sidebar"
11685
 
11686
+ #: app/libraries/factory.php:476
11687
  msgid "Custom sidebar for single and modal page of MEC."
11688
  msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
11689
 
11690
+ #: app/libraries/factory.php:1197
11691
  msgid "Notice:"
11692
  msgstr ""
11693
 
11694
+ #: app/libraries/factory.php:1198
11695
  msgid "This update includes only bug fixes."
11696
  msgstr ""
11697
 
11849
  msgid "%s Form"
11850
  msgstr ""
11851
 
 
 
 
 
 
 
11852
  #: app/libraries/main.php:726
11853
  msgid "Only For Bookers"
11854
  msgstr ""
12638
  msgid "End at: %s - %s"
12639
  msgstr ""
12640
 
12641
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12642
  #, fuzzy
12643
  #| msgid "Repeat"
12644
  msgid "Repeating Event"
13130
  msgid "http://webnus.net"
13131
  msgstr "http://webnus.net"
13132
 
13133
+ #~ msgctxt "plugin rate"
13134
+ #~ msgid "Rate the plugin ★★★★★"
13135
+ #~ msgstr "Ranger plugin ★ ★ ★ ★ ★"
13136
+
13137
+ #, fuzzy
13138
+ #~| msgid "Address"
13139
+ #~ msgid "WordPress"
13140
+ #~ msgstr "Adresse"
13141
+
13142
  #, fuzzy
13143
  #~| msgid ""
13144
  #~| "The %s ticket is sold out. You can try another ticket or another date."
languages/modern-events-calendar-lite-nl_NL.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:28+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -176,7 +176,7 @@ msgid "Canceled"
176
  msgstr "Geannuleerd"
177
 
178
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
179
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
180
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
181
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
182
  #: app/features/mec/notifications.php:1922
@@ -214,14 +214,14 @@ msgstr "Voornaam"
214
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
215
  #: app/features/autoemails.php:60 app/features/events.php:606
216
  #: app/features/events.php:2650 app/features/events.php:2717
217
- #: app/features/events.php:2806 app/features/events.php:4443
218
- #: app/features/fes.php:280 app/features/fes/form.php:810
219
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
220
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
221
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
222
  #: app/features/organizers.php:112 app/features/organizers.php:153
223
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
224
- #: app/features/speakers.php:205 app/libraries/main.php:653
225
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
226
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
227
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -381,8 +381,8 @@ msgstr "Datum"
381
  #: app/features/events.php:2808 app/features/mec/booking.php:800
382
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
383
  #: app/features/organizers.php:104 app/features/organizers.php:149
384
- #: app/features/speakers.php:120 app/features/speakers.php:201
385
- #: app/features/speakers.php:288 app/libraries/main.php:4252
386
  msgid "Tel"
387
  msgstr "Tel"
388
 
@@ -528,6 +528,11 @@ msgstr ""
528
  msgid "Agreement"
529
  msgstr ""
530
 
 
 
 
 
 
531
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
532
  #, php-format
533
  msgid "Instead of %s, the page title with a link will be show."
@@ -705,8 +710,8 @@ msgstr "Vul verschillende emailadressen in door ze met een komma te scheiden."
705
  #: app/features/events.php:1843 app/features/events.php:2014
706
  #: app/features/events.php:2029 app/features/events.php:2271
707
  #: app/features/events.php:2283 app/features/events.php:2476
708
- #: app/features/events.php:2513 app/features/fes/form.php:458
709
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
710
  #: app/features/locations.php:341 app/features/mec/booking.php:113
711
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
712
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -783,9 +788,9 @@ msgstr "Vul verschillende emailadressen in door ze met een komma te scheiden."
783
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
784
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
785
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
786
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
787
- #: app/features/organizers.php:289 app/features/popup/event.php:128
788
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
789
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
790
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
791
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -950,8 +955,8 @@ msgstr ""
950
 
951
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
952
  #: app/features/events.php:432 app/features/events.php:1283
953
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
954
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
955
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
956
  #: app/skins/single.php:1126 app/skins/single/default.php:213
957
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1029,7 +1034,7 @@ msgid "How to set label"
1029
  msgstr ""
1030
 
1031
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1032
- #: app/features/events.php:4195 app/features/fes/form.php:998
1033
  #: app/features/labels.php:61 app/features/labels.php:227
1034
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1035
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1065,7 +1070,7 @@ msgid "How to set location"
1065
  msgstr "Verberg locatie"
1066
 
1067
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1068
- #: app/features/events.php:3876 app/features/events.php:4188
1069
  #: app/features/locations.php:58 app/features/locations.php:267
1070
  #: app/features/locations.php:329 app/features/locations.php:331
1071
  #: app/features/locations.php:340
@@ -1085,7 +1090,7 @@ msgstr "Verberg locatie"
1085
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1086
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1087
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1088
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1089
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1090
  #: app/features/search.php:97 app/libraries/main.php:3020
1091
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1099,7 +1104,7 @@ msgstr "Locatie"
1099
 
1100
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1101
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1102
- #: app/features/speakers.php:136 app/features/speakers.php:209
1103
  #: app/skins/single.php:1406 app/skins/single.php:1473
1104
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1105
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1122,7 +1127,7 @@ msgstr ""
1122
 
1123
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1124
  #: app/features/events.php:1519 app/features/events.php:1532
1125
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1126
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1127
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1128
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1171,8 +1176,8 @@ msgstr "Verberg organisator"
1171
 
1172
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1173
  #: app/features/events.php:431 app/features/events.php:3877
1174
- #: app/features/events.php:4190 app/features/events.php:4191
1175
- #: app/features/events.php:4192
1176
  #: app/features/mec/meta_boxes/display_options.php:1660
1177
  #: app/features/mec/meta_boxes/search_form.php:80
1178
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1187,12 +1192,12 @@ msgstr "Verberg organisator"
1187
  #: app/features/mec/meta_boxes/search_form.php:983
1188
  #: app/features/mec/meta_boxes/search_form.php:1070
1189
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1190
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1191
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1192
  #: app/features/organizers.php:58 app/features/organizers.php:208
1193
  #: app/features/organizers.php:277 app/features/organizers.php:279
1194
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1195
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1196
  #: app/features/popup/settings.php:263 app/features/search.php:103
1197
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1198
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1314,8 +1319,8 @@ msgstr "Tijd"
1314
  #: app/features/booking/calendar_novel.php:145
1315
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1316
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1317
- #: app/libraries/render.php:554 app/libraries/render.php:758
1318
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1319
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1320
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1321
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1381,7 +1386,7 @@ msgstr "Geen evenementen gevonden!"
1381
 
1382
  #: app/features/autoemails.php:74 app/features/events.php:230
1383
  #: app/features/labels.php:72 app/features/locations.php:70
1384
- #: app/features/organizers.php:70 app/features/speakers.php:72
1385
  #: app/features/tag.php:70
1386
  #, php-format
1387
  msgid "Edit %s"
@@ -1443,7 +1448,7 @@ msgstr "Standaard"
1443
  msgid "Go to events page"
1444
  msgstr "Laat Google Maps op evenementen pagina zien"
1445
 
1446
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1447
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1448
  #: app/features/wc.php:91 app/libraries/main.php:3072
1449
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1525,7 +1530,7 @@ msgstr "Boeking"
1525
  msgid "Back to Cart"
1526
  msgstr "Ga terug naar evenementenlijst"
1527
 
1528
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1529
  #: app/features/mec/settings.php:907
1530
  msgid "Event Color"
1531
  msgstr "Evenement kleur"
@@ -1537,8 +1542,8 @@ msgid "Recent Colors"
1537
  msgstr "Evenement kleur"
1538
 
1539
  #: app/features/contextual.php:55 app/features/mec.php:546
1540
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1541
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1542
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1543
  #: app/libraries/main.php:738
1544
  msgid "Settings"
@@ -1652,7 +1657,7 @@ msgid "Event Details/Single Event Page"
1652
  msgstr ""
1653
 
1654
  #: app/features/contextual.php:166 app/features/events.php:1298
1655
- #: app/features/fes/form.php:883
1656
  msgid "Currency Options"
1657
  msgstr "Valuta opties"
1658
 
@@ -1745,8 +1750,8 @@ msgid "Public File to Download"
1745
  msgstr ""
1746
 
1747
  #: app/features/dlfile.php:297 app/features/events.php:3874
1748
- #: app/features/events.php:4181 app/features/events.php:4730
1749
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1750
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1751
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1752
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1755,7 +1760,7 @@ msgid "Title"
1755
  msgstr "Titel"
1756
 
1757
  #: app/features/dlfile.php:301 app/features/events.php:1988
1758
- #: app/features/events.php:2248 app/features/events.php:4182
1759
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1760
  #: app/libraries/hourlyschedule.php:152
1761
  msgid "Description"
@@ -1802,7 +1807,7 @@ msgid "Before"
1802
  msgstr "Voor $10"
1803
 
1804
  #: app/features/emails/details.php:35 app/features/events.php:1223
1805
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1806
  msgid "After"
1807
  msgstr "Na"
1808
 
@@ -1813,7 +1818,7 @@ msgid "event occurrence."
1813
  msgstr "Veel voorkomende tijd"
1814
 
1815
  #: app/features/emails/details.php:40 app/features/events.php:192
1816
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1817
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1818
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1819
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1834,11 +1839,11 @@ msgstr ""
1834
  msgid "Add Event"
1835
  msgstr "Evenement toevoegen"
1836
 
1837
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1838
  msgid "Add New Event"
1839
  msgstr "Voeg nieuw evenement toe"
1840
 
1841
- #: app/features/events.php:196 app/features/ix.php:4573
1842
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1843
  #: app/skins/map/tpl.php:93
1844
  msgid "No events found!"
@@ -1849,7 +1854,7 @@ msgid "Edit Event"
1849
  msgstr ""
1850
 
1851
  #: app/features/events.php:199 app/features/fes/list.php:100
1852
- #: app/features/popup/event.php:254
1853
  msgid "View Event"
1854
  msgstr "Bekijk evenement"
1855
 
@@ -1858,7 +1863,7 @@ msgid "No events found in Trash!"
1858
  msgstr "Geen evenementen gevonden in de prullenbak."
1859
 
1860
  #: app/features/events.php:219 app/features/events.php:3831
1861
- #: app/features/events.php:4196 app/features/fes/form.php:972
1862
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1863
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1864
  #: app/libraries/main.php:7619
@@ -1867,49 +1872,49 @@ msgstr "Categorieën"
1867
 
1868
  #: app/features/events.php:229 app/features/labels.php:71
1869
  #: app/features/locations.php:69 app/features/organizers.php:69
1870
- #: app/features/speakers.php:71 app/features/tag.php:69
1871
  #, php-format
1872
  msgid "All %s"
1873
  msgstr ""
1874
 
1875
  #: app/features/events.php:231 app/features/labels.php:73
1876
  #: app/features/locations.php:71 app/features/organizers.php:71
1877
- #: app/features/speakers.php:73 app/features/tag.php:71
1878
  #, php-format
1879
  msgid "View %s"
1880
  msgstr ""
1881
 
1882
  #: app/features/events.php:232 app/features/labels.php:74
1883
  #: app/features/locations.php:72 app/features/organizers.php:72
1884
- #: app/features/speakers.php:74 app/features/tag.php:72
1885
  #, php-format
1886
  msgid "Update %s"
1887
  msgstr ""
1888
 
1889
  #: app/features/events.php:233 app/features/labels.php:75
1890
  #: app/features/locations.php:73 app/features/organizers.php:73
1891
- #: app/features/speakers.php:75 app/features/tag.php:73
1892
  #, php-format
1893
  msgid "Add New %s"
1894
  msgstr ""
1895
 
1896
  #: app/features/events.php:234 app/features/labels.php:76
1897
  #: app/features/locations.php:74 app/features/organizers.php:74
1898
- #: app/features/speakers.php:76 app/features/tag.php:74
1899
  #, php-format
1900
  msgid "New %s Name"
1901
  msgstr ""
1902
 
1903
  #: app/features/events.php:235 app/features/labels.php:77
1904
  #: app/features/locations.php:75 app/features/organizers.php:75
1905
- #: app/features/speakers.php:77 app/features/tag.php:75
1906
  #, php-format
1907
  msgid "Popular %s"
1908
  msgstr ""
1909
 
1910
  #: app/features/events.php:236 app/features/labels.php:78
1911
  #: app/features/locations.php:76 app/features/organizers.php:76
1912
- #: app/features/speakers.php:78 app/features/tag.php:76
1913
  #, php-format
1914
  msgid "Search %s"
1915
  msgstr ""
@@ -1939,7 +1944,7 @@ msgstr ""
1939
  #: app/features/events.php:278 app/features/events.php:336
1940
  #: app/features/locations.php:161 app/features/locations.php:213
1941
  #: app/features/organizers.php:133 app/features/organizers.php:164
1942
- #: app/features/speakers.php:181 app/features/speakers.php:232
1943
  msgid "Upload/Add image"
1944
  msgstr "Upload/toevoegen afbeelding"
1945
 
@@ -1948,7 +1953,7 @@ msgstr "Upload/toevoegen afbeelding"
1948
  #: app/features/locations.php:393 app/features/locations.php:400
1949
  #: app/features/organizers.php:134 app/features/organizers.php:165
1950
  #: app/features/organizers.php:316 app/features/organizers.php:323
1951
- #: app/features/speakers.php:182 app/features/speakers.php:233
1952
  msgid "Remove image"
1953
  msgstr "Verwijder afbeelding"
1954
 
@@ -1968,7 +1973,7 @@ msgstr "Evenement details"
1968
  msgid "Date And Time"
1969
  msgstr "Datum en tijd"
1970
 
1971
- #: app/features/events.php:425 app/features/fes/form.php:384
1972
  msgid "Event Repeating"
1973
  msgstr "Terugkerend evenement"
1974
 
@@ -2011,10 +2016,10 @@ msgid "Guest Data"
2011
  msgstr ""
2012
 
2013
  #: app/features/events.php:605 app/features/events.php:2641
2014
- #: app/features/events.php:4440 app/features/fes.php:280
2015
- #: app/features/fes/form.php:814 app/features/labels.php:184
2016
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2017
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2018
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2019
  msgid "Name"
2020
  msgstr "Naam"
@@ -2025,13 +2030,13 @@ msgid ""
2025
  "overwrite in the next import from Google."
2026
  msgstr ""
2027
 
2028
- #: app/features/events.php:619 app/features/fes/form.php:282
2029
  msgid "Date and Time"
2030
  msgstr "Datum en tijd"
2031
 
2032
  #: app/features/events.php:622 app/features/events.php:626
2033
- #: app/features/events.php:3878 app/features/events.php:4183
2034
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2035
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2036
  #: app/features/mec/meta_boxes/display_options.php:57
2037
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2049,13 +2054,13 @@ msgstr "Datum en tijd"
2049
  #: app/features/mec/meta_boxes/display_options.php:2347
2050
  #: app/features/mec/meta_boxes/display_options.php:2478
2051
  #: app/features/mec/meta_boxes/display_options.php:2584
2052
- #: app/features/popup/event.php:77
2053
  msgid "Start Date"
2054
  msgstr "Begindatum"
2055
 
2056
  #: app/features/events.php:642 app/features/events.php:646
2057
- #: app/features/events.php:3879 app/features/events.php:4185
2058
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2059
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2060
  #: app/features/mec/meta_boxes/display_options.php:73
2061
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2064,31 +2069,31 @@ msgstr "Begindatum"
2064
  #: app/features/mec/meta_boxes/display_options.php:788
2065
  #: app/features/mec/meta_boxes/display_options.php:1618
2066
  #: app/features/mec/meta_boxes/display_options.php:2363
2067
- #: app/features/popup/event.php:94
2068
  msgid "End Date"
2069
  msgstr "Einddatum"
2070
 
2071
- #: app/features/events.php:669 app/features/fes/form.php:324
2072
- #: app/features/popup/event.php:111
2073
  #, fuzzy
2074
  #| msgid "All Day Event"
2075
  msgid "All-day Event"
2076
  msgstr "Hele dag"
2077
 
2078
- #: app/features/events.php:679 app/features/fes/form.php:327
2079
  msgid "Hide Event Time"
2080
  msgstr "Verberg de tijd"
2081
 
2082
- #: app/features/events.php:689 app/features/fes/form.php:330
2083
  msgid "Hide Event End Time"
2084
  msgstr "Verberg de eindtijd"
2085
 
2086
  #: app/features/events.php:694 app/features/events.php:698
2087
- #: app/features/fes/form.php:334
2088
  msgid "Notes on the time"
2089
  msgstr ""
2090
 
2091
- #: app/features/events.php:699 app/features/fes/form.php:335
2092
  #, fuzzy
2093
  #| msgid ""
2094
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2100,7 +2105,7 @@ msgstr ""
2100
  "De opmerking zal naast de evenementen tijd komen te staan in de kalender. U "
2101
  "kunt hier de tijdzone bijvoorbeeld toevoegen."
2102
 
2103
- #: app/features/events.php:711 app/features/fes/form.php:342
2104
  #, fuzzy
2105
  #| msgid "Time"
2106
  msgid "Timezone"
@@ -2111,54 +2116,54 @@ msgstr "Tijd"
2111
  #: app/features/events.php:1793 app/features/events.php:1813
2112
  #: app/features/events.php:1868 app/features/events.php:2438
2113
  #: app/features/events.php:2561 app/features/events.php:2672
2114
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2115
  msgid "Inherit from global options"
2116
  msgstr "Standaardinstellingen gebruiken"
2117
 
2118
  #: app/features/events.php:725 app/features/events.php:728
2119
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2120
  #: app/features/mec/settings.php:858
2121
  #, fuzzy
2122
  msgid "Countdown Method"
2123
  msgstr "Countdown opties"
2124
 
2125
- #: app/features/events.php:730 app/features/fes/form.php:361
2126
  #, fuzzy
2127
  #| msgid "Start Date"
2128
  msgid "Count to Event Start"
2129
  msgstr "Begindatum"
2130
 
2131
- #: app/features/events.php:731 app/features/fes/form.php:362
2132
  #, fuzzy
2133
  #| msgid "No event found!"
2134
  msgid "Count to Event End"
2135
  msgstr "Geen evenementen gevonden!"
2136
 
2137
- #: app/features/events.php:737 app/features/fes/form.php:369
2138
  #: app/modules/weather/darksky.php:57
2139
  msgid "Visibility"
2140
  msgstr ""
2141
 
2142
- #: app/features/events.php:740 app/features/fes/form.php:372
2143
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2144
  #, fuzzy
2145
  #| msgid "Event Cost"
2146
  msgid "Event Visibility"
2147
  msgstr "Evenements kosten"
2148
 
2149
- #: app/features/events.php:741 app/features/fes/form.php:373
2150
  #, fuzzy
2151
  #| msgid "Booking"
2152
  msgid "Show on Shortcodes"
2153
  msgstr "Boeking"
2154
 
2155
- #: app/features/events.php:742 app/features/fes/form.php:374
2156
  #, fuzzy
2157
  #| msgid "Shortcodes"
2158
  msgid "Hide on Shortcodes"
2159
  msgstr "Shortcodes"
2160
 
2161
- #: app/features/events.php:749 app/features/fes/form.php:382
2162
  #, fuzzy
2163
  #| msgid "Repeat"
2164
  msgid "Repeating"
@@ -2170,67 +2175,72 @@ msgstr "Herhalen"
2170
  msgid "Event Repeating (Recurring events)"
2171
  msgstr "Terugkerend evenement"
2172
 
2173
- #: app/features/events.php:762 app/features/fes/form.php:388
2174
  msgid "Repeats"
2175
  msgstr "Terugkerend"
2176
 
2177
- #: app/features/events.php:770 app/features/fes/form.php:390
2178
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2179
  #: app/skins/full_calendar/tpl.php:140
2180
  msgid "Daily"
2181
  msgstr "Dagelijks"
2182
 
2183
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2184
  msgid "Every Weekday"
2185
  msgstr "Elke doordeweekse dag"
2186
 
2187
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2188
  msgid "Every Weekend"
2189
  msgstr "Elk weekend"
2190
 
2191
- #: app/features/events.php:791 app/features/fes/form.php:393
2192
  #, fuzzy
2193
  msgid "Certain Weekdays"
2194
  msgstr "Elke doordeweekse dag"
2195
 
2196
- #: app/features/events.php:798 app/features/fes/form.php:394
2197
- #: app/skins/default_full_calendar/tpl.php:78
2198
  #: app/skins/full_calendar/tpl.php:139
2199
  msgid "Weekly"
2200
  msgstr "Wekelijks"
2201
 
2202
- #: app/features/events.php:805 app/features/fes/form.php:395
2203
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2204
  #: app/skins/full_calendar/tpl.php:138
2205
  msgid "Monthly"
2206
  msgstr "Maandelijks"
2207
 
2208
- #: app/features/events.php:812 app/features/fes/form.php:396
2209
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2210
  #: app/skins/full_calendar/tpl.php:137
2211
  msgid "Yearly"
2212
  msgstr "Jaarlijks"
2213
 
2214
- #: app/features/events.php:819 app/features/fes/form.php:397
2215
  #, fuzzy
2216
  msgid "Custom Days"
2217
  msgstr "Custom stijlen"
2218
 
2219
- #: app/features/events.php:826 app/features/fes/form.php:398
2220
  #, fuzzy
2221
  #| msgid "Advanced Method"
2222
  msgid "Advanced"
2223
  msgstr "Geavanceerde weergave"
2224
 
2225
- #: app/features/events.php:831 app/features/fes/form.php:402
2226
  msgid "Repeat Interval"
2227
  msgstr "Herhalingsinterval"
2228
 
2229
- #: app/features/events.php:833 app/features/fes/form.php:403
2230
  msgid "Repeat interval"
2231
  msgstr "Herhalingsinterval"
2232
 
2233
- #: app/features/events.php:837 app/features/fes/form.php:406
2234
  #, fuzzy
2235
  msgid "Week Days"
2236
  msgstr "Week %s"
@@ -2243,7 +2253,7 @@ msgstr ""
2243
 
2244
  #: app/features/events.php:860 app/features/events.php:2101
2245
  #: app/features/events.php:2129 app/features/events.php:2343
2246
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2247
  #: app/features/ix/import_g_calendar.php:51
2248
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2249
  #: app/libraries/skins.php:1389
@@ -2254,18 +2264,18 @@ msgstr ""
2254
  #: app/features/events.php:2085 app/features/events.php:2167
2255
  #: app/features/events.php:2332 app/features/events.php:2376
2256
  #: app/features/events.php:2449 app/features/events.php:2566
2257
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2258
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2259
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2260
  msgid "Add"
2261
  msgstr "Toevoegen"
2262
 
2263
- #: app/features/events.php:877 app/features/fes/form.php:454
2264
  #, fuzzy
2265
  msgid "Custom Days Repeating"
2266
  msgstr "Custom stijlen"
2267
 
2268
- #: app/features/events.php:880 app/features/fes/form.php:457
2269
  msgid ""
2270
  "Add certain days to event occurrence dates. If you have a single day event, "
2271
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2274,50 +2284,50 @@ msgstr ""
2274
 
2275
  #: app/features/events.php:891 app/features/events.php:2105
2276
  #: app/features/events.php:2133 app/features/events.php:2347
2277
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2278
  msgid "End"
2279
  msgstr ""
2280
 
2281
- #: app/features/events.php:968 app/features/fes/form.php:530
2282
  #, fuzzy
2283
  #| msgid "First name"
2284
  msgid "First"
2285
  msgstr "Voornaam"
2286
 
2287
- #: app/features/events.php:1010 app/features/fes/form.php:572
2288
  #, fuzzy
2289
  #| msgid "second"
2290
  msgid "Second"
2291
  msgstr "seconde"
2292
 
2293
- #: app/features/events.php:1052 app/features/fes/form.php:614
2294
  msgid "Third"
2295
  msgstr ""
2296
 
2297
- #: app/features/events.php:1094 app/features/fes/form.php:656
2298
  msgid "Fourth"
2299
  msgstr ""
2300
 
2301
- #: app/features/events.php:1136 app/features/fes/form.php:698
2302
  #, fuzzy
2303
  #| msgid "Last name"
2304
  msgid "Last"
2305
  msgstr "Achternaam"
2306
 
2307
- #: app/features/events.php:1183 app/features/fes/form.php:744
2308
  msgid "Ends Repeat"
2309
  msgstr "Terugkerend evenement stopt"
2310
 
2311
- #: app/features/events.php:1195 app/features/fes/form.php:748
2312
  msgid "Never"
2313
  msgstr "Nooit"
2314
 
2315
- #: app/features/events.php:1207 app/features/fes/form.php:753
2316
  msgid "On"
2317
  msgstr "Op"
2318
 
2319
  #: app/features/events.php:1227 app/features/events.php:1231
2320
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2321
  msgid "Occurrences times"
2322
  msgstr "Veel voorkomende tijd"
2323
 
@@ -2334,12 +2344,12 @@ msgstr ""
2334
  "Bijvoorbeeld, als je 10 hebt ingevuld, zal het evenement na 2 herhalingen "
2335
  "stoppen."
2336
 
2337
- #: app/features/events.php:1248 app/features/fes/form.php:779
2338
  msgid "Show only one occurrence of this event"
2339
  msgstr ""
2340
 
2341
- #: app/features/events.php:1277 app/features/events.php:4193
2342
- #: app/features/fes/form.php:865
2343
  #: app/features/mec/meta_boxes/search_form.php:116
2344
  #: app/features/mec/meta_boxes/search_form.php:204
2345
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2363,73 +2373,73 @@ msgstr ""
2363
  #: app/features/mec/notifications.php:1511
2364
  #: app/features/mec/notifications.php:1628
2365
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2366
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2367
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2368
  #: app/widgets/single.php:122
2369
  msgid "Event Cost"
2370
  msgstr "Evenements kosten"
2371
 
2372
- #: app/features/events.php:1292 app/features/fes/form.php:877
2373
  msgid "Show the minimum price based on tickets"
2374
  msgstr ""
2375
 
2376
- #: app/features/events.php:1300 app/features/fes/form.php:885
2377
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2378
  #: app/libraries/main.php:646
2379
  msgid "Currency"
2380
  msgstr "Valuta"
2381
 
2382
  #: app/features/events.php:1310 app/features/events.php:1315
2383
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2384
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2385
  msgid "Currency Sign"
2386
  msgstr "Valutasymbool"
2387
 
2388
- #: app/features/events.php:1316 app/features/fes/form.php:901
2389
  #: app/features/mec/settings.php:600
2390
  msgid "Default value will be \"currency\" if you leave it empty."
2391
  msgstr "Standaardwaarde is \"currency\" als je het leeg laat."
2392
 
2393
- #: app/features/events.php:1323 app/features/fes/form.php:908
2394
  #: app/features/mec/settings.php:607
2395
  msgid "Currency Position"
2396
  msgstr "Valutasymbool-positie"
2397
 
2398
- #: app/features/events.php:1326 app/features/fes/form.php:911
2399
  #: app/features/mec/settings.php:610
2400
  #, fuzzy
2401
  #| msgid "Before $10"
2402
  msgid "$10 (Before)"
2403
  msgstr "Voor $10"
2404
 
2405
- #: app/features/events.php:1327 app/features/fes/form.php:912
2406
  #: app/features/mec/settings.php:611
2407
  msgid "$ 10 (Before with Space)"
2408
  msgstr ""
2409
 
2410
- #: app/features/events.php:1328 app/features/fes/form.php:913
2411
  #: app/features/mec/settings.php:612
2412
  #, fuzzy
2413
  #| msgid "After"
2414
  msgid "10$ (After)"
2415
  msgstr "Na"
2416
 
2417
- #: app/features/events.php:1329 app/features/fes/form.php:914
2418
  #: app/features/mec/settings.php:613
2419
  msgid "10 $ (After with Space)"
2420
  msgstr ""
2421
 
2422
- #: app/features/events.php:1334 app/features/fes/form.php:919
2423
  #: app/features/mec/settings.php:618
2424
  msgid "Thousand Separator"
2425
  msgstr "Duizendtalscheiding"
2426
 
2427
- #: app/features/events.php:1340 app/features/fes/form.php:925
2428
  #: app/features/mec/settings.php:624
2429
  msgid "Decimal Separator"
2430
  msgstr "Decimaalscheiding"
2431
 
2432
- #: app/features/events.php:1350 app/features/fes/form.php:935
2433
  #: app/features/mec/settings.php:634
2434
  msgid "No decimal"
2435
  msgstr "Geen decimaal"
@@ -2455,23 +2465,23 @@ msgstr ""
2455
  msgid "Day 1"
2456
  msgstr ""
2457
 
2458
- #: app/features/events.php:1498 app/features/fes/form.php:829
2459
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2460
  #, fuzzy
2461
  msgid "Event Links"
2462
  msgstr "Evenement locatie"
2463
 
2464
  #: app/features/events.php:1501 app/features/events.php:1509
2465
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2466
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2467
  #: app/libraries/main.php:7649
2468
  #, fuzzy
2469
  msgid "Event Link"
2470
  msgstr "Evenement locatie"
2471
 
2472
  #: app/features/events.php:1504 app/features/events.php:1522
2473
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2474
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2475
  msgid "eg. http://yoursite.com/your-event"
2476
  msgstr "bijv. http://yoursite.com/your-event"
2477
 
@@ -2489,25 +2499,25 @@ msgstr ""
2489
  msgid "URL Shortener"
2490
  msgstr ""
2491
 
2492
- #: app/features/events.php:1525 app/features/fes/form.php:838
2493
- #: app/features/occurrences.php:527
2494
  #, fuzzy
2495
  msgid "More Information"
2496
  msgstr "Bevestiging"
2497
 
2498
- #: app/features/events.php:1527 app/features/fes/form.php:840
2499
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2500
  #: app/features/popup/shortcode.php:481
2501
  msgid "Current Window"
2502
  msgstr ""
2503
 
2504
- #: app/features/events.php:1528 app/features/fes/form.php:841
2505
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2506
  #: app/features/popup/shortcode.php:485
2507
  msgid "New Window"
2508
  msgstr ""
2509
 
2510
- #: app/features/events.php:1533 app/features/fes/form.php:843
2511
  #, fuzzy
2512
  msgid ""
2513
  "If you fill it, it will be shown in event details page as an optional link. "
@@ -2880,9 +2890,9 @@ msgid "Ticket ID"
2880
  msgstr "Ticket"
2881
 
2882
  #: app/features/events.php:1944 app/features/events.php:2211
2883
- #: app/features/events.php:4180 app/features/fes.php:280
2884
  #: app/features/labels.php:183 app/features/locations.php:266
2885
- #: app/features/organizers.php:207 app/features/speakers.php:285
2886
  msgid "ID"
2887
  msgstr "ID"
2888
 
@@ -2891,12 +2901,12 @@ msgid "Ticket Name"
2891
  msgstr "Ticket naam"
2892
 
2893
  #: app/features/events.php:1956 app/features/events.php:2219
2894
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2895
  msgid "Start Time"
2896
  msgstr ""
2897
 
2898
  #: app/features/events.php:1970 app/features/events.php:2233
2899
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2900
  msgid "End Time"
2901
  msgstr ""
2902
 
@@ -2918,7 +2928,7 @@ msgstr ""
2918
  #: app/features/events.php:2007 app/features/events.php:2011
2919
  #: app/features/events.php:2109 app/features/events.php:2136
2920
  #: app/features/events.php:2265 app/features/events.php:2268
2921
- #: app/features/events.php:2349 app/features/events.php:4739
2922
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2923
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2924
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3084,7 +3094,7 @@ msgstr "Aanwezige"
3084
  msgid "Fixed Fields"
3085
  msgstr "Verplicht veld"
3086
 
3087
- #: app/features/events.php:2887 app/features/events.php:4733
3088
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3089
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3090
  msgid "Attendees"
@@ -3114,7 +3124,7 @@ msgid "Expired Events"
3114
  msgstr ""
3115
 
3116
  #: app/features/events.php:3757 app/features/mec.php:1374
3117
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3118
  msgid "Upcoming Events"
3119
  msgstr ""
3120
 
@@ -3175,15 +3185,15 @@ msgid "JSON Export"
3175
  msgstr ""
3176
 
3177
  #: app/features/events.php:4068 app/features/events.php:4069
3178
- #: app/features/events.php:4293
3179
  msgid "Duplicate"
3180
  msgstr ""
3181
 
3182
- #: app/features/events.php:4187
3183
  msgid "Link"
3184
  msgstr ""
3185
 
3186
- #: app/features/events.php:4189 app/features/locations.php:111
3187
  #: app/features/locations.php:181 app/features/locations.php:268
3188
  #: app/features/mec/meta_boxes/search_form.php:108
3189
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3201,31 +3211,31 @@ msgstr ""
3201
  msgid "Address"
3202
  msgstr "Adres"
3203
 
3204
- #: app/features/events.php:4191
3205
  #, php-format
3206
  msgid "%s Tel"
3207
  msgstr ""
3208
 
3209
- #: app/features/events.php:4192
3210
  #, php-format
3211
  msgid "%s Email"
3212
  msgstr ""
3213
 
3214
- #: app/features/events.php:4194 app/features/fes/form.php:951
3215
  #: app/features/mec/settings.php:876
3216
  msgid "Featured Image"
3217
  msgstr "Uitgelichte afbeelding"
3218
 
3219
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3220
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3221
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3222
  msgid "Tags"
3223
  msgstr "Tags"
3224
 
3225
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3226
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3227
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3228
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3229
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3230
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3231
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3233,42 +3243,42 @@ msgstr "Tags"
3233
  msgid "Speakers"
3234
  msgstr ""
3235
 
3236
- #: app/features/events.php:4446 app/features/fes.php:280
3237
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3238
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3239
  #: app/libraries/main.php:7592
3240
  msgid "Ticket"
3241
  msgstr "Ticket"
3242
 
3243
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3244
  #, fuzzy
3245
  #| msgid "Verification"
3246
  msgid "Variations"
3247
  msgstr "Verificatie"
3248
 
3249
- #: app/features/events.php:4464 app/features/fes.php:356
3250
  msgid "Unknown"
3251
  msgstr "Onbekend"
3252
 
3253
- #: app/features/events.php:4492
3254
  msgid ""
3255
  "If you want to send an email, first select your attendees and then click in "
3256
  "the button below, please."
3257
  msgstr ""
3258
 
3259
- #: app/features/events.php:4492 app/features/mec/report.php:57
3260
  #, fuzzy
3261
  #| msgid "Email"
3262
  msgid "Send Email"
3263
  msgstr "Email"
3264
 
3265
- #: app/features/events.php:4496
3266
  #, fuzzy
3267
  #| msgid "Attendees Form"
3268
  msgid "No Attendees Found!"
3269
  msgstr "Deelnemersformulier"
3270
 
3271
- #: app/features/events.php:4797
3272
  #, fuzzy
3273
  #| msgid "No bookings found!"
3274
  msgid "No Bookings Found!"
@@ -3408,70 +3418,70 @@ msgstr "Het evenement is ingediend. Het zal zo spoedig mogelijk online staan."
3408
  msgid "The event published."
3409
  msgstr "Het evenement gepubliceerd."
3410
 
3411
- #: app/features/fes/form.php:178
3412
  #, fuzzy
3413
  #| msgid "Go back to events list."
3414
  msgid "Go back to events list"
3415
  msgstr "Ga terug naar evenementenlijst"
3416
 
3417
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3418
  #: app/features/mec/settings.php:1171
3419
  msgid "Excerpt"
3420
  msgstr ""
3421
 
3422
- #: app/features/fes/form.php:271
3423
  msgid "Optional Event Excerpt"
3424
  msgstr ""
3425
 
3426
- #: app/features/fes/form.php:278
3427
  msgid ""
3428
  "This event is imported from Google calendar so if you modify it would "
3429
  "overwrite in the next import from Google."
3430
  msgstr ""
3431
 
3432
- #: app/features/fes/form.php:407
3433
  #: app/features/mec/meta_boxes/display_options.php:1494
3434
  #: app/libraries/main.php:476
3435
  msgid "Monday"
3436
  msgstr ""
3437
 
3438
- #: app/features/fes/form.php:408
3439
  #: app/features/mec/meta_boxes/display_options.php:1495
3440
  #: app/libraries/main.php:476
3441
  msgid "Tuesday"
3442
  msgstr ""
3443
 
3444
- #: app/features/fes/form.php:409
3445
  #: app/features/mec/meta_boxes/display_options.php:1496
3446
  #: app/libraries/main.php:476
3447
  msgid "Wednesday"
3448
  msgstr ""
3449
 
3450
- #: app/features/fes/form.php:410
3451
  #: app/features/mec/meta_boxes/display_options.php:1497
3452
  #: app/libraries/main.php:476
3453
  msgid "Thursday"
3454
  msgstr ""
3455
 
3456
- #: app/features/fes/form.php:411
3457
  #: app/features/mec/meta_boxes/display_options.php:1498
3458
  #: app/libraries/main.php:476
3459
  msgid "Friday"
3460
  msgstr ""
3461
 
3462
- #: app/features/fes/form.php:412
3463
  #: app/features/mec/meta_boxes/display_options.php:1499
3464
  #: app/libraries/main.php:476
3465
  msgid "Saturday"
3466
  msgstr ""
3467
 
3468
- #: app/features/fes/form.php:413
3469
  #: app/features/mec/meta_boxes/display_options.php:1493
3470
  #: app/libraries/main.php:476
3471
  msgid "Sunday"
3472
  msgstr ""
3473
 
3474
- #: app/features/fes/form.php:766
3475
  msgid ""
3476
  "The event will finish after certain repeats. For example if you set it to "
3477
  "10, the event will finish after 10 repeats."
@@ -3480,24 +3490,24 @@ msgstr ""
3480
  "Bijvoorbeeld, als je 10 hebt ingevuld, zal het evenement na 2 herhalingen "
3481
  "stoppen."
3482
 
3483
- #: app/features/fes/form.php:790
3484
  msgid "Note to reviewer"
3485
  msgstr ""
3486
 
3487
- #: app/features/fes/form.php:808
3488
  msgid "User Data"
3489
  msgstr ""
3490
 
3491
- #: app/features/fes/form.php:811
3492
  msgid "eg. yourname@gmail.com"
3493
  msgstr ""
3494
 
3495
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3496
- #: app/features/popup/event.php:185
3497
  msgid "eg. John Smith"
3498
  msgstr "bijv. John Smith"
3499
 
3500
- #: app/features/fes/form.php:833
3501
  #, fuzzy
3502
  msgid ""
3503
  "If you fill it, it will replace the default event page link. Insert full "
@@ -3506,40 +3516,40 @@ msgstr ""
3506
  "Als je wilt, kan je hier een link naar een pagina toevoegen die niet naar de "
3507
  "standaard evenementen pagina gaat. Vul de volledige link in: http(s)://"
3508
 
3509
- #: app/features/fes/form.php:956
3510
  msgid "Remove Image"
3511
  msgstr "Verwijder afbeelding"
3512
 
3513
- #: app/features/fes/form.php:1046
3514
  msgid "Insert your desired tags, comma separated."
3515
  msgstr "Vul de gewenste tags in, komma gescheiden."
3516
 
3517
- #: app/features/fes/form.php:1068
3518
  #, fuzzy
3519
  msgid "Speakers Names"
3520
  msgstr "Zoek locaties"
3521
 
3522
- #: app/features/fes/form.php:1069
3523
  msgid "Separate names with commas: Justin, Chris"
3524
  msgstr ""
3525
 
3526
- #: app/features/fes/form.php:1114
3527
  #, fuzzy, php-format
3528
  #| msgid "Please %s/%s in order to submit new events."
3529
  msgid "I accept the %s in order to submit an event."
3530
  msgstr "Gelieve %s/%s om nieuwe evenementen in te dienen."
3531
 
3532
- #: app/features/fes/form.php:1114
3533
  msgid "Privacy Policy"
3534
  msgstr ""
3535
 
3536
- #: app/features/fes/form.php:1116
3537
  #, fuzzy
3538
  #| msgid "Please %s/%s in order to submit new events."
3539
  msgid "I accept the Privacy Policy in order to submit an event."
3540
  msgstr "Gelieve %s/%s om nieuwe evenementen in te dienen."
3541
 
3542
- #: app/features/fes/form.php:1122
3543
  #, fuzzy
3544
  #| msgid "View Event"
3545
  msgid "Submit Event"
@@ -3624,77 +3634,77 @@ msgstr ""
3624
  msgid "The events are imported successfully!"
3625
  msgstr ""
3626
 
3627
- #: app/features/ix.php:1301
3628
  msgid "Third Party plugin is not installed and activated!"
3629
  msgstr ""
3630
 
3631
- #: app/features/ix.php:1325
3632
  msgid "Third Party plugin is invalid!"
3633
  msgstr ""
3634
 
3635
- #: app/features/ix.php:3300 app/features/ix.php:3361
3636
  msgid "API key and Calendar ID are required!"
3637
  msgstr ""
3638
 
3639
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3640
  #, fuzzy
3641
  #| msgid "Please select some tickets!"
3642
  msgid "Please select events to import!"
3643
  msgstr "Selecteer een aantal tickets!"
3644
 
3645
- #: app/features/ix.php:3794 app/features/ix.php:3857
3646
  msgid "API key and Group URL are required!"
3647
  msgstr ""
3648
 
3649
- #: app/features/ix.php:4096
3650
  msgid "Check at Meetup"
3651
  msgstr ""
3652
 
3653
- #: app/features/ix.php:4262
3654
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3655
  msgstr ""
3656
 
3657
- #: app/features/ix.php:4285
3658
  #, php-format
3659
  msgid "All seems good! Please click %s to authenticate your app."
3660
  msgstr ""
3661
 
3662
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3663
  #: app/features/mec/settings.php:1496
3664
  msgid "here"
3665
  msgstr ""
3666
 
3667
- #: app/features/ix.php:4340
3668
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3669
  msgstr ""
3670
 
3671
- #: app/features/ix.php:4502
3672
  #, fuzzy, php-format
3673
  #| msgid "Your booking successfully verified."
3674
  msgid "%s events added to Google Calendar with success."
3675
  msgstr "Uw boeking is succesvol geverifieerd."
3676
 
3677
- #: app/features/ix.php:4503
3678
  #, php-format
3679
  msgid "%s Updated previously added events."
3680
  msgstr ""
3681
 
3682
- #: app/features/ix.php:4504
3683
  #, php-format
3684
  msgid "%s events failed to add for following reasons: %s"
3685
  msgstr ""
3686
 
3687
- #: app/features/ix.php:4536
3688
  msgid "Please insert your Facebook page's link."
3689
  msgstr ""
3690
 
3691
- #: app/features/ix.php:4547 app/features/ix.php:4589
3692
  msgid ""
3693
  "We were not able to recognize your Facebook page. Please check again and "
3694
  "provide a valid link."
3695
  msgstr ""
3696
 
3697
- #: app/features/ix.php:4584
3698
  msgid "Please insert your facebook page's link."
3699
  msgstr ""
3700
 
@@ -3897,7 +3907,7 @@ msgstr "Export module opties"
3897
  msgid "Add to Google Calendar"
3898
  msgstr ""
3899
 
3900
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3901
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3902
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3903
  #: app/features/mec/single.php:604
@@ -4011,7 +4021,7 @@ msgstr ""
4011
  msgid "Import all of your Facebook events into MEC."
4012
  msgstr ""
4013
 
4014
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4015
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4016
  msgid "Documentation"
4017
  msgstr "Documentatie"
@@ -4294,7 +4304,7 @@ msgid ""
4294
  msgstr ""
4295
 
4296
  #: app/features/labels.php:79 app/features/locations.php:77
4297
- #: app/features/organizers.php:77 app/features/speakers.php:79
4298
  #: app/features/tag.php:77
4299
  #, fuzzy, php-format
4300
  #| msgid "Search Coupons"
@@ -4302,7 +4312,7 @@ msgid "← Back to %s"
4302
  msgstr "Zoek coupons"
4303
 
4304
  #: app/features/labels.php:80 app/features/locations.php:78
4305
- #: app/features/organizers.php:78 app/features/speakers.php:80
4306
  #: app/features/tag.php:78
4307
  #, fuzzy, php-format
4308
  #| msgid "No events found!"
@@ -4348,7 +4358,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4348
  msgstr ""
4349
 
4350
  #: app/features/labels.php:186 app/features/locations.php:269
4351
- #: app/features/organizers.php:210 app/features/speakers.php:289
4352
  #: app/modules/booking/steps/tickets.php:172
4353
  msgid "Count"
4354
  msgstr "Aantal keer gebruikt"
@@ -4364,7 +4374,7 @@ msgid "Event %s"
4364
  msgstr ""
4365
 
4366
  #: app/features/locations.php:59 app/features/mec.php:526
4367
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4368
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4369
  #: app/libraries/main.php:7623
4370
  msgid "Locations"
@@ -4375,7 +4385,7 @@ msgid "Enter the location address"
4375
  msgstr "Voer de locatie adres in"
4376
 
4377
  #: app/features/locations.php:131 app/features/locations.php:197
4378
- #: app/features/locations.php:374 app/features/popup/event.php:149
4379
  msgid "Latitude"
4380
  msgstr "Latitude"
4381
 
@@ -4386,7 +4396,7 @@ msgid "Geo latitude (Optional for Lite)"
4386
  msgstr "Geo latitude (Optioneel)"
4387
 
4388
  #: app/features/locations.php:139 app/features/locations.php:201
4389
- #: app/features/locations.php:375 app/features/popup/event.php:150
4390
  msgid "Longitude"
4391
  msgstr "Longitude"
4392
 
@@ -4411,22 +4421,22 @@ msgstr "Geo latitude (Optioneel)"
4411
 
4412
  #: app/features/locations.php:156 app/features/locations.php:210
4413
  #: app/features/organizers.php:128 app/features/organizers.php:161
4414
- #: app/features/speakers.php:176 app/features/speakers.php:229
4415
  msgid "Thumbnail"
4416
  msgstr "Thumbnail"
4417
 
4418
  #: app/features/locations.php:329 app/features/occurrences.php:460
4419
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4420
  #, php-format
4421
  msgid "Event Main %s"
4422
  msgstr ""
4423
 
4424
  #: app/features/locations.php:332 app/features/occurrences.php:464
4425
- #: app/features/popup/event.php:119
4426
  msgid "Hide location"
4427
  msgstr "Verberg locatie"
4428
 
4429
- #: app/features/locations.php:333 app/features/popup/event.php:120
4430
  msgid "Insert a new location"
4431
  msgstr "Voeg een nieuwe locatie in"
4432
 
@@ -4434,30 +4444,30 @@ msgstr "Voeg een nieuwe locatie in"
4434
  msgid "Choose one of saved locations or insert new one below."
4435
  msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
4436
 
4437
- #: app/features/locations.php:348 app/features/popup/event.php:141
4438
  msgid "Location Name"
4439
  msgstr "Locatie naam"
4440
 
4441
- #: app/features/locations.php:349 app/features/popup/event.php:142
4442
  msgid "eg. City Hall"
4443
  msgstr "bijv. Gemeentehuis"
4444
 
4445
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4446
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4447
  msgid "Event Location"
4448
  msgstr "Evenement locatie"
4449
 
4450
- #: app/features/locations.php:353 app/features/popup/event.php:146
4451
  msgid "eg. City hall, Manhattan, New York"
4452
  msgstr "bijv. Gemeentehuis, Amsterdam, Noord-Holland"
4453
 
4454
- #: app/features/locations.php:378 app/features/popup/event.php:153
4455
  #, fuzzy
4456
  #| msgid "Longitude"
4457
  msgid "Latitude/Longitude"
4458
  msgstr "Longitude"
4459
 
4460
- #: app/features/locations.php:379 app/features/popup/event.php:154
4461
  msgid ""
4462
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4463
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4466,28 +4476,28 @@ msgid ""
4466
  "the location on the map to find lat long coordinates."
4467
  msgstr ""
4468
 
4469
- #: app/features/locations.php:379 app/features/popup/event.php:154
4470
  msgid "Get Latitude and Longitude"
4471
  msgstr ""
4472
 
4473
  #: app/features/locations.php:392 app/features/organizers.php:315
4474
- #: app/features/popup/event.php:204
4475
  msgid "Choose image"
4476
  msgstr "Kies afbeelding"
4477
 
4478
- #: app/features/locations.php:406 app/features/occurrences.php:480
4479
- #: app/features/popup/event.php:137
4480
  msgid "Don't show map in single event page"
4481
  msgstr "Verberg de map op de pagina van het evenement"
4482
 
4483
- #: app/features/locations.php:409 app/libraries/main.php:7607
4484
  #: app/libraries/main.php:7654
4485
  #, fuzzy
4486
  #| msgid "Search Locations"
4487
  msgid "Other Locations"
4488
  msgstr "Zoek locaties"
4489
 
4490
- #: app/features/locations.php:411
4491
  msgid ""
4492
  "You can select extra locations in addition to main location if you like."
4493
  msgstr ""
@@ -4565,7 +4575,7 @@ msgstr "Support"
4565
  msgid "Support"
4566
  msgstr "Support"
4567
 
4568
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4569
  #: app/features/mec/meta_boxes/filter.php:71
4570
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4571
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4573,7 +4583,7 @@ msgid "Organizers"
4573
  msgstr "Organisatoren"
4574
 
4575
  #: app/features/mec.php:536 app/features/mec.php:596
4576
- #: app/features/mec/dashboard.php:221
4577
  msgid "Shortcodes"
4578
  msgstr "Shortcodes"
4579
 
@@ -4789,7 +4799,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4789
  msgstr ""
4790
 
4791
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4792
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4793
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4794
  msgid "Version"
4795
  msgstr "Versie"
@@ -4814,9 +4824,9 @@ msgid "Search..."
4814
  msgstr "Zoek coupons"
4815
 
4816
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4817
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4818
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4819
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4820
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4821
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4822
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5402,27 +5412,27 @@ msgstr ""
5402
  msgid "It applies only to the orders that are related to MEC."
5403
  msgstr ""
5404
 
5405
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5406
  msgid "After Add to Cart"
5407
  msgstr ""
5408
 
5409
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5410
  #, fuzzy
5411
  #| msgid "Get Direction"
5412
  msgid "Redirect to Cart"
5413
  msgstr "Routebeschrijving"
5414
 
5415
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5416
  #, fuzzy
5417
  #| msgid "Get Direction"
5418
  msgid "Redirect to Checkout"
5419
  msgstr "Routebeschrijving"
5420
 
5421
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5422
  msgid "Optional View Cart Button"
5423
  msgstr ""
5424
 
5425
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5426
  msgid "Optional Checkout Button"
5427
  msgstr ""
5428
 
@@ -5480,81 +5490,87 @@ msgid ""
5480
  "(Stripe) got canceled."
5481
  msgstr ""
5482
 
5483
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5484
  msgid "Use MEC Cart System"
5485
  msgstr ""
5486
 
5487
- #: app/features/mec/booking.php:1119
5488
  msgid ""
5489
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5490
  "adding a simple cart and checkout system to your website."
5491
  msgstr ""
5492
 
5493
- #: app/features/mec/booking.php:1121
5494
  msgid "You cannot use following MEC features while using MEC Cart."
5495
  msgstr ""
5496
 
5497
- #: app/features/mec/booking.php:1123
5498
  #, fuzzy
5499
  #| msgid "Payment Gateways"
5500
  msgid "WooCommerce as Payment Gateway"
5501
  msgstr "Betaalmethoden "
5502
 
5503
- #: app/features/mec/booking.php:1124
5504
  #, fuzzy
5505
  #| msgid "Notifications"
5506
  msgid "Currency Per Event"
5507
  msgstr "Meldingen"
5508
 
5509
- #: app/features/mec/booking.php:1125
5510
  #, fuzzy
5511
  #| msgid "Payment Gateways"
5512
  msgid "Disable Gateways Per Event"
5513
  msgstr "Betaalmethoden "
5514
 
5515
- #: app/features/mec/booking.php:1126
5516
  #, fuzzy
5517
  #| msgid "Payment Gateways"
5518
  msgid "Stripe Connect Gateway"
5519
  msgstr "Betaalmethoden "
5520
 
5521
- #: app/features/mec/booking.php:1127
5522
  #, fuzzy
5523
  #| msgid "Payment Gateways"
5524
  msgid "Pay By WooCommerce Gateway"
5525
  msgstr "Betaalmethoden "
5526
 
5527
- #: app/features/mec/booking.php:1128
5528
  #, fuzzy
5529
  #| msgid "New Organizer Name"
5530
  msgid "Organizer Payment Module"
5531
  msgstr "Nieuwe organisator naam"
5532
 
5533
- #: app/features/mec/booking.php:1132
5534
  #, fuzzy
5535
  #| msgid "Start Date"
5536
  msgid "Cart Page"
5537
  msgstr "Begindatum"
5538
 
5539
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5540
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5541
  #, php-format
5542
  msgid "Put %s shortcode into the page."
5543
  msgstr "Zet %s shortcode in de pagina"
5544
 
5545
- #: app/features/mec/booking.php:1144
5546
  #, fuzzy
5547
  #| msgid "Checkout"
5548
  msgid "Checkout Page"
5549
  msgstr "Afrekenen"
5550
 
5551
- #: app/features/mec/booking.php:1170
5552
  #, fuzzy
5553
  #| msgid "Enable booking module"
5554
  msgid "Enable Cart Invoice"
5555
  msgstr "Boeking module inschakelen"
5556
 
5557
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5558
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5559
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5560
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5562,7 +5578,7 @@ msgstr "Boeking module inschakelen"
5562
  msgid "Saved"
5563
  msgstr "Opgeslagen"
5564
 
5565
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5566
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5567
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5568
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5570,7 +5586,7 @@ msgstr "Opgeslagen"
5570
  msgid "Settings Saved!"
5571
  msgstr ""
5572
 
5573
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5574
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5575
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5576
  msgid "Please Refresh Page"
@@ -5586,12 +5602,7 @@ msgstr "Welkom %s"
5586
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5587
  msgstr ""
5588
 
5589
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5590
- msgctxt "plugin rate"
5591
- msgid "Rate the plugin ★★★★★"
5592
- msgstr ""
5593
-
5594
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5595
  #, php-format
5596
  msgid ""
5597
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5599,67 +5610,50 @@ msgid ""
5599
  "Spots, etc you should upgrade to the Pro version."
5600
  msgstr ""
5601
 
5602
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5603
  msgid "lite"
5604
  msgstr ""
5605
 
5606
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5607
  #: app/features/mec/support.php:126
5608
  msgid "GO PREMIUM"
5609
  msgstr ""
5610
 
5611
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5612
- #, php-format
5613
- msgid ""
5614
- "Easily get a discount coupon by rating us on %s or following and reposting "
5615
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5616
- msgstr ""
5617
-
5618
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5619
- #, fuzzy
5620
- #| msgid "Address"
5621
- msgid "WordPress"
5622
- msgstr "Adres"
5623
-
5624
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5625
- msgid "Copouns!"
5626
- msgstr ""
5627
-
5628
- #: app/features/mec/dashboard.php:115
5629
  #, fuzzy
5630
  #| msgid "Modern Events Calendar"
5631
  msgid "Getting started with Modern Events Calendar"
5632
  msgstr "Modern Events Calendar"
5633
 
5634
- #: app/features/mec/dashboard.php:116
5635
  msgid ""
5636
  "In this short video, you can learn how to make an event and put a calendar "
5637
  "on your website. Please watch this 2 minutes video to the end."
5638
  msgstr ""
5639
 
5640
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5641
  msgid "License Activation"
5642
  msgstr ""
5643
 
5644
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5645
  msgid "Activate Addons"
5646
  msgstr ""
5647
 
5648
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5649
  msgid "You cannot access this section."
5650
  msgstr ""
5651
 
5652
- #: app/features/mec/dashboard.php:162
5653
  msgid ""
5654
  "In order to use all plugin features and options, please enter your purchase "
5655
  "code."
5656
  msgstr ""
5657
 
5658
- #: app/features/mec/dashboard.php:270
5659
  msgid "Popular Gateways"
5660
  msgstr ""
5661
 
5662
- #: app/features/mec/dashboard.php:328
5663
  msgid "Change Log"
5664
  msgstr "Change log"
5665
 
@@ -7196,7 +7190,7 @@ msgstr ""
7196
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7197
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7198
  #: app/features/popup/settings.php:272 app/features/search.php:109
7199
- #: app/features/speakers.php:60 app/features/speakers.php:286
7200
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7201
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7202
  #: app/modules/speakers/details.php:18
@@ -8527,7 +8521,7 @@ msgstr ""
8527
  msgid "Please, insert comma to separate reminder hours."
8528
  msgstr ""
8529
 
8530
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8531
  #: app/libraries/main.php:705
8532
  msgid "New Event"
8533
  msgstr "Nieuw evenement"
@@ -10734,13 +10728,13 @@ msgstr ""
10734
  msgid "Choose one of saved locations."
10735
  msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
10736
 
10737
- #: app/features/occurrences.php:491 app/features/organizers.php:280
10738
- #: app/features/popup/event.php:166
10739
  msgid "Hide organizer"
10740
  msgstr "Verberg organisator"
10741
 
10742
- #: app/features/occurrences.php:499 app/features/organizers.php:289
10743
- #: app/features/popup/event.php:175
10744
  msgid "Choose one of saved organizers or insert new one below."
10745
  msgstr ""
10746
  "Kies één van de bewaarde organisatoren of voeg een nieuwe organisator toe."
@@ -10754,7 +10748,7 @@ msgid "Insert organizer email address."
10754
  msgstr "Voer organisator email adres in."
10755
 
10756
  #: app/features/organizers.php:120 app/features/organizers.php:157
10757
- #: app/features/organizers.php:308 app/features/popup/event.php:198
10758
  msgid "Link to organizer page"
10759
  msgstr "Link naar organisator pagina"
10760
 
@@ -10768,27 +10762,27 @@ msgstr ""
10768
  msgid "Contact info"
10769
  msgstr "Contact informatie"
10770
 
10771
- #: app/features/organizers.php:281 app/features/popup/event.php:167
10772
  msgid "Insert a new organizer"
10773
  msgstr "Voeg nieuwe organisator toe"
10774
 
10775
- #: app/features/organizers.php:300 app/features/popup/event.php:188
10776
  msgid "Phone number."
10777
  msgstr ""
10778
 
10779
- #: app/features/organizers.php:301 app/features/popup/event.php:189
10780
  msgid "eg. +1 (234) 5678"
10781
  msgstr "bijv. +31 (0) 612345678"
10782
 
10783
- #: app/features/organizers.php:304 app/features/popup/event.php:193
10784
  msgid "Email address."
10785
  msgstr ""
10786
 
10787
- #: app/features/organizers.php:305 app/features/popup/event.php:194
10788
  msgid "eg. john@smith.com"
10789
  msgstr "bijv. john@smith.com"
10790
 
10791
- #: app/features/organizers.php:309 app/features/popup/event.php:199
10792
  msgid "eg. https://webnus.net"
10793
  msgstr ""
10794
 
@@ -10802,72 +10796,72 @@ msgid ""
10802
  "You can select extra organizers in addition to main organizer if you like."
10803
  msgstr ""
10804
 
10805
- #: app/features/popup/event.php:58
10806
  #, fuzzy
10807
  #| msgid "Add Shortcode"
10808
  msgid "Adding an Event..."
10809
  msgstr "Shortcode toevoegen"
10810
 
10811
- #: app/features/popup/event.php:66
10812
  #, fuzzy
10813
  #| msgid "Event Labels"
10814
  msgid "Event Name"
10815
  msgstr "Evenement label"
10816
 
10817
- #: app/features/popup/event.php:67
10818
  msgid "Event name is required"
10819
  msgstr ""
10820
 
10821
- #: app/features/popup/event.php:128
10822
  #, fuzzy
10823
  #| msgid "Choose one of saved locations or insert new one below."
10824
  msgid "Choose one of saved locations or insert new one."
10825
  msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
10826
 
10827
- #: app/features/popup/event.php:132
10828
  #, fuzzy
10829
  #| msgid "Add New Location"
10830
  msgid "Add Location"
10831
  msgstr "Nieuwe locatie toevoegen"
10832
 
10833
- #: app/features/popup/event.php:179
10834
  #, fuzzy
10835
  #| msgid "Add New Organizer"
10836
  msgid "Add Organizer"
10837
  msgstr "Nieuwe organisator toevoegen"
10838
 
10839
- #: app/features/popup/event.php:219
10840
  #, fuzzy
10841
  #| msgid "Categories"
10842
  msgid "All Categories"
10843
  msgstr "Categorieën"
10844
 
10845
- #: app/features/popup/event.php:220
10846
  msgid "Most Used"
10847
  msgstr ""
10848
 
10849
- #: app/features/popup/event.php:231
10850
  #, fuzzy
10851
  #| msgid "Add New Label"
10852
  msgid "Add New Category"
10853
  msgstr "Nieuwe label toevoegen"
10854
 
10855
- #: app/features/popup/event.php:242
10856
  #, fuzzy
10857
  #| msgid "Featured Image"
10858
  msgid "Set Featured Image"
10859
  msgstr "Uitgelichte afbeelding"
10860
 
10861
- #: app/features/popup/event.php:252
10862
  msgid "Your Event Has Been Created."
10863
  msgstr ""
10864
 
10865
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
10866
  #: app/features/popup/shortcode.php:553
10867
  msgid "Prev"
10868
  msgstr ""
10869
 
10870
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
10871
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
10872
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
10873
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11069,90 +11063,90 @@ msgstr "Zoek coupons"
11069
  msgid "No search result."
11070
  msgstr ""
11071
 
11072
- #: app/features/speakers.php:112 app/features/speakers.php:197
11073
- #: app/features/speakers.php:287
11074
  #, fuzzy
11075
  #| msgid "Title"
11076
  msgid "Job Title"
11077
  msgstr "Titel"
11078
 
11079
- #: app/features/speakers.php:115 app/features/speakers.php:198
11080
  msgid "Insert speaker job title."
11081
  msgstr ""
11082
 
11083
- #: app/features/speakers.php:123 app/features/speakers.php:202
11084
  #, fuzzy
11085
  #| msgid "Insert organizer phone number."
11086
  msgid "Insert speaker phone number."
11087
  msgstr "Voer telefoonnummer organisator in."
11088
 
11089
- #: app/features/speakers.php:131 app/features/speakers.php:206
11090
  #, fuzzy
11091
  #| msgid "Insert organizer email address."
11092
  msgid "Insert speaker email address."
11093
  msgstr "Voer organisator email adres in."
11094
 
11095
- #: app/features/speakers.php:139 app/features/speakers.php:210
11096
  #, fuzzy
11097
  #| msgid "Insert -1 for unlimited usage"
11098
  msgid "Insert URL of Website"
11099
  msgstr "Voer -1 in voor onbeperkt gebruik"
11100
 
11101
- #: app/features/speakers.php:144 app/features/speakers.php:213
11102
  #, fuzzy
11103
  #| msgid "Facebook"
11104
  msgid "Facebook Page"
11105
  msgstr "Facebook"
11106
 
11107
- #: app/features/speakers.php:147 app/features/speakers.php:214
11108
  msgid "Insert URL of Facebook Page"
11109
  msgstr ""
11110
 
11111
- #: app/features/speakers.php:152 app/features/speakers.php:217
11112
  msgid "Instagram"
11113
  msgstr ""
11114
 
11115
- #: app/features/speakers.php:155 app/features/speakers.php:218
11116
  #, fuzzy
11117
  #| msgid "Insert -1 for unlimited usage"
11118
  msgid "Insert URL of Instagram"
11119
  msgstr "Voer -1 in voor onbeperkt gebruik"
11120
 
11121
- #: app/features/speakers.php:160 app/features/speakers.php:221
11122
  #, fuzzy
11123
  #| msgid "Linkedin"
11124
  msgid "LinkedIn"
11125
  msgstr "Linkedin"
11126
 
11127
- #: app/features/speakers.php:163
11128
  #, fuzzy
11129
  #| msgid "Insert -1 for unlimited usage"
11130
  msgid "Insert URL of LinkedIn"
11131
  msgstr "Voer -1 in voor onbeperkt gebruik"
11132
 
11133
- #: app/features/speakers.php:168 app/features/speakers.php:225
11134
  #, fuzzy
11135
  #| msgid "Twitter"
11136
  msgid "Twitter Page"
11137
  msgstr "Twitter"
11138
 
11139
- #: app/features/speakers.php:171 app/features/speakers.php:226
11140
  #, fuzzy
11141
  #| msgid "Insert -1 for unlimited usage"
11142
  msgid "Insert URL of Twitter Page"
11143
  msgstr "Voer -1 in voor onbeperkt gebruik"
11144
 
11145
- #: app/features/speakers.php:222
11146
  #, fuzzy
11147
  #| msgid "Insert -1 for unlimited usage"
11148
  msgid "Insert URL of linkedin"
11149
  msgstr "Voer -1 in voor onbeperkt gebruik"
11150
 
11151
- #: app/features/speakers.php:347
11152
  msgid "Sorry, You must insert speaker name!"
11153
  msgstr ""
11154
 
11155
- #: app/features/speakers.php:396
11156
  msgid ""
11157
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11158
  "section and speaker widget section!"
@@ -11240,69 +11234,69 @@ msgctxt "plugin link"
11240
  msgid "Upgrade to Pro Version"
11241
  msgstr ""
11242
 
11243
- #: app/libraries/factory.php:234
11244
  msgctxt "plugin link"
11245
  msgid "Settings"
11246
  msgstr "Instellingen"
11247
 
11248
- #: app/libraries/factory.php:239
11249
  msgctxt "plugin link"
11250
  msgid "Upgrade"
11251
  msgstr ""
11252
 
11253
- #: app/libraries/factory.php:393
11254
  msgid "day"
11255
  msgstr "dag"
11256
 
11257
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11258
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11259
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11260
  msgid "days"
11261
  msgstr "dagen"
11262
 
11263
- #: app/libraries/factory.php:395
11264
  msgid "hour"
11265
  msgstr "uur"
11266
 
11267
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11268
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11269
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11270
  msgid "hours"
11271
  msgstr "uren"
11272
 
11273
- #: app/libraries/factory.php:397
11274
  msgid "minute"
11275
  msgstr "minuut"
11276
 
11277
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11278
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11279
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11280
  msgid "minutes"
11281
  msgstr "minuten"
11282
 
11283
- #: app/libraries/factory.php:399
11284
  msgid "second"
11285
  msgstr "seconde"
11286
 
11287
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11288
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11289
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11290
  msgid "seconds"
11291
  msgstr "secondes"
11292
 
11293
- #: app/libraries/factory.php:477
11294
  msgid "MEC Single Sidebar"
11295
  msgstr ""
11296
 
11297
- #: app/libraries/factory.php:478
11298
  msgid "Custom sidebar for single and modal page of MEC."
11299
  msgstr ""
11300
 
11301
- #: app/libraries/factory.php:1199
11302
  msgid "Notice:"
11303
  msgstr ""
11304
 
11305
- #: app/libraries/factory.php:1200
11306
  msgid "This update includes only bug fixes."
11307
  msgstr ""
11308
 
@@ -11460,12 +11454,6 @@ msgstr "Shortcode"
11460
  msgid "%s Form"
11461
  msgstr ""
11462
 
11463
- #: app/libraries/main.php:689
11464
- #, fuzzy
11465
- #| msgid "Support"
11466
- msgid "MEC Cart"
11467
- msgstr "Support"
11468
-
11469
  #: app/libraries/main.php:726
11470
  msgid "Only For Bookers"
11471
  msgstr ""
@@ -12244,12 +12232,7 @@ msgstr "Support forum"
12244
  msgid "End at: %s - %s"
12245
  msgstr ""
12246
 
12247
- #: app/libraries/skins.php:1755
12248
- #, php-format
12249
- msgid "Every %s"
12250
- msgstr ""
12251
-
12252
- #: app/libraries/skins.php:1756
12253
  #, fuzzy
12254
  #| msgid "Repeat"
12255
  msgid "Repeating Event"
@@ -12734,6 +12717,11 @@ msgstr ""
12734
  msgid "http://webnus.net"
12735
  msgstr ""
12736
 
 
 
 
 
 
12737
  #, fuzzy
12738
  #~ msgid "MEC Transaction ID: %s, Event Title: %s"
12739
  #~ msgstr "Transactie ID"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
176
  msgstr "Geannuleerd"
177
 
178
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
179
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
180
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
181
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
182
  #: app/features/mec/notifications.php:1922
214
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
215
  #: app/features/autoemails.php:60 app/features/events.php:606
216
  #: app/features/events.php:2650 app/features/events.php:2717
217
+ #: app/features/events.php:2806 app/features/events.php:4445
218
+ #: app/features/fes.php:280 app/features/fes/form.php:812
219
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
220
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
221
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
222
  #: app/features/organizers.php:112 app/features/organizers.php:153
223
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
224
+ #: app/features/speakers.php:211 app/libraries/main.php:653
225
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
226
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
227
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
381
  #: app/features/events.php:2808 app/features/mec/booking.php:800
382
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
383
  #: app/features/organizers.php:104 app/features/organizers.php:149
384
+ #: app/features/speakers.php:126 app/features/speakers.php:207
385
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
386
  msgid "Tel"
387
  msgstr "Tel"
388
 
528
  msgid "Agreement"
529
  msgstr ""
530
 
531
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
532
+ #, php-format
533
+ msgid "I agree with %s"
534
+ msgstr ""
535
+
536
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
537
  #, php-format
538
  msgid "Instead of %s, the page title with a link will be show."
710
  #: app/features/events.php:1843 app/features/events.php:2014
711
  #: app/features/events.php:2029 app/features/events.php:2271
712
  #: app/features/events.php:2283 app/features/events.php:2476
713
+ #: app/features/events.php:2513 app/features/fes/form.php:460
714
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
715
  #: app/features/locations.php:341 app/features/mec/booking.php:113
716
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
717
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
788
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
789
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
790
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
791
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
792
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
793
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
794
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
795
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
796
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
955
 
956
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
957
  #: app/features/events.php:432 app/features/events.php:1283
958
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
959
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
960
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
961
  #: app/skins/single.php:1126 app/skins/single/default.php:213
962
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1034
  msgstr ""
1035
 
1036
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1037
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1038
  #: app/features/labels.php:61 app/features/labels.php:227
1039
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1040
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1070
  msgstr "Verberg locatie"
1071
 
1072
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1073
+ #: app/features/events.php:3876 app/features/events.php:4190
1074
  #: app/features/locations.php:58 app/features/locations.php:267
1075
  #: app/features/locations.php:329 app/features/locations.php:331
1076
  #: app/features/locations.php:340
1090
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1091
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1092
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1093
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1094
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1095
  #: app/features/search.php:97 app/libraries/main.php:3020
1096
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1104
 
1105
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1106
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1107
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1108
  #: app/skins/single.php:1406 app/skins/single.php:1473
1109
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1110
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1127
 
1128
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1129
  #: app/features/events.php:1519 app/features/events.php:1532
1130
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1131
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1132
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1133
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1176
 
1177
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1178
  #: app/features/events.php:431 app/features/events.php:3877
1179
+ #: app/features/events.php:4192 app/features/events.php:4193
1180
+ #: app/features/events.php:4194
1181
  #: app/features/mec/meta_boxes/display_options.php:1660
1182
  #: app/features/mec/meta_boxes/search_form.php:80
1183
  #: app/features/mec/meta_boxes/search_form.php:168
1192
  #: app/features/mec/meta_boxes/search_form.php:983
1193
  #: app/features/mec/meta_boxes/search_form.php:1070
1194
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1195
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1196
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1197
  #: app/features/organizers.php:58 app/features/organizers.php:208
1198
  #: app/features/organizers.php:277 app/features/organizers.php:279
1199
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1200
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1201
  #: app/features/popup/settings.php:263 app/features/search.php:103
1202
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1203
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1319
  #: app/features/booking/calendar_novel.php:145
1320
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1321
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1322
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1323
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1324
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1325
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1326
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1386
 
1387
  #: app/features/autoemails.php:74 app/features/events.php:230
1388
  #: app/features/labels.php:72 app/features/locations.php:70
1389
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1390
  #: app/features/tag.php:70
1391
  #, php-format
1392
  msgid "Edit %s"
1448
  msgid "Go to events page"
1449
  msgstr "Laat Google Maps op evenementen pagina zien"
1450
 
1451
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1452
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1453
  #: app/features/wc.php:91 app/libraries/main.php:3072
1454
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1530
  msgid "Back to Cart"
1531
  msgstr "Ga terug naar evenementenlijst"
1532
 
1533
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1534
  #: app/features/mec/settings.php:907
1535
  msgid "Event Color"
1536
  msgstr "Evenement kleur"
1542
  msgstr "Evenement kleur"
1543
 
1544
  #: app/features/contextual.php:55 app/features/mec.php:546
1545
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1546
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1547
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1548
  #: app/libraries/main.php:738
1549
  msgid "Settings"
1657
  msgstr ""
1658
 
1659
  #: app/features/contextual.php:166 app/features/events.php:1298
1660
+ #: app/features/fes/form.php:885
1661
  msgid "Currency Options"
1662
  msgstr "Valuta opties"
1663
 
1750
  msgstr ""
1751
 
1752
  #: app/features/dlfile.php:297 app/features/events.php:3874
1753
+ #: app/features/events.php:4183 app/features/events.php:4734
1754
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1755
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1756
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1757
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1760
  msgstr "Titel"
1761
 
1762
  #: app/features/dlfile.php:301 app/features/events.php:1988
1763
+ #: app/features/events.php:2248 app/features/events.php:4184
1764
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1765
  #: app/libraries/hourlyschedule.php:152
1766
  msgid "Description"
1807
  msgstr "Voor $10"
1808
 
1809
  #: app/features/emails/details.php:35 app/features/events.php:1223
1810
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1811
  msgid "After"
1812
  msgstr "Na"
1813
 
1818
  msgstr "Veel voorkomende tijd"
1819
 
1820
  #: app/features/emails/details.php:40 app/features/events.php:192
1821
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1822
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1823
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1824
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1839
  msgid "Add Event"
1840
  msgstr "Evenement toevoegen"
1841
 
1842
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1843
  msgid "Add New Event"
1844
  msgstr "Voeg nieuw evenement toe"
1845
 
1846
+ #: app/features/events.php:196 app/features/ix.php:4614
1847
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1848
  #: app/skins/map/tpl.php:93
1849
  msgid "No events found!"
1854
  msgstr ""
1855
 
1856
  #: app/features/events.php:199 app/features/fes/list.php:100
1857
+ #: app/features/popup/event.php:259
1858
  msgid "View Event"
1859
  msgstr "Bekijk evenement"
1860
 
1863
  msgstr "Geen evenementen gevonden in de prullenbak."
1864
 
1865
  #: app/features/events.php:219 app/features/events.php:3831
1866
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1867
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1868
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1869
  #: app/libraries/main.php:7619
1872
 
1873
  #: app/features/events.php:229 app/features/labels.php:71
1874
  #: app/features/locations.php:69 app/features/organizers.php:69
1875
+ #: app/features/speakers.php:77 app/features/tag.php:69
1876
  #, php-format
1877
  msgid "All %s"
1878
  msgstr ""
1879
 
1880
  #: app/features/events.php:231 app/features/labels.php:73
1881
  #: app/features/locations.php:71 app/features/organizers.php:71
1882
+ #: app/features/speakers.php:79 app/features/tag.php:71
1883
  #, php-format
1884
  msgid "View %s"
1885
  msgstr ""
1886
 
1887
  #: app/features/events.php:232 app/features/labels.php:74
1888
  #: app/features/locations.php:72 app/features/organizers.php:72
1889
+ #: app/features/speakers.php:80 app/features/tag.php:72
1890
  #, php-format
1891
  msgid "Update %s"
1892
  msgstr ""
1893
 
1894
  #: app/features/events.php:233 app/features/labels.php:75
1895
  #: app/features/locations.php:73 app/features/organizers.php:73
1896
+ #: app/features/speakers.php:81 app/features/tag.php:73
1897
  #, php-format
1898
  msgid "Add New %s"
1899
  msgstr ""
1900
 
1901
  #: app/features/events.php:234 app/features/labels.php:76
1902
  #: app/features/locations.php:74 app/features/organizers.php:74
1903
+ #: app/features/speakers.php:82 app/features/tag.php:74
1904
  #, php-format
1905
  msgid "New %s Name"
1906
  msgstr ""
1907
 
1908
  #: app/features/events.php:235 app/features/labels.php:77
1909
  #: app/features/locations.php:75 app/features/organizers.php:75
1910
+ #: app/features/speakers.php:83 app/features/tag.php:75
1911
  #, php-format
1912
  msgid "Popular %s"
1913
  msgstr ""
1914
 
1915
  #: app/features/events.php:236 app/features/labels.php:78
1916
  #: app/features/locations.php:76 app/features/organizers.php:76
1917
+ #: app/features/speakers.php:84 app/features/tag.php:76
1918
  #, php-format
1919
  msgid "Search %s"
1920
  msgstr ""
1944
  #: app/features/events.php:278 app/features/events.php:336
1945
  #: app/features/locations.php:161 app/features/locations.php:213
1946
  #: app/features/organizers.php:133 app/features/organizers.php:164
1947
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1948
  msgid "Upload/Add image"
1949
  msgstr "Upload/toevoegen afbeelding"
1950
 
1953
  #: app/features/locations.php:393 app/features/locations.php:400
1954
  #: app/features/organizers.php:134 app/features/organizers.php:165
1955
  #: app/features/organizers.php:316 app/features/organizers.php:323
1956
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1957
  msgid "Remove image"
1958
  msgstr "Verwijder afbeelding"
1959
 
1973
  msgid "Date And Time"
1974
  msgstr "Datum en tijd"
1975
 
1976
+ #: app/features/events.php:425 app/features/fes/form.php:386
1977
  msgid "Event Repeating"
1978
  msgstr "Terugkerend evenement"
1979
 
2016
  msgstr ""
2017
 
2018
  #: app/features/events.php:605 app/features/events.php:2641
2019
+ #: app/features/events.php:4442 app/features/fes.php:280
2020
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2021
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2022
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2023
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2024
  msgid "Name"
2025
  msgstr "Naam"
2030
  "overwrite in the next import from Google."
2031
  msgstr ""
2032
 
2033
+ #: app/features/events.php:619 app/features/fes/form.php:284
2034
  msgid "Date and Time"
2035
  msgstr "Datum en tijd"
2036
 
2037
  #: app/features/events.php:622 app/features/events.php:626
2038
+ #: app/features/events.php:3878 app/features/events.php:4185
2039
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2040
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2041
  #: app/features/mec/meta_boxes/display_options.php:57
2042
  #: app/features/mec/meta_boxes/display_options.php:312
2054
  #: app/features/mec/meta_boxes/display_options.php:2347
2055
  #: app/features/mec/meta_boxes/display_options.php:2478
2056
  #: app/features/mec/meta_boxes/display_options.php:2584
2057
+ #: app/features/popup/event.php:79
2058
  msgid "Start Date"
2059
  msgstr "Begindatum"
2060
 
2061
  #: app/features/events.php:642 app/features/events.php:646
2062
+ #: app/features/events.php:3879 app/features/events.php:4187
2063
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2064
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2065
  #: app/features/mec/meta_boxes/display_options.php:73
2066
  #: app/features/mec/meta_boxes/display_options.php:328
2069
  #: app/features/mec/meta_boxes/display_options.php:788
2070
  #: app/features/mec/meta_boxes/display_options.php:1618
2071
  #: app/features/mec/meta_boxes/display_options.php:2363
2072
+ #: app/features/popup/event.php:96
2073
  msgid "End Date"
2074
  msgstr "Einddatum"
2075
 
2076
+ #: app/features/events.php:669 app/features/fes/form.php:326
2077
+ #: app/features/popup/event.php:113
2078
  #, fuzzy
2079
  #| msgid "All Day Event"
2080
  msgid "All-day Event"
2081
  msgstr "Hele dag"
2082
 
2083
+ #: app/features/events.php:679 app/features/fes/form.php:329
2084
  msgid "Hide Event Time"
2085
  msgstr "Verberg de tijd"
2086
 
2087
+ #: app/features/events.php:689 app/features/fes/form.php:332
2088
  msgid "Hide Event End Time"
2089
  msgstr "Verberg de eindtijd"
2090
 
2091
  #: app/features/events.php:694 app/features/events.php:698
2092
+ #: app/features/fes/form.php:336
2093
  msgid "Notes on the time"
2094
  msgstr ""
2095
 
2096
+ #: app/features/events.php:699 app/features/fes/form.php:337
2097
  #, fuzzy
2098
  #| msgid ""
2099
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2105
  "De opmerking zal naast de evenementen tijd komen te staan in de kalender. U "
2106
  "kunt hier de tijdzone bijvoorbeeld toevoegen."
2107
 
2108
+ #: app/features/events.php:711 app/features/fes/form.php:344
2109
  #, fuzzy
2110
  #| msgid "Time"
2111
  msgid "Timezone"
2116
  #: app/features/events.php:1793 app/features/events.php:1813
2117
  #: app/features/events.php:1868 app/features/events.php:2438
2118
  #: app/features/events.php:2561 app/features/events.php:2672
2119
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2120
  msgid "Inherit from global options"
2121
  msgstr "Standaardinstellingen gebruiken"
2122
 
2123
  #: app/features/events.php:725 app/features/events.php:728
2124
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2125
  #: app/features/mec/settings.php:858
2126
  #, fuzzy
2127
  msgid "Countdown Method"
2128
  msgstr "Countdown opties"
2129
 
2130
+ #: app/features/events.php:730 app/features/fes/form.php:363
2131
  #, fuzzy
2132
  #| msgid "Start Date"
2133
  msgid "Count to Event Start"
2134
  msgstr "Begindatum"
2135
 
2136
+ #: app/features/events.php:731 app/features/fes/form.php:364
2137
  #, fuzzy
2138
  #| msgid "No event found!"
2139
  msgid "Count to Event End"
2140
  msgstr "Geen evenementen gevonden!"
2141
 
2142
+ #: app/features/events.php:737 app/features/fes/form.php:371
2143
  #: app/modules/weather/darksky.php:57
2144
  msgid "Visibility"
2145
  msgstr ""
2146
 
2147
+ #: app/features/events.php:740 app/features/fes/form.php:374
2148
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2149
  #, fuzzy
2150
  #| msgid "Event Cost"
2151
  msgid "Event Visibility"
2152
  msgstr "Evenements kosten"
2153
 
2154
+ #: app/features/events.php:741 app/features/fes/form.php:375
2155
  #, fuzzy
2156
  #| msgid "Booking"
2157
  msgid "Show on Shortcodes"
2158
  msgstr "Boeking"
2159
 
2160
+ #: app/features/events.php:742 app/features/fes/form.php:376
2161
  #, fuzzy
2162
  #| msgid "Shortcodes"
2163
  msgid "Hide on Shortcodes"
2164
  msgstr "Shortcodes"
2165
 
2166
+ #: app/features/events.php:749 app/features/fes/form.php:384
2167
  #, fuzzy
2168
  #| msgid "Repeat"
2169
  msgid "Repeating"
2175
  msgid "Event Repeating (Recurring events)"
2176
  msgstr "Terugkerend evenement"
2177
 
2178
+ #: app/features/events.php:762 app/features/fes/form.php:390
2179
  msgid "Repeats"
2180
  msgstr "Terugkerend"
2181
 
2182
+ #: app/features/events.php:770 app/features/fes/form.php:392
2183
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2184
+ #: app/skins/default_full_calendar/tpl.php:79
2185
  #: app/skins/full_calendar/tpl.php:140
2186
  msgid "Daily"
2187
  msgstr "Dagelijks"
2188
 
2189
+ #: app/features/events.php:777 app/features/fes/form.php:393
2190
+ #: app/libraries/skins.php:1772
2191
  msgid "Every Weekday"
2192
  msgstr "Elke doordeweekse dag"
2193
 
2194
+ #: app/features/events.php:784 app/features/fes/form.php:394
2195
+ #: app/libraries/skins.php:1769
2196
  msgid "Every Weekend"
2197
  msgstr "Elk weekend"
2198
 
2199
+ #: app/features/events.php:791 app/features/fes/form.php:395
2200
  #, fuzzy
2201
  msgid "Certain Weekdays"
2202
  msgstr "Elke doordeweekse dag"
2203
 
2204
+ #: app/features/events.php:798 app/features/fes/form.php:396
2205
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2206
  #: app/skins/full_calendar/tpl.php:139
2207
  msgid "Weekly"
2208
  msgstr "Wekelijks"
2209
 
2210
+ #: app/features/events.php:805 app/features/fes/form.php:397
2211
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2212
+ #: app/skins/default_full_calendar/tpl.php:77
2213
  #: app/skins/full_calendar/tpl.php:138
2214
  msgid "Monthly"
2215
  msgstr "Maandelijks"
2216
 
2217
+ #: app/features/events.php:812 app/features/fes/form.php:398
2218
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2219
+ #: app/skins/default_full_calendar/tpl.php:76
2220
  #: app/skins/full_calendar/tpl.php:137
2221
  msgid "Yearly"
2222
  msgstr "Jaarlijks"
2223
 
2224
+ #: app/features/events.php:819 app/features/fes/form.php:399
2225
  #, fuzzy
2226
  msgid "Custom Days"
2227
  msgstr "Custom stijlen"
2228
 
2229
+ #: app/features/events.php:826 app/features/fes/form.php:400
2230
  #, fuzzy
2231
  #| msgid "Advanced Method"
2232
  msgid "Advanced"
2233
  msgstr "Geavanceerde weergave"
2234
 
2235
+ #: app/features/events.php:831 app/features/fes/form.php:404
2236
  msgid "Repeat Interval"
2237
  msgstr "Herhalingsinterval"
2238
 
2239
+ #: app/features/events.php:833 app/features/fes/form.php:405
2240
  msgid "Repeat interval"
2241
  msgstr "Herhalingsinterval"
2242
 
2243
+ #: app/features/events.php:837 app/features/fes/form.php:408
2244
  #, fuzzy
2245
  msgid "Week Days"
2246
  msgstr "Week %s"
2253
 
2254
  #: app/features/events.php:860 app/features/events.php:2101
2255
  #: app/features/events.php:2129 app/features/events.php:2343
2256
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2257
  #: app/features/ix/import_g_calendar.php:51
2258
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2259
  #: app/libraries/skins.php:1389
2264
  #: app/features/events.php:2085 app/features/events.php:2167
2265
  #: app/features/events.php:2332 app/features/events.php:2376
2266
  #: app/features/events.php:2449 app/features/events.php:2566
2267
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2268
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2269
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2270
  msgid "Add"
2271
  msgstr "Toevoegen"
2272
 
2273
+ #: app/features/events.php:877 app/features/fes/form.php:456
2274
  #, fuzzy
2275
  msgid "Custom Days Repeating"
2276
  msgstr "Custom stijlen"
2277
 
2278
+ #: app/features/events.php:880 app/features/fes/form.php:459
2279
  msgid ""
2280
  "Add certain days to event occurrence dates. If you have a single day event, "
2281
  "start and end dates should be the same, If you have a multiple day event, "
2284
 
2285
  #: app/features/events.php:891 app/features/events.php:2105
2286
  #: app/features/events.php:2133 app/features/events.php:2347
2287
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2288
  msgid "End"
2289
  msgstr ""
2290
 
2291
+ #: app/features/events.php:968 app/features/fes/form.php:532
2292
  #, fuzzy
2293
  #| msgid "First name"
2294
  msgid "First"
2295
  msgstr "Voornaam"
2296
 
2297
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2298
  #, fuzzy
2299
  #| msgid "second"
2300
  msgid "Second"
2301
  msgstr "seconde"
2302
 
2303
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2304
  msgid "Third"
2305
  msgstr ""
2306
 
2307
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2308
  msgid "Fourth"
2309
  msgstr ""
2310
 
2311
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2312
  #, fuzzy
2313
  #| msgid "Last name"
2314
  msgid "Last"
2315
  msgstr "Achternaam"
2316
 
2317
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2318
  msgid "Ends Repeat"
2319
  msgstr "Terugkerend evenement stopt"
2320
 
2321
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2322
  msgid "Never"
2323
  msgstr "Nooit"
2324
 
2325
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2326
  msgid "On"
2327
  msgstr "Op"
2328
 
2329
  #: app/features/events.php:1227 app/features/events.php:1231
2330
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2331
  msgid "Occurrences times"
2332
  msgstr "Veel voorkomende tijd"
2333
 
2344
  "Bijvoorbeeld, als je 10 hebt ingevuld, zal het evenement na 2 herhalingen "
2345
  "stoppen."
2346
 
2347
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2348
  msgid "Show only one occurrence of this event"
2349
  msgstr ""
2350
 
2351
+ #: app/features/events.php:1277 app/features/events.php:4195
2352
+ #: app/features/fes/form.php:867
2353
  #: app/features/mec/meta_boxes/search_form.php:116
2354
  #: app/features/mec/meta_boxes/search_form.php:204
2355
  #: app/features/mec/meta_boxes/search_form.php:292
2373
  #: app/features/mec/notifications.php:1511
2374
  #: app/features/mec/notifications.php:1628
2375
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2376
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2377
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2378
  #: app/widgets/single.php:122
2379
  msgid "Event Cost"
2380
  msgstr "Evenements kosten"
2381
 
2382
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2383
  msgid "Show the minimum price based on tickets"
2384
  msgstr ""
2385
 
2386
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2387
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2388
  #: app/libraries/main.php:646
2389
  msgid "Currency"
2390
  msgstr "Valuta"
2391
 
2392
  #: app/features/events.php:1310 app/features/events.php:1315
2393
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2394
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2395
  msgid "Currency Sign"
2396
  msgstr "Valutasymbool"
2397
 
2398
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2399
  #: app/features/mec/settings.php:600
2400
  msgid "Default value will be \"currency\" if you leave it empty."
2401
  msgstr "Standaardwaarde is \"currency\" als je het leeg laat."
2402
 
2403
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2404
  #: app/features/mec/settings.php:607
2405
  msgid "Currency Position"
2406
  msgstr "Valutasymbool-positie"
2407
 
2408
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2409
  #: app/features/mec/settings.php:610
2410
  #, fuzzy
2411
  #| msgid "Before $10"
2412
  msgid "$10 (Before)"
2413
  msgstr "Voor $10"
2414
 
2415
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2416
  #: app/features/mec/settings.php:611
2417
  msgid "$ 10 (Before with Space)"
2418
  msgstr ""
2419
 
2420
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2421
  #: app/features/mec/settings.php:612
2422
  #, fuzzy
2423
  #| msgid "After"
2424
  msgid "10$ (After)"
2425
  msgstr "Na"
2426
 
2427
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2428
  #: app/features/mec/settings.php:613
2429
  msgid "10 $ (After with Space)"
2430
  msgstr ""
2431
 
2432
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2433
  #: app/features/mec/settings.php:618
2434
  msgid "Thousand Separator"
2435
  msgstr "Duizendtalscheiding"
2436
 
2437
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2438
  #: app/features/mec/settings.php:624
2439
  msgid "Decimal Separator"
2440
  msgstr "Decimaalscheiding"
2441
 
2442
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2443
  #: app/features/mec/settings.php:634
2444
  msgid "No decimal"
2445
  msgstr "Geen decimaal"
2465
  msgid "Day 1"
2466
  msgstr ""
2467
 
2468
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2469
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2470
  #, fuzzy
2471
  msgid "Event Links"
2472
  msgstr "Evenement locatie"
2473
 
2474
  #: app/features/events.php:1501 app/features/events.php:1509
2475
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2476
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2477
  #: app/libraries/main.php:7649
2478
  #, fuzzy
2479
  msgid "Event Link"
2480
  msgstr "Evenement locatie"
2481
 
2482
  #: app/features/events.php:1504 app/features/events.php:1522
2483
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2484
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2485
  msgid "eg. http://yoursite.com/your-event"
2486
  msgstr "bijv. http://yoursite.com/your-event"
2487
 
2499
  msgid "URL Shortener"
2500
  msgstr ""
2501
 
2502
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2503
+ #: app/features/occurrences.php:530
2504
  #, fuzzy
2505
  msgid "More Information"
2506
  msgstr "Bevestiging"
2507
 
2508
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2509
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2510
  #: app/features/popup/shortcode.php:481
2511
  msgid "Current Window"
2512
  msgstr ""
2513
 
2514
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2515
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2516
  #: app/features/popup/shortcode.php:485
2517
  msgid "New Window"
2518
  msgstr ""
2519
 
2520
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2521
  #, fuzzy
2522
  msgid ""
2523
  "If you fill it, it will be shown in event details page as an optional link. "
2890
  msgstr "Ticket"
2891
 
2892
  #: app/features/events.php:1944 app/features/events.php:2211
2893
+ #: app/features/events.php:4182 app/features/fes.php:280
2894
  #: app/features/labels.php:183 app/features/locations.php:266
2895
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2896
  msgid "ID"
2897
  msgstr "ID"
2898
 
2901
  msgstr "Ticket naam"
2902
 
2903
  #: app/features/events.php:1956 app/features/events.php:2219
2904
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2905
  msgid "Start Time"
2906
  msgstr ""
2907
 
2908
  #: app/features/events.php:1970 app/features/events.php:2233
2909
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2910
  msgid "End Time"
2911
  msgstr ""
2912
 
2928
  #: app/features/events.php:2007 app/features/events.php:2011
2929
  #: app/features/events.php:2109 app/features/events.php:2136
2930
  #: app/features/events.php:2265 app/features/events.php:2268
2931
+ #: app/features/events.php:2349 app/features/events.php:4743
2932
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2933
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2934
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3094
  msgid "Fixed Fields"
3095
  msgstr "Verplicht veld"
3096
 
3097
+ #: app/features/events.php:2887 app/features/events.php:4737
3098
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3099
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3100
  msgid "Attendees"
3124
  msgstr ""
3125
 
3126
  #: app/features/events.php:3757 app/features/mec.php:1374
3127
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3128
  msgid "Upcoming Events"
3129
  msgstr ""
3130
 
3185
  msgstr ""
3186
 
3187
  #: app/features/events.php:4068 app/features/events.php:4069
3188
+ #: app/features/events.php:4295
3189
  msgid "Duplicate"
3190
  msgstr ""
3191
 
3192
+ #: app/features/events.php:4189
3193
  msgid "Link"
3194
  msgstr ""
3195
 
3196
+ #: app/features/events.php:4191 app/features/locations.php:111
3197
  #: app/features/locations.php:181 app/features/locations.php:268
3198
  #: app/features/mec/meta_boxes/search_form.php:108
3199
  #: app/features/mec/meta_boxes/search_form.php:196
3211
  msgid "Address"
3212
  msgstr "Adres"
3213
 
3214
+ #: app/features/events.php:4193
3215
  #, php-format
3216
  msgid "%s Tel"
3217
  msgstr ""
3218
 
3219
+ #: app/features/events.php:4194
3220
  #, php-format
3221
  msgid "%s Email"
3222
  msgstr ""
3223
 
3224
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3225
  #: app/features/mec/settings.php:876
3226
  msgid "Featured Image"
3227
  msgstr "Uitgelichte afbeelding"
3228
 
3229
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3230
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3231
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3232
  msgid "Tags"
3233
  msgstr "Tags"
3234
 
3235
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3236
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3237
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3238
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3239
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3240
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3241
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3243
  msgid "Speakers"
3244
  msgstr ""
3245
 
3246
+ #: app/features/events.php:4448 app/features/fes.php:280
3247
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3248
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3249
  #: app/libraries/main.php:7592
3250
  msgid "Ticket"
3251
  msgstr "Ticket"
3252
 
3253
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3254
  #, fuzzy
3255
  #| msgid "Verification"
3256
  msgid "Variations"
3257
  msgstr "Verificatie"
3258
 
3259
+ #: app/features/events.php:4466 app/features/fes.php:356
3260
  msgid "Unknown"
3261
  msgstr "Onbekend"
3262
 
3263
+ #: app/features/events.php:4494
3264
  msgid ""
3265
  "If you want to send an email, first select your attendees and then click in "
3266
  "the button below, please."
3267
  msgstr ""
3268
 
3269
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3270
  #, fuzzy
3271
  #| msgid "Email"
3272
  msgid "Send Email"
3273
  msgstr "Email"
3274
 
3275
+ #: app/features/events.php:4498
3276
  #, fuzzy
3277
  #| msgid "Attendees Form"
3278
  msgid "No Attendees Found!"
3279
  msgstr "Deelnemersformulier"
3280
 
3281
+ #: app/features/events.php:4800
3282
  #, fuzzy
3283
  #| msgid "No bookings found!"
3284
  msgid "No Bookings Found!"
3418
  msgid "The event published."
3419
  msgstr "Het evenement gepubliceerd."
3420
 
3421
+ #: app/features/fes/form.php:180
3422
  #, fuzzy
3423
  #| msgid "Go back to events list."
3424
  msgid "Go back to events list"
3425
  msgstr "Ga terug naar evenementenlijst"
3426
 
3427
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3428
  #: app/features/mec/settings.php:1171
3429
  msgid "Excerpt"
3430
  msgstr ""
3431
 
3432
+ #: app/features/fes/form.php:273
3433
  msgid "Optional Event Excerpt"
3434
  msgstr ""
3435
 
3436
+ #: app/features/fes/form.php:280
3437
  msgid ""
3438
  "This event is imported from Google calendar so if you modify it would "
3439
  "overwrite in the next import from Google."
3440
  msgstr ""
3441
 
3442
+ #: app/features/fes/form.php:409
3443
  #: app/features/mec/meta_boxes/display_options.php:1494
3444
  #: app/libraries/main.php:476
3445
  msgid "Monday"
3446
  msgstr ""
3447
 
3448
+ #: app/features/fes/form.php:410
3449
  #: app/features/mec/meta_boxes/display_options.php:1495
3450
  #: app/libraries/main.php:476
3451
  msgid "Tuesday"
3452
  msgstr ""
3453
 
3454
+ #: app/features/fes/form.php:411
3455
  #: app/features/mec/meta_boxes/display_options.php:1496
3456
  #: app/libraries/main.php:476
3457
  msgid "Wednesday"
3458
  msgstr ""
3459
 
3460
+ #: app/features/fes/form.php:412
3461
  #: app/features/mec/meta_boxes/display_options.php:1497
3462
  #: app/libraries/main.php:476
3463
  msgid "Thursday"
3464
  msgstr ""
3465
 
3466
+ #: app/features/fes/form.php:413
3467
  #: app/features/mec/meta_boxes/display_options.php:1498
3468
  #: app/libraries/main.php:476
3469
  msgid "Friday"
3470
  msgstr ""
3471
 
3472
+ #: app/features/fes/form.php:414
3473
  #: app/features/mec/meta_boxes/display_options.php:1499
3474
  #: app/libraries/main.php:476
3475
  msgid "Saturday"
3476
  msgstr ""
3477
 
3478
+ #: app/features/fes/form.php:415
3479
  #: app/features/mec/meta_boxes/display_options.php:1493
3480
  #: app/libraries/main.php:476
3481
  msgid "Sunday"
3482
  msgstr ""
3483
 
3484
+ #: app/features/fes/form.php:768
3485
  msgid ""
3486
  "The event will finish after certain repeats. For example if you set it to "
3487
  "10, the event will finish after 10 repeats."
3490
  "Bijvoorbeeld, als je 10 hebt ingevuld, zal het evenement na 2 herhalingen "
3491
  "stoppen."
3492
 
3493
+ #: app/features/fes/form.php:792
3494
  msgid "Note to reviewer"
3495
  msgstr ""
3496
 
3497
+ #: app/features/fes/form.php:810
3498
  msgid "User Data"
3499
  msgstr ""
3500
 
3501
+ #: app/features/fes/form.php:813
3502
  msgid "eg. yourname@gmail.com"
3503
  msgstr ""
3504
 
3505
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3506
+ #: app/features/popup/event.php:190
3507
  msgid "eg. John Smith"
3508
  msgstr "bijv. John Smith"
3509
 
3510
+ #: app/features/fes/form.php:835
3511
  #, fuzzy
3512
  msgid ""
3513
  "If you fill it, it will replace the default event page link. Insert full "
3516
  "Als je wilt, kan je hier een link naar een pagina toevoegen die niet naar de "
3517
  "standaard evenementen pagina gaat. Vul de volledige link in: http(s)://"
3518
 
3519
+ #: app/features/fes/form.php:958
3520
  msgid "Remove Image"
3521
  msgstr "Verwijder afbeelding"
3522
 
3523
+ #: app/features/fes/form.php:1048
3524
  msgid "Insert your desired tags, comma separated."
3525
  msgstr "Vul de gewenste tags in, komma gescheiden."
3526
 
3527
+ #: app/features/fes/form.php:1070
3528
  #, fuzzy
3529
  msgid "Speakers Names"
3530
  msgstr "Zoek locaties"
3531
 
3532
+ #: app/features/fes/form.php:1071
3533
  msgid "Separate names with commas: Justin, Chris"
3534
  msgstr ""
3535
 
3536
+ #: app/features/fes/form.php:1116
3537
  #, fuzzy, php-format
3538
  #| msgid "Please %s/%s in order to submit new events."
3539
  msgid "I accept the %s in order to submit an event."
3540
  msgstr "Gelieve %s/%s om nieuwe evenementen in te dienen."
3541
 
3542
+ #: app/features/fes/form.php:1116
3543
  msgid "Privacy Policy"
3544
  msgstr ""
3545
 
3546
+ #: app/features/fes/form.php:1118
3547
  #, fuzzy
3548
  #| msgid "Please %s/%s in order to submit new events."
3549
  msgid "I accept the Privacy Policy in order to submit an event."
3550
  msgstr "Gelieve %s/%s om nieuwe evenementen in te dienen."
3551
 
3552
+ #: app/features/fes/form.php:1124
3553
  #, fuzzy
3554
  #| msgid "View Event"
3555
  msgid "Submit Event"
3634
  msgid "The events are imported successfully!"
3635
  msgstr ""
3636
 
3637
+ #: app/features/ix.php:1342
3638
  msgid "Third Party plugin is not installed and activated!"
3639
  msgstr ""
3640
 
3641
+ #: app/features/ix.php:1366
3642
  msgid "Third Party plugin is invalid!"
3643
  msgstr ""
3644
 
3645
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3646
  msgid "API key and Calendar ID are required!"
3647
  msgstr ""
3648
 
3649
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3650
  #, fuzzy
3651
  #| msgid "Please select some tickets!"
3652
  msgid "Please select events to import!"
3653
  msgstr "Selecteer een aantal tickets!"
3654
 
3655
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3656
  msgid "API key and Group URL are required!"
3657
  msgstr ""
3658
 
3659
+ #: app/features/ix.php:4137
3660
  msgid "Check at Meetup"
3661
  msgstr ""
3662
 
3663
+ #: app/features/ix.php:4303
3664
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3665
  msgstr ""
3666
 
3667
+ #: app/features/ix.php:4326
3668
  #, php-format
3669
  msgid "All seems good! Please click %s to authenticate your app."
3670
  msgstr ""
3671
 
3672
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3673
  #: app/features/mec/settings.php:1496
3674
  msgid "here"
3675
  msgstr ""
3676
 
3677
+ #: app/features/ix.php:4381
3678
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3679
  msgstr ""
3680
 
3681
+ #: app/features/ix.php:4543
3682
  #, fuzzy, php-format
3683
  #| msgid "Your booking successfully verified."
3684
  msgid "%s events added to Google Calendar with success."
3685
  msgstr "Uw boeking is succesvol geverifieerd."
3686
 
3687
+ #: app/features/ix.php:4544
3688
  #, php-format
3689
  msgid "%s Updated previously added events."
3690
  msgstr ""
3691
 
3692
+ #: app/features/ix.php:4545
3693
  #, php-format
3694
  msgid "%s events failed to add for following reasons: %s"
3695
  msgstr ""
3696
 
3697
+ #: app/features/ix.php:4577
3698
  msgid "Please insert your Facebook page's link."
3699
  msgstr ""
3700
 
3701
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3702
  msgid ""
3703
  "We were not able to recognize your Facebook page. Please check again and "
3704
  "provide a valid link."
3705
  msgstr ""
3706
 
3707
+ #: app/features/ix.php:4625
3708
  msgid "Please insert your facebook page's link."
3709
  msgstr ""
3710
 
3907
  msgid "Add to Google Calendar"
3908
  msgstr ""
3909
 
3910
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3911
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3912
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3913
  #: app/features/mec/single.php:604
4021
  msgid "Import all of your Facebook events into MEC."
4022
  msgstr ""
4023
 
4024
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4025
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4026
  msgid "Documentation"
4027
  msgstr "Documentatie"
4304
  msgstr ""
4305
 
4306
  #: app/features/labels.php:79 app/features/locations.php:77
4307
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4308
  #: app/features/tag.php:77
4309
  #, fuzzy, php-format
4310
  #| msgid "Search Coupons"
4312
  msgstr "Zoek coupons"
4313
 
4314
  #: app/features/labels.php:80 app/features/locations.php:78
4315
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4316
  #: app/features/tag.php:78
4317
  #, fuzzy, php-format
4318
  #| msgid "No events found!"
4358
  msgstr ""
4359
 
4360
  #: app/features/labels.php:186 app/features/locations.php:269
4361
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4362
  #: app/modules/booking/steps/tickets.php:172
4363
  msgid "Count"
4364
  msgstr "Aantal keer gebruikt"
4374
  msgstr ""
4375
 
4376
  #: app/features/locations.php:59 app/features/mec.php:526
4377
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4378
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4379
  #: app/libraries/main.php:7623
4380
  msgid "Locations"
4385
  msgstr "Voer de locatie adres in"
4386
 
4387
  #: app/features/locations.php:131 app/features/locations.php:197
4388
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4389
  msgid "Latitude"
4390
  msgstr "Latitude"
4391
 
4396
  msgstr "Geo latitude (Optioneel)"
4397
 
4398
  #: app/features/locations.php:139 app/features/locations.php:201
4399
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4400
  msgid "Longitude"
4401
  msgstr "Longitude"
4402
 
4421
 
4422
  #: app/features/locations.php:156 app/features/locations.php:210
4423
  #: app/features/organizers.php:128 app/features/organizers.php:161
4424
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4425
  msgid "Thumbnail"
4426
  msgstr "Thumbnail"
4427
 
4428
  #: app/features/locations.php:329 app/features/occurrences.php:460
4429
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4430
  #, php-format
4431
  msgid "Event Main %s"
4432
  msgstr ""
4433
 
4434
  #: app/features/locations.php:332 app/features/occurrences.php:464
4435
+ #: app/features/popup/event.php:121
4436
  msgid "Hide location"
4437
  msgstr "Verberg locatie"
4438
 
4439
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4440
  msgid "Insert a new location"
4441
  msgstr "Voeg een nieuwe locatie in"
4442
 
4444
  msgid "Choose one of saved locations or insert new one below."
4445
  msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
4446
 
4447
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4448
  msgid "Location Name"
4449
  msgstr "Locatie naam"
4450
 
4451
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4452
  msgid "eg. City Hall"
4453
  msgstr "bijv. Gemeentehuis"
4454
 
4455
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4456
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4457
  msgid "Event Location"
4458
  msgstr "Evenement locatie"
4459
 
4460
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4461
  msgid "eg. City hall, Manhattan, New York"
4462
  msgstr "bijv. Gemeentehuis, Amsterdam, Noord-Holland"
4463
 
4464
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4465
  #, fuzzy
4466
  #| msgid "Longitude"
4467
  msgid "Latitude/Longitude"
4468
  msgstr "Longitude"
4469
 
4470
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4471
  msgid ""
4472
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4473
  "to convert the location address to geopoint, Latitude and Longitude are the "
4476
  "the location on the map to find lat long coordinates."
4477
  msgstr ""
4478
 
4479
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4480
  msgid "Get Latitude and Longitude"
4481
  msgstr ""
4482
 
4483
  #: app/features/locations.php:392 app/features/organizers.php:315
4484
+ #: app/features/popup/event.php:209
4485
  msgid "Choose image"
4486
  msgstr "Kies afbeelding"
4487
 
4488
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4489
+ #: app/features/popup/event.php:140
4490
  msgid "Don't show map in single event page"
4491
  msgstr "Verberg de map op de pagina van het evenement"
4492
 
4493
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4494
  #: app/libraries/main.php:7654
4495
  #, fuzzy
4496
  #| msgid "Search Locations"
4497
  msgid "Other Locations"
4498
  msgstr "Zoek locaties"
4499
 
4500
+ #: app/features/locations.php:413
4501
  msgid ""
4502
  "You can select extra locations in addition to main location if you like."
4503
  msgstr ""
4575
  msgid "Support"
4576
  msgstr "Support"
4577
 
4578
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4579
  #: app/features/mec/meta_boxes/filter.php:71
4580
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4581
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4583
  msgstr "Organisatoren"
4584
 
4585
  #: app/features/mec.php:536 app/features/mec.php:596
4586
+ #: app/features/mec/dashboard.php:218
4587
  msgid "Shortcodes"
4588
  msgstr "Shortcodes"
4589
 
4799
  msgstr ""
4800
 
4801
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4802
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4803
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4804
  msgid "Version"
4805
  msgstr "Versie"
4824
  msgstr "Zoek coupons"
4825
 
4826
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4827
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4828
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4829
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4830
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4831
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4832
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5412
  msgid "It applies only to the orders that are related to MEC."
5413
  msgstr ""
5414
 
5415
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5416
  msgid "After Add to Cart"
5417
  msgstr ""
5418
 
5419
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5420
  #, fuzzy
5421
  #| msgid "Get Direction"
5422
  msgid "Redirect to Cart"
5423
  msgstr "Routebeschrijving"
5424
 
5425
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5426
  #, fuzzy
5427
  #| msgid "Get Direction"
5428
  msgid "Redirect to Checkout"
5429
  msgstr "Routebeschrijving"
5430
 
5431
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5432
  msgid "Optional View Cart Button"
5433
  msgstr ""
5434
 
5435
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5436
  msgid "Optional Checkout Button"
5437
  msgstr ""
5438
 
5490
  "(Stripe) got canceled."
5491
  msgstr ""
5492
 
5493
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5494
+ #, fuzzy
5495
+ #| msgid "Support"
5496
+ msgid "MEC Cart"
5497
+ msgstr "Support"
5498
+
5499
+ #: app/features/mec/booking.php:1118
5500
  msgid "Use MEC Cart System"
5501
  msgstr ""
5502
 
5503
+ #: app/features/mec/booking.php:1120
5504
  msgid ""
5505
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5506
  "adding a simple cart and checkout system to your website."
5507
  msgstr ""
5508
 
5509
+ #: app/features/mec/booking.php:1122
5510
  msgid "You cannot use following MEC features while using MEC Cart."
5511
  msgstr ""
5512
 
5513
+ #: app/features/mec/booking.php:1124
5514
  #, fuzzy
5515
  #| msgid "Payment Gateways"
5516
  msgid "WooCommerce as Payment Gateway"
5517
  msgstr "Betaalmethoden "
5518
 
5519
+ #: app/features/mec/booking.php:1125
5520
  #, fuzzy
5521
  #| msgid "Notifications"
5522
  msgid "Currency Per Event"
5523
  msgstr "Meldingen"
5524
 
5525
+ #: app/features/mec/booking.php:1126
5526
  #, fuzzy
5527
  #| msgid "Payment Gateways"
5528
  msgid "Disable Gateways Per Event"
5529
  msgstr "Betaalmethoden "
5530
 
5531
+ #: app/features/mec/booking.php:1127
5532
  #, fuzzy
5533
  #| msgid "Payment Gateways"
5534
  msgid "Stripe Connect Gateway"
5535
  msgstr "Betaalmethoden "
5536
 
5537
+ #: app/features/mec/booking.php:1128
5538
  #, fuzzy
5539
  #| msgid "Payment Gateways"
5540
  msgid "Pay By WooCommerce Gateway"
5541
  msgstr "Betaalmethoden "
5542
 
5543
+ #: app/features/mec/booking.php:1129
5544
  #, fuzzy
5545
  #| msgid "New Organizer Name"
5546
  msgid "Organizer Payment Module"
5547
  msgstr "Nieuwe organisator naam"
5548
 
5549
+ #: app/features/mec/booking.php:1133
5550
  #, fuzzy
5551
  #| msgid "Start Date"
5552
  msgid "Cart Page"
5553
  msgstr "Begindatum"
5554
 
5555
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5556
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5557
  #, php-format
5558
  msgid "Put %s shortcode into the page."
5559
  msgstr "Zet %s shortcode in de pagina"
5560
 
5561
+ #: app/features/mec/booking.php:1145
5562
  #, fuzzy
5563
  #| msgid "Checkout"
5564
  msgid "Checkout Page"
5565
  msgstr "Afrekenen"
5566
 
5567
+ #: app/features/mec/booking.php:1171
5568
  #, fuzzy
5569
  #| msgid "Enable booking module"
5570
  msgid "Enable Cart Invoice"
5571
  msgstr "Boeking module inschakelen"
5572
 
5573
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5574
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5575
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5576
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5578
  msgid "Saved"
5579
  msgstr "Opgeslagen"
5580
 
5581
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5582
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5583
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5584
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5586
  msgid "Settings Saved!"
5587
  msgstr ""
5588
 
5589
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5590
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5591
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5592
  msgid "Please Refresh Page"
5602
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5603
  msgstr ""
5604
 
5605
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5606
  #, php-format
5607
  msgid ""
5608
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5610
  "Spots, etc you should upgrade to the Pro version."
5611
  msgstr ""
5612
 
5613
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5614
  msgid "lite"
5615
  msgstr ""
5616
 
5617
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5618
  #: app/features/mec/support.php:126
5619
  msgid "GO PREMIUM"
5620
  msgstr ""
5621
 
5622
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5623
  #, fuzzy
5624
  #| msgid "Modern Events Calendar"
5625
  msgid "Getting started with Modern Events Calendar"
5626
  msgstr "Modern Events Calendar"
5627
 
5628
+ #: app/features/mec/dashboard.php:113
5629
  msgid ""
5630
  "In this short video, you can learn how to make an event and put a calendar "
5631
  "on your website. Please watch this 2 minutes video to the end."
5632
  msgstr ""
5633
 
5634
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5635
  msgid "License Activation"
5636
  msgstr ""
5637
 
5638
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5639
  msgid "Activate Addons"
5640
  msgstr ""
5641
 
5642
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5643
  msgid "You cannot access this section."
5644
  msgstr ""
5645
 
5646
+ #: app/features/mec/dashboard.php:159
5647
  msgid ""
5648
  "In order to use all plugin features and options, please enter your purchase "
5649
  "code."
5650
  msgstr ""
5651
 
5652
+ #: app/features/mec/dashboard.php:267
5653
  msgid "Popular Gateways"
5654
  msgstr ""
5655
 
5656
+ #: app/features/mec/dashboard.php:325
5657
  msgid "Change Log"
5658
  msgstr "Change log"
5659
 
7190
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7191
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7192
  #: app/features/popup/settings.php:272 app/features/search.php:109
7193
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7194
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7195
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7196
  #: app/modules/speakers/details.php:18
8521
  msgid "Please, insert comma to separate reminder hours."
8522
  msgstr ""
8523
 
8524
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8525
  #: app/libraries/main.php:705
8526
  msgid "New Event"
8527
  msgstr "Nieuw evenement"
10728
  msgid "Choose one of saved locations."
10729
  msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
10730
 
10731
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
10732
+ #: app/features/popup/event.php:171
10733
  msgid "Hide organizer"
10734
  msgstr "Verberg organisator"
10735
 
10736
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
10737
+ #: app/features/popup/event.php:180
10738
  msgid "Choose one of saved organizers or insert new one below."
10739
  msgstr ""
10740
  "Kies één van de bewaarde organisatoren of voeg een nieuwe organisator toe."
10748
  msgstr "Voer organisator email adres in."
10749
 
10750
  #: app/features/organizers.php:120 app/features/organizers.php:157
10751
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
10752
  msgid "Link to organizer page"
10753
  msgstr "Link naar organisator pagina"
10754
 
10762
  msgid "Contact info"
10763
  msgstr "Contact informatie"
10764
 
10765
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
10766
  msgid "Insert a new organizer"
10767
  msgstr "Voeg nieuwe organisator toe"
10768
 
10769
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
10770
  msgid "Phone number."
10771
  msgstr ""
10772
 
10773
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
10774
  msgid "eg. +1 (234) 5678"
10775
  msgstr "bijv. +31 (0) 612345678"
10776
 
10777
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
10778
  msgid "Email address."
10779
  msgstr ""
10780
 
10781
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
10782
  msgid "eg. john@smith.com"
10783
  msgstr "bijv. john@smith.com"
10784
 
10785
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
10786
  msgid "eg. https://webnus.net"
10787
  msgstr ""
10788
 
10796
  "You can select extra organizers in addition to main organizer if you like."
10797
  msgstr ""
10798
 
10799
+ #: app/features/popup/event.php:60
10800
  #, fuzzy
10801
  #| msgid "Add Shortcode"
10802
  msgid "Adding an Event..."
10803
  msgstr "Shortcode toevoegen"
10804
 
10805
+ #: app/features/popup/event.php:68
10806
  #, fuzzy
10807
  #| msgid "Event Labels"
10808
  msgid "Event Name"
10809
  msgstr "Evenement label"
10810
 
10811
+ #: app/features/popup/event.php:69
10812
  msgid "Event name is required"
10813
  msgstr ""
10814
 
10815
+ #: app/features/popup/event.php:130
10816
  #, fuzzy
10817
  #| msgid "Choose one of saved locations or insert new one below."
10818
  msgid "Choose one of saved locations or insert new one."
10819
  msgstr "Kies één van de opgeslagen locaties of plaats een nieuwe hieronder."
10820
 
10821
+ #: app/features/popup/event.php:134
10822
  #, fuzzy
10823
  #| msgid "Add New Location"
10824
  msgid "Add Location"
10825
  msgstr "Nieuwe locatie toevoegen"
10826
 
10827
+ #: app/features/popup/event.php:184
10828
  #, fuzzy
10829
  #| msgid "Add New Organizer"
10830
  msgid "Add Organizer"
10831
  msgstr "Nieuwe organisator toevoegen"
10832
 
10833
+ #: app/features/popup/event.php:224
10834
  #, fuzzy
10835
  #| msgid "Categories"
10836
  msgid "All Categories"
10837
  msgstr "Categorieën"
10838
 
10839
+ #: app/features/popup/event.php:225
10840
  msgid "Most Used"
10841
  msgstr ""
10842
 
10843
+ #: app/features/popup/event.php:236
10844
  #, fuzzy
10845
  #| msgid "Add New Label"
10846
  msgid "Add New Category"
10847
  msgstr "Nieuwe label toevoegen"
10848
 
10849
+ #: app/features/popup/event.php:247
10850
  #, fuzzy
10851
  #| msgid "Featured Image"
10852
  msgid "Set Featured Image"
10853
  msgstr "Uitgelichte afbeelding"
10854
 
10855
+ #: app/features/popup/event.php:257
10856
  msgid "Your Event Has Been Created."
10857
  msgstr ""
10858
 
10859
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
10860
  #: app/features/popup/shortcode.php:553
10861
  msgid "Prev"
10862
  msgstr ""
10863
 
10864
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
10865
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
10866
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
10867
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11063
  msgid "No search result."
11064
  msgstr ""
11065
 
11066
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11067
+ #: app/features/speakers.php:293
11068
  #, fuzzy
11069
  #| msgid "Title"
11070
  msgid "Job Title"
11071
  msgstr "Titel"
11072
 
11073
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11074
  msgid "Insert speaker job title."
11075
  msgstr ""
11076
 
11077
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11078
  #, fuzzy
11079
  #| msgid "Insert organizer phone number."
11080
  msgid "Insert speaker phone number."
11081
  msgstr "Voer telefoonnummer organisator in."
11082
 
11083
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11084
  #, fuzzy
11085
  #| msgid "Insert organizer email address."
11086
  msgid "Insert speaker email address."
11087
  msgstr "Voer organisator email adres in."
11088
 
11089
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11090
  #, fuzzy
11091
  #| msgid "Insert -1 for unlimited usage"
11092
  msgid "Insert URL of Website"
11093
  msgstr "Voer -1 in voor onbeperkt gebruik"
11094
 
11095
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11096
  #, fuzzy
11097
  #| msgid "Facebook"
11098
  msgid "Facebook Page"
11099
  msgstr "Facebook"
11100
 
11101
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11102
  msgid "Insert URL of Facebook Page"
11103
  msgstr ""
11104
 
11105
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11106
  msgid "Instagram"
11107
  msgstr ""
11108
 
11109
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11110
  #, fuzzy
11111
  #| msgid "Insert -1 for unlimited usage"
11112
  msgid "Insert URL of Instagram"
11113
  msgstr "Voer -1 in voor onbeperkt gebruik"
11114
 
11115
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11116
  #, fuzzy
11117
  #| msgid "Linkedin"
11118
  msgid "LinkedIn"
11119
  msgstr "Linkedin"
11120
 
11121
+ #: app/features/speakers.php:169
11122
  #, fuzzy
11123
  #| msgid "Insert -1 for unlimited usage"
11124
  msgid "Insert URL of LinkedIn"
11125
  msgstr "Voer -1 in voor onbeperkt gebruik"
11126
 
11127
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11128
  #, fuzzy
11129
  #| msgid "Twitter"
11130
  msgid "Twitter Page"
11131
  msgstr "Twitter"
11132
 
11133
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11134
  #, fuzzy
11135
  #| msgid "Insert -1 for unlimited usage"
11136
  msgid "Insert URL of Twitter Page"
11137
  msgstr "Voer -1 in voor onbeperkt gebruik"
11138
 
11139
+ #: app/features/speakers.php:228
11140
  #, fuzzy
11141
  #| msgid "Insert -1 for unlimited usage"
11142
  msgid "Insert URL of linkedin"
11143
  msgstr "Voer -1 in voor onbeperkt gebruik"
11144
 
11145
+ #: app/features/speakers.php:353
11146
  msgid "Sorry, You must insert speaker name!"
11147
  msgstr ""
11148
 
11149
+ #: app/features/speakers.php:402
11150
  msgid ""
11151
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11152
  "section and speaker widget section!"
11234
  msgid "Upgrade to Pro Version"
11235
  msgstr ""
11236
 
11237
+ #: app/libraries/factory.php:232
11238
  msgctxt "plugin link"
11239
  msgid "Settings"
11240
  msgstr "Instellingen"
11241
 
11242
+ #: app/libraries/factory.php:237
11243
  msgctxt "plugin link"
11244
  msgid "Upgrade"
11245
  msgstr ""
11246
 
11247
+ #: app/libraries/factory.php:391
11248
  msgid "day"
11249
  msgstr "dag"
11250
 
11251
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11252
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11253
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11254
  msgid "days"
11255
  msgstr "dagen"
11256
 
11257
+ #: app/libraries/factory.php:393
11258
  msgid "hour"
11259
  msgstr "uur"
11260
 
11261
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11262
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11263
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11264
  msgid "hours"
11265
  msgstr "uren"
11266
 
11267
+ #: app/libraries/factory.php:395
11268
  msgid "minute"
11269
  msgstr "minuut"
11270
 
11271
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11272
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11273
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11274
  msgid "minutes"
11275
  msgstr "minuten"
11276
 
11277
+ #: app/libraries/factory.php:397
11278
  msgid "second"
11279
  msgstr "seconde"
11280
 
11281
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11282
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11283
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11284
  msgid "seconds"
11285
  msgstr "secondes"
11286
 
11287
+ #: app/libraries/factory.php:475
11288
  msgid "MEC Single Sidebar"
11289
  msgstr ""
11290
 
11291
+ #: app/libraries/factory.php:476
11292
  msgid "Custom sidebar for single and modal page of MEC."
11293
  msgstr ""
11294
 
11295
+ #: app/libraries/factory.php:1197
11296
  msgid "Notice:"
11297
  msgstr ""
11298
 
11299
+ #: app/libraries/factory.php:1198
11300
  msgid "This update includes only bug fixes."
11301
  msgstr ""
11302
 
11454
  msgid "%s Form"
11455
  msgstr ""
11456
 
 
 
 
 
 
 
11457
  #: app/libraries/main.php:726
11458
  msgid "Only For Bookers"
11459
  msgstr ""
12232
  msgid "End at: %s - %s"
12233
  msgstr ""
12234
 
12235
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12236
  #, fuzzy
12237
  #| msgid "Repeat"
12238
  msgid "Repeating Event"
12717
  msgid "http://webnus.net"
12718
  msgstr ""
12719
 
12720
+ #, fuzzy
12721
+ #~| msgid "Address"
12722
+ #~ msgid "WordPress"
12723
+ #~ msgstr "Adres"
12724
+
12725
  #, fuzzy
12726
  #~ msgid "MEC Transaction ID: %s, Event Title: %s"
12727
  #~ msgstr "Transactie ID"
languages/modern-events-calendar-lite-pl_PL.mo CHANGED
Binary file
languages/modern-events-calendar-lite-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:27+0330\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
@@ -180,7 +180,7 @@ msgid "Canceled"
180
  msgstr "Anulowane"
181
 
182
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
183
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
184
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
185
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
186
  #: app/features/mec/notifications.php:1922
@@ -218,14 +218,14 @@ msgstr "Imię"
218
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
219
  #: app/features/autoemails.php:60 app/features/events.php:606
220
  #: app/features/events.php:2650 app/features/events.php:2717
221
- #: app/features/events.php:2806 app/features/events.php:4443
222
- #: app/features/fes.php:280 app/features/fes/form.php:810
223
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
224
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
225
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
226
  #: app/features/organizers.php:112 app/features/organizers.php:153
227
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
228
- #: app/features/speakers.php:205 app/libraries/main.php:653
229
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
230
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
231
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -385,8 +385,8 @@ msgstr "Data"
385
  #: app/features/events.php:2808 app/features/mec/booking.php:800
386
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
387
  #: app/features/organizers.php:104 app/features/organizers.php:149
388
- #: app/features/speakers.php:120 app/features/speakers.php:201
389
- #: app/features/speakers.php:288 app/libraries/main.php:4252
390
  msgid "Tel"
391
  msgstr "Tel"
392
 
@@ -532,6 +532,11 @@ msgstr ""
532
  msgid "Agreement"
533
  msgstr ""
534
 
 
 
 
 
 
535
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
536
  #, php-format
537
  msgid "Instead of %s, the page title with a link will be show."
@@ -711,8 +716,8 @@ msgstr ""
711
  #: app/features/events.php:1843 app/features/events.php:2014
712
  #: app/features/events.php:2029 app/features/events.php:2271
713
  #: app/features/events.php:2283 app/features/events.php:2476
714
- #: app/features/events.php:2513 app/features/fes/form.php:458
715
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
716
  #: app/features/locations.php:341 app/features/mec/booking.php:113
717
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
718
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -789,9 +794,9 @@ msgstr ""
789
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
790
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
791
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
792
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
793
- #: app/features/organizers.php:289 app/features/popup/event.php:128
794
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
795
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
796
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
797
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -955,8 +960,8 @@ msgstr ""
955
 
956
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
957
  #: app/features/events.php:432 app/features/events.php:1283
958
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
959
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
960
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
961
  #: app/skins/single.php:1126 app/skins/single/default.php:213
962
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1035,7 +1040,7 @@ msgid "How to set label"
1035
  msgstr ""
1036
 
1037
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1038
- #: app/features/events.php:4195 app/features/fes/form.php:998
1039
  #: app/features/labels.php:61 app/features/labels.php:227
1040
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1041
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1071,7 +1076,7 @@ msgid "How to set location"
1071
  msgstr "Ukryj lokalizację"
1072
 
1073
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1074
- #: app/features/events.php:3876 app/features/events.php:4188
1075
  #: app/features/locations.php:58 app/features/locations.php:267
1076
  #: app/features/locations.php:329 app/features/locations.php:331
1077
  #: app/features/locations.php:340
@@ -1091,7 +1096,7 @@ msgstr "Ukryj lokalizację"
1091
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1092
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1093
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1094
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1095
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1096
  #: app/features/search.php:97 app/libraries/main.php:3020
1097
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1105,7 +1110,7 @@ msgstr "Lokalizacja"
1105
 
1106
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1107
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1108
- #: app/features/speakers.php:136 app/features/speakers.php:209
1109
  #: app/skins/single.php:1406 app/skins/single.php:1473
1110
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1111
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1128,7 +1133,7 @@ msgstr ""
1128
 
1129
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1130
  #: app/features/events.php:1519 app/features/events.php:1532
1131
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1132
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1133
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1134
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1179,8 +1184,8 @@ msgstr "Ukryj organizatora"
1179
 
1180
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1181
  #: app/features/events.php:431 app/features/events.php:3877
1182
- #: app/features/events.php:4190 app/features/events.php:4191
1183
- #: app/features/events.php:4192
1184
  #: app/features/mec/meta_boxes/display_options.php:1660
1185
  #: app/features/mec/meta_boxes/search_form.php:80
1186
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1195,12 +1200,12 @@ msgstr "Ukryj organizatora"
1195
  #: app/features/mec/meta_boxes/search_form.php:983
1196
  #: app/features/mec/meta_boxes/search_form.php:1070
1197
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1198
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1199
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1200
  #: app/features/organizers.php:58 app/features/organizers.php:208
1201
  #: app/features/organizers.php:277 app/features/organizers.php:279
1202
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1203
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1204
  #: app/features/popup/settings.php:263 app/features/search.php:103
1205
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1206
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1324,8 +1329,8 @@ msgstr "Czas"
1324
  #: app/features/booking/calendar_novel.php:145
1325
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1326
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1327
- #: app/libraries/render.php:554 app/libraries/render.php:758
1328
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1329
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1330
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1331
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1391,7 +1396,7 @@ msgstr "Nie znaleziono wydarzeń!"
1391
 
1392
  #: app/features/autoemails.php:74 app/features/events.php:230
1393
  #: app/features/labels.php:72 app/features/locations.php:70
1394
- #: app/features/organizers.php:70 app/features/speakers.php:72
1395
  #: app/features/tag.php:70
1396
  #, php-format
1397
  msgid "Edit %s"
@@ -1457,7 +1462,7 @@ msgstr "Domyślnie 6"
1457
  msgid "Go to events page"
1458
  msgstr "Pokaż Mapy Google na stronie wydarzenia"
1459
 
1460
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1461
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1462
  #: app/features/wc.php:91 app/libraries/main.php:3072
1463
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1539,7 +1544,7 @@ msgstr "Rezerwacja"
1539
  msgid "Back to Cart"
1540
  msgstr "Wróć do listy wydarzeń"
1541
 
1542
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1543
  #: app/features/mec/settings.php:907
1544
  msgid "Event Color"
1545
  msgstr "Kolor wydarzenia"
@@ -1551,8 +1556,8 @@ msgid "Recent Colors"
1551
  msgstr "Kolor wydarzenia"
1552
 
1553
  #: app/features/contextual.php:55 app/features/mec.php:546
1554
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1555
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1556
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1557
  #: app/libraries/main.php:738
1558
  msgid "Settings"
@@ -1666,7 +1671,7 @@ msgid "Event Details/Single Event Page"
1666
  msgstr "Szczegóły wydarzenia / Strona wydarzenia"
1667
 
1668
  #: app/features/contextual.php:166 app/features/events.php:1298
1669
- #: app/features/fes/form.php:883
1670
  msgid "Currency Options"
1671
  msgstr "Ustawienia waluty"
1672
 
@@ -1758,8 +1763,8 @@ msgid "Public File to Download"
1758
  msgstr ""
1759
 
1760
  #: app/features/dlfile.php:297 app/features/events.php:3874
1761
- #: app/features/events.php:4181 app/features/events.php:4730
1762
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1763
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1764
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1765
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1768,7 +1773,7 @@ msgid "Title"
1768
  msgstr "Tytuł"
1769
 
1770
  #: app/features/dlfile.php:301 app/features/events.php:1988
1771
- #: app/features/events.php:2248 app/features/events.php:4182
1772
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1773
  #: app/libraries/hourlyschedule.php:152
1774
  msgid "Description"
@@ -1815,7 +1820,7 @@ msgid "Before"
1815
  msgstr "Przed - $10"
1816
 
1817
  #: app/features/emails/details.php:35 app/features/events.php:1223
1818
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1819
  msgid "After"
1820
  msgstr "Po"
1821
 
@@ -1826,7 +1831,7 @@ msgid "event occurrence."
1826
  msgstr "Następne wystąpienie"
1827
 
1828
  #: app/features/emails/details.php:40 app/features/events.php:192
1829
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1830
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1831
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1832
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1847,11 +1852,11 @@ msgstr ""
1847
  msgid "Add Event"
1848
  msgstr "Dodaj wydarzenie"
1849
 
1850
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1851
  msgid "Add New Event"
1852
  msgstr "Dodaj nowe wydarzenie"
1853
 
1854
- #: app/features/events.php:196 app/features/ix.php:4573
1855
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1856
  #: app/skins/map/tpl.php:93
1857
  msgid "No events found!"
@@ -1862,7 +1867,7 @@ msgid "Edit Event"
1862
  msgstr ""
1863
 
1864
  #: app/features/events.php:199 app/features/fes/list.php:100
1865
- #: app/features/popup/event.php:254
1866
  msgid "View Event"
1867
  msgstr "Zobacz wydarzenie"
1868
 
@@ -1871,7 +1876,7 @@ msgid "No events found in Trash!"
1871
  msgstr "Nie znaleziono wydarzeń w Koszu!"
1872
 
1873
  #: app/features/events.php:219 app/features/events.php:3831
1874
- #: app/features/events.php:4196 app/features/fes/form.php:972
1875
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1876
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1877
  #: app/libraries/main.php:7619
@@ -1880,49 +1885,49 @@ msgstr "Kategorie"
1880
 
1881
  #: app/features/events.php:229 app/features/labels.php:71
1882
  #: app/features/locations.php:69 app/features/organizers.php:69
1883
- #: app/features/speakers.php:71 app/features/tag.php:69
1884
  #, php-format
1885
  msgid "All %s"
1886
  msgstr "Wszystkie %s"
1887
 
1888
  #: app/features/events.php:231 app/features/labels.php:73
1889
  #: app/features/locations.php:71 app/features/organizers.php:71
1890
- #: app/features/speakers.php:73 app/features/tag.php:71
1891
  #, php-format
1892
  msgid "View %s"
1893
  msgstr "Wyświetl %s"
1894
 
1895
  #: app/features/events.php:232 app/features/labels.php:74
1896
  #: app/features/locations.php:72 app/features/organizers.php:72
1897
- #: app/features/speakers.php:74 app/features/tag.php:72
1898
  #, php-format
1899
  msgid "Update %s"
1900
  msgstr "Zaktualizuj %s"
1901
 
1902
  #: app/features/events.php:233 app/features/labels.php:75
1903
  #: app/features/locations.php:73 app/features/organizers.php:73
1904
- #: app/features/speakers.php:75 app/features/tag.php:73
1905
  #, php-format
1906
  msgid "Add New %s"
1907
  msgstr "Dodaj nowy %s"
1908
 
1909
  #: app/features/events.php:234 app/features/labels.php:76
1910
  #: app/features/locations.php:74 app/features/organizers.php:74
1911
- #: app/features/speakers.php:76 app/features/tag.php:74
1912
  #, php-format
1913
  msgid "New %s Name"
1914
  msgstr "Nowa nazwa %s"
1915
 
1916
  #: app/features/events.php:235 app/features/labels.php:77
1917
  #: app/features/locations.php:75 app/features/organizers.php:75
1918
- #: app/features/speakers.php:77 app/features/tag.php:75
1919
  #, php-format
1920
  msgid "Popular %s"
1921
  msgstr "Popularne %s"
1922
 
1923
  #: app/features/events.php:236 app/features/labels.php:78
1924
  #: app/features/locations.php:76 app/features/organizers.php:76
1925
- #: app/features/speakers.php:78 app/features/tag.php:76
1926
  #, php-format
1927
  msgid "Search %s"
1928
  msgstr "Wyszukaj %s"
@@ -1952,7 +1957,7 @@ msgstr ""
1952
  #: app/features/events.php:278 app/features/events.php:336
1953
  #: app/features/locations.php:161 app/features/locations.php:213
1954
  #: app/features/organizers.php:133 app/features/organizers.php:164
1955
- #: app/features/speakers.php:181 app/features/speakers.php:232
1956
  msgid "Upload/Add image"
1957
  msgstr "Prześlij / Dodaj obraz"
1958
 
@@ -1961,7 +1966,7 @@ msgstr "Prześlij / Dodaj obraz"
1961
  #: app/features/locations.php:393 app/features/locations.php:400
1962
  #: app/features/organizers.php:134 app/features/organizers.php:165
1963
  #: app/features/organizers.php:316 app/features/organizers.php:323
1964
- #: app/features/speakers.php:182 app/features/speakers.php:233
1965
  msgid "Remove image"
1966
  msgstr "Usuń obraz"
1967
 
@@ -1981,7 +1986,7 @@ msgstr "Szczegóły wydarzenia"
1981
  msgid "Date And Time"
1982
  msgstr "Data i godzina"
1983
 
1984
- #: app/features/events.php:425 app/features/fes/form.php:384
1985
  msgid "Event Repeating"
1986
  msgstr "Wydarzenie powtarzalne"
1987
 
@@ -2028,10 +2033,10 @@ msgid "Guest Data"
2028
  msgstr "Dane gości"
2029
 
2030
  #: app/features/events.php:605 app/features/events.php:2641
2031
- #: app/features/events.php:4440 app/features/fes.php:280
2032
- #: app/features/fes/form.php:814 app/features/labels.php:184
2033
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2034
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2035
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2036
  msgid "Name"
2037
  msgstr "Imię"
@@ -2042,13 +2047,13 @@ msgid ""
2042
  "overwrite in the next import from Google."
2043
  msgstr ""
2044
 
2045
- #: app/features/events.php:619 app/features/fes/form.php:282
2046
  msgid "Date and Time"
2047
  msgstr "Data i godzina"
2048
 
2049
  #: app/features/events.php:622 app/features/events.php:626
2050
- #: app/features/events.php:3878 app/features/events.php:4183
2051
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2052
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2053
  #: app/features/mec/meta_boxes/display_options.php:57
2054
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2066,13 +2071,13 @@ msgstr "Data i godzina"
2066
  #: app/features/mec/meta_boxes/display_options.php:2347
2067
  #: app/features/mec/meta_boxes/display_options.php:2478
2068
  #: app/features/mec/meta_boxes/display_options.php:2584
2069
- #: app/features/popup/event.php:77
2070
  msgid "Start Date"
2071
  msgstr "Data rozpoczęcia"
2072
 
2073
  #: app/features/events.php:642 app/features/events.php:646
2074
- #: app/features/events.php:3879 app/features/events.php:4185
2075
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2076
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2077
  #: app/features/mec/meta_boxes/display_options.php:73
2078
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2081,33 +2086,33 @@ msgstr "Data rozpoczęcia"
2081
  #: app/features/mec/meta_boxes/display_options.php:788
2082
  #: app/features/mec/meta_boxes/display_options.php:1618
2083
  #: app/features/mec/meta_boxes/display_options.php:2363
2084
- #: app/features/popup/event.php:94
2085
  msgid "End Date"
2086
  msgstr "Data zakończenia"
2087
 
2088
- #: app/features/events.php:669 app/features/fes/form.php:324
2089
- #: app/features/popup/event.php:111
2090
  #, fuzzy
2091
  #| msgid "All Day Event"
2092
  msgid "All-day Event"
2093
  msgstr "Wydarzenie całodniowe"
2094
 
2095
- #: app/features/events.php:679 app/features/fes/form.php:327
2096
  msgid "Hide Event Time"
2097
  msgstr "Ukryj czas wydarzenia"
2098
 
2099
- #: app/features/events.php:689 app/features/fes/form.php:330
2100
  msgid "Hide Event End Time"
2101
  msgstr "Ukryj czas zakończenia wydarzenia"
2102
 
2103
  #: app/features/events.php:694 app/features/events.php:698
2104
- #: app/features/fes/form.php:334
2105
  #, fuzzy
2106
  #| msgid "Note to reviewer"
2107
  msgid "Notes on the time"
2108
  msgstr "Uwaga dla administratora"
2109
 
2110
- #: app/features/events.php:699 app/features/fes/form.php:335
2111
  #, fuzzy
2112
  #| msgid ""
2113
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2119,7 +2124,7 @@ msgstr ""
2119
  "Treść komentarza wyświetlana obok czasu wydarzenia. Np. strefa czasowa lub "
2120
  "dodatkowe informacje."
2121
 
2122
- #: app/features/events.php:711 app/features/fes/form.php:342
2123
  #, fuzzy
2124
  #| msgid "Timezone: %s"
2125
  msgid "Timezone"
@@ -2130,55 +2135,55 @@ msgstr "Strefa czasowa: %s"
2130
  #: app/features/events.php:1793 app/features/events.php:1813
2131
  #: app/features/events.php:1868 app/features/events.php:2438
2132
  #: app/features/events.php:2561 app/features/events.php:2672
2133
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2134
  msgid "Inherit from global options"
2135
  msgstr "Dziedziczenie z opcji globalnych"
2136
 
2137
  #: app/features/events.php:725 app/features/events.php:728
2138
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2139
  #: app/features/mec/settings.php:858
2140
  #, fuzzy
2141
  #| msgid "Countdown View"
2142
  msgid "Countdown Method"
2143
  msgstr "Widok odliczania"
2144
 
2145
- #: app/features/events.php:730 app/features/fes/form.php:361
2146
  #, fuzzy
2147
  #| msgid "On Event Start"
2148
  msgid "Count to Event Start"
2149
  msgstr "Po rozpoczęciu wydarzenia"
2150
 
2151
- #: app/features/events.php:731 app/features/fes/form.php:362
2152
  #, fuzzy
2153
  #| msgid "On Event End"
2154
  msgid "Count to Event End"
2155
  msgstr "Podczas zakończenia wydarzenia"
2156
 
2157
- #: app/features/events.php:737 app/features/fes/form.php:369
2158
  #: app/modules/weather/darksky.php:57
2159
  msgid "Visibility"
2160
  msgstr ""
2161
 
2162
- #: app/features/events.php:740 app/features/fes/form.php:372
2163
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2164
  #, fuzzy
2165
  #| msgid "Event Cost"
2166
  msgid "Event Visibility"
2167
  msgstr "Koszt wydarzenia"
2168
 
2169
- #: app/features/events.php:741 app/features/fes/form.php:373
2170
  #, fuzzy
2171
  #| msgid "Booking"
2172
  msgid "Show on Shortcodes"
2173
  msgstr "Rezerwacja"
2174
 
2175
- #: app/features/events.php:742 app/features/fes/form.php:374
2176
  #, fuzzy
2177
  #| msgid "Shortcodes"
2178
  msgid "Hide on Shortcodes"
2179
  msgstr "Shortcodes"
2180
 
2181
- #: app/features/events.php:749 app/features/fes/form.php:382
2182
  #, fuzzy
2183
  #| msgid "Repeat"
2184
  msgid "Repeating"
@@ -2190,65 +2195,70 @@ msgstr "Powtarzanie"
2190
  msgid "Event Repeating (Recurring events)"
2191
  msgstr "Wydarzenie powtarzalne"
2192
 
2193
- #: app/features/events.php:762 app/features/fes/form.php:388
2194
  msgid "Repeats"
2195
  msgstr "Powtórzenia"
2196
 
2197
- #: app/features/events.php:770 app/features/fes/form.php:390
2198
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2199
  #: app/skins/full_calendar/tpl.php:140
2200
  msgid "Daily"
2201
  msgstr "Codziennie"
2202
 
2203
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2204
  msgid "Every Weekday"
2205
  msgstr "Codziennie w dni powszednie"
2206
 
2207
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2208
  msgid "Every Weekend"
2209
  msgstr "Codziennie w dni wolne"
2210
 
2211
- #: app/features/events.php:791 app/features/fes/form.php:393
2212
  msgid "Certain Weekdays"
2213
  msgstr "Wybrane dni"
2214
 
2215
- #: app/features/events.php:798 app/features/fes/form.php:394
2216
- #: app/skins/default_full_calendar/tpl.php:78
2217
  #: app/skins/full_calendar/tpl.php:139
2218
  msgid "Weekly"
2219
  msgstr "Co tydzień"
2220
 
2221
- #: app/features/events.php:805 app/features/fes/form.php:395
2222
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2223
  #: app/skins/full_calendar/tpl.php:138
2224
  msgid "Monthly"
2225
  msgstr "Co miesiąc"
2226
 
2227
- #: app/features/events.php:812 app/features/fes/form.php:396
2228
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2229
  #: app/skins/full_calendar/tpl.php:137
2230
  msgid "Yearly"
2231
  msgstr "Co roku"
2232
 
2233
- #: app/features/events.php:819 app/features/fes/form.php:397
2234
  msgid "Custom Days"
2235
  msgstr "Niestandardowo"
2236
 
2237
- #: app/features/events.php:826 app/features/fes/form.php:398
2238
  #, fuzzy
2239
  #| msgid "Advanced Method"
2240
  msgid "Advanced"
2241
  msgstr "Zaawansowana metoda"
2242
 
2243
- #: app/features/events.php:831 app/features/fes/form.php:402
2244
  msgid "Repeat Interval"
2245
  msgstr "Częstotliwość powtarzania"
2246
 
2247
- #: app/features/events.php:833 app/features/fes/form.php:403
2248
  msgid "Repeat interval"
2249
  msgstr "Częstotliwość powtarzania"
2250
 
2251
- #: app/features/events.php:837 app/features/fes/form.php:406
2252
  msgid "Week Days"
2253
  msgstr "Dni tygodnia"
2254
 
@@ -2260,7 +2270,7 @@ msgstr ""
2260
 
2261
  #: app/features/events.php:860 app/features/events.php:2101
2262
  #: app/features/events.php:2129 app/features/events.php:2343
2263
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2264
  #: app/features/ix/import_g_calendar.php:51
2265
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2266
  #: app/libraries/skins.php:1389
@@ -2271,19 +2281,19 @@ msgstr "Początek"
2271
  #: app/features/events.php:2085 app/features/events.php:2167
2272
  #: app/features/events.php:2332 app/features/events.php:2376
2273
  #: app/features/events.php:2449 app/features/events.php:2566
2274
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2275
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2276
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2277
  msgid "Add"
2278
  msgstr "Dodaj"
2279
 
2280
- #: app/features/events.php:877 app/features/fes/form.php:454
2281
  #, fuzzy
2282
  #| msgid "Custom Days"
2283
  msgid "Custom Days Repeating"
2284
  msgstr "Niestandardowo"
2285
 
2286
- #: app/features/events.php:880 app/features/fes/form.php:457
2287
  msgid ""
2288
  "Add certain days to event occurrence dates. If you have a single day event, "
2289
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2292,52 +2302,52 @@ msgstr ""
2292
 
2293
  #: app/features/events.php:891 app/features/events.php:2105
2294
  #: app/features/events.php:2133 app/features/events.php:2347
2295
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2296
  #, fuzzy
2297
  #| msgid "Enabled"
2298
  msgid "End"
2299
  msgstr "Włączone"
2300
 
2301
- #: app/features/events.php:968 app/features/fes/form.php:530
2302
  #, fuzzy
2303
  #| msgid "First name"
2304
  msgid "First"
2305
  msgstr "Imię"
2306
 
2307
- #: app/features/events.php:1010 app/features/fes/form.php:572
2308
  #, fuzzy
2309
  #| msgid "second"
2310
  msgid "Second"
2311
  msgstr "sekunda"
2312
 
2313
- #: app/features/events.php:1052 app/features/fes/form.php:614
2314
  msgid "Third"
2315
  msgstr ""
2316
 
2317
- #: app/features/events.php:1094 app/features/fes/form.php:656
2318
  msgid "Fourth"
2319
  msgstr ""
2320
 
2321
- #: app/features/events.php:1136 app/features/fes/form.php:698
2322
  #, fuzzy
2323
  #| msgid "Last name"
2324
  msgid "Last"
2325
  msgstr "Nazwisko"
2326
 
2327
- #: app/features/events.php:1183 app/features/fes/form.php:744
2328
  msgid "Ends Repeat"
2329
  msgstr "Koniec powtarzania"
2330
 
2331
- #: app/features/events.php:1195 app/features/fes/form.php:748
2332
  msgid "Never"
2333
  msgstr "Nigdy"
2334
 
2335
- #: app/features/events.php:1207 app/features/fes/form.php:753
2336
  msgid "On"
2337
  msgstr "W"
2338
 
2339
  #: app/features/events.php:1227 app/features/events.php:1231
2340
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2341
  msgid "Occurrences times"
2342
  msgstr "Ilość wystąpień"
2343
 
@@ -2353,14 +2363,14 @@ msgstr ""
2353
  "Wydarzenie zakończy się po wybranej ilości powtórzeń. Przykładowo, jeżeli "
2354
  "wybierzesz 10, wydarzenie zakończy się po 10 powtórzeniach."
2355
 
2356
- #: app/features/events.php:1248 app/features/fes/form.php:779
2357
  #, fuzzy
2358
  #| msgid "Next Occurrence of Other Events"
2359
  msgid "Show only one occurrence of this event"
2360
  msgstr "Kolejne wystąpienie innych wydarzeń"
2361
 
2362
- #: app/features/events.php:1277 app/features/events.php:4193
2363
- #: app/features/fes/form.php:865
2364
  #: app/features/mec/meta_boxes/search_form.php:116
2365
  #: app/features/mec/meta_boxes/search_form.php:204
2366
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2384,73 +2394,73 @@ msgstr "Kolejne wystąpienie innych wydarzeń"
2384
  #: app/features/mec/notifications.php:1511
2385
  #: app/features/mec/notifications.php:1628
2386
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2387
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2388
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2389
  #: app/widgets/single.php:122
2390
  msgid "Event Cost"
2391
  msgstr "Koszt wydarzenia"
2392
 
2393
- #: app/features/events.php:1292 app/features/fes/form.php:877
2394
  msgid "Show the minimum price based on tickets"
2395
  msgstr ""
2396
 
2397
- #: app/features/events.php:1300 app/features/fes/form.php:885
2398
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2399
  #: app/libraries/main.php:646
2400
  msgid "Currency"
2401
  msgstr "Waluta"
2402
 
2403
  #: app/features/events.php:1310 app/features/events.php:1315
2404
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2405
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2406
  msgid "Currency Sign"
2407
  msgstr "Symbol waluty"
2408
 
2409
- #: app/features/events.php:1316 app/features/fes/form.php:901
2410
  #: app/features/mec/settings.php:600
2411
  msgid "Default value will be \"currency\" if you leave it empty."
2412
  msgstr "Jeżeli pozostawisz pole puste, wartością domyślną będzie \"currency\"."
2413
 
2414
- #: app/features/events.php:1323 app/features/fes/form.php:908
2415
  #: app/features/mec/settings.php:607
2416
  msgid "Currency Position"
2417
  msgstr "Pozycja symbolu waluty"
2418
 
2419
- #: app/features/events.php:1326 app/features/fes/form.php:911
2420
  #: app/features/mec/settings.php:610
2421
  #, fuzzy
2422
  #| msgid "Before $10"
2423
  msgid "$10 (Before)"
2424
  msgstr "Przed - $10"
2425
 
2426
- #: app/features/events.php:1327 app/features/fes/form.php:912
2427
  #: app/features/mec/settings.php:611
2428
  msgid "$ 10 (Before with Space)"
2429
  msgstr ""
2430
 
2431
- #: app/features/events.php:1328 app/features/fes/form.php:913
2432
  #: app/features/mec/settings.php:612
2433
  #, fuzzy
2434
  #| msgid "After"
2435
  msgid "10$ (After)"
2436
  msgstr "Po"
2437
 
2438
- #: app/features/events.php:1329 app/features/fes/form.php:914
2439
  #: app/features/mec/settings.php:613
2440
  msgid "10 $ (After with Space)"
2441
  msgstr ""
2442
 
2443
- #: app/features/events.php:1334 app/features/fes/form.php:919
2444
  #: app/features/mec/settings.php:618
2445
  msgid "Thousand Separator"
2446
  msgstr "Seperator tysięcy"
2447
 
2448
- #: app/features/events.php:1340 app/features/fes/form.php:925
2449
  #: app/features/mec/settings.php:624
2450
  msgid "Decimal Separator"
2451
  msgstr "Separator miejsc dziesiętnych"
2452
 
2453
- #: app/features/events.php:1350 app/features/fes/form.php:935
2454
  #: app/features/mec/settings.php:634
2455
  msgid "No decimal"
2456
  msgstr "Brak przecinka"
@@ -2476,21 +2486,21 @@ msgstr ""
2476
  msgid "Day 1"
2477
  msgstr ""
2478
 
2479
- #: app/features/events.php:1498 app/features/fes/form.php:829
2480
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2481
  msgid "Event Links"
2482
  msgstr "Linki wydarzenia"
2483
 
2484
  #: app/features/events.php:1501 app/features/events.php:1509
2485
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2486
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2487
  #: app/libraries/main.php:7649
2488
  msgid "Event Link"
2489
  msgstr "Link strony www wydarzenia"
2490
 
2491
  #: app/features/events.php:1504 app/features/events.php:1522
2492
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2493
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2494
  msgid "eg. http://yoursite.com/your-event"
2495
  msgstr "na przykład. http://twojastrona.pl/twoje-wydarzenie"
2496
 
@@ -2511,24 +2521,24 @@ msgstr ""
2511
  msgid "URL Shortener"
2512
  msgstr ""
2513
 
2514
- #: app/features/events.php:1525 app/features/fes/form.php:838
2515
- #: app/features/occurrences.php:527
2516
  msgid "More Information"
2517
  msgstr "Więcej informacji"
2518
 
2519
- #: app/features/events.php:1527 app/features/fes/form.php:840
2520
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2521
  #: app/features/popup/shortcode.php:481
2522
  msgid "Current Window"
2523
  msgstr "Bieżące okno"
2524
 
2525
- #: app/features/events.php:1528 app/features/fes/form.php:841
2526
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2527
  #: app/features/popup/shortcode.php:485
2528
  msgid "New Window"
2529
  msgstr "Nowe okno"
2530
 
2531
- #: app/features/events.php:1533 app/features/fes/form.php:843
2532
  msgid ""
2533
  "If you fill it, it will be shown in event details page as an optional link. "
2534
  "Insert full link including http(s)://"
@@ -2906,9 +2916,9 @@ msgid "Ticket ID"
2906
  msgstr "Zgłoszenie"
2907
 
2908
  #: app/features/events.php:1944 app/features/events.php:2211
2909
- #: app/features/events.php:4180 app/features/fes.php:280
2910
  #: app/features/labels.php:183 app/features/locations.php:266
2911
- #: app/features/organizers.php:207 app/features/speakers.php:285
2912
  msgid "ID"
2913
  msgstr "ID"
2914
 
@@ -2917,12 +2927,12 @@ msgid "Ticket Name"
2917
  msgstr "Nazwa biletu"
2918
 
2919
  #: app/features/events.php:1956 app/features/events.php:2219
2920
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2921
  msgid "Start Time"
2922
  msgstr "Czas rozpoczęcia"
2923
 
2924
  #: app/features/events.php:1970 app/features/events.php:2233
2925
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2926
  msgid "End Time"
2927
  msgstr "Czas zakończenia"
2928
 
@@ -2944,7 +2954,7 @@ msgstr ""
2944
  #: app/features/events.php:2007 app/features/events.php:2011
2945
  #: app/features/events.php:2109 app/features/events.php:2136
2946
  #: app/features/events.php:2265 app/features/events.php:2268
2947
- #: app/features/events.php:2349 app/features/events.php:4739
2948
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2949
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2950
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3113,7 +3123,7 @@ msgstr "Limit uczestników"
3113
  msgid "Fixed Fields"
3114
  msgstr "Wymagane pole"
3115
 
3116
- #: app/features/events.php:2887 app/features/events.php:4733
3117
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3118
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3119
  msgid "Attendees"
@@ -3145,7 +3155,7 @@ msgid "Expired Events"
3145
  msgstr ""
3146
 
3147
  #: app/features/events.php:3757 app/features/mec.php:1374
3148
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3149
  msgid "Upcoming Events"
3150
  msgstr "Nadchodzące wydarzenia"
3151
 
@@ -3206,15 +3216,15 @@ msgid "JSON Export"
3206
  msgstr "Eksportuj JSON"
3207
 
3208
  #: app/features/events.php:4068 app/features/events.php:4069
3209
- #: app/features/events.php:4293
3210
  msgid "Duplicate"
3211
  msgstr "Duplikuj"
3212
 
3213
- #: app/features/events.php:4187
3214
  msgid "Link"
3215
  msgstr "Link"
3216
 
3217
- #: app/features/events.php:4189 app/features/locations.php:111
3218
  #: app/features/locations.php:181 app/features/locations.php:268
3219
  #: app/features/mec/meta_boxes/search_form.php:108
3220
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3232,31 +3242,31 @@ msgstr "Link"
3232
  msgid "Address"
3233
  msgstr "Adres"
3234
 
3235
- #: app/features/events.php:4191
3236
  #, php-format
3237
  msgid "%s Tel"
3238
  msgstr "%s Tel"
3239
 
3240
- #: app/features/events.php:4192
3241
  #, php-format
3242
  msgid "%s Email"
3243
  msgstr "%s Email"
3244
 
3245
- #: app/features/events.php:4194 app/features/fes/form.php:951
3246
  #: app/features/mec/settings.php:876
3247
  msgid "Featured Image"
3248
  msgstr "Obraz wyróżniający"
3249
 
3250
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3251
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3252
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3253
  msgid "Tags"
3254
  msgstr "Tagi"
3255
 
3256
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3257
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3258
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3259
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3260
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3261
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3262
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3264,42 +3274,42 @@ msgstr "Tagi"
3264
  msgid "Speakers"
3265
  msgstr ""
3266
 
3267
- #: app/features/events.php:4446 app/features/fes.php:280
3268
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3269
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3270
  #: app/libraries/main.php:7592
3271
  msgid "Ticket"
3272
  msgstr "Zgłoszenie"
3273
 
3274
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3275
  #, fuzzy
3276
  #| msgid "Verification"
3277
  msgid "Variations"
3278
  msgstr "Potwierdzenie"
3279
 
3280
- #: app/features/events.php:4464 app/features/fes.php:356
3281
  msgid "Unknown"
3282
  msgstr "Nieznane"
3283
 
3284
- #: app/features/events.php:4492
3285
  msgid ""
3286
  "If you want to send an email, first select your attendees and then click in "
3287
  "the button below, please."
3288
  msgstr ""
3289
 
3290
- #: app/features/events.php:4492 app/features/mec/report.php:57
3291
  #, fuzzy
3292
  #| msgid "Organizer Email"
3293
  msgid "Send Email"
3294
  msgstr "Email organizatora"
3295
 
3296
- #: app/features/events.php:4496
3297
  #, fuzzy
3298
  #| msgid "Attendees Form"
3299
  msgid "No Attendees Found!"
3300
  msgstr "Formularz zgłoszenia uczestników"
3301
 
3302
- #: app/features/events.php:4797
3303
  #, fuzzy
3304
  #| msgid "No bookings found!"
3305
  msgid "No Bookings Found!"
@@ -3441,72 +3451,72 @@ msgstr "Zdarzenie wysłane. Będzie opublikowane tak szybko jak to możliwe."
3441
  msgid "The event published."
3442
  msgstr "Wydarzenie opublikowane."
3443
 
3444
- #: app/features/fes/form.php:178
3445
  #, fuzzy
3446
  #| msgid "Go back to events list."
3447
  msgid "Go back to events list"
3448
  msgstr "Wróć do listy wydarzeń"
3449
 
3450
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3451
  #: app/features/mec/settings.php:1171
3452
  msgid "Excerpt"
3453
  msgstr ""
3454
 
3455
- #: app/features/fes/form.php:271
3456
  #, fuzzy
3457
  #| msgid "On Event Start"
3458
  msgid "Optional Event Excerpt"
3459
  msgstr "Po rozpoczęciu wydarzenia"
3460
 
3461
- #: app/features/fes/form.php:278
3462
  msgid ""
3463
  "This event is imported from Google calendar so if you modify it would "
3464
  "overwrite in the next import from Google."
3465
  msgstr ""
3466
 
3467
- #: app/features/fes/form.php:407
3468
  #: app/features/mec/meta_boxes/display_options.php:1494
3469
  #: app/libraries/main.php:476
3470
  msgid "Monday"
3471
  msgstr "Poniedziałek"
3472
 
3473
- #: app/features/fes/form.php:408
3474
  #: app/features/mec/meta_boxes/display_options.php:1495
3475
  #: app/libraries/main.php:476
3476
  msgid "Tuesday"
3477
  msgstr "Wtorek"
3478
 
3479
- #: app/features/fes/form.php:409
3480
  #: app/features/mec/meta_boxes/display_options.php:1496
3481
  #: app/libraries/main.php:476
3482
  msgid "Wednesday"
3483
  msgstr "Środa"
3484
 
3485
- #: app/features/fes/form.php:410
3486
  #: app/features/mec/meta_boxes/display_options.php:1497
3487
  #: app/libraries/main.php:476
3488
  msgid "Thursday"
3489
  msgstr "Czwartek"
3490
 
3491
- #: app/features/fes/form.php:411
3492
  #: app/features/mec/meta_boxes/display_options.php:1498
3493
  #: app/libraries/main.php:476
3494
  msgid "Friday"
3495
  msgstr "Piątek"
3496
 
3497
- #: app/features/fes/form.php:412
3498
  #: app/features/mec/meta_boxes/display_options.php:1499
3499
  #: app/libraries/main.php:476
3500
  msgid "Saturday"
3501
  msgstr "Sobota"
3502
 
3503
- #: app/features/fes/form.php:413
3504
  #: app/features/mec/meta_boxes/display_options.php:1493
3505
  #: app/libraries/main.php:476
3506
  msgid "Sunday"
3507
  msgstr "Niedziea"
3508
 
3509
- #: app/features/fes/form.php:766
3510
  msgid ""
3511
  "The event will finish after certain repeats. For example if you set it to "
3512
  "10, the event will finish after 10 repeats."
@@ -3514,24 +3524,24 @@ msgstr ""
3514
  "Wydarzenie zakończy się po wybranej ilości powtórzeń. Przykładowo, jeżeli "
3515
  "wybierzesz 10, wydarzenie zakończy się po 10 powtórzeniach."
3516
 
3517
- #: app/features/fes/form.php:790
3518
  msgid "Note to reviewer"
3519
  msgstr "Uwaga dla administratora"
3520
 
3521
- #: app/features/fes/form.php:808
3522
  msgid "User Data"
3523
  msgstr "Dane użytkowników"
3524
 
3525
- #: app/features/fes/form.php:811
3526
  msgid "eg. yourname@gmail.com"
3527
  msgstr "np. twojanazwa@gmail.com"
3528
 
3529
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3530
- #: app/features/popup/event.php:185
3531
  msgid "eg. John Smith"
3532
  msgstr "np. Jan Nowak"
3533
 
3534
- #: app/features/fes/form.php:833
3535
  #, fuzzy
3536
  #| msgid ""
3537
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3543,41 +3553,41 @@ msgstr ""
3543
  "Jeśli wypełnisz to pole, link zostanie zastąpiony domyślnym dla widoku "
3544
  "wydarzenia. Podaj pełen link w tym http(s)://"
3545
 
3546
- #: app/features/fes/form.php:956
3547
  msgid "Remove Image"
3548
  msgstr "Usuń obraz"
3549
 
3550
- #: app/features/fes/form.php:1046
3551
  msgid "Insert your desired tags, comma separated."
3552
  msgstr "Tagi (oddzielaj przecinkami)."
3553
 
3554
- #: app/features/fes/form.php:1068
3555
  #, fuzzy
3556
  #| msgid "No Search Options"
3557
  msgid "Speakers Names"
3558
  msgstr "Brak opcji wyszukiwania"
3559
 
3560
- #: app/features/fes/form.php:1069
3561
  msgid "Separate names with commas: Justin, Chris"
3562
  msgstr ""
3563
 
3564
- #: app/features/fes/form.php:1114
3565
  #, fuzzy, php-format
3566
  #| msgid "Please %s/%s in order to submit new events."
3567
  msgid "I accept the %s in order to submit an event."
3568
  msgstr "Proszę %s/%s, aby utworzyć nowe wydarzenia."
3569
 
3570
- #: app/features/fes/form.php:1114
3571
  msgid "Privacy Policy"
3572
  msgstr ""
3573
 
3574
- #: app/features/fes/form.php:1116
3575
  #, fuzzy
3576
  #| msgid "Please %s/%s in order to submit new events."
3577
  msgid "I accept the Privacy Policy in order to submit an event."
3578
  msgstr "Proszę %s/%s, aby utworzyć nowe wydarzenia."
3579
 
3580
- #: app/features/fes/form.php:1122
3581
  #, fuzzy
3582
  #| msgid "Edit Events"
3583
  msgid "Submit Event"
@@ -3662,43 +3672,43 @@ msgstr ""
3662
  msgid "The events are imported successfully!"
3663
  msgstr ""
3664
 
3665
- #: app/features/ix.php:1301
3666
  msgid "Third Party plugin is not installed and activated!"
3667
  msgstr ""
3668
 
3669
- #: app/features/ix.php:1325
3670
  msgid "Third Party plugin is invalid!"
3671
  msgstr ""
3672
 
3673
- #: app/features/ix.php:3300 app/features/ix.php:3361
3674
  #, fuzzy
3675
  #| msgid "Both of API key and Calendar ID are required!"
3676
  msgid "API key and Calendar ID are required!"
3677
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
3678
 
3679
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3680
  #, fuzzy
3681
  #| msgid "Please select some events to import!"
3682
  msgid "Please select events to import!"
3683
  msgstr "Proszę wybrać dane do zaimportowania!"
3684
 
3685
- #: app/features/ix.php:3794 app/features/ix.php:3857
3686
  #, fuzzy
3687
  #| msgid "Both of API key and Calendar ID are required!"
3688
  msgid "API key and Group URL are required!"
3689
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
3690
 
3691
- #: app/features/ix.php:4096
3692
  msgid "Check at Meetup"
3693
  msgstr ""
3694
 
3695
- #: app/features/ix.php:4262
3696
  #, fuzzy
3697
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3698
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3699
  msgstr "Wszystkie Client ID, Client Secret oraz Calendar ID są wymagane!"
3700
 
3701
- #: app/features/ix.php:4285
3702
  #, fuzzy, php-format
3703
  #| msgid "All seems good! Please click %s for authenticating your app."
3704
  msgid "All seems good! Please click %s to authenticate your app."
@@ -3706,41 +3716,41 @@ msgstr ""
3706
  "Wszystko wydaje się być w porządku! Kliknij %s w celu uwierzytelnienia "
3707
  "swojej aplikacji."
3708
 
3709
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3710
  #: app/features/mec/settings.php:1496
3711
  msgid "here"
3712
  msgstr ""
3713
 
3714
- #: app/features/ix.php:4340
3715
  #, fuzzy
3716
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3717
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3718
  msgstr "Wszystkie Client APP, Client Secret oraz Calendar ID są wymagane!"
3719
 
3720
- #: app/features/ix.php:4502
3721
  #, fuzzy, php-format
3722
  #| msgid "%s events added to Google Calendar successfully."
3723
  msgid "%s events added to Google Calendar with success."
3724
  msgstr "%s wydarzenia dodane do Kalendarza Google pomyślnie."
3725
 
3726
- #: app/features/ix.php:4503
3727
  #, fuzzy, php-format
3728
  #| msgid "%s previously added events get updated."
3729
  msgid "%s Updated previously added events."
3730
  msgstr "%s wcześniej dodane wydarzenia zaktualizowane."
3731
 
3732
- #: app/features/ix.php:4504
3733
  #, php-format
3734
  msgid "%s events failed to add for following reasons: %s"
3735
  msgstr "%s wydarzenia nie udało się dodać z następujących powodów:%s"
3736
 
3737
- #: app/features/ix.php:4536
3738
  #, fuzzy
3739
  #| msgid "Please insert your facebook page's link."
3740
  msgid "Please insert your Facebook page's link."
3741
  msgstr "Wstaw własny odnośnik Facebook."
3742
 
3743
- #: app/features/ix.php:4547 app/features/ix.php:4589
3744
  #, fuzzy
3745
  #| msgid ""
3746
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3751,7 +3761,7 @@ msgid ""
3751
  msgstr ""
3752
  "Nie mogliśmy rozpoznać odnośnika Facebook. Sprawdź link i spróbuj ponownie."
3753
 
3754
- #: app/features/ix.php:4584
3755
  msgid "Please insert your facebook page's link."
3756
  msgstr "Wstaw własny odnośnik Facebook."
3757
 
@@ -3967,7 +3977,7 @@ msgstr "Uczestnicy wydarzenia"
3967
  msgid "Add to Google Calendar"
3968
  msgstr "Dodaj do Kalendarza Google"
3969
 
3970
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3971
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3972
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3973
  #: app/features/mec/single.php:604
@@ -4085,7 +4095,7 @@ msgstr "Importuj z kalendarza Facebook"
4085
  msgid "Import all of your Facebook events into MEC."
4086
  msgstr "Importuj wszystkie wydarzenia Facebook do MEC."
4087
 
4088
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4089
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4090
  msgid "Documentation"
4091
  msgstr "Dokumentacja"
@@ -4409,7 +4419,7 @@ msgid ""
4409
  msgstr ""
4410
 
4411
  #: app/features/labels.php:79 app/features/locations.php:77
4412
- #: app/features/organizers.php:77 app/features/speakers.php:79
4413
  #: app/features/tag.php:77
4414
  #, fuzzy, php-format
4415
  #| msgid "Search Coupons"
@@ -4417,7 +4427,7 @@ msgid "← Back to %s"
4417
  msgstr "Szukaj kuponu"
4418
 
4419
  #: app/features/labels.php:80 app/features/locations.php:78
4420
- #: app/features/organizers.php:78 app/features/speakers.php:80
4421
  #: app/features/tag.php:78
4422
  #, fuzzy, php-format
4423
  #| msgid "No events found!"
@@ -4463,7 +4473,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4463
  msgstr ""
4464
 
4465
  #: app/features/labels.php:186 app/features/locations.php:269
4466
- #: app/features/organizers.php:210 app/features/speakers.php:289
4467
  #: app/modules/booking/steps/tickets.php:172
4468
  msgid "Count"
4469
  msgstr "Liczba"
@@ -4479,7 +4489,7 @@ msgid "Event %s"
4479
  msgstr "Wydarzenie %s"
4480
 
4481
  #: app/features/locations.php:59 app/features/mec.php:526
4482
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4483
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4484
  #: app/libraries/main.php:7623
4485
  msgid "Locations"
@@ -4490,7 +4500,7 @@ msgid "Enter the location address"
4490
  msgstr "Podaj adres lokalizacji"
4491
 
4492
  #: app/features/locations.php:131 app/features/locations.php:197
4493
- #: app/features/locations.php:374 app/features/popup/event.php:149
4494
  msgid "Latitude"
4495
  msgstr "Szerokość geograficzna"
4496
 
@@ -4501,7 +4511,7 @@ msgid "Geo latitude (Optional for Lite)"
4501
  msgstr "Szerokość geograficzna (opcjonalnie)"
4502
 
4503
  #: app/features/locations.php:139 app/features/locations.php:201
4504
- #: app/features/locations.php:375 app/features/popup/event.php:150
4505
  msgid "Longitude"
4506
  msgstr "Długość geograficzna"
4507
 
@@ -4526,22 +4536,22 @@ msgstr "Szerokość geograficzna (opcjonalnie)"
4526
 
4527
  #: app/features/locations.php:156 app/features/locations.php:210
4528
  #: app/features/organizers.php:128 app/features/organizers.php:161
4529
- #: app/features/speakers.php:176 app/features/speakers.php:229
4530
  msgid "Thumbnail"
4531
  msgstr "Miniatura"
4532
 
4533
  #: app/features/locations.php:329 app/features/occurrences.php:460
4534
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4535
  #, php-format
4536
  msgid "Event Main %s"
4537
  msgstr ""
4538
 
4539
  #: app/features/locations.php:332 app/features/occurrences.php:464
4540
- #: app/features/popup/event.php:119
4541
  msgid "Hide location"
4542
  msgstr "Ukryj lokalizację"
4543
 
4544
- #: app/features/locations.php:333 app/features/popup/event.php:120
4545
  msgid "Insert a new location"
4546
  msgstr "Dodaj nową lokalizację"
4547
 
@@ -4549,30 +4559,30 @@ msgstr "Dodaj nową lokalizację"
4549
  msgid "Choose one of saved locations or insert new one below."
4550
  msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
4551
 
4552
- #: app/features/locations.php:348 app/features/popup/event.php:141
4553
  msgid "Location Name"
4554
  msgstr "Nazwa lokalizacji"
4555
 
4556
- #: app/features/locations.php:349 app/features/popup/event.php:142
4557
  msgid "eg. City Hall"
4558
  msgstr "np. Ratusz"
4559
 
4560
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4561
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4562
  msgid "Event Location"
4563
  msgstr "Miejsce wydarzenia"
4564
 
4565
- #: app/features/locations.php:353 app/features/popup/event.php:146
4566
  msgid "eg. City hall, Manhattan, New York"
4567
  msgstr "np. Rynek, 50-996 Wrocław"
4568
 
4569
- #: app/features/locations.php:378 app/features/popup/event.php:153
4570
  #, fuzzy
4571
  #| msgid "Longitude"
4572
  msgid "Latitude/Longitude"
4573
  msgstr "Długość geograficzna"
4574
 
4575
- #: app/features/locations.php:379 app/features/popup/event.php:154
4576
  msgid ""
4577
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4578
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4581,28 +4591,28 @@ msgid ""
4581
  "the location on the map to find lat long coordinates."
4582
  msgstr ""
4583
 
4584
- #: app/features/locations.php:379 app/features/popup/event.php:154
4585
  msgid "Get Latitude and Longitude"
4586
  msgstr ""
4587
 
4588
  #: app/features/locations.php:392 app/features/organizers.php:315
4589
- #: app/features/popup/event.php:204
4590
  msgid "Choose image"
4591
  msgstr "Wybierz obraz"
4592
 
4593
- #: app/features/locations.php:406 app/features/occurrences.php:480
4594
- #: app/features/popup/event.php:137
4595
  msgid "Don't show map in single event page"
4596
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
4597
 
4598
- #: app/features/locations.php:409 app/libraries/main.php:7607
4599
  #: app/libraries/main.php:7654
4600
  #, fuzzy
4601
  #| msgid "Search Locations"
4602
  msgid "Other Locations"
4603
  msgstr "Szukaj"
4604
 
4605
- #: app/features/locations.php:411
4606
  msgid ""
4607
  "You can select extra locations in addition to main location if you like."
4608
  msgstr ""
@@ -4680,7 +4690,7 @@ msgstr "Wsparcie"
4680
  msgid "Support"
4681
  msgstr "Wsparcie"
4682
 
4683
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4684
  #: app/features/mec/meta_boxes/filter.php:71
4685
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4686
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4688,7 +4698,7 @@ msgid "Organizers"
4688
  msgstr "Organizatorzy"
4689
 
4690
  #: app/features/mec.php:536 app/features/mec.php:596
4691
- #: app/features/mec/dashboard.php:221
4692
  msgid "Shortcodes"
4693
  msgstr "Shortcodes"
4694
 
@@ -4909,7 +4919,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4909
  msgstr ""
4910
 
4911
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4912
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4913
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4914
  msgid "Version"
4915
  msgstr "Wersja"
@@ -4935,9 +4945,9 @@ msgid "Search..."
4935
  msgstr "Wyszukaj %s"
4936
 
4937
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4938
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4939
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4940
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4941
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4942
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4943
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5538,29 +5548,29 @@ msgstr "Automatycznie realizuj zamówienia WooCommerce"
5538
  msgid "It applies only to the orders that are related to MEC."
5539
  msgstr "Stosuje się tylko do zamówień, które są związane z MEC."
5540
 
5541
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5542
  msgid "After Add to Cart"
5543
  msgstr ""
5544
 
5545
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5546
  #, fuzzy
5547
  #| msgid "Get Direction"
5548
  msgid "Redirect to Cart"
5549
  msgstr "Wskaż drogę"
5550
 
5551
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5552
  #, fuzzy
5553
  #| msgid "Get Direction"
5554
  msgid "Redirect to Checkout"
5555
  msgstr "Wskaż drogę"
5556
 
5557
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5558
  #, fuzzy
5559
  #| msgid "View Detail Button"
5560
  msgid "Optional View Cart Button"
5561
  msgstr "Pokaż szczegóły"
5562
 
5563
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5564
  msgid "Optional Checkout Button"
5565
  msgstr ""
5566
 
@@ -5618,81 +5628,87 @@ msgid ""
5618
  "(Stripe) got canceled."
5619
  msgstr ""
5620
 
5621
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5622
  msgid "Use MEC Cart System"
5623
  msgstr ""
5624
 
5625
- #: app/features/mec/booking.php:1119
5626
  msgid ""
5627
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5628
  "adding a simple cart and checkout system to your website."
5629
  msgstr ""
5630
 
5631
- #: app/features/mec/booking.php:1121
5632
  msgid "You cannot use following MEC features while using MEC Cart."
5633
  msgstr ""
5634
 
5635
- #: app/features/mec/booking.php:1123
5636
  #, fuzzy
5637
  #| msgid "Payment Gateways"
5638
  msgid "WooCommerce as Payment Gateway"
5639
  msgstr "Bramki płatności"
5640
 
5641
- #: app/features/mec/booking.php:1124
5642
  #, fuzzy
5643
  #| msgid "Next Occurrence of Other Events"
5644
  msgid "Currency Per Event"
5645
  msgstr "Kolejne wystąpienie innych wydarzeń"
5646
 
5647
- #: app/features/mec/booking.php:1125
5648
  #, fuzzy
5649
  #| msgid "Payment Gateways"
5650
  msgid "Disable Gateways Per Event"
5651
  msgstr "Bramki płatności"
5652
 
5653
- #: app/features/mec/booking.php:1126
5654
  #, fuzzy
5655
  #| msgid "Stripe"
5656
  msgid "Stripe Connect Gateway"
5657
  msgstr "Stripe"
5658
 
5659
- #: app/features/mec/booking.php:1127
5660
  #, fuzzy
5661
  #| msgid "Pay by WooCommerce"
5662
  msgid "Pay By WooCommerce Gateway"
5663
  msgstr "Zapłacić z WooCommerce"
5664
 
5665
- #: app/features/mec/booking.php:1128
5666
  #, fuzzy
5667
  #| msgid "New Organizer Name"
5668
  msgid "Organizer Payment Module"
5669
  msgstr "Nazwa nowego organizatora"
5670
 
5671
- #: app/features/mec/booking.php:1132
5672
  #, fuzzy
5673
  #| msgid "Start Date"
5674
  msgid "Cart Page"
5675
  msgstr "Data rozpoczęcia"
5676
 
5677
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5678
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5679
  #, php-format
5680
  msgid "Put %s shortcode into the page."
5681
  msgstr "Dodaj %s shortcode na stronie."
5682
 
5683
- #: app/features/mec/booking.php:1144
5684
  #, fuzzy
5685
  #| msgid "Checkout"
5686
  msgid "Checkout Page"
5687
  msgstr "Zamówienie"
5688
 
5689
- #: app/features/mec/booking.php:1170
5690
  #, fuzzy
5691
  #| msgid "Enable note field"
5692
  msgid "Enable Cart Invoice"
5693
  msgstr "Włącz pole uwag dla administratora"
5694
 
5695
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5696
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5697
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5698
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5700,7 +5716,7 @@ msgstr "Włącz pole uwag dla administratora"
5700
  msgid "Saved"
5701
  msgstr "Zapisane"
5702
 
5703
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5704
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5705
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5706
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5708,7 +5724,7 @@ msgstr "Zapisane"
5708
  msgid "Settings Saved!"
5709
  msgstr ""
5710
 
5711
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5712
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5713
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5714
  msgid "Please Refresh Page"
@@ -5724,12 +5740,7 @@ msgstr "Witaj %s"
5724
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5725
  msgstr ""
5726
 
5727
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5728
- msgctxt "plugin rate"
5729
- msgid "Rate the plugin ★★★★★"
5730
- msgstr ""
5731
-
5732
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5733
  #, php-format
5734
  msgid ""
5735
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5737,71 +5748,54 @@ msgid ""
5737
  "Spots, etc you should upgrade to the Pro version."
5738
  msgstr ""
5739
 
5740
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5741
  msgid "lite"
5742
  msgstr ""
5743
 
5744
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5745
  #: app/features/mec/support.php:126
5746
  msgid "GO PREMIUM"
5747
  msgstr ""
5748
 
5749
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5750
- #, php-format
5751
- msgid ""
5752
- "Easily get a discount coupon by rating us on %s or following and reposting "
5753
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5754
- msgstr ""
5755
-
5756
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5757
- #, fuzzy
5758
- #| msgid "Address"
5759
- msgid "WordPress"
5760
- msgstr "Adres"
5761
-
5762
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5763
- msgid "Copouns!"
5764
- msgstr ""
5765
-
5766
- #: app/features/mec/dashboard.php:115
5767
  #, fuzzy
5768
  #| msgid "Modern Events Calendar"
5769
  msgid "Getting started with Modern Events Calendar"
5770
  msgstr "Nowoczesny Kalendarz Wydarzeń"
5771
 
5772
- #: app/features/mec/dashboard.php:116
5773
  msgid ""
5774
  "In this short video, you can learn how to make an event and put a calendar "
5775
  "on your website. Please watch this 2 minutes video to the end."
5776
  msgstr ""
5777
 
5778
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5779
  #, fuzzy
5780
  #| msgid "MEC Activation"
5781
  msgid "License Activation"
5782
  msgstr "Aktywacja MEC"
5783
 
5784
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5785
  #, fuzzy
5786
  #| msgid "MEC Activation"
5787
  msgid "Activate Addons"
5788
  msgstr "Aktywacja MEC"
5789
 
5790
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5791
  msgid "You cannot access this section."
5792
  msgstr ""
5793
 
5794
- #: app/features/mec/dashboard.php:162
5795
  msgid ""
5796
  "In order to use all plugin features and options, please enter your purchase "
5797
  "code."
5798
  msgstr ""
5799
 
5800
- #: app/features/mec/dashboard.php:270
5801
  msgid "Popular Gateways"
5802
  msgstr "Popularne bramki płatności"
5803
 
5804
- #: app/features/mec/dashboard.php:328
5805
  msgid "Change Log"
5806
  msgstr "Dziennik Zmian"
5807
 
@@ -7372,7 +7366,7 @@ msgstr ""
7372
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7373
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7374
  #: app/features/popup/settings.php:272 app/features/search.php:109
7375
- #: app/features/speakers.php:60 app/features/speakers.php:286
7376
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7377
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7378
  #: app/modules/speakers/details.php:18
@@ -8720,7 +8714,7 @@ msgstr ""
8720
  msgid "Please, insert comma to separate reminder hours."
8721
  msgstr ""
8722
 
8723
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8724
  #: app/libraries/main.php:705
8725
  msgid "New Event"
8726
  msgstr "Nowe wydarzenie"
@@ -11042,13 +11036,13 @@ msgstr ""
11042
  msgid "Choose one of saved locations."
11043
  msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
11044
 
11045
- #: app/features/occurrences.php:491 app/features/organizers.php:280
11046
- #: app/features/popup/event.php:166
11047
  msgid "Hide organizer"
11048
  msgstr "Ukryj organizatora"
11049
 
11050
- #: app/features/occurrences.php:499 app/features/organizers.php:289
11051
- #: app/features/popup/event.php:175
11052
  msgid "Choose one of saved organizers or insert new one below."
11053
  msgstr "Wybierz organizatora z listy lub utwórz nowego."
11054
 
@@ -11061,7 +11055,7 @@ msgid "Insert organizer email address."
11061
  msgstr "Podaj adres email organizatora."
11062
 
11063
  #: app/features/organizers.php:120 app/features/organizers.php:157
11064
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11065
  msgid "Link to organizer page"
11066
  msgstr "Link do strony organizatora"
11067
 
@@ -11074,27 +11068,27 @@ msgstr ""
11074
  msgid "Contact info"
11075
  msgstr "Informacje kontaktowe"
11076
 
11077
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11078
  msgid "Insert a new organizer"
11079
  msgstr "Utwórz nowego organizatora"
11080
 
11081
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11082
  msgid "Phone number."
11083
  msgstr "Numer telefonu."
11084
 
11085
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11086
  msgid "eg. +1 (234) 5678"
11087
  msgstr "np. +48 123 456 789"
11088
 
11089
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11090
  msgid "Email address."
11091
  msgstr "Adres email."
11092
 
11093
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11094
  msgid "eg. john@smith.com"
11095
  msgstr "np. email@domena.pl"
11096
 
11097
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11098
  #, fuzzy
11099
  #| msgid "http://webnus.biz"
11100
  msgid "eg. https://webnus.net"
@@ -11110,72 +11104,72 @@ msgid ""
11110
  "You can select extra organizers in addition to main organizer if you like."
11111
  msgstr ""
11112
 
11113
- #: app/features/popup/event.php:58
11114
  #, fuzzy
11115
  #| msgid "Add Shortcode"
11116
  msgid "Adding an Event..."
11117
  msgstr "Dodaj shortcode"
11118
 
11119
- #: app/features/popup/event.php:66
11120
  #, fuzzy
11121
  #| msgid "Event Note"
11122
  msgid "Event Name"
11123
  msgstr "Uwaga"
11124
 
11125
- #: app/features/popup/event.php:67
11126
  msgid "Event name is required"
11127
  msgstr ""
11128
 
11129
- #: app/features/popup/event.php:128
11130
  #, fuzzy
11131
  #| msgid "Choose one of saved locations or insert new one below."
11132
  msgid "Choose one of saved locations or insert new one."
11133
  msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
11134
 
11135
- #: app/features/popup/event.php:132
11136
  #, fuzzy
11137
  #| msgid "Add New Location"
11138
  msgid "Add Location"
11139
  msgstr "Dodaj nową lokalizację"
11140
 
11141
- #: app/features/popup/event.php:179
11142
  #, fuzzy
11143
  #| msgid "Add New Organizer"
11144
  msgid "Add Organizer"
11145
  msgstr "Dodaj nowego organizatora"
11146
 
11147
- #: app/features/popup/event.php:219
11148
  #, fuzzy
11149
  #| msgid "Categories"
11150
  msgid "All Categories"
11151
  msgstr "Kategorie"
11152
 
11153
- #: app/features/popup/event.php:220
11154
  msgid "Most Used"
11155
  msgstr ""
11156
 
11157
- #: app/features/popup/event.php:231
11158
  #, fuzzy
11159
  #| msgid "Add New Label"
11160
  msgid "Add New Category"
11161
  msgstr "Dodaj nową etykietę"
11162
 
11163
- #: app/features/popup/event.php:242
11164
  #, fuzzy
11165
  #| msgid "Featured Image"
11166
  msgid "Set Featured Image"
11167
  msgstr "Obraz wyróżniający"
11168
 
11169
- #: app/features/popup/event.php:252
11170
  msgid "Your Event Has Been Created."
11171
  msgstr ""
11172
 
11173
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11174
  #: app/features/popup/shortcode.php:553
11175
  msgid "Prev"
11176
  msgstr ""
11177
 
11178
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11179
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11180
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11181
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11379,92 +11373,92 @@ msgstr "Wyszukaj %s"
11379
  msgid "No search result."
11380
  msgstr ""
11381
 
11382
- #: app/features/speakers.php:112 app/features/speakers.php:197
11383
- #: app/features/speakers.php:287
11384
  #, fuzzy
11385
  #| msgid "Title"
11386
  msgid "Job Title"
11387
  msgstr "Tytuł"
11388
 
11389
- #: app/features/speakers.php:115 app/features/speakers.php:198
11390
  msgid "Insert speaker job title."
11391
  msgstr ""
11392
 
11393
- #: app/features/speakers.php:123 app/features/speakers.php:202
11394
  #, fuzzy
11395
  #| msgid "Insert organizer phone number."
11396
  msgid "Insert speaker phone number."
11397
  msgstr "Podaj numer telefonu organizatora."
11398
 
11399
- #: app/features/speakers.php:131 app/features/speakers.php:206
11400
  #, fuzzy
11401
  #| msgid "Insert organizer email address."
11402
  msgid "Insert speaker email address."
11403
  msgstr "Podaj adres email organizatora."
11404
 
11405
- #: app/features/speakers.php:139 app/features/speakers.php:210
11406
  #, fuzzy
11407
  #| msgid "Insert -1 for unlimited usage"
11408
  msgid "Insert URL of Website"
11409
  msgstr "Wstaw -1 dla braku limitu"
11410
 
11411
- #: app/features/speakers.php:144 app/features/speakers.php:213
11412
  #, fuzzy
11413
  #| msgid "Facebook Page Link"
11414
  msgid "Facebook Page"
11415
  msgstr "Własny odnośnik Facebook"
11416
 
11417
- #: app/features/speakers.php:147 app/features/speakers.php:214
11418
  #, fuzzy
11419
  #| msgid "Import from Facebook Calendar"
11420
  msgid "Insert URL of Facebook Page"
11421
  msgstr "Importuj z kalendarza Facebook"
11422
 
11423
- #: app/features/speakers.php:152 app/features/speakers.php:217
11424
  msgid "Instagram"
11425
  msgstr ""
11426
 
11427
- #: app/features/speakers.php:155 app/features/speakers.php:218
11428
  #, fuzzy
11429
  #| msgid "Insert -1 for unlimited usage"
11430
  msgid "Insert URL of Instagram"
11431
  msgstr "Wstaw -1 dla braku limitu"
11432
 
11433
- #: app/features/speakers.php:160 app/features/speakers.php:221
11434
  #, fuzzy
11435
  #| msgid "Linkedin"
11436
  msgid "LinkedIn"
11437
  msgstr "Linkedin"
11438
 
11439
- #: app/features/speakers.php:163
11440
  #, fuzzy
11441
  #| msgid "Insert -1 for unlimited usage"
11442
  msgid "Insert URL of LinkedIn"
11443
  msgstr "Wstaw -1 dla braku limitu"
11444
 
11445
- #: app/features/speakers.php:168 app/features/speakers.php:225
11446
  #, fuzzy
11447
  #| msgid "Twitter"
11448
  msgid "Twitter Page"
11449
  msgstr "Twitter"
11450
 
11451
- #: app/features/speakers.php:171 app/features/speakers.php:226
11452
  #, fuzzy
11453
  #| msgid "Insert -1 for unlimited usage"
11454
  msgid "Insert URL of Twitter Page"
11455
  msgstr "Wstaw -1 dla braku limitu"
11456
 
11457
- #: app/features/speakers.php:222
11458
  #, fuzzy
11459
  #| msgid "Insert -1 for unlimited usage"
11460
  msgid "Insert URL of linkedin"
11461
  msgstr "Wstaw -1 dla braku limitu"
11462
 
11463
- #: app/features/speakers.php:347
11464
  msgid "Sorry, You must insert speaker name!"
11465
  msgstr ""
11466
 
11467
- #: app/features/speakers.php:396
11468
  msgid ""
11469
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11470
  "section and speaker widget section!"
@@ -11553,70 +11547,70 @@ msgctxt "plugin link"
11553
  msgid "Upgrade to Pro Version"
11554
  msgstr ""
11555
 
11556
- #: app/libraries/factory.php:234
11557
  msgctxt "plugin link"
11558
  msgid "Settings"
11559
  msgstr "Ustawienia"
11560
 
11561
- #: app/libraries/factory.php:239
11562
  msgctxt "plugin link"
11563
  msgid "Upgrade"
11564
  msgstr ""
11565
 
11566
- #: app/libraries/factory.php:393
11567
  msgid "day"
11568
  msgstr "dzień"
11569
 
11570
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11571
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11572
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11573
  msgid "days"
11574
  msgstr "dni"
11575
 
11576
- #: app/libraries/factory.php:395
11577
  msgid "hour"
11578
  msgstr "godzina"
11579
 
11580
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11581
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11582
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11583
  msgid "hours"
11584
  msgstr "godzin"
11585
 
11586
- #: app/libraries/factory.php:397
11587
  msgid "minute"
11588
  msgstr "minuta"
11589
 
11590
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11591
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11592
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11593
  msgid "minutes"
11594
  msgstr "minut"
11595
 
11596
- #: app/libraries/factory.php:399
11597
  msgid "second"
11598
  msgstr "sekunda"
11599
 
11600
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11601
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11602
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11603
  msgid "seconds"
11604
  msgstr "sekund"
11605
 
11606
- #: app/libraries/factory.php:477
11607
  msgid "MEC Single Sidebar"
11608
  msgstr "Pasek boczny wydarzenia"
11609
 
11610
- #: app/libraries/factory.php:478
11611
  msgid "Custom sidebar for single and modal page of MEC."
11612
  msgstr ""
11613
  "Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
11614
 
11615
- #: app/libraries/factory.php:1199
11616
  msgid "Notice:"
11617
  msgstr ""
11618
 
11619
- #: app/libraries/factory.php:1200
11620
  msgid "This update includes only bug fixes."
11621
  msgstr ""
11622
 
@@ -11772,12 +11766,6 @@ msgstr "Shortcode"
11772
  msgid "%s Form"
11773
  msgstr ""
11774
 
11775
- #: app/libraries/main.php:689
11776
- #, fuzzy
11777
- #| msgid "Support"
11778
- msgid "MEC Cart"
11779
- msgstr "Wsparcie"
11780
-
11781
  #: app/libraries/main.php:726
11782
  msgid "Only For Bookers"
11783
  msgstr ""
@@ -12569,12 +12557,7 @@ msgstr "Czas rozpoczęcia"
12569
  msgid "End at: %s - %s"
12570
  msgstr ""
12571
 
12572
- #: app/libraries/skins.php:1755
12573
- #, php-format
12574
- msgid "Every %s"
12575
- msgstr ""
12576
-
12577
- #: app/libraries/skins.php:1756
12578
  #, fuzzy
12579
  #| msgid "Repeat"
12580
  msgid "Repeating Event"
@@ -13077,6 +13060,11 @@ msgstr "Zespół Webnus"
13077
  msgid "http://webnus.net"
13078
  msgstr ""
13079
 
 
 
 
 
 
13080
  #, fuzzy
13081
  #~| msgid ""
13082
  #~| "The %s ticket is sold out. You can try another ticket or another date."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
180
  msgstr "Anulowane"
181
 
182
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
183
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
184
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
185
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
186
  #: app/features/mec/notifications.php:1922
218
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
219
  #: app/features/autoemails.php:60 app/features/events.php:606
220
  #: app/features/events.php:2650 app/features/events.php:2717
221
+ #: app/features/events.php:2806 app/features/events.php:4445
222
+ #: app/features/fes.php:280 app/features/fes/form.php:812
223
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
224
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
225
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
226
  #: app/features/organizers.php:112 app/features/organizers.php:153
227
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
228
+ #: app/features/speakers.php:211 app/libraries/main.php:653
229
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
230
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
231
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
385
  #: app/features/events.php:2808 app/features/mec/booking.php:800
386
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
387
  #: app/features/organizers.php:104 app/features/organizers.php:149
388
+ #: app/features/speakers.php:126 app/features/speakers.php:207
389
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
390
  msgid "Tel"
391
  msgstr "Tel"
392
 
532
  msgid "Agreement"
533
  msgstr ""
534
 
535
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
536
+ #, php-format
537
+ msgid "I agree with %s"
538
+ msgstr ""
539
+
540
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
541
  #, php-format
542
  msgid "Instead of %s, the page title with a link will be show."
716
  #: app/features/events.php:1843 app/features/events.php:2014
717
  #: app/features/events.php:2029 app/features/events.php:2271
718
  #: app/features/events.php:2283 app/features/events.php:2476
719
+ #: app/features/events.php:2513 app/features/fes/form.php:460
720
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
721
  #: app/features/locations.php:341 app/features/mec/booking.php:113
722
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
723
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
794
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
795
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
796
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
797
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
798
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
799
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
800
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
801
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
802
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
960
 
961
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
962
  #: app/features/events.php:432 app/features/events.php:1283
963
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
964
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
965
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
966
  #: app/skins/single.php:1126 app/skins/single/default.php:213
967
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1040
  msgstr ""
1041
 
1042
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1043
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1044
  #: app/features/labels.php:61 app/features/labels.php:227
1045
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1046
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1076
  msgstr "Ukryj lokalizację"
1077
 
1078
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1079
+ #: app/features/events.php:3876 app/features/events.php:4190
1080
  #: app/features/locations.php:58 app/features/locations.php:267
1081
  #: app/features/locations.php:329 app/features/locations.php:331
1082
  #: app/features/locations.php:340
1096
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1097
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1098
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1099
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1100
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1101
  #: app/features/search.php:97 app/libraries/main.php:3020
1102
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1110
 
1111
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1112
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1113
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1114
  #: app/skins/single.php:1406 app/skins/single.php:1473
1115
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1116
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1133
 
1134
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1135
  #: app/features/events.php:1519 app/features/events.php:1532
1136
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1137
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1138
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1139
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1184
 
1185
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1186
  #: app/features/events.php:431 app/features/events.php:3877
1187
+ #: app/features/events.php:4192 app/features/events.php:4193
1188
+ #: app/features/events.php:4194
1189
  #: app/features/mec/meta_boxes/display_options.php:1660
1190
  #: app/features/mec/meta_boxes/search_form.php:80
1191
  #: app/features/mec/meta_boxes/search_form.php:168
1200
  #: app/features/mec/meta_boxes/search_form.php:983
1201
  #: app/features/mec/meta_boxes/search_form.php:1070
1202
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1203
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1204
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1205
  #: app/features/organizers.php:58 app/features/organizers.php:208
1206
  #: app/features/organizers.php:277 app/features/organizers.php:279
1207
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1208
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1209
  #: app/features/popup/settings.php:263 app/features/search.php:103
1210
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1211
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1329
  #: app/features/booking/calendar_novel.php:145
1330
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1331
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1332
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1333
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1334
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1335
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1336
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1396
 
1397
  #: app/features/autoemails.php:74 app/features/events.php:230
1398
  #: app/features/labels.php:72 app/features/locations.php:70
1399
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1400
  #: app/features/tag.php:70
1401
  #, php-format
1402
  msgid "Edit %s"
1462
  msgid "Go to events page"
1463
  msgstr "Pokaż Mapy Google na stronie wydarzenia"
1464
 
1465
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1466
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1467
  #: app/features/wc.php:91 app/libraries/main.php:3072
1468
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1544
  msgid "Back to Cart"
1545
  msgstr "Wróć do listy wydarzeń"
1546
 
1547
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1548
  #: app/features/mec/settings.php:907
1549
  msgid "Event Color"
1550
  msgstr "Kolor wydarzenia"
1556
  msgstr "Kolor wydarzenia"
1557
 
1558
  #: app/features/contextual.php:55 app/features/mec.php:546
1559
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1560
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1561
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1562
  #: app/libraries/main.php:738
1563
  msgid "Settings"
1671
  msgstr "Szczegóły wydarzenia / Strona wydarzenia"
1672
 
1673
  #: app/features/contextual.php:166 app/features/events.php:1298
1674
+ #: app/features/fes/form.php:885
1675
  msgid "Currency Options"
1676
  msgstr "Ustawienia waluty"
1677
 
1763
  msgstr ""
1764
 
1765
  #: app/features/dlfile.php:297 app/features/events.php:3874
1766
+ #: app/features/events.php:4183 app/features/events.php:4734
1767
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1768
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1769
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1770
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1773
  msgstr "Tytuł"
1774
 
1775
  #: app/features/dlfile.php:301 app/features/events.php:1988
1776
+ #: app/features/events.php:2248 app/features/events.php:4184
1777
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1778
  #: app/libraries/hourlyschedule.php:152
1779
  msgid "Description"
1820
  msgstr "Przed - $10"
1821
 
1822
  #: app/features/emails/details.php:35 app/features/events.php:1223
1823
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1824
  msgid "After"
1825
  msgstr "Po"
1826
 
1831
  msgstr "Następne wystąpienie"
1832
 
1833
  #: app/features/emails/details.php:40 app/features/events.php:192
1834
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1835
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1836
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1837
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1852
  msgid "Add Event"
1853
  msgstr "Dodaj wydarzenie"
1854
 
1855
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1856
  msgid "Add New Event"
1857
  msgstr "Dodaj nowe wydarzenie"
1858
 
1859
+ #: app/features/events.php:196 app/features/ix.php:4614
1860
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1861
  #: app/skins/map/tpl.php:93
1862
  msgid "No events found!"
1867
  msgstr ""
1868
 
1869
  #: app/features/events.php:199 app/features/fes/list.php:100
1870
+ #: app/features/popup/event.php:259
1871
  msgid "View Event"
1872
  msgstr "Zobacz wydarzenie"
1873
 
1876
  msgstr "Nie znaleziono wydarzeń w Koszu!"
1877
 
1878
  #: app/features/events.php:219 app/features/events.php:3831
1879
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1880
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1881
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1882
  #: app/libraries/main.php:7619
1885
 
1886
  #: app/features/events.php:229 app/features/labels.php:71
1887
  #: app/features/locations.php:69 app/features/organizers.php:69
1888
+ #: app/features/speakers.php:77 app/features/tag.php:69
1889
  #, php-format
1890
  msgid "All %s"
1891
  msgstr "Wszystkie %s"
1892
 
1893
  #: app/features/events.php:231 app/features/labels.php:73
1894
  #: app/features/locations.php:71 app/features/organizers.php:71
1895
+ #: app/features/speakers.php:79 app/features/tag.php:71
1896
  #, php-format
1897
  msgid "View %s"
1898
  msgstr "Wyświetl %s"
1899
 
1900
  #: app/features/events.php:232 app/features/labels.php:74
1901
  #: app/features/locations.php:72 app/features/organizers.php:72
1902
+ #: app/features/speakers.php:80 app/features/tag.php:72
1903
  #, php-format
1904
  msgid "Update %s"
1905
  msgstr "Zaktualizuj %s"
1906
 
1907
  #: app/features/events.php:233 app/features/labels.php:75
1908
  #: app/features/locations.php:73 app/features/organizers.php:73
1909
+ #: app/features/speakers.php:81 app/features/tag.php:73
1910
  #, php-format
1911
  msgid "Add New %s"
1912
  msgstr "Dodaj nowy %s"
1913
 
1914
  #: app/features/events.php:234 app/features/labels.php:76
1915
  #: app/features/locations.php:74 app/features/organizers.php:74
1916
+ #: app/features/speakers.php:82 app/features/tag.php:74
1917
  #, php-format
1918
  msgid "New %s Name"
1919
  msgstr "Nowa nazwa %s"
1920
 
1921
  #: app/features/events.php:235 app/features/labels.php:77
1922
  #: app/features/locations.php:75 app/features/organizers.php:75
1923
+ #: app/features/speakers.php:83 app/features/tag.php:75
1924
  #, php-format
1925
  msgid "Popular %s"
1926
  msgstr "Popularne %s"
1927
 
1928
  #: app/features/events.php:236 app/features/labels.php:78
1929
  #: app/features/locations.php:76 app/features/organizers.php:76
1930
+ #: app/features/speakers.php:84 app/features/tag.php:76
1931
  #, php-format
1932
  msgid "Search %s"
1933
  msgstr "Wyszukaj %s"
1957
  #: app/features/events.php:278 app/features/events.php:336
1958
  #: app/features/locations.php:161 app/features/locations.php:213
1959
  #: app/features/organizers.php:133 app/features/organizers.php:164
1960
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1961
  msgid "Upload/Add image"
1962
  msgstr "Prześlij / Dodaj obraz"
1963
 
1966
  #: app/features/locations.php:393 app/features/locations.php:400
1967
  #: app/features/organizers.php:134 app/features/organizers.php:165
1968
  #: app/features/organizers.php:316 app/features/organizers.php:323
1969
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1970
  msgid "Remove image"
1971
  msgstr "Usuń obraz"
1972
 
1986
  msgid "Date And Time"
1987
  msgstr "Data i godzina"
1988
 
1989
+ #: app/features/events.php:425 app/features/fes/form.php:386
1990
  msgid "Event Repeating"
1991
  msgstr "Wydarzenie powtarzalne"
1992
 
2033
  msgstr "Dane gości"
2034
 
2035
  #: app/features/events.php:605 app/features/events.php:2641
2036
+ #: app/features/events.php:4442 app/features/fes.php:280
2037
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2038
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2039
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2040
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2041
  msgid "Name"
2042
  msgstr "Imię"
2047
  "overwrite in the next import from Google."
2048
  msgstr ""
2049
 
2050
+ #: app/features/events.php:619 app/features/fes/form.php:284
2051
  msgid "Date and Time"
2052
  msgstr "Data i godzina"
2053
 
2054
  #: app/features/events.php:622 app/features/events.php:626
2055
+ #: app/features/events.php:3878 app/features/events.php:4185
2056
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2057
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2058
  #: app/features/mec/meta_boxes/display_options.php:57
2059
  #: app/features/mec/meta_boxes/display_options.php:312
2071
  #: app/features/mec/meta_boxes/display_options.php:2347
2072
  #: app/features/mec/meta_boxes/display_options.php:2478
2073
  #: app/features/mec/meta_boxes/display_options.php:2584
2074
+ #: app/features/popup/event.php:79
2075
  msgid "Start Date"
2076
  msgstr "Data rozpoczęcia"
2077
 
2078
  #: app/features/events.php:642 app/features/events.php:646
2079
+ #: app/features/events.php:3879 app/features/events.php:4187
2080
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2081
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2082
  #: app/features/mec/meta_boxes/display_options.php:73
2083
  #: app/features/mec/meta_boxes/display_options.php:328
2086
  #: app/features/mec/meta_boxes/display_options.php:788
2087
  #: app/features/mec/meta_boxes/display_options.php:1618
2088
  #: app/features/mec/meta_boxes/display_options.php:2363
2089
+ #: app/features/popup/event.php:96
2090
  msgid "End Date"
2091
  msgstr "Data zakończenia"
2092
 
2093
+ #: app/features/events.php:669 app/features/fes/form.php:326
2094
+ #: app/features/popup/event.php:113
2095
  #, fuzzy
2096
  #| msgid "All Day Event"
2097
  msgid "All-day Event"
2098
  msgstr "Wydarzenie całodniowe"
2099
 
2100
+ #: app/features/events.php:679 app/features/fes/form.php:329
2101
  msgid "Hide Event Time"
2102
  msgstr "Ukryj czas wydarzenia"
2103
 
2104
+ #: app/features/events.php:689 app/features/fes/form.php:332
2105
  msgid "Hide Event End Time"
2106
  msgstr "Ukryj czas zakończenia wydarzenia"
2107
 
2108
  #: app/features/events.php:694 app/features/events.php:698
2109
+ #: app/features/fes/form.php:336
2110
  #, fuzzy
2111
  #| msgid "Note to reviewer"
2112
  msgid "Notes on the time"
2113
  msgstr "Uwaga dla administratora"
2114
 
2115
+ #: app/features/events.php:699 app/features/fes/form.php:337
2116
  #, fuzzy
2117
  #| msgid ""
2118
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2124
  "Treść komentarza wyświetlana obok czasu wydarzenia. Np. strefa czasowa lub "
2125
  "dodatkowe informacje."
2126
 
2127
+ #: app/features/events.php:711 app/features/fes/form.php:344
2128
  #, fuzzy
2129
  #| msgid "Timezone: %s"
2130
  msgid "Timezone"
2135
  #: app/features/events.php:1793 app/features/events.php:1813
2136
  #: app/features/events.php:1868 app/features/events.php:2438
2137
  #: app/features/events.php:2561 app/features/events.php:2672
2138
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2139
  msgid "Inherit from global options"
2140
  msgstr "Dziedziczenie z opcji globalnych"
2141
 
2142
  #: app/features/events.php:725 app/features/events.php:728
2143
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2144
  #: app/features/mec/settings.php:858
2145
  #, fuzzy
2146
  #| msgid "Countdown View"
2147
  msgid "Countdown Method"
2148
  msgstr "Widok odliczania"
2149
 
2150
+ #: app/features/events.php:730 app/features/fes/form.php:363
2151
  #, fuzzy
2152
  #| msgid "On Event Start"
2153
  msgid "Count to Event Start"
2154
  msgstr "Po rozpoczęciu wydarzenia"
2155
 
2156
+ #: app/features/events.php:731 app/features/fes/form.php:364
2157
  #, fuzzy
2158
  #| msgid "On Event End"
2159
  msgid "Count to Event End"
2160
  msgstr "Podczas zakończenia wydarzenia"
2161
 
2162
+ #: app/features/events.php:737 app/features/fes/form.php:371
2163
  #: app/modules/weather/darksky.php:57
2164
  msgid "Visibility"
2165
  msgstr ""
2166
 
2167
+ #: app/features/events.php:740 app/features/fes/form.php:374
2168
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2169
  #, fuzzy
2170
  #| msgid "Event Cost"
2171
  msgid "Event Visibility"
2172
  msgstr "Koszt wydarzenia"
2173
 
2174
+ #: app/features/events.php:741 app/features/fes/form.php:375
2175
  #, fuzzy
2176
  #| msgid "Booking"
2177
  msgid "Show on Shortcodes"
2178
  msgstr "Rezerwacja"
2179
 
2180
+ #: app/features/events.php:742 app/features/fes/form.php:376
2181
  #, fuzzy
2182
  #| msgid "Shortcodes"
2183
  msgid "Hide on Shortcodes"
2184
  msgstr "Shortcodes"
2185
 
2186
+ #: app/features/events.php:749 app/features/fes/form.php:384
2187
  #, fuzzy
2188
  #| msgid "Repeat"
2189
  msgid "Repeating"
2195
  msgid "Event Repeating (Recurring events)"
2196
  msgstr "Wydarzenie powtarzalne"
2197
 
2198
+ #: app/features/events.php:762 app/features/fes/form.php:390
2199
  msgid "Repeats"
2200
  msgstr "Powtórzenia"
2201
 
2202
+ #: app/features/events.php:770 app/features/fes/form.php:392
2203
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2204
+ #: app/skins/default_full_calendar/tpl.php:79
2205
  #: app/skins/full_calendar/tpl.php:140
2206
  msgid "Daily"
2207
  msgstr "Codziennie"
2208
 
2209
+ #: app/features/events.php:777 app/features/fes/form.php:393
2210
+ #: app/libraries/skins.php:1772
2211
  msgid "Every Weekday"
2212
  msgstr "Codziennie w dni powszednie"
2213
 
2214
+ #: app/features/events.php:784 app/features/fes/form.php:394
2215
+ #: app/libraries/skins.php:1769
2216
  msgid "Every Weekend"
2217
  msgstr "Codziennie w dni wolne"
2218
 
2219
+ #: app/features/events.php:791 app/features/fes/form.php:395
2220
  msgid "Certain Weekdays"
2221
  msgstr "Wybrane dni"
2222
 
2223
+ #: app/features/events.php:798 app/features/fes/form.php:396
2224
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2225
  #: app/skins/full_calendar/tpl.php:139
2226
  msgid "Weekly"
2227
  msgstr "Co tydzień"
2228
 
2229
+ #: app/features/events.php:805 app/features/fes/form.php:397
2230
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2231
+ #: app/skins/default_full_calendar/tpl.php:77
2232
  #: app/skins/full_calendar/tpl.php:138
2233
  msgid "Monthly"
2234
  msgstr "Co miesiąc"
2235
 
2236
+ #: app/features/events.php:812 app/features/fes/form.php:398
2237
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2238
+ #: app/skins/default_full_calendar/tpl.php:76
2239
  #: app/skins/full_calendar/tpl.php:137
2240
  msgid "Yearly"
2241
  msgstr "Co roku"
2242
 
2243
+ #: app/features/events.php:819 app/features/fes/form.php:399
2244
  msgid "Custom Days"
2245
  msgstr "Niestandardowo"
2246
 
2247
+ #: app/features/events.php:826 app/features/fes/form.php:400
2248
  #, fuzzy
2249
  #| msgid "Advanced Method"
2250
  msgid "Advanced"
2251
  msgstr "Zaawansowana metoda"
2252
 
2253
+ #: app/features/events.php:831 app/features/fes/form.php:404
2254
  msgid "Repeat Interval"
2255
  msgstr "Częstotliwość powtarzania"
2256
 
2257
+ #: app/features/events.php:833 app/features/fes/form.php:405
2258
  msgid "Repeat interval"
2259
  msgstr "Częstotliwość powtarzania"
2260
 
2261
+ #: app/features/events.php:837 app/features/fes/form.php:408
2262
  msgid "Week Days"
2263
  msgstr "Dni tygodnia"
2264
 
2270
 
2271
  #: app/features/events.php:860 app/features/events.php:2101
2272
  #: app/features/events.php:2129 app/features/events.php:2343
2273
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2274
  #: app/features/ix/import_g_calendar.php:51
2275
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2276
  #: app/libraries/skins.php:1389
2281
  #: app/features/events.php:2085 app/features/events.php:2167
2282
  #: app/features/events.php:2332 app/features/events.php:2376
2283
  #: app/features/events.php:2449 app/features/events.php:2566
2284
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2285
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2286
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2287
  msgid "Add"
2288
  msgstr "Dodaj"
2289
 
2290
+ #: app/features/events.php:877 app/features/fes/form.php:456
2291
  #, fuzzy
2292
  #| msgid "Custom Days"
2293
  msgid "Custom Days Repeating"
2294
  msgstr "Niestandardowo"
2295
 
2296
+ #: app/features/events.php:880 app/features/fes/form.php:459
2297
  msgid ""
2298
  "Add certain days to event occurrence dates. If you have a single day event, "
2299
  "start and end dates should be the same, If you have a multiple day event, "
2302
 
2303
  #: app/features/events.php:891 app/features/events.php:2105
2304
  #: app/features/events.php:2133 app/features/events.php:2347
2305
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2306
  #, fuzzy
2307
  #| msgid "Enabled"
2308
  msgid "End"
2309
  msgstr "Włączone"
2310
 
2311
+ #: app/features/events.php:968 app/features/fes/form.php:532
2312
  #, fuzzy
2313
  #| msgid "First name"
2314
  msgid "First"
2315
  msgstr "Imię"
2316
 
2317
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2318
  #, fuzzy
2319
  #| msgid "second"
2320
  msgid "Second"
2321
  msgstr "sekunda"
2322
 
2323
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2324
  msgid "Third"
2325
  msgstr ""
2326
 
2327
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2328
  msgid "Fourth"
2329
  msgstr ""
2330
 
2331
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2332
  #, fuzzy
2333
  #| msgid "Last name"
2334
  msgid "Last"
2335
  msgstr "Nazwisko"
2336
 
2337
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2338
  msgid "Ends Repeat"
2339
  msgstr "Koniec powtarzania"
2340
 
2341
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2342
  msgid "Never"
2343
  msgstr "Nigdy"
2344
 
2345
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2346
  msgid "On"
2347
  msgstr "W"
2348
 
2349
  #: app/features/events.php:1227 app/features/events.php:1231
2350
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2351
  msgid "Occurrences times"
2352
  msgstr "Ilość wystąpień"
2353
 
2363
  "Wydarzenie zakończy się po wybranej ilości powtórzeń. Przykładowo, jeżeli "
2364
  "wybierzesz 10, wydarzenie zakończy się po 10 powtórzeniach."
2365
 
2366
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2367
  #, fuzzy
2368
  #| msgid "Next Occurrence of Other Events"
2369
  msgid "Show only one occurrence of this event"
2370
  msgstr "Kolejne wystąpienie innych wydarzeń"
2371
 
2372
+ #: app/features/events.php:1277 app/features/events.php:4195
2373
+ #: app/features/fes/form.php:867
2374
  #: app/features/mec/meta_boxes/search_form.php:116
2375
  #: app/features/mec/meta_boxes/search_form.php:204
2376
  #: app/features/mec/meta_boxes/search_form.php:292
2394
  #: app/features/mec/notifications.php:1511
2395
  #: app/features/mec/notifications.php:1628
2396
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2397
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2398
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2399
  #: app/widgets/single.php:122
2400
  msgid "Event Cost"
2401
  msgstr "Koszt wydarzenia"
2402
 
2403
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2404
  msgid "Show the minimum price based on tickets"
2405
  msgstr ""
2406
 
2407
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2408
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2409
  #: app/libraries/main.php:646
2410
  msgid "Currency"
2411
  msgstr "Waluta"
2412
 
2413
  #: app/features/events.php:1310 app/features/events.php:1315
2414
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2415
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2416
  msgid "Currency Sign"
2417
  msgstr "Symbol waluty"
2418
 
2419
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2420
  #: app/features/mec/settings.php:600
2421
  msgid "Default value will be \"currency\" if you leave it empty."
2422
  msgstr "Jeżeli pozostawisz pole puste, wartością domyślną będzie \"currency\"."
2423
 
2424
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2425
  #: app/features/mec/settings.php:607
2426
  msgid "Currency Position"
2427
  msgstr "Pozycja symbolu waluty"
2428
 
2429
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2430
  #: app/features/mec/settings.php:610
2431
  #, fuzzy
2432
  #| msgid "Before $10"
2433
  msgid "$10 (Before)"
2434
  msgstr "Przed - $10"
2435
 
2436
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2437
  #: app/features/mec/settings.php:611
2438
  msgid "$ 10 (Before with Space)"
2439
  msgstr ""
2440
 
2441
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2442
  #: app/features/mec/settings.php:612
2443
  #, fuzzy
2444
  #| msgid "After"
2445
  msgid "10$ (After)"
2446
  msgstr "Po"
2447
 
2448
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2449
  #: app/features/mec/settings.php:613
2450
  msgid "10 $ (After with Space)"
2451
  msgstr ""
2452
 
2453
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2454
  #: app/features/mec/settings.php:618
2455
  msgid "Thousand Separator"
2456
  msgstr "Seperator tysięcy"
2457
 
2458
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2459
  #: app/features/mec/settings.php:624
2460
  msgid "Decimal Separator"
2461
  msgstr "Separator miejsc dziesiętnych"
2462
 
2463
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2464
  #: app/features/mec/settings.php:634
2465
  msgid "No decimal"
2466
  msgstr "Brak przecinka"
2486
  msgid "Day 1"
2487
  msgstr ""
2488
 
2489
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2490
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2491
  msgid "Event Links"
2492
  msgstr "Linki wydarzenia"
2493
 
2494
  #: app/features/events.php:1501 app/features/events.php:1509
2495
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2496
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2497
  #: app/libraries/main.php:7649
2498
  msgid "Event Link"
2499
  msgstr "Link strony www wydarzenia"
2500
 
2501
  #: app/features/events.php:1504 app/features/events.php:1522
2502
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2503
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2504
  msgid "eg. http://yoursite.com/your-event"
2505
  msgstr "na przykład. http://twojastrona.pl/twoje-wydarzenie"
2506
 
2521
  msgid "URL Shortener"
2522
  msgstr ""
2523
 
2524
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2525
+ #: app/features/occurrences.php:530
2526
  msgid "More Information"
2527
  msgstr "Więcej informacji"
2528
 
2529
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2530
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2531
  #: app/features/popup/shortcode.php:481
2532
  msgid "Current Window"
2533
  msgstr "Bieżące okno"
2534
 
2535
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2536
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2537
  #: app/features/popup/shortcode.php:485
2538
  msgid "New Window"
2539
  msgstr "Nowe okno"
2540
 
2541
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2542
  msgid ""
2543
  "If you fill it, it will be shown in event details page as an optional link. "
2544
  "Insert full link including http(s)://"
2916
  msgstr "Zgłoszenie"
2917
 
2918
  #: app/features/events.php:1944 app/features/events.php:2211
2919
+ #: app/features/events.php:4182 app/features/fes.php:280
2920
  #: app/features/labels.php:183 app/features/locations.php:266
2921
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2922
  msgid "ID"
2923
  msgstr "ID"
2924
 
2927
  msgstr "Nazwa biletu"
2928
 
2929
  #: app/features/events.php:1956 app/features/events.php:2219
2930
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2931
  msgid "Start Time"
2932
  msgstr "Czas rozpoczęcia"
2933
 
2934
  #: app/features/events.php:1970 app/features/events.php:2233
2935
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2936
  msgid "End Time"
2937
  msgstr "Czas zakończenia"
2938
 
2954
  #: app/features/events.php:2007 app/features/events.php:2011
2955
  #: app/features/events.php:2109 app/features/events.php:2136
2956
  #: app/features/events.php:2265 app/features/events.php:2268
2957
+ #: app/features/events.php:2349 app/features/events.php:4743
2958
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2959
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2960
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3123
  msgid "Fixed Fields"
3124
  msgstr "Wymagane pole"
3125
 
3126
+ #: app/features/events.php:2887 app/features/events.php:4737
3127
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3128
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3129
  msgid "Attendees"
3155
  msgstr ""
3156
 
3157
  #: app/features/events.php:3757 app/features/mec.php:1374
3158
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3159
  msgid "Upcoming Events"
3160
  msgstr "Nadchodzące wydarzenia"
3161
 
3216
  msgstr "Eksportuj JSON"
3217
 
3218
  #: app/features/events.php:4068 app/features/events.php:4069
3219
+ #: app/features/events.php:4295
3220
  msgid "Duplicate"
3221
  msgstr "Duplikuj"
3222
 
3223
+ #: app/features/events.php:4189
3224
  msgid "Link"
3225
  msgstr "Link"
3226
 
3227
+ #: app/features/events.php:4191 app/features/locations.php:111
3228
  #: app/features/locations.php:181 app/features/locations.php:268
3229
  #: app/features/mec/meta_boxes/search_form.php:108
3230
  #: app/features/mec/meta_boxes/search_form.php:196
3242
  msgid "Address"
3243
  msgstr "Adres"
3244
 
3245
+ #: app/features/events.php:4193
3246
  #, php-format
3247
  msgid "%s Tel"
3248
  msgstr "%s Tel"
3249
 
3250
+ #: app/features/events.php:4194
3251
  #, php-format
3252
  msgid "%s Email"
3253
  msgstr "%s Email"
3254
 
3255
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3256
  #: app/features/mec/settings.php:876
3257
  msgid "Featured Image"
3258
  msgstr "Obraz wyróżniający"
3259
 
3260
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3261
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3262
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3263
  msgid "Tags"
3264
  msgstr "Tagi"
3265
 
3266
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3267
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3268
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3269
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3270
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3271
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3272
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3274
  msgid "Speakers"
3275
  msgstr ""
3276
 
3277
+ #: app/features/events.php:4448 app/features/fes.php:280
3278
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3279
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3280
  #: app/libraries/main.php:7592
3281
  msgid "Ticket"
3282
  msgstr "Zgłoszenie"
3283
 
3284
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3285
  #, fuzzy
3286
  #| msgid "Verification"
3287
  msgid "Variations"
3288
  msgstr "Potwierdzenie"
3289
 
3290
+ #: app/features/events.php:4466 app/features/fes.php:356
3291
  msgid "Unknown"
3292
  msgstr "Nieznane"
3293
 
3294
+ #: app/features/events.php:4494
3295
  msgid ""
3296
  "If you want to send an email, first select your attendees and then click in "
3297
  "the button below, please."
3298
  msgstr ""
3299
 
3300
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3301
  #, fuzzy
3302
  #| msgid "Organizer Email"
3303
  msgid "Send Email"
3304
  msgstr "Email organizatora"
3305
 
3306
+ #: app/features/events.php:4498
3307
  #, fuzzy
3308
  #| msgid "Attendees Form"
3309
  msgid "No Attendees Found!"
3310
  msgstr "Formularz zgłoszenia uczestników"
3311
 
3312
+ #: app/features/events.php:4800
3313
  #, fuzzy
3314
  #| msgid "No bookings found!"
3315
  msgid "No Bookings Found!"
3451
  msgid "The event published."
3452
  msgstr "Wydarzenie opublikowane."
3453
 
3454
+ #: app/features/fes/form.php:180
3455
  #, fuzzy
3456
  #| msgid "Go back to events list."
3457
  msgid "Go back to events list"
3458
  msgstr "Wróć do listy wydarzeń"
3459
 
3460
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3461
  #: app/features/mec/settings.php:1171
3462
  msgid "Excerpt"
3463
  msgstr ""
3464
 
3465
+ #: app/features/fes/form.php:273
3466
  #, fuzzy
3467
  #| msgid "On Event Start"
3468
  msgid "Optional Event Excerpt"
3469
  msgstr "Po rozpoczęciu wydarzenia"
3470
 
3471
+ #: app/features/fes/form.php:280
3472
  msgid ""
3473
  "This event is imported from Google calendar so if you modify it would "
3474
  "overwrite in the next import from Google."
3475
  msgstr ""
3476
 
3477
+ #: app/features/fes/form.php:409
3478
  #: app/features/mec/meta_boxes/display_options.php:1494
3479
  #: app/libraries/main.php:476
3480
  msgid "Monday"
3481
  msgstr "Poniedziałek"
3482
 
3483
+ #: app/features/fes/form.php:410
3484
  #: app/features/mec/meta_boxes/display_options.php:1495
3485
  #: app/libraries/main.php:476
3486
  msgid "Tuesday"
3487
  msgstr "Wtorek"
3488
 
3489
+ #: app/features/fes/form.php:411
3490
  #: app/features/mec/meta_boxes/display_options.php:1496
3491
  #: app/libraries/main.php:476
3492
  msgid "Wednesday"
3493
  msgstr "Środa"
3494
 
3495
+ #: app/features/fes/form.php:412
3496
  #: app/features/mec/meta_boxes/display_options.php:1497
3497
  #: app/libraries/main.php:476
3498
  msgid "Thursday"
3499
  msgstr "Czwartek"
3500
 
3501
+ #: app/features/fes/form.php:413
3502
  #: app/features/mec/meta_boxes/display_options.php:1498
3503
  #: app/libraries/main.php:476
3504
  msgid "Friday"
3505
  msgstr "Piątek"
3506
 
3507
+ #: app/features/fes/form.php:414
3508
  #: app/features/mec/meta_boxes/display_options.php:1499
3509
  #: app/libraries/main.php:476
3510
  msgid "Saturday"
3511
  msgstr "Sobota"
3512
 
3513
+ #: app/features/fes/form.php:415
3514
  #: app/features/mec/meta_boxes/display_options.php:1493
3515
  #: app/libraries/main.php:476
3516
  msgid "Sunday"
3517
  msgstr "Niedziea"
3518
 
3519
+ #: app/features/fes/form.php:768
3520
  msgid ""
3521
  "The event will finish after certain repeats. For example if you set it to "
3522
  "10, the event will finish after 10 repeats."
3524
  "Wydarzenie zakończy się po wybranej ilości powtórzeń. Przykładowo, jeżeli "
3525
  "wybierzesz 10, wydarzenie zakończy się po 10 powtórzeniach."
3526
 
3527
+ #: app/features/fes/form.php:792
3528
  msgid "Note to reviewer"
3529
  msgstr "Uwaga dla administratora"
3530
 
3531
+ #: app/features/fes/form.php:810
3532
  msgid "User Data"
3533
  msgstr "Dane użytkowników"
3534
 
3535
+ #: app/features/fes/form.php:813
3536
  msgid "eg. yourname@gmail.com"
3537
  msgstr "np. twojanazwa@gmail.com"
3538
 
3539
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3540
+ #: app/features/popup/event.php:190
3541
  msgid "eg. John Smith"
3542
  msgstr "np. Jan Nowak"
3543
 
3544
+ #: app/features/fes/form.php:835
3545
  #, fuzzy
3546
  #| msgid ""
3547
  #| "If you fill it, it will be replaced instead of default event page link. "
3553
  "Jeśli wypełnisz to pole, link zostanie zastąpiony domyślnym dla widoku "
3554
  "wydarzenia. Podaj pełen link w tym http(s)://"
3555
 
3556
+ #: app/features/fes/form.php:958
3557
  msgid "Remove Image"
3558
  msgstr "Usuń obraz"
3559
 
3560
+ #: app/features/fes/form.php:1048
3561
  msgid "Insert your desired tags, comma separated."
3562
  msgstr "Tagi (oddzielaj przecinkami)."
3563
 
3564
+ #: app/features/fes/form.php:1070
3565
  #, fuzzy
3566
  #| msgid "No Search Options"
3567
  msgid "Speakers Names"
3568
  msgstr "Brak opcji wyszukiwania"
3569
 
3570
+ #: app/features/fes/form.php:1071
3571
  msgid "Separate names with commas: Justin, Chris"
3572
  msgstr ""
3573
 
3574
+ #: app/features/fes/form.php:1116
3575
  #, fuzzy, php-format
3576
  #| msgid "Please %s/%s in order to submit new events."
3577
  msgid "I accept the %s in order to submit an event."
3578
  msgstr "Proszę %s/%s, aby utworzyć nowe wydarzenia."
3579
 
3580
+ #: app/features/fes/form.php:1116
3581
  msgid "Privacy Policy"
3582
  msgstr ""
3583
 
3584
+ #: app/features/fes/form.php:1118
3585
  #, fuzzy
3586
  #| msgid "Please %s/%s in order to submit new events."
3587
  msgid "I accept the Privacy Policy in order to submit an event."
3588
  msgstr "Proszę %s/%s, aby utworzyć nowe wydarzenia."
3589
 
3590
+ #: app/features/fes/form.php:1124
3591
  #, fuzzy
3592
  #| msgid "Edit Events"
3593
  msgid "Submit Event"
3672
  msgid "The events are imported successfully!"
3673
  msgstr ""
3674
 
3675
+ #: app/features/ix.php:1342
3676
  msgid "Third Party plugin is not installed and activated!"
3677
  msgstr ""
3678
 
3679
+ #: app/features/ix.php:1366
3680
  msgid "Third Party plugin is invalid!"
3681
  msgstr ""
3682
 
3683
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3684
  #, fuzzy
3685
  #| msgid "Both of API key and Calendar ID are required!"
3686
  msgid "API key and Calendar ID are required!"
3687
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
3688
 
3689
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3690
  #, fuzzy
3691
  #| msgid "Please select some events to import!"
3692
  msgid "Please select events to import!"
3693
  msgstr "Proszę wybrać dane do zaimportowania!"
3694
 
3695
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3696
  #, fuzzy
3697
  #| msgid "Both of API key and Calendar ID are required!"
3698
  msgid "API key and Group URL are required!"
3699
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
3700
 
3701
+ #: app/features/ix.php:4137
3702
  msgid "Check at Meetup"
3703
  msgstr ""
3704
 
3705
+ #: app/features/ix.php:4303
3706
  #, fuzzy
3707
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3708
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3709
  msgstr "Wszystkie Client ID, Client Secret oraz Calendar ID są wymagane!"
3710
 
3711
+ #: app/features/ix.php:4326
3712
  #, fuzzy, php-format
3713
  #| msgid "All seems good! Please click %s for authenticating your app."
3714
  msgid "All seems good! Please click %s to authenticate your app."
3716
  "Wszystko wydaje się być w porządku! Kliknij %s w celu uwierzytelnienia "
3717
  "swojej aplikacji."
3718
 
3719
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3720
  #: app/features/mec/settings.php:1496
3721
  msgid "here"
3722
  msgstr ""
3723
 
3724
+ #: app/features/ix.php:4381
3725
  #, fuzzy
3726
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3727
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3728
  msgstr "Wszystkie Client APP, Client Secret oraz Calendar ID są wymagane!"
3729
 
3730
+ #: app/features/ix.php:4543
3731
  #, fuzzy, php-format
3732
  #| msgid "%s events added to Google Calendar successfully."
3733
  msgid "%s events added to Google Calendar with success."
3734
  msgstr "%s wydarzenia dodane do Kalendarza Google pomyślnie."
3735
 
3736
+ #: app/features/ix.php:4544
3737
  #, fuzzy, php-format
3738
  #| msgid "%s previously added events get updated."
3739
  msgid "%s Updated previously added events."
3740
  msgstr "%s wcześniej dodane wydarzenia zaktualizowane."
3741
 
3742
+ #: app/features/ix.php:4545
3743
  #, php-format
3744
  msgid "%s events failed to add for following reasons: %s"
3745
  msgstr "%s wydarzenia nie udało się dodać z następujących powodów:%s"
3746
 
3747
+ #: app/features/ix.php:4577
3748
  #, fuzzy
3749
  #| msgid "Please insert your facebook page's link."
3750
  msgid "Please insert your Facebook page's link."
3751
  msgstr "Wstaw własny odnośnik Facebook."
3752
 
3753
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3754
  #, fuzzy
3755
  #| msgid ""
3756
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3761
  msgstr ""
3762
  "Nie mogliśmy rozpoznać odnośnika Facebook. Sprawdź link i spróbuj ponownie."
3763
 
3764
+ #: app/features/ix.php:4625
3765
  msgid "Please insert your facebook page's link."
3766
  msgstr "Wstaw własny odnośnik Facebook."
3767
 
3977
  msgid "Add to Google Calendar"
3978
  msgstr "Dodaj do Kalendarza Google"
3979
 
3980
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3981
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3982
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3983
  #: app/features/mec/single.php:604
4095
  msgid "Import all of your Facebook events into MEC."
4096
  msgstr "Importuj wszystkie wydarzenia Facebook do MEC."
4097
 
4098
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4099
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4100
  msgid "Documentation"
4101
  msgstr "Dokumentacja"
4419
  msgstr ""
4420
 
4421
  #: app/features/labels.php:79 app/features/locations.php:77
4422
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4423
  #: app/features/tag.php:77
4424
  #, fuzzy, php-format
4425
  #| msgid "Search Coupons"
4427
  msgstr "Szukaj kuponu"
4428
 
4429
  #: app/features/labels.php:80 app/features/locations.php:78
4430
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4431
  #: app/features/tag.php:78
4432
  #, fuzzy, php-format
4433
  #| msgid "No events found!"
4473
  msgstr ""
4474
 
4475
  #: app/features/labels.php:186 app/features/locations.php:269
4476
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4477
  #: app/modules/booking/steps/tickets.php:172
4478
  msgid "Count"
4479
  msgstr "Liczba"
4489
  msgstr "Wydarzenie %s"
4490
 
4491
  #: app/features/locations.php:59 app/features/mec.php:526
4492
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4493
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4494
  #: app/libraries/main.php:7623
4495
  msgid "Locations"
4500
  msgstr "Podaj adres lokalizacji"
4501
 
4502
  #: app/features/locations.php:131 app/features/locations.php:197
4503
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4504
  msgid "Latitude"
4505
  msgstr "Szerokość geograficzna"
4506
 
4511
  msgstr "Szerokość geograficzna (opcjonalnie)"
4512
 
4513
  #: app/features/locations.php:139 app/features/locations.php:201
4514
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4515
  msgid "Longitude"
4516
  msgstr "Długość geograficzna"
4517
 
4536
 
4537
  #: app/features/locations.php:156 app/features/locations.php:210
4538
  #: app/features/organizers.php:128 app/features/organizers.php:161
4539
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4540
  msgid "Thumbnail"
4541
  msgstr "Miniatura"
4542
 
4543
  #: app/features/locations.php:329 app/features/occurrences.php:460
4544
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4545
  #, php-format
4546
  msgid "Event Main %s"
4547
  msgstr ""
4548
 
4549
  #: app/features/locations.php:332 app/features/occurrences.php:464
4550
+ #: app/features/popup/event.php:121
4551
  msgid "Hide location"
4552
  msgstr "Ukryj lokalizację"
4553
 
4554
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4555
  msgid "Insert a new location"
4556
  msgstr "Dodaj nową lokalizację"
4557
 
4559
  msgid "Choose one of saved locations or insert new one below."
4560
  msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
4561
 
4562
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4563
  msgid "Location Name"
4564
  msgstr "Nazwa lokalizacji"
4565
 
4566
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4567
  msgid "eg. City Hall"
4568
  msgstr "np. Ratusz"
4569
 
4570
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4571
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4572
  msgid "Event Location"
4573
  msgstr "Miejsce wydarzenia"
4574
 
4575
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4576
  msgid "eg. City hall, Manhattan, New York"
4577
  msgstr "np. Rynek, 50-996 Wrocław"
4578
 
4579
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4580
  #, fuzzy
4581
  #| msgid "Longitude"
4582
  msgid "Latitude/Longitude"
4583
  msgstr "Długość geograficzna"
4584
 
4585
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4586
  msgid ""
4587
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4588
  "to convert the location address to geopoint, Latitude and Longitude are the "
4591
  "the location on the map to find lat long coordinates."
4592
  msgstr ""
4593
 
4594
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4595
  msgid "Get Latitude and Longitude"
4596
  msgstr ""
4597
 
4598
  #: app/features/locations.php:392 app/features/organizers.php:315
4599
+ #: app/features/popup/event.php:209
4600
  msgid "Choose image"
4601
  msgstr "Wybierz obraz"
4602
 
4603
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4604
+ #: app/features/popup/event.php:140
4605
  msgid "Don't show map in single event page"
4606
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
4607
 
4608
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4609
  #: app/libraries/main.php:7654
4610
  #, fuzzy
4611
  #| msgid "Search Locations"
4612
  msgid "Other Locations"
4613
  msgstr "Szukaj"
4614
 
4615
+ #: app/features/locations.php:413
4616
  msgid ""
4617
  "You can select extra locations in addition to main location if you like."
4618
  msgstr ""
4690
  msgid "Support"
4691
  msgstr "Wsparcie"
4692
 
4693
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4694
  #: app/features/mec/meta_boxes/filter.php:71
4695
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4696
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4698
  msgstr "Organizatorzy"
4699
 
4700
  #: app/features/mec.php:536 app/features/mec.php:596
4701
+ #: app/features/mec/dashboard.php:218
4702
  msgid "Shortcodes"
4703
  msgstr "Shortcodes"
4704
 
4919
  msgstr ""
4920
 
4921
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4922
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4923
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4924
  msgid "Version"
4925
  msgstr "Wersja"
4945
  msgstr "Wyszukaj %s"
4946
 
4947
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4948
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4949
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4950
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4951
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4952
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4953
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5548
  msgid "It applies only to the orders that are related to MEC."
5549
  msgstr "Stosuje się tylko do zamówień, które są związane z MEC."
5550
 
5551
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5552
  msgid "After Add to Cart"
5553
  msgstr ""
5554
 
5555
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5556
  #, fuzzy
5557
  #| msgid "Get Direction"
5558
  msgid "Redirect to Cart"
5559
  msgstr "Wskaż drogę"
5560
 
5561
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5562
  #, fuzzy
5563
  #| msgid "Get Direction"
5564
  msgid "Redirect to Checkout"
5565
  msgstr "Wskaż drogę"
5566
 
5567
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5568
  #, fuzzy
5569
  #| msgid "View Detail Button"
5570
  msgid "Optional View Cart Button"
5571
  msgstr "Pokaż szczegóły"
5572
 
5573
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5574
  msgid "Optional Checkout Button"
5575
  msgstr ""
5576
 
5628
  "(Stripe) got canceled."
5629
  msgstr ""
5630
 
5631
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5632
+ #, fuzzy
5633
+ #| msgid "Support"
5634
+ msgid "MEC Cart"
5635
+ msgstr "Wsparcie"
5636
+
5637
+ #: app/features/mec/booking.php:1118
5638
  msgid "Use MEC Cart System"
5639
  msgstr ""
5640
 
5641
+ #: app/features/mec/booking.php:1120
5642
  msgid ""
5643
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5644
  "adding a simple cart and checkout system to your website."
5645
  msgstr ""
5646
 
5647
+ #: app/features/mec/booking.php:1122
5648
  msgid "You cannot use following MEC features while using MEC Cart."
5649
  msgstr ""
5650
 
5651
+ #: app/features/mec/booking.php:1124
5652
  #, fuzzy
5653
  #| msgid "Payment Gateways"
5654
  msgid "WooCommerce as Payment Gateway"
5655
  msgstr "Bramki płatności"
5656
 
5657
+ #: app/features/mec/booking.php:1125
5658
  #, fuzzy
5659
  #| msgid "Next Occurrence of Other Events"
5660
  msgid "Currency Per Event"
5661
  msgstr "Kolejne wystąpienie innych wydarzeń"
5662
 
5663
+ #: app/features/mec/booking.php:1126
5664
  #, fuzzy
5665
  #| msgid "Payment Gateways"
5666
  msgid "Disable Gateways Per Event"
5667
  msgstr "Bramki płatności"
5668
 
5669
+ #: app/features/mec/booking.php:1127
5670
  #, fuzzy
5671
  #| msgid "Stripe"
5672
  msgid "Stripe Connect Gateway"
5673
  msgstr "Stripe"
5674
 
5675
+ #: app/features/mec/booking.php:1128
5676
  #, fuzzy
5677
  #| msgid "Pay by WooCommerce"
5678
  msgid "Pay By WooCommerce Gateway"
5679
  msgstr "Zapłacić z WooCommerce"
5680
 
5681
+ #: app/features/mec/booking.php:1129
5682
  #, fuzzy
5683
  #| msgid "New Organizer Name"
5684
  msgid "Organizer Payment Module"
5685
  msgstr "Nazwa nowego organizatora"
5686
 
5687
+ #: app/features/mec/booking.php:1133
5688
  #, fuzzy
5689
  #| msgid "Start Date"
5690
  msgid "Cart Page"
5691
  msgstr "Data rozpoczęcia"
5692
 
5693
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5694
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5695
  #, php-format
5696
  msgid "Put %s shortcode into the page."
5697
  msgstr "Dodaj %s shortcode na stronie."
5698
 
5699
+ #: app/features/mec/booking.php:1145
5700
  #, fuzzy
5701
  #| msgid "Checkout"
5702
  msgid "Checkout Page"
5703
  msgstr "Zamówienie"
5704
 
5705
+ #: app/features/mec/booking.php:1171
5706
  #, fuzzy
5707
  #| msgid "Enable note field"
5708
  msgid "Enable Cart Invoice"
5709
  msgstr "Włącz pole uwag dla administratora"
5710
 
5711
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5712
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5713
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5714
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5716
  msgid "Saved"
5717
  msgstr "Zapisane"
5718
 
5719
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5720
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5721
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5722
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5724
  msgid "Settings Saved!"
5725
  msgstr ""
5726
 
5727
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5728
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5729
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5730
  msgid "Please Refresh Page"
5740
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5741
  msgstr ""
5742
 
5743
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5744
  #, php-format
5745
  msgid ""
5746
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5748
  "Spots, etc you should upgrade to the Pro version."
5749
  msgstr ""
5750
 
5751
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5752
  msgid "lite"
5753
  msgstr ""
5754
 
5755
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5756
  #: app/features/mec/support.php:126
5757
  msgid "GO PREMIUM"
5758
  msgstr ""
5759
 
5760
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5761
  #, fuzzy
5762
  #| msgid "Modern Events Calendar"
5763
  msgid "Getting started with Modern Events Calendar"
5764
  msgstr "Nowoczesny Kalendarz Wydarzeń"
5765
 
5766
+ #: app/features/mec/dashboard.php:113
5767
  msgid ""
5768
  "In this short video, you can learn how to make an event and put a calendar "
5769
  "on your website. Please watch this 2 minutes video to the end."
5770
  msgstr ""
5771
 
5772
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5773
  #, fuzzy
5774
  #| msgid "MEC Activation"
5775
  msgid "License Activation"
5776
  msgstr "Aktywacja MEC"
5777
 
5778
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5779
  #, fuzzy
5780
  #| msgid "MEC Activation"
5781
  msgid "Activate Addons"
5782
  msgstr "Aktywacja MEC"
5783
 
5784
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5785
  msgid "You cannot access this section."
5786
  msgstr ""
5787
 
5788
+ #: app/features/mec/dashboard.php:159
5789
  msgid ""
5790
  "In order to use all plugin features and options, please enter your purchase "
5791
  "code."
5792
  msgstr ""
5793
 
5794
+ #: app/features/mec/dashboard.php:267
5795
  msgid "Popular Gateways"
5796
  msgstr "Popularne bramki płatności"
5797
 
5798
+ #: app/features/mec/dashboard.php:325
5799
  msgid "Change Log"
5800
  msgstr "Dziennik Zmian"
5801
 
7366
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7367
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7368
  #: app/features/popup/settings.php:272 app/features/search.php:109
7369
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7370
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7371
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7372
  #: app/modules/speakers/details.php:18
8714
  msgid "Please, insert comma to separate reminder hours."
8715
  msgstr ""
8716
 
8717
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8718
  #: app/libraries/main.php:705
8719
  msgid "New Event"
8720
  msgstr "Nowe wydarzenie"
11036
  msgid "Choose one of saved locations."
11037
  msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
11038
 
11039
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
11040
+ #: app/features/popup/event.php:171
11041
  msgid "Hide organizer"
11042
  msgstr "Ukryj organizatora"
11043
 
11044
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
11045
+ #: app/features/popup/event.php:180
11046
  msgid "Choose one of saved organizers or insert new one below."
11047
  msgstr "Wybierz organizatora z listy lub utwórz nowego."
11048
 
11055
  msgstr "Podaj adres email organizatora."
11056
 
11057
  #: app/features/organizers.php:120 app/features/organizers.php:157
11058
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
11059
  msgid "Link to organizer page"
11060
  msgstr "Link do strony organizatora"
11061
 
11068
  msgid "Contact info"
11069
  msgstr "Informacje kontaktowe"
11070
 
11071
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11072
  msgid "Insert a new organizer"
11073
  msgstr "Utwórz nowego organizatora"
11074
 
11075
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11076
  msgid "Phone number."
11077
  msgstr "Numer telefonu."
11078
 
11079
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11080
  msgid "eg. +1 (234) 5678"
11081
  msgstr "np. +48 123 456 789"
11082
 
11083
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11084
  msgid "Email address."
11085
  msgstr "Adres email."
11086
 
11087
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11088
  msgid "eg. john@smith.com"
11089
  msgstr "np. email@domena.pl"
11090
 
11091
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11092
  #, fuzzy
11093
  #| msgid "http://webnus.biz"
11094
  msgid "eg. https://webnus.net"
11104
  "You can select extra organizers in addition to main organizer if you like."
11105
  msgstr ""
11106
 
11107
+ #: app/features/popup/event.php:60
11108
  #, fuzzy
11109
  #| msgid "Add Shortcode"
11110
  msgid "Adding an Event..."
11111
  msgstr "Dodaj shortcode"
11112
 
11113
+ #: app/features/popup/event.php:68
11114
  #, fuzzy
11115
  #| msgid "Event Note"
11116
  msgid "Event Name"
11117
  msgstr "Uwaga"
11118
 
11119
+ #: app/features/popup/event.php:69
11120
  msgid "Event name is required"
11121
  msgstr ""
11122
 
11123
+ #: app/features/popup/event.php:130
11124
  #, fuzzy
11125
  #| msgid "Choose one of saved locations or insert new one below."
11126
  msgid "Choose one of saved locations or insert new one."
11127
  msgstr "Wybierz jedną z zapisanych lokalizacji lub dodaj nową poniżej."
11128
 
11129
+ #: app/features/popup/event.php:134
11130
  #, fuzzy
11131
  #| msgid "Add New Location"
11132
  msgid "Add Location"
11133
  msgstr "Dodaj nową lokalizację"
11134
 
11135
+ #: app/features/popup/event.php:184
11136
  #, fuzzy
11137
  #| msgid "Add New Organizer"
11138
  msgid "Add Organizer"
11139
  msgstr "Dodaj nowego organizatora"
11140
 
11141
+ #: app/features/popup/event.php:224
11142
  #, fuzzy
11143
  #| msgid "Categories"
11144
  msgid "All Categories"
11145
  msgstr "Kategorie"
11146
 
11147
+ #: app/features/popup/event.php:225
11148
  msgid "Most Used"
11149
  msgstr ""
11150
 
11151
+ #: app/features/popup/event.php:236
11152
  #, fuzzy
11153
  #| msgid "Add New Label"
11154
  msgid "Add New Category"
11155
  msgstr "Dodaj nową etykietę"
11156
 
11157
+ #: app/features/popup/event.php:247
11158
  #, fuzzy
11159
  #| msgid "Featured Image"
11160
  msgid "Set Featured Image"
11161
  msgstr "Obraz wyróżniający"
11162
 
11163
+ #: app/features/popup/event.php:257
11164
  msgid "Your Event Has Been Created."
11165
  msgstr ""
11166
 
11167
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11168
  #: app/features/popup/shortcode.php:553
11169
  msgid "Prev"
11170
  msgstr ""
11171
 
11172
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11173
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11174
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11175
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11373
  msgid "No search result."
11374
  msgstr ""
11375
 
11376
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11377
+ #: app/features/speakers.php:293
11378
  #, fuzzy
11379
  #| msgid "Title"
11380
  msgid "Job Title"
11381
  msgstr "Tytuł"
11382
 
11383
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11384
  msgid "Insert speaker job title."
11385
  msgstr ""
11386
 
11387
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11388
  #, fuzzy
11389
  #| msgid "Insert organizer phone number."
11390
  msgid "Insert speaker phone number."
11391
  msgstr "Podaj numer telefonu organizatora."
11392
 
11393
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11394
  #, fuzzy
11395
  #| msgid "Insert organizer email address."
11396
  msgid "Insert speaker email address."
11397
  msgstr "Podaj adres email organizatora."
11398
 
11399
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11400
  #, fuzzy
11401
  #| msgid "Insert -1 for unlimited usage"
11402
  msgid "Insert URL of Website"
11403
  msgstr "Wstaw -1 dla braku limitu"
11404
 
11405
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11406
  #, fuzzy
11407
  #| msgid "Facebook Page Link"
11408
  msgid "Facebook Page"
11409
  msgstr "Własny odnośnik Facebook"
11410
 
11411
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11412
  #, fuzzy
11413
  #| msgid "Import from Facebook Calendar"
11414
  msgid "Insert URL of Facebook Page"
11415
  msgstr "Importuj z kalendarza Facebook"
11416
 
11417
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11418
  msgid "Instagram"
11419
  msgstr ""
11420
 
11421
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11422
  #, fuzzy
11423
  #| msgid "Insert -1 for unlimited usage"
11424
  msgid "Insert URL of Instagram"
11425
  msgstr "Wstaw -1 dla braku limitu"
11426
 
11427
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11428
  #, fuzzy
11429
  #| msgid "Linkedin"
11430
  msgid "LinkedIn"
11431
  msgstr "Linkedin"
11432
 
11433
+ #: app/features/speakers.php:169
11434
  #, fuzzy
11435
  #| msgid "Insert -1 for unlimited usage"
11436
  msgid "Insert URL of LinkedIn"
11437
  msgstr "Wstaw -1 dla braku limitu"
11438
 
11439
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11440
  #, fuzzy
11441
  #| msgid "Twitter"
11442
  msgid "Twitter Page"
11443
  msgstr "Twitter"
11444
 
11445
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11446
  #, fuzzy
11447
  #| msgid "Insert -1 for unlimited usage"
11448
  msgid "Insert URL of Twitter Page"
11449
  msgstr "Wstaw -1 dla braku limitu"
11450
 
11451
+ #: app/features/speakers.php:228
11452
  #, fuzzy
11453
  #| msgid "Insert -1 for unlimited usage"
11454
  msgid "Insert URL of linkedin"
11455
  msgstr "Wstaw -1 dla braku limitu"
11456
 
11457
+ #: app/features/speakers.php:353
11458
  msgid "Sorry, You must insert speaker name!"
11459
  msgstr ""
11460
 
11461
+ #: app/features/speakers.php:402
11462
  msgid ""
11463
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11464
  "section and speaker widget section!"
11547
  msgid "Upgrade to Pro Version"
11548
  msgstr ""
11549
 
11550
+ #: app/libraries/factory.php:232
11551
  msgctxt "plugin link"
11552
  msgid "Settings"
11553
  msgstr "Ustawienia"
11554
 
11555
+ #: app/libraries/factory.php:237
11556
  msgctxt "plugin link"
11557
  msgid "Upgrade"
11558
  msgstr ""
11559
 
11560
+ #: app/libraries/factory.php:391
11561
  msgid "day"
11562
  msgstr "dzień"
11563
 
11564
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11565
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11566
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11567
  msgid "days"
11568
  msgstr "dni"
11569
 
11570
+ #: app/libraries/factory.php:393
11571
  msgid "hour"
11572
  msgstr "godzina"
11573
 
11574
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11575
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11576
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11577
  msgid "hours"
11578
  msgstr "godzin"
11579
 
11580
+ #: app/libraries/factory.php:395
11581
  msgid "minute"
11582
  msgstr "minuta"
11583
 
11584
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11585
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11586
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11587
  msgid "minutes"
11588
  msgstr "minut"
11589
 
11590
+ #: app/libraries/factory.php:397
11591
  msgid "second"
11592
  msgstr "sekunda"
11593
 
11594
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11595
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11596
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11597
  msgid "seconds"
11598
  msgstr "sekund"
11599
 
11600
+ #: app/libraries/factory.php:475
11601
  msgid "MEC Single Sidebar"
11602
  msgstr "Pasek boczny wydarzenia"
11603
 
11604
+ #: app/libraries/factory.php:476
11605
  msgid "Custom sidebar for single and modal page of MEC."
11606
  msgstr ""
11607
  "Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
11608
 
11609
+ #: app/libraries/factory.php:1197
11610
  msgid "Notice:"
11611
  msgstr ""
11612
 
11613
+ #: app/libraries/factory.php:1198
11614
  msgid "This update includes only bug fixes."
11615
  msgstr ""
11616
 
11766
  msgid "%s Form"
11767
  msgstr ""
11768
 
 
 
 
 
 
 
11769
  #: app/libraries/main.php:726
11770
  msgid "Only For Bookers"
11771
  msgstr ""
12557
  msgid "End at: %s - %s"
12558
  msgstr ""
12559
 
12560
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12561
  #, fuzzy
12562
  #| msgid "Repeat"
12563
  msgid "Repeating Event"
13060
  msgid "http://webnus.net"
13061
  msgstr ""
13062
 
13063
+ #, fuzzy
13064
+ #~| msgid "Address"
13065
+ #~ msgid "WordPress"
13066
+ #~ msgstr "Adres"
13067
+
13068
  #, fuzzy
13069
  #~| msgid ""
13070
  #~| "The %s ticket is sold out. You can try another ticket or another date."
languages/modern-events-calendar-lite-pt_BR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
6
- "PO-Revision-Date: 2022-02-23 13:27+0330\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
@@ -180,7 +180,7 @@ msgid "Canceled"
180
  msgstr "Cancelado"
181
 
182
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
183
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
184
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
185
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
186
  #: app/features/mec/notifications.php:1922
@@ -218,14 +218,14 @@ msgstr "Primeiro nome"
218
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
219
  #: app/features/autoemails.php:60 app/features/events.php:606
220
  #: app/features/events.php:2650 app/features/events.php:2717
221
- #: app/features/events.php:2806 app/features/events.php:4443
222
- #: app/features/fes.php:280 app/features/fes/form.php:810
223
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
224
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
225
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
226
  #: app/features/organizers.php:112 app/features/organizers.php:153
227
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
228
- #: app/features/speakers.php:205 app/libraries/main.php:653
229
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
230
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
231
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -385,8 +385,8 @@ msgstr "Data"
385
  #: app/features/events.php:2808 app/features/mec/booking.php:800
386
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
387
  #: app/features/organizers.php:104 app/features/organizers.php:149
388
- #: app/features/speakers.php:120 app/features/speakers.php:201
389
- #: app/features/speakers.php:288 app/libraries/main.php:4252
390
  msgid "Tel"
391
  msgstr "Telefone"
392
 
@@ -532,6 +532,11 @@ msgstr ""
532
  msgid "Agreement"
533
  msgstr ""
534
 
 
 
 
 
 
535
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
536
  #, php-format
537
  msgid "Instead of %s, the page title with a link will be show."
@@ -709,8 +714,8 @@ msgstr "Insira e-mails separados por vírgula para vários destinatários."
709
  #: app/features/events.php:1843 app/features/events.php:2014
710
  #: app/features/events.php:2029 app/features/events.php:2271
711
  #: app/features/events.php:2283 app/features/events.php:2476
712
- #: app/features/events.php:2513 app/features/fes/form.php:458
713
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
714
  #: app/features/locations.php:341 app/features/mec/booking.php:113
715
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
716
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -787,9 +792,9 @@ msgstr "Insira e-mails separados por vírgula para vários destinatários."
787
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
788
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
789
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
790
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
791
- #: app/features/organizers.php:289 app/features/popup/event.php:128
792
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
793
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
794
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
795
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -953,8 +958,8 @@ msgstr ""
953
 
954
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
955
  #: app/features/events.php:432 app/features/events.php:1283
956
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
957
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
958
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
959
  #: app/skins/single.php:1126 app/skins/single/default.php:213
960
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1033,7 +1038,7 @@ msgid "How to set label"
1033
  msgstr ""
1034
 
1035
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1036
- #: app/features/events.php:4195 app/features/fes/form.php:998
1037
  #: app/features/labels.php:61 app/features/labels.php:227
1038
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1039
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1069,7 +1074,7 @@ msgid "How to set location"
1069
  msgstr "Ocultar localização"
1070
 
1071
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1072
- #: app/features/events.php:3876 app/features/events.php:4188
1073
  #: app/features/locations.php:58 app/features/locations.php:267
1074
  #: app/features/locations.php:329 app/features/locations.php:331
1075
  #: app/features/locations.php:340
@@ -1089,7 +1094,7 @@ msgstr "Ocultar localização"
1089
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1090
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1091
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1092
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1093
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1094
  #: app/features/search.php:97 app/libraries/main.php:3020
1095
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1103,7 +1108,7 @@ msgstr "Localização"
1103
 
1104
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1105
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1106
- #: app/features/speakers.php:136 app/features/speakers.php:209
1107
  #: app/skins/single.php:1406 app/skins/single.php:1473
1108
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1109
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1126,7 +1131,7 @@ msgstr ""
1126
 
1127
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1128
  #: app/features/events.php:1519 app/features/events.php:1532
1129
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1130
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1131
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1132
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1177,8 +1182,8 @@ msgstr "Ocultar organizador"
1177
 
1178
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1179
  #: app/features/events.php:431 app/features/events.php:3877
1180
- #: app/features/events.php:4190 app/features/events.php:4191
1181
- #: app/features/events.php:4192
1182
  #: app/features/mec/meta_boxes/display_options.php:1660
1183
  #: app/features/mec/meta_boxes/search_form.php:80
1184
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1193,12 +1198,12 @@ msgstr "Ocultar organizador"
1193
  #: app/features/mec/meta_boxes/search_form.php:983
1194
  #: app/features/mec/meta_boxes/search_form.php:1070
1195
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1196
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1197
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1198
  #: app/features/organizers.php:58 app/features/organizers.php:208
1199
  #: app/features/organizers.php:277 app/features/organizers.php:279
1200
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1201
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1202
  #: app/features/popup/settings.php:263 app/features/search.php:103
1203
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1204
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1320,8 +1325,8 @@ msgstr "Tempo"
1320
  #: app/features/booking/calendar_novel.php:145
1321
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1322
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1323
- #: app/libraries/render.php:554 app/libraries/render.php:758
1324
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1325
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1326
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1327
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1387,7 +1392,7 @@ msgstr "Nenhum evento encontrado!"
1387
 
1388
  #: app/features/autoemails.php:74 app/features/events.php:230
1389
  #: app/features/labels.php:72 app/features/locations.php:70
1390
- #: app/features/organizers.php:70 app/features/speakers.php:72
1391
  #: app/features/tag.php:70
1392
  #, php-format
1393
  msgid "Edit %s"
@@ -1453,7 +1458,7 @@ msgstr "O Padrão é 6"
1453
  msgid "Go to events page"
1454
  msgstr "Mostrar Google Mapas na página do evento"
1455
 
1456
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1457
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1458
  #: app/features/wc.php:91 app/libraries/main.php:3072
1459
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1535,7 +1540,7 @@ msgstr "Reserva"
1535
  msgid "Back to Cart"
1536
  msgstr "Voltar para a lista de eventos."
1537
 
1538
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1539
  #: app/features/mec/settings.php:907
1540
  msgid "Event Color"
1541
  msgstr "Cor do Evento"
@@ -1547,8 +1552,8 @@ msgid "Recent Colors"
1547
  msgstr "Cor do Evento"
1548
 
1549
  #: app/features/contextual.php:55 app/features/mec.php:546
1550
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1551
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1552
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1553
  #: app/libraries/main.php:738
1554
  msgid "Settings"
@@ -1662,7 +1667,7 @@ msgid "Event Details/Single Event Page"
1662
  msgstr "Detalhes do Evento / Página Individual"
1663
 
1664
  #: app/features/contextual.php:166 app/features/events.php:1298
1665
- #: app/features/fes/form.php:883
1666
  msgid "Currency Options"
1667
  msgstr "Opções de Moeda"
1668
 
@@ -1754,8 +1759,8 @@ msgid "Public File to Download"
1754
  msgstr ""
1755
 
1756
  #: app/features/dlfile.php:297 app/features/events.php:3874
1757
- #: app/features/events.php:4181 app/features/events.php:4730
1758
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1759
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1760
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1761
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1764,7 +1769,7 @@ msgid "Title"
1764
  msgstr "Título"
1765
 
1766
  #: app/features/dlfile.php:301 app/features/events.php:1988
1767
- #: app/features/events.php:2248 app/features/events.php:4182
1768
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1769
  #: app/libraries/hourlyschedule.php:152
1770
  msgid "Description"
@@ -1811,7 +1816,7 @@ msgid "Before"
1811
  msgstr "Antes R$ 10"
1812
 
1813
  #: app/features/emails/details.php:35 app/features/events.php:1223
1814
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1815
  msgid "After"
1816
  msgstr "Após"
1817
 
@@ -1822,7 +1827,7 @@ msgid "event occurrence."
1822
  msgstr "Próxima Ocorrência"
1823
 
1824
  #: app/features/emails/details.php:40 app/features/events.php:192
1825
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1826
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1827
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1828
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1843,11 +1848,11 @@ msgstr ""
1843
  msgid "Add Event"
1844
  msgstr "Adicionar Evento"
1845
 
1846
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1847
  msgid "Add New Event"
1848
  msgstr "Adicionar Novo Evento"
1849
 
1850
- #: app/features/events.php:196 app/features/ix.php:4573
1851
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1852
  #: app/skins/map/tpl.php:93
1853
  msgid "No events found!"
@@ -1858,7 +1863,7 @@ msgid "Edit Event"
1858
  msgstr ""
1859
 
1860
  #: app/features/events.php:199 app/features/fes/list.php:100
1861
- #: app/features/popup/event.php:254
1862
  msgid "View Event"
1863
  msgstr "Ver Evento"
1864
 
@@ -1867,7 +1872,7 @@ msgid "No events found in Trash!"
1867
  msgstr "Nenhum evento encontrado na Lixeira!"
1868
 
1869
  #: app/features/events.php:219 app/features/events.php:3831
1870
- #: app/features/events.php:4196 app/features/fes/form.php:972
1871
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1872
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1873
  #: app/libraries/main.php:7619
@@ -1876,49 +1881,49 @@ msgstr "Categorias"
1876
 
1877
  #: app/features/events.php:229 app/features/labels.php:71
1878
  #: app/features/locations.php:69 app/features/organizers.php:69
1879
- #: app/features/speakers.php:71 app/features/tag.php:69
1880
  #, php-format
1881
  msgid "All %s"
1882
  msgstr ""
1883
 
1884
  #: app/features/events.php:231 app/features/labels.php:73
1885
  #: app/features/locations.php:71 app/features/organizers.php:71
1886
- #: app/features/speakers.php:73 app/features/tag.php:71
1887
  #, php-format
1888
  msgid "View %s"
1889
  msgstr ""
1890
 
1891
  #: app/features/events.php:232 app/features/labels.php:74
1892
  #: app/features/locations.php:72 app/features/organizers.php:72
1893
- #: app/features/speakers.php:74 app/features/tag.php:72
1894
  #, php-format
1895
  msgid "Update %s"
1896
  msgstr ""
1897
 
1898
  #: app/features/events.php:233 app/features/labels.php:75
1899
  #: app/features/locations.php:73 app/features/organizers.php:73
1900
- #: app/features/speakers.php:75 app/features/tag.php:73
1901
  #, php-format
1902
  msgid "Add New %s"
1903
  msgstr ""
1904
 
1905
  #: app/features/events.php:234 app/features/labels.php:76
1906
  #: app/features/locations.php:74 app/features/organizers.php:74
1907
- #: app/features/speakers.php:76 app/features/tag.php:74
1908
  #, php-format
1909
  msgid "New %s Name"
1910
  msgstr ""
1911
 
1912
  #: app/features/events.php:235 app/features/labels.php:77
1913
  #: app/features/locations.php:75 app/features/organizers.php:75
1914
- #: app/features/speakers.php:77 app/features/tag.php:75
1915
  #, php-format
1916
  msgid "Popular %s"
1917
  msgstr ""
1918
 
1919
  #: app/features/events.php:236 app/features/labels.php:78
1920
  #: app/features/locations.php:76 app/features/organizers.php:76
1921
- #: app/features/speakers.php:78 app/features/tag.php:76
1922
  #, php-format
1923
  msgid "Search %s"
1924
  msgstr ""
@@ -1948,7 +1953,7 @@ msgstr ""
1948
  #: app/features/events.php:278 app/features/events.php:336
1949
  #: app/features/locations.php:161 app/features/locations.php:213
1950
  #: app/features/organizers.php:133 app/features/organizers.php:164
1951
- #: app/features/speakers.php:181 app/features/speakers.php:232
1952
  msgid "Upload/Add image"
1953
  msgstr "Enviar/Adicionar imagem"
1954
 
@@ -1957,7 +1962,7 @@ msgstr "Enviar/Adicionar imagem"
1957
  #: app/features/locations.php:393 app/features/locations.php:400
1958
  #: app/features/organizers.php:134 app/features/organizers.php:165
1959
  #: app/features/organizers.php:316 app/features/organizers.php:323
1960
- #: app/features/speakers.php:182 app/features/speakers.php:233
1961
  msgid "Remove image"
1962
  msgstr "Remover imagem"
1963
 
@@ -1977,7 +1982,7 @@ msgstr "Detalhes do Evento"
1977
  msgid "Date And Time"
1978
  msgstr "Data e Hora"
1979
 
1980
- #: app/features/events.php:425 app/features/fes/form.php:384
1981
  msgid "Event Repeating"
1982
  msgstr "Repetição de Eventos"
1983
 
@@ -2022,10 +2027,10 @@ msgid "Guest Data"
2022
  msgstr ""
2023
 
2024
  #: app/features/events.php:605 app/features/events.php:2641
2025
- #: app/features/events.php:4440 app/features/fes.php:280
2026
- #: app/features/fes/form.php:814 app/features/labels.php:184
2027
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2028
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2029
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2030
  msgid "Name"
2031
  msgstr "Nome"
@@ -2036,13 +2041,13 @@ msgid ""
2036
  "overwrite in the next import from Google."
2037
  msgstr ""
2038
 
2039
- #: app/features/events.php:619 app/features/fes/form.php:282
2040
  msgid "Date and Time"
2041
  msgstr "Data e Hora"
2042
 
2043
  #: app/features/events.php:622 app/features/events.php:626
2044
- #: app/features/events.php:3878 app/features/events.php:4183
2045
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2046
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2047
  #: app/features/mec/meta_boxes/display_options.php:57
2048
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2060,13 +2065,13 @@ msgstr "Data e Hora"
2060
  #: app/features/mec/meta_boxes/display_options.php:2347
2061
  #: app/features/mec/meta_boxes/display_options.php:2478
2062
  #: app/features/mec/meta_boxes/display_options.php:2584
2063
- #: app/features/popup/event.php:77
2064
  msgid "Start Date"
2065
  msgstr "Data Inicial"
2066
 
2067
  #: app/features/events.php:642 app/features/events.php:646
2068
- #: app/features/events.php:3879 app/features/events.php:4185
2069
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2070
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2071
  #: app/features/mec/meta_boxes/display_options.php:73
2072
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2075,33 +2080,33 @@ msgstr "Data Inicial"
2075
  #: app/features/mec/meta_boxes/display_options.php:788
2076
  #: app/features/mec/meta_boxes/display_options.php:1618
2077
  #: app/features/mec/meta_boxes/display_options.php:2363
2078
- #: app/features/popup/event.php:94
2079
  msgid "End Date"
2080
  msgstr "Data de Término"
2081
 
2082
- #: app/features/events.php:669 app/features/fes/form.php:324
2083
- #: app/features/popup/event.php:111
2084
  #, fuzzy
2085
  #| msgid "All Day Event"
2086
  msgid "All-day Event"
2087
  msgstr "Evento o Dia Todo"
2088
 
2089
- #: app/features/events.php:679 app/features/fes/form.php:327
2090
  msgid "Hide Event Time"
2091
  msgstr "Ocultar Hora do Evento"
2092
 
2093
- #: app/features/events.php:689 app/features/fes/form.php:330
2094
  msgid "Hide Event End Time"
2095
  msgstr "Ocultar Hora de Término do Evento"
2096
 
2097
  #: app/features/events.php:694 app/features/events.php:698
2098
- #: app/features/fes/form.php:334
2099
  #, fuzzy
2100
  #| msgid "Note to reviewer"
2101
  msgid "Notes on the time"
2102
  msgstr "Nota para o revisor"
2103
 
2104
- #: app/features/events.php:699 app/features/fes/form.php:335
2105
  #, fuzzy
2106
  #| msgid ""
2107
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2113,7 +2118,7 @@ msgstr ""
2113
  "Ele é exibido ao lado da hora do evento no calendário. Você pode inserir o "
2114
  "fuso-horário etc. nesse campo."
2115
 
2116
- #: app/features/events.php:711 app/features/fes/form.php:342
2117
  #, fuzzy
2118
  #| msgid "Time"
2119
  msgid "Timezone"
@@ -2124,55 +2129,55 @@ msgstr "Tempo"
2124
  #: app/features/events.php:1793 app/features/events.php:1813
2125
  #: app/features/events.php:1868 app/features/events.php:2438
2126
  #: app/features/events.php:2561 app/features/events.php:2672
2127
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2128
  msgid "Inherit from global options"
2129
  msgstr "Herdar de opções globais"
2130
 
2131
  #: app/features/events.php:725 app/features/events.php:728
2132
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2133
  #: app/features/mec/settings.php:858
2134
  #, fuzzy
2135
  #| msgid "Countdown View"
2136
  msgid "Countdown Method"
2137
  msgstr "Visualizar Contagem Regressiva"
2138
 
2139
- #: app/features/events.php:730 app/features/fes/form.php:361
2140
  #, fuzzy
2141
  #| msgid "Start Date"
2142
  msgid "Count to Event Start"
2143
  msgstr "Data Inicial"
2144
 
2145
- #: app/features/events.php:731 app/features/fes/form.php:362
2146
  #, fuzzy
2147
  #| msgid "No event found!"
2148
  msgid "Count to Event End"
2149
  msgstr "Nenhum evento encontrado!"
2150
 
2151
- #: app/features/events.php:737 app/features/fes/form.php:369
2152
  #: app/modules/weather/darksky.php:57
2153
  msgid "Visibility"
2154
  msgstr ""
2155
 
2156
- #: app/features/events.php:740 app/features/fes/form.php:372
2157
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2158
  #, fuzzy
2159
  #| msgid "Event Cost"
2160
  msgid "Event Visibility"
2161
  msgstr "Custo do Evento"
2162
 
2163
- #: app/features/events.php:741 app/features/fes/form.php:373
2164
  #, fuzzy
2165
  #| msgid "Booking"
2166
  msgid "Show on Shortcodes"
2167
  msgstr "Reserva"
2168
 
2169
- #: app/features/events.php:742 app/features/fes/form.php:374
2170
  #, fuzzy
2171
  #| msgid "Shortcodes"
2172
  msgid "Hide on Shortcodes"
2173
  msgstr "Códigos Curtos"
2174
 
2175
- #: app/features/events.php:749 app/features/fes/form.php:382
2176
  #, fuzzy
2177
  #| msgid "Repeat"
2178
  msgid "Repeating"
@@ -2184,65 +2189,70 @@ msgstr "Repetir"
2184
  msgid "Event Repeating (Recurring events)"
2185
  msgstr "Repetição de Eventos"
2186
 
2187
- #: app/features/events.php:762 app/features/fes/form.php:388
2188
  msgid "Repeats"
2189
  msgstr "Repetições"
2190
 
2191
- #: app/features/events.php:770 app/features/fes/form.php:390
2192
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2193
  #: app/skins/full_calendar/tpl.php:140
2194
  msgid "Daily"
2195
  msgstr "Diariamente"
2196
 
2197
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2198
  msgid "Every Weekday"
2199
  msgstr "Todos os Dias da Semana"
2200
 
2201
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2202
  msgid "Every Weekend"
2203
  msgstr "Todo Final de Semana"
2204
 
2205
- #: app/features/events.php:791 app/features/fes/form.php:393
2206
  msgid "Certain Weekdays"
2207
  msgstr "Determinados Dias da Semana"
2208
 
2209
- #: app/features/events.php:798 app/features/fes/form.php:394
2210
- #: app/skins/default_full_calendar/tpl.php:78
2211
  #: app/skins/full_calendar/tpl.php:139
2212
  msgid "Weekly"
2213
  msgstr "Semanalmente"
2214
 
2215
- #: app/features/events.php:805 app/features/fes/form.php:395
2216
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2217
  #: app/skins/full_calendar/tpl.php:138
2218
  msgid "Monthly"
2219
  msgstr "Mensalmente"
2220
 
2221
- #: app/features/events.php:812 app/features/fes/form.php:396
2222
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2223
  #: app/skins/full_calendar/tpl.php:137
2224
  msgid "Yearly"
2225
  msgstr "Anualmente"
2226
 
2227
- #: app/features/events.php:819 app/features/fes/form.php:397
2228
  msgid "Custom Days"
2229
  msgstr "Dias Personalizados"
2230
 
2231
- #: app/features/events.php:826 app/features/fes/form.php:398
2232
  #, fuzzy
2233
  #| msgid "Advanced Method"
2234
  msgid "Advanced"
2235
  msgstr "Método Avançado"
2236
 
2237
- #: app/features/events.php:831 app/features/fes/form.php:402
2238
  msgid "Repeat Interval"
2239
  msgstr "Intervalo de Repetição"
2240
 
2241
- #: app/features/events.php:833 app/features/fes/form.php:403
2242
  msgid "Repeat interval"
2243
  msgstr "Intervalo de repetição"
2244
 
2245
- #: app/features/events.php:837 app/features/fes/form.php:406
2246
  msgid "Week Days"
2247
  msgstr "Dias da Semana"
2248
 
@@ -2254,7 +2264,7 @@ msgstr ""
2254
 
2255
  #: app/features/events.php:860 app/features/events.php:2101
2256
  #: app/features/events.php:2129 app/features/events.php:2343
2257
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2258
  #: app/features/ix/import_g_calendar.php:51
2259
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2260
  #: app/libraries/skins.php:1389
@@ -2265,19 +2275,19 @@ msgstr "Iniciar"
2265
  #: app/features/events.php:2085 app/features/events.php:2167
2266
  #: app/features/events.php:2332 app/features/events.php:2376
2267
  #: app/features/events.php:2449 app/features/events.php:2566
2268
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2269
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2270
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2271
  msgid "Add"
2272
  msgstr "Adicionar"
2273
 
2274
- #: app/features/events.php:877 app/features/fes/form.php:454
2275
  #, fuzzy
2276
  #| msgid "Custom Days"
2277
  msgid "Custom Days Repeating"
2278
  msgstr "Dias Personalizados"
2279
 
2280
- #: app/features/events.php:880 app/features/fes/form.php:457
2281
  msgid ""
2282
  "Add certain days to event occurrence dates. If you have a single day event, "
2283
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2286,52 +2296,52 @@ msgstr ""
2286
 
2287
  #: app/features/events.php:891 app/features/events.php:2105
2288
  #: app/features/events.php:2133 app/features/events.php:2347
2289
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2290
  #, fuzzy
2291
  #| msgid "Enabled"
2292
  msgid "End"
2293
  msgstr "Ativado"
2294
 
2295
- #: app/features/events.php:968 app/features/fes/form.php:530
2296
  #, fuzzy
2297
  #| msgid "First name"
2298
  msgid "First"
2299
  msgstr "Primeiro nome"
2300
 
2301
- #: app/features/events.php:1010 app/features/fes/form.php:572
2302
  #, fuzzy
2303
  #| msgid "second"
2304
  msgid "Second"
2305
  msgstr "segundo"
2306
 
2307
- #: app/features/events.php:1052 app/features/fes/form.php:614
2308
  msgid "Third"
2309
  msgstr ""
2310
 
2311
- #: app/features/events.php:1094 app/features/fes/form.php:656
2312
  msgid "Fourth"
2313
  msgstr ""
2314
 
2315
- #: app/features/events.php:1136 app/features/fes/form.php:698
2316
  #, fuzzy
2317
  #| msgid "Last name"
2318
  msgid "Last"
2319
  msgstr "Último nome"
2320
 
2321
- #: app/features/events.php:1183 app/features/fes/form.php:744
2322
  msgid "Ends Repeat"
2323
  msgstr "Término da Repetição"
2324
 
2325
- #: app/features/events.php:1195 app/features/fes/form.php:748
2326
  msgid "Never"
2327
  msgstr "Nunca"
2328
 
2329
- #: app/features/events.php:1207 app/features/fes/form.php:753
2330
  msgid "On"
2331
  msgstr "Em"
2332
 
2333
  #: app/features/events.php:1227 app/features/events.php:1231
2334
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2335
  msgid "Occurrences times"
2336
  msgstr "Várias ocorrências"
2337
 
@@ -2347,14 +2357,14 @@ msgstr ""
2347
  "O evento terminará após certas repetições. Por exemplo, se você configurá-lo "
2348
  "para 10, o evento terminará após 10 repetições."
2349
 
2350
- #: app/features/events.php:1248 app/features/fes/form.php:779
2351
  #, fuzzy
2352
  #| msgid "Next Occurrence of Other Events"
2353
  msgid "Show only one occurrence of this event"
2354
  msgstr "Próxima Ocorrência de Outros Eventos"
2355
 
2356
- #: app/features/events.php:1277 app/features/events.php:4193
2357
- #: app/features/fes/form.php:865
2358
  #: app/features/mec/meta_boxes/search_form.php:116
2359
  #: app/features/mec/meta_boxes/search_form.php:204
2360
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2378,73 +2388,73 @@ msgstr "Próxima Ocorrência de Outros Eventos"
2378
  #: app/features/mec/notifications.php:1511
2379
  #: app/features/mec/notifications.php:1628
2380
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2381
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2382
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2383
  #: app/widgets/single.php:122
2384
  msgid "Event Cost"
2385
  msgstr "Custo do Evento"
2386
 
2387
- #: app/features/events.php:1292 app/features/fes/form.php:877
2388
  msgid "Show the minimum price based on tickets"
2389
  msgstr ""
2390
 
2391
- #: app/features/events.php:1300 app/features/fes/form.php:885
2392
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2393
  #: app/libraries/main.php:646
2394
  msgid "Currency"
2395
  msgstr "Moeda"
2396
 
2397
  #: app/features/events.php:1310 app/features/events.php:1315
2398
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2399
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2400
  msgid "Currency Sign"
2401
  msgstr "Sinal da Moeda"
2402
 
2403
- #: app/features/events.php:1316 app/features/fes/form.php:901
2404
  #: app/features/mec/settings.php:600
2405
  msgid "Default value will be \"currency\" if you leave it empty."
2406
  msgstr "O valor padrão será \"moeda\" se você deixá-lo vazio."
2407
 
2408
- #: app/features/events.php:1323 app/features/fes/form.php:908
2409
  #: app/features/mec/settings.php:607
2410
  msgid "Currency Position"
2411
  msgstr "Posição da Moeda"
2412
 
2413
- #: app/features/events.php:1326 app/features/fes/form.php:911
2414
  #: app/features/mec/settings.php:610
2415
  #, fuzzy
2416
  #| msgid "Before $10"
2417
  msgid "$10 (Before)"
2418
  msgstr "Antes R$ 10"
2419
 
2420
- #: app/features/events.php:1327 app/features/fes/form.php:912
2421
  #: app/features/mec/settings.php:611
2422
  msgid "$ 10 (Before with Space)"
2423
  msgstr ""
2424
 
2425
- #: app/features/events.php:1328 app/features/fes/form.php:913
2426
  #: app/features/mec/settings.php:612
2427
  #, fuzzy
2428
  #| msgid "After"
2429
  msgid "10$ (After)"
2430
  msgstr "Após"
2431
 
2432
- #: app/features/events.php:1329 app/features/fes/form.php:914
2433
  #: app/features/mec/settings.php:613
2434
  msgid "10 $ (After with Space)"
2435
  msgstr ""
2436
 
2437
- #: app/features/events.php:1334 app/features/fes/form.php:919
2438
  #: app/features/mec/settings.php:618
2439
  msgid "Thousand Separator"
2440
  msgstr "Separador de Milhares"
2441
 
2442
- #: app/features/events.php:1340 app/features/fes/form.php:925
2443
  #: app/features/mec/settings.php:624
2444
  msgid "Decimal Separator"
2445
  msgstr "Separador Decimal"
2446
 
2447
- #: app/features/events.php:1350 app/features/fes/form.php:935
2448
  #: app/features/mec/settings.php:634
2449
  msgid "No decimal"
2450
  msgstr "Sem decimal"
@@ -2470,21 +2480,21 @@ msgstr ""
2470
  msgid "Day 1"
2471
  msgstr ""
2472
 
2473
- #: app/features/events.php:1498 app/features/fes/form.php:829
2474
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2475
  msgid "Event Links"
2476
  msgstr "Links do Evento"
2477
 
2478
  #: app/features/events.php:1501 app/features/events.php:1509
2479
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2480
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2481
  #: app/libraries/main.php:7649
2482
  msgid "Event Link"
2483
  msgstr "Link do Evento"
2484
 
2485
  #: app/features/events.php:1504 app/features/events.php:1522
2486
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2487
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2488
  msgid "eg. http://yoursite.com/your-event"
2489
  msgstr "exemplo, http://seusite.com/seu-evento"
2490
 
@@ -2505,24 +2515,24 @@ msgstr ""
2505
  msgid "URL Shortener"
2506
  msgstr ""
2507
 
2508
- #: app/features/events.php:1525 app/features/fes/form.php:838
2509
- #: app/features/occurrences.php:527
2510
  msgid "More Information"
2511
  msgstr "Mais Informações"
2512
 
2513
- #: app/features/events.php:1527 app/features/fes/form.php:840
2514
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2515
  #: app/features/popup/shortcode.php:481
2516
  msgid "Current Window"
2517
  msgstr "Janela Atual"
2518
 
2519
- #: app/features/events.php:1528 app/features/fes/form.php:841
2520
- #: app/features/mec.php:1114 app/features/occurrences.php:530
2521
  #: app/features/popup/shortcode.php:485
2522
  msgid "New Window"
2523
  msgstr "Nova Janela"
2524
 
2525
- #: app/features/events.php:1533 app/features/fes/form.php:843
2526
  msgid ""
2527
  "If you fill it, it will be shown in event details page as an optional link. "
2528
  "Insert full link including http(s)://"
@@ -2901,9 +2911,9 @@ msgid "Ticket ID"
2901
  msgstr "Bilhete"
2902
 
2903
  #: app/features/events.php:1944 app/features/events.php:2211
2904
- #: app/features/events.php:4180 app/features/fes.php:280
2905
  #: app/features/labels.php:183 app/features/locations.php:266
2906
- #: app/features/organizers.php:207 app/features/speakers.php:285
2907
  msgid "ID"
2908
  msgstr "ID"
2909
 
@@ -2912,12 +2922,12 @@ msgid "Ticket Name"
2912
  msgstr "Nome do Bilhete"
2913
 
2914
  #: app/features/events.php:1956 app/features/events.php:2219
2915
- #: app/features/events.php:4184 app/libraries/skins.php:1406
2916
  msgid "Start Time"
2917
  msgstr "Horário de Início"
2918
 
2919
  #: app/features/events.php:1970 app/features/events.php:2233
2920
- #: app/features/events.php:4186 app/libraries/skins.php:1407
2921
  msgid "End Time"
2922
  msgstr "Horário de Término"
2923
 
@@ -2939,7 +2949,7 @@ msgstr ""
2939
  #: app/features/events.php:2007 app/features/events.php:2011
2940
  #: app/features/events.php:2109 app/features/events.php:2136
2941
  #: app/features/events.php:2265 app/features/events.php:2268
2942
- #: app/features/events.php:2349 app/features/events.php:4739
2943
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2944
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2945
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
@@ -3105,7 +3115,7 @@ msgstr "Participante"
3105
  msgid "Fixed Fields"
3106
  msgstr "Campo Obrigatório"
3107
 
3108
- #: app/features/events.php:2887 app/features/events.php:4733
3109
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3110
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3111
  msgid "Attendees"
@@ -3137,7 +3147,7 @@ msgid "Expired Events"
3137
  msgstr ""
3138
 
3139
  #: app/features/events.php:3757 app/features/mec.php:1374
3140
- #: app/features/mec/dashboard.php:246 app/features/mec/settings.php:516
3141
  msgid "Upcoming Events"
3142
  msgstr ""
3143
 
@@ -3198,15 +3208,15 @@ msgid "JSON Export"
3198
  msgstr "Exportar JSON"
3199
 
3200
  #: app/features/events.php:4068 app/features/events.php:4069
3201
- #: app/features/events.php:4293
3202
  msgid "Duplicate"
3203
  msgstr "Duplicar"
3204
 
3205
- #: app/features/events.php:4187
3206
  msgid "Link"
3207
  msgstr "Link"
3208
 
3209
- #: app/features/events.php:4189 app/features/locations.php:111
3210
  #: app/features/locations.php:181 app/features/locations.php:268
3211
  #: app/features/mec/meta_boxes/search_form.php:108
3212
  #: app/features/mec/meta_boxes/search_form.php:196
@@ -3224,31 +3234,31 @@ msgstr "Link"
3224
  msgid "Address"
3225
  msgstr "Endereço"
3226
 
3227
- #: app/features/events.php:4191
3228
  #, php-format
3229
  msgid "%s Tel"
3230
  msgstr ""
3231
 
3232
- #: app/features/events.php:4192
3233
  #, php-format
3234
  msgid "%s Email"
3235
  msgstr ""
3236
 
3237
- #: app/features/events.php:4194 app/features/fes/form.php:951
3238
  #: app/features/mec/settings.php:876
3239
  msgid "Featured Image"
3240
  msgstr "Imagem Destacada"
3241
 
3242
- #: app/features/events.php:4197 app/features/fes/form.php:1044
3243
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3244
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3245
  msgid "Tags"
3246
  msgstr "Tags"
3247
 
3248
- #: app/features/events.php:4201 app/features/fes/form.php:1066
3249
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3250
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3251
- #: app/features/popup/settings.php:299 app/features/speakers.php:61
3252
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3253
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3254
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
@@ -3256,42 +3266,42 @@ msgstr "Tags"
3256
  msgid "Speakers"
3257
  msgstr ""
3258
 
3259
- #: app/features/events.php:4446 app/features/fes.php:280
3260
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3261
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3262
  #: app/libraries/main.php:7592
3263
  msgid "Ticket"
3264
  msgstr "Bilhete"
3265
 
3266
- #: app/features/events.php:4449 app/features/profile/profile.php:212
3267
  #, fuzzy
3268
  #| msgid "Verification"
3269
  msgid "Variations"
3270
  msgstr "Verificação"
3271
 
3272
- #: app/features/events.php:4464 app/features/fes.php:356
3273
  msgid "Unknown"
3274
  msgstr "Desconhecido"
3275
 
3276
- #: app/features/events.php:4492
3277
  msgid ""
3278
  "If you want to send an email, first select your attendees and then click in "
3279
  "the button below, please."
3280
  msgstr ""
3281
 
3282
- #: app/features/events.php:4492 app/features/mec/report.php:57
3283
  #, fuzzy
3284
  #| msgid "Organizer Email"
3285
  msgid "Send Email"
3286
  msgstr "E-mail do Organizador"
3287
 
3288
- #: app/features/events.php:4496
3289
  #, fuzzy
3290
  #| msgid "Attendees Form"
3291
  msgid "No Attendees Found!"
3292
  msgstr "Formulário de Participantes"
3293
 
3294
- #: app/features/events.php:4797
3295
  #, fuzzy
3296
  #| msgid "No bookings found!"
3297
  msgid "No Bookings Found!"
@@ -3433,70 +3443,70 @@ msgstr "O evento foi enviado. Será publicado o mais rápido possível."
3433
  msgid "The event published."
3434
  msgstr "O evento foi publicado."
3435
 
3436
- #: app/features/fes/form.php:178
3437
  #, fuzzy
3438
  #| msgid "Go back to events list."
3439
  msgid "Go back to events list"
3440
  msgstr "Voltar para a lista de eventos."
3441
 
3442
- #: app/features/fes/form.php:268 app/features/mec/settings.php:1061
3443
  #: app/features/mec/settings.php:1171
3444
  msgid "Excerpt"
3445
  msgstr ""
3446
 
3447
- #: app/features/fes/form.php:271
3448
  msgid "Optional Event Excerpt"
3449
  msgstr ""
3450
 
3451
- #: app/features/fes/form.php:278
3452
  msgid ""
3453
  "This event is imported from Google calendar so if you modify it would "
3454
  "overwrite in the next import from Google."
3455
  msgstr ""
3456
 
3457
- #: app/features/fes/form.php:407
3458
  #: app/features/mec/meta_boxes/display_options.php:1494
3459
  #: app/libraries/main.php:476
3460
  msgid "Monday"
3461
  msgstr "Segunda-feira"
3462
 
3463
- #: app/features/fes/form.php:408
3464
  #: app/features/mec/meta_boxes/display_options.php:1495
3465
  #: app/libraries/main.php:476
3466
  msgid "Tuesday"
3467
  msgstr "Terça-feira"
3468
 
3469
- #: app/features/fes/form.php:409
3470
  #: app/features/mec/meta_boxes/display_options.php:1496
3471
  #: app/libraries/main.php:476
3472
  msgid "Wednesday"
3473
  msgstr "Quarta-feira"
3474
 
3475
- #: app/features/fes/form.php:410
3476
  #: app/features/mec/meta_boxes/display_options.php:1497
3477
  #: app/libraries/main.php:476
3478
  msgid "Thursday"
3479
  msgstr "Quinta-feira"
3480
 
3481
- #: app/features/fes/form.php:411
3482
  #: app/features/mec/meta_boxes/display_options.php:1498
3483
  #: app/libraries/main.php:476
3484
  msgid "Friday"
3485
  msgstr "Sexta-feira"
3486
 
3487
- #: app/features/fes/form.php:412
3488
  #: app/features/mec/meta_boxes/display_options.php:1499
3489
  #: app/libraries/main.php:476
3490
  msgid "Saturday"
3491
  msgstr "Sábado"
3492
 
3493
- #: app/features/fes/form.php:413
3494
  #: app/features/mec/meta_boxes/display_options.php:1493
3495
  #: app/libraries/main.php:476
3496
  msgid "Sunday"
3497
  msgstr "Domingo"
3498
 
3499
- #: app/features/fes/form.php:766
3500
  msgid ""
3501
  "The event will finish after certain repeats. For example if you set it to "
3502
  "10, the event will finish after 10 repeats."
@@ -3504,24 +3514,24 @@ msgstr ""
3504
  "O evento terminará após certas repetições. Por exemplo, se você configurá-lo "
3505
  "para 10, o evento terminará após 10 repetições."
3506
 
3507
- #: app/features/fes/form.php:790
3508
  msgid "Note to reviewer"
3509
  msgstr "Nota para o revisor"
3510
 
3511
- #: app/features/fes/form.php:808
3512
  msgid "User Data"
3513
  msgstr ""
3514
 
3515
- #: app/features/fes/form.php:811
3516
  msgid "eg. yourname@gmail.com"
3517
  msgstr ""
3518
 
3519
- #: app/features/fes/form.php:815 app/features/organizers.php:297
3520
- #: app/features/popup/event.php:185
3521
  msgid "eg. John Smith"
3522
  msgstr "ex. John Smith"
3523
 
3524
- #: app/features/fes/form.php:833
3525
  #, fuzzy
3526
  #| msgid ""
3527
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -3533,41 +3543,41 @@ msgstr ""
3533
  "Se você o preencher, ele será substituído em vez do link de página de evento "
3534
  "padrão. Inserir link completo, incluindo http(s)://"
3535
 
3536
- #: app/features/fes/form.php:956
3537
  msgid "Remove Image"
3538
  msgstr "Remover Imagem"
3539
 
3540
- #: app/features/fes/form.php:1046
3541
  msgid "Insert your desired tags, comma separated."
3542
  msgstr "Insira as tags desejadas, separadas por vírgulas."
3543
 
3544
- #: app/features/fes/form.php:1068
3545
  #, fuzzy
3546
  #| msgid "No Search Options"
3547
  msgid "Speakers Names"
3548
  msgstr "Sem Opções de Pesquisa"
3549
 
3550
- #: app/features/fes/form.php:1069
3551
  msgid "Separate names with commas: Justin, Chris"
3552
  msgstr ""
3553
 
3554
- #: app/features/fes/form.php:1114
3555
  #, fuzzy, php-format
3556
  #| msgid "Please %s/%s in order to submit new events."
3557
  msgid "I accept the %s in order to submit an event."
3558
  msgstr "Por favor, %s/%s a fim de apresentar novos eventos."
3559
 
3560
- #: app/features/fes/form.php:1114
3561
  msgid "Privacy Policy"
3562
  msgstr ""
3563
 
3564
- #: app/features/fes/form.php:1116
3565
  #, fuzzy
3566
  #| msgid "Please %s/%s in order to submit new events."
3567
  msgid "I accept the Privacy Policy in order to submit an event."
3568
  msgstr "Por favor, %s/%s a fim de apresentar novos eventos."
3569
 
3570
- #: app/features/fes/form.php:1122
3571
  #, fuzzy
3572
  #| msgid "Edit Events"
3573
  msgid "Submit Event"
@@ -3652,37 +3662,37 @@ msgstr ""
3652
  msgid "The events are imported successfully!"
3653
  msgstr ""
3654
 
3655
- #: app/features/ix.php:1301
3656
  msgid "Third Party plugin is not installed and activated!"
3657
  msgstr ""
3658
 
3659
- #: app/features/ix.php:1325
3660
  msgid "Third Party plugin is invalid!"
3661
  msgstr ""
3662
 
3663
- #: app/features/ix.php:3300 app/features/ix.php:3361
3664
  #, fuzzy
3665
  #| msgid "Both of API key and Calendar ID are required!"
3666
  msgid "API key and Calendar ID are required!"
3667
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
3668
 
3669
- #: app/features/ix.php:3356 app/features/ix.php:3852 app/features/ix.php:4580
3670
  #, fuzzy
3671
  #| msgid "Please select some events to import!"
3672
  msgid "Please select events to import!"
3673
  msgstr "Por favor, selecione alguns eventos para importar!"
3674
 
3675
- #: app/features/ix.php:3794 app/features/ix.php:3857
3676
  #, fuzzy
3677
  #| msgid "Both of API key and Calendar ID are required!"
3678
  msgid "API key and Group URL are required!"
3679
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
3680
 
3681
- #: app/features/ix.php:4096
3682
  msgid "Check at Meetup"
3683
  msgstr ""
3684
 
3685
- #: app/features/ix.php:4262
3686
  #, fuzzy
3687
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3688
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
@@ -3690,48 +3700,48 @@ msgstr ""
3690
  "Todos os IDs do cliente, Segredo e ID do Calendário do Cliente são "
3691
  "obrigatórios!"
3692
 
3693
- #: app/features/ix.php:4285
3694
  #, fuzzy, php-format
3695
  #| msgid "All seems good! Please click %s for authenticating your app."
3696
  msgid "All seems good! Please click %s to authenticate your app."
3697
  msgstr "Tudo parece ótimo! Clique em %s para autenticar seu aplicativo."
3698
 
3699
- #: app/features/ix.php:4285 app/features/mec/integrations.php:256
3700
  #: app/features/mec/settings.php:1496
3701
  msgid "here"
3702
  msgstr ""
3703
 
3704
- #: app/features/ix.php:4340
3705
  #, fuzzy
3706
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3707
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3708
  msgstr ""
3709
  "Todos os aplicativos, segredo e IDs do calendário do cliente são necessários!"
3710
 
3711
- #: app/features/ix.php:4502
3712
  #, fuzzy, php-format
3713
  #| msgid "%s events added to Google Calendar successfully."
3714
  msgid "%s events added to Google Calendar with success."
3715
  msgstr "Eventos %s adicionados ao Google Calendário com sucesso."
3716
 
3717
- #: app/features/ix.php:4503
3718
  #, fuzzy, php-format
3719
  #| msgid "%s previously added events get updated."
3720
  msgid "%s Updated previously added events."
3721
  msgstr "Os eventos %s adicionados anteriormente foram atualizados."
3722
 
3723
- #: app/features/ix.php:4504
3724
  #, php-format
3725
  msgid "%s events failed to add for following reasons: %s"
3726
  msgstr "Os eventos %s não foram adicionados pelas seguintes razões: %s"
3727
 
3728
- #: app/features/ix.php:4536
3729
  #, fuzzy
3730
  #| msgid "Please insert your facebook page's link."
3731
  msgid "Please insert your Facebook page's link."
3732
  msgstr "Insira o link da sua página do facebook."
3733
 
3734
- #: app/features/ix.php:4547 app/features/ix.php:4589
3735
  #, fuzzy
3736
  #| msgid ""
3737
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -3743,7 +3753,7 @@ msgstr ""
3743
  "Não foi possível reconhecer sua página do Facebook. Confira e forneça um "
3744
  "link válido para a página do facebook."
3745
 
3746
- #: app/features/ix.php:4584
3747
  msgid "Please insert your facebook page's link."
3748
  msgstr "Insira o link da sua página do facebook."
3749
 
@@ -3961,7 +3971,7 @@ msgstr "Participantes do Evento"
3961
  msgid "Add to Google Calendar"
3962
  msgstr "Adicionar ao Calendário do Google"
3963
 
3964
- #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1261
3965
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3966
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3967
  #: app/features/mec/single.php:604
@@ -4079,7 +4089,7 @@ msgstr "Importar do Calendário do Facebook"
4079
  msgid "Import all of your Facebook events into MEC."
4080
  msgstr "Importe todos os seus eventos do facebook para o CEM."
4081
 
4082
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:124
4083
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4084
  msgid "Documentation"
4085
  msgstr "Documentação"
@@ -4392,7 +4402,7 @@ msgid ""
4392
  msgstr ""
4393
 
4394
  #: app/features/labels.php:79 app/features/locations.php:77
4395
- #: app/features/organizers.php:77 app/features/speakers.php:79
4396
  #: app/features/tag.php:77
4397
  #, fuzzy, php-format
4398
  #| msgid "Search Coupons"
@@ -4400,7 +4410,7 @@ msgid "← Back to %s"
4400
  msgstr "Pesquisar Cupons"
4401
 
4402
  #: app/features/labels.php:80 app/features/locations.php:78
4403
- #: app/features/organizers.php:78 app/features/speakers.php:80
4404
  #: app/features/tag.php:78
4405
  #, fuzzy, php-format
4406
  #| msgid "No events found!"
@@ -4446,7 +4456,7 @@ msgid "You can show featured, canceled and custom labels by a different style!"
4446
  msgstr ""
4447
 
4448
  #: app/features/labels.php:186 app/features/locations.php:269
4449
- #: app/features/organizers.php:210 app/features/speakers.php:289
4450
  #: app/modules/booking/steps/tickets.php:172
4451
  msgid "Count"
4452
  msgstr "Contagem"
@@ -4462,7 +4472,7 @@ msgid "Event %s"
4462
  msgstr ""
4463
 
4464
  #: app/features/locations.php:59 app/features/mec.php:526
4465
- #: app/features/mec/dashboard.php:228 app/features/mec/meta_boxes/filter.php:70
4466
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4467
  #: app/libraries/main.php:7623
4468
  msgid "Locations"
@@ -4473,7 +4483,7 @@ msgid "Enter the location address"
4473
  msgstr "Digite o endereço da localização"
4474
 
4475
  #: app/features/locations.php:131 app/features/locations.php:197
4476
- #: app/features/locations.php:374 app/features/popup/event.php:149
4477
  msgid "Latitude"
4478
  msgstr "Latitude"
4479
 
@@ -4484,7 +4494,7 @@ msgid "Geo latitude (Optional for Lite)"
4484
  msgstr "Geo latitude (Opcional)"
4485
 
4486
  #: app/features/locations.php:139 app/features/locations.php:201
4487
- #: app/features/locations.php:375 app/features/popup/event.php:150
4488
  msgid "Longitude"
4489
  msgstr "Longitude"
4490
 
@@ -4509,22 +4519,22 @@ msgstr "Geo latitude (Opcional)"
4509
 
4510
  #: app/features/locations.php:156 app/features/locations.php:210
4511
  #: app/features/organizers.php:128 app/features/organizers.php:161
4512
- #: app/features/speakers.php:176 app/features/speakers.php:229
4513
  msgid "Thumbnail"
4514
  msgstr "Miniatura"
4515
 
4516
  #: app/features/locations.php:329 app/features/occurrences.php:460
4517
- #: app/features/occurrences.php:487 app/features/organizers.php:277
4518
  #, php-format
4519
  msgid "Event Main %s"
4520
  msgstr ""
4521
 
4522
  #: app/features/locations.php:332 app/features/occurrences.php:464
4523
- #: app/features/popup/event.php:119
4524
  msgid "Hide location"
4525
  msgstr "Ocultar localização"
4526
 
4527
- #: app/features/locations.php:333 app/features/popup/event.php:120
4528
  msgid "Insert a new location"
4529
  msgstr "Inserir uma nova localização"
4530
 
@@ -4532,30 +4542,30 @@ msgstr "Inserir uma nova localização"
4532
  msgid "Choose one of saved locations or insert new one below."
4533
  msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
4534
 
4535
- #: app/features/locations.php:348 app/features/popup/event.php:141
4536
  msgid "Location Name"
4537
  msgstr "Nome da Localização"
4538
 
4539
- #: app/features/locations.php:349 app/features/popup/event.php:142
4540
  msgid "eg. City Hall"
4541
  msgstr "exemplo; Prefeitura"
4542
 
4543
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4544
- #: app/features/popup/event.php:145 app/widgets/single.php:134
4545
  msgid "Event Location"
4546
  msgstr "Localização do Evento"
4547
 
4548
- #: app/features/locations.php:353 app/features/popup/event.php:146
4549
  msgid "eg. City hall, Manhattan, New York"
4550
  msgstr "exemplo; Prefeitura, Manhattan, Nova Iorque"
4551
 
4552
- #: app/features/locations.php:378 app/features/popup/event.php:153
4553
  #, fuzzy
4554
  #| msgid "Longitude"
4555
  msgid "Latitude/Longitude"
4556
  msgstr "Longitude"
4557
 
4558
- #: app/features/locations.php:379 app/features/popup/event.php:154
4559
  msgid ""
4560
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4561
  "to convert the location address to geopoint, Latitude and Longitude are the "
@@ -4564,28 +4574,28 @@ msgid ""
4564
  "the location on the map to find lat long coordinates."
4565
  msgstr ""
4566
 
4567
- #: app/features/locations.php:379 app/features/popup/event.php:154
4568
  msgid "Get Latitude and Longitude"
4569
  msgstr ""
4570
 
4571
  #: app/features/locations.php:392 app/features/organizers.php:315
4572
- #: app/features/popup/event.php:204
4573
  msgid "Choose image"
4574
  msgstr "Escolha uma imagem"
4575
 
4576
- #: app/features/locations.php:406 app/features/occurrences.php:480
4577
- #: app/features/popup/event.php:137
4578
  msgid "Don't show map in single event page"
4579
  msgstr "Não mostrar mapa na página de evento individual"
4580
 
4581
- #: app/features/locations.php:409 app/libraries/main.php:7607
4582
  #: app/libraries/main.php:7654
4583
  #, fuzzy
4584
  #| msgid "Search Locations"
4585
  msgid "Other Locations"
4586
  msgstr "Pesquisar Localizações"
4587
 
4588
- #: app/features/locations.php:411
4589
  msgid ""
4590
  "You can select extra locations in addition to main location if you like."
4591
  msgstr ""
@@ -4663,7 +4673,7 @@ msgstr "Suporte"
4663
  msgid "Support"
4664
  msgstr "Suporte"
4665
 
4666
- #: app/features/mec.php:527 app/features/mec/dashboard.php:235
4667
  #: app/features/mec/meta_boxes/filter.php:71
4668
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4669
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
@@ -4671,7 +4681,7 @@ msgid "Organizers"
4671
  msgstr "Organizadores"
4672
 
4673
  #: app/features/mec.php:536 app/features/mec.php:596
4674
- #: app/features/mec/dashboard.php:221
4675
  msgid "Shortcodes"
4676
  msgstr "Códigos Curtos"
4677
 
@@ -4888,7 +4898,7 @@ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
4888
  msgstr ""
4889
 
4890
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4891
- #: app/features/mec/dashboard.php:64 app/features/mec/go-pro.php:14
4892
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4893
  msgid "Version"
4894
  msgstr "Versão"
@@ -4914,9 +4924,9 @@ msgid "Search..."
4914
  msgstr "Formulário de Pesquisa"
4915
 
4916
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4917
- #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1186
4918
- #: app/features/mec/booking.php:1196 app/features/mec/booking.php:1278
4919
- #: app/features/mec/booking.php:1292 app/features/mec/integrations.php:24
4920
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4921
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4922
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
@@ -5513,27 +5523,27 @@ msgstr "Completar automaticamente os pedidos do WC"
5513
  msgid "It applies only to the orders that are related to MEC."
5514
  msgstr "Aplica-se apenas aos pedidos relacionadas ao CEM."
5515
 
5516
- #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1156
5517
  msgid "After Add to Cart"
5518
  msgstr ""
5519
 
5520
- #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1159
5521
  #, fuzzy
5522
  #| msgid "Get Direction"
5523
  msgid "Redirect to Cart"
5524
  msgstr "Obter Direção"
5525
 
5526
- #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1160
5527
  #, fuzzy
5528
  #| msgid "Get Direction"
5529
  msgid "Redirect to Checkout"
5530
  msgstr "Obter Direção"
5531
 
5532
- #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1161
5533
  msgid "Optional View Cart Button"
5534
  msgstr ""
5535
 
5536
- #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1162
5537
  msgid "Optional Checkout Button"
5538
  msgstr ""
5539
 
@@ -5591,81 +5601,87 @@ msgid ""
5591
  "(Stripe) got canceled."
5592
  msgstr ""
5593
 
5594
- #: app/features/mec/booking.php:1117
 
 
 
 
 
 
5595
  msgid "Use MEC Cart System"
5596
  msgstr ""
5597
 
5598
- #: app/features/mec/booking.php:1119
5599
  msgid ""
5600
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5601
  "adding a simple cart and checkout system to your website."
5602
  msgstr ""
5603
 
5604
- #: app/features/mec/booking.php:1121
5605
  msgid "You cannot use following MEC features while using MEC Cart."
5606
  msgstr ""
5607
 
5608
- #: app/features/mec/booking.php:1123
5609
  #, fuzzy
5610
  #| msgid "Payment Gateways"
5611
  msgid "WooCommerce as Payment Gateway"
5612
  msgstr "Gateways de Pagamento"
5613
 
5614
- #: app/features/mec/booking.php:1124
5615
  #, fuzzy
5616
  #| msgid "Next Occurrence of Other Events"
5617
  msgid "Currency Per Event"
5618
  msgstr "Próxima Ocorrência de Outros Eventos"
5619
 
5620
- #: app/features/mec/booking.php:1125
5621
  #, fuzzy
5622
  #| msgid "Payment Gateways"
5623
  msgid "Disable Gateways Per Event"
5624
  msgstr "Gateways de Pagamento"
5625
 
5626
- #: app/features/mec/booking.php:1126
5627
  #, fuzzy
5628
  #| msgid "Stripe"
5629
  msgid "Stripe Connect Gateway"
5630
  msgstr "Listra"
5631
 
5632
- #: app/features/mec/booking.php:1127
5633
  #, fuzzy
5634
  #| msgid "Pay by WooCommerce"
5635
  msgid "Pay By WooCommerce Gateway"
5636
  msgstr "Pagar pelo Woocommerce"
5637
 
5638
- #: app/features/mec/booking.php:1128
5639
  #, fuzzy
5640
  #| msgid "New Organizer Name"
5641
  msgid "Organizer Payment Module"
5642
  msgstr "Nome do Novo Organizador"
5643
 
5644
- #: app/features/mec/booking.php:1132
5645
  #, fuzzy
5646
  #| msgid "Start Date"
5647
  msgid "Cart Page"
5648
  msgstr "Data Inicial"
5649
 
5650
- #: app/features/mec/booking.php:1140 app/features/mec/booking.php:1152
5651
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5652
  #, php-format
5653
  msgid "Put %s shortcode into the page."
5654
  msgstr "Coloque o código curto %s na página."
5655
 
5656
- #: app/features/mec/booking.php:1144
5657
  #, fuzzy
5658
  #| msgid "Checkout"
5659
  msgid "Checkout Page"
5660
  msgstr "Finalizar"
5661
 
5662
- #: app/features/mec/booking.php:1170
5663
  #, fuzzy
5664
  #| msgid "Enable note field"
5665
  msgid "Enable Cart Invoice"
5666
  msgstr "Habilitar campo nota"
5667
 
5668
- #: app/features/mec/booking.php:1256 app/features/mec/integrations.php:446
5669
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5670
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5671
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
@@ -5673,7 +5689,7 @@ msgstr "Habilitar campo nota"
5673
  msgid "Saved"
5674
  msgstr "Salvo"
5675
 
5676
- #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:447
5677
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5678
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5679
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
@@ -5681,7 +5697,7 @@ msgstr "Salvo"
5681
  msgid "Settings Saved!"
5682
  msgstr ""
5683
 
5684
- #: app/features/mec/booking.php:1283 app/features/mec/integrations.php:473
5685
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5686
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5687
  msgid "Please Refresh Page"
@@ -5697,12 +5713,7 @@ msgstr "Bem Vindo %s"
5697
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5698
  msgstr ""
5699
 
5700
- #: app/features/mec/dashboard.php:56 app/libraries/factory.php:217
5701
- msgctxt "plugin rate"
5702
- msgid "Rate the plugin ★★★★★"
5703
- msgstr ""
5704
-
5705
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5706
  #, php-format
5707
  msgid ""
5708
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -5710,71 +5721,54 @@ msgid ""
5710
  "Spots, etc you should upgrade to the Pro version."
5711
  msgstr ""
5712
 
5713
- #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:66
5714
  msgid "lite"
5715
  msgstr ""
5716
 
5717
- #: app/features/mec/dashboard.php:82 app/features/mec/go-pro.php:69
5718
  #: app/features/mec/support.php:126
5719
  msgid "GO PREMIUM"
5720
  msgstr ""
5721
 
5722
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5723
- #, php-format
5724
- msgid ""
5725
- "Easily get a discount coupon by rating us on %s or following and reposting "
5726
- "us on social media. Just send a screenshot to %s and you'll receive the %s"
5727
- msgstr ""
5728
-
5729
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5730
- #, fuzzy
5731
- #| msgid "Address"
5732
- msgid "WordPress"
5733
- msgstr "Endereço"
5734
-
5735
- #: app/features/mec/dashboard.php:85 app/features/mec/go-pro.php:72
5736
- msgid "Copouns!"
5737
- msgstr ""
5738
-
5739
- #: app/features/mec/dashboard.php:115
5740
  #, fuzzy
5741
  #| msgid "Modern Events Calendar"
5742
  msgid "Getting started with Modern Events Calendar"
5743
  msgstr "Calendário de Eventos Moderno"
5744
 
5745
- #: app/features/mec/dashboard.php:116
5746
  msgid ""
5747
  "In this short video, you can learn how to make an event and put a calendar "
5748
  "on your website. Please watch this 2 minutes video to the end."
5749
  msgstr ""
5750
 
5751
- #: app/features/mec/dashboard.php:132 app/features/mec/dashboard.php:156
5752
  #, fuzzy
5753
  #| msgid "MEC Activation"
5754
  msgid "License Activation"
5755
  msgstr "Ativação CEM"
5756
 
5757
- #: app/features/mec/dashboard.php:138 app/features/mec/dashboard.php:193
5758
  #, fuzzy
5759
  #| msgid "MEC Activation"
5760
  msgid "Activate Addons"
5761
  msgstr "Ativação CEM"
5762
 
5763
- #: app/features/mec/dashboard.php:146 app/features/mec/dashboard.php:202
5764
  msgid "You cannot access this section."
5765
  msgstr ""
5766
 
5767
- #: app/features/mec/dashboard.php:162
5768
  msgid ""
5769
  "In order to use all plugin features and options, please enter your purchase "
5770
  "code."
5771
  msgstr ""
5772
 
5773
- #: app/features/mec/dashboard.php:270
5774
  msgid "Popular Gateways"
5775
  msgstr ""
5776
 
5777
- #: app/features/mec/dashboard.php:328
5778
  msgid "Change Log"
5779
  msgstr "Registro de Alterações"
5780
 
@@ -7320,7 +7314,7 @@ msgstr ""
7320
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7321
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7322
  #: app/features/popup/settings.php:272 app/features/search.php:109
7323
- #: app/features/speakers.php:60 app/features/speakers.php:286
7324
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7325
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7326
  #: app/modules/speakers/details.php:18
@@ -8663,7 +8657,7 @@ msgstr ""
8663
  msgid "Please, insert comma to separate reminder hours."
8664
  msgstr ""
8665
 
8666
- #: app/features/mec/notifications.php:1408 app/features/popup/event.php:255
8667
  #: app/libraries/main.php:705
8668
  msgid "New Event"
8669
  msgstr "Novo Evento"
@@ -10979,13 +10973,13 @@ msgstr ""
10979
  msgid "Choose one of saved locations."
10980
  msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
10981
 
10982
- #: app/features/occurrences.php:491 app/features/organizers.php:280
10983
- #: app/features/popup/event.php:166
10984
  msgid "Hide organizer"
10985
  msgstr "Ocultar organizador"
10986
 
10987
- #: app/features/occurrences.php:499 app/features/organizers.php:289
10988
- #: app/features/popup/event.php:175
10989
  msgid "Choose one of saved organizers or insert new one below."
10990
  msgstr "Escolha um dos organizadores salvos ou insira um novo abaixo."
10991
 
@@ -10998,7 +10992,7 @@ msgid "Insert organizer email address."
10998
  msgstr "Insira o endereço de e-mail do organizador."
10999
 
11000
  #: app/features/organizers.php:120 app/features/organizers.php:157
11001
- #: app/features/organizers.php:308 app/features/popup/event.php:198
11002
  msgid "Link to organizer page"
11003
  msgstr "Link para a página do organizador"
11004
 
@@ -11012,27 +11006,27 @@ msgstr ""
11012
  msgid "Contact info"
11013
  msgstr "Informações de contato"
11014
 
11015
- #: app/features/organizers.php:281 app/features/popup/event.php:167
11016
  msgid "Insert a new organizer"
11017
  msgstr "Inserir um novo organizador"
11018
 
11019
- #: app/features/organizers.php:300 app/features/popup/event.php:188
11020
  msgid "Phone number."
11021
  msgstr ""
11022
 
11023
- #: app/features/organizers.php:301 app/features/popup/event.php:189
11024
  msgid "eg. +1 (234) 5678"
11025
  msgstr "ex. (00) 0000-0000"
11026
 
11027
- #: app/features/organizers.php:304 app/features/popup/event.php:193
11028
  msgid "Email address."
11029
  msgstr ""
11030
 
11031
- #: app/features/organizers.php:305 app/features/popup/event.php:194
11032
  msgid "eg. john@smith.com"
11033
  msgstr "ex. john@smith.com"
11034
 
11035
- #: app/features/organizers.php:309 app/features/popup/event.php:199
11036
  #, fuzzy
11037
  #| msgid "http://webnus.biz"
11038
  msgid "eg. https://webnus.net"
@@ -11048,72 +11042,72 @@ msgid ""
11048
  "You can select extra organizers in addition to main organizer if you like."
11049
  msgstr ""
11050
 
11051
- #: app/features/popup/event.php:58
11052
  #, fuzzy
11053
  #| msgid "Add Shortcode"
11054
  msgid "Adding an Event..."
11055
  msgstr "Adicionar Código Curto"
11056
 
11057
- #: app/features/popup/event.php:66
11058
  #, fuzzy
11059
  #| msgid "Event Note"
11060
  msgid "Event Name"
11061
  msgstr "Nota do Evento"
11062
 
11063
- #: app/features/popup/event.php:67
11064
  msgid "Event name is required"
11065
  msgstr ""
11066
 
11067
- #: app/features/popup/event.php:128
11068
  #, fuzzy
11069
  #| msgid "Choose one of saved locations or insert new one below."
11070
  msgid "Choose one of saved locations or insert new one."
11071
  msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
11072
 
11073
- #: app/features/popup/event.php:132
11074
  #, fuzzy
11075
  #| msgid "Add New Location"
11076
  msgid "Add Location"
11077
  msgstr "Adicionar Nova Localização"
11078
 
11079
- #: app/features/popup/event.php:179
11080
  #, fuzzy
11081
  #| msgid "Add New Organizer"
11082
  msgid "Add Organizer"
11083
  msgstr "Adicionar Novo Organizador"
11084
 
11085
- #: app/features/popup/event.php:219
11086
  #, fuzzy
11087
  #| msgid "Categories"
11088
  msgid "All Categories"
11089
  msgstr "Categorias"
11090
 
11091
- #: app/features/popup/event.php:220
11092
  msgid "Most Used"
11093
  msgstr ""
11094
 
11095
- #: app/features/popup/event.php:231
11096
  #, fuzzy
11097
  #| msgid "Add New Label"
11098
  msgid "Add New Category"
11099
  msgstr "Adicionar Nova Etiqueta"
11100
 
11101
- #: app/features/popup/event.php:242
11102
  #, fuzzy
11103
  #| msgid "Featured Image"
11104
  msgid "Set Featured Image"
11105
  msgstr "Imagem Destacada"
11106
 
11107
- #: app/features/popup/event.php:252
11108
  msgid "Your Event Has Been Created."
11109
  msgstr ""
11110
 
11111
- #: app/features/popup/event.php:263 app/features/popup/settings.php:534
11112
  #: app/features/popup/shortcode.php:553
11113
  msgid "Prev"
11114
  msgstr ""
11115
 
11116
- #: app/features/popup/event.php:264 app/features/popup/settings.php:536
11117
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11118
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11119
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
@@ -11316,92 +11310,92 @@ msgstr "Formulário de Pesquisa"
11316
  msgid "No search result."
11317
  msgstr ""
11318
 
11319
- #: app/features/speakers.php:112 app/features/speakers.php:197
11320
- #: app/features/speakers.php:287
11321
  #, fuzzy
11322
  #| msgid "Title"
11323
  msgid "Job Title"
11324
  msgstr "Título"
11325
 
11326
- #: app/features/speakers.php:115 app/features/speakers.php:198
11327
  msgid "Insert speaker job title."
11328
  msgstr ""
11329
 
11330
- #: app/features/speakers.php:123 app/features/speakers.php:202
11331
  #, fuzzy
11332
  #| msgid "Insert organizer phone number."
11333
  msgid "Insert speaker phone number."
11334
  msgstr "Insira o número de telefone do organizador."
11335
 
11336
- #: app/features/speakers.php:131 app/features/speakers.php:206
11337
  #, fuzzy
11338
  #| msgid "Insert organizer email address."
11339
  msgid "Insert speaker email address."
11340
  msgstr "Insira o endereço de e-mail do organizador."
11341
 
11342
- #: app/features/speakers.php:139 app/features/speakers.php:210
11343
  #, fuzzy
11344
  #| msgid "Insert -1 for unlimited usage"
11345
  msgid "Insert URL of Website"
11346
  msgstr "Digite -1 para uso ilimitado"
11347
 
11348
- #: app/features/speakers.php:144 app/features/speakers.php:213
11349
  #, fuzzy
11350
  #| msgid "Facebook Page Link"
11351
  msgid "Facebook Page"
11352
  msgstr "Link da Página do Facebook"
11353
 
11354
- #: app/features/speakers.php:147 app/features/speakers.php:214
11355
  #, fuzzy
11356
  #| msgid "Import from Facebook Calendar"
11357
  msgid "Insert URL of Facebook Page"
11358
  msgstr "Importar do Calendário do Facebook"
11359
 
11360
- #: app/features/speakers.php:152 app/features/speakers.php:217
11361
  msgid "Instagram"
11362
  msgstr ""
11363
 
11364
- #: app/features/speakers.php:155 app/features/speakers.php:218
11365
  #, fuzzy
11366
  #| msgid "Insert -1 for unlimited usage"
11367
  msgid "Insert URL of Instagram"
11368
  msgstr "Digite -1 para uso ilimitado"
11369
 
11370
- #: app/features/speakers.php:160 app/features/speakers.php:221
11371
  #, fuzzy
11372
  #| msgid "Linkedin"
11373
  msgid "LinkedIn"
11374
  msgstr "Linkedin"
11375
 
11376
- #: app/features/speakers.php:163
11377
  #, fuzzy
11378
  #| msgid "Insert -1 for unlimited usage"
11379
  msgid "Insert URL of LinkedIn"
11380
  msgstr "Digite -1 para uso ilimitado"
11381
 
11382
- #: app/features/speakers.php:168 app/features/speakers.php:225
11383
  #, fuzzy
11384
  #| msgid "Twitter"
11385
  msgid "Twitter Page"
11386
  msgstr "Twitter"
11387
 
11388
- #: app/features/speakers.php:171 app/features/speakers.php:226
11389
  #, fuzzy
11390
  #| msgid "Insert -1 for unlimited usage"
11391
  msgid "Insert URL of Twitter Page"
11392
  msgstr "Digite -1 para uso ilimitado"
11393
 
11394
- #: app/features/speakers.php:222
11395
  #, fuzzy
11396
  #| msgid "Insert -1 for unlimited usage"
11397
  msgid "Insert URL of linkedin"
11398
  msgstr "Digite -1 para uso ilimitado"
11399
 
11400
- #: app/features/speakers.php:347
11401
  msgid "Sorry, You must insert speaker name!"
11402
  msgstr ""
11403
 
11404
- #: app/features/speakers.php:396
11405
  msgid ""
11406
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11407
  "section and speaker widget section!"
@@ -11489,69 +11483,69 @@ msgctxt "plugin link"
11489
  msgid "Upgrade to Pro Version"
11490
  msgstr ""
11491
 
11492
- #: app/libraries/factory.php:234
11493
  msgctxt "plugin link"
11494
  msgid "Settings"
11495
  msgstr "Configurações"
11496
 
11497
- #: app/libraries/factory.php:239
11498
  msgctxt "plugin link"
11499
  msgid "Upgrade"
11500
  msgstr ""
11501
 
11502
- #: app/libraries/factory.php:393
11503
  msgid "day"
11504
  msgstr "dia"
11505
 
11506
- #: app/libraries/factory.php:394 app/modules/countdown/details.php:193
11507
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11508
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11509
  msgid "days"
11510
  msgstr "dias"
11511
 
11512
- #: app/libraries/factory.php:395
11513
  msgid "hour"
11514
  msgstr "hora"
11515
 
11516
- #: app/libraries/factory.php:396 app/modules/countdown/details.php:200
11517
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11518
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11519
  msgid "hours"
11520
  msgstr "horas"
11521
 
11522
- #: app/libraries/factory.php:397
11523
  msgid "minute"
11524
  msgstr "minuto"
11525
 
11526
- #: app/libraries/factory.php:398 app/modules/countdown/details.php:207
11527
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11528
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11529
  msgid "minutes"
11530
  msgstr "minutos"
11531
 
11532
- #: app/libraries/factory.php:399
11533
  msgid "second"
11534
  msgstr "segundo"
11535
 
11536
- #: app/libraries/factory.php:400 app/modules/countdown/details.php:214
11537
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11538
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11539
  msgid "seconds"
11540
  msgstr "segundos"
11541
 
11542
- #: app/libraries/factory.php:477
11543
  msgid "MEC Single Sidebar"
11544
  msgstr ""
11545
 
11546
- #: app/libraries/factory.php:478
11547
  msgid "Custom sidebar for single and modal page of MEC."
11548
  msgstr ""
11549
 
11550
- #: app/libraries/factory.php:1199
11551
  msgid "Notice:"
11552
  msgstr ""
11553
 
11554
- #: app/libraries/factory.php:1200
11555
  msgid "This update includes only bug fixes."
11556
  msgstr ""
11557
 
@@ -11707,12 +11701,6 @@ msgstr "Código Curto"
11707
  msgid "%s Form"
11708
  msgstr ""
11709
 
11710
- #: app/libraries/main.php:689
11711
- #, fuzzy
11712
- #| msgid "Support"
11713
- msgid "MEC Cart"
11714
- msgstr "Suporte"
11715
-
11716
  #: app/libraries/main.php:726
11717
  msgid "Only For Bookers"
11718
  msgstr ""
@@ -12501,12 +12489,7 @@ msgstr "Horário de Início"
12501
  msgid "End at: %s - %s"
12502
  msgstr ""
12503
 
12504
- #: app/libraries/skins.php:1755
12505
- #, php-format
12506
- msgid "Every %s"
12507
- msgstr ""
12508
-
12509
- #: app/libraries/skins.php:1756
12510
  #, fuzzy
12511
  #| msgid "Repeat"
12512
  msgid "Repeating Event"
@@ -12996,6 +12979,11 @@ msgstr "Equipe Webnus"
12996
  msgid "http://webnus.net"
12997
  msgstr ""
12998
 
 
 
 
 
 
12999
  #, fuzzy
13000
  #~ msgid "MEC Transaction ID: %s, Event Title: %s"
13001
  #~ msgstr "ID da Transação"
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
6
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
180
  msgstr "Cancelado"
181
 
182
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
183
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
184
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
185
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
186
  #: app/features/mec/notifications.php:1922
218
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
219
  #: app/features/autoemails.php:60 app/features/events.php:606
220
  #: app/features/events.php:2650 app/features/events.php:2717
221
+ #: app/features/events.php:2806 app/features/events.php:4445
222
+ #: app/features/fes.php:280 app/features/fes/form.php:812
223
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
224
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
225
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
226
  #: app/features/organizers.php:112 app/features/organizers.php:153
227
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
228
+ #: app/features/speakers.php:211 app/libraries/main.php:653
229
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
230
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
231
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
385
  #: app/features/events.php:2808 app/features/mec/booking.php:800
386
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
387
  #: app/features/organizers.php:104 app/features/organizers.php:149
388
+ #: app/features/speakers.php:126 app/features/speakers.php:207
389
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
390
  msgid "Tel"
391
  msgstr "Telefone"
392
 
532
  msgid "Agreement"
533
  msgstr ""
534
 
535
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
536
+ #, php-format
537
+ msgid "I agree with %s"
538
+ msgstr ""
539
+
540
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
541
  #, php-format
542
  msgid "Instead of %s, the page title with a link will be show."
714
  #: app/features/events.php:1843 app/features/events.php:2014
715
  #: app/features/events.php:2029 app/features/events.php:2271
716
  #: app/features/events.php:2283 app/features/events.php:2476
717
+ #: app/features/events.php:2513 app/features/fes/form.php:460
718
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
719
  #: app/features/locations.php:341 app/features/mec/booking.php:113
720
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
721
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
792
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
793
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
794
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
795
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
796
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
797
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
798
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
799
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
800
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
958
 
959
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
960
  #: app/features/events.php:432 app/features/events.php:1283
961
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
962
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
963
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
964
  #: app/skins/single.php:1126 app/skins/single/default.php:213
965
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1038
  msgstr ""
1039
 
1040
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1041
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1042
  #: app/features/labels.php:61 app/features/labels.php:227
1043
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1044
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1074
  msgstr "Ocultar localização"
1075
 
1076
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1077
+ #: app/features/events.php:3876 app/features/events.php:4190
1078
  #: app/features/locations.php:58 app/features/locations.php:267
1079
  #: app/features/locations.php:329 app/features/locations.php:331
1080
  #: app/features/locations.php:340
1094
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1095
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1096
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1097
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1098
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1099
  #: app/features/search.php:97 app/libraries/main.php:3020
1100
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1108
 
1109
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1110
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1111
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1112
  #: app/skins/single.php:1406 app/skins/single.php:1473
1113
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1114
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1131
 
1132
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1133
  #: app/features/events.php:1519 app/features/events.php:1532
1134
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1135
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1136
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1137
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1182
 
1183
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1184
  #: app/features/events.php:431 app/features/events.php:3877
1185
+ #: app/features/events.php:4192 app/features/events.php:4193
1186
+ #: app/features/events.php:4194
1187
  #: app/features/mec/meta_boxes/display_options.php:1660
1188
  #: app/features/mec/meta_boxes/search_form.php:80
1189
  #: app/features/mec/meta_boxes/search_form.php:168
1198
  #: app/features/mec/meta_boxes/search_form.php:983
1199
  #: app/features/mec/meta_boxes/search_form.php:1070
1200
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1201
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1202
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1203
  #: app/features/organizers.php:58 app/features/organizers.php:208
1204
  #: app/features/organizers.php:277 app/features/organizers.php:279
1205
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1206
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1207
  #: app/features/popup/settings.php:263 app/features/search.php:103
1208
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1209
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1325
  #: app/features/booking/calendar_novel.php:145
1326
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1327
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1328
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1329
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1330
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1331
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1332
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1392
 
1393
  #: app/features/autoemails.php:74 app/features/events.php:230
1394
  #: app/features/labels.php:72 app/features/locations.php:70
1395
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1396
  #: app/features/tag.php:70
1397
  #, php-format
1398
  msgid "Edit %s"
1458
  msgid "Go to events page"
1459
  msgstr "Mostrar Google Mapas na página do evento"
1460
 
1461
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1462
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1463
  #: app/features/wc.php:91 app/libraries/main.php:3072
1464
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1540
  msgid "Back to Cart"
1541
  msgstr "Voltar para a lista de eventos."
1542
 
1543
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1544
  #: app/features/mec/settings.php:907
1545
  msgid "Event Color"
1546
  msgstr "Cor do Evento"
1552
  msgstr "Cor do Evento"
1553
 
1554
  #: app/features/contextual.php:55 app/features/mec.php:546
1555
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1556
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1557
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1558
  #: app/libraries/main.php:738
1559
  msgid "Settings"
1667
  msgstr "Detalhes do Evento / Página Individual"
1668
 
1669
  #: app/features/contextual.php:166 app/features/events.php:1298
1670
+ #: app/features/fes/form.php:885
1671
  msgid "Currency Options"
1672
  msgstr "Opções de Moeda"
1673
 
1759
  msgstr ""
1760
 
1761
  #: app/features/dlfile.php:297 app/features/events.php:3874
1762
+ #: app/features/events.php:4183 app/features/events.php:4734
1763
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1764
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1765
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1766
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1769
  msgstr "Título"
1770
 
1771
  #: app/features/dlfile.php:301 app/features/events.php:1988
1772
+ #: app/features/events.php:2248 app/features/events.php:4184
1773
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1774
  #: app/libraries/hourlyschedule.php:152
1775
  msgid "Description"
1816
  msgstr "Antes R$ 10"
1817
 
1818
  #: app/features/emails/details.php:35 app/features/events.php:1223
1819
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1820
  msgid "After"
1821
  msgstr "Após"
1822
 
1827
  msgstr "Próxima Ocorrência"
1828
 
1829
  #: app/features/emails/details.php:40 app/features/events.php:192
1830
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1831
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1832
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1833
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1848
  msgid "Add Event"
1849
  msgstr "Adicionar Evento"
1850
 
1851
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1852
  msgid "Add New Event"
1853
  msgstr "Adicionar Novo Evento"
1854
 
1855
+ #: app/features/events.php:196 app/features/ix.php:4614
1856
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1857
  #: app/skins/map/tpl.php:93
1858
  msgid "No events found!"
1863
  msgstr ""
1864
 
1865
  #: app/features/events.php:199 app/features/fes/list.php:100
1866
+ #: app/features/popup/event.php:259
1867
  msgid "View Event"
1868
  msgstr "Ver Evento"
1869
 
1872
  msgstr "Nenhum evento encontrado na Lixeira!"
1873
 
1874
  #: app/features/events.php:219 app/features/events.php:3831
1875
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1876
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1877
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1878
  #: app/libraries/main.php:7619
1881
 
1882
  #: app/features/events.php:229 app/features/labels.php:71
1883
  #: app/features/locations.php:69 app/features/organizers.php:69
1884
+ #: app/features/speakers.php:77 app/features/tag.php:69
1885
  #, php-format
1886
  msgid "All %s"
1887
  msgstr ""
1888
 
1889
  #: app/features/events.php:231 app/features/labels.php:73
1890
  #: app/features/locations.php:71 app/features/organizers.php:71
1891
+ #: app/features/speakers.php:79 app/features/tag.php:71
1892
  #, php-format
1893
  msgid "View %s"
1894
  msgstr ""
1895
 
1896
  #: app/features/events.php:232 app/features/labels.php:74
1897
  #: app/features/locations.php:72 app/features/organizers.php:72
1898
+ #: app/features/speakers.php:80 app/features/tag.php:72
1899
  #, php-format
1900
  msgid "Update %s"
1901
  msgstr ""
1902
 
1903
  #: app/features/events.php:233 app/features/labels.php:75
1904
  #: app/features/locations.php:73 app/features/organizers.php:73
1905
+ #: app/features/speakers.php:81 app/features/tag.php:73
1906
  #, php-format
1907
  msgid "Add New %s"
1908
  msgstr ""
1909
 
1910
  #: app/features/events.php:234 app/features/labels.php:76
1911
  #: app/features/locations.php:74 app/features/organizers.php:74
1912
+ #: app/features/speakers.php:82 app/features/tag.php:74
1913
  #, php-format
1914
  msgid "New %s Name"
1915
  msgstr ""
1916
 
1917
  #: app/features/events.php:235 app/features/labels.php:77
1918
  #: app/features/locations.php:75 app/features/organizers.php:75
1919
+ #: app/features/speakers.php:83 app/features/tag.php:75
1920
  #, php-format
1921
  msgid "Popular %s"
1922
  msgstr ""
1923
 
1924
  #: app/features/events.php:236 app/features/labels.php:78
1925
  #: app/features/locations.php:76 app/features/organizers.php:76
1926
+ #: app/features/speakers.php:84 app/features/tag.php:76
1927
  #, php-format
1928
  msgid "Search %s"
1929
  msgstr ""
1953
  #: app/features/events.php:278 app/features/events.php:336
1954
  #: app/features/locations.php:161 app/features/locations.php:213
1955
  #: app/features/organizers.php:133 app/features/organizers.php:164
1956
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1957
  msgid "Upload/Add image"
1958
  msgstr "Enviar/Adicionar imagem"
1959
 
1962
  #: app/features/locations.php:393 app/features/locations.php:400
1963
  #: app/features/organizers.php:134 app/features/organizers.php:165
1964
  #: app/features/organizers.php:316 app/features/organizers.php:323
1965
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1966
  msgid "Remove image"
1967
  msgstr "Remover imagem"
1968
 
1982
  msgid "Date And Time"
1983
  msgstr "Data e Hora"
1984
 
1985
+ #: app/features/events.php:425 app/features/fes/form.php:386
1986
  msgid "Event Repeating"
1987
  msgstr "Repetição de Eventos"
1988
 
2027
  msgstr ""
2028
 
2029
  #: app/features/events.php:605 app/features/events.php:2641
2030
+ #: app/features/events.php:4442 app/features/fes.php:280
2031
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2032
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2033
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2034
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2035
  msgid "Name"
2036
  msgstr "Nome"
2041
  "overwrite in the next import from Google."
2042
  msgstr ""
2043
 
2044
+ #: app/features/events.php:619 app/features/fes/form.php:284
2045
  msgid "Date and Time"
2046
  msgstr "Data e Hora"
2047
 
2048
  #: app/features/events.php:622 app/features/events.php:626
2049
+ #: app/features/events.php:3878 app/features/events.php:4185
2050
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2051
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2052
  #: app/features/mec/meta_boxes/display_options.php:57
2053
  #: app/features/mec/meta_boxes/display_options.php:312
2065
  #: app/features/mec/meta_boxes/display_options.php:2347
2066
  #: app/features/mec/meta_boxes/display_options.php:2478
2067
  #: app/features/mec/meta_boxes/display_options.php:2584
2068
+ #: app/features/popup/event.php:79
2069
  msgid "Start Date"
2070
  msgstr "Data Inicial"
2071
 
2072
  #: app/features/events.php:642 app/features/events.php:646
2073
+ #: app/features/events.php:3879 app/features/events.php:4187
2074
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2075
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2076
  #: app/features/mec/meta_boxes/display_options.php:73
2077
  #: app/features/mec/meta_boxes/display_options.php:328
2080
  #: app/features/mec/meta_boxes/display_options.php:788
2081
  #: app/features/mec/meta_boxes/display_options.php:1618
2082
  #: app/features/mec/meta_boxes/display_options.php:2363
2083
+ #: app/features/popup/event.php:96
2084
  msgid "End Date"
2085
  msgstr "Data de Término"
2086
 
2087
+ #: app/features/events.php:669 app/features/fes/form.php:326
2088
+ #: app/features/popup/event.php:113
2089
  #, fuzzy
2090
  #| msgid "All Day Event"
2091
  msgid "All-day Event"
2092
  msgstr "Evento o Dia Todo"
2093
 
2094
+ #: app/features/events.php:679 app/features/fes/form.php:329
2095
  msgid "Hide Event Time"
2096
  msgstr "Ocultar Hora do Evento"
2097
 
2098
+ #: app/features/events.php:689 app/features/fes/form.php:332
2099
  msgid "Hide Event End Time"
2100
  msgstr "Ocultar Hora de Término do Evento"
2101
 
2102
  #: app/features/events.php:694 app/features/events.php:698
2103
+ #: app/features/fes/form.php:336
2104
  #, fuzzy
2105
  #| msgid "Note to reviewer"
2106
  msgid "Notes on the time"
2107
  msgstr "Nota para o revisor"
2108
 
2109
+ #: app/features/events.php:699 app/features/fes/form.php:337
2110
  #, fuzzy
2111
  #| msgid ""
2112
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2118
  "Ele é exibido ao lado da hora do evento no calendário. Você pode inserir o "
2119
  "fuso-horário etc. nesse campo."
2120
 
2121
+ #: app/features/events.php:711 app/features/fes/form.php:344
2122
  #, fuzzy
2123
  #| msgid "Time"
2124
  msgid "Timezone"
2129
  #: app/features/events.php:1793 app/features/events.php:1813
2130
  #: app/features/events.php:1868 app/features/events.php:2438
2131
  #: app/features/events.php:2561 app/features/events.php:2672
2132
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2133
  msgid "Inherit from global options"
2134
  msgstr "Herdar de opções globais"
2135
 
2136
  #: app/features/events.php:725 app/features/events.php:728
2137
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2138
  #: app/features/mec/settings.php:858
2139
  #, fuzzy
2140
  #| msgid "Countdown View"
2141
  msgid "Countdown Method"
2142
  msgstr "Visualizar Contagem Regressiva"
2143
 
2144
+ #: app/features/events.php:730 app/features/fes/form.php:363
2145
  #, fuzzy
2146
  #| msgid "Start Date"
2147
  msgid "Count to Event Start"
2148
  msgstr "Data Inicial"
2149
 
2150
+ #: app/features/events.php:731 app/features/fes/form.php:364
2151
  #, fuzzy
2152
  #| msgid "No event found!"
2153
  msgid "Count to Event End"
2154
  msgstr "Nenhum evento encontrado!"
2155
 
2156
+ #: app/features/events.php:737 app/features/fes/form.php:371
2157
  #: app/modules/weather/darksky.php:57
2158
  msgid "Visibility"
2159
  msgstr ""
2160
 
2161
+ #: app/features/events.php:740 app/features/fes/form.php:374
2162
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2163
  #, fuzzy
2164
  #| msgid "Event Cost"
2165
  msgid "Event Visibility"
2166
  msgstr "Custo do Evento"
2167
 
2168
+ #: app/features/events.php:741 app/features/fes/form.php:375
2169
  #, fuzzy
2170
  #| msgid "Booking"
2171
  msgid "Show on Shortcodes"
2172
  msgstr "Reserva"
2173
 
2174
+ #: app/features/events.php:742 app/features/fes/form.php:376
2175
  #, fuzzy
2176
  #| msgid "Shortcodes"
2177
  msgid "Hide on Shortcodes"
2178
  msgstr "Códigos Curtos"
2179
 
2180
+ #: app/features/events.php:749 app/features/fes/form.php:384
2181
  #, fuzzy
2182
  #| msgid "Repeat"
2183
  msgid "Repeating"
2189
  msgid "Event Repeating (Recurring events)"
2190
  msgstr "Repetição de Eventos"
2191
 
2192
+ #: app/features/events.php:762 app/features/fes/form.php:390
2193
  msgid "Repeats"
2194
  msgstr "Repetições"
2195
 
2196
+ #: app/features/events.php:770 app/features/fes/form.php:392
2197
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2198
+ #: app/skins/default_full_calendar/tpl.php:79
2199
  #: app/skins/full_calendar/tpl.php:140
2200
  msgid "Daily"
2201
  msgstr "Diariamente"
2202
 
2203
+ #: app/features/events.php:777 app/features/fes/form.php:393
2204
+ #: app/libraries/skins.php:1772
2205
  msgid "Every Weekday"
2206
  msgstr "Todos os Dias da Semana"
2207
 
2208
+ #: app/features/events.php:784 app/features/fes/form.php:394
2209
+ #: app/libraries/skins.php:1769
2210
  msgid "Every Weekend"
2211
  msgstr "Todo Final de Semana"
2212
 
2213
+ #: app/features/events.php:791 app/features/fes/form.php:395
2214
  msgid "Certain Weekdays"
2215
  msgstr "Determinados Dias da Semana"
2216
 
2217
+ #: app/features/events.php:798 app/features/fes/form.php:396
2218
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2219
  #: app/skins/full_calendar/tpl.php:139
2220
  msgid "Weekly"
2221
  msgstr "Semanalmente"
2222
 
2223
+ #: app/features/events.php:805 app/features/fes/form.php:397
2224
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2225
+ #: app/skins/default_full_calendar/tpl.php:77
2226
  #: app/skins/full_calendar/tpl.php:138
2227
  msgid "Monthly"
2228
  msgstr "Mensalmente"
2229
 
2230
+ #: app/features/events.php:812 app/features/fes/form.php:398
2231
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2232
+ #: app/skins/default_full_calendar/tpl.php:76
2233
  #: app/skins/full_calendar/tpl.php:137
2234
  msgid "Yearly"
2235
  msgstr "Anualmente"
2236
 
2237
+ #: app/features/events.php:819 app/features/fes/form.php:399
2238
  msgid "Custom Days"
2239
  msgstr "Dias Personalizados"
2240
 
2241
+ #: app/features/events.php:826 app/features/fes/form.php:400
2242
  #, fuzzy
2243
  #| msgid "Advanced Method"
2244
  msgid "Advanced"
2245
  msgstr "Método Avançado"
2246
 
2247
+ #: app/features/events.php:831 app/features/fes/form.php:404
2248
  msgid "Repeat Interval"
2249
  msgstr "Intervalo de Repetição"
2250
 
2251
+ #: app/features/events.php:833 app/features/fes/form.php:405
2252
  msgid "Repeat interval"
2253
  msgstr "Intervalo de repetição"
2254
 
2255
+ #: app/features/events.php:837 app/features/fes/form.php:408
2256
  msgid "Week Days"
2257
  msgstr "Dias da Semana"
2258
 
2264
 
2265
  #: app/features/events.php:860 app/features/events.php:2101
2266
  #: app/features/events.php:2129 app/features/events.php:2343
2267
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2268
  #: app/features/ix/import_g_calendar.php:51
2269
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2270
  #: app/libraries/skins.php:1389
2275
  #: app/features/events.php:2085 app/features/events.php:2167
2276
  #: app/features/events.php:2332 app/features/events.php:2376
2277
  #: app/features/events.php:2449 app/features/events.php:2566
2278
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2279
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2280
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2281
  msgid "Add"
2282
  msgstr "Adicionar"
2283
 
2284
+ #: app/features/events.php:877 app/features/fes/form.php:456
2285
  #, fuzzy
2286
  #| msgid "Custom Days"
2287
  msgid "Custom Days Repeating"
2288
  msgstr "Dias Personalizados"
2289
 
2290
+ #: app/features/events.php:880 app/features/fes/form.php:459
2291
  msgid ""
2292
  "Add certain days to event occurrence dates. If you have a single day event, "
2293
  "start and end dates should be the same, If you have a multiple day event, "
2296
 
2297
  #: app/features/events.php:891 app/features/events.php:2105
2298
  #: app/features/events.php:2133 app/features/events.php:2347
2299
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2300
  #, fuzzy
2301
  #| msgid "Enabled"
2302
  msgid "End"
2303
  msgstr "Ativado"
2304
 
2305
+ #: app/features/events.php:968 app/features/fes/form.php:532
2306
  #, fuzzy
2307
  #| msgid "First name"
2308
  msgid "First"
2309
  msgstr "Primeiro nome"
2310
 
2311
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2312
  #, fuzzy
2313
  #| msgid "second"
2314
  msgid "Second"
2315
  msgstr "segundo"
2316
 
2317
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2318
  msgid "Third"
2319
  msgstr ""
2320
 
2321
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2322
  msgid "Fourth"
2323
  msgstr ""
2324
 
2325
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2326
  #, fuzzy
2327
  #| msgid "Last name"
2328
  msgid "Last"
2329
  msgstr "Último nome"
2330
 
2331
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2332
  msgid "Ends Repeat"
2333
  msgstr "Término da Repetição"
2334
 
2335
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2336
  msgid "Never"
2337
  msgstr "Nunca"
2338
 
2339
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2340
  msgid "On"
2341
  msgstr "Em"
2342
 
2343
  #: app/features/events.php:1227 app/features/events.php:1231
2344
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2345
  msgid "Occurrences times"
2346
  msgstr "Várias ocorrências"
2347
 
2357
  "O evento terminará após certas repetições. Por exemplo, se você configurá-lo "
2358
  "para 10, o evento terminará após 10 repetições."
2359
 
2360
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2361
  #, fuzzy
2362
  #| msgid "Next Occurrence of Other Events"
2363
  msgid "Show only one occurrence of this event"
2364
  msgstr "Próxima Ocorrência de Outros Eventos"
2365
 
2366
+ #: app/features/events.php:1277 app/features/events.php:4195
2367
+ #: app/features/fes/form.php:867
2368
  #: app/features/mec/meta_boxes/search_form.php:116
2369
  #: app/features/mec/meta_boxes/search_form.php:204
2370
  #: app/features/mec/meta_boxes/search_form.php:292
2388
  #: app/features/mec/notifications.php:1511
2389
  #: app/features/mec/notifications.php:1628
2390
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2391
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2392
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2393
  #: app/widgets/single.php:122
2394
  msgid "Event Cost"
2395
  msgstr "Custo do Evento"
2396
 
2397
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2398
  msgid "Show the minimum price based on tickets"
2399
  msgstr ""
2400
 
2401
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2402
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2403
  #: app/libraries/main.php:646
2404
  msgid "Currency"
2405
  msgstr "Moeda"
2406
 
2407
  #: app/features/events.php:1310 app/features/events.php:1315
2408
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2409
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2410
  msgid "Currency Sign"
2411
  msgstr "Sinal da Moeda"
2412
 
2413
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2414
  #: app/features/mec/settings.php:600
2415
  msgid "Default value will be \"currency\" if you leave it empty."
2416
  msgstr "O valor padrão será \"moeda\" se você deixá-lo vazio."
2417
 
2418
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2419
  #: app/features/mec/settings.php:607
2420
  msgid "Currency Position"
2421
  msgstr "Posição da Moeda"
2422
 
2423
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2424
  #: app/features/mec/settings.php:610
2425
  #, fuzzy
2426
  #| msgid "Before $10"
2427
  msgid "$10 (Before)"
2428
  msgstr "Antes R$ 10"
2429
 
2430
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2431
  #: app/features/mec/settings.php:611
2432
  msgid "$ 10 (Before with Space)"
2433
  msgstr ""
2434
 
2435
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2436
  #: app/features/mec/settings.php:612
2437
  #, fuzzy
2438
  #| msgid "After"
2439
  msgid "10$ (After)"
2440
  msgstr "Após"
2441
 
2442
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2443
  #: app/features/mec/settings.php:613
2444
  msgid "10 $ (After with Space)"
2445
  msgstr ""
2446
 
2447
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2448
  #: app/features/mec/settings.php:618
2449
  msgid "Thousand Separator"
2450
  msgstr "Separador de Milhares"
2451
 
2452
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2453
  #: app/features/mec/settings.php:624
2454
  msgid "Decimal Separator"
2455
  msgstr "Separador Decimal"
2456
 
2457
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2458
  #: app/features/mec/settings.php:634
2459
  msgid "No decimal"
2460
  msgstr "Sem decimal"
2480
  msgid "Day 1"
2481
  msgstr ""
2482
 
2483
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2484
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2485
  msgid "Event Links"
2486
  msgstr "Links do Evento"
2487
 
2488
  #: app/features/events.php:1501 app/features/events.php:1509
2489
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2490
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2491
  #: app/libraries/main.php:7649
2492
  msgid "Event Link"
2493
  msgstr "Link do Evento"
2494
 
2495
  #: app/features/events.php:1504 app/features/events.php:1522
2496
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2497
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2498
  msgid "eg. http://yoursite.com/your-event"
2499
  msgstr "exemplo, http://seusite.com/seu-evento"
2500
 
2515
  msgid "URL Shortener"
2516
  msgstr ""
2517
 
2518
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2519
+ #: app/features/occurrences.php:530
2520
  msgid "More Information"
2521
  msgstr "Mais Informações"
2522
 
2523
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2524
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2525
  #: app/features/popup/shortcode.php:481
2526
  msgid "Current Window"
2527
  msgstr "Janela Atual"
2528
 
2529
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2530
+ #: app/features/mec.php:1114 app/features/occurrences.php:533
2531
  #: app/features/popup/shortcode.php:485
2532
  msgid "New Window"
2533
  msgstr "Nova Janela"
2534
 
2535
+ #: app/features/events.php:1533 app/features/fes/form.php:845
2536
  msgid ""
2537
  "If you fill it, it will be shown in event details page as an optional link. "
2538
  "Insert full link including http(s)://"
2911
  msgstr "Bilhete"
2912
 
2913
  #: app/features/events.php:1944 app/features/events.php:2211
2914
+ #: app/features/events.php:4182 app/features/fes.php:280
2915
  #: app/features/labels.php:183 app/features/locations.php:266
2916
+ #: app/features/organizers.php:207 app/features/speakers.php:291
2917
  msgid "ID"
2918
  msgstr "ID"
2919
 
2922
  msgstr "Nome do Bilhete"
2923
 
2924
  #: app/features/events.php:1956 app/features/events.php:2219
2925
+ #: app/features/events.php:4186 app/libraries/skins.php:1406
2926
  msgid "Start Time"
2927
  msgstr "Horário de Início"
2928
 
2929
  #: app/features/events.php:1970 app/features/events.php:2233
2930
+ #: app/features/events.php:4188 app/libraries/skins.php:1407
2931
  msgid "End Time"
2932
  msgstr "Horário de Término"
2933
 
2949
  #: app/features/events.php:2007 app/features/events.php:2011
2950
  #: app/features/events.php:2109 app/features/events.php:2136
2951
  #: app/features/events.php:2265 app/features/events.php:2268
2952
+ #: app/features/events.php:2349 app/features/events.php:4743
2953
  #: app/features/mec/booking.php:694 app/features/mec/booking.php:697
2954
  #: app/features/mec/booking.php:726 app/features/mec/booking.php:729
2955
  #: app/libraries/ticketVariations.php:43 app/libraries/ticketVariations.php:46
3115
  msgid "Fixed Fields"
3116
  msgstr "Campo Obrigatório"
3117
 
3118
+ #: app/features/events.php:2887 app/features/events.php:4737
3119
  #: app/features/mec/settings.php:1046 app/features/profile/profile.php:65
3120
  #: app/libraries/main.php:3107 app/libraries/main.php:3354
3121
  msgid "Attendees"
3147
  msgstr ""
3148
 
3149
  #: app/features/events.php:3757 app/features/mec.php:1374
3150
+ #: app/features/mec/dashboard.php:243 app/features/mec/settings.php:516
3151
  msgid "Upcoming Events"
3152
  msgstr ""
3153
 
3208
  msgstr "Exportar JSON"
3209
 
3210
  #: app/features/events.php:4068 app/features/events.php:4069
3211
+ #: app/features/events.php:4295
3212
  msgid "Duplicate"
3213
  msgstr "Duplicar"
3214
 
3215
+ #: app/features/events.php:4189
3216
  msgid "Link"
3217
  msgstr "Link"
3218
 
3219
+ #: app/features/events.php:4191 app/features/locations.php:111
3220
  #: app/features/locations.php:181 app/features/locations.php:268
3221
  #: app/features/mec/meta_boxes/search_form.php:108
3222
  #: app/features/mec/meta_boxes/search_form.php:196
3234
  msgid "Address"
3235
  msgstr "Endereço"
3236
 
3237
+ #: app/features/events.php:4193
3238
  #, php-format
3239
  msgid "%s Tel"
3240
  msgstr ""
3241
 
3242
+ #: app/features/events.php:4194
3243
  #, php-format
3244
  msgid "%s Email"
3245
  msgstr ""
3246
 
3247
+ #: app/features/events.php:4196 app/features/fes/form.php:953
3248
  #: app/features/mec/settings.php:876
3249
  msgid "Featured Image"
3250
  msgstr "Imagem Destacada"
3251
 
3252
+ #: app/features/events.php:4199 app/features/fes/form.php:1046
3253
  #: app/features/mec.php:523 app/features/mec/meta_boxes/filter.php:73
3254
  #: app/features/mec/meta_boxes/filter.php:153 app/features/tag.php:59
3255
  msgid "Tags"
3256
  msgstr "Tags"
3257
 
3258
+ #: app/features/events.php:4203 app/features/fes/form.php:1068
3259
  #: app/features/mec.php:532 app/features/mec/modules.php:34
3260
  #: app/features/mec/modules.php:43 app/features/mec/settings.php:947
3261
+ #: app/features/popup/settings.php:299 app/features/speakers.php:67
3262
  #: app/libraries/hourlyschedule.php:77 app/libraries/hourlyschedule.php:105
3263
  #: app/libraries/hourlyschedule.php:157 app/libraries/main.php:694
3264
  #: app/libraries/main.php:7566 app/libraries/main.php:7627
3266
  msgid "Speakers"
3267
  msgstr ""
3268
 
3269
+ #: app/features/events.php:4448 app/features/fes.php:280
3270
  #: app/features/profile/profile.php:209 app/libraries/cart.php:64
3271
  #: app/libraries/main.php:3123 app/libraries/main.php:3371
3272
  #: app/libraries/main.php:7592
3273
  msgid "Ticket"
3274
  msgstr "Bilhete"
3275
 
3276
+ #: app/features/events.php:4451 app/features/profile/profile.php:212
3277
  #, fuzzy
3278
  #| msgid "Verification"
3279
  msgid "Variations"
3280
  msgstr "Verificação"
3281
 
3282
+ #: app/features/events.php:4466 app/features/fes.php:356
3283
  msgid "Unknown"
3284
  msgstr "Desconhecido"
3285
 
3286
+ #: app/features/events.php:4494
3287
  msgid ""
3288
  "If you want to send an email, first select your attendees and then click in "
3289
  "the button below, please."
3290
  msgstr ""
3291
 
3292
+ #: app/features/events.php:4494 app/features/mec/report.php:57
3293
  #, fuzzy
3294
  #| msgid "Organizer Email"
3295
  msgid "Send Email"
3296
  msgstr "E-mail do Organizador"
3297
 
3298
+ #: app/features/events.php:4498
3299
  #, fuzzy
3300
  #| msgid "Attendees Form"
3301
  msgid "No Attendees Found!"
3302
  msgstr "Formulário de Participantes"
3303
 
3304
+ #: app/features/events.php:4800
3305
  #, fuzzy
3306
  #| msgid "No bookings found!"
3307
  msgid "No Bookings Found!"
3443
  msgid "The event published."
3444
  msgstr "O evento foi publicado."
3445
 
3446
+ #: app/features/fes/form.php:180
3447
  #, fuzzy
3448
  #| msgid "Go back to events list."
3449
  msgid "Go back to events list"
3450
  msgstr "Voltar para a lista de eventos."
3451
 
3452
+ #: app/features/fes/form.php:270 app/features/mec/settings.php:1061
3453
  #: app/features/mec/settings.php:1171
3454
  msgid "Excerpt"
3455
  msgstr ""
3456
 
3457
+ #: app/features/fes/form.php:273
3458
  msgid "Optional Event Excerpt"
3459
  msgstr ""
3460
 
3461
+ #: app/features/fes/form.php:280
3462
  msgid ""
3463
  "This event is imported from Google calendar so if you modify it would "
3464
  "overwrite in the next import from Google."
3465
  msgstr ""
3466
 
3467
+ #: app/features/fes/form.php:409
3468
  #: app/features/mec/meta_boxes/display_options.php:1494
3469
  #: app/libraries/main.php:476
3470
  msgid "Monday"
3471
  msgstr "Segunda-feira"
3472
 
3473
+ #: app/features/fes/form.php:410
3474
  #: app/features/mec/meta_boxes/display_options.php:1495
3475
  #: app/libraries/main.php:476
3476
  msgid "Tuesday"
3477
  msgstr "Terça-feira"
3478
 
3479
+ #: app/features/fes/form.php:411
3480
  #: app/features/mec/meta_boxes/display_options.php:1496
3481
  #: app/libraries/main.php:476
3482
  msgid "Wednesday"
3483
  msgstr "Quarta-feira"
3484
 
3485
+ #: app/features/fes/form.php:412
3486
  #: app/features/mec/meta_boxes/display_options.php:1497
3487
  #: app/libraries/main.php:476
3488
  msgid "Thursday"
3489
  msgstr "Quinta-feira"
3490
 
3491
+ #: app/features/fes/form.php:413
3492
  #: app/features/mec/meta_boxes/display_options.php:1498
3493
  #: app/libraries/main.php:476
3494
  msgid "Friday"
3495
  msgstr "Sexta-feira"
3496
 
3497
+ #: app/features/fes/form.php:414
3498
  #: app/features/mec/meta_boxes/display_options.php:1499
3499
  #: app/libraries/main.php:476
3500
  msgid "Saturday"
3501
  msgstr "Sábado"
3502
 
3503
+ #: app/features/fes/form.php:415
3504
  #: app/features/mec/meta_boxes/display_options.php:1493
3505
  #: app/libraries/main.php:476
3506
  msgid "Sunday"
3507
  msgstr "Domingo"
3508
 
3509
+ #: app/features/fes/form.php:768
3510
  msgid ""
3511
  "The event will finish after certain repeats. For example if you set it to "
3512
  "10, the event will finish after 10 repeats."
3514
  "O evento terminará após certas repetições. Por exemplo, se você configurá-lo "
3515
  "para 10, o evento terminará após 10 repetições."
3516
 
3517
+ #: app/features/fes/form.php:792
3518
  msgid "Note to reviewer"
3519
  msgstr "Nota para o revisor"
3520
 
3521
+ #: app/features/fes/form.php:810
3522
  msgid "User Data"
3523
  msgstr ""
3524
 
3525
+ #: app/features/fes/form.php:813
3526
  msgid "eg. yourname@gmail.com"
3527
  msgstr ""
3528
 
3529
+ #: app/features/fes/form.php:817 app/features/organizers.php:297
3530
+ #: app/features/popup/event.php:190
3531
  msgid "eg. John Smith"
3532
  msgstr "ex. John Smith"
3533
 
3534
+ #: app/features/fes/form.php:835
3535
  #, fuzzy
3536
  #| msgid ""
3537
  #| "If you fill it, it will be replaced instead of default event page link. "
3543
  "Se você o preencher, ele será substituído em vez do link de página de evento "
3544
  "padrão. Inserir link completo, incluindo http(s)://"
3545
 
3546
+ #: app/features/fes/form.php:958
3547
  msgid "Remove Image"
3548
  msgstr "Remover Imagem"
3549
 
3550
+ #: app/features/fes/form.php:1048
3551
  msgid "Insert your desired tags, comma separated."
3552
  msgstr "Insira as tags desejadas, separadas por vírgulas."
3553
 
3554
+ #: app/features/fes/form.php:1070
3555
  #, fuzzy
3556
  #| msgid "No Search Options"
3557
  msgid "Speakers Names"
3558
  msgstr "Sem Opções de Pesquisa"
3559
 
3560
+ #: app/features/fes/form.php:1071
3561
  msgid "Separate names with commas: Justin, Chris"
3562
  msgstr ""
3563
 
3564
+ #: app/features/fes/form.php:1116
3565
  #, fuzzy, php-format
3566
  #| msgid "Please %s/%s in order to submit new events."
3567
  msgid "I accept the %s in order to submit an event."
3568
  msgstr "Por favor, %s/%s a fim de apresentar novos eventos."
3569
 
3570
+ #: app/features/fes/form.php:1116
3571
  msgid "Privacy Policy"
3572
  msgstr ""
3573
 
3574
+ #: app/features/fes/form.php:1118
3575
  #, fuzzy
3576
  #| msgid "Please %s/%s in order to submit new events."
3577
  msgid "I accept the Privacy Policy in order to submit an event."
3578
  msgstr "Por favor, %s/%s a fim de apresentar novos eventos."
3579
 
3580
+ #: app/features/fes/form.php:1124
3581
  #, fuzzy
3582
  #| msgid "Edit Events"
3583
  msgid "Submit Event"
3662
  msgid "The events are imported successfully!"
3663
  msgstr ""
3664
 
3665
+ #: app/features/ix.php:1342
3666
  msgid "Third Party plugin is not installed and activated!"
3667
  msgstr ""
3668
 
3669
+ #: app/features/ix.php:1366
3670
  msgid "Third Party plugin is invalid!"
3671
  msgstr ""
3672
 
3673
+ #: app/features/ix.php:3341 app/features/ix.php:3402
3674
  #, fuzzy
3675
  #| msgid "Both of API key and Calendar ID are required!"
3676
  msgid "API key and Calendar ID are required!"
3677
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
3678
 
3679
+ #: app/features/ix.php:3397 app/features/ix.php:3893 app/features/ix.php:4621
3680
  #, fuzzy
3681
  #| msgid "Please select some events to import!"
3682
  msgid "Please select events to import!"
3683
  msgstr "Por favor, selecione alguns eventos para importar!"
3684
 
3685
+ #: app/features/ix.php:3835 app/features/ix.php:3898
3686
  #, fuzzy
3687
  #| msgid "Both of API key and Calendar ID are required!"
3688
  msgid "API key and Group URL are required!"
3689
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
3690
 
3691
+ #: app/features/ix.php:4137
3692
  msgid "Check at Meetup"
3693
  msgstr ""
3694
 
3695
+ #: app/features/ix.php:4303
3696
  #, fuzzy
3697
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
3698
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
3700
  "Todos os IDs do cliente, Segredo e ID do Calendário do Cliente são "
3701
  "obrigatórios!"
3702
 
3703
+ #: app/features/ix.php:4326
3704
  #, fuzzy, php-format
3705
  #| msgid "All seems good! Please click %s for authenticating your app."
3706
  msgid "All seems good! Please click %s to authenticate your app."
3707
  msgstr "Tudo parece ótimo! Clique em %s para autenticar seu aplicativo."
3708
 
3709
+ #: app/features/ix.php:4326 app/features/mec/integrations.php:256
3710
  #: app/features/mec/settings.php:1496
3711
  msgid "here"
3712
  msgstr ""
3713
 
3714
+ #: app/features/ix.php:4381
3715
  #, fuzzy
3716
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
3717
  msgid "Client App, Client Secret, and Calendar ID are all required!"
3718
  msgstr ""
3719
  "Todos os aplicativos, segredo e IDs do calendário do cliente são necessários!"
3720
 
3721
+ #: app/features/ix.php:4543
3722
  #, fuzzy, php-format
3723
  #| msgid "%s events added to Google Calendar successfully."
3724
  msgid "%s events added to Google Calendar with success."
3725
  msgstr "Eventos %s adicionados ao Google Calendário com sucesso."
3726
 
3727
+ #: app/features/ix.php:4544
3728
  #, fuzzy, php-format
3729
  #| msgid "%s previously added events get updated."
3730
  msgid "%s Updated previously added events."
3731
  msgstr "Os eventos %s adicionados anteriormente foram atualizados."
3732
 
3733
+ #: app/features/ix.php:4545
3734
  #, php-format
3735
  msgid "%s events failed to add for following reasons: %s"
3736
  msgstr "Os eventos %s não foram adicionados pelas seguintes razões: %s"
3737
 
3738
+ #: app/features/ix.php:4577
3739
  #, fuzzy
3740
  #| msgid "Please insert your facebook page's link."
3741
  msgid "Please insert your Facebook page's link."
3742
  msgstr "Insira o link da sua página do facebook."
3743
 
3744
+ #: app/features/ix.php:4588 app/features/ix.php:4630
3745
  #, fuzzy
3746
  #| msgid ""
3747
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
3753
  "Não foi possível reconhecer sua página do Facebook. Confira e forneça um "
3754
  "link válido para a página do facebook."
3755
 
3756
+ #: app/features/ix.php:4625
3757
  msgid "Please insert your facebook page's link."
3758
  msgstr "Insira o link da sua página do facebook."
3759
 
3971
  msgid "Add to Google Calendar"
3972
  msgstr "Adicionar ao Calendário do Google"
3973
 
3974
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1262
3975
  #: app/features/mec/integrations.php:451 app/features/mec/modules.php:408
3976
  #: app/features/mec/notifications.php:1924 app/features/mec/settings.php:1611
3977
  #: app/features/mec/single.php:604
4089
  msgid "Import all of your Facebook events into MEC."
4090
  msgstr "Importe todos os seus eventos do facebook para o CEM."
4091
 
4092
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:121
4093
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
4094
  msgid "Documentation"
4095
  msgstr "Documentação"
4402
  msgstr ""
4403
 
4404
  #: app/features/labels.php:79 app/features/locations.php:77
4405
+ #: app/features/organizers.php:77 app/features/speakers.php:85
4406
  #: app/features/tag.php:77
4407
  #, fuzzy, php-format
4408
  #| msgid "Search Coupons"
4410
  msgstr "Pesquisar Cupons"
4411
 
4412
  #: app/features/labels.php:80 app/features/locations.php:78
4413
+ #: app/features/organizers.php:78 app/features/speakers.php:86
4414
  #: app/features/tag.php:78
4415
  #, fuzzy, php-format
4416
  #| msgid "No events found!"
4456
  msgstr ""
4457
 
4458
  #: app/features/labels.php:186 app/features/locations.php:269
4459
+ #: app/features/organizers.php:210 app/features/speakers.php:295
4460
  #: app/modules/booking/steps/tickets.php:172
4461
  msgid "Count"
4462
  msgstr "Contagem"
4472
  msgstr ""
4473
 
4474
  #: app/features/locations.php:59 app/features/mec.php:526
4475
+ #: app/features/mec/dashboard.php:225 app/features/mec/meta_boxes/filter.php:70
4476
  #: app/features/mec/meta_boxes/filter.php:99 app/libraries/main.php:7562
4477
  #: app/libraries/main.php:7623
4478
  msgid "Locations"
4483
  msgstr "Digite o endereço da localização"
4484
 
4485
  #: app/features/locations.php:131 app/features/locations.php:197
4486
+ #: app/features/locations.php:374 app/features/popup/event.php:154
4487
  msgid "Latitude"
4488
  msgstr "Latitude"
4489
 
4494
  msgstr "Geo latitude (Opcional)"
4495
 
4496
  #: app/features/locations.php:139 app/features/locations.php:201
4497
+ #: app/features/locations.php:375 app/features/popup/event.php:155
4498
  msgid "Longitude"
4499
  msgstr "Longitude"
4500
 
4519
 
4520
  #: app/features/locations.php:156 app/features/locations.php:210
4521
  #: app/features/organizers.php:128 app/features/organizers.php:161
4522
+ #: app/features/speakers.php:182 app/features/speakers.php:235
4523
  msgid "Thumbnail"
4524
  msgstr "Miniatura"
4525
 
4526
  #: app/features/locations.php:329 app/features/occurrences.php:460
4527
+ #: app/features/occurrences.php:490 app/features/organizers.php:277
4528
  #, php-format
4529
  msgid "Event Main %s"
4530
  msgstr ""
4531
 
4532
  #: app/features/locations.php:332 app/features/occurrences.php:464
4533
+ #: app/features/popup/event.php:121
4534
  msgid "Hide location"
4535
  msgstr "Ocultar localização"
4536
 
4537
+ #: app/features/locations.php:333 app/features/popup/event.php:122
4538
  msgid "Insert a new location"
4539
  msgstr "Inserir uma nova localização"
4540
 
4542
  msgid "Choose one of saved locations or insert new one below."
4543
  msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
4544
 
4545
+ #: app/features/locations.php:348 app/features/popup/event.php:146
4546
  msgid "Location Name"
4547
  msgstr "Nome da Localização"
4548
 
4549
+ #: app/features/locations.php:349 app/features/popup/event.php:147
4550
  msgid "eg. City Hall"
4551
  msgstr "exemplo; Prefeitura"
4552
 
4553
  #: app/features/locations.php:352 app/features/mec/settings.php:919
4554
+ #: app/features/popup/event.php:150 app/widgets/single.php:134
4555
  msgid "Event Location"
4556
  msgstr "Localização do Evento"
4557
 
4558
+ #: app/features/locations.php:353 app/features/popup/event.php:151
4559
  msgid "eg. City hall, Manhattan, New York"
4560
  msgstr "exemplo; Prefeitura, Manhattan, Nova Iorque"
4561
 
4562
+ #: app/features/locations.php:378 app/features/popup/event.php:158
4563
  #, fuzzy
4564
  #| msgid "Longitude"
4565
  msgid "Latitude/Longitude"
4566
  msgstr "Longitude"
4567
 
4568
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4569
  msgid ""
4570
  "If you leave the latitude and longitude empty, Modern Events Calendar tries "
4571
  "to convert the location address to geopoint, Latitude and Longitude are the "
4574
  "the location on the map to find lat long coordinates."
4575
  msgstr ""
4576
 
4577
+ #: app/features/locations.php:379 app/features/popup/event.php:159
4578
  msgid "Get Latitude and Longitude"
4579
  msgstr ""
4580
 
4581
  #: app/features/locations.php:392 app/features/organizers.php:315
4582
+ #: app/features/popup/event.php:209
4583
  msgid "Choose image"
4584
  msgstr "Escolha uma imagem"
4585
 
4586
+ #: app/features/locations.php:407 app/features/occurrences.php:482
4587
+ #: app/features/popup/event.php:140
4588
  msgid "Don't show map in single event page"
4589
  msgstr "Não mostrar mapa na página de evento individual"
4590
 
4591
+ #: app/features/locations.php:411 app/libraries/main.php:7607
4592
  #: app/libraries/main.php:7654
4593
  #, fuzzy
4594
  #| msgid "Search Locations"
4595
  msgid "Other Locations"
4596
  msgstr "Pesquisar Localizações"
4597
 
4598
+ #: app/features/locations.php:413
4599
  msgid ""
4600
  "You can select extra locations in addition to main location if you like."
4601
  msgstr ""
4673
  msgid "Support"
4674
  msgstr "Suporte"
4675
 
4676
+ #: app/features/mec.php:527 app/features/mec/dashboard.php:232
4677
  #: app/features/mec/meta_boxes/filter.php:71
4678
  #: app/features/mec/meta_boxes/filter.php:117 app/features/organizers.php:59
4679
  #: app/libraries/main.php:7564 app/libraries/main.php:7625
4681
  msgstr "Organizadores"
4682
 
4683
  #: app/features/mec.php:536 app/features/mec.php:596
4684
+ #: app/features/mec/dashboard.php:218
4685
  msgid "Shortcodes"
4686
  msgstr "Códigos Curtos"
4687
 
4898
  msgstr ""
4899
 
4900
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:62
4901
+ #: app/features/mec/dashboard.php:61 app/features/mec/go-pro.php:14
4902
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
4903
  msgid "Version"
4904
  msgstr "Versão"
4924
  msgstr "Formulário de Pesquisa"
4925
 
4926
  #: app/features/mec/booking.php:76 app/features/mec/booking.php:910
4927
+ #: app/features/mec/booking.php:1107 app/features/mec/booking.php:1187
4928
+ #: app/features/mec/booking.php:1197 app/features/mec/booking.php:1279
4929
+ #: app/features/mec/booking.php:1293 app/features/mec/integrations.php:24
4930
  #: app/features/mec/integrations.php:400 app/features/mec/integrations.php:410
4931
  #: app/features/mec/integrations.php:468 app/features/mec/integrations.php:482
4932
  #: app/features/mec/messages.php:20 app/features/mec/messages.php:60
5523
  msgid "It applies only to the orders that are related to MEC."
5524
  msgstr "Aplica-se apenas aos pedidos relacionadas ao CEM."
5525
 
5526
+ #: app/features/mec/booking.php:1017 app/features/mec/booking.php:1157
5527
  msgid "After Add to Cart"
5528
  msgstr ""
5529
 
5530
+ #: app/features/mec/booking.php:1020 app/features/mec/booking.php:1160
5531
  #, fuzzy
5532
  #| msgid "Get Direction"
5533
  msgid "Redirect to Cart"
5534
  msgstr "Obter Direção"
5535
 
5536
+ #: app/features/mec/booking.php:1021 app/features/mec/booking.php:1161
5537
  #, fuzzy
5538
  #| msgid "Get Direction"
5539
  msgid "Redirect to Checkout"
5540
  msgstr "Obter Direção"
5541
 
5542
+ #: app/features/mec/booking.php:1022 app/features/mec/booking.php:1162
5543
  msgid "Optional View Cart Button"
5544
  msgstr ""
5545
 
5546
+ #: app/features/mec/booking.php:1023 app/features/mec/booking.php:1163
5547
  msgid "Optional Checkout Button"
5548
  msgstr ""
5549
 
5601
  "(Stripe) got canceled."
5602
  msgstr ""
5603
 
5604
+ #: app/features/mec/booking.php:1113 app/libraries/main.php:689
5605
+ #, fuzzy
5606
+ #| msgid "Support"
5607
+ msgid "MEC Cart"
5608
+ msgstr "Suporte"
5609
+
5610
+ #: app/features/mec/booking.php:1118
5611
  msgid "Use MEC Cart System"
5612
  msgstr ""
5613
 
5614
+ #: app/features/mec/booking.php:1120
5615
  msgid ""
5616
  "If you don't want to use WooCommerce for any reason you can use MEC Cart for "
5617
  "adding a simple cart and checkout system to your website."
5618
  msgstr ""
5619
 
5620
+ #: app/features/mec/booking.php:1122
5621
  msgid "You cannot use following MEC features while using MEC Cart."
5622
  msgstr ""
5623
 
5624
+ #: app/features/mec/booking.php:1124
5625
  #, fuzzy
5626
  #| msgid "Payment Gateways"
5627
  msgid "WooCommerce as Payment Gateway"
5628
  msgstr "Gateways de Pagamento"
5629
 
5630
+ #: app/features/mec/booking.php:1125
5631
  #, fuzzy
5632
  #| msgid "Next Occurrence of Other Events"
5633
  msgid "Currency Per Event"
5634
  msgstr "Próxima Ocorrência de Outros Eventos"
5635
 
5636
+ #: app/features/mec/booking.php:1126
5637
  #, fuzzy
5638
  #| msgid "Payment Gateways"
5639
  msgid "Disable Gateways Per Event"
5640
  msgstr "Gateways de Pagamento"
5641
 
5642
+ #: app/features/mec/booking.php:1127
5643
  #, fuzzy
5644
  #| msgid "Stripe"
5645
  msgid "Stripe Connect Gateway"
5646
  msgstr "Listra"
5647
 
5648
+ #: app/features/mec/booking.php:1128
5649
  #, fuzzy
5650
  #| msgid "Pay by WooCommerce"
5651
  msgid "Pay By WooCommerce Gateway"
5652
  msgstr "Pagar pelo Woocommerce"
5653
 
5654
+ #: app/features/mec/booking.php:1129
5655
  #, fuzzy
5656
  #| msgid "New Organizer Name"
5657
  msgid "Organizer Payment Module"
5658
  msgstr "Nome do Novo Organizador"
5659
 
5660
+ #: app/features/mec/booking.php:1133
5661
  #, fuzzy
5662
  #| msgid "Start Date"
5663
  msgid "Cart Page"
5664
  msgstr "Data Inicial"
5665
 
5666
+ #: app/features/mec/booking.php:1141 app/features/mec/booking.php:1153
5667
  #: app/features/mec/settings.php:732 app/features/mec/settings.php:744
5668
  #, php-format
5669
  msgid "Put %s shortcode into the page."
5670
  msgstr "Coloque o código curto %s na página."
5671
 
5672
+ #: app/features/mec/booking.php:1145
5673
  #, fuzzy
5674
  #| msgid "Checkout"
5675
  msgid "Checkout Page"
5676
  msgstr "Finalizar"
5677
 
5678
+ #: app/features/mec/booking.php:1171
5679
  #, fuzzy
5680
  #| msgid "Enable note field"
5681
  msgid "Enable Cart Invoice"
5682
  msgstr "Habilitar campo nota"
5683
 
5684
+ #: app/features/mec/booking.php:1257 app/features/mec/integrations.php:446
5685
  #: app/features/mec/messages.php:90 app/features/mec/modules.php:403
5686
  #: app/features/mec/notifications.php:1919 app/features/mec/settings.php:1606
5687
  #: app/features/mec/single.php:599 app/features/mec/styles.php:62
5689
  msgid "Saved"
5690
  msgstr "Salvo"
5691
 
5692
+ #: app/features/mec/booking.php:1258 app/features/mec/integrations.php:447
5693
  #: app/features/mec/messages.php:91 app/features/mec/modules.php:404
5694
  #: app/features/mec/notifications.php:1920 app/features/mec/settings.php:1607
5695
  #: app/features/mec/single.php:600 app/features/mec/styles.php:63
5697
  msgid "Settings Saved!"
5698
  msgstr ""
5699
 
5700
+ #: app/features/mec/booking.php:1284 app/features/mec/integrations.php:473
5701
  #: app/features/mec/modules.php:430 app/features/mec/notifications.php:1947
5702
  #: app/features/mec/settings.php:1633 app/features/mec/single.php:626
5703
  msgid "Please Refresh Page"
5713
  msgid "%s - Most Powerful & Easy to Use Events Management System"
5714
  msgstr ""
5715
 
5716
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
 
 
 
 
 
5717
  #, php-format
5718
  msgid ""
5719
  "You're using %s version of Modern Events Calendar. To use advanced booking "
5721
  "Spots, etc you should upgrade to the Pro version."
5722
  msgstr ""
5723
 
5724
+ #: app/features/mec/dashboard.php:76 app/features/mec/go-pro.php:66
5725
  msgid "lite"
5726
  msgstr ""
5727
 
5728
+ #: app/features/mec/dashboard.php:79 app/features/mec/go-pro.php:69
5729
  #: app/features/mec/support.php:126
5730
  msgid "GO PREMIUM"
5731
  msgstr ""
5732
 
5733
+ #: app/features/mec/dashboard.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5734
  #, fuzzy
5735
  #| msgid "Modern Events Calendar"
5736
  msgid "Getting started with Modern Events Calendar"
5737
  msgstr "Calendário de Eventos Moderno"
5738
 
5739
+ #: app/features/mec/dashboard.php:113
5740
  msgid ""
5741
  "In this short video, you can learn how to make an event and put a calendar "
5742
  "on your website. Please watch this 2 minutes video to the end."
5743
  msgstr ""
5744
 
5745
+ #: app/features/mec/dashboard.php:129 app/features/mec/dashboard.php:153
5746
  #, fuzzy
5747
  #| msgid "MEC Activation"
5748
  msgid "License Activation"
5749
  msgstr "Ativação CEM"
5750
 
5751
+ #: app/features/mec/dashboard.php:135 app/features/mec/dashboard.php:190
5752
  #, fuzzy
5753
  #| msgid "MEC Activation"
5754
  msgid "Activate Addons"
5755
  msgstr "Ativação CEM"
5756
 
5757
+ #: app/features/mec/dashboard.php:143 app/features/mec/dashboard.php:199
5758
  msgid "You cannot access this section."
5759
  msgstr ""
5760
 
5761
+ #: app/features/mec/dashboard.php:159
5762
  msgid ""
5763
  "In order to use all plugin features and options, please enter your purchase "
5764
  "code."
5765
  msgstr ""
5766
 
5767
+ #: app/features/mec/dashboard.php:267
5768
  msgid "Popular Gateways"
5769
  msgstr ""
5770
 
5771
+ #: app/features/mec/dashboard.php:325
5772
  msgid "Change Log"
5773
  msgstr "Registro de Alterações"
5774
 
7314
  #: app/features/mec/settings.php:1257 app/features/mec/single.php:477
7315
  #: app/features/mec/single.php:530 app/features/popup/settings.php:233
7316
  #: app/features/popup/settings.php:272 app/features/search.php:109
7317
+ #: app/features/speakers.php:66 app/features/speakers.php:292
7318
  #: app/libraries/main.php:7567 app/libraries/main.php:7628
7319
  #: app/libraries/search.php:334 app/libraries/skins.php:1239
7320
  #: app/modules/speakers/details.php:18
8657
  msgid "Please, insert comma to separate reminder hours."
8658
  msgstr ""
8659
 
8660
+ #: app/features/mec/notifications.php:1408 app/features/popup/event.php:260
8661
  #: app/libraries/main.php:705
8662
  msgid "New Event"
8663
  msgstr "Novo Evento"
10973
  msgid "Choose one of saved locations."
10974
  msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
10975
 
10976
+ #: app/features/occurrences.php:494 app/features/organizers.php:280
10977
+ #: app/features/popup/event.php:171
10978
  msgid "Hide organizer"
10979
  msgstr "Ocultar organizador"
10980
 
10981
+ #: app/features/occurrences.php:502 app/features/organizers.php:289
10982
+ #: app/features/popup/event.php:180
10983
  msgid "Choose one of saved organizers or insert new one below."
10984
  msgstr "Escolha um dos organizadores salvos ou insira um novo abaixo."
10985
 
10992
  msgstr "Insira o endereço de e-mail do organizador."
10993
 
10994
  #: app/features/organizers.php:120 app/features/organizers.php:157
10995
+ #: app/features/organizers.php:308 app/features/popup/event.php:203
10996
  msgid "Link to organizer page"
10997
  msgstr "Link para a página do organizador"
10998
 
11006
  msgid "Contact info"
11007
  msgstr "Informações de contato"
11008
 
11009
+ #: app/features/organizers.php:281 app/features/popup/event.php:172
11010
  msgid "Insert a new organizer"
11011
  msgstr "Inserir um novo organizador"
11012
 
11013
+ #: app/features/organizers.php:300 app/features/popup/event.php:193
11014
  msgid "Phone number."
11015
  msgstr ""
11016
 
11017
+ #: app/features/organizers.php:301 app/features/popup/event.php:194
11018
  msgid "eg. +1 (234) 5678"
11019
  msgstr "ex. (00) 0000-0000"
11020
 
11021
+ #: app/features/organizers.php:304 app/features/popup/event.php:198
11022
  msgid "Email address."
11023
  msgstr ""
11024
 
11025
+ #: app/features/organizers.php:305 app/features/popup/event.php:199
11026
  msgid "eg. john@smith.com"
11027
  msgstr "ex. john@smith.com"
11028
 
11029
+ #: app/features/organizers.php:309 app/features/popup/event.php:204
11030
  #, fuzzy
11031
  #| msgid "http://webnus.biz"
11032
  msgid "eg. https://webnus.net"
11042
  "You can select extra organizers in addition to main organizer if you like."
11043
  msgstr ""
11044
 
11045
+ #: app/features/popup/event.php:60
11046
  #, fuzzy
11047
  #| msgid "Add Shortcode"
11048
  msgid "Adding an Event..."
11049
  msgstr "Adicionar Código Curto"
11050
 
11051
+ #: app/features/popup/event.php:68
11052
  #, fuzzy
11053
  #| msgid "Event Note"
11054
  msgid "Event Name"
11055
  msgstr "Nota do Evento"
11056
 
11057
+ #: app/features/popup/event.php:69
11058
  msgid "Event name is required"
11059
  msgstr ""
11060
 
11061
+ #: app/features/popup/event.php:130
11062
  #, fuzzy
11063
  #| msgid "Choose one of saved locations or insert new one below."
11064
  msgid "Choose one of saved locations or insert new one."
11065
  msgstr "Escolha um dos locais salvos ou insira um novo abaixo."
11066
 
11067
+ #: app/features/popup/event.php:134
11068
  #, fuzzy
11069
  #| msgid "Add New Location"
11070
  msgid "Add Location"
11071
  msgstr "Adicionar Nova Localização"
11072
 
11073
+ #: app/features/popup/event.php:184
11074
  #, fuzzy
11075
  #| msgid "Add New Organizer"
11076
  msgid "Add Organizer"
11077
  msgstr "Adicionar Novo Organizador"
11078
 
11079
+ #: app/features/popup/event.php:224
11080
  #, fuzzy
11081
  #| msgid "Categories"
11082
  msgid "All Categories"
11083
  msgstr "Categorias"
11084
 
11085
+ #: app/features/popup/event.php:225
11086
  msgid "Most Used"
11087
  msgstr ""
11088
 
11089
+ #: app/features/popup/event.php:236
11090
  #, fuzzy
11091
  #| msgid "Add New Label"
11092
  msgid "Add New Category"
11093
  msgstr "Adicionar Nova Etiqueta"
11094
 
11095
+ #: app/features/popup/event.php:247
11096
  #, fuzzy
11097
  #| msgid "Featured Image"
11098
  msgid "Set Featured Image"
11099
  msgstr "Imagem Destacada"
11100
 
11101
+ #: app/features/popup/event.php:257
11102
  msgid "Your Event Has Been Created."
11103
  msgstr ""
11104
 
11105
+ #: app/features/popup/event.php:268 app/features/popup/settings.php:534
11106
  #: app/features/popup/shortcode.php:553
11107
  msgid "Prev"
11108
  msgstr ""
11109
 
11110
+ #: app/features/popup/event.php:269 app/features/popup/settings.php:536
11111
  #: app/features/popup/shortcode.php:554 app/modules/booking/steps/form.php:385
11112
  #: app/modules/booking/steps/tickets.php:214 app/skins/countdown/tpl.php:114
11113
  #: app/skins/countdown/tpl.php:160 app/skins/countdown/tpl.php:207
11310
  msgid "No search result."
11311
  msgstr ""
11312
 
11313
+ #: app/features/speakers.php:118 app/features/speakers.php:203
11314
+ #: app/features/speakers.php:293
11315
  #, fuzzy
11316
  #| msgid "Title"
11317
  msgid "Job Title"
11318
  msgstr "Título"
11319
 
11320
+ #: app/features/speakers.php:121 app/features/speakers.php:204
11321
  msgid "Insert speaker job title."
11322
  msgstr ""
11323
 
11324
+ #: app/features/speakers.php:129 app/features/speakers.php:208
11325
  #, fuzzy
11326
  #| msgid "Insert organizer phone number."
11327
  msgid "Insert speaker phone number."
11328
  msgstr "Insira o número de telefone do organizador."
11329
 
11330
+ #: app/features/speakers.php:137 app/features/speakers.php:212
11331
  #, fuzzy
11332
  #| msgid "Insert organizer email address."
11333
  msgid "Insert speaker email address."
11334
  msgstr "Insira o endereço de e-mail do organizador."
11335
 
11336
+ #: app/features/speakers.php:145 app/features/speakers.php:216
11337
  #, fuzzy
11338
  #| msgid "Insert -1 for unlimited usage"
11339
  msgid "Insert URL of Website"
11340
  msgstr "Digite -1 para uso ilimitado"
11341
 
11342
+ #: app/features/speakers.php:150 app/features/speakers.php:219
11343
  #, fuzzy
11344
  #| msgid "Facebook Page Link"
11345
  msgid "Facebook Page"
11346
  msgstr "Link da Página do Facebook"
11347
 
11348
+ #: app/features/speakers.php:153 app/features/speakers.php:220
11349
  #, fuzzy
11350
  #| msgid "Import from Facebook Calendar"
11351
  msgid "Insert URL of Facebook Page"
11352
  msgstr "Importar do Calendário do Facebook"
11353
 
11354
+ #: app/features/speakers.php:158 app/features/speakers.php:223
11355
  msgid "Instagram"
11356
  msgstr ""
11357
 
11358
+ #: app/features/speakers.php:161 app/features/speakers.php:224
11359
  #, fuzzy
11360
  #| msgid "Insert -1 for unlimited usage"
11361
  msgid "Insert URL of Instagram"
11362
  msgstr "Digite -1 para uso ilimitado"
11363
 
11364
+ #: app/features/speakers.php:166 app/features/speakers.php:227
11365
  #, fuzzy
11366
  #| msgid "Linkedin"
11367
  msgid "LinkedIn"
11368
  msgstr "Linkedin"
11369
 
11370
+ #: app/features/speakers.php:169
11371
  #, fuzzy
11372
  #| msgid "Insert -1 for unlimited usage"
11373
  msgid "Insert URL of LinkedIn"
11374
  msgstr "Digite -1 para uso ilimitado"
11375
 
11376
+ #: app/features/speakers.php:174 app/features/speakers.php:231
11377
  #, fuzzy
11378
  #| msgid "Twitter"
11379
  msgid "Twitter Page"
11380
  msgstr "Twitter"
11381
 
11382
+ #: app/features/speakers.php:177 app/features/speakers.php:232
11383
  #, fuzzy
11384
  #| msgid "Insert -1 for unlimited usage"
11385
  msgid "Insert URL of Twitter Page"
11386
  msgstr "Digite -1 para uso ilimitado"
11387
 
11388
+ #: app/features/speakers.php:228
11389
  #, fuzzy
11390
  #| msgid "Insert -1 for unlimited usage"
11391
  msgid "Insert URL of linkedin"
11392
  msgstr "Digite -1 para uso ilimitado"
11393
 
11394
+ #: app/features/speakers.php:353
11395
  msgid "Sorry, You must insert speaker name!"
11396
  msgstr ""
11397
 
11398
+ #: app/features/speakers.php:402
11399
  msgid ""
11400
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
11401
  "section and speaker widget section!"
11483
  msgid "Upgrade to Pro Version"
11484
  msgstr ""
11485
 
11486
+ #: app/libraries/factory.php:232
11487
  msgctxt "plugin link"
11488
  msgid "Settings"
11489
  msgstr "Configurações"
11490
 
11491
+ #: app/libraries/factory.php:237
11492
  msgctxt "plugin link"
11493
  msgid "Upgrade"
11494
  msgstr ""
11495
 
11496
+ #: app/libraries/factory.php:391
11497
  msgid "day"
11498
  msgstr "dia"
11499
 
11500
+ #: app/libraries/factory.php:392 app/modules/countdown/details.php:193
11501
  #: app/skins/available_spot/tpl.php:143 app/skins/countdown/tpl.php:128
11502
  #: app/skins/countdown/tpl.php:174 app/skins/countdown/tpl.php:225
11503
  msgid "days"
11504
  msgstr "dias"
11505
 
11506
+ #: app/libraries/factory.php:393
11507
  msgid "hour"
11508
  msgstr "hora"
11509
 
11510
+ #: app/libraries/factory.php:394 app/modules/countdown/details.php:200
11511
  #: app/skins/available_spot/tpl.php:147 app/skins/countdown/tpl.php:134
11512
  #: app/skins/countdown/tpl.php:180 app/skins/countdown/tpl.php:231
11513
  msgid "hours"
11514
  msgstr "horas"
11515
 
11516
+ #: app/libraries/factory.php:395
11517
  msgid "minute"
11518
  msgstr "minuto"
11519
 
11520
+ #: app/libraries/factory.php:396 app/modules/countdown/details.php:207
11521
  #: app/skins/available_spot/tpl.php:151 app/skins/countdown/tpl.php:140
11522
  #: app/skins/countdown/tpl.php:186 app/skins/countdown/tpl.php:237
11523
  msgid "minutes"
11524
  msgstr "minutos"
11525
 
11526
+ #: app/libraries/factory.php:397
11527
  msgid "second"
11528
  msgstr "segundo"
11529
 
11530
+ #: app/libraries/factory.php:398 app/modules/countdown/details.php:214
11531
  #: app/skins/available_spot/tpl.php:155 app/skins/countdown/tpl.php:146
11532
  #: app/skins/countdown/tpl.php:192 app/skins/countdown/tpl.php:243
11533
  msgid "seconds"
11534
  msgstr "segundos"
11535
 
11536
+ #: app/libraries/factory.php:475
11537
  msgid "MEC Single Sidebar"
11538
  msgstr ""
11539
 
11540
+ #: app/libraries/factory.php:476
11541
  msgid "Custom sidebar for single and modal page of MEC."
11542
  msgstr ""
11543
 
11544
+ #: app/libraries/factory.php:1197
11545
  msgid "Notice:"
11546
  msgstr ""
11547
 
11548
+ #: app/libraries/factory.php:1198
11549
  msgid "This update includes only bug fixes."
11550
  msgstr ""
11551
 
11701
  msgid "%s Form"
11702
  msgstr ""
11703
 
 
 
 
 
 
 
11704
  #: app/libraries/main.php:726
11705
  msgid "Only For Bookers"
11706
  msgstr ""
12489
  msgid "End at: %s - %s"
12490
  msgstr ""
12491
 
12492
+ #: app/libraries/skins.php:1777
 
 
 
 
 
12493
  #, fuzzy
12494
  #| msgid "Repeat"
12495
  msgid "Repeating Event"
12979
  msgid "http://webnus.net"
12980
  msgstr ""
12981
 
12982
+ #, fuzzy
12983
+ #~| msgid "Address"
12984
+ #~ msgid "WordPress"
12985
+ #~ msgstr "Endereço"
12986
+
12987
  #, fuzzy
12988
  #~ msgid "MEC Transaction ID: %s, Event Title: %s"
12989
  #~ msgstr "ID da Transação"
languages/modern-events-calendar-lite-ru_RU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2022-02-23 13:26+0330\n"
5
- "PO-Revision-Date: 2022-02-23 13:27+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
@@ -178,7 +178,7 @@ msgid "Canceled"
178
  msgstr "Отменено"
179
 
180
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
181
- #: app/features/mec/booking.php:1259 app/features/mec/booking.php:1281
182
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
183
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
184
  #: app/features/mec/notifications.php:1922
@@ -216,14 +216,14 @@ msgstr "Имя"
216
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
217
  #: app/features/autoemails.php:60 app/features/events.php:606
218
  #: app/features/events.php:2650 app/features/events.php:2717
219
- #: app/features/events.php:2806 app/features/events.php:4443
220
- #: app/features/fes.php:280 app/features/fes/form.php:810
221
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
222
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
223
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
224
  #: app/features/organizers.php:112 app/features/organizers.php:153
225
- #: app/features/profile/profile.php:206 app/features/speakers.php:128
226
- #: app/features/speakers.php:205 app/libraries/main.php:653
227
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
228
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
229
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
@@ -383,8 +383,8 @@ msgstr "Дата"
383
  #: app/features/events.php:2808 app/features/mec/booking.php:800
384
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
385
  #: app/features/organizers.php:104 app/features/organizers.php:149
386
- #: app/features/speakers.php:120 app/features/speakers.php:201
387
- #: app/features/speakers.php:288 app/libraries/main.php:4252
388
  msgid "Tel"
389
  msgstr "Тел."
390
 
@@ -530,6 +530,11 @@ msgstr ""
530
  msgid "Agreement"
531
  msgstr ""
532
 
 
 
 
 
 
533
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
534
  #, php-format
535
  msgid "Instead of %s, the page title with a link will be show."
@@ -708,8 +713,8 @@ msgstr ""
708
  #: app/features/events.php:1843 app/features/events.php:2014
709
  #: app/features/events.php:2029 app/features/events.php:2271
710
  #: app/features/events.php:2283 app/features/events.php:2476
711
- #: app/features/events.php:2513 app/features/fes/form.php:458
712
- #: app/features/fes/form.php:766 app/features/fes/form.php:901
713
  #: app/features/locations.php:341 app/features/mec/booking.php:113
714
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
715
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
@@ -786,9 +791,9 @@ msgstr ""
786
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
787
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
788
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
789
- #: app/features/occurrences.php:472 app/features/occurrences.php:499
790
- #: app/features/organizers.php:289 app/features/popup/event.php:128
791
- #: app/features/popup/event.php:175 app/features/popup/settings.php:78
792
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
793
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
794
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
@@ -952,8 +957,8 @@ msgstr ""
952
 
953
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
954
  #: app/features/events.php:432 app/features/events.php:1283
955
- #: app/features/fes/form.php:868 app/features/mec/settings.php:1172
956
- #: app/features/occurrences.php:511 app/libraries/main.php:7605
957
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
958
  #: app/skins/single.php:1126 app/skins/single/default.php:213
959
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
@@ -1032,7 +1037,7 @@ msgid "How to set label"
1032
  msgstr ""
1033
 
1034
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1035
- #: app/features/events.php:4195 app/features/fes/form.php:998
1036
  #: app/features/labels.php:61 app/features/labels.php:227
1037
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1038
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
@@ -1068,7 +1073,7 @@ msgid "How to set location"
1068
  msgstr "Скрыть место"
1069
 
1070
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1071
- #: app/features/events.php:3876 app/features/events.php:4188
1072
  #: app/features/locations.php:58 app/features/locations.php:267
1073
  #: app/features/locations.php:329 app/features/locations.php:331
1074
  #: app/features/locations.php:340
@@ -1088,7 +1093,7 @@ msgstr "Скрыть место"
1088
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1089
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1090
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1091
- #: app/features/popup/event.php:118 app/features/popup/event.php:127
1092
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1093
  #: app/features/search.php:97 app/libraries/main.php:3020
1094
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
@@ -1102,7 +1107,7 @@ msgstr "Места"
1102
 
1103
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1104
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1105
- #: app/features/speakers.php:136 app/features/speakers.php:209
1106
  #: app/skins/single.php:1406 app/skins/single.php:1473
1107
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1108
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
@@ -1125,7 +1130,7 @@ msgstr ""
1125
 
1126
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1127
  #: app/features/events.php:1519 app/features/events.php:1532
1128
- #: app/features/fes/form.php:836 app/features/occurrences.php:525
1129
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1130
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1131
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
@@ -1176,8 +1181,8 @@ msgstr "Скрыть организатора"
1176
 
1177
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1178
  #: app/features/events.php:431 app/features/events.php:3877
1179
- #: app/features/events.php:4190 app/features/events.php:4191
1180
- #: app/features/events.php:4192
1181
  #: app/features/mec/meta_boxes/display_options.php:1660
1182
  #: app/features/mec/meta_boxes/search_form.php:80
1183
  #: app/features/mec/meta_boxes/search_form.php:168
@@ -1192,12 +1197,12 @@ msgstr "Скрыть организатора"
1192
  #: app/features/mec/meta_boxes/search_form.php:983
1193
  #: app/features/mec/meta_boxes/search_form.php:1070
1194
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1195
- #: app/features/mec/single.php:521 app/features/occurrences.php:487
1196
- #: app/features/occurrences.php:489 app/features/occurrences.php:498
1197
  #: app/features/organizers.php:58 app/features/organizers.php:208
1198
  #: app/features/organizers.php:277 app/features/organizers.php:279
1199
- #: app/features/organizers.php:288 app/features/popup/event.php:165
1200
- #: app/features/popup/event.php:174 app/features/popup/settings.php:224
1201
  #: app/features/popup/settings.php:263 app/features/search.php:103
1202
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1203
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
@@ -1319,8 +1324,8 @@ msgstr "Время"
1319
  #: app/features/booking/calendar_novel.php:145
1320
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1321
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1322
- #: app/libraries/render.php:554 app/libraries/render.php:758
1323
- #: app/libraries/render.php:982 app/libraries/render.php:1009
1324
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1325
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1326
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
@@ -1386,7 +1391,7 @@ msgstr "Не найдено ни одного события!"
1386
 
1387
  #: app/features/autoemails.php:74 app/features/events.php:230
1388
  #: app/features/labels.php:72 app/features/locations.php:70
1389
- #: app/features/organizers.php:70 app/features/speakers.php:72
1390
  #: app/features/tag.php:70
1391
  #, php-format
1392
  msgid "Edit %s"
@@ -1450,7 +1455,7 @@ msgstr "По умолч. 6"
1450
  msgid "Go to events page"
1451
  msgstr "Отображать карты Google на странице события"
1452
 
1453
- #: app/features/cart/cart.php:43 app/features/events.php:4736
1454
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1455
  #: app/features/wc.php:91 app/libraries/main.php:3072
1456
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
@@ -1532,7 +1537,7 @@ msgstr "Бронирование"
1532
  msgid "Back to Cart"
1533
  msgstr "Назад к списку событий."
1534
 
1535
- #: app/features/colors.php:50 app/features/fes/form.php:1022
1536
  #: app/features/mec/settings.php:907
1537
  msgid "Event Color"
1538
  msgstr "Цвет события"
@@ -1544,8 +1549,8 @@ msgid "Recent Colors"
1544
  msgstr "Цвет события"
1545
 
1546
  #: app/features/contextual.php:55 app/features/mec.php:546
1547
- #: app/features/mec/dashboard.php:123 app/features/mec/support.php:20
1548
- #: app/features/mec/wizard.php:534 app/features/popup/event.php:61
1549
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1550
  #: app/libraries/main.php:738
1551
  msgid "Settings"
@@ -1659,7 +1664,7 @@ msgid "Event Details/Single Event Page"
1659
  msgstr ""
1660
 
1661
  #: app/features/contextual.php:166 app/features/events.php:1298
1662
- #: app/features/fes/form.php:883
1663
  msgid "Currency Options"
1664
  msgstr "Опции валюты"
1665
 
@@ -1751,8 +1756,8 @@ msgid "Public File to Download"
1751
  msgstr ""
1752
 
1753
  #: app/features/dlfile.php:297 app/features/events.php:3874
1754
- #: app/features/events.php:4181 app/features/events.php:4730
1755
- #: app/features/fes/form.php:260 app/features/mec/booking.php:690
1756
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1757
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1758
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
@@ -1761,7 +1766,7 @@ msgid "Title"
1761
  msgstr "Заголовок"
1762
 
1763
  #: app/features/dlfile.php:301 app/features/events.php:1988
1764
- #: app/features/events.php:2248 app/features/events.php:4182
1765
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1766
  #: app/libraries/hourlyschedule.php:152
1767
  msgid "Description"
@@ -1808,7 +1813,7 @@ msgid "Before"
1808
  msgstr "до 10$"
1809
 
1810
  #: app/features/emails/details.php:35 app/features/events.php:1223
1811
- #: app/features/fes/form.php:760 app/features/mec/booking.php:163
1812
  msgid "After"
1813
  msgstr "После"
1814
 
@@ -1819,7 +1824,7 @@ msgid "event occurrence."
1819
  msgstr "Время наступления"
1820
 
1821
  #: app/features/emails/details.php:40 app/features/events.php:192
1822
- #: app/features/ix/export.php:37 app/features/mec/dashboard.php:214
1823
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1824
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1825
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
@@ -1840,11 +1845,11 @@ msgstr ""
1840
  msgid "Add Event"
1841
  msgstr "Добавить событие"
1842
 
1843
- #: app/features/events.php:195 app/features/mec/dashboard.php:122
1844
  msgid "Add New Event"
1845
  msgstr "Добавить новое событие"
1846
 
1847
- #: app/features/events.php:196 app/features/ix.php:4573
1848
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1849
  #: app/skins/map/tpl.php:93
1850
  msgid "No events found!"
@@ -1855,7 +1860,7 @@ msgid "Edit Event"
1855
  msgstr ""
1856
 
1857
  #: app/features/events.php:199 app/features/fes/list.php:100
1858
- #: app/features/popup/event.php:254
1859
  msgid "View Event"
1860
  msgstr "Просмотр события"
1861
 
@@ -1864,7 +1869,7 @@ msgid "No events found in Trash!"
1864
  msgstr "Событий в корзине не найдено!"
1865
 
1866
  #: app/features/events.php:219 app/features/events.php:3831
1867
- #: app/features/events.php:4196 app/features/fes/form.php:972
1868
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1869
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1870
  #: app/libraries/main.php:7619
@@ -1873,49 +1878,49 @@ msgstr "Категории"
1873
 
1874
  #: app/features/events.php:229 app/features/labels.php:71
1875
  #: app/features/locations.php:69 app/features/organizers.php:69
1876
- #: app/features/speakers.php:71 app/features/tag.php:69
1877
  #, php-format
1878
  msgid "All %s"
1879
  msgstr ""
1880
 
1881
  #: app/features/events.php:231 app/features/labels.php:73
1882
  #: app/features/locations.php:71 app/features/organizers.php:71
1883
- #: app/features/speakers.php:73 app/features/tag.php:71
1884
  #, php-format
1885
  msgid "View %s"
1886
  msgstr ""
1887
 
1888
  #: app/features/events.php:232 app/features/labels.php:74
1889
  #: app/features/locations.php:72 app/features/organizers.php:72
1890
- #: app/features/speakers.php:74 app/features/tag.php:72
1891
  #, php-format
1892
  msgid "Update %s"
1893
  msgstr ""
1894
 
1895
  #: app/features/events.php:233 app/features/labels.php:75
1896
  #: app/features/locations.php:73 app/features/organizers.php:73
1897
- #: app/features/speakers.php:75 app/features/tag.php:73
1898
  #, php-format
1899
  msgid "Add New %s"
1900
  msgstr ""
1901
 
1902
  #: app/features/events.php:234 app/features/labels.php:76
1903
  #: app/features/locations.php:74 app/features/organizers.php:74
1904
- #: app/features/speakers.php:76 app/features/tag.php:74
1905
  #, php-format
1906
  msgid "New %s Name"
1907
  msgstr ""
1908
 
1909
  #: app/features/events.php:235 app/features/labels.php:77
1910
  #: app/features/locations.php:75 app/features/organizers.php:75
1911
- #: app/features/speakers.php:77 app/features/tag.php:75
1912
  #, php-format
1913
  msgid "Popular %s"
1914
  msgstr ""
1915
 
1916
  #: app/features/events.php:236 app/features/labels.php:78
1917
  #: app/features/locations.php:76 app/features/organizers.php:76
1918
- #: app/features/speakers.php:78 app/features/tag.php:76
1919
  #, php-format
1920
  msgid "Search %s"
1921
  msgstr ""
@@ -1945,7 +1950,7 @@ msgstr ""
1945
  #: app/features/events.php:278 app/features/events.php:336
1946
  #: app/features/locations.php:161 app/features/locations.php:213
1947
  #: app/features/organizers.php:133 app/features/organizers.php:164
1948
- #: app/features/speakers.php:181 app/features/speakers.php:232
1949
  msgid "Upload/Add image"
1950
  msgstr "Загрузить/Добавить изображение"
1951
 
@@ -1954,7 +1959,7 @@ msgstr "Загрузить/Добавить изображение"
1954
  #: app/features/locations.php:393 app/features/locations.php:400
1955
  #: app/features/organizers.php:134 app/features/organizers.php:165
1956
  #: app/features/organizers.php:316 app/features/organizers.php:323
1957
- #: app/features/speakers.php:182 app/features/speakers.php:233
1958
  msgid "Remove image"
1959
  msgstr "Удалить изображение"
1960
 
@@ -1974,7 +1979,7 @@ msgstr "Детали события"
1974
  msgid "Date And Time"
1975
  msgstr "Дата и время"
1976
 
1977
- #: app/features/events.php:425 app/features/fes/form.php:384
1978
  msgid "Event Repeating"
1979
  msgstr "Повторяющееся событие"
1980
 
@@ -2019,10 +2024,10 @@ msgid "Guest Data"
2019
  msgstr ""
2020
 
2021
  #: app/features/events.php:605 app/features/events.php:2641
2022
- #: app/features/events.php:4440 app/features/fes.php:280
2023
- #: app/features/fes/form.php:814 app/features/labels.php:184
2024
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2025
- #: app/features/popup/event.php:184 app/features/profile/profile.php:203
2026
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2027
  msgid "Name"
2028
  msgstr "Имя"
@@ -2033,13 +2038,13 @@ msgid ""
2033
  "overwrite in the next import from Google."
2034
  msgstr ""
2035
 
2036
- #: app/features/events.php:619 app/features/fes/form.php:282
2037
  msgid "Date and Time"
2038
  msgstr "Дата и время"
2039
 
2040
  #: app/features/events.php:622 app/features/events.php:626
2041
- #: app/features/events.php:3878 app/features/events.php:4183
2042
- #: app/features/fes/form.php:286 app/features/fes/form.php:290
2043
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2044
  #: app/features/mec/meta_boxes/display_options.php:57
2045
  #: app/features/mec/meta_boxes/display_options.php:312
@@ -2057,13 +2062,13 @@ msgstr "Дата и время"
2057
  #: app/features/mec/meta_boxes/display_options.php:2347
2058
  #: app/features/mec/meta_boxes/display_options.php:2478
2059
  #: app/features/mec/meta_boxes/display_options.php:2584
2060
- #: app/features/popup/event.php:77
2061
  msgid "Start Date"
2062
  msgstr "Дата начала"
2063
 
2064
  #: app/features/events.php:642 app/features/events.php:646
2065
- #: app/features/events.php:3879 app/features/events.php:4185
2066
- #: app/features/fes/form.php:306 app/features/fes/form.php:310
2067
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2068
  #: app/features/mec/meta_boxes/display_options.php:73
2069
  #: app/features/mec/meta_boxes/display_options.php:328
@@ -2072,31 +2077,31 @@ msgstr "Дата начала"
2072
  #: app/features/mec/meta_boxes/display_options.php:788
2073
  #: app/features/mec/meta_boxes/display_options.php:1618
2074
  #: app/features/mec/meta_boxes/display_options.php:2363
2075
- #: app/features/popup/event.php:94
2076
  msgid "End Date"
2077
  msgstr "Дата окончания"
2078
 
2079
- #: app/features/events.php:669 app/features/fes/form.php:324
2080
- #: app/features/popup/event.php:111
2081
  #, fuzzy
2082
  #| msgid "All Day Event"
2083
  msgid "All-day Event"
2084
  msgstr "Событие на целый день"
2085
 
2086
- #: app/features/events.php:679 app/features/fes/form.php:327
2087
  msgid "Hide Event Time"
2088
  msgstr "Скрыть время события"
2089
 
2090
- #: app/features/events.php:689 app/features/fes/form.php:330
2091
  msgid "Hide Event End Time"
2092
  msgstr "Скрыть время окончания события"
2093
 
2094
  #: app/features/events.php:694 app/features/events.php:698
2095
- #: app/features/fes/form.php:334
2096
  msgid "Notes on the time"
2097
  msgstr ""
2098
 
2099
- #: app/features/events.php:699 app/features/fes/form.php:335
2100
  #, fuzzy
2101
  #| msgid ""
2102
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -2108,7 +2113,7 @@ msgstr ""
2108
  "Отображаются после времени события. Например вы можете указать здесь часовой "
2109
  "пояс события."
2110
 
2111
- #: app/features/events.php:711 app/features/fes/form.php:342
2112
  #, fuzzy
2113
  #| msgid "Time"
2114
  msgid "Timezone"
@@ -2119,55 +2124,55 @@ msgstr "Время"
2119
  #: app/features/events.php:1793 app/features/events.php:1813
2120
  #: app/features/events.php:1868 app/features/events.php:2438
2121
  #: app/features/events.php:2561 app/features/events.php:2672
2122
- #: app/features/fes/form.php:347 app/features/fes/form.php:360
2123
  msgid "Inherit from global options"
2124
  msgstr "Заимствовать из глобальных настроек"
2125
 
2126
  #: app/features/events.php:725 app/features/events.php:728
2127
- #: app/features/fes/form.php:356 app/features/fes/form.php:359
2128
  #: app/features/mec/settings.php:858
2129
  #, fuzzy
2130
  #| msgid "Countdown View"
2131
  msgid "Countdown Method"
2132
  msgstr "Счётчик"
2133
 
2134
- #: app/features/events.php:730 app/features/fes/form.php:361
2135
  #, fuzzy
2136
  #| msgid "Start Date"
2137
  msgid "Count to Event Start"
2138
  msgstr "Дата начала"
2139
 
2140
- #: app/features/events.php:731 app/features/fes/form.php:362
2141
  #, fuzzy
2142
  #| msgid "No event found!"
2143
  msgid "Count to Event End"
2144
  msgstr "Событие не найдено!"
2145
 
2146
- #: app/features/events.php:737 app/features/fes/form.php:369
2147
  #: app/modules/weather/darksky.php:57
2148
  msgid "Visibility"
2149
  msgstr ""
2150
 
2151
- #: app/features/events.php:740 app/features/fes/form.php:372
2152
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2153
  #, fuzzy
2154
  #| msgid "Event Cost"
2155
  msgid "Event Visibility"
2156
  msgstr "Цена события"
2157
 
2158
- #: app/features/events.php:741 app/features/fes/form.php:373
2159
  #, fuzzy
2160
  #| msgid "Booking"
2161
  msgid "Show on Shortcodes"
2162
  msgstr "Бронирование"
2163
 
2164
- #: app/features/events.php:742 app/features/fes/form.php:374
2165
  #, fuzzy
2166
  #| msgid "Shortcodes"
2167
  msgid "Hide on Shortcodes"
2168
  msgstr "Шорткоды"
2169
 
2170
- #: app/features/events.php:749 app/features/fes/form.php:382
2171
  #, fuzzy
2172
  #| msgid "Repeat"
2173
  msgid "Repeating"
@@ -2179,65 +2184,70 @@ msgstr "Повтор"
2179
  msgid "Event Repeating (Recurring events)"
2180
  msgstr "Повторяющееся событие"
2181
 
2182
- #: app/features/events.php:762 app/features/fes/form.php:388
2183
  msgid "Repeats"
2184
  msgstr "Повторения"
2185
 
2186
- #: app/features/events.php:770 app/features/fes/form.php:390
2187
- #: app/features/mec.php:1567 app/skins/default_full_calendar/tpl.php:79
 
2188
  #: app/skins/full_calendar/tpl.php:140
2189
  msgid "Daily"
2190
  msgstr "Ежедневно"
2191
 
2192
- #: app/features/events.php:777 app/features/fes/form.php:391
 
2193
  msgid "Every Weekday"
2194
  msgstr "По будням"
2195
 
2196
- #: app/features/events.php:784 app/features/fes/form.php:392
 
2197
  msgid "Every Weekend"
2198
  msgstr "По выходным"
2199
 
2200
- #: app/features/events.php:791 app/features/fes/form.php:393
2201
  msgid "Certain Weekdays"
2202
  msgstr "В определённые дни по будням"
2203
 
2204
- #: app/features/events.php:798 app/features/fes/form.php:394
2205
- #: app/skins/default_full_calendar/tpl.php:78
2206
  #: app/skins/full_calendar/tpl.php:139
2207
  msgid "Weekly"
2208
  msgstr "Еженедельно"
2209
 
2210
- #: app/features/events.php:805 app/features/fes/form.php:395
2211
- #: app/features/mec.php:1568 app/skins/default_full_calendar/tpl.php:77
 
2212
  #: app/skins/full_calendar/tpl.php:138
2213
  msgid "Monthly"
2214
  msgstr "Каждый месяц"
2215
 
2216
- #: app/features/events.php:812 app/features/fes/form.php:396
2217
- #: app/features/mec.php:1569 app/skins/default_full_calendar/tpl.php:76
 
2218
  #: app/skins/full_calendar/tpl.php:137
2219
  msgid "Yearly"
2220
  msgstr "Каждый год"
2221
 
2222
- #: app/features/events.php:819 app/features/fes/form.php:397
2223
  msgid "Custom Days"
2224
  msgstr "В указанные дни"
2225
 
2226
- #: app/features/events.php:826 app/features/fes/form.php:398
2227
  #, fuzzy
2228
  #| msgid "Advanced Method"
2229
  msgid "Advanced"
2230
  msgstr "Расширенный метод"
2231
 
2232
- #: app/features/events.php:831 app/features/fes/form.php:402
2233
  msgid "Repeat Interval"
2234
  msgstr "Интервал повтора"
2235
 
2236
- #: app/features/events.php:833 app/features/fes/form.php:403
2237
  msgid "Repeat interval"
2238
  msgstr "Интервал повтора"
2239
 
2240
- #: app/features/events.php:837 app/features/fes/form.php:406
2241
  msgid "Week Days"
2242
  msgstr "Будние дни"
2243
 
@@ -2249,7 +2259,7 @@ msgstr ""
2249
 
2250
  #: app/features/events.php:860 app/features/events.php:2101
2251
  #: app/features/events.php:2129 app/features/events.php:2343
2252
- #: app/features/fes/form.php:420 app/features/ix/import_f_calendar.php:42
2253
  #: app/features/ix/import_g_calendar.php:51
2254
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2255
  #: app/libraries/skins.php:1389
@@ -2260,19 +2270,19 @@ msgstr ""
2260
  #: app/features/events.php:2085 app/features/events.php:2167
2261
  #: app/features/events.php:2332 app/features/events.php:2376
2262
  #: app/features/events.php:2449 app/features/events.php:2566
2263
- #: app/features/fes/form.php:451 app/features/fes/form.php:1070
2264
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2265
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2266
  msgid "Add"
2267
  msgstr "Добавить"
2268
 
2269
- #: app/features/events.php:877 app/features/fes/form.php:454
2270
  #, fuzzy
2271
  #| msgid "Custom Days"
2272
  msgid "Custom Days Repeating"
2273
  msgstr "В указанные дни"
2274
 
2275
- #: app/features/events.php:880 app/features/fes/form.php:457
2276
  msgid ""
2277
  "Add certain days to event occurrence dates. If you have a single day event, "
2278
  "start and end dates should be the same, If you have a multiple day event, "
@@ -2281,50 +2291,50 @@ msgstr ""
2281
 
2282
  #: app/features/events.php:891 app/features/events.php:2105
2283
  #: app/features/events.php:2133 app/features/events.php:2347
2284
- #: app/features/fes/form.php:436 app/libraries/skins.php:1392
2285
  msgid "End"
2286
  msgstr ""
2287
 
2288
- #: app/features/events.php:968 app/features/fes/form.php:530
2289
  #, fuzzy
2290
  #| msgid "First name"
2291
  msgid "First"
2292
  msgstr "Имя"
2293
 
2294
- #: app/features/events.php:1010 app/features/fes/form.php:572
2295
  #, fuzzy
2296
  #| msgid "second"
2297
  msgid "Second"
2298
  msgstr "секунда"
2299
 
2300
- #: app/features/events.php:1052 app/features/fes/form.php:614
2301
  msgid "Third"
2302
  msgstr ""
2303
 
2304
- #: app/features/events.php:1094 app/features/fes/form.php:656
2305
  msgid "Fourth"
2306
  msgstr ""
2307
 
2308
- #: app/features/events.php:1136 app/features/fes/form.php:698
2309
  #, fuzzy
2310
  #| msgid "Last name"
2311
  msgid "Last"
2312
  msgstr "Фамилия"
2313
 
2314
- #: app/features/events.php:1183 app/features/fes/form.php:744
2315
  msgid "Ends Repeat"
2316
  msgstr "Интервал повтора"
2317
 
2318
- #: app/features/events.php:1195 app/features/fes/form.php:748
2319
  msgid "Never"
2320
  msgstr "Никогда"
2321
 
2322
- #: app/features/events.php:1207 app/features/fes/form.php:753
2323
  msgid "On"
2324
  msgstr "Включить"
2325
 
2326
  #: app/features/events.php:1227 app/features/events.php:1231
2327
- #: app/features/fes/form.php:762 app/features/fes/form.php:765
2328
  msgid "Occurrences times"
2329
  msgstr "Время наступления"
2330
 
@@ -2340,12 +2350,12 @@ msgstr ""
2340
  "Событие будет закончено после определенного количества повторов. Например, "
2341
  "если вы укажите 10, событие будет закончено после 10 повторов."
2342
 
2343
- #: app/features/events.php:1248 app/features/fes/form.php:779
2344
  msgid "Show only one occurrence of this event"
2345
  msgstr ""
2346
 
2347
- #: app/features/events.php:1277 app/features/events.php:4193
2348
- #: app/features/fes/form.php:865
2349
  #: app/features/mec/meta_boxes/search_form.php:116
2350
  #: app/features/mec/meta_boxes/search_form.php:204
2351
  #: app/features/mec/meta_boxes/search_form.php:292
@@ -2369,73 +2379,73 @@ msgstr ""
2369
  #: app/features/mec/notifications.php:1511
2370
  #: app/features/mec/notifications.php:1628
2371
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2372
- #: app/features/notifications.php:160 app/features/occurrences.php:508
2373
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2374
  #: app/widgets/single.php:122
2375
  msgid "Event Cost"
2376
  msgstr "Цена события"
2377
 
2378
- #: app/features/events.php:1292 app/features/fes/form.php:877
2379
  msgid "Show the minimum price based on tickets"
2380
  msgstr ""
2381
 
2382
- #: app/features/events.php:1300 app/features/fes/form.php:885
2383
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2384
  #: app/libraries/main.php:646
2385
  msgid "Currency"
2386
  msgstr "Валюта"
2387
 
2388
  #: app/features/events.php:1310 app/features/events.php:1315
2389
- #: app/features/fes/form.php:895 app/features/fes/form.php:900
2390
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2391
  msgid "Currency Sign"
2392
  msgstr "Символ валюты"
2393
 
2394
- #: app/features/events.php:1316 app/features/fes/form.php:901
2395
  #: app/features/mec/settings.php:600
2396
  msgid "Default value will be \"currency\" if you leave it empty."
2397
  msgstr "Значение по умолчанию будет \"currency\" если вы оставите поле пустым."
2398
 
2399
- #: app/features/events.php:1323 app/features/fes/form.php:908
2400
  #: app/features/mec/settings.php:607
2401
  msgid "Currency Position"
2402
  msgstr "Валютная позиция"
2403
 
2404
- #: app/features/events.php:1326 app/features/fes/form.php:911
2405
  #: app/features/mec/settings.php:610
2406
  #, fuzzy
2407
  #| msgid "Before $10"
2408
  msgid "$10 (Before)"
2409
  msgstr "до 10$"
2410
 
2411
- #: app/features/events.php:1327 app/features/fes/form.php:912
2412
  #: app/features/mec/settings.php:611
2413
  msgid "$ 10 (Before with Space)"
2414
  msgstr ""
2415
 
2416
- #: app/features/events.php:1328 app/features/fes/form.php:913
2417
  #: app/features/mec/settings.php:612
2418
  #, fuzzy
2419
  #| msgid "After"
2420
  msgid "10$ (After)"
2421
  msgstr "После"
2422
 
2423
- #: app/features/events.php:1329 app/features/fes/form.php:914
2424
  #: app/features/mec/settings.php:613
2425
  msgid "10 $ (After with Space)"
2426
  msgstr ""
2427
 
2428
- #: app/features/events.php:1334 app/features/fes/form.php:919
2429
  #: app/features/mec/settings.php:618
2430
  msgid "Thousand Separator"
2431
  msgstr "Разделитель тысячных"
2432
 
2433
- #: app/features/events.php:1340 app/features/fes/form.php:925
2434
  #: app/features/mec/settings.php:624
2435
  msgid "Decimal Separator"
2436
  msgstr "Разделитель десятых"
2437
 
2438
- #: app/features/events.php:1350 app/features/fes/form.php:935
2439
  #: app/features/mec/settings.php:634
2440
  msgid "No decimal"
2441
  msgstr "Без дробей."
@@ -2461,21 +2471,21 @@ msgstr ""
2461
  msgid "Day 1"
2462
  msgstr ""
2463
 
2464
- #: app/features/events.php:1498 app/features/fes/form.php:829
2465
- #: app/features/mec/settings.php:864 app/features/occurrences.php:518
2466
  msgid "Event Links"
2467
  msgstr "Ссылки события"
2468
 
2469
  #: app/features/events.php:1501 app/features/events.php:1509
2470
- #: app/features/fes/form.php:831 app/features/mec/settings.php:1173
2471
- #: app/features/occurrences.php:520 app/libraries/main.php:7602
2472
  #: app/libraries/main.php:7649
2473
  msgid "Event Link"
2474
  msgstr "Ссылка события"
2475
 
2476
  #: app/features/events.php:1504 app/features/events.php:1522
2477
- #: app/features/fes/form.php:832 app/features/fes/form.php:837
2478
- #: app/features/occurrences.php:521 app/features/occurrences.php:526
2479
  msgid "eg. http://yoursite.com/your-event"
2480
  msgstr "Например: http://yoursite.com/your-event"
2481
 
@@ -2496,24 +2506,24 @@ msgstr ""
2496
  msgid "URL Shortener"
2497
  msgstr ""
2498
 
2499
- #: app/features/events.php:1525 app/features/fes/form.php:838
2500
- #: app/features/occurrences.php:527
2501
  msgid "More Information"
2502
  msgstr "Дополнительная Информация"
2503
 
2504
- #: app/features/events.php:1527 app/features/fes/form.php:840
2505
- #: app/features/mec.php:1113 app/features/occurrences.php:529
2506
  #: app/features/popup/shortcode.php:481
2507
  msgid "Current Window"
2508
  msgstr ""
2509
 
2510
- #: app/features/events.php:1528 app/features/fes/form.php:841
2511
- #: app/features/mec.php:1114 app/features/occurrences.php:530
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2022-03-03 10:13+0330\n"
5
+ "PO-Revision-Date: 2022-03-03 10:14+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
178
  msgstr "Отменено"
179
 
180
  #: app/core/src/Books/Book.php:191 app/features/ix.php:279
181
+ #: app/features/mec/booking.php:1260 app/features/mec/booking.php:1282
182
  #: app/features/mec/integrations.php:449 app/features/mec/integrations.php:471
183
  #: app/features/mec/modules.php:406 app/features/mec/modules.php:428
184
  #: app/features/mec/notifications.php:1922
216
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:70
217
  #: app/features/autoemails.php:60 app/features/events.php:606
218
  #: app/features/events.php:2650 app/features/events.php:2717
219
+ #: app/features/events.php:2806 app/features/events.php:4445
220
+ #: app/features/fes.php:280 app/features/fes/form.php:812
221
  #: app/features/login/login.php:5 app/features/mec/booking.php:61
222
  #: app/features/mec/booking.php:798 app/features/mec/booking.php:896
223
  #: app/features/mec/settings.php:295 app/features/mec/single.php:307
224
  #: app/features/organizers.php:112 app/features/organizers.php:153
225
+ #: app/features/profile/profile.php:206 app/features/speakers.php:134
226
+ #: app/features/speakers.php:211 app/libraries/main.php:653
227
  #: app/libraries/main.php:2150 app/libraries/main.php:2219
228
  #: app/libraries/main.php:4129 app/libraries/notifications.php:2091
229
  #: app/modules/booking/steps/form.php:69 app/modules/booking/steps/form.php:218
383
  #: app/features/events.php:2808 app/features/mec/booking.php:800
384
  #: app/features/mec/booking.php:898 app/features/mec/single.php:310
385
  #: app/features/organizers.php:104 app/features/organizers.php:149
386
+ #: app/features/speakers.php:126 app/features/speakers.php:207
387
+ #: app/features/speakers.php:294 app/libraries/main.php:4252
388
  msgid "Tel"
389
  msgstr "Тел."
390
 
530
  msgid "Agreement"
531
  msgstr ""
532
 
533
+ #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
534
+ #, php-format
535
+ msgid "I agree with %s"
536
+ msgstr ""
537
+
538
  #: app/core/src/Forms/FormFields.php:557 app/libraries/main.php:4512
539
  #, php-format
540
  msgid "Instead of %s, the page title with a link will be show."
713
  #: app/features/events.php:1843 app/features/events.php:2014
714
  #: app/features/events.php:2029 app/features/events.php:2271
715
  #: app/features/events.php:2283 app/features/events.php:2476
716
+ #: app/features/events.php:2513 app/features/fes/form.php:460
717
+ #: app/features/fes/form.php:768 app/features/fes/form.php:903
718
  #: app/features/locations.php:341 app/features/mec/booking.php:113
719
  #: app/features/mec/booking.php:189 app/features/mec/booking.php:202
720
  #: app/features/mec/booking.php:238 app/features/mec/booking.php:303
791
  #: app/features/mec/single.php:401 app/features/mec/styling.php:123
792
  #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
793
  #: app/features/mec/styling.php:257 app/features/mec/styling.php:271
794
+ #: app/features/occurrences.php:472 app/features/occurrences.php:502
795
+ #: app/features/organizers.php:289 app/features/popup/event.php:130
796
+ #: app/features/popup/event.php:180 app/features/popup/settings.php:78
797
  #: app/features/popup/settings.php:161 app/features/popup/settings.php:182
798
  #: app/features/popup/settings.php:300 app/libraries/ticketVariations.php:50
799
  #: app/libraries/ticketVariations.php:65 app/skins/single.php:1218
957
 
958
  #: app/core/src/SingleBuilder/Widgets/EventCost/EventCost.php:47
959
  #: app/features/events.php:432 app/features/events.php:1283
960
+ #: app/features/fes/form.php:870 app/features/mec/settings.php:1172
961
+ #: app/features/occurrences.php:514 app/libraries/main.php:7605
962
  #: app/libraries/main.php:7652 app/libraries/skins.php:1441
963
  #: app/skins/single.php:1126 app/skins/single/default.php:213
964
  #: app/skins/single/m1.php:80 app/skins/single/modern.php:132
1037
  msgstr ""
1038
 
1039
  #: app/core/src/SingleBuilder/Widgets/EventLabels/EventLabels.php:48
1040
+ #: app/features/events.php:4197 app/features/fes/form.php:1000
1041
  #: app/features/labels.php:61 app/features/labels.php:227
1042
  #: app/features/mec.php:525 app/features/mec/meta_boxes/filter.php:72
1043
  #: app/features/mec/meta_boxes/filter.php:135 app/libraries/main.php:7560
1073
  msgstr "Скрыть место"
1074
 
1075
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:54
1076
+ #: app/features/events.php:3876 app/features/events.php:4190
1077
  #: app/features/locations.php:58 app/features/locations.php:267
1078
  #: app/features/locations.php:329 app/features/locations.php:331
1079
  #: app/features/locations.php:340
1093
  #: app/features/mec/settings.php:1244 app/features/mec/single.php:472
1094
  #: app/features/mec/single.php:525 app/features/occurrences.php:460
1095
  #: app/features/occurrences.php:462 app/features/occurrences.php:471
1096
+ #: app/features/popup/event.php:120 app/features/popup/event.php:129
1097
  #: app/features/popup/settings.php:228 app/features/popup/settings.php:267
1098
  #: app/features/search.php:97 app/libraries/main.php:3020
1099
  #: app/libraries/main.php:3299 app/libraries/main.php:7563
1107
 
1108
  #: app/core/src/SingleBuilder/Widgets/EventLocations/EventLocations.php:63
1109
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:77
1110
+ #: app/features/speakers.php:142 app/features/speakers.php:215
1111
  #: app/skins/single.php:1406 app/skins/single.php:1473
1112
  #: app/skins/single/default.php:274 app/skins/single/default.php:352
1113
  #: app/skins/single/m1.php:148 app/skins/single/m1.php:209
1130
 
1131
  #: app/core/src/SingleBuilder/Widgets/EventMoreInfo/EventMoreInfo.php:48
1132
  #: app/features/events.php:1519 app/features/events.php:1532
1133
+ #: app/features/fes/form.php:838 app/features/occurrences.php:528
1134
  #: app/libraries/main.php:7603 app/libraries/main.php:7650
1135
  #: app/skins/single.php:1223 app/skins/single/default.php:230
1136
  #: app/skins/single/m1.php:257 app/skins/single/m2.php:178
1181
 
1182
  #: app/core/src/SingleBuilder/Widgets/EventOrganizers/EventOrganizers.php:53
1183
  #: app/features/events.php:431 app/features/events.php:3877
1184
+ #: app/features/events.php:4192 app/features/events.php:4193
1185
+ #: app/features/events.php:4194
1186
  #: app/features/mec/meta_boxes/display_options.php:1660
1187
  #: app/features/mec/meta_boxes/search_form.php:80
1188
  #: app/features/mec/meta_boxes/search_form.php:168
1197
  #: app/features/mec/meta_boxes/search_form.php:983
1198
  #: app/features/mec/meta_boxes/search_form.php:1070
1199
  #: app/features/mec/settings.php:1250 app/features/mec/single.php:468
1200
+ #: app/features/mec/single.php:521 app/features/occurrences.php:490
1201
+ #: app/features/occurrences.php:492 app/features/occurrences.php:501
1202
  #: app/features/organizers.php:58 app/features/organizers.php:208
1203
  #: app/features/organizers.php:277 app/features/organizers.php:279
1204
+ #: app/features/organizers.php:288 app/features/popup/event.php:170
1205
+ #: app/features/popup/event.php:179 app/features/popup/settings.php:224
1206
  #: app/features/popup/settings.php:263 app/features/search.php:103
1207
  #: app/libraries/main.php:7565 app/libraries/main.php:7626
1208
  #: app/libraries/search.php:314 app/libraries/skins.php:1210
1324
  #: app/features/booking/calendar_novel.php:145
1325
  #: app/features/search_bar/search_result.php:12 app/libraries/main.php:7608
1326
  #: app/libraries/main.php:7655 app/libraries/notifications.php:1632
1327
+ #: app/libraries/render.php:554 app/libraries/render.php:759
1328
+ #: app/libraries/render.php:983 app/libraries/render.php:1010
1329
  #: app/libraries/skins.php:967 app/libraries/skins.php:972
1330
  #: app/modules/local-time/details.php:53 app/modules/local-time/type1.php:48
1331
  #: app/modules/local-time/type2.php:84 app/modules/local-time/type3.php:48
1391
 
1392
  #: app/features/autoemails.php:74 app/features/events.php:230
1393
  #: app/features/labels.php:72 app/features/locations.php:70
1394
+ #: app/features/organizers.php:70 app/features/speakers.php:78
1395
  #: app/features/tag.php:70
1396
  #, php-format
1397
  msgid "Edit %s"
1455
  msgid "Go to events page"
1456
  msgstr "Отображать карты Google на странице события"
1457
 
1458
+ #: app/features/cart/cart.php:43 app/features/events.php:4740
1459
  #: app/features/fes.php:280 app/features/mec/booking.php:355
1460
  #: app/features/wc.php:91 app/libraries/main.php:3072
1461
  #: app/libraries/main.php:3186 app/libraries/main.php:3291
1537
  msgid "Back to Cart"
1538
  msgstr "Назад к списку событий."
1539
 
1540
+ #: app/features/colors.php:50 app/features/fes/form.php:1024
1541
  #: app/features/mec/settings.php:907
1542
  msgid "Event Color"
1543
  msgstr "Цвет события"
1549
  msgstr "Цвет события"
1550
 
1551
  #: app/features/contextual.php:55 app/features/mec.php:546
1552
+ #: app/features/mec/dashboard.php:120 app/features/mec/support.php:20
1553
+ #: app/features/mec/wizard.php:534 app/features/popup/event.php:63
1554
  #: app/features/popup/settings.php:30 app/features/popup/shortcode.php:39
1555
  #: app/libraries/main.php:738
1556
  msgid "Settings"
1664
  msgstr ""
1665
 
1666
  #: app/features/contextual.php:166 app/features/events.php:1298
1667
+ #: app/features/fes/form.php:885
1668
  msgid "Currency Options"
1669
  msgstr "Опции валюты"
1670
 
1756
  msgstr ""
1757
 
1758
  #: app/features/dlfile.php:297 app/features/events.php:3874
1759
+ #: app/features/events.php:4183 app/features/events.php:4734
1760
+ #: app/features/fes/form.php:262 app/features/mec/booking.php:690
1761
  #: app/features/mec/booking.php:722 app/features/mec/styling.php:134
1762
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1763
  #: app/libraries/hourlyschedule.php:93 app/libraries/hourlyschedule.php:125
1766
  msgstr "Заголовок"
1767
 
1768
  #: app/features/dlfile.php:301 app/features/events.php:1988
1769
+ #: app/features/events.php:2248 app/features/events.php:4184
1770
  #: app/libraries/hourlyschedule.php:72 app/libraries/hourlyschedule.php:100
1771
  #: app/libraries/hourlyschedule.php:152
1772
  msgid "Description"
1813
  msgstr "до 10$"
1814
 
1815
  #: app/features/emails/details.php:35 app/features/events.php:1223
1816
+ #: app/features/fes/form.php:762 app/features/mec/booking.php:163
1817
  msgid "After"
1818
  msgstr "После"
1819
 
1824
  msgstr "Время наступления"
1825
 
1826
  #: app/features/emails/details.php:40 app/features/events.php:192
1827
+ #: app/features/ix/export.php:37 app/features/mec/dashboard.php:211
1828
  #: app/libraries/main.php:6578 app/libraries/main.php:6598
1829
  #: app/skins/daily_view/tpl.php:84 app/skins/monthly_view/calendar_clean.php:46
1830
  #: app/skins/monthly_view/tpl.php:76 app/skins/tile/tpl.php:85
1845
  msgid "Add Event"
1846
  msgstr "Добавить событие"
1847
 
1848
+ #: app/features/events.php:195 app/features/mec/dashboard.php:119
1849
  msgid "Add New Event"
1850
  msgstr "Добавить новое событие"
1851
 
1852
+ #: app/features/events.php:196 app/features/ix.php:4614
1853
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:73
1854
  #: app/skins/map/tpl.php:93
1855
  msgid "No events found!"
1860
  msgstr ""
1861
 
1862
  #: app/features/events.php:199 app/features/fes/list.php:100
1863
+ #: app/features/popup/event.php:259
1864
  msgid "View Event"
1865
  msgstr "Просмотр события"
1866
 
1869
  msgstr "Событий в корзине не найдено!"
1870
 
1871
  #: app/features/events.php:219 app/features/events.php:3831
1872
+ #: app/features/events.php:4198 app/features/fes/form.php:974
1873
  #: app/features/mec.php:524 app/features/mec/meta_boxes/filter.php:69
1874
  #: app/features/mec/meta_boxes/filter.php:81 app/libraries/main.php:7558
1875
  #: app/libraries/main.php:7619
1878
 
1879
  #: app/features/events.php:229 app/features/labels.php:71
1880
  #: app/features/locations.php:69 app/features/organizers.php:69
1881
+ #: app/features/speakers.php:77 app/features/tag.php:69
1882
  #, php-format
1883
  msgid "All %s"
1884
  msgstr ""
1885
 
1886
  #: app/features/events.php:231 app/features/labels.php:73
1887
  #: app/features/locations.php:71 app/features/organizers.php:71
1888
+ #: app/features/speakers.php:79 app/features/tag.php:71
1889
  #, php-format
1890
  msgid "View %s"
1891
  msgstr ""
1892
 
1893
  #: app/features/events.php:232 app/features/labels.php:74
1894
  #: app/features/locations.php:72 app/features/organizers.php:72
1895
+ #: app/features/speakers.php:80 app/features/tag.php:72
1896
  #, php-format
1897
  msgid "Update %s"
1898
  msgstr ""
1899
 
1900
  #: app/features/events.php:233 app/features/labels.php:75
1901
  #: app/features/locations.php:73 app/features/organizers.php:73
1902
+ #: app/features/speakers.php:81 app/features/tag.php:73
1903
  #, php-format
1904
  msgid "Add New %s"
1905
  msgstr ""
1906
 
1907
  #: app/features/events.php:234 app/features/labels.php:76
1908
  #: app/features/locations.php:74 app/features/organizers.php:74
1909
+ #: app/features/speakers.php:82 app/features/tag.php:74
1910
  #, php-format
1911
  msgid "New %s Name"
1912
  msgstr ""
1913
 
1914
  #: app/features/events.php:235 app/features/labels.php:77
1915
  #: app/features/locations.php:75 app/features/organizers.php:75
1916
+ #: app/features/speakers.php:83 app/features/tag.php:75
1917
  #, php-format
1918
  msgid "Popular %s"
1919
  msgstr ""
1920
 
1921
  #: app/features/events.php:236 app/features/labels.php:78
1922
  #: app/features/locations.php:76 app/features/organizers.php:76
1923
+ #: app/features/speakers.php:84 app/features/tag.php:76
1924
  #, php-format
1925
  msgid "Search %s"
1926
  msgstr ""
1950
  #: app/features/events.php:278 app/features/events.php:336
1951
  #: app/features/locations.php:161 app/features/locations.php:213
1952
  #: app/features/organizers.php:133 app/features/organizers.php:164
1953
+ #: app/features/speakers.php:187 app/features/speakers.php:238
1954
  msgid "Upload/Add image"
1955
  msgstr "Загрузить/Добавить изображение"
1956
 
1959
  #: app/features/locations.php:393 app/features/locations.php:400
1960
  #: app/features/organizers.php:134 app/features/organizers.php:165
1961
  #: app/features/organizers.php:316 app/features/organizers.php:323
1962
+ #: app/features/speakers.php:188 app/features/speakers.php:239
1963
  msgid "Remove image"
1964
  msgstr "Удалить изображение"
1965
 
1979
  msgid "Date And Time"
1980
  msgstr "Дата и время"
1981
 
1982
+ #: app/features/events.php:425 app/features/fes/form.php:386
1983
  msgid "Event Repeating"
1984
  msgstr "Повторяющееся событие"
1985
 
2024
  msgstr ""
2025
 
2026
  #: app/features/events.php:605 app/features/events.php:2641
2027
+ #: app/features/events.php:4442 app/features/fes.php:280
2028
+ #: app/features/fes/form.php:816 app/features/labels.php:184
2029
  #: app/features/mec/booking.php:49 app/features/organizers.php:296
2030
+ #: app/features/popup/event.php:189 app/features/profile/profile.php:203
2031
  #: app/libraries/notifications.php:2090 app/modules/booking/steps/form.php:60
2032
  msgid "Name"
2033
  msgstr "Имя"
2038
  "overwrite in the next import from Google."
2039
  msgstr ""
2040
 
2041
+ #: app/features/events.php:619 app/features/fes/form.php:284
2042
  msgid "Date and Time"
2043
  msgstr "Дата и время"
2044
 
2045
  #: app/features/events.php:622 app/features/events.php:626
2046
+ #: app/features/events.php:3878 app/features/events.php:4185
2047
+ #: app/features/fes/form.php:288 app/features/fes/form.php:292
2048
  #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1564
2049
  #: app/features/mec/meta_boxes/display_options.php:57
2050
  #: app/features/mec/meta_boxes/display_options.php:312
2062
  #: app/features/mec/meta_boxes/display_options.php:2347
2063
  #: app/features/mec/meta_boxes/display_options.php:2478
2064
  #: app/features/mec/meta_boxes/display_options.php:2584
2065
+ #: app/features/popup/event.php:79
2066
  msgid "Start Date"
2067
  msgstr "Дата начала"
2068
 
2069
  #: app/features/events.php:642 app/features/events.php:646
2070
+ #: app/features/events.php:3879 app/features/events.php:4187
2071
+ #: app/features/fes/form.php:308 app/features/fes/form.php:312
2072
  #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1565
2073
  #: app/features/mec/meta_boxes/display_options.php:73
2074
  #: app/features/mec/meta_boxes/display_options.php:328
2077
  #: app/features/mec/meta_boxes/display_options.php:788
2078
  #: app/features/mec/meta_boxes/display_options.php:1618
2079
  #: app/features/mec/meta_boxes/display_options.php:2363
2080
+ #: app/features/popup/event.php:96
2081
  msgid "End Date"
2082
  msgstr "Дата окончания"
2083
 
2084
+ #: app/features/events.php:669 app/features/fes/form.php:326
2085
+ #: app/features/popup/event.php:113
2086
  #, fuzzy
2087
  #| msgid "All Day Event"
2088
  msgid "All-day Event"
2089
  msgstr "Событие на целый день"
2090
 
2091
+ #: app/features/events.php:679 app/features/fes/form.php:329
2092
  msgid "Hide Event Time"
2093
  msgstr "Скрыть время события"
2094
 
2095
+ #: app/features/events.php:689 app/features/fes/form.php:332
2096
  msgid "Hide Event End Time"
2097
  msgstr "Скрыть время окончания события"
2098
 
2099
  #: app/features/events.php:694 app/features/events.php:698
2100
+ #: app/features/fes/form.php:336
2101
  msgid "Notes on the time"
2102
  msgstr ""
2103
 
2104
+ #: app/features/events.php:699 app/features/fes/form.php:337
2105
  #, fuzzy
2106
  #| msgid ""
2107
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
2113
  "Отображаются после времени события. Например вы можете указать здесь часовой "
2114
  "пояс события."
2115
 
2116
+ #: app/features/events.php:711 app/features/fes/form.php:344
2117
  #, fuzzy
2118
  #| msgid "Time"
2119
  msgid "Timezone"
2124
  #: app/features/events.php:1793 app/features/events.php:1813
2125
  #: app/features/events.php:1868 app/features/events.php:2438
2126
  #: app/features/events.php:2561 app/features/events.php:2672
2127
+ #: app/features/fes/form.php:349 app/features/fes/form.php:362
2128
  msgid "Inherit from global options"
2129
  msgstr "Заимствовать из глобальных настроек"
2130
 
2131
  #: app/features/events.php:725 app/features/events.php:728
2132
+ #: app/features/fes/form.php:358 app/features/fes/form.php:361
2133
  #: app/features/mec/settings.php:858
2134
  #, fuzzy
2135
  #| msgid "Countdown View"
2136
  msgid "Countdown Method"
2137
  msgstr "Счётчик"
2138
 
2139
+ #: app/features/events.php:730 app/features/fes/form.php:363
2140
  #, fuzzy
2141
  #| msgid "Start Date"
2142
  msgid "Count to Event Start"
2143
  msgstr "Дата начала"
2144
 
2145
+ #: app/features/events.php:731 app/features/fes/form.php:364
2146
  #, fuzzy
2147
  #| msgid "No event found!"
2148
  msgid "Count to Event End"
2149
  msgstr "Событие не найдено!"
2150
 
2151
+ #: app/features/events.php:737 app/features/fes/form.php:371
2152
  #: app/modules/weather/darksky.php:57
2153
  msgid "Visibility"
2154
  msgstr ""
2155
 
2156
+ #: app/features/events.php:740 app/features/fes/form.php:374
2157
  #: app/features/mec/settings.php:894 app/features/mec/settings.php:898
2158
  #, fuzzy
2159
  #| msgid "Event Cost"
2160
  msgid "Event Visibility"
2161
  msgstr "Цена события"
2162
 
2163
+ #: app/features/events.php:741 app/features/fes/form.php:375
2164
  #, fuzzy
2165
  #| msgid "Booking"
2166
  msgid "Show on Shortcodes"
2167
  msgstr "Бронирование"
2168
 
2169
+ #: app/features/events.php:742 app/features/fes/form.php:376
2170
  #, fuzzy
2171
  #| msgid "Shortcodes"
2172
  msgid "Hide on Shortcodes"
2173
  msgstr "Шорткоды"
2174
 
2175
+ #: app/features/events.php:749 app/features/fes/form.php:384
2176
  #, fuzzy
2177
  #| msgid "Repeat"
2178
  msgid "Repeating"
2184
  msgid "Event Repeating (Recurring events)"
2185
  msgstr "Повторяющееся событие"
2186
 
2187
+ #: app/features/events.php:762 app/features/fes/form.php:390
2188
  msgid "Repeats"
2189
  msgstr "Повторения"
2190
 
2191
+ #: app/features/events.php:770 app/features/fes/form.php:392
2192
+ #: app/features/mec.php:1567 app/libraries/skins.php:1757
2193
+ #: app/skins/default_full_calendar/tpl.php:79
2194
  #: app/skins/full_calendar/tpl.php:140
2195
  msgid "Daily"
2196
  msgstr "Ежедневно"
2197
 
2198
+ #: app/features/events.php:777 app/features/fes/form.php:393
2199
+ #: app/libraries/skins.php:1772
2200
  msgid "Every Weekday"
2201
  msgstr "По будням"
2202
 
2203
+ #: app/features/events.php:784 app/features/fes/form.php:394
2204
+ #: app/libraries/skins.php:1769
2205
  msgid "Every Weekend"
2206
  msgstr "По выходным"
2207
 
2208
+ #: app/features/events.php:791 app/features/fes/form.php:395
2209
  msgid "Certain Weekdays"
2210
  msgstr "В определённые дни по будням"
2211
 
2212
+ #: app/features/events.php:798 app/features/fes/form.php:396
2213
+ #: app/libraries/skins.php:1760 app/skins/default_full_calendar/tpl.php:78
2214
  #: app/skins/full_calendar/tpl.php:139
2215
  msgid "Weekly"
2216
  msgstr "Еженедельно"
2217
 
2218
+ #: app/features/events.php:805 app/features/fes/form.php:397
2219
+ #: app/features/mec.php:1568 app/libraries/skins.php:1763
2220
+ #: app/skins/default_full_calendar/tpl.php:77
2221
  #: app/skins/full_calendar/tpl.php:138
2222
  msgid "Monthly"
2223
  msgstr "Каждый месяц"
2224
 
2225
+ #: app/features/events.php:812 app/features/fes/form.php:398
2226
+ #: app/features/mec.php:1569 app/libraries/skins.php:1766
2227
+ #: app/skins/default_full_calendar/tpl.php:76
2228
  #: app/skins/full_calendar/tpl.php:137
2229
  msgid "Yearly"
2230
  msgstr "Каждый год"
2231
 
2232
+ #: app/features/events.php:819 app/features/fes/form.php:399
2233
  msgid "Custom Days"
2234
  msgstr "В указанные дни"
2235
 
2236
+ #: app/features/events.php:826 app/features/fes/form.php:400
2237
  #, fuzzy
2238
  #| msgid "Advanced Method"
2239
  msgid "Advanced"
2240
  msgstr "Расширенный метод"
2241
 
2242
+ #: app/features/events.php:831 app/features/fes/form.php:404
2243
  msgid "Repeat Interval"
2244
  msgstr "Интервал повтора"
2245
 
2246
+ #: app/features/events.php:833 app/features/fes/form.php:405
2247
  msgid "Repeat interval"
2248
  msgstr "Интервал повтора"
2249
 
2250
+ #: app/features/events.php:837 app/features/fes/form.php:408
2251
  msgid "Week Days"
2252
  msgstr "Будние дни"
2253
 
2259
 
2260
  #: app/features/events.php:860 app/features/events.php:2101
2261
  #: app/features/events.php:2129 app/features/events.php:2343
2262
+ #: app/features/fes/form.php:422 app/features/ix/import_f_calendar.php:42
2263
  #: app/features/ix/import_g_calendar.php:51
2264
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
2265
  #: app/libraries/skins.php:1389
2270
  #: app/features/events.php:2085 app/features/events.php:2167
2271
  #: app/features/events.php:2332 app/features/events.php:2376
2272
  #: app/features/events.php:2449 app/features/events.php:2566
2273
+ #: app/features/fes/form.php:453 app/features/fes/form.php:1072
2274
  #: app/features/occurrences.php:113 app/features/organizers.php:340
2275
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:134
2276
  msgid "Add"
2277
  msgstr "Добавить"
2278
 
2279
+ #: app/features/events.php:877 app/features/fes/form.php:456
2280
  #, fuzzy
2281
  #| msgid "Custom Days"
2282
  msgid "Custom Days Repeating"
2283
  msgstr "В указанные дни"
2284
 
2285
+ #: app/features/events.php:880 app/features/fes/form.php:459
2286
  msgid ""
2287
  "Add certain days to event occurrence dates. If you have a single day event, "
2288
  "start and end dates should be the same, If you have a multiple day event, "
2291
 
2292
  #: app/features/events.php:891 app/features/events.php:2105
2293
  #: app/features/events.php:2133 app/features/events.php:2347
2294
+ #: app/features/fes/form.php:438 app/libraries/skins.php:1392
2295
  msgid "End"
2296
  msgstr ""
2297
 
2298
+ #: app/features/events.php:968 app/features/fes/form.php:532
2299
  #, fuzzy
2300
  #| msgid "First name"
2301
  msgid "First"
2302
  msgstr "Имя"
2303
 
2304
+ #: app/features/events.php:1010 app/features/fes/form.php:574
2305
  #, fuzzy
2306
  #| msgid "second"
2307
  msgid "Second"
2308
  msgstr "секунда"
2309
 
2310
+ #: app/features/events.php:1052 app/features/fes/form.php:616
2311
  msgid "Third"
2312
  msgstr ""
2313
 
2314
+ #: app/features/events.php:1094 app/features/fes/form.php:658
2315
  msgid "Fourth"
2316
  msgstr ""
2317
 
2318
+ #: app/features/events.php:1136 app/features/fes/form.php:700
2319
  #, fuzzy
2320
  #| msgid "Last name"
2321
  msgid "Last"
2322
  msgstr "Фамилия"
2323
 
2324
+ #: app/features/events.php:1183 app/features/fes/form.php:746
2325
  msgid "Ends Repeat"
2326
  msgstr "Интервал повтора"
2327
 
2328
+ #: app/features/events.php:1195 app/features/fes/form.php:750
2329
  msgid "Never"
2330
  msgstr "Никогда"
2331
 
2332
+ #: app/features/events.php:1207 app/features/fes/form.php:755
2333
  msgid "On"
2334
  msgstr "Включить"
2335
 
2336
  #: app/features/events.php:1227 app/features/events.php:1231
2337
+ #: app/features/fes/form.php:764 app/features/fes/form.php:767
2338
  msgid "Occurrences times"
2339
  msgstr "Время наступления"
2340
 
2350
  "Событие будет закончено после определенного количества повторов. Например, "
2351
  "если вы укажите 10, событие будет закончено после 10 повторов."
2352
 
2353
+ #: app/features/events.php:1248 app/features/fes/form.php:781
2354
  msgid "Show only one occurrence of this event"
2355
  msgstr ""
2356
 
2357
+ #: app/features/events.php:1277 app/features/events.php:4195
2358
+ #: app/features/fes/form.php:867
2359
  #: app/features/mec/meta_boxes/search_form.php:116
2360
  #: app/features/mec/meta_boxes/search_form.php:204
2361
  #: app/features/mec/meta_boxes/search_form.php:292
2379
  #: app/features/mec/notifications.php:1511
2380
  #: app/features/mec/notifications.php:1628
2381
  #: app/features/mec/notifications.php:1778 app/features/mec/settings.php:870
2382
+ #: app/features/notifications.php:160 app/features/occurrences.php:511
2383
  #: app/libraries/main.php:7604 app/libraries/main.php:7651
2384
  #: app/widgets/single.php:122
2385
  msgid "Event Cost"
2386
  msgstr "Цена события"
2387
 
2388
+ #: app/features/events.php:1292 app/features/fes/form.php:879
2389
  msgid "Show the minimum price based on tickets"
2390
  msgstr ""
2391
 
2392
+ #: app/features/events.php:1300 app/features/fes/form.php:887
2393
  #: app/features/mec/settings.php:582 app/features/mec/settings.php:584
2394
  #: app/libraries/main.php:646
2395
  msgid "Currency"
2396
  msgstr "Валюта"
2397
 
2398
  #: app/features/events.php:1310 app/features/events.php:1315
2399
+ #: app/features/fes/form.php:897 app/features/fes/form.php:902
2400
  #: app/features/mec/settings.php:594 app/features/mec/settings.php:599
2401
  msgid "Currency Sign"
2402
  msgstr "Символ валюты"
2403
 
2404
+ #: app/features/events.php:1316 app/features/fes/form.php:903
2405
  #: app/features/mec/settings.php:600
2406
  msgid "Default value will be \"currency\" if you leave it empty."
2407
  msgstr "Значение по умолчанию будет \"currency\" если вы оставите поле пустым."
2408
 
2409
+ #: app/features/events.php:1323 app/features/fes/form.php:910
2410
  #: app/features/mec/settings.php:607
2411
  msgid "Currency Position"
2412
  msgstr "Валютная позиция"
2413
 
2414
+ #: app/features/events.php:1326 app/features/fes/form.php:913
2415
  #: app/features/mec/settings.php:610
2416
  #, fuzzy
2417
  #| msgid "Before $10"
2418
  msgid "$10 (Before)"
2419
  msgstr "до 10$"
2420
 
2421
+ #: app/features/events.php:1327 app/features/fes/form.php:914
2422
  #: app/features/mec/settings.php:611
2423
  msgid "$ 10 (Before with Space)"
2424
  msgstr ""
2425
 
2426
+ #: app/features/events.php:1328 app/features/fes/form.php:915
2427
  #: app/features/mec/settings.php:612
2428
  #, fuzzy
2429
  #| msgid "After"
2430
  msgid "10$ (After)"
2431
  msgstr "После"
2432
 
2433
+ #: app/features/events.php:1329 app/features/fes/form.php:916
2434
  #: app/features/mec/settings.php:613
2435
  msgid "10 $ (After with Space)"
2436
  msgstr ""
2437
 
2438
+ #: app/features/events.php:1334 app/features/fes/form.php:921
2439
  #: app/features/mec/settings.php:618
2440
  msgid "Thousand Separator"
2441
  msgstr "Разделитель тысячных"
2442
 
2443
+ #: app/features/events.php:1340 app/features/fes/form.php:927
2444
  #: app/features/mec/settings.php:624
2445
  msgid "Decimal Separator"
2446
  msgstr "Разделитель десятых"
2447
 
2448
+ #: app/features/events.php:1350 app/features/fes/form.php:937
2449
  #: app/features/mec/settings.php:634
2450
  msgid "No decimal"
2451
  msgstr "Без дробей."
2471
  msgid "Day 1"
2472
  msgstr ""
2473
 
2474
+ #: app/features/events.php:1498 app/features/fes/form.php:831
2475
+ #: app/features/mec/settings.php:864 app/features/occurrences.php:521
2476
  msgid "Event Links"
2477
  msgstr "Ссылки события"
2478
 
2479
  #: app/features/events.php:1501 app/features/events.php:1509
2480
+ #: app/features/fes/form.php:833 app/features/mec/settings.php:1173
2481
+ #: app/features/occurrences.php:523 app/libraries/main.php:7602
2482
  #: app/libraries/main.php:7649
2483
  msgid "Event Link"
2484
  msgstr "Ссылка события"
2485
 
2486
  #: app/features/events.php:1504 app/features/events.php:1522
2487
+ #: app/features/fes/form.php:834 app/features/fes/form.php:839
2488
+ #: app/features/occurrences.php:524 app/features/occurrences.php:529
2489
  msgid "eg. http://yoursite.com/your-event"
2490
  msgstr "Например: http://yoursite.com/your-event"
2491
 
2506
  msgid "URL Shortener"
2507
  msgstr ""
2508
 
2509
+ #: app/features/events.php:1525 app/features/fes/form.php:840
2510
+ #: app/features/occurrences.php:530
2511
  msgid "More Information"
2512
  msgstr "Дополнительная Информация"
2513
 
2514
+ #: app/features/events.php:1527 app/features/fes/form.php:842
2515
+ #: app/features/mec.php:1113 app/features/occurrences.php:532
2516
  #: app/features/popup/shortcode.php:481
2517
  msgid "Current Window"
2518
  msgstr ""
2519
 
2520
+ #: app/features/events.php:1528 app/features/fes/form.php:843
2521
+ #: app/features/mec