Modern Events Calendar Lite - Version 5.1.0

Version Description

5 February 2019 = - Added: Shortcode wizard - hard-refresh is required - Removed: Back button after payment in booking module (pro) - Fixed: Read more link in single event page - Fixed: An event link issue in map modules - Fixed: MEC widget and list view

Download this release

Release Info

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

Code changes from version 5.0.5 to 5.1.0

Files changed (51) hide show
  1. app/features/mec.php +19 -18
  2. app/features/mec/dashboard.php +1 -1
  3. app/features/mec/go-pro.php +51 -0
  4. app/features/mec/meta_boxes/display_options.php +7 -6
  5. app/features/mec/settings.php +8 -0
  6. app/features/mec/support.php +8 -8
  7. app/features/popup.php +239 -0
  8. app/features/popup/index.html +0 -0
  9. app/features/popup/shortcode.php +699 -0
  10. app/features/search.php +59 -45
  11. app/libraries/book.php +4 -4
  12. app/libraries/factory.php +6 -0
  13. app/libraries/main.php +4 -3
  14. app/libraries/notifications.php +17 -10
  15. app/modules/booking/steps/form.php +0 -1
  16. app/skins/available_spot/tpl.php +12 -14
  17. app/skins/carousel/render.php +2 -2
  18. app/skins/full_calendar.php +0 -1
  19. app/skins/grid/render.php +3 -1
  20. app/skins/list/render.php +3 -2
  21. app/skins/single.php +1 -1
  22. app/skins/single/default.php +1 -1
  23. app/skins/single/m1.php +1 -1
  24. app/skins/single/m2.php +1 -1
  25. app/skins/tile/render.php +8 -1
  26. app/widgets/MEC.php +6 -1
  27. assets/css/backend.css +913 -0
  28. assets/css/backend.min.css +1 -1
  29. assets/img/add-sh-icon.png +0 -0
  30. assets/img/popup/fifth-step.png +0 -0
  31. assets/img/popup/first-step.png +0 -0
  32. assets/img/popup/fourth-step.png +0 -0
  33. assets/img/popup/index.html +0 -0
  34. assets/img/popup/mec-logo.svg +15 -0
  35. assets/img/popup/popup-new-shortcode-plus.svg +3 -0
  36. assets/img/popup/popup-next-icon.svg +3 -0
  37. assets/img/popup/popup-prev-icon.svg +3 -0
  38. assets/img/popup/sixth-step.png +0 -0
  39. assets/js/jquery.nicescroll.min.js +2 -0
  40. assets/packages/lity/lity.min.js +1 -1
  41. changelog.txt +8 -1
  42. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  43. languages/modern-events-calendar-lite-cs_CZ.po +967 -864
  44. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  45. languages/modern-events-calendar-lite-de_DE.po +965 -865
  46. languages/modern-events-calendar-lite-en_US.mo +0 -0
  47. languages/modern-events-calendar-lite-en_US.po +941 -855
  48. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  49. languages/modern-events-calendar-lite-es_ES.po +967 -867
  50. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  51. languages/modern-events-calendar-lite-fr_FR.po +359 -478
app/features/mec.php CHANGED
@@ -102,7 +102,7 @@ class MEC_feature_mec extends MEC_base
102
  $this->factory->action('mec_booking_completed', array($this->notifications, 'email_verification'), 10);
103
  $this->factory->action('mec_booking_completed', array($this->notifications, 'booking_notification'), 11);
104
  $this->factory->action('mec_booking_completed', array($this->notifications, 'admin_notification'), 12);
105
- $this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10);
106
  $this->factory->action('mec_booking_canceled', array($this->notifications, 'booking_cancellation'), 12);
107
  $this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
108
  $this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
@@ -118,10 +118,11 @@ class MEC_feature_mec extends MEC_base
118
 
119
  // Disable Block Editor
120
  $gutenberg_status = (!isset($this->settings['gutenberg']) or (isset($this->settings['gutenberg']) and $this->settings['gutenberg'])) ? true : false;
121
- if($gutenberg_status):
122
- $this->factory->filter('gutenberg_can_edit_post_type', array($this, 'gutenberg'), 10, 2);
123
- $this->factory->filter('use_block_editor_for_post_type', array($this, 'gutenberg'), 10, 2);
124
- endif;
 
125
 
126
  // Export Settings
127
  $this->factory->action('wp_ajax_download_settings', array($this, 'download_settings'));
@@ -869,20 +870,20 @@ class MEC_feature_mec extends MEC_base
869
  */
870
  public function sed_method_field($skin, $value = 0, $image_popup = 0)
871
  {
872
- $image_popup_html = '
873
- <div class="mec-form-row mec-image-popup-wrap mec-switcher">
874
- <div class="mec-col-4">
875
- <label for="mec_skin_'.$skin.'_image_popup">'.__('Display content\'s images as Popup', 'modern-events-calendar-lite').'</label>
876
- </div>
877
- <div class="mec-col-4">
878
- <input type="hidden" name="mec[sk-options]['.$skin.'][image_popup]" value="0" />
879
- <input type="checkbox" name="mec[sk-options]['.$skin.'][image_popup]" id="mec_skin_'.$skin.'_image_popup" value="1"
880
- ';
881
- if( $image_popup == 1 ) $image_popup_html .= 'checked="checked"';
882
- $image_popup_html .= '/><label for="mec_skin_'.$skin.'_image_popup"></label>
883
- </div>
884
  </div>
885
- ';
 
886
  return '<div class="mec-form-row mec-sed-method-wrap">
887
  <div class="mec-col-4">
888
  <label for="mec_skin_'.$skin.'_sed_method">'.__('Single Event Display Method', 'modern-events-calendar-lite').'</label>
102
  $this->factory->action('mec_booking_completed', array($this->notifications, 'email_verification'), 10);
103
  $this->factory->action('mec_booking_completed', array($this->notifications, 'booking_notification'), 11);
104
  $this->factory->action('mec_booking_completed', array($this->notifications, 'admin_notification'), 12);
105
+ $this->factory->action('mec_booking_confirmed', array($this->notifications, 'booking_confirmation'), 10, 2);
106
  $this->factory->action('mec_booking_canceled', array($this->notifications, 'booking_cancellation'), 12);
107
  $this->factory->action('mec_fes_added', array($this->notifications, 'new_event'), 50, 3);
108
  $this->factory->action('mec_event_published', array($this->notifications, 'user_event_publishing'), 10, 3);
118
 
119
  // Disable Block Editor
120
  $gutenberg_status = (!isset($this->settings['gutenberg']) or (isset($this->settings['gutenberg']) and $this->settings['gutenberg'])) ? true : false;
121
+ if($gutenberg_status)
122
+ {
123
+ $this->factory->filter('gutenberg_can_edit_post_type', array($this, 'gutenberg'), 10, 2);
124
+ $this->factory->filter('use_block_editor_for_post_type', array($this, 'gutenberg'), 10, 2);
125
+ }
126
 
127
  // Export Settings
128
  $this->factory->action('wp_ajax_download_settings', array($this, 'download_settings'));
870
  */
871
  public function sed_method_field($skin, $value = 0, $image_popup = 0)
872
  {
873
+ $image_popup_html = '<div class="mec-form-row mec-image-popup-wrap mec-switcher">
874
+ <div class="mec-col-4">
875
+ <label for="mec_skin_'.$skin.'_image_popup">'.__('Display content\'s images as Popup', 'modern-events-calendar-lite').'</label>
876
+ </div>
877
+ <div class="mec-col-4">
878
+ <input type="hidden" name="mec[sk-options]['.$skin.'][image_popup]" value="0" />
879
+ <input type="checkbox" name="mec[sk-options]['.$skin.'][image_popup]" id="mec_skin_'.$skin.'_image_popup" value="1"';
880
+
881
+ if($image_popup == 1) $image_popup_html .= 'checked="checked"';
882
+
883
+ $image_popup_html .= '/><label for="mec_skin_'.$skin.'_image_popup"></label>
 
884
  </div>
885
+ </div>';
886
+
887
  return '<div class="mec-form-row mec-sed-method-wrap">
888
  <div class="mec-col-4">
889
  <label for="mec_skin_'.$skin.'_sed_method">'.__('Single Event Display Method', 'modern-events-calendar-lite').'</label>
app/features/mec/dashboard.php CHANGED
@@ -95,7 +95,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
95
  <p>
96
  <?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
97
  </p>
98
- <a class="info-msg-link" href="https://webnus.net/mec-purchase/" target="_blank">
99
  <?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
100
  </a>
101
  <div class="info-msg-coupon">
95
  <p>
96
  <?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
97
  </p>
98
+ <a class="info-msg-link" href="https://webnus.net/mec-purchase/?ref=17/" target="_blank">
99
  <?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
100
  </a>
101
  <div class="info-msg-coupon">
app/features/mec/go-pro.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+ ?>
5
+ <div id="webnus-dashboard" class="wrap about-wrap mec-addons">
6
+ <div class="welcome-head w-clearfix">
7
+ <div class="w-row">
8
+ <div class="w-col-sm-9">
9
+ <h1> <?php echo __('Go Pro', 'modern-events-calendar-lite'); ?> </h1>
10
+ </div>
11
+ <div class="w-col-sm-3">
12
+ <img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/mec-logo-w.png'; ?>" />
13
+ <span class="w-theme-version"><?php echo __('Version', 'modern-events-calendar-lite'); ?> <?php echo MEC_VERSION; ?></span>
14
+ </div>
15
+ </div>
16
+ </div>
17
+ <div class="welcome-content w-clearfix extra">
18
+ <div class="w-row mec-pro-notice">
19
+ <div class="w-col-sm-12">
20
+ <div class="info-msg">
21
+ <p>
22
+ <?php echo sprintf(__("You're using %s version of Modern Events Calendar. To use advanced booking system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available Spots, etc you should upgrade to the Pro version.", 'modern-events-calendar-lite'), '<strong>'.__('lite', 'modern-events-calendar-lite').'</strong>'); ?>
23
+ </p>
24
+ <a class="info-msg-link" href="https://webnus.net/mec-purchase/?ref=17/" target="_blank">
25
+ <?php esc_html_e('GO PREMIUM', 'modern-events-claendar-lite'); ?>
26
+ </a>
27
+ <div class="info-msg-coupon">
28
+ <?php echo sprintf(__("Easily get a discount coupon by rating us on %s or following and reposting us on social media. Just send a screenshot to %s and you'll receive the %s", 'modern-events-calendar-lite'), '<a href="https://wordpress.org/plugins/modern-events-calendar-lite/#reviews" target="_blank">'.__('WordPress', 'modern-events-calendar-lite').'</a>', '<a href="mailto:sales@webnus.net" target="_blank">sales@webnus.net</a>','<strong>'.__('Copouns!', 'modern-events-calendar-lite').'</strong>'); ?>
29
+ </div>
30
+ <div class="socialfollow">
31
+ <a target="_blank" href="https://www.facebook.com/WebnusCo/" class="facebook">
32
+ <i class="mec-sl-social-facebook"></i>
33
+ </a>
34
+ <a target="_blank" href="https://twitter.com/webnus" class="twitter">
35
+ <i class="mec-sl-social-twitter"></i>
36
+ </a>
37
+ <a target="_blank" href="https://www.instagram.com/webnus/" class="instagram">
38
+ <i class="mec-sl-social-instagram"></i>
39
+ </a>
40
+ <a target="_blank" href="https://www.youtube.com/channel/UCmQ-VeVK7nLR3bGpAkSYB1Q" class="youtube">
41
+ <i class="mec-sl-social-youtube"></i>
42
+ </a>
43
+ <a target="_blank" href="https://dribbble.com/Webnus" class="dribbble">
44
+ <i class="mec-sl-social-dribbble"></i>
45
+ </a>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </div>
app/features/mec/meta_boxes/display_options.php CHANGED
@@ -5,6 +5,7 @@ defined('MECEXEC') or die();
5
  // Fix conflict between ACF and niceSelect
6
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
7
  if(is_plugin_active('advanced-custom-fields/acf.php')) remove_action('admin_footer', 'acf_enqueue_uploader', 5);
 
8
 
9
  // Skin Options
10
  $skins = $this->main->get_skins();
@@ -1221,14 +1222,14 @@ $events = $this->main->get_events();
1221
  <label class="mec-col-4" for="mec_skin_carousel_autoplay"><?php _e('Auto Play Time', 'modern-events-calendar-lite'); ?></label>
1222
  <input class="mec-col-4" type="number" name="mec[sk-options][carousel][autoplay]" id="mec_skin_carousel_autoplay" placeholder="<?php _e('eg. 3000 default is 3 second', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_carousel['autoplay']) && $sk_options_carousel['autoplay'] != '' ) echo $sk_options_carousel['autoplay']; ?>" />
1223
  </div>
1224
- </div>
1225
- <div class="mec-form-row mec-carousel-archive-link">
1226
- <label class="mec-col-4" for="mec_skin_carousel_archive_link"><?php _e('Archive Link', 'modern-events-calendar-lite'); ?></label>
1227
  <input type="text" class="mec-col-4" name="mec[sk-options][carousel][archive_link]" id="mec_skin_carousel_archive_link" value="<?php echo ((isset($sk_options_carousel['archive_link']) and trim($sk_options_carousel['archive_link']) != '') ? $sk_options_carousel['archive_link'] : ''); ?>" />
1228
- </div>
1229
- <div class="mec-form-row mec-carousel-head-text">
1230
- <label class="mec-col-4" for="mec_skin_carousel_head_text"><?php _e('Head Text', 'modern-events-calendar-lite'); ?></label>
1231
  <input type="text" class="mec-col-4" name="mec[sk-options][carousel][head_text]" id="mec_skin_carousel_head_text" value="<?php echo ((isset($sk_options_carousel['head_text']) and trim($sk_options_carousel['head_text']) != '') ? $sk_options_carousel['head_text'] : ''); ?>" />
 
1232
  </div>
1233
 
1234
  <!-- Slider View -->
5
  // Fix conflict between ACF and niceSelect
6
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
7
  if(is_plugin_active('advanced-custom-fields/acf.php')) remove_action('admin_footer', 'acf_enqueue_uploader', 5);
8
+ if(is_plugin_active('advanced-custom-fields-pro/acf.php')) remove_action('admin_footer', 'acf_enqueue_uploader', 5);
9
 
10
  // Skin Options
11
  $skins = $this->main->get_skins();
1222
  <label class="mec-col-4" for="mec_skin_carousel_autoplay"><?php _e('Auto Play Time', 'modern-events-calendar-lite'); ?></label>
1223
  <input class="mec-col-4" type="number" name="mec[sk-options][carousel][autoplay]" id="mec_skin_carousel_autoplay" placeholder="<?php _e('eg. 3000 default is 3 second', 'modern-events-calendar-lite'); ?>" value="<?php if(isset($sk_options_carousel['autoplay']) && $sk_options_carousel['autoplay'] != '' ) echo $sk_options_carousel['autoplay']; ?>" />
1224
  </div>
1225
+ <div class="mec-form-row mec-carousel-archive-link">
1226
+ <label class="mec-col-4" for="mec_skin_carousel_archive_link"><?php _e('Archive Link', 'modern-events-calendar-lite'); ?></label>
 
1227
  <input type="text" class="mec-col-4" name="mec[sk-options][carousel][archive_link]" id="mec_skin_carousel_archive_link" value="<?php echo ((isset($sk_options_carousel['archive_link']) and trim($sk_options_carousel['archive_link']) != '') ? $sk_options_carousel['archive_link'] : ''); ?>" />
1228
+ </div>
1229
+ <div class="mec-form-row mec-carousel-head-text">
1230
+ <label class="mec-col-4" for="mec_skin_carousel_head_text"><?php _e('Head Text', 'modern-events-calendar-lite'); ?></label>
1231
  <input type="text" class="mec-col-4" name="mec[sk-options][carousel][head_text]" id="mec_skin_carousel_head_text" value="<?php echo ((isset($sk_options_carousel['head_text']) and trim($sk_options_carousel['head_text']) != '') ? $sk_options_carousel['head_text'] : ''); ?>" />
1232
+ </div>
1233
  </div>
1234
 
1235
  <!-- Slider View -->
app/features/mec/settings.php CHANGED
@@ -217,6 +217,14 @@ $get_n_option = get_option('mec_addons_notification_option');
217
  </span>
218
  </div>
219
  </div>
 
 
 
 
 
 
 
 
220
 
221
  </div>
222
 
217
  </span>
218
  </div>
219
  </div>
220
+
221
+ <div class="mec-form-row">
222
+ <label class="mec-col-3" for="mec_settings_sh_as_popup"><?php _e('Open "Add Shortcode" as Popup', 'modern-events-calendar-lite'); ?></label>
223
+ <label id="mec_settings_sh_as_popup" >
224
+ <input type="hidden" name="mec[settings][sh_as_popup]" value="0" />
225
+ <input value="1" type="checkbox" name="mec[settings][sh_as_popup]" <?php if(!isset($settings['sh_as_popup']) or (isset($settings['sh_as_popup']) and $settings['sh_as_popup'])) echo 'checked="checked"'; ?> /> <?php _e('Enable', 'modern-events-calendar-lite'); ?>
226
+ </label>
227
+ </div>
228
 
229
  </div>
230
 
app/features/mec/support.php CHANGED
@@ -123,9 +123,9 @@ defined('MECEXEC') or die();
123
  <?php endif; ?>
124
  <div class="w-button">
125
  <?php if(!$this->getPRO()): ?>
126
- <a href="https://webnus.net/mec-purchase/" target="_blank"><?php echo esc_html__('GO PREMIUM', 'modern-events-calendar-lite'); ?></a>
127
  <?php else: ?>
128
- <a href="https://webnus.ticksy.com/" target="_blank"><?php echo esc_html__('OPEN A TICKET', 'modern-events-calendar-lite'); ?></a>
129
  <?php endif; ?>
130
  </div>
131
  </div>
@@ -139,12 +139,12 @@ defined('MECEXEC') or die();
139
  </div>
140
  <div class="w-box-content">
141
  <ul>
142
- <li><a href="https://webnus.ticksy.com/article/8597/"><?php _e('How to create a new event?', 'modern-events-calendar-lite'); ?></a></li>
143
- <li><a href="https://webnus.ticksy.com/article/8600/"><?php _e("Booking module doesn't work", 'modern-events-calendar-lite'); ?></a></li>
144
- <li><a href="https://webnus.ticksy.com/article/8601/"><?php _e("How to export events in iCal format?", 'modern-events-calendar-lite'); ?></a></li>
145
- <li><a href="https://webnus.ticksy.com/article/8603/"><?php _e("How to override MEC template files?", 'modern-events-calendar-lite'); ?></a></li>
146
- <li><a href="https://webnus.ticksy.com/article/8599/"><?php _e("How to add/manage shortcodes?", 'modern-events-calendar-lite'); ?></a></li>
147
- <li class="mec-view-all-articles"><a href="https://webnus.ticksy.com/articles/100004962/"><?php _e("All Articles", 'modern-events-calendar-lite'); ?></a></li>
148
  </ul>
149
  </div>
150
  </div>
123
  <?php endif; ?>
124
  <div class="w-button">
125
  <?php if(!$this->getPRO()): ?>
126
+ <a href="https://webnus.net/mec-purchase/?ref=17/" target="_blank"><?php echo esc_html__('GO PREMIUM', 'modern-events-calendar-lite'); ?></a>
127
  <?php else: ?>
128
+ <a href="https://webnus.net/support/" target="_blank"><?php echo esc_html__('OPEN A TICKET', 'modern-events-calendar-lite'); ?></a>
129
  <?php endif; ?>
130
  </div>
131
  </div>
139
  </div>
140
  <div class="w-box-content">
141
  <ul>
142
+ <li><a href="https://webnus.net/dox/modern-events-calendar/add-event/"><?php _e('How to create a new event?', 'modern-events-calendar-lite'); ?></a></li>
143
+ <li><a href="https://webnus.net/dox/modern-events-calendar/booking-system-and-register-button-configurations-in-mec-plugin/"><?php _e("Booking module doesn't work", 'modern-events-calendar-lite'); ?></a></li>
144
+ <li><a href="https://webnus.net/dox/modern-events-calendar/how-to-export-events-in-ical-format/"><?php _e("How to export events in iCal format?", 'modern-events-calendar-lite'); ?></a></li>
145
+ <li><a href="https://webnus.net/dox/modern-events-calendar/category/developer-document/"><?php _e("How to override MEC template files?", 'modern-events-calendar-lite'); ?></a></li>
146
+ <li><a href="https://webnus.net/dox/modern-events-calendar/making-advance-shortcodes-in-modern-event-calendar/"><?php _e("How to add/manage shortcodes?", 'modern-events-calendar-lite'); ?></a></li>
147
+ <li class="mec-view-all-articles"><a href="https://webnus.net/dox/modern-events-calendar/category/knowledge/"><?php _e("All Articles", 'modern-events-calendar-lite'); ?></a></li>
148
  </ul>
149
  </div>
150
  </div>
app/features/popup.php ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ /**
6
+ * @author Webnus <info@webnus.biz>
7
+ */
8
+ class MEC_feature_popup extends MEC_base
9
+ {
10
+ public $factory;
11
+ public $main;
12
+
13
+ /**
14
+ * Constructor method
15
+ * @author Webnus <info@webnus.biz>
16
+ */
17
+ public function __construct()
18
+ {
19
+ // Import MEC Factory
20
+ $this->factory = $this->getFactory();
21
+
22
+ // Import MEC Main
23
+ $this->main = $this->getMain();
24
+ }
25
+
26
+ /**
27
+ * Initialize popup feature
28
+ * @author Webnus <info@webnus.biz>
29
+ */
30
+ public function init()
31
+ {
32
+ // Shortcode Popup
33
+ $this->factory->action('restrict_manage_posts', array($this, 'add_shortcode_popup'));
34
+
35
+ // Shortcode Save
36
+ $this->factory->action('wp_ajax_mec_popup_shortcode', array($this, 'shortcode_save'));
37
+ }
38
+
39
+ public function add_shortcode_popup($post_type)
40
+ {
41
+ if($post_type != $this->main->get_shortcode_post_type()) return;
42
+
43
+ $path = MEC::import('app.features.popup.shortcode', true, true);
44
+ include $path;
45
+ }
46
+
47
+ public function shortcode_save()
48
+ {
49
+ // Security Nonce
50
+ $wpnonce = isset($_POST['_mecnonce']) ? $_POST['_mecnonce'] : NULL;
51
+
52
+ // Check if our nonce is set.
53
+ if(!trim($wpnonce)) $this->main->response(array('success'=>0, 'code'=>'NONCE_MISSING'));
54
+
55
+ // Verify that the nonce is valid.
56
+ if(!wp_verify_nonce($wpnonce, 'mec_shortcode_popup')) $this->main->response(array('success'=>0, 'code'=>'NONCE_IS_INVALID'));
57
+
58
+ $params = (isset($_POST['shortcode']) and is_array($_POST['shortcode'])) ? $_POST['shortcode'] : array();
59
+
60
+ $skin = isset($params['skin']) ? $params['skin'] : 'list';
61
+ $title = isset($params['name']) ? $params['name'] : ucwords(str_replace('_', ' ', $skin));
62
+
63
+ $show_past_events = isset($params['show_past_events']) ? $params['show_past_events'] : 1;
64
+ $show_only_past_events = isset($params['show_only_past_events']) ? $params['show_only_past_events'] : 0;
65
+ $show_only_ongoing_events = isset($params['show_only_ongoing_events']) ? $params['show_only_ongoing_events'] : 0;
66
+
67
+ $sed = isset($params['sed']) ? $params['sed'] : 0;
68
+ $style = isset($params['style']) ? $params['style'] : 'clean';
69
+ $event = isset($params['event']) ? $params['event'] : 0;
70
+
71
+ $skin_options = array(
72
+ 'list' => array(
73
+ 'style' => $style,
74
+ 'start_date_type' => 'today',
75
+ 'start_date' => '',
76
+ 'maximum_date_range' => '',
77
+ 'include_events_times' => 0,
78
+ 'load_more_button' => 1,
79
+ 'month_divider' => 1,
80
+ 'map_on_top' => 0,
81
+ 'set_geolocation' => 0,
82
+ 'toggle_month_divider' => 0,
83
+ ),
84
+ 'grid' => array(
85
+ 'style' => $style,
86
+ 'start_date_type' => 'today',
87
+ 'start_date' => '',
88
+ 'maximum_date_range' => '',
89
+ 'count' => 3,
90
+ 'load_more_button' => 1,
91
+ 'map_on_top' => 0,
92
+ 'set_geolocation' => 0,
93
+ ),
94
+ 'agenda' => array(
95
+ 'style' => $style,
96
+ 'start_date_type' => 'today',
97
+ 'start_date' => '',
98
+ 'maximum_date_range' => '',
99
+ 'month_divider' => 1,
100
+ 'load_more_button' => 1,
101
+ ),
102
+ 'full_calendar' => array(
103
+ 'start_date_type' => 'start_current_month',
104
+ 'default_view' => 'list',
105
+ 'monthly_style' => $style,
106
+ 'list' => 1,
107
+ 'yearly' => 0,
108
+ 'monthly' => 1,
109
+ 'weekly' => 1,
110
+ 'daily' => 1,
111
+ 'display_price' => 0,
112
+ ),
113
+ 'yearly_view' => array(
114
+ 'style' => $style,
115
+ 'start_date_type' => 'start_current_year',
116
+ 'start_date' => '',
117
+ 'next_previous_button' => 1,
118
+ ),
119
+ 'monthly_view' => array(
120
+ 'style' => $style,
121
+ 'start_date_type' => 'start_current_month',
122
+ 'start_date' => '',
123
+ 'next_previous_button' => 1,
124
+ ),
125
+ 'map' => array(
126
+ 'start_date_type' => 'today',
127
+ 'start_date' => '',
128
+ 'limit' => 200,
129
+ 'geolocation' => 0,
130
+ ),
131
+ 'daily_view' => array(
132
+ 'start_date_type' => 'today',
133
+ 'start_date' => '',
134
+ 'next_previous_button' => 1,
135
+ ),
136
+ 'weekly_view' => array(
137
+ 'start_date_type' => 'start_current_week',
138
+ 'start_date' => '',
139
+ 'next_previous_button' => 1,
140
+ ),
141
+ 'timetable' => array(
142
+ 'style' => $style,
143
+ 'start_date_type' => 'start_current_week',
144
+ 'start_date' => '',
145
+ 'number_of_days' => 5,
146
+ 'week_start' => -1,
147
+ 'start_time' => 8,
148
+ 'end_time' => 20,
149
+ 'next_previous_button' => 1,
150
+ ),
151
+ 'masonry' => array(
152
+ 'start_date_type' => 'today',
153
+ 'start_date' => '',
154
+ 'maximum_date_range' => '',
155
+ 'filter_by' => '',
156
+ 'fit_to_row' => 0,
157
+ 'masonry_like_grid' => 0,
158
+ 'load_more_button' => 1,
159
+ ),
160
+ 'cover' => array(
161
+ 'style' => $style,
162
+ 'event_id' => $event,
163
+ ),
164
+ 'countdown' => array(
165
+ 'style' => $style,
166
+ 'event_id' => $event,
167
+ ),
168
+ 'available_spot' => array(
169
+ 'event_id' => $event,
170
+ ),
171
+ 'carousel' => array(
172
+ 'style' => $style,
173
+ 'start_date_type' => 'today',
174
+ 'start_date' => '',
175
+ 'count' => 3,
176
+ 'autoplay' => 1,
177
+ ),
178
+ 'slider' => array(
179
+ 'style' => $style,
180
+ 'start_date_type' => 'today',
181
+ 'start_date' => '',
182
+ 'autoplay' => 1,
183
+ ),
184
+ 'timeline' => array(
185
+ 'start_date_type' => 'today',
186
+ 'start_date' => '',
187
+ 'maximum_date_range' => '',
188
+ 'load_more_button' => 1,
189
+ 'month_divider' => 0,
190
+ ),
191
+ 'tile' => array(
192
+ 'start_date_type' => 'start_current_month',
193
+ 'start_date' => '',
194
+ 'count' => 4,
195
+ 'next_previous_button' => 1,
196
+ ),
197
+ );
198
+
199
+ $sk = isset($skin_options[$skin]) ? $skin_options[$skin] : array('style' => $style, 'start_date_type' => 'today', 'start_date' => '');
200
+
201
+ $sk['sed_method'] = $sed;
202
+ $sk['image_popup'] = 0;
203
+
204
+ $sf = array();
205
+ $sf_status = 0;
206
+
207
+ if($skin == 'full_calendar')
208
+ {
209
+ $sf = array('month_filter'=>array('type'=>'dropdown'), 'text_search'=>array('type'=>'text_input'));
210
+ $sf_status = 1;
211
+ }
212
+
213
+ // Create Default Calendars
214
+ $metas = array(
215
+ 'label' => '',
216
+ 'category' => '',
217
+ 'location' => '',
218
+ 'organizer' => '',
219
+ 'tag' => '',
220
+ 'author' => '',
221
+ 'skin' => $skin,
222
+ 'sk-options' => array(
223
+ $skin => $sk
224
+ ),
225
+ 'sf-options' => array($skin => $sf),
226
+ 'sf_status' => $sf_status,
227
+ 'show_past_events' => $show_past_events,
228
+ 'show_only_past_events' => $show_only_past_events,
229
+ 'show_only_ongoing_events' => $show_only_ongoing_events,
230
+ );
231
+
232
+ $post = array('post_title'=>$title, 'post_content'=>'', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
233
+ $post_id = wp_insert_post($post);
234
+
235
+ foreach($metas as $key=>$value) update_post_meta($post_id, $key, $value);
236
+
237
+ $this->main->response(array('success'=>1, 'id'=>$post_id));
238
+ }
239
+ }
app/features/popup/index.html ADDED
File without changes
app/features/popup/shortcode.php ADDED
@@ -0,0 +1,699 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /** no direct access **/
3
+ defined('MECEXEC') or die();
4
+
5
+ // MEC Skins
6
+ $skins = $this->main->get_skins();
7
+
8
+ // MEC Events
9
+ $events = $this->main->get_events();
10
+
11
+ // MEC Settings
12
+ $settings = $this->main->get_settings();
13
+ ?>
14
+ <div id="mec_popup_shortcode" class="lity-hide">
15
+ <div class="mec-steps-container">
16
+ <img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/popup/mec-logo.svg'; ?>" />
17
+ <ul>
18
+ <li class="mec-step mec-step-1"><span>1</span></li>
19
+ <li class="mec-step mec-step-2"><span>2</span></li>
20
+ <li class="mec-step mec-step-3"><span>3</span></li>
21
+ <li class="mec-step mec-step-4"><span>4</span></li>
22
+ <li class="mec-step mec-step-5"><span>5</span></li>
23
+ <li class="mec-step mec-step-6"><span>6</span></li>
24
+ </ul>
25
+ </div>
26
+ <div class="mec-steps-panel">
27
+ <div id="mec_popup_shortcode_form">
28
+ <div class="mec-steps-content-container">
29
+ <div class="mec-steps-header">
30
+ <div class="mec-steps-header-userinfo">
31
+ <?php $user = wp_get_current_user(); ?>
32
+ <span class="mec-steps-header-img"><img src="<?php echo esc_url( get_avatar_url( $user->ID ) ); ?>" /></span>
33
+ <span class="mec-steps-header-name"><?php echo $user->display_name ; ?></span>
34
+ <span class="mec-steps-header-add-text"><?php esc_html_e('Adding a Shortcode...', 'modern-events-calendar-lite') ?></span>
35
+ </div>
36
+ <div class="mec-steps-header-settings">
37
+ <a href="<?php echo admin_url( 'admin.php?page=MEC-settings' ); ?>"><i class="mec-sl-settings"></i><?php esc_html_e('Settings', 'modern-events-calendar-lite'); ?></a>
38
+ </div>
39
+ </div>
40
+ <div class="mec-steps-content mec-steps-content-1">
41
+ <?php wp_nonce_field('mec_shortcode_popup', '_mecnonce'); ?>
42
+ <input type="text" name="shortcode[name]" placeholder="<?php esc_attr_e('Shortcode Name', 'modern-events-calendar-lite'); ?>" id="mec_shortcode_name">
43
+ <p class="popup-sh-name-required"><?php esc_html_e('Shortcode name is required', 'modern-events-calendar-lite'); ?></p>
44
+ </div>
45
+ <div class="mec-steps-content mec-steps-content-2">
46
+ <ul>
47
+ <?php foreach($skins as $skin=>$name): ?>
48
+ <li>
49
+ <label>
50
+ <div class="mec-step-popup-skin-img">
51
+ <img src="https://webnus.net/modern-events-calendar/wp-content/skins/<?php echo str_replace('_view', '', $skin); ?>.svg" />
52
+ </div>
53
+ <div class="mec-step-popup-skin-text">
54
+ <?php echo $name; ?>
55
+ <input type="radio" class="mec-skins" name="shortcode[skin]" value="<?php echo $skin; ?>">
56
+ </div>
57
+ </label>
58
+ </li>
59
+ <?php endforeach; ?>
60
+ </ul>
61
+ </div>
62
+ <div class="mec-steps-content mec-steps-content-3">
63
+ <div class="mec-styles-wrapper">
64
+ <div class="mec-skin-styles mec-styles-list">
65
+ <label class="active">
66
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/list-classic.jpg" /></span>
67
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="classic">
68
+ <div><?php _e('Classic', 'modern-events-calendar-lite'); ?></div>
69
+ </label>
70
+ <label>
71
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/list-minimal.jpg" /></span>
72
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="minimal">
73
+ <div><?php _e('Minimal', 'modern-events-calendar-lite'); ?></div>
74
+ </label>
75
+ <label>
76
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/list-modern.jpg" /></span>
77
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="modern">
78
+ <div><?php _e('Modern', 'modern-events-calendar-lite'); ?></div>
79
+ </label>
80
+ <label>
81
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/list-standard.jpg" /></span>
82
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="standard">
83
+ <div><?php _e('Standard', 'modern-events-calendar-lite'); ?></div>
84
+ </label>
85
+ <label>
86
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/list-toggle.jpg" /></span>
87
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="accordion">
88
+ <div><?php _e('Accordion', 'modern-events-calendar-lite'); ?></div>
89
+ </label>
90
+ </div>
91
+ <div class="mec-skin-styles mec-styles-grid">
92
+ <label class="active">
93
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-classic.jpg" /></span>
94
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="classic">
95
+ <div><?php _e('Classic', 'modern-events-calendar-lite'); ?></div>
96
+ </label>
97
+ <label>
98
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-clean.jpg" /></span>
99
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="clean">
100
+ <div><?php _e('Clean', 'modern-events-calendar-lite'); ?></div>
101
+ </label>
102
+ <label>
103
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-minimal.jpg" /></span>
104
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="minimal">
105
+ <div><?php _e('Minimal', 'modern-events-calendar-lite'); ?></div>
106
+ </label>
107
+ <label>
108
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-modern.jpg" /></span>
109
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="modern">
110
+ <div><?php _e('Modern', 'modern-events-calendar-lite'); ?></div>
111
+ </label>
112
+ <label>
113
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-simple.jpg" /></span>
114
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="simple">
115
+ <div><?php _e('Simple', 'modern-events-calendar-lite'); ?></div>
116
+ </label>
117
+ <label>
118
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-colorful.jpg" /></span>
119
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="colorful">
120
+ <div><?php _e('Colorful', 'modern-events-calendar-lite'); ?></div>
121
+ </label>
122
+ <label>
123
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/grid-novel.jpg" /></span>
124
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="novel">
125
+ <div><?php _e('Novel', 'modern-events-calendar-lite'); ?></div>
126
+ </label>
127
+ </div>
128
+ <div class="mec-skin-styles mec-styles-agenda">
129
+ <label class="active">
130
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/agenda-clean.jpg" /></span>
131
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="clean">
132
+ <div><?php _e('Clean', 'modern-events-calendar-lite'); ?></div>
133
+ </label>
134
+ </div>
135
+ <div class="mec-skin-styles mec-styles-full_calendar">
136
+ <h3><?php _e('Monthly Style', 'modern-events-calendar-lite'); ?></h3>
137
+ <label class="active">
138
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-clean.jpg" /></span>
139
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="clean">
140
+ <div><?php _e('Clean', 'modern-events-calendar-lite'); ?></div>
141
+ </label>
142
+ <label>
143
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-novel.jpg" /></span>
144
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="novel">
145
+ <div><?php _e('Novel', 'modern-events-calendar-lite'); ?></div>
146
+ </label>
147
+ <label>
148
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-simple.jpg" /></span>
149
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="simple">
150
+ <div><?php _e('Simple', 'modern-events-calendar-lite'); ?></div>
151
+ </label>
152
+ </div>
153
+ <div class="mec-skin-styles mec-styles-yearly_view">
154
+ <label class="active">
155
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/yearly-modern.jpg" /></span>
156
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="modern">
157
+ <div><?php _e('Modern', 'modern-events-calendar-lite'); ?></div>
158
+ </label>
159
+ </div>
160
+ <div class="mec-skin-styles mec-styles-monthly_view">
161
+ <label class="active">
162
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-classic.jpg" /></span>
163
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="classic">
164
+ <div><?php _e('Classic', 'modern-events-calendar-lite'); ?></div>
165
+ </label>
166
+ <label>
167
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-clean.jpg" /></span>
168
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="clean">
169
+ <div><?php _e('Clean', 'modern-events-calendar-lite'); ?></div>
170
+ </label>
171
+ <label>
172
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-modern.jpg" /></span>
173
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="modern">
174
+ <div><?php _e('Modern', 'modern-events-calendar-lite'); ?></div>
175
+ </label>
176
+ <label>
177
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-novel.jpg" /></span>
178
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="novel">
179
+ <div><?php _e('Novel', 'modern-events-calendar-lite'); ?></div>
180
+ </label>
181
+ <label>
182
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/monthly-simple.jpg" /></span>
183
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="simple">
184
+ <div><?php _e('Simple', 'modern-events-calendar-lite'); ?></div>
185
+ </label>
186
+ </div>
187
+ <div class="mec-skin-styles mec-styles-map">
188
+ </div>
189
+ <div class="mec-skin-styles mec-styles-daily_view">
190
+ </div>
191
+ <div class="mec-skin-styles mec-styles-weekly_view">
192
+ </div>
193
+ <div class="mec-skin-styles mec-styles-timetable">
194
+ <label class="active">
195
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/timetable-modern.jpg" /></span>
196
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="modern">
197
+ <div><?php _e('Modern', 'modern-events-calendar-lite'); ?></div>
198
+ </label>
199
+ <label>
200
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/timetable-clean.jpg" /></span>
201
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="clean">
202
+ <div><?php _e('Clean', 'modern-events-calendar-lite'); ?></div>
203
+ </label>
204
+ </div>
205
+ <div class="mec-skin-styles mec-styles-masonry">
206
+ </div>
207
+ <div class="mec-skin-styles mec-styles-cover">
208
+ <label class="active">
209
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/cover-classic.jpg" /></span>
210
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="classic">
211
+ <div><?php _e('Classic', 'modern-events-calendar-lite'); ?></div>
212
+ </label>
213
+ <label>
214
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/cover-clean.jpg" /></span>
215
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="clean">
216
+ <div><?php _e('Clean', 'modern-events-calendar-lite'); ?></div>
217
+ </label>
218
+ <label>
219
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/cover-modern.jpg" /></span>
220
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="modern">
221
+ <div><?php _e('Modern', 'modern-events-calendar-lite'); ?></div>
222
+ </label>
223
+ </div>
224
+ <div class="mec-skin-styles mec-styles-countdown">
225
+ <label class="active">
226
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/countdown-type1.jpg" /></span>
227
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="style1">
228
+ <div><?php _e('Style 1', 'modern-events-calendar-lite'); ?></div>
229
+ </label>
230
+ <label>
231
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/countdown-type2.jpg" /></span>
232
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="style2">
233
+ <div><?php _e('Style 2', 'modern-events-calendar-lite'); ?></div>
234
+ </label>
235
+ <label>
236
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/countdown-type3.jpg" /></span>
237
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="style3">
238
+ <div><?php _e('Style 3', 'modern-events-calendar-lite'); ?></div>
239
+ </label>
240
+ </div>
241
+ <div class="mec-skin-styles mec-styles-available_spot">
242
+ </div>
243
+ <div class="mec-skin-styles mec-styles-carousel">
244
+ <label class="active">
245
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/carousel-type1.jpg" /></span>
246
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="type1">
247
+ <div><?php _e('Type 1', 'modern-events-calendar-lite'); ?></div>
248
+ </label>
249
+ <label>
250
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/carousel-type2.jpg" /></span>
251
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="type2">
252
+ <div><?php _e('Type 2', 'modern-events-calendar-lite'); ?></div>
253
+ </label>
254
+ <label>
255
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/carousel-type3.jpg" /></span>
256
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="type3">
257
+ <div><?php _e('Type 3', 'modern-events-calendar-lite'); ?></div>
258
+ </label>
259
+ <label>
260
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/carousel-type4.jpg" /></span>
261
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="type4">
262
+ <div><?php _e('Type 4', 'modern-events-calendar-lite'); ?></div>
263
+ </label>
264
+ </div>
265
+ <div class="mec-skin-styles mec-styles-slider">
266
+ <label class="active">
267
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/slider-type1.jpg" /></span>
268
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="t1">
269
+ <div><?php _e('Type 1', 'modern-events-calendar-lite'); ?></div>
270
+ </label>
271
+ <label>
272
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/slider-type2.jpg" /></span>
273
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="t2">
274
+ <div><?php _e('Type 2', 'modern-events-calendar-lite'); ?></div>
275
+ </label>
276
+ <label>
277
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/slider-type3.jpg" /></span>
278
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="t3">
279
+ <div><?php _e('Type 3', 'modern-events-calendar-lite'); ?></div>
280
+ </label>
281
+ <label>
282
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/slider-type4.jpg" /></span>
283
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="t4">
284
+ <div><?php _e('Type 4', 'modern-events-calendar-lite'); ?></div>
285
+ </label>
286
+ <label>
287
+ <span class="wn-hover-img-sh"><img src="https://webnus.net/modern-events-calendar/wp-content/skins/popup/slider-type5.jpg" /></span>
288
+ <input type="radio" name="shortcode[style]" class="mec-styles" value="t5">
289
+ <div><?php _e('Type 5', 'modern-events-calendar-lite'); ?></div>
290
+ </label>
291
+ </div>
292
+ <div class="mec-skin-styles mec-styles-timeline">
293
+ </div>
294
+ <div class="mec-skin-styles mec-styles-tile">
295
+ </div>
296
+ </div>
297
+ </div>
298
+ <div class="mec-steps-content mec-steps-content-4">
299
+ <div class="mec-multiple-skin-options">
300
+ <h3><?php _e('Single Event Display Method', 'modern-events-calendar-lite'); ?></h3>
301
+ <div>
302
+ <label>
303
+ <input type="radio" name="shortcode[sed]" value="0" checked>
304
+ <?php _e('Separate Window', 'modern-events-calendar-lite'); ?>
305
+ </label>
306
+ <label>
307
+ <input type="radio" name="shortcode[sed]" value="m1">
308
+ <?php _e('Modal 1', 'modern-events-calendar-lite'); ?>
309
+ </label>
310
+ </div>
311
+ </div>
312
+ <div class="mec-single-skin-options">
313
+ <h3 for="mec_shortcode_event_id"><?php _e('Select Event', 'modern-events-calendar-lite'); ?></h3>
314
+ <select name="shortcode[event]" id="mec_shortcode_event_id" class="mec_shortcode_event_id wn-mec-select-popup">
315
+ <?php foreach($events as $event): ?>
316
+ <option value="<?php echo $event->ID; ?>" <?php if(isset($sk_options_cover['event_id']) and $sk_options_cover['event_id'] == $event->ID) echo 'selected="selected"'; ?>><?php echo $event->post_title; ?></option>
317
+ <?php endforeach; ?>
318
+ </select>
319
+ </div>
320
+ </div>
321
+ <div class="mec-steps-content mec-steps-content-5">
322
+ <div class="mec-switcher" id="mec_show_past_events_wrapper">
323
+ <div>
324
+ <label for="mec_show_past_events"><?php _e('Include Expired Events', 'modern-events-calendar-lite'); ?></label>
325
+ <p class="description"><?php _e('You have ability to include past/expired events if you like so it will show upcoming and expired events based on start date that you selected.', 'modern-events-calendar-lite'); ?></p>
326
+ </div>
327
+ <div>
328
+ <input type="hidden" name="shortcode[show_past_events]" value="0" />
329
+ <input type="checkbox" name="shortcode[show_past_events]" class="mec-checkbox-toggle" id="mec_show_past_events" value="1" checked>
330
+ <label for="mec_show_past_events"></label>
331
+ </div>
332
+ </div>
333
+ <div class="mec-switcher" id="mec_show_only_past_events_wrapper">
334
+ <div>
335
+ <label for="mec_show_only_past_events"><?php _e('Show Only Expired Events', 'modern-events-calendar-lite'); ?></label>
336
+ <p class="description" style="color: red;"><?php echo sprintf(__('It shows %s expired/past events.', 'modern-events-calendar-lite'), '<strong>'.__('only', 'modern-events-calendar-lite').'</strong>'); ?></p>
337
+ </div>
338
+ <div>
339
+ <input type="hidden" name="shortcode[show_only_past_events]" value="0" />
340
+ <input type="checkbox" name="shortcode[show_only_past_events]" class="mec-checkbox-toggle" id="mec_show_only_past_events" value="1">
341
+ <label for="mec_show_only_past_events"></label>
342
+ </div>
343
+ </div>
344
+ <div class="mec-switcher" id="mec_show_only_ongoing_events_wrapper">
345
+ <div>
346
+ <label for="mec_show_only_ongoing_events"><?php _e('Show Only Ongoing Events', 'modern-events-calendar-lite'); ?></label>
347
+ <p class="description"><?php _e('It shows only ongoing events on List and Grid skins.', 'modern-events-calendar-lite'); ?></p>
348
+ </div>
349
+ <div>
350
+ <input type="hidden" name="shortcode[show_only_ongoing_events]" value="0" />
351
+ <input type="checkbox" name="shortcode[show_only_ongoing_events]" class="mec-checkbox-toggle" id="mec_show_only_ongoing_events" value="1">
352
+ <label for="mec_show_only_ongoing_events"></label>
353
+ </div>
354
+ </div>
355
+ </div>
356
+ <div class="mec-steps-content mec-steps-content-6">
357
+ <div class="mec-steps-6-loading"><div class="mec-loader"></div></div>
358
+ <div class="mec-steps-6-results">
359
+ <div class="mec-popup-shortcode">
360
+ <h3><?php _e('Your Shortcode', 'modern-events-calendar-lite'); ?></h3>
361
+ <div class="mec-popup-shortcode-code">
362
+ <code></code>
363
+ <button type="button" class="mec-button-copy"><?php _e('Copy', 'modern-events-calendar-lite'); ?></button>
364
+ </div>
365
+ </div>
366
+ <p class="description"><?php _e('Put this shortcode into your desired page.', 'modern-events-calendar-lite'); ?></p>
367
+ </div>
368
+ </div>
369
+ </div>
370
+ </div>
371
+ <div class="mec-next-previous-buttons">
372
+ <button class="mec-button-prev"><?php _e('Prev', 'modern-events-calendar-lite'); ?><img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/popup/popup-prev-icon.svg'; ?>" /></button>
373
+ <button class="mec-button-next"><?php _e('Next', 'modern-events-calendar-lite'); ?><img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/popup/popup-next-icon.svg'; ?>" /></button>
374
+ <button class="mec-button-new"><img src="<?php echo plugin_dir_url(__FILE__ ) . '../../../assets/img/popup/popup-new-shortcode-plus.svg'; ?>" /><?php _e('New Shortcode', 'modern-events-calendar-lite'); ?></button>
375
+ </div>
376
+ </div>
377
+ </div>
378
+ <?php if( !isset($settings['sh_as_popup']) || (isset($settings['sh_as_popup']) && $settings['sh_as_popup'] == '1') ) : ?>
379
+ <script type="text/javascript">
380
+ jQuery(document).ready(function()
381
+ {
382
+ var redirect = true;
383
+ var current_step;
384
+ var current_skin;
385
+ var current_style;
386
+
387
+ var $prev = jQuery('.mec-button-prev');
388
+ var $next = jQuery('.mec-button-next');
389
+ var $new = jQuery('.mec-button-new');
390
+ var $copy = jQuery('.mec-button-copy');
391
+ var $steps = jQuery('.mec-step');
392
+ var $steps_content = jQuery('.mec-steps-content');
393
+ var $skins = jQuery('.mec-skins');
394
+ var $name = jQuery('#mec_shortcode_name');
395
+ var $main_container = jQuery('.mec-steps-panel');
396
+
397
+ if(jQuery('.mec_shortcode_event_id').length > 0) jQuery('.mec_shortcode_event_id').niceSelect();
398
+ jQuery(".mec-steps-content.mec-steps-content-2 ul").niceScroll({
399
+ autohidemode: false,
400
+ cursorcolor:"#C7EBFB",
401
+ cursorwidth: "4px",
402
+ cursorborder: "none",
403
+ railpadding: { top: 17, right: 0, left: 0, bottom: 0 },
404
+ scrollbarid: 'mec-select-skin-popup-scrollbar'
405
+ });
406
+ jQuery(".mec-steps-content.mec-steps-content-3 .mec-skin-styles").niceScroll({
407
+ autohidemode: false,
408
+ cursorcolor:"#C7EBFB",
409
+ cursorwidth: "4px",
410
+ cursorborder: "none",
411
+ railpadding: { top: 17, right: 0, left: 0, bottom: 0 },
412
+ scrollbarid: 'mec-select-type-popup-scrollbar'
413
+ });
414
+
415
+ // Add Shortcode Button
416
+ jQuery('.wrap .page-title-action').on('click', function(e)
417
+ {
418
+ e.preventDefault();
419
+
420
+ // Open Lightbox
421
+ lity('#mec_popup_shortcode');
422
+
423
+
424
+ // Do Step
425
+ mec_shortcode_step(1, 'next');
426
+ });
427
+
428
+
429
+ // Lightbox Open
430
+ jQuery(document).on('lity:open', function(event, instance) {
431
+ jQuery('.lity').addClass('mec-add-shortcode-popup');
432
+ jQuery('body').css('overflow', 'hidden');
433
+ jQuery('.lity-wrap').removeAttr('data-lity-close');
434
+ });
435
+
436
+ // Lightbox Close
437
+ jQuery(document).on('lity:close', function(event, instance)
438
+ {
439
+ if(redirect) window.location.href = "<?php echo admin_url('post-new.php?post_type='.$post_type); ?>";
440
+ jQuery("#mec-select-type-popup-scrollbar .nicescroll-cursors").css('z-index', '-1');
441
+ jQuery(".mec-steps-content.mec-steps-content-3 .mec-skin-styles").getNiceScroll().hide();
442
+ jQuery("#mec-select-skin-popup-scrollbar .nicescroll-cursors").css('z-index', '-1');
443
+ jQuery(".mec-steps-content.mec-steps-content-2 ul").getNiceScroll().hide();
444
+
445
+ });
446
+
447
+ // Previous
448
+ $prev.on('click', function()
449
+ {
450
+ var new_step = parseInt(current_step)-1;
451
+ if(new_step <= 0) new_step = 1;
452
+
453
+ mec_shortcode_step(new_step, 'prev');
454
+ });
455
+
456
+ // Next
457
+ $next.on('click', function()
458
+ {
459
+ var new_step = parseInt(current_step)+1;
460
+ if(new_step > 7) new_step = 7;
461
+
462
+ mec_shortcode_step(new_step, 'next');
463
+ });
464
+
465
+ // New
466
+ $new.on('click', function()
467
+ {
468
+ $name.val('');
469
+ mec_shortcode_step(1, 'next');
470
+ });
471
+
472
+ // Copy
473
+ $copy.on('click', function()
474
+ {
475
+ var $temp = jQuery("<input>");
476
+ jQuery("body").append($temp);
477
+
478
+ $temp.val(jQuery('.mec-popup-shortcode code').text()).select();
479
+
480
+ document.execCommand("copy");
481
+ $temp.remove();
482
+ });
483
+
484
+ // Skin Changed
485
+ $skins.on('change', function(e)
486
+ {
487
+ e.preventDefault();
488
+ var skin = jQuery(this).val();
489
+
490
+ jQuery('.mec-skin-styles').hide();
491
+ jQuery('.mec-styles-'+skin).show();
492
+
493
+ if(skin === 'list' || skin === 'grid') jQuery('#mec_show_only_ongoing_events_wrapper').show();
494
+ else jQuery('#mec_show_only_ongoing_events_wrapper').hide();
495
+
496
+ if(skin === 'map') jQuery('#mec_show_only_past_events_wrapper').hide();
497
+ else jQuery('#mec_show_only_past_events_wrapper').show();
498
+
499
+ });
500
+
501
+ // on Submit of Shortcode Name
502
+ $name.keyup(function(e)
503
+ {
504
+ if(e.keyCode === 13)
505
+ {
506
+ mec_shortcode_step(2, 'next');
507
+ }
508
+ });
509
+
510
+ // Step 2 - Select skin
511
+ jQuery('.mec-steps-content.mec-steps-content-2 ul li:first-of-type').addClass('active');
512
+ jQuery('.mec-steps-content.mec-steps-content-2 ul li').on('click', function (e) {
513
+ e.preventDefault();
514
+ jQuery('.mec-steps-content.mec-steps-content-2 ul li .mec-skins').prop('checked', false);
515
+ jQuery('.mec-steps-content.mec-steps-content-2 ul li').removeClass('active');
516
+ jQuery(this).addClass('active');
517
+ jQuery(this).find('.mec-skins').prop('checked', true).trigger('change');
518
+ });
519
+
520
+ // Step 3 - Select skin type
521
+ jQuery('.mec-skin-styles label').on('click', function (e) {
522
+ e.preventDefault();
523
+ jQuery('.mec-skin-styles label input').prop('checked', false);
524
+ jQuery('.mec-skin-styles label').removeClass('active');
525
+ jQuery(this).addClass('active');
526
+ jQuery(this).find('input').prop('checked', true).trigger('change');
527
+ });
528
+
529
+ // Step 4 - change target link
530
+ jQuery('.mec-steps-content.mec-steps-content-4 label:first-of-type').addClass('active');
531
+ jQuery('.mec-steps-content.mec-steps-content-4 label input').on('change', function () {
532
+ jQuery('.mec-steps-content.mec-steps-content-4 label').removeClass('active');
533
+ jQuery(this).parent().addClass('active');
534
+ });
535
+
536
+ // Do Step
537
+ function mec_shortcode_step(step, type)
538
+ {
539
+ current_skin = jQuery('.mec-skins:checked').val();
540
+
541
+ // Skip Style Step
542
+ if(step === 3 && (
543
+ current_skin === 'map' ||
544
+ current_skin === 'daily_view' ||
545
+ current_skin === 'weekly_view' ||
546
+ current_skin === 'masonry' ||
547
+ current_skin === 'available_spot' ||
548
+ current_skin === 'timeline' ||
549
+ current_skin === 'tile'
550
+ ))
551
+ {
552
+ if(type === 'next') step = 4;
553
+ else step = 2;
554
+ }
555
+
556
+ // Skip Single Event Display Step
557
+ if(step === 4 && (
558
+ current_skin === 'map' ||
559
+ current_skin === 'carousel' ||
560
+ current_skin === 'slider'
561
+ ))
562
+ {
563
+ if(type === 'next') step = 5;
564
+ else
565
+ {
566
+ if(current_skin === 'map') step = 2;
567
+ else step = 3;
568
+ }
569
+ }
570
+
571
+ // Skip Dates Step
572
+ if(step === 5 && (
573
+ current_skin === 'available_spot' ||
574
+ current_skin === 'countdown' ||
575
+ current_skin === 'cover'
576
+ ))
577
+ {
578
+ if(type === 'next') step = 6;
579
+ else step = 4;
580
+ }
581
+
582
+ // Validation
583
+ if(step === 2)
584
+ {
585
+ var name = $name.val();
586
+ if(name === '')
587
+ {
588
+ $name.addClass('mec-required').focus();
589
+ jQuery('.popup-sh-name-required').show();
590
+ return false;
591
+ }
592
+
593
+ if(!current_skin) jQuery('.mec-skins:first').attr('checked', true).trigger('change');
594
+ }
595
+ else if(step === 3)
596
+ {
597
+ current_style = jQuery('.mec-styles-'+current_skin+' .mec-styles:checked').val();
598
+ if(!current_style) jQuery('.mec-styles-'+current_skin+' .mec-styles:first').attr('checked', true);
599
+ }
600
+
601
+ current_step = step;
602
+
603
+ // Buttons
604
+ $prev.show();
605
+ $next.show();
606
+
607
+ if(step === 1)
608
+ {
609
+ $prev.hide();
610
+ $new.hide();
611
+ }
612
+ else if(step === 6)
613
+ {
614
+ $prev.hide();
615
+ $next.hide();
616
+ }
617
+
618
+ // Disable Redirection
619
+ redirect = (step !== 6);
620
+
621
+ // Steps Bar
622
+ $steps.removeClass('mec-step-passed');
623
+ for(var i = 1; i <= step; i++) jQuery('.mec-step-'+i).addClass('mec-step-passed');
624
+
625
+ // Content
626
+ $steps_content.hide();
627
+ $steps_content.removeClass('mec-steps-content-active');
628
+ jQuery('.mec-steps-content-'+step).addClass('mec-steps-content-active').show();
629
+ jQuery('.mec-steps-content-container').removeClass('mec-steps-content-1 mec-steps-content-2 mec-steps-content-3 mec-steps-content-4 mec-steps-content-5 mec-steps-content-6').addClass('mec-steps-content-'+step);
630
+
631
+
632
+ // Save Shortcode
633
+ if(step === 6) return mec_shortcode_save();
634
+
635
+ if(step === 4 && (
636
+ current_skin === 'cover' ||
637
+ current_skin === 'countdown' ||
638
+ current_skin === 'available_spot'
639
+ ))
640
+ {
641
+ jQuery('.mec-steps-content-4 .mec-single-skin-options').show();
642
+ jQuery('.mec-steps-content-4 .mec-multiple-skin-options').hide();
643
+ }
644
+ else
645
+ {
646
+ jQuery('.mec-steps-content-4 .mec-single-skin-options').hide();
647
+ jQuery('.mec-steps-content-4 .mec-multiple-skin-options').show();
648
+ }
649
+
650
+ if ( step === 2 ) {
651
+ jQuery(".mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul").getNiceScroll().resize();
652
+ jQuery("#mec-select-skin-popup-scrollbar .nicescroll-cursors").css('z-index', '9999');
653
+ jQuery(".mec-steps-content.mec-steps-content-3 .mec-skin-styles").getNiceScroll().hide();
654
+ jQuery("#mec-select-type-popup-scrollbar .nicescroll-cursors").css('z-index', '9');
655
+ } else if ( step === 3 ){
656
+ jQuery(".mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3 .mec-skin-styles").getNiceScroll().resize();
657
+ jQuery("#mec-select-type-popup-scrollbar .nicescroll-cursors").css('z-index', '9999');
658
+ jQuery(".mec-steps-content.mec-steps-content-2 ul").getNiceScroll().hide();
659
+ jQuery("#mec-select-skin-popup-scrollbar .nicescroll-cursors").css('z-index', '9');
660
+ } else {
661
+ jQuery(".nicescroll-cursors").css('z-index', '9');
662
+ }
663
+
664
+ }
665
+
666
+
667
+ function mec_shortcode_save()
668
+ {
669
+ // Show Loading
670
+ jQuery(".mec-steps-6-loading").show();
671
+ jQuery(".mec-steps-6-results").hide();
672
+
673
+ var form = jQuery("#mec_popup_shortcode_form :input").serialize();
674
+ jQuery.ajax(
675
+ {
676
+ type: "POST",
677
+ url: ajaxurl,
678
+ data: "action=mec_popup_shortcode&"+form,
679
+ dataType: "json",
680
+ success: function(data)
681
+ {
682
+ if(data.success)
683
+ {
684
+ jQuery(".mec-popup-shortcode code").html('[MEC id="'+data.id+'"]');
685
+
686
+ jQuery(".mec-steps-6-loading").hide();
687
+
688
+ jQuery(".mec-steps-6-results").show();
689
+ $new.show();
690
+ }
691
+ },
692
+ error: function(jqXHR, textStatus, errorThrown)
693
+ {
694
+ }
695
+ });
696
+ }
697
+ });
698
+ </script>
699
+ <?php endif; ?>
app/features/search.php CHANGED
@@ -7,7 +7,6 @@ defined('MECEXEC') or die();
7
  */
8
  class MEC_feature_search extends MEC_base
9
  {
10
-
11
  public $factory;
12
  public $main;
13
  public $settings;
@@ -26,7 +25,6 @@ class MEC_feature_search extends MEC_base
26
 
27
  // MEC Settings
28
  $this->settings = $this->main->get_settings();
29
-
30
  }
31
 
32
  /**
@@ -38,11 +36,13 @@ class MEC_feature_search extends MEC_base
38
  // search Shortcode
39
  $this->factory->shortcode('MEC_search_bar', array($this, 'search'));
40
 
41
- if ( isset($this->settings['search_bar_ajax_mode']) && $this->settings['search_bar_ajax_mode'] == '1' )
42
  {
43
  $this->factory->action('wp_ajax_mec_get_ajax_search_data', array($this, 'mec_get_ajax_search_data'));
44
  $this->factory->action('wp_ajax_nopriv_mec_get_ajax_search_data', array($this, 'mec_get_ajax_search_data'));
45
- } else {
 
 
46
  $this->factory->filter('pre_get_posts', array($this, 'mec_search_filter'));
47
  }
48
  }
@@ -61,32 +61,39 @@ class MEC_feature_search extends MEC_base
61
  if(is_wp_error($terms) || empty($terms)) return false;
62
  $taxonomy_name = ($taxonomy == 'post_tag') ? 'Tag' : str_replace('mec_', '', $taxonomy);
63
 
64
- switch ($taxonomy_name) {
65
- //Message Category
 
66
  case 'category':
67
- $taxonomy_name = $this->main->m('taxonomy_category', __('Category', 'modern-events-calendar-lite'));
68
  break;
69
- //Message Location
 
70
  case 'location':
71
- $taxonomy_name = $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'));
72
  break;
73
- //Message Organizer
 
74
  case 'organizer':
75
- $taxonomy_name = $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'));
76
  break;
77
- //Message Organizer
 
78
  case 'speaker':
79
- $taxonomy_name = $this->main->m('taxonomy_speaker', __('Speaker', 'modern-events-calendar-lite'));
80
  break;
81
- //Message Tag
 
82
  case 'Tag':
83
- $taxonomy_name = __('Tag', 'modern-events-calendar-lite');
84
  break;
85
- //Message label
 
86
  case 'label':
87
- $taxonomy_name = $this->main->m('taxonomy_label', __('label', 'modern-events-calendar-lite'));
88
  break;
89
- //Default Screen
 
90
  default:
91
  $taxonomy_name = str_replace('mec_', '', $taxonomy);
92
  break;
@@ -116,7 +123,7 @@ class MEC_feature_search extends MEC_base
116
 
117
  public function mec_get_ajax_search_data(){
118
 
119
- if ( $_POST['length'] < '3' )
120
  {
121
  _e('Please enter at least 3 characters and try again' , 'modern-events-calendar-lite');
122
  die();
@@ -126,85 +133,91 @@ class MEC_feature_search extends MEC_base
126
 
127
  if(!empty($_POST['location']))
128
  {
129
- $location = sanitize_text_field( $_POST['location'] );
130
  $mec_quesries[] = array(
131
  'taxonomy' => 'mec_location',
132
  'field' => 'id',
133
- 'terms' => array( $location ),
134
  'operator' => 'IN'
135
  );
136
  }
137
 
138
  if(!empty($_POST['category']))
139
  {
140
- $category = sanitize_text_field( $_POST['category'] );
141
  $mec_quesries[] = array(
142
  'taxonomy' => 'mec_category',
143
  'field' => 'id',
144
- 'terms' => array( $category ),
145
  'operator' => 'IN'
146
  );
147
  }
148
 
149
  if(!empty($_POST['organizer']))
150
  {
151
- $organizer = sanitize_text_field( $_POST['organizer'] );
152
  $mec_quesries[] = array(
153
  'taxonomy' => 'mec_organizer',
154
  'field' => 'id',
155
- 'terms' => array( $organizer ),
156
  'operator' => 'IN'
157
  );
158
  }
159
 
160
  if(!empty($_POST['speaker']))
161
  {
162
- $speaker = sanitize_text_field( $_POST['speaker'] );
163
  $mec_quesries[] = array(
164
  'taxonomy' => 'mec_speaker',
165
  'field' => 'id',
166
- 'terms' => array( $speaker ),
167
  'operator' => 'IN'
168
  );
169
  }
170
 
171
  if(!empty($_POST['tag']))
172
  {
173
- $tag = sanitize_text_field( $_POST['tag'] );
174
  $mec_quesries[] = array(
175
  'taxonomy' => 'post_tag',
176
  'field' => 'id',
177
- 'terms' => array( $tag ),
178
  'operator' => 'IN'
179
  );
180
  }
181
 
182
  if(!empty($_POST['label']))
183
  {
184
- $label = sanitize_text_field( $_POST['label'] );
185
  $mec_quesries[] = array(
186
  'taxonomy' => 'mec_label',
187
  'field' => 'id',
188
- 'terms' => array( $label ),
189
  'operator' => 'IN'
190
  );
191
  }
192
 
193
  $the_query = new WP_Query(array(
194
  'tax_query' => $mec_quesries,
195
- 's' => esc_attr( $_POST['keyword'] ),
196
  'post_type' => 'mec-events',
197
  'post_status' => array('publish'),
198
  ));
199
 
200
- if( $the_query->have_posts() ) :
201
- while( $the_query->have_posts() ): $the_query->the_post();
 
 
 
202
  include MEC::import('app.features.search_bar.search_result', true, true);
203
- endwhile;
204
- wp_reset_postdata();
205
- else:
 
 
 
206
  include MEC::import('app.features.search_bar.search_noresult', true, true);
207
- endif;
208
 
209
  die();
210
  }
@@ -228,7 +241,7 @@ class MEC_feature_search extends MEC_base
228
  $mec_quesries[] = array(
229
  'taxonomy' => 'mec_location',
230
  'field' => 'id',
231
- 'terms' => array( $_GET['location'] ),
232
  'operator'=> 'IN'
233
  );
234
  }
@@ -238,7 +251,7 @@ class MEC_feature_search extends MEC_base
238
  $mec_quesries[] = array(
239
  'taxonomy' => 'mec_category',
240
  'field' => 'id',
241
- 'terms' => array( $_GET['category'] ),
242
  'operator'=> 'IN'
243
  );
244
  }
@@ -248,7 +261,7 @@ class MEC_feature_search extends MEC_base
248
  $mec_quesries[] = array(
249
  'taxonomy' => 'mec_organizer',
250
  'field' => 'id',
251
- 'terms' => array( $_GET['organizer'] ),
252
  'operator'=> 'IN'
253
  );
254
  }
@@ -258,7 +271,7 @@ class MEC_feature_search extends MEC_base
258
  $mec_quesries[] = array(
259
  'taxonomy' => 'mec_speaker',
260
  'field' => 'id',
261
- 'terms' => array( $_GET['speaker'] ),
262
  'operator'=> 'IN'
263
  );
264
  }
@@ -268,7 +281,7 @@ class MEC_feature_search extends MEC_base
268
  $mec_quesries[] = array(
269
  'taxonomy' => 'post_tag',
270
  'field' => 'id',
271
- 'terms' => array( $_GET['tag'] ),
272
  'operator'=> 'IN'
273
  );
274
  }
@@ -278,14 +291,15 @@ class MEC_feature_search extends MEC_base
278
  $mec_quesries[] = array(
279
  'taxonomy' => 'mec_label',
280
  'field' => 'id',
281
- 'terms' => array( $_GET['label'] ),
282
  'operator'=> 'IN'
283
  );
284
  }
285
 
286
  // wordpress event list search
287
  $post_types = array('post', 'mec-events');
288
- if ( !function_exists('get_current_screen')) require_once(ABSPATH . 'wp-admin/includes/screen.php');
 
289
  $current_screen = isset(get_current_screen()->id) ? get_current_screen()->id : false;
290
  if($current_screen and trim($current_screen) == 'edit-mec-events') $post_types = 'mec-events';
291
 
7
  */
8
  class MEC_feature_search extends MEC_base
9
  {
 
10
  public $factory;
11
  public $main;
12
  public $settings;
25
 
26
  // MEC Settings
27
  $this->settings = $this->main->get_settings();
 
28
  }
29
 
30
  /**
36
  // search Shortcode
37
  $this->factory->shortcode('MEC_search_bar', array($this, 'search'));
38
 
39
+ if(isset($this->settings['search_bar_ajax_mode']) && $this->settings['search_bar_ajax_mode'] == '1')
40
  {
41
  $this->factory->action('wp_ajax_mec_get_ajax_search_data', array($this, 'mec_get_ajax_search_data'));
42
  $this->factory->action('wp_ajax_nopriv_mec_get_ajax_search_data', array($this, 'mec_get_ajax_search_data'));
43
+ }
44
+ else
45
+ {
46
  $this->factory->filter('pre_get_posts', array($this, 'mec_search_filter'));
47
  }
48
  }
61
  if(is_wp_error($terms) || empty($terms)) return false;
62
  $taxonomy_name = ($taxonomy == 'post_tag') ? 'Tag' : str_replace('mec_', '', $taxonomy);
63
 
64
+ switch($taxonomy_name)
65
+ {
66
+ // Message Category
67
  case 'category':
68
+ $taxonomy_name = $this->main->m('taxonomy_category', __('Category', 'modern-events-calendar-lite'));
69
  break;
70
+
71
+ // Message Location
72
  case 'location':
73
+ $taxonomy_name = $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'));
74
  break;
75
+
76
+ // Message Organizer
77
  case 'organizer':
78
+ $taxonomy_name = $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'));
79
  break;
80
+
81
+ // Message Organizer
82
  case 'speaker':
83
+ $taxonomy_name = $this->main->m('taxonomy_speaker', __('Speaker', 'modern-events-calendar-lite'));
84
  break;
85
+
86
+ // Message Tag
87
  case 'Tag':
88
+ $taxonomy_name = __('Tag', 'modern-events-calendar-lite');
89
  break;
90
+
91
+ // Message label
92
  case 'label':
93
+ $taxonomy_name = $this->main->m('taxonomy_label', __('label', 'modern-events-calendar-lite'));
94
  break;
95
+
96
+ // Default Screen
97
  default:
98
  $taxonomy_name = str_replace('mec_', '', $taxonomy);
99
  break;
123
 
124
  public function mec_get_ajax_search_data(){
125
 
126
+ if($_POST['length'] < '3')
127
  {
128
  _e('Please enter at least 3 characters and try again' , 'modern-events-calendar-lite');
129
  die();
133
 
134
  if(!empty($_POST['location']))
135
  {
136
+ $location = sanitize_text_field($_POST['location']);
137
  $mec_quesries[] = array(
138
  'taxonomy' => 'mec_location',
139
  'field' => 'id',
140
+ 'terms' => array($location),
141
  'operator' => 'IN'
142
  );
143
  }
144
 
145
  if(!empty($_POST['category']))
146
  {
147
+ $category = sanitize_text_field($_POST['category']);
148
  $mec_quesries[] = array(
149
  'taxonomy' => 'mec_category',
150
  'field' => 'id',
151
+ 'terms' => array($category),
152
  'operator' => 'IN'
153
  );
154
  }
155
 
156
  if(!empty($_POST['organizer']))
157
  {
158
+ $organizer = sanitize_text_field($_POST['organizer']);
159
  $mec_quesries[] = array(
160
  'taxonomy' => 'mec_organizer',
161
  'field' => 'id',
162
+ 'terms' => array($organizer),
163
  'operator' => 'IN'
164
  );
165
  }
166
 
167
  if(!empty($_POST['speaker']))
168
  {
169
+ $speaker = sanitize_text_field($_POST['speaker']);
170
  $mec_quesries[] = array(
171
  'taxonomy' => 'mec_speaker',
172
  'field' => 'id',
173
+ 'terms' => array($speaker),
174
  'operator' => 'IN'
175
  );
176
  }
177
 
178
  if(!empty($_POST['tag']))
179
  {
180
+ $tag = sanitize_text_field($_POST['tag']);
181
  $mec_quesries[] = array(
182
  'taxonomy' => 'post_tag',
183
  'field' => 'id',
184
+ 'terms' => array($tag),
185
  'operator' => 'IN'
186
  );
187
  }
188
 
189
  if(!empty($_POST['label']))
190
  {
191
+ $label = sanitize_text_field($_POST['label']);
192
  $mec_quesries[] = array(
193
  'taxonomy' => 'mec_label',
194
  'field' => 'id',
195
+ 'terms' => array($label),
196
  'operator' => 'IN'
197
  );
198
  }
199
 
200
  $the_query = new WP_Query(array(
201
  'tax_query' => $mec_quesries,
202
+ 's' => esc_attr($_POST['keyword']),
203
  'post_type' => 'mec-events',
204
  'post_status' => array('publish'),
205
  ));
206
 
207
+ if($the_query->have_posts())
208
+ {
209
+ while($the_query->have_posts())
210
+ {
211
+ $the_query->the_post();
212
  include MEC::import('app.features.search_bar.search_result', true, true);
213
+ }
214
+
215
+ wp_reset_postdata();
216
+ }
217
+ else
218
+ {
219
  include MEC::import('app.features.search_bar.search_noresult', true, true);
220
+ }
221
 
222
  die();
223
  }
241
  $mec_quesries[] = array(
242
  'taxonomy' => 'mec_location',
243
  'field' => 'id',
244
+ 'terms' => array($_GET['location']),
245
  'operator'=> 'IN'
246
  );
247
  }
251
  $mec_quesries[] = array(
252
  'taxonomy' => 'mec_category',
253
  'field' => 'id',
254
+ 'terms' => array($_GET['category']),
255
  'operator'=> 'IN'
256
  );
257
  }
261
  $mec_quesries[] = array(
262
  'taxonomy' => 'mec_organizer',
263
  'field' => 'id',
264
+ 'terms' => array($_GET['organizer']),
265
  'operator'=> 'IN'
266
  );
267
  }
271
  $mec_quesries[] = array(
272
  'taxonomy' => 'mec_speaker',
273
  'field' => 'id',
274
+ 'terms' => array($_GET['speaker']),
275
  'operator'=> 'IN'
276
  );
277
  }
281
  $mec_quesries[] = array(
282
  'taxonomy' => 'post_tag',
283
  'field' => 'id',
284
+ 'terms' => array($_GET['tag']),
285
  'operator'=> 'IN'
286
  );
287
  }
291
  $mec_quesries[] = array(
292
  'taxonomy' => 'mec_label',
293
  'field' => 'id',
294
+ 'terms' => array($_GET['label']),
295
  'operator'=> 'IN'
296
  );
297
  }
298
 
299
  // wordpress event list search
300
  $post_types = array('post', 'mec-events');
301
+ if(!function_exists('get_current_screen')) require_once(ABSPATH . 'wp-admin/includes/screen.php');
302
+
303
  $current_screen = isset(get_current_screen()->id) ? get_current_screen()->id : false;
304
  if($current_screen and trim($current_screen) == 'edit-mec-events') $post_types = 'mec-events';
305
 
app/libraries/book.php CHANGED
@@ -255,7 +255,7 @@ class MEC_book extends MEC_base
255
  // Auto confirmation for free bookings is enabled
256
  if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1)
257
  {
258
- $this->confirm($book_id);
259
  }
260
 
261
  // Auto confirmation for paid bookings is enabled
@@ -263,7 +263,7 @@ class MEC_book extends MEC_base
263
  {
264
  // Disable auto confirmation when pay through pay locally Payment.
265
  $pay_locally_gateway = (isset($_GET['action']) and trim($_GET['action']) == 'mec_do_transaction_pay_locally') ? true : false;
266
- if(!$pay_locally_gateway) $this->confirm($book_id);
267
  }
268
 
269
  return $book_id;
@@ -275,12 +275,12 @@ class MEC_book extends MEC_base
275
  * @param int $book_id
276
  * @return boolean
277
  */
278
- public function confirm($book_id)
279
  {
280
  update_post_meta($book_id, 'mec_confirmed', 1);
281
 
282
  // Fires after confirming a booking to send notifications etc.
283
- do_action('mec_booking_confirmed', $book_id);
284
 
285
  return true;
286
  }
255
  // Auto confirmation for free bookings is enabled
256
  if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1)
257
  {
258
+ $this->confirm($book_id, 'auto');
259
  }
260
 
261
  // Auto confirmation for paid bookings is enabled
263
  {
264
  // Disable auto confirmation when pay through pay locally Payment.
265
  $pay_locally_gateway = (isset($_GET['action']) and trim($_GET['action']) == 'mec_do_transaction_pay_locally') ? true : false;
266
+ if(!$pay_locally_gateway) $this->confirm($book_id, 'auto');
267
  }
268
 
269
  return $book_id;
275
  * @param int $book_id
276
  * @return boolean
277
  */
278
+ public function confirm($book_id, $mode = 'manually')
279
  {
280
  update_post_meta($book_id, 'mec_confirmed', 1);
281
 
282
  // Fires after confirming a booking to send notifications etc.
283
+ do_action('mec_booking_confirmed', $book_id, $mode);
284
 
285
  return true;
286
  }
app/libraries/factory.php CHANGED
@@ -250,6 +250,12 @@ class MEC_factory extends MEC_base
250
  // Include Lity Lightbox
251
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
252
 
 
 
 
 
 
 
253
  // Include MEC Carousel JS libraries
254
  wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
255
 
250
  // Include Lity Lightbox
251
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
252
 
253
+ // Include Nicescroll
254
+ wp_enqueue_script('mec-nice-scroll', $this->main->asset('js/jquery.nicescroll.min.js'));
255
+
256
+ wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
257
+ wp_enqueue_script('mec-featherlight-script', $this->main->asset('packages/featherlight/featherlight.js'));
258
+
259
  // Include MEC Carousel JS libraries
260
  wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
261
 
app/libraries/main.php CHANGED
@@ -1503,13 +1503,14 @@ class MEC_main extends MEC_base
1503
  $infowindow_thumb = trim($event->data->featured_image['thumbnail']) ? '<div class="mec-event-image"><img src="'.$event->data->featured_image['thumbnail'].'" alt="'.$event->data->title.'" /></div>' : '';
1504
  $event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
1505
 
 
1506
  $content = '
1507
  <div class="mec-wrap">
1508
  <div class="mec-map-lightbox-wp mec-event-list-classic">
1509
  <article class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article mec-clear">
1510
  '.$infowindow_thumb.'
1511
- <a data-event-id="'.$event->data->ID.'" href="'.$this->get_event_date_permalink($event->data->permalink, $event->date['start']['date']).'"><div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> '.$this->dateify($event, $date_format).'</div></a>
1512
- <h4 class="mec-event-title"><a data-event-id="'.$event->data->ID.'" class="mec-color-hover" href="'.$this->get_event_date_permalink($event->data->permalink, (isset($event->date['start']) ? $event->date['start']['date'] : NULL)).'">'.$event->data->title.'</a>'.$this->get_flags($event->data->ID, $event_start_date).'</h4>
1513
  </article>
1514
  </div>
1515
  </div>';
@@ -5468,7 +5469,7 @@ class MEC_main extends MEC_base
5468
 
5469
  public function get_pro_link()
5470
  {
5471
- return 'https://webnus.net/mec-purchase/';
5472
  }
5473
 
5474
  /**
1503
  $infowindow_thumb = trim($event->data->featured_image['thumbnail']) ? '<div class="mec-event-image"><img src="'.$event->data->featured_image['thumbnail'].'" alt="'.$event->data->title.'" /></div>' : '';
1504
  $event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
1505
 
1506
+ $link = $this->get_event_date_permalink($event->data->permalink, (isset($event->date['start']) ? $event->date['start']['date'] : NULL));
1507
  $content = '
1508
  <div class="mec-wrap">
1509
  <div class="mec-map-lightbox-wp mec-event-list-classic">
1510
  <article class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'mec-event-article mec-clear">
1511
  '.$infowindow_thumb.'
1512
+ <a data-event-id="'.$event->data->ID.'" href="'.$link.'"><div class="mec-event-date mec-color"><i class="mec-sl-calendar"></i> '.$this->dateify($event, $date_format).'</div></a>
1513
+ <h4 class="mec-event-title"><a data-event-id="'.$event->data->ID.'" class="mec-color-hover" href="'.$link.'">'.$event->data->title.'</a>'.$this->get_flags($event->data->ID, $event_start_date).'</h4>
1514
  </article>
1515
  </div>
1516
  </div>';
5469
 
5470
  public function get_pro_link()
5471
  {
5472
+ return 'https://webnus.net/mec-purchase/?ref=17/';
5473
  }
5474
 
5475
  /**
app/libraries/notifications.php CHANGED
@@ -217,7 +217,7 @@ class MEC_notifications extends MEC_base
217
  '.$message.'
218
 
219
  </div>
220
-
221
 
222
  </td>
223
  </tr>
@@ -251,10 +251,14 @@ class MEC_notifications extends MEC_base
251
  * Send booking confirmation notification
252
  * @author Webnus <info@webnus.biz>
253
  * @param int $book_id
 
254
  * @return boolean
255
  */
256
- public function booking_confirmation($book_id)
257
  {
 
 
 
258
  $booker_id = get_post_field('post_author', $book_id);
259
  $booker = get_userdata($booker_id);
260
 
@@ -263,10 +267,10 @@ class MEC_notifications extends MEC_base
263
  $price = get_post_meta($book_id, 'mec_price', true);
264
 
265
  // Auto confirmation for free bookings is enabled so don't send the confirmation email
266
- if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1) return false;
267
 
268
  // Auto confirmation for paid bookings is enabled so don't send the confirmation email
269
- if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1) return false;
270
 
271
  $subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
272
  $headers = array('Content-Type: text/html; charset=UTF-8');
@@ -284,7 +288,7 @@ class MEC_notifications extends MEC_base
284
 
285
  // Unique Recipients
286
  $recipients = array_unique($recipients);
287
-
288
  foreach($recipients as $recipient)
289
  {
290
  // Skip if it's not a valid email
@@ -319,7 +323,7 @@ class MEC_notifications extends MEC_base
319
  '.$message.'
320
 
321
  </div>
322
-
323
 
324
  </td>
325
  </tr>
@@ -360,6 +364,9 @@ class MEC_notifications extends MEC_base
360
  */
361
  public function booking_cancellation($book_id)
362
  {
 
 
 
363
  $booker_id = get_post_field('post_author', $book_id);
364
  $booker = get_userdata($booker_id);
365
 
@@ -468,7 +475,7 @@ class MEC_notifications extends MEC_base
468
  '.$message.'
469
 
470
  </div>
471
-
472
 
473
  </td>
474
  </tr>
@@ -564,7 +571,7 @@ class MEC_notifications extends MEC_base
564
  '.$message.'
565
 
566
  </div>
567
-
568
 
569
  </td>
570
  </tr>
@@ -651,7 +658,7 @@ class MEC_notifications extends MEC_base
651
  '.$message.'
652
 
653
  </div>
654
-
655
 
656
  </td>
657
  </tr>
@@ -730,7 +737,7 @@ class MEC_notifications extends MEC_base
730
  $to = current($recipients);
731
  unset($recipients[0]);
732
  }
733
-
734
  $subject = (isset($this->notif_settings['new_event']['subject']) and trim($this->notif_settings['new_event']['subject'])) ? __($this->notif_settings['new_event']['subject'], 'modern-events-calendar-lite') : __('A new event is added.', 'modern-events-calendar-lite');
735
  $headers = array('Content-Type: text/html; charset=UTF-8');
736
 
217
  '.$message.'
218
 
219
  </div>
220
+
221
 
222
  </td>
223
  </tr>
251
  * Send booking confirmation notification
252
  * @author Webnus <info@webnus.biz>
253
  * @param int $book_id
254
+ * @param string $mode
255
  * @return boolean
256
  */
257
+ public function booking_confirmation($book_id, $mode = 'manually')
258
  {
259
+ $confirmation_notification = apply_filters('mec_booking_confirmation', true);
260
+ if(!$confirmation_notification) return false;
261
+
262
  $booker_id = get_post_field('post_author', $book_id);
263
  $booker = get_userdata($booker_id);
264
 
267
  $price = get_post_meta($book_id, 'mec_price', true);
268
 
269
  // Auto confirmation for free bookings is enabled so don't send the confirmation email
270
+ if($price <= 0 and isset($this->settings['booking_auto_confirm_free']) and $this->settings['booking_auto_confirm_free'] == 1 and $mode == 'auto') return false;
271
 
272
  // Auto confirmation for paid bookings is enabled so don't send the confirmation email
273
+ if($price > 0 and isset($this->settings['booking_auto_confirm_paid']) and $this->settings['booking_auto_confirm_paid'] == 1 and $mode == 'auto') return false;
274
 
275
  $subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
276
  $headers = array('Content-Type: text/html; charset=UTF-8');
288
 
289
  // Unique Recipients
290
  $recipients = array_unique($recipients);
291
+
292
  foreach($recipients as $recipient)
293
  {
294
  // Skip if it's not a valid email
323
  '.$message.'
324
 
325
  </div>
326
+
327
 
328
  </td>
329
  </tr>
364
  */
365
  public function booking_cancellation($book_id)
366
  {
367
+ $cancellation_notification = apply_filters('mec_booking_cancellation', true);
368
+ if(!$cancellation_notification) return false;
369
+
370
  $booker_id = get_post_field('post_author', $book_id);
371
  $booker = get_userdata($booker_id);
372
 
475
  '.$message.'
476
 
477
  </div>
478
+
479
 
480
  </td>
481
  </tr>
571
  '.$message.'
572
 
573
  </div>
574
+
575
 
576
  </td>
577
  </tr>
658
  '.$message.'
659
 
660
  </div>
661
+
662
 
663
  </td>
664
  </tr>
737
  $to = current($recipients);
738
  unset($recipients[0]);
739
  }
740
+
741
  $subject = (isset($this->notif_settings['new_event']['subject']) and trim($this->notif_settings['new_event']['subject'])) ? __($this->notif_settings['new_event']['subject'], 'modern-events-calendar-lite') : __('A new event is added.', 'modern-events-calendar-lite');
742
  $headers = array('Content-Type: text/html; charset=UTF-8');
743
 
app/modules/booking/steps/form.php CHANGED
@@ -178,6 +178,5 @@ if(!$mec_email)
178
  <div class="mec-book-form-btn-wrap">
179
  <button id="mec-book-form-btn-step-2" class="mec-book-form-next-button" type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
180
  <button id="mec-book-form-back-btn-step-2" class="mec-book-form-back-button" type="button" onclick="mec_book_form_back_btn_click(this);"><?php _e('Back', 'modern-events-calendar-lite'); ?></button>
181
-
182
  </div>
183
  </form>
178
  <div class="mec-book-form-btn-wrap">
179
  <button id="mec-book-form-btn-step-2" class="mec-book-form-next-button" type="submit" onclick="mec_book_form_back_btn_cache(this, <?php echo $uniqueid; ?>);"><?php _e('Next', 'modern-events-calendar-lite'); ?></button>
180
  <button id="mec-book-form-back-btn-step-2" class="mec-book-form-back-button" type="button" onclick="mec_book_form_back_btn_click(this);"><?php _e('Back', 'modern-events-calendar-lite'); ?></button>
 
181
  </div>
182
  </form>
app/skins/available_spot/tpl.php CHANGED
@@ -5,6 +5,7 @@ defined('MECEXEC') or die();
5
  $styling = $this->main->get_styling();
6
  $event = $this->events[0];
7
  $settings = $this->main->get_settings();
 
8
  // Event is not valid!
9
  if(!isset($event->data)) return;
10
 
@@ -30,20 +31,15 @@ $event_etime .= (isset($event->data->meta['mec_date']['end']['ampm']) ? $event->
30
  $event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
31
 
32
  $label_style = '';
33
- if ( !empty($event->data->labels) ):
34
- foreach( $event->data->labels as $label)
35
  {
36
- if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
37
- if ( $label['style'] == 'mec-label-featured' )
38
- {
39
- $label_style = esc_html__( 'Featured' , 'modern-events-calendar-lite' );
40
- }
41
- elseif ( $label['style'] == 'mec-label-canceled' )
42
  {
43
- $label_style = esc_html__( 'Canceled' , 'modern-events-calendar-lite' );
 
 
44
  }
45
  }
46
- endif;
47
 
48
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.date('H:i:s', strtotime($event_time))));
49
  $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.date('H:i:s', strtotime($event_etime))));
@@ -56,7 +52,6 @@ $ongoing = (isset($settings['hide_time_method']) and trim($settings['hide_time_m
56
 
57
  // Skip if event is expired
58
  if($ongoing) if($d3 < $d2) $ongoing = false;
59
-
60
  if($d1 < $d2 and !$ongoing) return;
61
 
62
  $gmt_offset = $this->main->get_gmt_offset();
@@ -100,19 +95,22 @@ foreach($availability as $ticket_id=>$count)
100
  }
101
 
102
  $speakers = '""';
103
- if ( !empty($event->data->speakers))
104
  {
105
  $speakers= [];
106
- foreach ($event->data->speakers as $key => $value) {
 
107
  $speakers[] = array(
108
  "@type" => "Person",
109
  "name" => $value['name'],
110
  "image" => $value['thumbnail'],
111
  "sameAs" => $value['facebook'],
112
  );
113
- }
 
114
  $speakers = json_encode($speakers);
115
  }
 
116
  do_action('mec_start_skin' , $this->id);
117
  do_action('mec_available_spot_skin_head');
118
  ?>
5
  $styling = $this->main->get_styling();
6
  $event = $this->events[0];
7
  $settings = $this->main->get_settings();
8
+
9
  // Event is not valid!
10
  if(!isset($event->data)) return;
11
 
31
  $event_start_date = !empty($event->date['start']['date']) ? $event->date['start']['date'] : '';
32
 
33
  $label_style = '';
34
+ if(!empty($event->data->labels))
 
35
  {
36
+ foreach($event->data->labels as $label)
 
 
 
 
 
37
  {
38
+ if(!isset($label['style']) or (isset($label['style']) and !trim($label['style']))) continue;
39
+ if($label['style'] == 'mec-label-featured') $label_style = esc_html__('Featured', 'modern-events-calendar-lite');
40
+ elseif($label['style'] == 'mec-label-canceled') $label_style = esc_html__('Canceled', 'modern-events-calendar-lite');
41
  }
42
  }
 
43
 
44
  $start_time = date('D M j Y G:i:s', strtotime($start_date.' '.date('H:i:s', strtotime($event_time))));
45
  $end_time = date('D M j Y G:i:s', strtotime($end_date.' '.date('H:i:s', strtotime($event_etime))));
52
 
53
  // Skip if event is expired
54
  if($ongoing) if($d3 < $d2) $ongoing = false;
 
55
  if($d1 < $d2 and !$ongoing) return;
56
 
57
  $gmt_offset = $this->main->get_gmt_offset();
95
  }
96
 
97
  $speakers = '""';
98
+ if(!empty($event->data->speakers))
99
  {
100
  $speakers= [];
101
+ foreach($event->data->speakers as $key => $value)
102
+ {
103
  $speakers[] = array(
104
  "@type" => "Person",
105
  "name" => $value['name'],
106
  "image" => $value['thumbnail'],
107
  "sameAs" => $value['facebook'],
108
  );
109
+ }
110
+
111
  $speakers = json_encode($speakers);
112
  }
113
+
114
  do_action('mec_start_skin' , $this->id);
115
  do_action('mec_available_spot_skin_head');
116
  ?>
app/skins/carousel/render.php CHANGED
@@ -143,7 +143,7 @@ $settings = $this->main->get_settings();
143
  <p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
144
  </div>
145
  <div class="mec-event-footer-carousel-type2">
146
- <?php if($settings['social_network_status'] != '0') : ?>
147
  <ul class="mec-event-sharing-wrap">
148
  <li class="mec-event-share">
149
  <a href="#" class="mec-event-share-icon">
@@ -156,7 +156,7 @@ $settings = $this->main->get_settings();
156
  </ul>
157
  </li>
158
  </ul>
159
- <?php endif; ?>
160
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
161
  </div>
162
  </div>
143
  <p><?php echo (isset($location['name']) ? $location['name'] : ''); echo (isset($location['address']) ? '<br>'.$location['address'] : ''); ?></p>
144
  </div>
145
  <div class="mec-event-footer-carousel-type2">
146
+ <?php if($settings['social_network_status'] != '0') : ?>
147
  <ul class="mec-event-sharing-wrap">
148
  <li class="mec-event-share">
149
  <a href="#" class="mec-event-share-icon">
156
  </ul>
157
  </li>
158
  </ul>
159
+ <?php endif; ?>
160
  <a class="mec-booking-button mec-bg-color-hover mec-border-color-hover" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')) ; ?></a>
161
  </div>
162
  </div>
app/skins/full_calendar.php CHANGED
@@ -81,7 +81,6 @@ class MEC_skin_full_calendar extends MEC_skins
81
  $this->monthly_style = isset($this->skin_options['monthly_style']) ? $this->skin_options['monthly_style'] : 'clean';
82
  if(isset($this->skin_options[$this->monthly_style]) and !$this->skin_options[$this->monthly_style]) $this->monthly_style = 'clean';
83
 
84
-
85
  $this->yearly = isset($this->skin_options['yearly']) ? $this->skin_options['yearly'] : true;
86
  $this->monthly = isset($this->skin_options['monthly']) ? $this->skin_options['monthly'] : true;
87
  $this->weekly = isset($this->skin_options['weekly']) ? $this->skin_options['weekly'] : true;
81
  $this->monthly_style = isset($this->skin_options['monthly_style']) ? $this->skin_options['monthly_style'] : 'clean';
82
  if(isset($this->skin_options[$this->monthly_style]) and !$this->skin_options[$this->monthly_style]) $this->monthly_style = 'clean';
83
 
 
84
  $this->yearly = isset($this->skin_options['yearly']) ? $this->skin_options['yearly'] : true;
85
  $this->monthly = isset($this->skin_options['monthly']) ? $this->skin_options['monthly'] : true;
86
  $this->weekly = isset($this->skin_options['weekly']) ? $this->skin_options['weekly'] : true;
app/skins/grid/render.php CHANGED
@@ -6,6 +6,8 @@ $styling = $this->main->get_styling();
6
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
7
  $settings = $this->main->get_settings();
8
 
 
 
9
  // colorful
10
  $colorful_flag = $colorful_class = '';
11
  if($this->style == 'colorful')
@@ -209,7 +211,7 @@ if($this->style == 'colorful')
209
  </li>
210
  </ul>
211
  <?php endif; ?>
212
- <?php do_action( 'mec_grid_clean_booking_button', $event ); ?>
213
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
214
  </div>
215
  <?php elseif($this->style == 'novel'): ?>
6
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
7
  $settings = $this->main->get_settings();
8
 
9
+ $map_events = array();
10
+
11
  // colorful
12
  $colorful_flag = $colorful_class = '';
13
  if($this->style == 'colorful')
211
  </li>
212
  </ul>
213
  <?php endif; ?>
214
+ <?php do_action('mec_grid_clean_booking_button', $event); ?>
215
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>" target="_self"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
216
  </div>
217
  <?php elseif($this->style == 'novel'): ?>
app/skins/list/render.php CHANGED
@@ -8,6 +8,7 @@ $current_month_divider = $this->request->getVar('current_month_divider', 0);
8
  $this->include_events_times = isset($this->skin_options['include_events_times']) ? $this->skin_options['include_events_times'] : false;
9
 
10
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
 
11
  ?>
12
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
13
  <div class="mec-event-list-<?php echo $this->style; ?>">
@@ -176,7 +177,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
176
  </div>
177
  </div>
178
  <div class="mec-event-footer">
179
- <?php if(isset($settings['social_network_status']) and $settings['social_network_status'] != '0') : ?>
180
  <ul class="mec-event-sharing-wrap">
181
  <li class="mec-event-share">
182
  <a href="#" class="mec-event-share-icon">
@@ -189,7 +190,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
189
  </ul>
190
  </li>
191
  </ul>
192
- <?php endif; ?>
193
  <?php do_action('mec_standard_booking_button' ,$event ); ?>
194
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
195
  </div>
8
  $this->include_events_times = isset($this->skin_options['include_events_times']) ? $this->skin_options['include_events_times'] : false;
9
 
10
  $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])) ? 'colorskin-custom' : '';
11
+ $map_events = array();
12
  ?>
13
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
14
  <div class="mec-event-list-<?php echo $this->style; ?>">
177
  </div>
178
  </div>
179
  <div class="mec-event-footer">
180
+ <?php if(isset($settings['social_network_status']) and $settings['social_network_status'] != '0') : ?>
181
  <ul class="mec-event-sharing-wrap">
182
  <li class="mec-event-share">
183
  <a href="#" class="mec-event-share-icon">
190
  </ul>
191
  </li>
192
  </ul>
193
+ <?php endif; ?>
194
  <?php do_action('mec_standard_booking_button' ,$event ); ?>
195
  <a class="mec-booking-button" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo (is_array($event->data->tickets) and count($event->data->tickets) and !strpos($soldout, '%%soldout%%')) ? $this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')) : $this->main->m('view_detail', __('View Detail', 'modern-events-calendar-lite')); ?></a>
196
  </div>
app/skins/single.php CHANGED
@@ -773,7 +773,7 @@ class MEC_skin_single extends MEC_skins
773
  <?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
774
  <a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?php if (isset($this->settings['single_booking_style']) and $this->settings['single_booking_style'] != 'modal') echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $single->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder'))); ?></a>
775
  <?php elseif (isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://') : ?>
776
- <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if (isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'mec-single-builder');
777
  else echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder')));
778
  ?></a>
779
  </div>
773
  <?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'data-lity'; $data_lity_class = 'mec-booking-data-lity'; } ?>
774
  <a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?php if (isset($this->settings['single_booking_style']) and $this->settings['single_booking_style'] != 'modal') echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $single->uniqueid; ?>" <?php echo $data_lity; ?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder'))); ?></a>
775
  <?php elseif (isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://') : ?>
776
+ <a class="mec-booking-button mec-bg-color" target="<?php echo (isset($event->data->meta['mec_more_info_target']) ? $event->data->meta['mec_more_info_target'] : '_self'); ?>" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if (isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'mec-single-builder');
777
  else echo esc_html($this->main->m('register_button', __('REGISTER', 'mec-single-builder')));
778
  ?></a>
779
  </div>
app/skins/single/default.php CHANGED
@@ -254,7 +254,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
254
  <?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'onclick="openBookingModal();"'; $data_lity_class = 'mec-booking-data-lity'; } ?>
255
  <a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity;?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
256
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
257
- <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
258
  ?>
259
  </a>
260
  <?php endif; ?>
254
  <?php $data_lity = $data_lity_class = ''; if( isset($settings['single_booking_style']) and $settings['single_booking_style'] == 'modal' ){ $data_lity = 'onclick="openBookingModal();"'; $data_lity_class = 'mec-booking-data-lity'; } ?>
255
  <a class="mec-booking-button mec-bg-color <?php echo $data_lity_class; ?> <?php if( isset($settings['single_booking_style']) and $settings['single_booking_style'] != 'modal' ) echo 'simple-booking'; ?>" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>" <?php echo $data_lity;?>><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
256
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
257
+ <a class="mec-booking-button mec-bg-color" target="<?php echo (isset($event->data->meta['mec_more_info_target']) ? $event->data->meta['mec_more_info_target'] : '_self'); ?>" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
258
  ?>
259
  </a>
260
  <?php endif; ?>
app/skins/single/m1.php CHANGED
@@ -134,7 +134,7 @@ if(!is_array($booking_options)) $booking_options = array();
134
  <?php if($this->main->can_show_booking_module($event)): ?>
135
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
136
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
137
- <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
138
  ?></a>
139
  <?php endif; ?>
140
  </div>
134
  <?php if($this->main->can_show_booking_module($event)): ?>
135
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
136
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
137
+ <a class="mec-booking-button mec-bg-color" target="<?php echo (isset($event->data->meta['mec_more_info_target']) ? $event->data->meta['mec_more_info_target'] : '_self'); ?>" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
138
  ?></a>
139
  <?php endif; ?>
140
  </div>
app/skins/single/m2.php CHANGED
@@ -60,7 +60,7 @@ if(!is_array($booking_options)) $booking_options = array();
60
  <?php if($this->main->can_show_booking_module($event)): ?>
61
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
62
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
63
- <a class="mec-booking-button mec-bg-color" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
64
  ?></a>
65
  <?php endif; ?>
66
  </div>
60
  <?php if($this->main->can_show_booking_module($event)): ?>
61
  <a class="mec-booking-button mec-bg-color" href="#mec-events-meta-group-booking-<?php echo $this->uniqueid; ?>"><?php echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite'))); ?></a>
62
  <?php elseif(isset($event->data->meta['mec_more_info']) and trim($event->data->meta['mec_more_info']) and $event->data->meta['mec_more_info'] != 'http://'): ?>
63
+ <a class="mec-booking-button mec-bg-color" target="<?php echo (isset($event->data->meta['mec_more_info_target']) ? $event->data->meta['mec_more_info_target'] : '_self'); ?>" href="<?php echo $event->data->meta['mec_more_info']; ?>"><?php if(isset($event->data->meta['mec_more_info_title']) and trim($event->data->meta['mec_more_info_title'])) echo esc_html(trim($event->data->meta['mec_more_info_title']), 'modern-events-calendar-lite'); else echo esc_html($this->main->m('register_button', __('REGISTER', 'modern-events-calendar-lite')));
64
  ?></a>
65
  <?php endif; ?>
66
  </div>
app/skins/tile/render.php CHANGED
@@ -5,6 +5,8 @@ defined('MECEXEC') or die();
5
  $styling = $this->main->get_styling();
6
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
7
  $settings = $this->main->get_settings();
 
 
8
  ?>
9
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
10
  <div class="mec-event-tile-view">
@@ -17,7 +19,7 @@ $settings = $this->main->get_settings();
17
  $rcount = 1 ;
18
  foreach($this->events as $date):
19
  foreach($date as $event):
20
-
21
  echo ($rcount == 1) ? '<div class="row">' : '';
22
  echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
23
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
@@ -84,6 +86,7 @@ $settings = $this->main->get_settings();
84
  </script>
85
  <?php endif; ?>
86
  <article <?php echo 'style="background:' . $event_color . $background_image. '"'; ?> data-style="<?php echo $label_style; ?>" class="<?php echo ((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : ''); ?> mec-event-article mec-tile-item mec-clear <?php echo $this->get_event_classes($event); ?>">
 
87
  <div class="event-tile-view-head clearfix">
88
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
89
  <div class="mec-event-date"><?php echo date_i18n($this->date_format_clean_1, strtotime($event->date['start']['date'])); ?></div>
@@ -111,4 +114,8 @@ $settings = $this->main->get_settings();
111
  <?php endforeach; ?>
112
  <?php endforeach; ?>
113
  </div>
 
 
 
 
114
  </div>
5
  $styling = $this->main->get_styling();
6
  $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : '';
7
  $settings = $this->main->get_settings();
8
+
9
+ $map_events = array();
10
  ?>
11
  <div class="mec-wrap <?php echo $event_colorskin; ?>">
12
  <div class="mec-event-tile-view">
19
  $rcount = 1 ;
20
  foreach($this->events as $date):
21
  foreach($date as $event):
22
+ $map_events[] = $event;
23
  echo ($rcount == 1) ? '<div class="row">' : '';
24
  echo '<div class="col-md-'.$col.' col-sm-'.$col.'">';
25
  $location = isset($event->data->locations[$event->data->meta['mec_location_id']])? $event->data->locations[$event->data->meta['mec_location_id']] : array();
86
  </script>
87
  <?php endif; ?>
88
  <article <?php echo 'style="background:' . $event_color . $background_image. '"'; ?> data-style="<?php echo $label_style; ?>" class="<?php echo ((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event' : ''); ?> mec-event-article mec-tile-item mec-clear <?php echo $this->get_event_classes($event); ?>">
89
+ <?php do_action('mec_skin_tile_view', $event); ?>
90
  <div class="event-tile-view-head clearfix">
91
  <?php if(isset($settings['multiple_day_show_method']) && $settings['multiple_day_show_method'] == 'all_days') : ?>
92
  <div class="mec-event-date"><?php echo date_i18n($this->date_format_clean_1, strtotime($event->date['start']['date'])); ?></div>
114
  <?php endforeach; ?>
115
  <?php endforeach; ?>
116
  </div>
117
+ <?php
118
+ $div_count = count($map_events) - (floor(count($map_events) / $count) * $count);
119
+ if($div_count > 0 and $div_count < $count) echo '</div>';
120
+ ?>
121
  </div>
app/widgets/MEC.php CHANGED
@@ -55,8 +55,13 @@ class MEC_MEC_widget extends WP_Widget
55
  }
56
 
57
  $calendar_id = isset($instance['calendar_id']) ? $instance['calendar_id'] : 0;
 
 
 
 
 
58
  $current_hide = isset($instance['current_hide']) ? $instance['current_hide'] : '';
59
- $atts = array('html-class'=>'mec-widget '.$current_hide, 'style'=>'classic', 'widget'=>true);
60
 
61
  // Print the skin output
62
  echo $this->render->widget($calendar_id, $atts);
55
  }
56
 
57
  $calendar_id = isset($instance['calendar_id']) ? $instance['calendar_id'] : 0;
58
+
59
+ // Get Skin Options
60
+ $sk_options = get_post_meta($calendar_id, 'sk-options', true);
61
+ $sk_options_list_style = (isset($sk_options['list']) and isset($sk_options['list']['style'])) ? trim($sk_options['list']['style']) : 'classic';
62
+
63
  $current_hide = isset($instance['current_hide']) ? $instance['current_hide'] : '';
64
+ $atts = array('html-class'=>'mec-widget '.$current_hide, 'style'=>$sk_options_list_style, 'widget'=>true);
65
 
66
  // Print the skin output
67
  echo $this->render->widget($calendar_id, $atts);
assets/css/backend.css CHANGED
@@ -6867,4 +6867,917 @@ input.fserv-input-text {
6867
  .mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span {
6868
  height: 20px;
6869
  padding-top: 2px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6870
  }
6867
  .mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span {
6868
  height: 20px;
6869
  padding-top: 2px;
6870
+ }
6871
+
6872
+ /* Add shortcode Popup */
6873
+ .lity.mec-add-shortcode-popup {
6874
+ background-color: #B7E4E3;
6875
+ }
6876
+
6877
+ .lity.mec-add-shortcode-popup .lity-content {
6878
+ box-shadow: 0 3px 20px 0 rgba(91, 188, 190, 0.55);
6879
+ border-radius: 10px;
6880
+ height: 100%;
6881
+ }
6882
+
6883
+ .mec-add-shortcode-popup .lity-container {
6884
+ width: 930px;
6885
+ height: 620px;
6886
+ }
6887
+
6888
+ .mec-add-shortcode-popup .lity-content:after {
6889
+ display: none;
6890
+ }
6891
+
6892
+ .mec-add-shortcode-popup div#mec_popup_shortcode {
6893
+ background: #fff;
6894
+ overflow: hidden;
6895
+ display: flex;
6896
+ width: 100%;
6897
+ border-radius: 10px;
6898
+ height: 100%;
6899
+ }
6900
+ .mec-steps-container {
6901
+ width: 92px;
6902
+ text-align: center;
6903
+ background: #fff;
6904
+ }
6905
+
6906
+ .mec-steps-panel {
6907
+ width: calc(100% - 92px);
6908
+ background: #EEF4F5;
6909
+ }
6910
+
6911
+ .mec-steps-container ul {
6912
+ text-align: center;
6913
+ display: block;
6914
+ margin-top:62px;
6915
+ }
6916
+
6917
+ .mec-steps-container ul li {
6918
+ width: 22px;
6919
+ height: 70px;
6920
+ margin: 0 auto;
6921
+ position: relative;
6922
+ }
6923
+
6924
+ .mec-steps-container ul li span {
6925
+ border-radius: 50px;
6926
+ background-color: rgba(26, 175, 251, .16);
6927
+ width: 22px;
6928
+ height: 22px;
6929
+ display: inline-block;
6930
+ padding-top: 2px;
6931
+ font-size: 11px;
6932
+ font-weight: bold;
6933
+ color: #1AAFFB;
6934
+ }
6935
+
6936
+ .mec-steps-container ul li:after,
6937
+ .mec-steps-container ul li:before {
6938
+ content: '';
6939
+ display: block;
6940
+ height: 24px;
6941
+ width: 2px;
6942
+ background: rgba(26, 175, 251, 0.16);
6943
+ margin-left: calc(50% - 1px);
6944
+ }
6945
+
6946
+ .mec-steps-container ul li:first-of-type:before,
6947
+ .mec-steps-container ul li:last-of-type:after {
6948
+ display: none;
6949
+ }
6950
+
6951
+ .mec-steps-container ul li:first-of-type {
6952
+ height: 46px;
6953
+ }
6954
+
6955
+ li.mec-step.mec-step-passed span,
6956
+ li.mec-step.mec-step-passed:after,
6957
+ li.mec-step.mec-step-passed:before {
6958
+ background-color: #2DCB73;
6959
+ color: #fff;
6960
+ }
6961
+
6962
+ .mec-steps-container img {
6963
+ margin-top: 27px;
6964
+ }
6965
+
6966
+ .mec-steps-header {
6967
+ display: flex;
6968
+ background: #fff;
6969
+ border-radius: 5px;
6970
+ box-shadow: 0 3px 22px 0 rgba(11, 121, 125, 0.01);
6971
+ padding: 12px 22px;
6972
+ margin-bottom: 50px;
6973
+ }
6974
+
6975
+ .mec-steps-header-settings {
6976
+ width: 65px;
6977
+ }
6978
+
6979
+ .mec-steps-header-userinfo {
6980
+ width: calc(100% - 65px);
6981
+ }
6982
+
6983
+ .mec-steps-panel {
6984
+ padding: 35px;
6985
+ position: relative;
6986
+ display: flex;
6987
+ flex-direction: column;
6988
+ justify-content: space-between;
6989
+ }
6990
+
6991
+ .mec-steps-header-userinfo span {
6992
+ display: inline-block;
6993
+ vertical-align: middle;
6994
+ }
6995
+
6996
+ .mec-steps-header-userinfo span img {
6997
+ height: 40px;
6998
+ border-radius: 50px;
6999
+ margin-right: 8px;
7000
+ vertical-align: middle;
7001
+ }
7002
+
7003
+ .mec-steps-header-userinfo span.mec-steps-header-name {
7004
+ font-size: 14px;
7005
+ color: #778182;
7006
+ }
7007
+
7008
+ span.mec-steps-header-add-text {
7009
+ color: #839294;
7010
+ font-size: 12px;
7011
+ margin-left: 5px;
7012
+ }
7013
+
7014
+ .mec-steps-header-settings a {
7015
+ height: 100%;
7016
+ display: block;
7017
+ padding-top: 11px;
7018
+ text-decoration: none;
7019
+ font-size: 12px;
7020
+ color: #707070;
7021
+ }
7022
+
7023
+ .mec-steps-header-settings a i {
7024
+ color: #1AAFFB;
7025
+ font-size: 16px;
7026
+ vertical-align: text-top;
7027
+ margin-right: 5px;
7028
+ }
7029
+
7030
+ .mec-next-previous-buttons {
7031
+ clear: both;
7032
+ }
7033
+
7034
+ .mec-next-previous-buttons button.mec-button-next {
7035
+ float: right;
7036
+ background: #008AFF;
7037
+ border: none;
7038
+ color: #fff;
7039
+ cursor: pointer;
7040
+ width: 123px;
7041
+ text-align: left;
7042
+ padding: 8px 18px 9px;
7043
+ border-radius: 3px;
7044
+ font-size: 14px;
7045
+ box-shadow: 0 5px 10px 0 rgba(0, 138, 255, 0.3);
7046
+ transition: all 0.3s ease;
7047
+ outline: none;
7048
+ }
7049
+
7050
+ .mec-next-previous-buttons button:hover {
7051
+ background: #000;
7052
+ box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
7053
+ }
7054
+
7055
+ .mec-next-previous-buttons button.mec-button-next img {
7056
+ position: absolute;
7057
+ top: 16px;
7058
+ right: 18px;
7059
+ }
7060
+
7061
+ .mec-next-previous-buttons button {
7062
+ position: relative;
7063
+ }
7064
+
7065
+ .mec-next-previous-buttons button.mec-button-prev {
7066
+ background: #fff;
7067
+ border: none;
7068
+ color: #000;
7069
+ cursor: pointer;
7070
+ width: 123px;
7071
+ text-align: right;
7072
+ padding: 8px 15px 9px;
7073
+ border-radius: 3px;
7074
+ font-size: 14px;
7075
+ box-shadow: 0 5px 10px 0 rgba(11, 121, 125, .01);
7076
+ transition: all .3s ease;
7077
+ outline: none;
7078
+ }
7079
+
7080
+ .mec-next-previous-buttons button.mec-button-prev img {
7081
+ position: absolute;
7082
+ top: 16px;
7083
+ left: 18px;
7084
+ }
7085
+
7086
+ .mec-next-previous-buttons button.mec-button-prev:hover {
7087
+ background: #000;
7088
+ box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
7089
+ color: #fff;
7090
+ }
7091
+
7092
+
7093
+ .mec-next-previous-buttons button.mec-button-new {
7094
+ background: #008aff;
7095
+ float: right;
7096
+ border: none;
7097
+ color: #fff;
7098
+ cursor: pointer;
7099
+ width: 154px;
7100
+ text-align: left;
7101
+ padding: 8px 18px 9px;
7102
+ border-radius: 3px;
7103
+ font-size: 14px;
7104
+ box-shadow: 0 5px 10px 0 rgba(0, 138, 255, .3);
7105
+ transition: all .3s ease;
7106
+ outline: none;
7107
+ }
7108
+
7109
+ .mec-next-previous-buttons button.mec-button-new:hover {
7110
+ background: #000;
7111
+ box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
7112
+ }
7113
+
7114
+ .mec-next-previous-buttons button.mec-button-new img {
7115
+ vertical-align: sub;
7116
+ margin-left: -3px;
7117
+ margin-right: 8px;
7118
+ }
7119
+
7120
+ div#mec_popup_shortcode_form {
7121
+ height: calc(100% - 37px);
7122
+ }
7123
+
7124
+ .mec-steps-content-container {
7125
+ display: flex;
7126
+ flex-direction: column;
7127
+ height: 100%;
7128
+ }
7129
+
7130
+ /* Step 1 */
7131
+ .mec-steps-content-container.mec-steps-content-1 {
7132
+ background: url(../../assets/img/popup/first-step.png) no-repeat 90% 70%;
7133
+ }
7134
+ .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required {
7135
+ color: red;
7136
+ display: none;
7137
+ font-style: italic;
7138
+ font-size: 12px;
7139
+ margin-top: 8px;
7140
+ }
7141
+ .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 {
7142
+ top: 50%;
7143
+ position: absolute;
7144
+ width: 360px;
7145
+ }
7146
+
7147
+ .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"] {
7148
+ width: 360px;
7149
+ height: 46px;
7150
+ border: none;
7151
+ border-radius: 3px;
7152
+ padding-left: 36px;
7153
+ font-size: 12px;
7154
+ color: #B1B2B4;
7155
+ box-shadow: 0 3px 22px 0 rgba(11, 121, 125, .01);
7156
+ }
7157
+
7158
+ .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder {
7159
+ color: #B1B2B4;
7160
+ }
7161
+
7162
+ .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder {
7163
+ color: #B1B2B4;
7164
+ }
7165
+
7166
+ .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder {
7167
+ color: #B1B2B4;
7168
+ }
7169
+
7170
+ .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before {
7171
+ content: '';
7172
+ width: 14px;
7173
+ height: 14px;
7174
+ background: url('../../assets/img/add-sh-icon.png') no-repeat center center;
7175
+ position: absolute;
7176
+ top: 17px;
7177
+ left: 17px;
7178
+ }
7179
+
7180
+
7181
+
7182
+ /* Step 2 */
7183
+ .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul {
7184
+ height: 386px;
7185
+ overflow-x: hidden;
7186
+ overflow-y: scroll;
7187
+ padding-left: 60px;
7188
+ margin-top: -22px;
7189
+ margin-bottom: 0;
7190
+ position: relative;
7191
+ padding-bottom: 19px !important;
7192
+ }
7193
+
7194
+ .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li {
7195
+ width: 193px!important;
7196
+ float: left!important;
7197
+ min-height: 135px!important;
7198
+ height: 160px;
7199
+ margin: 1.66%!important;
7200
+ box-sizing: border-box;
7201
+ text-align: center;
7202
+ padding: 10px!important;
7203
+ border-radius: 5px;
7204
+ border: 2px solid #C4EDFF;
7205
+ background: #fff!important;
7206
+ cursor: pointer;
7207
+ }
7208
+
7209
+ .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active {
7210
+ border-color: #00ACF8;
7211
+ box-shadow: 0 3px 5px rgba(0,172,248,.2);
7212
+ }
7213
+
7214
+ .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img {
7215
+ margin: 4px 0 1px 1px;
7216
+ line-height: 1;
7217
+ max-width: 68px;
7218
+ max-height: 56px;
7219
+ filter: grayscale(1);
7220
+ -webkit-filter: grayscale(1);
7221
+ transition: all .22s ease;
7222
+ -webkit-transition: all .22s ease;
7223
+ -moz-transition: all .22s ease;
7224
+ -ms-transition: all .22s ease;
7225
+ -o-transition: all .22s ease;
7226
+ }
7227
+
7228
+ .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input {
7229
+ display: block;
7230
+ margin: 0 auto;
7231
+ margin-top: 6px;
7232
+ border: 2px solid #E1E7ED;
7233
+ box-shadow: 0 3px 6px 0 rgba(0,0,0,0.05);
7234
+ position: relative;
7235
+ }
7236
+
7237
+ .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img {
7238
+ padding-top: 16px;
7239
+ }
7240
+
7241
+ .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input {
7242
+ display: none;
7243
+ }
7244
+
7245
+ .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before {
7246
+ width: 14px;
7247
+ height: 14px;
7248
+ content: '';
7249
+ border-radius: 50px;
7250
+ background: #fff;
7251
+ display: block;
7252
+ position: absolute;
7253
+ left: calc(50% - 7px);
7254
+ top: 24px;
7255
+ z-index: 99;
7256
+ border: 2px solid #e1e7ed;
7257
+ box-shadow: 0 3px 6px 0 rgba(0,0,0,.05);
7258
+ }
7259
+
7260
+ .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text {
7261
+ position: relative;
7262
+ }
7263
+
7264
+ .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before {
7265
+ background: #008aff;
7266
+ border: none;
7267
+ box-shadow: 0 5px 10px 0 rgba(0,138,255,.3);
7268
+ width: 16px;
7269
+ height: 16px;
7270
+ }
7271
+
7272
+ .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after {
7273
+ width: 4px;
7274
+ height: 4px;
7275
+ display: block;
7276
+ content: '';
7277
+ position: absolute;
7278
+ background: #fff;
7279
+ left: calc(50% - 1px);
7280
+ top: 30px;
7281
+ z-index: 999;
7282
+ border-radius: 50px;
7283
+ }
7284
+
7285
+ /* Step 3 */
7286
+ .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh {
7287
+ display: block;
7288
+ }
7289
+
7290
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles {
7291
+ height: 386px;
7292
+ overflow-x: hidden;
7293
+ padding-left: 60px;
7294
+ padding-bottom: 19px;
7295
+ }
7296
+
7297
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label {
7298
+ width: 193px!important;
7299
+ float: left!important;
7300
+ margin: 1.66%!important;
7301
+ text-align: center;
7302
+ }
7303
+
7304
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span {
7305
+ width: 193px!important;
7306
+ float: left!important;
7307
+ min-height: 135px!important;
7308
+ height: 150px;
7309
+ box-sizing: border-box;
7310
+ border-radius: 5px;
7311
+ border: 2px solid #c4edff;
7312
+ background: #fff!important;
7313
+ cursor: pointer;
7314
+ margin-bottom: 5px;
7315
+ margin-top: -6px;
7316
+ }
7317
+
7318
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span {
7319
+ border-color: #00ACF8;
7320
+ box-shadow: 0 3px 5px rgba(0,172,248,.2);
7321
+ }
7322
+
7323
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div {
7324
+ font-size: 14px;
7325
+ }
7326
+
7327
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div {
7328
+ color: #008AFF;
7329
+ }
7330
+
7331
+ .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input {
7332
+ opacity: 0;
7333
+ display: none;
7334
+ }
7335
+
7336
+ .mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3 {
7337
+ margin-top: -18px;
7338
+ }
7339
+
7340
+ .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img {
7341
+ width: 189px;
7342
+ height: 146px;
7343
+ border-radius: 5px;
7344
+ }
7345
+
7346
+ /* Step 4 */
7347
+ .mec-steps-content-container.mec-steps-content-4 {
7348
+ background: url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%;
7349
+ }
7350
+
7351
+ .mec-steps-content.mec-steps-content-4 .nice-select {
7352
+ border: none;
7353
+ box-shadow: 0 3px 22px 0 rgba(11, 121, 125, .01);
7354
+ }
7355
+
7356
+ .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 {
7357
+ top: 40%;
7358
+ position: absolute;
7359
+ width: 330px;
7360
+ }
7361
+
7362
+ .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3 {
7363
+ font-size: 13px;
7364
+ font-weight: normal;
7365
+ color: #707070;
7366
+ }
7367
+
7368
+ .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div {
7369
+ border: 2px dashed #DCE2E3;
7370
+ border-radius: 3px;
7371
+ padding: 20px 20px 6px;
7372
+ background: #FCFCFC;
7373
+ }
7374
+
7375
+ .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label {
7376
+ display: block;
7377
+ margin-bottom: 14px;
7378
+ }
7379
+
7380
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup {
7381
+ -webkit-tap-highlight-color: transparent;
7382
+ background-color: #fff;
7383
+ border-radius: 3px;
7384
+ border: 1px solid #ddd;
7385
+ margin-bottom: 8px;
7386
+ position: relative;
7387
+ text-align: left!important;
7388
+ -webkit-transition: all .2s ease-in-out;
7389
+ transition: all .2s ease-in-out;
7390
+ box-shadow: 0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);
7391
+ clear: unset!important;
7392
+ -webkit-tap-highlight-color: transparent;
7393
+ background-color: #fff;
7394
+ border-radius: 5px;
7395
+ border: solid 1px #e8e8e8;
7396
+ box-sizing: border-box;
7397
+ clear: both;
7398
+ cursor: pointer;
7399
+ display: block;
7400
+ float: left;
7401
+ font-family: inherit;
7402
+ font-size: 14px;
7403
+ font-weight: 400;
7404
+ height: 42px;
7405
+ line-height: 40px;
7406
+ outline: 0;
7407
+ padding-left: 18px;
7408
+ padding-right: 30px;
7409
+ position: relative;
7410
+ text-align: left!important;
7411
+ -webkit-transition: all .2s ease-in-out;
7412
+ transition: all .2s ease-in-out;
7413
+ -webkit-user-select: none;
7414
+ -moz-user-select: none;
7415
+ -ms-user-select: none;
7416
+ user-select: none;
7417
+ white-space: nowrap;
7418
+ width: 300px !important;
7419
+ }
7420
+
7421
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover {
7422
+ border-color: #dbdbdb
7423
+ }
7424
+
7425
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list {
7426
+ overflow: unset;
7427
+ width: 100%;
7428
+ margin: 0
7429
+ }
7430
+
7431
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list {
7432
+ background-color: #fff;
7433
+ border-radius: 2px;
7434
+ box-shadow: 0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);
7435
+ box-sizing: border-box;
7436
+ margin-top: 4px;
7437
+ opacity: 0;
7438
+ overflow: hidden;
7439
+ padding: 0;
7440
+ pointer-events: none;
7441
+ position: absolute;
7442
+ top: 100%;
7443
+ left: 0;
7444
+ -webkit-transform-origin: 50% 0;
7445
+ -ms-transform-origin: 50% 0;
7446
+ transform-origin: 50% 0;
7447
+ -webkit-transform: scale(.75) translateY(-21px);
7448
+ -ms-transform: scale(.75) translateY(-21px);
7449
+ transform: scale(.75) translateY(-21px);
7450
+ -webkit-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
7451
+ transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
7452
+ z-index: 9
7453
+ }
7454
+
7455
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after {
7456
+ border-bottom: 2px solid #999;
7457
+ border-right: 2px solid #999;
7458
+ content: '';
7459
+ display: block;
7460
+ height: 5px;
7461
+ margin-top: -4px;
7462
+ pointer-events: none;
7463
+ position: absolute;
7464
+ right: 12px;
7465
+ top: 50%;
7466
+ -webkit-transform-origin: 66% 66%;
7467
+ -ms-transform-origin: 66% 66%;
7468
+ transform-origin: 66% 66%;
7469
+ -webkit-transform: rotate(45deg);
7470
+ -ms-transform: rotate(45deg);
7471
+ transform: rotate(45deg);
7472
+ -webkit-transition: all .15s ease-in-out;
7473
+ transition: all .15s ease-in-out;
7474
+ width: 5px
7475
+ }
7476
+
7477
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after {
7478
+ -webkit-transform: rotate(-135deg);
7479
+ -ms-transform: rotate(-135deg);
7480
+ transform: rotate(-135deg)
7481
+ }
7482
+
7483
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list {
7484
+ opacity: 1;
7485
+ pointer-events: auto;
7486
+ -webkit-transform: scale(1) translateY(0);
7487
+ -ms-transform: scale(1) translateY(0);
7488
+ transform: scale(1) translateY(0)
7489
+ }
7490
+
7491
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled {
7492
+ border-color: #ededed;
7493
+ color: #999;
7494
+ pointer-events: none
7495
+ }
7496
+
7497
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after {
7498
+ border-color: #ccc
7499
+ }
7500
+
7501
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list {
7502
+ background-color: #fff;
7503
+ border-radius: 5px;
7504
+ box-shadow: 0 0 0 1px rgba(68,68,68,.11);
7505
+ box-sizing: border-box;
7506
+ margin-top: 4px;
7507
+ opacity: 0;
7508
+ overflow: hidden;
7509
+ padding: 0;
7510
+ pointer-events: none;
7511
+ position: absolute;
7512
+ top: 100%;
7513
+ left: 0;
7514
+ -webkit-transform-origin: 50% 0;
7515
+ -ms-transform-origin: 50% 0;
7516
+ transform-origin: 50% 0;
7517
+ -webkit-transform: scale(.75) translateY(-21px);
7518
+ -ms-transform: scale(.75) translateY(-21px);
7519
+ transform: scale(.75) translateY(-21px);
7520
+ -webkit-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
7521
+ transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
7522
+ z-index: 9
7523
+ }
7524
+
7525
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover) {
7526
+ background-color: transparent!important
7527
+ }
7528
+
7529
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option {
7530
+ cursor: pointer;
7531
+ font-weight: 400;
7532
+ list-style: none;
7533
+ min-height: 40px;
7534
+ outline: 0;
7535
+ text-align: left;
7536
+ position: relative;
7537
+ font-size: 12px!important;
7538
+ padding: 1px 12px!important;
7539
+ margin: 0!important;
7540
+ line-height: 28px!important;
7541
+ min-height: 28px!important;
7542
+ -webkit-transition: all .2s ease-in-out;
7543
+ transition: all .2s ease-in-out;
7544
+ }
7545
+
7546
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img {
7547
+ position: absolute;
7548
+ padding: 3px;
7549
+ top: -1px;
7550
+ left: 100%;
7551
+ box-shadow: 0 4px 42px -5px rgba(0, 0, 0, .16);
7552
+ visibility: hidden;
7553
+ opacity: 0;
7554
+ border: 1px solid #e3e3e3;
7555
+ border-radius: 2px;
7556
+ z-index: 99999999;
7557
+ background: #fff;
7558
+ }
7559
+
7560
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img {
7561
+ visibility: visible;
7562
+ opacity: 1
7563
+ }
7564
+
7565
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,
7566
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,
7567
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover {
7568
+ background-color: #f6f6f6
7569
+ }
7570
+
7571
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected {
7572
+ font-weight: 700
7573
+ }
7574
+
7575
+ .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled {
7576
+ background-color: transparent;
7577
+ color: #999;
7578
+ cursor: default
7579
+ }
7580
+
7581
+ .no-csspointerevents .wn-mec-select-popup .list {
7582
+ display: none
7583
+ }
7584
+
7585
+ .no-csspointerevents .wn-mec-select-popup.open .list {
7586
+ display: block
7587
+ }
7588
+
7589
+ .mec-steps-content.mec-steps-content-4 label input {
7590
+ background: #fff;
7591
+ position: relative;
7592
+ width: 24px;
7593
+ height: 24px;
7594
+ border: 1px solid #CACECE;
7595
+ }
7596
+
7597
+ .mec-steps-content.mec-steps-content-4 label input:before {
7598
+ disaply: none;
7599
+ }
7600
+
7601
+ .mec-steps-content.mec-steps-content-4 label.active input {
7602
+ background: #008AFF;
7603
+ box-shadow: 0 5px 10px 0 rgba(0, 138, 255, 0.3);
7604
+ border: none;
7605
+ }
7606
+
7607
+ .mec-steps-content.mec-steps-content-4 label.active input:before {
7608
+ background: #fff;
7609
+ width: 6px;
7610
+ height: 6px;
7611
+ top: 6px;
7612
+ left: 6px;
7613
+ position: absolute;
7614
+ }
7615
+
7616
+
7617
+ /* Step 5 */
7618
+ .mec-steps-content-container.mec-steps-content-5 {
7619
+ background: url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%;
7620
+ }
7621
+
7622
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 {
7623
+ width: 360px;
7624
+ margin-top: 16px;
7625
+ }
7626
+
7627
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label {
7628
+ color: #707070;
7629
+ font-size: 14px;
7630
+ }
7631
+
7632
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p {
7633
+ color: #8A8A8A;
7634
+ font-style: italic;
7635
+ font-size: 12px;
7636
+ margin-top: 7px;
7637
+ margin-bottom: 0;
7638
+ }
7639
+
7640
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher {
7641
+ padding-bottom: 30px;
7642
+ margin-bottom: 34px;
7643
+ border-bottom: 2px dashed #DCE2E3;
7644
+ position: relative;
7645
+ }
7646
+
7647
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type {
7648
+ padding-bottom: 0;
7649
+ margin-bottom: 0;
7650
+ border: none;
7651
+ }
7652
+
7653
+
7654
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label {
7655
+ position: absolute;
7656
+ top: -4px;
7657
+ right: 0;
7658
+ width: 52px;
7659
+ height: 26px;
7660
+ }
7661
+
7662
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after {
7663
+ margin-left: 26px;
7664
+ }
7665
+
7666
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,
7667
+ .mec-switcher input+label:before {
7668
+ display: block;
7669
+ position: absolute;
7670
+ top: 2px;
7671
+ left: 1px;
7672
+ bottom: 2px;
7673
+ content: "";
7674
+ }
7675
+
7676
+ .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after {
7677
+ width: 23px;
7678
+ }
7679
+
7680
+
7681
+ /* Step 6 */
7682
+ .mec-steps-content-container.mec-steps-content-6 {
7683
+ background: url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%;
7684
+ }
7685
+
7686
+ .mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6 {
7687
+ margin-top: 56px;
7688
+ }
7689
+
7690
+ .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode {
7691
+ width: 325px;
7692
+ border: 2px dashed #DCE2E3;
7693
+ background: #FCFCFC;
7694
+ padding: 42px 42px 47px;
7695
+ text-align: center;
7696
+ }
7697
+
7698
+ .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3 {
7699
+ font-size: 16px;
7700
+ font-weight: normal;
7701
+ color: #707070;
7702
+ margin-top: 7px;
7703
+ }
7704
+
7705
+ .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code {
7706
+ border-radius: 3px;
7707
+ background: rgba(154,214,222,0.35);
7708
+ width: 243px;
7709
+ margin: 0 auto;
7710
+ padding: 14px 17px;
7711
+ }
7712
+
7713
+ .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code {
7714
+ background: transparent;
7715
+ color: #000;
7716
+ font-size: 14px;
7717
+ font-weight: 600;
7718
+ margin-left: -11px;
7719
+ }
7720
+
7721
+ .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button {
7722
+ border: none;
7723
+ background: #fff;
7724
+ border-radius: 3px;
7725
+ padding: 3px 8px 6px;
7726
+ margin-left: 46px;
7727
+ cursor: pointer;
7728
+ }
7729
+
7730
+ .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover {
7731
+ background: #000;
7732
+ color: #fff;
7733
+ }
7734
+
7735
+ .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p {
7736
+ width: 325px;
7737
+ text-align: center;
7738
+ font-size: 12px;
7739
+ margin-top: 5px;
7740
+ color: #8A8A8A;
7741
+ }
7742
+
7743
+ .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading {
7744
+ width: 325px;
7745
+ border: 2px dashed #dce2e3;
7746
+ background: #fcfcfc;
7747
+ padding: 42px 42px 47px;
7748
+ text-align: center;
7749
+ height: 182px;
7750
+ position: relative;
7751
+ }
7752
+
7753
+ .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader {
7754
+ position: absolute;
7755
+ left: 136px;
7756
+ top: 65px;
7757
+ }
7758
+
7759
+ /* Close Button */
7760
+ .mec-add-shortcode-popup button.lity-close {
7761
+ right: 0;
7762
+ top: -52px;
7763
+ border-radius: 50%;
7764
+ width: 37px;
7765
+ height: 37px;
7766
+ background: #FFFFFF;
7767
+ color: #A2AFBC;
7768
+ text-shadow: none;
7769
+ padding-top: 1px;
7770
+ transition: all 0.2s ease;
7771
+ position: absolute;
7772
+ box-shadow: 0 3px 8px 0 rgba(91,188,190,0.55);
7773
+ }
7774
+
7775
+ .mec-add-shortcode-popup button.lity-close:hover {
7776
+ background: #000;
7777
+ color: #fff;
7778
+ box-shadow: 0 3px 8px 0 rgba(0,0,0,0.55);
7779
+ }
7780
+
7781
+ .mec-skin-styles.mec-styles-full_calendar h3 {
7782
+ padding-left: 12px;
7783
  }
assets/css/backend.min.css CHANGED
@@ -2,4 +2,4 @@
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#mec_exceptions_not_in_days_date,#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker,#mec_meta_box_date_form input[type=text]{max-width:262px}#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;box-shadow:0 2px 8px -3px #008aff}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#fff;font-size:16px}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:554px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:400px}#mec_exceptions_not_in_days_date{width:100%}#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{width:262px}#mec_exceptions_not_in_days_date,#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker,#mec_meta_box_date_form input[type=text]{max-width:262px}#mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:75%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{padding:0 0 38px;background:#fff;min-width:210px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{line-height:16px;font-size:13px;font-weight:600;letter-spacing:.3px;color:#6a6f77;text-decoration:none;background:#f7f7f7;padding:13px 20px;border-bottom:1px solid #e3e3e3;outline:0;box-shadow:none;transition:all .2s ease}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{color:#008aff;background:#fff}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;margin:0 -6px;border-radius:5px;box-shadow:0 2px 12px -5px #36a2ff;border-bottom-color:transparent;position:relative}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media (max-width:550px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{min-width:100px}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{font-size:11px;padding:12px 8px;line-height:1.2;letter-spacing:0}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label{padding-right:20px}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=number],.mec-form-row input[type=text],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text]{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.mec-form-row input[type=checkbox]{background-color:#fff;border:1px solid #cacece;box-shadow:0 1px 2px rgba(0,0,0,.05);padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block;transition:all .18s ease;outline:0;margin:2px 4px 4px 0}.mec-form-row input[type=checkbox]:focus{outline:0}.mec-form-row input[type=checkbox]:hover{border-color:#62b6ff}.mec-form-row input[type=checkbox]:checked{box-shadow:0 1px 6px -2px #008aff;border-color:#008aff;background:#008aff;border-radius:2px;position:relative}.mec-form-row.mec-switcher input[type=checkbox]{position:absolute}.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:8px;border-right:2px solid transparent;border-bottom:2px solid transparent;transform:rotate(45deg);transform-origin:0 100%;color:#fff;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards}@keyframes checkbox-check{0%{width:0;height:0;border-color:#fff;transform:translate3d(0,0,0) rotate(45deg)}33%{width:5px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:5px;height:11px;border-color:#fff;transform:translate3d(0,-11px,0) rotate(45deg)}}.mec-form-row input+span.mec-tooltip,.mec-form-row select+span.mec-tooltip{bottom:10px}.mec-form-row label+span.mec-tooltip{bottom:8px}.mec-form-row textarea+span.mec-tooltip{bottom:auto;vertical-align:top;top:12px}.mec-form-row span+span.mec-tooltip{bottom:0;vertical-align:middle}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:45px 0 25px}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;margin:0}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#008aff}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#008aff}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:25px -30px -25px;background:#f5f5f5;box-shadow:inset 0 4px 7px rgba(0,0,0,.04);cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-weight:600!important;font-size:13px;color:#888;cursor:default}.wns-be-sidebar li:hover a i,.wns-be-sidebar>li:hover a{color:#008aff}.mec-form-row.mec-skin-list-date-format-container span.mec-tooltip{top:2px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #fff,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);padding:9px 10px 12px 34px;margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f5f5f5;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:normal}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:14px;top:14px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;margin-bottom:8px;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select-popup .list{display:none}.no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}
assets/img/add-sh-icon.png ADDED
Binary file
assets/img/popup/fifth-step.png ADDED
Binary file
assets/img/popup/first-step.png ADDED
Binary file
assets/img/popup/fourth-step.png ADDED
Binary file
assets/img/popup/index.html ADDED
File without changes
assets/img/popup/mec-logo.svg ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg id="mec_logo" data-name="mec logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="50" height="50" viewBox="0 0 50 50">
2
+ <defs>
3
+ <linearGradient id="linear-gradient" x1="0.177" y1="0.823" x2="0.968" y2="0.03" gradientUnits="objectBoundingBox">
4
+ <stop offset="0" stop-color="#582ef2"/>
5
+ <stop offset="1" stop-color="#04dcfe"/>
6
+ </linearGradient>
7
+ <linearGradient id="linear-gradient-2" x1="0.101" y1="1.106" x2="2.124" y2="-1.972" xlink:href="#linear-gradient"/>
8
+ <linearGradient id="linear-gradient-3" x1="-0.383" y1="1.915" x2="0.902" y2="-0.149" xlink:href="#linear-gradient"/>
9
+ </defs>
10
+ <path id="Path_1" data-name="Path 1" d="M45.88,0H4.057A4.052,4.052,0,0,0,0,4.062V46a4.039,4.039,0,0,0,4.057,4H45.943A4.052,4.052,0,0,0,50,45.937V4.062A4.146,4.146,0,0,0,45.88,0ZM4.057,1.813H45.943A2.172,2.172,0,0,1,48.127,4V9.937a3.781,3.781,0,0,0-2.184-.687H4.057a3.781,3.781,0,0,0-2.184.687V4.062A2.15,2.15,0,0,1,4.057,1.813Zm44.07,44.125a2.172,2.172,0,0,1-2.184,2.187H4.057a2.172,2.172,0,0,1-2.184-2.187V13.312a2.172,2.172,0,0,1,2.184-2.187H45.943a2.172,2.172,0,0,1,2.184,2.187V45.937Z" transform="translate(0 0)" fill="url(#linear-gradient)"/>
11
+ <ellipse id="Ellipse_1" data-name="Ellipse 1" cx="1.873" cy="1.875" rx="1.873" ry="1.875" transform="translate(7.241 3.5)" fill="#3378fc"/>
12
+ <ellipse id="Ellipse_2" data-name="Ellipse 2" cx="1.873" cy="1.875" rx="1.873" ry="1.875" transform="translate(38.951 3.5)" fill="#34e3fe"/>
13
+ <path id="Path_2" data-name="Path 2" d="M26.579,38.949A3.432,3.432,0,0,0,24.4,38.2H11.036v2H24.395a.791.791,0,0,1,.374.062,3.041,3.041,0,0,1,.437.188,1.3,1.3,0,0,1,.562,1.188.794.794,0,0,1-.062.375c-.062.188-.125.313-.187.5a1.3,1.3,0,0,1-1.186.561H13.471a3.433,3.433,0,0,0-2.184.75A3.1,3.1,0,0,0,10.1,46.449v2.375a1.075,1.075,0,0,0,1,1H26.829v-2H12.035V46.449a1.3,1.3,0,0,1,.562-1.189,1.191,1.191,0,0,1,.5-.188c.125,0,.25-.062.374-.062H24.395a3.093,3.093,0,0,0,2.622-1.188,3.493,3.493,0,0,0,.749-2.25A3.1,3.1,0,0,0,26.579,38.949Z" transform="translate(-3.795 -14.324)" fill="url(#linear-gradient-2)"/>
14
+ <path id="Path_3" data-name="Path 3" d="M56.32,38.2H44.086A3.2,3.2,0,0,0,40.9,41.324h2a1.318,1.318,0,0,1,.312-.813,1.033,1.033,0,0,1,.812-.312H56.258a1.315,1.315,0,0,1,.812.313.96.96,0,0,1,.312.813v.564a1.318,1.318,0,0,1-.312.813,1.033,1.033,0,0,1-.812.313H43.524v2h12.8a1.315,1.315,0,0,1,.812.312,1.036,1.036,0,0,1,.312.813v.5a1.318,1.318,0,0,1-.312.813,1.033,1.033,0,0,1-.812.312H44.086a1.315,1.315,0,0,1-.812-.312,1.036,1.036,0,0,1-.312-.813h-2a3.2,3.2,0,0,0,3.184,3.188H56.383a3.2,3.2,0,0,0,3.184-3.188V46.2a2.924,2.924,0,0,0-.812-2.127,3.025,3.025,0,0,0,.812-2.125v-.563A2.839,2.839,0,0,0,58.63,39.2a3.123,3.123,0,0,0-2.31-1Z" transform="translate(-15.372 -14.324)" fill="url(#linear-gradient-3)"/>
15
+ </svg>
assets/img/popup/popup-new-shortcode-plus.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 15 15">
2
+ <path id="plus" d="M12.8,12.8A7.5,7.5,0,0,1,0,7.5,7.5,7.5,0,0,1,12.8,2.2a7.5,7.5,0,0,1,0,10.606Zm-.884-9.722a6.249,6.249,0,1,0-8.837,8.838,6.249,6.249,0,1,0,8.837-8.838ZM10.625,8.125h-2.5v2.5a.625.625,0,0,1-1.25,0v-2.5h-2.5a.625.625,0,0,1,0-1.25h2.5v-2.5a.625.625,0,0,1,1.25,0v2.5h2.5a.625.625,0,0,1,0,1.25Z" fill="#fff" fill-rule="evenodd"/>
3
+ </svg>
assets/img/popup/popup-next-icon.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7">
2
+ <path id="icon" d="M8.879,5.8a.685.685,0,0,0,0,.99.738.738,0,0,0,1.022,0L12.788,4a.7.7,0,0,0,.157-.228.681.681,0,0,0,0-.535A.7.7,0,0,0,12.788,3L9.9.205a.739.739,0,0,0-1.022,0,.685.685,0,0,0,0,.99L10.535,2.8H.722a.7.7,0,1,0,0,1.4h9.813Z" fill="#fff" fill-rule="evenodd" opacity="0.4"/>
3
+ </svg>
assets/img/popup/popup-prev-icon.svg ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="13" height="7" viewBox="0 0 13 7">
2
+ <path id="icon" d="M8.879,7.028a.685.685,0,0,1,0-.99.738.738,0,0,1,1.022,0l2.888,2.8a.7.7,0,0,1,.157.228.681.681,0,0,1,0,.535.7.7,0,0,1-.157.228L9.9,12.628a.739.739,0,0,1-1.022,0,.685.685,0,0,1,0-.99l1.656-1.605H.722a.7.7,0,1,1,0-1.4h9.813Z" transform="translate(13 12.833) rotate(180)" fill="#c1c5c9" fill-rule="evenodd"/>
3
+ </svg>
assets/img/popup/sixth-step.png ADDED
Binary file
assets/js/jquery.nicescroll.min.js ADDED
@@ -0,0 +1,2 @@
 
 
1
+ /* jquery.nicescroll v3.7.6 InuYaksa - MIT - https://nicescroll.areaaperta.com */
2
+ !function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(function(e){"use strict";var o=!1,t=!1,r=0,i=2e3,s=0,n=e,l=document,a=window,c=n(a),d=[],u=a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||!1,h=a.cancelAnimationFrame||a.webkitCancelAnimationFrame||a.mozCancelAnimationFrame||!1;if(u)a.cancelAnimationFrame||(h=function(e){});else{var p=0;u=function(e,o){var t=(new Date).getTime(),r=Math.max(0,16-(t-p)),i=a.setTimeout(function(){e(t+r)},r);return p=t+r,i},h=function(e){a.clearTimeout(e)}}var m=a.MutationObserver||a.WebKitMutationObserver||!1,f=Date.now||function(){return(new Date).getTime()},g={zindex:"auto",cursoropacitymin:0,cursoropacitymax:1,cursorcolor:"#424242",cursorwidth:"6px",cursorborder:"1px solid #fff",cursorborderradius:"5px",scrollspeed:40,mousescrollstep:27,touchbehavior:!1,emulatetouch:!1,hwacceleration:!0,usetransition:!0,boxzoom:!1,dblclickzoom:!0,gesturezoom:!0,grabcursorenabled:!0,autohidemode:!0,background:"",iframeautoresize:!0,cursorminheight:32,preservenativescrolling:!0,railoffset:!1,railhoffset:!1,bouncescroll:!0,spacebarenabled:!0,railpadding:{top:0,right:0,left:0,bottom:0},disableoutline:!0,horizrailenabled:!0,railalign:"right",railvalign:"bottom",enabletranslate3d:!0,enablemousewheel:!0,enablekeyboard:!0,smoothscroll:!0,sensitiverail:!0,enablemouselockapi:!0,cursorfixedheight:!1,directionlockdeadzone:6,hidecursordelay:400,nativeparentscrolling:!0,enablescrollonselection:!0,overflowx:!0,overflowy:!0,cursordragspeed:.3,rtlmode:"auto",cursordragontouch:!1,oneaxismousemode:"auto",scriptpath:function(){var e=l.currentScript||function(){var e=l.getElementsByTagName("script");return!!e.length&&e[e.length-1]}(),o=e?e.src.split("?")[0]:"";return o.split("/").length>0?o.split("/").slice(0,-1).join("/")+"/":""}(),preventmultitouchscrolling:!0,disablemutationobserver:!1,enableobserver:!0,scrollbarid:!1},v=!1,w=function(){if(v)return v;var e=l.createElement("DIV"),o=e.style,t=navigator.userAgent,r=navigator.platform,i={};return i.haspointerlock="pointerLockElement"in l||"webkitPointerLockElement"in l||"mozPointerLockElement"in l,i.isopera="opera"in a,i.isopera12=i.isopera&&"getUserMedia"in navigator,i.isoperamini="[object OperaMini]"===Object.prototype.toString.call(a.operamini),i.isie="all"in l&&"attachEvent"in e&&!i.isopera,i.isieold=i.isie&&!("msInterpolationMode"in o),i.isie7=i.isie&&!i.isieold&&(!("documentMode"in l)||7===l.documentMode),i.isie8=i.isie&&"documentMode"in l&&8===l.documentMode,i.isie9=i.isie&&"performance"in a&&9===l.documentMode,i.isie10=i.isie&&"performance"in a&&10===l.documentMode,i.isie11="msRequestFullscreen"in e&&l.documentMode>=11,i.ismsedge="msCredentials"in a,i.ismozilla="MozAppearance"in o,i.iswebkit=!i.ismsedge&&"WebkitAppearance"in o,i.ischrome=i.iswebkit&&"chrome"in a,i.ischrome38=i.ischrome&&"touchAction"in o,i.ischrome22=!i.ischrome38&&i.ischrome&&i.haspointerlock,i.ischrome26=!i.ischrome38&&i.ischrome&&"transition"in o,i.cantouch="ontouchstart"in l.documentElement||"ontouchstart"in a,i.hasw3ctouch=(a.PointerEvent||!1)&&(navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0),i.hasmstouch=!i.hasw3ctouch&&(a.MSPointerEvent||!1),i.ismac=/^mac$/i.test(r),i.isios=i.cantouch&&/iphone|ipad|ipod/i.test(r),i.isios4=i.isios&&!("seal"in Object),i.isios7=i.isios&&"webkitHidden"in l,i.isios8=i.isios&&"hidden"in l,i.isios10=i.isios&&a.Proxy,i.isandroid=/android/i.test(t),i.haseventlistener="addEventListener"in e,i.trstyle=!1,i.hastransform=!1,i.hastranslate3d=!1,i.transitionstyle=!1,i.hastransition=!1,i.transitionend=!1,i.trstyle="transform",i.hastransform="transform"in o||function(){for(var e=["msTransform","webkitTransform","MozTransform","OTransform"],t=0,r=e.length;t<r;t++)if(void 0!==o[e[t]]){i.trstyle=e[t];break}i.hastransform=!!i.trstyle}(),i.hastransform&&(o[i.trstyle]="translate3d(1px,2px,3px)",i.hastranslate3d=/translate3d/.test(o[i.trstyle])),i.transitionstyle="transition",i.prefixstyle="",i.transitionend="transitionend",i.hastransition="transition"in o||function(){i.transitionend=!1;for(var e=["webkitTransition","msTransition","MozTransition","OTransition","OTransition","KhtmlTransition"],t=["-webkit-","-ms-","-moz-","-o-","-o","-khtml-"],r=["webkitTransitionEnd","msTransitionEnd","transitionend","otransitionend","oTransitionEnd","KhtmlTransitionEnd"],s=0,n=e.length;s<n;s++)if(e[s]in o){i.transitionstyle=e[s],i.prefixstyle=t[s],i.transitionend=r[s];break}i.ischrome26&&(i.prefixstyle=t[1]),i.hastransition=i.transitionstyle}(),i.cursorgrabvalue=function(){var e=["grab","-webkit-grab","-moz-grab"];(i.ischrome&&!i.ischrome38||i.isie)&&(e=[]);for(var t=0,r=e.length;t<r;t++){var s=e[t];if(o.cursor=s,o.cursor==s)return s}return"url(https://cdnjs.cloudflare.com/ajax/libs/slider-pro/1.3.0/css/images/openhand.cur),n-resize"}(),i.hasmousecapture="setCapture"in e,i.hasMutationObserver=!1!==m,e=null,v=i,i},b=function(e,p){function v(){var e=T.doc.css(P.trstyle);return!(!e||"matrix"!=e.substr(0,6))&&e.replace(/^.*\((.*)\)$/g,"$1").replace(/px/g,"").split(/, +/)}function b(){var e=T.win;if("zIndex"in e)return e.zIndex();for(;e.length>0;){if(9==e[0].nodeType)return!1;var o=e.css("zIndex");if(!isNaN(o)&&0!==o)return parseInt(o);e=e.parent()}return!1}function x(e,o,t){var r=e.css(o),i=parseFloat(r);if(isNaN(i)){var s=3==(i=I[r]||0)?t?T.win.outerHeight()-T.win.innerHeight():T.win.outerWidth()-T.win.innerWidth():1;return T.isie8&&i&&(i+=1),s?i:0}return i}function S(e,o,t,r){T._bind(e,o,function(r){var i={original:r=r||a.event,target:r.target||r.srcElement,type:"wheel",deltaMode:"MozMousePixelScroll"==r.type?0:1,deltaX:0,deltaZ:0,preventDefault:function(){return r.preventDefault?r.preventDefault():r.returnValue=!1,!1},stopImmediatePropagation:function(){r.stopImmediatePropagation?r.stopImmediatePropagation():r.cancelBubble=!0}};return"mousewheel"==o?(r.wheelDeltaX&&(i.deltaX=-.025*r.wheelDeltaX),r.wheelDeltaY&&(i.deltaY=-.025*r.wheelDeltaY),!i.deltaY&&!i.deltaX&&(i.deltaY=-.025*r.wheelDelta)):i.deltaY=r.detail,t.call(e,i)},r)}function z(e,o,t,r){T.scrollrunning||(T.newscrolly=T.getScrollTop(),T.newscrollx=T.getScrollLeft(),D=f());var i=f()-D;if(D=f(),i>350?A=1:A+=(2-A)/10,e=e*A|0,o=o*A|0,e){if(r)if(e<0){if(T.getScrollLeft()>=T.page.maxw)return!0}else if(T.getScrollLeft()<=0)return!0;var s=e>0?1:-1;X!==s&&(T.scrollmom&&T.scrollmom.stop(),T.newscrollx=T.getScrollLeft(),X=s),T.lastdeltax-=e}if(o){if(function(){var e=T.getScrollTop();if(o<0){if(e>=T.page.maxh)return!0}else if(e<=0)return!0}()){if(M.nativeparentscrolling&&t&&!T.ispage&&!T.zoomactive)return!0;var n=T.view.h>>1;T.newscrolly<-n?(T.newscrolly=-n,o=-1):T.newscrolly>T.page.maxh+n?(T.newscrolly=T.page.maxh+n,o=1):o=0}var l=o>0?1:-1;B!==l&&(T.scrollmom&&T.scrollmom.stop(),T.newscrolly=T.getScrollTop(),B=l),T.lastdeltay-=o}(o||e)&&T.synched("relativexy",function(){var e=T.lastdeltay+T.newscrolly;T.lastdeltay=0;var o=T.lastdeltax+T.newscrollx;T.lastdeltax=0,T.rail.drag||T.doScrollPos(o,e)})}function k(e,o,t){var r,i;return!(t||!q)||(0===e.deltaMode?(r=-e.deltaX*(M.mousescrollstep/54)|0,i=-e.deltaY*(M.mousescrollstep/54)|0):1===e.deltaMode&&(r=-e.deltaX*M.mousescrollstep*50/80|0,i=-e.deltaY*M.mousescrollstep*50/80|0),o&&M.oneaxismousemode&&0===r&&i&&(r=i,i=0,t&&(r<0?T.getScrollLeft()>=T.page.maxw:T.getScrollLeft()<=0)&&(i=r,r=0)),T.isrtlmode&&(r=-r),z(r,i,t,!0)?void(t&&(q=!0)):(q=!1,e.stopImmediatePropagation(),e.preventDefault()))}var T=this;this.version="3.7.6",this.name="nicescroll",this.me=p;var E=n("body"),M=this.opt={doc:E,win:!1};if(n.extend(M,g),M.snapbackspeed=80,e)for(var L in M)void 0!==e[L]&&(M[L]=e[L]);if(M.disablemutationobserver&&(m=!1),this.doc=M.doc,this.iddoc=this.doc&&this.doc[0]?this.doc[0].id||"":"",this.ispage=/^BODY|HTML/.test(M.win?M.win[0].nodeName:this.doc[0].nodeName),this.haswrapper=!1!==M.win,this.win=M.win||(this.ispage?c:this.doc),this.docscroll=this.ispage&&!this.haswrapper?c:this.win,this.body=E,this.viewport=!1,this.isfixed=!1,this.iframe=!1,this.isiframe="IFRAME"==this.doc[0].nodeName&&"IFRAME"==this.win[0].nodeName,this.istextarea="TEXTAREA"==this.win[0].nodeName,this.forcescreen=!1,this.canshowonmouseevent="scroll"!=M.autohidemode,this.onmousedown=!1,this.onmouseup=!1,this.onmousemove=!1,this.onmousewheel=!1,this.onkeypress=!1,this.ongesturezoom=!1,this.onclick=!1,this.onscrollstart=!1,this.onscrollend=!1,this.onscrollcancel=!1,this.onzoomin=!1,this.onzoomout=!1,this.view=!1,this.page=!1,this.scroll={x:0,y:0},this.scrollratio={x:0,y:0},this.cursorheight=20,this.scrollvaluemax=0,"auto"==M.rtlmode){var C=this.win[0]==a?this.body:this.win,N=C.css("writing-mode")||C.css("-webkit-writing-mode")||C.css("-ms-writing-mode")||C.css("-moz-writing-mode");"horizontal-tb"==N||"lr-tb"==N||""===N?(this.isrtlmode="rtl"==C.css("direction"),this.isvertical=!1):(this.isrtlmode="vertical-rl"==N||"tb"==N||"tb-rl"==N||"rl-tb"==N,this.isvertical="vertical-rl"==N||"tb"==N||"tb-rl"==N)}else this.isrtlmode=!0===M.rtlmode,this.isvertical=!1;if(this.scrollrunning=!1,this.scrollmom=!1,this.observer=!1,this.observerremover=!1,this.observerbody=!1,!1!==M.scrollbarid)this.id=M.scrollbarid;else do{this.id="ascrail"+i++}while(l.getElementById(this.id));this.rail=!1,this.cursor=!1,this.cursorfreezed=!1,this.selectiondrag=!1,this.zoom=!1,this.zoomactive=!1,this.hasfocus=!1,this.hasmousefocus=!1,this.railslocked=!1,this.locked=!1,this.hidden=!1,this.cursoractive=!0,this.wheelprevented=!1,this.overflowx=M.overflowx,this.overflowy=M.overflowy,this.nativescrollingarea=!1,this.checkarea=0,this.events=[],this.saved={},this.delaylist={},this.synclist={},this.lastdeltax=0,this.lastdeltay=0,this.detected=w();var P=n.extend({},this.detected);this.canhwscroll=P.hastransform&&M.hwacceleration,this.ishwscroll=this.canhwscroll&&T.haswrapper,this.isrtlmode?this.isvertical?this.hasreversehr=!(P.iswebkit||P.isie||P.isie11):this.hasreversehr=!(P.iswebkit||P.isie&&!P.isie10&&!P.isie11):this.hasreversehr=!1,this.istouchcapable=!1,P.cantouch||!P.hasw3ctouch&&!P.hasmstouch?!P.cantouch||P.isios||P.isandroid||!P.iswebkit&&!P.ismozilla||(this.istouchcapable=!0):this.istouchcapable=!0,M.enablemouselockapi||(P.hasmousecapture=!1,P.haspointerlock=!1),this.debounced=function(e,o,t){T&&(T.delaylist[e]||!1||(T.delaylist[e]={h:u(function(){T.delaylist[e].fn.call(T),T.delaylist[e]=!1},t)},o.call(T)),T.delaylist[e].fn=o)},this.synched=function(e,o){T.synclist[e]?T.synclist[e]=o:(T.synclist[e]=o,u(function(){T&&(T.synclist[e]&&T.synclist[e].call(T),T.synclist[e]=null)}))},this.unsynched=function(e){T.synclist[e]&&(T.synclist[e]=!1)},this.css=function(e,o){for(var t in o)T.saved.css.push([e,t,e.css(t)]),e.css(t,o[t])},this.scrollTop=function(e){return void 0===e?T.getScrollTop():T.setScrollTop(e)},this.scrollLeft=function(e){return void 0===e?T.getScrollLeft():T.setScrollLeft(e)};var R=function(e,o,t,r,i,s,n){this.st=e,this.ed=o,this.spd=t,this.p1=r||0,this.p2=i||1,this.p3=s||0,this.p4=n||1,this.ts=f(),this.df=o-e};if(R.prototype={B2:function(e){return 3*(1-e)*(1-e)*e},B3:function(e){return 3*(1-e)*e*e},B4:function(e){return e*e*e},getPos:function(){return(f()-this.ts)/this.spd},getNow:function(){var e=(f()-this.ts)/this.spd,o=this.B2(e)+this.B3(e)+this.B4(e);return e>=1?this.ed:this.st+this.df*o|0},update:function(e,o){return this.st=this.getNow(),this.ed=e,this.spd=o,this.ts=f(),this.df=this.ed-this.st,this}},this.ishwscroll){this.doc.translate={x:0,y:0,tx:"0px",ty:"0px"},P.hastranslate3d&&P.isios&&this.doc.css("-webkit-backface-visibility","hidden"),this.getScrollTop=function(e){if(!e){var o=v();if(o)return 16==o.length?-o[13]:-o[5];if(T.timerscroll&&T.timerscroll.bz)return T.timerscroll.bz.getNow()}return T.doc.translate.y},this.getScrollLeft=function(e){if(!e){var o=v();if(o)return 16==o.length?-o[12]:-o[4];if(T.timerscroll&&T.timerscroll.bh)return T.timerscroll.bh.getNow()}return T.doc.translate.x},this.notifyScrollEvent=function(e){var o=l.createEvent("UIEvents");o.initUIEvent("scroll",!1,!1,a,1),o.niceevent=!0,e.dispatchEvent(o)};var _=this.isrtlmode?1:-1;P.hastranslate3d&&M.enabletranslate3d?(this.setScrollTop=function(e,o){T.doc.translate.y=e,T.doc.translate.ty=-1*e+"px",T.doc.css(P.trstyle,"translate3d("+T.doc.translate.tx+","+T.doc.translate.ty+",0)"),o||T.notifyScrollEvent(T.win[0])},this.setScrollLeft=function(e,o){T.doc.translate.x=e,T.doc.translate.tx=e*_+"px",T.doc.css(P.trstyle,"translate3d("+T.doc.translate.tx+","+T.doc.translate.ty+",0)"),o||T.notifyScrollEvent(T.win[0])}):(this.setScrollTop=function(e,o){T.doc.translate.y=e,T.doc.translate.ty=-1*e+"px",T.doc.css(P.trstyle,"translate("+T.doc.translate.tx+","+T.doc.translate.ty+")"),o||T.notifyScrollEvent(T.win[0])},this.setScrollLeft=function(e,o){T.doc.translate.x=e,T.doc.translate.tx=e*_+"px",T.doc.css(P.trstyle,"translate("+T.doc.translate.tx+","+T.doc.translate.ty+")"),o||T.notifyScrollEvent(T.win[0])})}else this.getScrollTop=function(){return T.docscroll.scrollTop()},this.setScrollTop=function(e){T.docscroll.scrollTop(e)},this.getScrollLeft=function(){return T.hasreversehr?T.detected.ismozilla?T.page.maxw-Math.abs(T.docscroll.scrollLeft()):T.page.maxw-T.docscroll.scrollLeft():T.docscroll.scrollLeft()},this.setScrollLeft=function(e){return setTimeout(function(){if(T)return T.hasreversehr&&(e=T.detected.ismozilla?-(T.page.maxw-e):T.page.maxw-e),T.docscroll.scrollLeft(e)},1)};this.getTarget=function(e){return!!e&&(e.target?e.target:!!e.srcElement&&e.srcElement)},this.hasParent=function(e,o){if(!e)return!1;for(var t=e.target||e.srcElement||e||!1;t&&t.id!=o;)t=t.parentNode||!1;return!1!==t};var I={thin:1,medium:3,thick:5};this.getDocumentScrollOffset=function(){return{top:a.pageYOffset||l.documentElement.scrollTop,left:a.pageXOffset||l.documentElement.scrollLeft}},this.getOffset=function(){if(T.isfixed){var e=T.win.offset(),o=T.getDocumentScrollOffset();return e.top-=o.top,e.left-=o.left,e}var t=T.win.offset();if(!T.viewport)return t;var r=T.viewport.offset();return{top:t.top-r.top,left:t.left-r.left}},this.updateScrollBar=function(e){var o,t;if(T.ishwscroll)T.rail.css({height:T.win.innerHeight()-(M.railpadding.top+M.railpadding.bottom)}),T.railh&&T.railh.css({width:T.win.innerWidth()-(M.railpadding.left+M.railpadding.right)});else{var r=T.getOffset();if(o={top:r.top,left:r.left-(M.railpadding.left+M.railpadding.right)},o.top+=x(T.win,"border-top-width",!0),o.left+=T.rail.align?T.win.outerWidth()-x(T.win,"border-right-width")-T.rail.width:x(T.win,"border-left-width"),(t=M.railoffset)&&(t.top&&(o.top+=t.top),t.left&&(o.left+=t.left)),T.railslocked||T.rail.css({top:o.top,left:o.left,height:(e?e.h:T.win.innerHeight())-(M.railpadding.top+M.railpadding.bottom)}),T.zoom&&T.zoom.css({top:o.top+1,left:1==T.rail.align?o.left-20:o.left+T.rail.width+4}),T.railh&&!T.railslocked){o={top:r.top,left:r.left},(t=M.railhoffset)&&(t.top&&(o.top+=t.top),t.left&&(o.left+=t.left));var i=T.railh.align?o.top+x(T.win,"border-top-width",!0)+T.win.innerHeight()-T.railh.height:o.top+x(T.win,"border-top-width",!0),s=o.left+x(T.win,"border-left-width");T.railh.css({top:i-(M.railpadding.top+M.railpadding.bottom),left:s,width:T.railh.width})}}},this.doRailClick=function(e,o,t){var r,i,s,n;T.railslocked||(T.cancelEvent(e),"pageY"in e||(e.pageX=e.clientX+l.documentElement.scrollLeft,e.pageY=e.clientY+l.documentElement.scrollTop),o?(r=t?T.doScrollLeft:T.doScrollTop,s=t?(e.pageX-T.railh.offset().left-T.cursorwidth/2)*T.scrollratio.x:(e.pageY-T.rail.offset().top-T.cursorheight/2)*T.scrollratio.y,T.unsynched("relativexy"),r(0|s)):(r=t?T.doScrollLeftBy:T.doScrollBy,s=t?T.scroll.x:T.scroll.y,n=t?e.pageX-T.railh.offset().left:e.pageY-T.rail.offset().top,i=t?T.view.w:T.view.h,r(s>=n?i:-i)))},T.newscrolly=T.newscrollx=0,T.hasanimationframe="requestAnimationFrame"in a,T.hascancelanimationframe="cancelAnimationFrame"in a,T.hasborderbox=!1,this.init=function(){if(T.saved.css=[],P.isoperamini)return!0;if(P.isandroid&&!("hidden"in l))return!0;M.emulatetouch=M.emulatetouch||M.touchbehavior,T.hasborderbox=a.getComputedStyle&&"border-box"===a.getComputedStyle(l.body)["box-sizing"];var e={"overflow-y":"hidden"};if((P.isie11||P.isie10)&&(e["-ms-overflow-style"]="none"),T.ishwscroll&&(this.doc.css(P.transitionstyle,P.prefixstyle+"transform 0ms ease-out"),P.transitionend&&T.bind(T.doc,P.transitionend,T.onScrollTransitionEnd,!1)),T.zindex="auto",T.ispage||"auto"!=M.zindex?T.zindex=M.zindex:T.zindex=b()||"auto",!T.ispage&&"auto"!=T.zindex&&T.zindex>s&&(s=T.zindex),T.isie&&0===T.zindex&&"auto"==M.zindex&&(T.zindex="auto"),!T.ispage||!P.isieold){var i=T.docscroll;T.ispage&&(i=T.haswrapper?T.win:T.doc),T.css(i,e),T.ispage&&(P.isie11||P.isie)&&T.css(n("html"),e),!P.isios||T.ispage||T.haswrapper||T.css(E,{"-webkit-overflow-scrolling":"touch"});var d=n(l.createElement("div"));d.css({position:"relative",top:0,float:"right",width:M.cursorwidth,height:0,"background-color":M.cursorcolor,border:M.cursorborder,"background-clip":"padding-box","-webkit-border-radius":M.cursorborderradius,"-moz-border-radius":M.cursorborderradius,"border-radius":M.cursorborderradius}),d.addClass("nicescroll-cursors"),T.cursor=d;var u=n(l.createElement("div"));u.attr("id",T.id),u.addClass("nicescroll-rails nicescroll-rails-vr");var h,p,f=["left","right","top","bottom"];for(var g in f)p=f[g],(h=M.railpadding[p]||0)&&u.css("padding-"+p,h+"px");u.append(d),u.width=Math.max(parseFloat(M.cursorwidth),d.outerWidth()),u.css({width:u.width+"px",zIndex:T.zindex,background:M.background,cursor:"default"}),u.visibility=!0,u.scrollable=!0,u.align="left"==M.railalign?0:1,T.rail=u,T.rail.drag=!1;var v=!1;!M.boxzoom||T.ispage||P.isieold||(v=l.createElement("div"),T.bind(v,"click",T.doZoom),T.bind(v,"mouseenter",function(){T.zoom.css("opacity",M.cursoropacitymax)}),T.bind(v,"mouseleave",function(){T.zoom.css("opacity",M.cursoropacitymin)}),T.zoom=n(v),T.zoom.css({cursor:"pointer",zIndex:T.zindex,backgroundImage:"url("+M.scriptpath+"zoomico.png)",height:18,width:18,backgroundPosition:"0 0"}),M.dblclickzoom&&T.bind(T.win,"dblclick",T.doZoom),P.cantouch&&M.gesturezoom&&(T.ongesturezoom=function(e){return e.scale>1.5&&T.doZoomIn(e),e.scale<.8&&T.doZoomOut(e),T.cancelEvent(e)},T.bind(T.win,"gestureend",T.ongesturezoom))),T.railh=!1;var w;if(M.horizrailenabled&&(T.css(i,{overflowX:"hidden"}),(d=n(l.createElement("div"))).css({position:"absolute",top:0,height:M.cursorwidth,width:0,backgroundColor:M.cursorcolor,border:M.cursorborder,backgroundClip:"padding-box","-webkit-border-radius":M.cursorborderradius,"-moz-border-radius":M.cursorborderradius,"border-radius":M.cursorborderradius}),P.isieold&&d.css("overflow","hidden"),d.addClass("nicescroll-cursors"),T.cursorh=d,(w=n(l.createElement("div"))).attr("id",T.id+"-hr"),w.addClass("nicescroll-rails nicescroll-rails-hr"),w.height=Math.max(parseFloat(M.cursorwidth),d.outerHeight()),w.css({height:w.height+"px",zIndex:T.zindex,background:M.background}),w.append(d),w.visibility=!0,w.scrollable=!0,w.align="top"==M.railvalign?0:1,T.railh=w,T.railh.drag=!1),T.ispage)u.css({position:"fixed",top:0,height:"100%"}),u.css(u.align?{right:0}:{left:0}),T.body.append(u),T.railh&&(w.css({position:"fixed",left:0,width:"100%"}),w.css(w.align?{bottom:0}:{top:0}),T.body.append(w));else{if(T.ishwscroll){"static"==T.win.css("position")&&T.css(T.win,{position:"relative"});var x="HTML"==T.win[0].nodeName?T.body:T.win;n(x).scrollTop(0).scrollLeft(0),T.zoom&&(T.zoom.css({position:"absolute",top:1,right:0,"margin-right":u.width+4}),x.append(T.zoom)),u.css({position:"absolute",top:0}),u.css(u.align?{right:0}:{left:0}),x.append(u),w&&(w.css({position:"absolute",left:0,bottom:0}),w.css(w.align?{bottom:0}:{top:0}),x.append(w))}else{T.isfixed="fixed"==T.win.css("position");var S=T.isfixed?"fixed":"absolute";T.isfixed||(T.viewport=T.getViewport(T.win[0])),T.viewport&&(T.body=T.viewport,/fixed|absolute/.test(T.viewport.css("position"))||T.css(T.viewport,{position:"relative"})),u.css({position:S}),T.zoom&&T.zoom.css({position:S}),T.updateScrollBar(),T.body.append(u),T.zoom&&T.body.append(T.zoom),T.railh&&(w.css({position:S}),T.body.append(w))}P.isios&&T.css(T.win,{"-webkit-tap-highlight-color":"rgba(0,0,0,0)","-webkit-touch-callout":"none"}),M.disableoutline&&(P.isie&&T.win.attr("hideFocus","true"),P.iswebkit&&T.win.css("outline","none"))}if(!1===M.autohidemode?(T.autohidedom=!1,T.rail.css({opacity:M.cursoropacitymax}),T.railh&&T.railh.css({opacity:M.cursoropacitymax})):!0===M.autohidemode||"leave"===M.autohidemode?(T.autohidedom=n().add(T.rail),P.isie8&&(T.autohidedom=T.autohidedom.add(T.cursor)),T.railh&&(T.autohidedom=T.autohidedom.add(T.railh)),T.railh&&P.isie8&&(T.autohidedom=T.autohidedom.add(T.cursorh))):"scroll"==M.autohidemode?(T.autohidedom=n().add(T.rail),T.railh&&(T.autohidedom=T.autohidedom.add(T.railh))):"cursor"==M.autohidemode?(T.autohidedom=n().add(T.cursor),T.railh&&(T.autohidedom=T.autohidedom.add(T.cursorh))):"hidden"==M.autohidemode&&(T.autohidedom=!1,T.hide(),T.railslocked=!1),P.cantouch||T.istouchcapable||M.emulatetouch||P.hasmstouch){T.scrollmom=new y(T);T.ontouchstart=function(e){if(T.locked)return!1;if(e.pointerType&&("mouse"===e.pointerType||e.pointerType===e.MSPOINTER_TYPE_MOUSE))return!1;if(T.hasmoving=!1,T.scrollmom.timer&&(T.triggerScrollEnd(),T.scrollmom.stop()),!T.railslocked){var o=T.getTarget(e);if(o&&/INPUT/i.test(o.nodeName)&&/range/i.test(o.type))return T.stopPropagation(e);var t="mousedown"===e.type;if(!("clientX"in e)&&"changedTouches"in e&&(e.clientX=e.changedTouches[0].clientX,e.clientY=e.changedTouches[0].clientY),T.forcescreen){var r=e;(e={original:e.original?e.original:e}).clientX=r.screenX,e.clientY=r.screenY}if(T.rail.drag={x:e.clientX,y:e.clientY,sx:T.scroll.x,sy:T.scroll.y,st:T.getScrollTop(),sl:T.getScrollLeft(),pt:2,dl:!1,tg:o},T.ispage||!M.directionlockdeadzone)T.rail.drag.dl="f";else{var i={w:c.width(),h:c.height()},s=T.getContentSize(),l=s.h-i.h,a=s.w-i.w;T.rail.scrollable&&!T.railh.scrollable?T.rail.drag.ck=l>0&&"v":!T.rail.scrollable&&T.railh.scrollable?T.rail.drag.ck=a>0&&"h":T.rail.drag.ck=!1}if(M.emulatetouch&&T.isiframe&&P.isie){var d=T.win.position();T.rail.drag.x+=d.left,T.rail.drag.y+=d.top}if(T.hasmoving=!1,T.lastmouseup=!1,T.scrollmom.reset(e.clientX,e.clientY),o&&t){if(!/INPUT|SELECT|BUTTON|TEXTAREA/i.test(o.nodeName))return P.hasmousecapture&&o.setCapture(),M.emulatetouch?(o.onclick&&!o._onclick&&(o._onclick=o.onclick,o.onclick=function(e){if(T.hasmoving)return!1;o._onclick.call(this,e)}),T.cancelEvent(e)):T.stopPropagation(e);/SUBMIT|CANCEL|BUTTON/i.test(n(o).attr("type"))&&(T.preventclick={tg:o,click:!1})}}},T.ontouchend=function(e){if(!T.rail.drag)return!0;if(2==T.rail.drag.pt){if(e.pointerType&&("mouse"===e.pointerType||e.pointerType===e.MSPOINTER_TYPE_MOUSE))return!1;T.rail.drag=!1;var o="mouseup"===e.type;if(T.hasmoving&&(T.scrollmom.doMomentum(),T.lastmouseup=!0,T.hideCursor(),P.hasmousecapture&&l.releaseCapture(),o))return T.cancelEvent(e)}else if(1==T.rail.drag.pt)return T.onmouseup(e)};var z=M.emulatetouch&&T.isiframe&&!P.hasmousecapture,k=.3*M.directionlockdeadzone|0;T.ontouchmove=function(e,o){if(!T.rail.drag)return!0;if(e.targetTouches&&M.preventmultitouchscrolling&&e.targetTouches.length>1)return!0;if(e.pointerType&&("mouse"===e.pointerType||e.pointerType===e.MSPOINTER_TYPE_MOUSE))return!0;if(2==T.rail.drag.pt){"changedTouches"in e&&(e.clientX=e.changedTouches[0].clientX,e.clientY=e.changedTouches[0].clientY);var t,r;if(r=t=0,z&&!o){var i=T.win.position();r=-i.left,t=-i.top}var s=e.clientY+t,n=s-T.rail.drag.y,a=e.clientX+r,c=a-T.rail.drag.x,d=T.rail.drag.st-n;if(T.ishwscroll&&M.bouncescroll)d<0?d=Math.round(d/2):d>T.page.maxh&&(d=T.page.maxh+Math.round((d-T.page.maxh)/2));else if(d<0?(d=0,s=0):d>T.page.maxh&&(d=T.page.maxh,s=0),0===s&&!T.hasmoving)return T.ispage||(T.rail.drag=!1),!0;var u=T.getScrollLeft();if(T.railh&&T.railh.scrollable&&(u=T.isrtlmode?c-T.rail.drag.sl:T.rail.drag.sl-c,T.ishwscroll&&M.bouncescroll?u<0?u=Math.round(u/2):u>T.page.maxw&&(u=T.page.maxw+Math.round((u-T.page.maxw)/2)):(u<0&&(u=0,a=0),u>T.page.maxw&&(u=T.page.maxw,a=0))),!T.hasmoving){if(T.rail.drag.y===e.clientY&&T.rail.drag.x===e.clientX)return T.cancelEvent(e);var h=Math.abs(n),p=Math.abs(c),m=M.directionlockdeadzone;if(T.rail.drag.ck?"v"==T.rail.drag.ck?p>m&&h<=k?T.rail.drag=!1:h>m&&(T.rail.drag.dl="v"):"h"==T.rail.drag.ck&&(h>m&&p<=k?T.rail.drag=!1:p>m&&(T.rail.drag.dl="h")):h>m&&p>m?T.rail.drag.dl="f":h>m?T.rail.drag.dl=p>k?"f":"v":p>m&&(T.rail.drag.dl=h>k?"f":"h"),!T.rail.drag.dl)return T.cancelEvent(e);T.triggerScrollStart(e.clientX,e.clientY,0,0,0),T.hasmoving=!0}return T.preventclick&&!T.preventclick.click&&(T.preventclick.click=T.preventclick.tg.onclick||!1,T.preventclick.tg.onclick=T.onpreventclick),T.rail.drag.dl&&("v"==T.rail.drag.dl?u=T.rail.drag.sl:"h"==T.rail.drag.dl&&(d=T.rail.drag.st)),T.synched("touchmove",function(){T.rail.drag&&2==T.rail.drag.pt&&(T.prepareTransition&&T.resetTransition(),T.rail.scrollable&&T.setScrollTop(d),T.scrollmom.update(a,s),T.railh&&T.railh.scrollable?(T.setScrollLeft(u),T.showCursor(d,u)):T.showCursor(d),P.isie10&&l.selection.clear())}),T.cancelEvent(e)}return 1==T.rail.drag.pt?T.onmousemove(e):void 0},T.ontouchstartCursor=function(e,o){if(!T.rail.drag||3==T.rail.drag.pt){if(T.locked)return T.cancelEvent(e);T.cancelScroll(),T.rail.drag={x:e.touches[0].clientX,y:e.touches[0].clientY,sx:T.scroll.x,sy:T.scroll.y,pt:3,hr:!!o};var t=T.getTarget(e);return!T.ispage&&P.hasmousecapture&&t.setCapture(),T.isiframe&&!P.hasmousecapture&&(T.saved.csspointerevents=T.doc.css("pointer-events"),T.css(T.doc,{"pointer-events":"none"})),T.cancelEvent(e)}},T.ontouchendCursor=function(e){if(T.rail.drag){if(P.hasmousecapture&&l.releaseCapture(),T.isiframe&&!P.hasmousecapture&&T.doc.css("pointer-events",T.saved.csspointerevents),3!=T.rail.drag.pt)return;return T.rail.drag=!1,T.cancelEvent(e)}},T.ontouchmoveCursor=function(e){if(T.rail.drag){if(3!=T.rail.drag.pt)return;if(T.cursorfreezed=!0,T.rail.drag.hr){T.scroll.x=T.rail.drag.sx+(e.touches[0].clientX-T.rail.drag.x),T.scroll.x<0&&(T.scroll.x=0);var o=T.scrollvaluemaxw;T.scroll.x>o&&(T.scroll.x=o)}else{T.scroll.y=T.rail.drag.sy+(e.touches[0].clientY-T.rail.drag.y),T.scroll.y<0&&(T.scroll.y=0);var t=T.scrollvaluemax;T.scroll.y>t&&(T.scroll.y=t)}return T.synched("touchmove",function(){T.rail.drag&&3==T.rail.drag.pt&&(T.showCursor(),T.rail.drag.hr?T.doScrollLeft(Math.round(T.scroll.x*T.scrollratio.x),M.cursordragspeed):T.doScrollTop(Math.round(T.scroll.y*T.scrollratio.y),M.cursordragspeed))}),T.cancelEvent(e)}}}if(T.onmousedown=function(e,o){if(!T.rail.drag||1==T.rail.drag.pt){if(T.railslocked)return T.cancelEvent(e);T.cancelScroll(),T.rail.drag={x:e.clientX,y:e.clientY,sx:T.scroll.x,sy:T.scroll.y,pt:1,hr:o||!1};var t=T.getTarget(e);return P.hasmousecapture&&t.setCapture(),T.isiframe&&!P.hasmousecapture&&(T.saved.csspointerevents=T.doc.css("pointer-events"),T.css(T.doc,{"pointer-events":"none"})),T.hasmoving=!1,T.cancelEvent(e)}},T.onmouseup=function(e){if(T.rail.drag)return 1!=T.rail.drag.pt||(P.hasmousecapture&&l.releaseCapture(),T.isiframe&&!P.hasmousecapture&&T.doc.css("pointer-events",T.saved.csspointerevents),T.rail.drag=!1,T.cursorfreezed=!1,T.hasmoving&&T.triggerScrollEnd(),T.cancelEvent(e))},T.onmousemove=function(e){if(T.rail.drag){if(1!==T.rail.drag.pt)return;if(P.ischrome&&0===e.which)return T.onmouseup(e);if(T.cursorfreezed=!0,T.hasmoving||T.triggerScrollStart(e.clientX,e.clientY,0,0,0),T.hasmoving=!0,T.rail.drag.hr){T.scroll.x=T.rail.drag.sx+(e.clientX-T.rail.drag.x),T.scroll.x<0&&(T.scroll.x=0);var o=T.scrollvaluemaxw;T.scroll.x>o&&(T.scroll.x=o)}else{T.scroll.y=T.rail.drag.sy+(e.clientY-T.rail.drag.y),T.scroll.y<0&&(T.scroll.y=0);var t=T.scrollvaluemax;T.scroll.y>t&&(T.scroll.y=t)}return T.synched("mousemove",function(){T.cursorfreezed&&(T.showCursor(),T.rail.drag.hr?T.scrollLeft(Math.round(T.scroll.x*T.scrollratio.x)):T.scrollTop(Math.round(T.scroll.y*T.scrollratio.y)))}),T.cancelEvent(e)}T.checkarea=0},P.cantouch||M.emulatetouch)T.onpreventclick=function(e){if(T.preventclick)return T.preventclick.tg.onclick=T.preventclick.click,T.preventclick=!1,T.cancelEvent(e)},T.onclick=!P.isios&&function(e){return!T.lastmouseup||(T.lastmouseup=!1,T.cancelEvent(e))},M.grabcursorenabled&&P.cursorgrabvalue&&(T.css(T.ispage?T.doc:T.win,{cursor:P.cursorgrabvalue}),T.css(T.rail,{cursor:P.cursorgrabvalue}));else{var L=function(e){if(T.selectiondrag){if(e){var o=T.win.outerHeight(),t=e.pageY-T.selectiondrag.top;t>0&&t<o&&(t=0),t>=o&&(t-=o),T.selectiondrag.df=t}if(0!==T.selectiondrag.df){var r=-2*T.selectiondrag.df/6|0;T.doScrollBy(r),T.debounced("doselectionscroll",function(){L()},50)}}};T.hasTextSelected="getSelection"in l?function(){return l.getSelection().rangeCount>0}:"selection"in l?function(){return"None"!=l.selection.type}:function(){return!1},T.onselectionstart=function(e){T.ispage||(T.selectiondrag=T.win.offset())},T.onselectionend=function(e){T.selectiondrag=!1},T.onselectiondrag=function(e){T.selectiondrag&&T.hasTextSelected()&&T.debounced("selectionscroll",function(){L(e)},250)}}if(P.hasw3ctouch?(T.css(T.ispage?n("html"):T.win,{"touch-action":"none"}),T.css(T.rail,{"touch-action":"none"}),T.css(T.cursor,{"touch-action":"none"}),T.bind(T.win,"pointerdown",T.ontouchstart),T.bind(l,"pointerup",T.ontouchend),T.delegate(l,"pointermove",T.ontouchmove)):P.hasmstouch?(T.css(T.ispage?n("html"):T.win,{"-ms-touch-action":"none"}),T.css(T.rail,{"-ms-touch-action":"none"}),T.css(T.cursor,{"-ms-touch-action":"none"}),T.bind(T.win,"MSPointerDown",T.ontouchstart),T.bind(l,"MSPointerUp",T.ontouchend),T.delegate(l,"MSPointerMove",T.ontouchmove),T.bind(T.cursor,"MSGestureHold",function(e){e.preventDefault()}),T.bind(T.cursor,"contextmenu",function(e){e.preventDefault()})):P.cantouch&&(T.bind(T.win,"touchstart",T.ontouchstart,!1,!0),T.bind(l,"touchend",T.ontouchend,!1,!0),T.bind(l,"touchcancel",T.ontouchend,!1,!0),T.delegate(l,"touchmove",T.ontouchmove,!1,!0)),M.emulatetouch&&(T.bind(T.win,"mousedown",T.ontouchstart,!1,!0),T.bind(l,"mouseup",T.ontouchend,!1,!0),T.bind(l,"mousemove",T.ontouchmove,!1,!0)),(M.cursordragontouch||!P.cantouch&&!M.emulatetouch)&&(T.rail.css({cursor:"default"}),T.railh&&T.railh.css({cursor:"default"}),T.jqbind(T.rail,"mouseenter",function(){if(!T.ispage&&!T.win.is(":visible"))return!1;T.canshowonmouseevent&&T.showCursor(),T.rail.active=!0}),T.jqbind(T.rail,"mouseleave",function(){T.rail.active=!1,T.rail.drag||T.hideCursor()}),M.sensitiverail&&(T.bind(T.rail,"click",function(e){T.doRailClick(e,!1,!1)}),T.bind(T.rail,"dblclick",function(e){T.doRailClick(e,!0,!1)}),T.bind(T.cursor,"click",function(e){T.cancelEvent(e)}),T.bind(T.cursor,"dblclick",function(e){T.cancelEvent(e)})),T.railh&&(T.jqbind(T.railh,"mouseenter",function(){if(!T.ispage&&!T.win.is(":visible"))return!1;T.canshowonmouseevent&&T.showCursor(),T.rail.active=!0}),T.jqbind(T.railh,"mouseleave",function(){T.rail.active=!1,T.rail.drag||T.hideCursor()}),M.sensitiverail&&(T.bind(T.railh,"click",function(e){T.doRailClick(e,!1,!0)}),T.bind(T.railh,"dblclick",function(e){T.doRailClick(e,!0,!0)}),T.bind(T.cursorh,"click",function(e){T.cancelEvent(e)}),T.bind(T.cursorh,"dblclick",function(e){T.cancelEvent(e)})))),M.cursordragontouch&&(this.istouchcapable||P.cantouch)&&(T.bind(T.cursor,"touchstart",T.ontouchstartCursor),T.bind(T.cursor,"touchmove",T.ontouchmoveCursor),T.bind(T.cursor,"touchend",T.ontouchendCursor),T.cursorh&&T.bind(T.cursorh,"touchstart",function(e){T.ontouchstartCursor(e,!0)}),T.cursorh&&T.bind(T.cursorh,"touchmove",T.ontouchmoveCursor),T.cursorh&&T.bind(T.cursorh,"touchend",T.ontouchendCursor)),M.emulatetouch||P.isandroid||P.isios?(T.bind(P.hasmousecapture?T.win:l,"mouseup",T.ontouchend),T.onclick&&T.bind(l,"click",T.onclick),M.cursordragontouch?(T.bind(T.cursor,"mousedown",T.onmousedown),T.bind(T.cursor,"mouseup",T.onmouseup),T.cursorh&&T.bind(T.cursorh,"mousedown",function(e){T.onmousedown(e,!0)}),T.cursorh&&T.bind(T.cursorh,"mouseup",T.onmouseup)):(T.bind(T.rail,"mousedown",function(e){e.preventDefault()}),T.railh&&T.bind(T.railh,"mousedown",function(e){e.preventDefault()}))):(T.bind(P.hasmousecapture?T.win:l,"mouseup",T.onmouseup),T.bind(l,"mousemove",T.onmousemove),T.onclick&&T.bind(l,"click",T.onclick),T.bind(T.cursor,"mousedown",T.onmousedown),T.bind(T.cursor,"mouseup",T.onmouseup),T.railh&&(T.bind(T.cursorh,"mousedown",function(e){T.onmousedown(e,!0)}),T.bind(T.cursorh,"mouseup",T.onmouseup)),!T.ispage&&M.enablescrollonselection&&(T.bind(T.win[0],"mousedown",T.onselectionstart),T.bind(l,"mouseup",T.onselectionend),T.bind(T.cursor,"mouseup",T.onselectionend),T.cursorh&&T.bind(T.cursorh,"mouseup",T.onselectionend),T.bind(l,"mousemove",T.onselectiondrag)),T.zoom&&(T.jqbind(T.zoom,"mouseenter",function(){T.canshowonmouseevent&&T.showCursor(),T.rail.active=!0}),T.jqbind(T.zoom,"mouseleave",function(){T.rail.active=!1,T.rail.drag||T.hideCursor()}))),M.enablemousewheel&&(T.isiframe||T.mousewheel(P.isie&&T.ispage?l:T.win,T.onmousewheel),T.mousewheel(T.rail,T.onmousewheel),T.railh&&T.mousewheel(T.railh,T.onmousewheelhr)),T.ispage||P.cantouch||/HTML|^BODY/.test(T.win[0].nodeName)||(T.win.attr("tabindex")||T.win.attr({tabindex:++r}),T.bind(T.win,"focus",function(e){o=T.getTarget(e).id||T.getTarget(e)||!1,T.hasfocus=!0,T.canshowonmouseevent&&T.noticeCursor()}),T.bind(T.win,"blur",function(e){o=!1,T.hasfocus=!1}),T.bind(T.win,"mouseenter",function(e){t=T.getTarget(e).id||T.getTarget(e)||!1,T.hasmousefocus=!0,T.canshowonmouseevent&&T.noticeCursor()}),T.bind(T.win,"mouseleave",function(e){t=!1,T.hasmousefocus=!1,T.rail.drag||T.hideCursor()})),T.onkeypress=function(e){if(T.railslocked&&0===T.page.maxh)return!0;e=e||a.event;var r=T.getTarget(e);if(r&&/INPUT|TEXTAREA|SELECT|OPTION/.test(r.nodeName)&&(!(r.getAttribute("type")||r.type||!1)||!/submit|button|cancel/i.tp))return!0;if(n(r).attr("contenteditable"))return!0;if(T.hasfocus||T.hasmousefocus&&!o||T.ispage&&!o&&!t){var i=e.keyCode;if(T.railslocked&&27!=i)return T.cancelEvent(e);var s=e.ctrlKey||!1,l=e.shiftKey||!1,c=!1;switch(i){case 38:case 63233:T.doScrollBy(72),c=!0;break;case 40:case 63235:T.doScrollBy(-72),c=!0;break;case 37:case 63232:T.railh&&(s?T.doScrollLeft(0):T.doScrollLeftBy(72),c=!0);break;case 39:case 63234:T.railh&&(s?T.doScrollLeft(T.page.maxw):T.doScrollLeftBy(-72),c=!0);break;case 33:case 63276:T.doScrollBy(T.view.h),c=!0;break;case 34:case 63277:T.doScrollBy(-T.view.h),c=!0;break;case 36:case 63273:T.railh&&s?T.doScrollPos(0,0):T.doScrollTo(0),c=!0;break;case 35:case 63275:T.railh&&s?T.doScrollPos(T.page.maxw,T.page.maxh):T.doScrollTo(T.page.maxh),c=!0;break;case 32:M.spacebarenabled&&(l?T.doScrollBy(T.view.h):T.doScrollBy(-T.view.h),c=!0);break;case 27:T.zoomactive&&(T.doZoom(),c=!0)}if(c)return T.cancelEvent(e)}},M.enablekeyboard&&T.bind(l,P.isopera&&!P.isopera12?"keypress":"keydown",T.onkeypress),T.bind(l,"keydown",function(e){(e.ctrlKey||!1)&&(T.wheelprevented=!0)}),T.bind(l,"keyup",function(e){e.ctrlKey||!1||(T.wheelprevented=!1)}),T.bind(a,"blur",function(e){T.wheelprevented=!1}),T.bind(a,"resize",T.onscreenresize),T.bind(a,"orientationchange",T.onscreenresize),T.bind(a,"load",T.lazyResize),P.ischrome&&!T.ispage&&!T.haswrapper){var C=T.win.attr("style"),N=parseFloat(T.win.css("width"))+1;T.win.css("width",N),T.synched("chromefix",function(){T.win.attr("style",C)})}if(T.onAttributeChange=function(e){T.lazyResize(T.isieold?250:30)},M.enableobserver&&(T.isie11||!1===m||(T.observerbody=new m(function(e){if(e.forEach(function(e){if("attributes"==e.type)return E.hasClass("modal-open")&&E.hasClass("modal-dialog")&&!n.contains(n(".modal-dialog")[0],T.doc[0])?T.hide():T.show()}),T.me.clientWidth!=T.page.width||T.me.clientHeight!=T.page.height)return T.lazyResize(30)}),T.observerbody.observe(l.body,{childList:!0,subtree:!0,characterData:!1,attributes:!0,attributeFilter:["class"]})),!T.ispage&&!T.haswrapper)){var R=T.win[0];!1!==m?(T.observer=new m(function(e){e.forEach(T.onAttributeChange)}),T.observer.observe(R,{childList:!0,characterData:!1,attributes:!0,subtree:!1}),T.observerremover=new m(function(e){e.forEach(function(e){if(e.removedNodes.length>0)for(var o in e.removedNodes)if(T&&e.removedNodes[o]===R)return T.remove()})}),T.observerremover.observe(R.parentNode,{childList:!0,characterData:!1,attributes:!1,subtree:!1})):(T.bind(R,P.isie&&!P.isie9?"propertychange":"DOMAttrModified",T.onAttributeChange),P.isie9&&R.attachEvent("onpropertychange",T.onAttributeChange),T.bind(R,"DOMNodeRemoved",function(e){e.target===R&&T.remove()}))}!T.ispage&&M.boxzoom&&T.bind(a,"resize",T.resizeZoom),T.istextarea&&(T.bind(T.win,"keydown",T.lazyResize),T.bind(T.win,"mouseup",T.lazyResize)),T.lazyResize(30)}if("IFRAME"==this.doc[0].nodeName){var _=function(){T.iframexd=!1;var o;try{(o="contentDocument"in this?this.contentDocument:this.contentWindow._doc).domain}catch(e){T.iframexd=!0,o=!1}if(T.iframexd)return"console"in a&&console.log("NiceScroll error: policy restriced iframe"),!0;if(T.forcescreen=!0,T.isiframe&&(T.iframe={doc:n(o),html:T.doc.contents().find("html")[0],body:T.doc.contents().find("body")[0]},T.getContentSize=function(){return{w:Math.max(T.iframe.html.scrollWidth,T.iframe.body.scrollWidth),h:Math.max(T.iframe.html.scrollHeight,T.iframe.body.scrollHeight)}},T.docscroll=n(T.iframe.body)),!P.isios&&M.iframeautoresize&&!T.isiframe){T.win.scrollTop(0),T.doc.height("");var t=Math.max(o.getElementsByTagName("html")[0].scrollHeight,o.body.scrollHeight);T.doc.height(t)}T.lazyResize(30),T.css(n(T.iframe.body),e),P.isios&&T.haswrapper&&T.css(n(o.body),{"-webkit-transform":"translate3d(0,0,0)"}),"contentWindow"in this?T.bind(this.contentWindow,"scroll",T.onscroll):T.bind(o,"scroll",T.onscroll),M.enablemousewheel&&T.mousewheel(o,T.onmousewheel),M.enablekeyboard&&T.bind(o,P.isopera?"keypress":"keydown",T.onkeypress),P.cantouch?(T.bind(o,"touchstart",T.ontouchstart),T.bind(o,"touchmove",T.ontouchmove)):M.emulatetouch&&(T.bind(o,"mousedown",T.ontouchstart),T.bind(o,"mousemove",function(e){return T.ontouchmove(e,!0)}),M.grabcursorenabled&&P.cursorgrabvalue&&T.css(n(o.body),{cursor:P.cursorgrabvalue})),T.bind(o,"mouseup",T.ontouchend),T.zoom&&(M.dblclickzoom&&T.bind(o,"dblclick",T.doZoom),T.ongesturezoom&&T.bind(o,"gestureend",T.ongesturezoom))};this.doc[0].readyState&&"complete"===this.doc[0].readyState&&setTimeout(function(){_.call(T.doc[0],!1)},500),T.bind(this.doc,"load",_)}},this.showCursor=function(e,o){if(T.cursortimeout&&(clearTimeout(T.cursortimeout),T.cursortimeout=0),T.rail){if(T.autohidedom&&(T.autohidedom.stop().css({opacity:M.cursoropacitymax}),T.cursoractive=!0),T.rail.drag&&1==T.rail.drag.pt||(void 0!==e&&!1!==e&&(T.scroll.y=e/T.scrollratio.y|0),void 0!==o&&(T.scroll.x=o/T.scrollratio.x|0)),T.cursor.css({height:T.cursorheight,top:T.scroll.y}),T.cursorh){var t=T.hasreversehr?T.scrollvaluemaxw-T.scroll.x:T.scroll.x;T.cursorh.css({width:T.cursorwidth,left:!T.rail.align&&T.rail.visibility?t+T.rail.width:t}),T.cursoractive=!0}T.zoom&&T.zoom.stop().css({opacity:M.cursoropacitymax})}},this.hideCursor=function(e){T.cursortimeout||T.rail&&T.autohidedom&&(T.hasmousefocus&&"leave"===M.autohidemode||(T.cursortimeout=setTimeout(function(){T.rail.active&&T.showonmouseevent||(T.autohidedom.stop().animate({opacity:M.cursoropacitymin}),T.zoom&&T.zoom.stop().animate({opacity:M.cursoropacitymin}),T.cursoractive=!1),T.cursortimeout=0},e||M.hidecursordelay)))},this.noticeCursor=function(e,o,t){T.showCursor(o,t),T.rail.active||T.hideCursor(e)},this.getContentSize=T.ispage?function(){return{w:Math.max(l.body.scrollWidth,l.documentElement.scrollWidth),h:Math.max(l.body.scrollHeight,l.documentElement.scrollHeight)}}:T.haswrapper?function(){return{w:T.doc[0].offsetWidth,h:T.doc[0].offsetHeight}}:function(){return{w:T.docscroll[0].scrollWidth,h:T.docscroll[0].scrollHeight}},this.onResize=function(e,o){if(!T||!T.win)return!1;var t=T.page.maxh,r=T.page.maxw,i=T.view.h,s=T.view.w;if(T.view={w:T.ispage?T.win.width():T.win[0].clientWidth,h:T.ispage?T.win.height():T.win[0].clientHeight},T.page=o||T.getContentSize(),T.page.maxh=Math.max(0,T.page.h-T.view.h),T.page.maxw=Math.max(0,T.page.w-T.view.w),T.page.maxh==t&&T.page.maxw==r&&T.view.w==s&&T.view.h==i){if(T.ispage)return T;var n=T.win.offset();if(T.lastposition){var l=T.lastposition;if(l.top==n.top&&l.left==n.left)return T}T.lastposition=n}return 0===T.page.maxh?(T.hideRail(),T.scrollvaluemax=0,T.scroll.y=0,T.scrollratio.y=0,T.cursorheight=0,T.setScrollTop(0),T.rail&&(T.rail.scrollable=!1)):(T.page.maxh-=M.railpadding.top+M.railpadding.bottom,T.rail.scrollable=!0),0===T.page.maxw?(T.hideRailHr(),T.scrollvaluemaxw=0,T.scroll.x=0,T.scrollratio.x=0,T.cursorwidth=0,T.setScrollLeft(0),T.railh&&(T.railh.scrollable=!1)):(T.page.maxw-=M.railpadding.left+M.railpadding.right,T.railh&&(T.railh.scrollable=M.horizrailenabled)),T.railslocked=T.locked||0===T.page.maxh&&0===T.page.maxw,T.railslocked?(T.ispage||T.updateScrollBar(T.view),!1):(T.hidden||(T.rail.visibility||T.showRail(),T.railh&&!T.railh.visibility&&T.showRailHr()),T.istextarea&&T.win.css("resize")&&"none"!=T.win.css("resize")&&(T.view.h-=20),T.cursorheight=Math.min(T.view.h,Math.round(T.view.h*(T.view.h/T.page.h))),T.cursorheight=M.cursorfixedheight?M.cursorfixedheight:Math.max(M.cursorminheight,T.cursorheight),T.cursorwidth=Math.min(T.view.w,Math.round(T.view.w*(T.view.w/T.page.w))),T.cursorwidth=M.cursorfixedheight?M.cursorfixedheight:Math.max(M.cursorminheight,T.cursorwidth),T.scrollvaluemax=T.view.h-T.cursorheight-(M.railpadding.top+M.railpadding.bottom),T.hasborderbox||(T.scrollvaluemax-=T.cursor[0].offsetHeight-T.cursor[0].clientHeight),T.railh&&(T.railh.width=T.page.maxh>0?T.view.w-T.rail.width:T.view.w,T.scrollvaluemaxw=T.railh.width-T.cursorwidth-(M.railpadding.left+M.railpadding.right)),T.ispage||T.updateScrollBar(T.view),T.scrollratio={x:T.page.maxw/T.scrollvaluemaxw,y:T.page.maxh/T.scrollvaluemax},T.getScrollTop()>T.page.maxh?T.doScrollTop(T.page.maxh):(T.scroll.y=T.getScrollTop()/T.scrollratio.y|0,T.scroll.x=T.getScrollLeft()/T.scrollratio.x|0,T.cursoractive&&T.noticeCursor()),T.scroll.y&&0===T.getScrollTop()&&T.doScrollTo(T.scroll.y*T.scrollratio.y|0),T)},this.resize=T.onResize;var O=0;this.onscreenresize=function(e){clearTimeout(O);var o=!T.ispage&&!T.haswrapper;o&&T.hideRails(),O=setTimeout(function(){T&&(o&&T.showRails(),T.resize()),O=0},120)},this.lazyResize=function(e){return clearTimeout(O),e=isNaN(e)?240:e,O=setTimeout(function(){T&&T.resize(),O=0},e),T},this.jqbind=function(e,o,t){T.events.push({e:e,n:o,f:t,q:!0}),n(e).on(o,t)},this.mousewheel=function(e,o,t){var r="jquery"in e?e[0]:e;if("onwheel"in l.createElement("div"))T._bind(r,"wheel",o,t||!1);else{var i=void 0!==l.onmousewheel?"mousewheel":"DOMMouseScroll";S(r,i,o,t||!1),"DOMMouseScroll"==i&&S(r,"MozMousePixelScroll",o,t||!1)}};var Y=!1;if(P.haseventlistener){try{var H=Object.defineProperty({},"passive",{get:function(){Y=!0}});a.addEventListener("test",null,H)}catch(e){}this.stopPropagation=function(e){return!!e&&((e=e.original?e.original:e).stopPropagation(),!1)},this.cancelEvent=function(e){return e.cancelable&&e.preventDefault(),e.stopImmediatePropagation(),e.preventManipulation&&e.preventManipulation(),!1}}else Event.prototype.preventDefault=function(){this.returnValue=!1},Event.prototype.stopPropagation=function(){this.cancelBubble=!0},a.constructor.prototype.addEventListener=l.constructor.prototype.addEventListener=Element.prototype.addEventListener=function(e,o,t){this.attachEvent("on"+e,o)},a.constructor.prototype.removeEventListener=l.constructor.prototype.removeEventListener=Element.prototype.removeEventListener=function(e,o,t){this.detachEvent("on"+e,o)},this.cancelEvent=function(e){return(e=e||a.event)&&(e.cancelBubble=!0,e.cancel=!0,e.returnValue=!1),!1},this.stopPropagation=function(e){return(e=e||a.event)&&(e.cancelBubble=!0),!1};this.delegate=function(e,o,t,r,i){var s=d[o]||!1;s||(s={a:[],l:[],f:function(e){for(var o=s.l,t=!1,r=o.length-1;r>=0;r--)if(!1===(t=o[r].call(e.target,e)))return!1;return t}},T.bind(e,o,s.f,r,i),d[o]=s),T.ispage?(s.a=[T.id].concat(s.a),s.l=[t].concat(s.l)):(s.a.push(T.id),s.l.push(t))},this.undelegate=function(e,o,t,r,i){var s=d[o]||!1;if(s&&s.l)for(var n=0,l=s.l.length;n<l;n++)s.a[n]===T.id&&(s.a.splice(n),s.l.splice(n),0===s.a.length&&(T._unbind(e,o,s.l.f),d[o]=null))},this.bind=function(e,o,t,r,i){var s="jquery"in e?e[0]:e;T._bind(s,o,t,r||!1,i||!1)},this._bind=function(e,o,t,r,i){T.events.push({e:e,n:o,f:t,b:r,q:!1}),Y&&i?e.addEventListener(o,t,{passive:!1,capture:r}):e.addEventListener(o,t,r||!1)},this._unbind=function(e,o,t,r){d[o]?T.undelegate(e,o,t,r):e.removeEventListener(o,t,r)},this.unbindAll=function(){for(var e=0;e<T.events.length;e++){var o=T.events[e];o.q?o.e.unbind(o.n,o.f):T._unbind(o.e,o.n,o.f,o.b)}},this.showRails=function(){return T.showRail().showRailHr()},this.showRail=function(){return 0===T.page.maxh||!T.ispage&&"none"==T.win.css("display")||(T.rail.visibility=!0,T.rail.css("display","block")),T},this.showRailHr=function(){return T.railh&&(0===T.page.maxw||!T.ispage&&"none"==T.win.css("display")||(T.railh.visibility=!0,T.railh.css("display","block"))),T},this.hideRails=function(){return T.hideRail().hideRailHr()},this.hideRail=function(){return T.rail.visibility=!1,T.rail.css("display","none"),T},this.hideRailHr=function(){return T.railh&&(T.railh.visibility=!1,T.railh.css("display","none")),T},this.show=function(){return T.hidden=!1,T.railslocked=!1,T.showRails()},this.hide=function(){return T.hidden=!0,T.railslocked=!0,T.hideRails()},this.toggle=function(){return T.hidden?T.show():T.hide()},this.remove=function(){T.stop(),T.cursortimeout&&clearTimeout(T.cursortimeout);for(var e in T.delaylist)T.delaylist[e]&&h(T.delaylist[e].h);T.doZoomOut(),T.unbindAll(),P.isie9&&T.win[0].detachEvent("onpropertychange",T.onAttributeChange),!1!==T.observer&&T.observer.disconnect(),!1!==T.observerremover&&T.observerremover.disconnect(),!1!==T.observerbody&&T.observerbody.disconnect(),T.events=null,T.cursor&&T.cursor.remove(),T.cursorh&&T.cursorh.remove(),T.rail&&T.rail.remove(),T.railh&&T.railh.remove(),T.zoom&&T.zoom.remove();for(var o=0;o<T.saved.css.length;o++){var t=T.saved.css[o];t[0].css(t[1],void 0===t[2]?"":t[2])}T.saved=!1,T.me.data("__nicescroll","");var r=n.nicescroll;r.each(function(e){if(this&&this.id===T.id){delete r[e];for(var o=++e;o<r.length;o++,e++)r[e]=r[o];--r.length&&delete r[r.length]}});for(var i in T)T[i]=null,delete T[i];T=null},this.scrollstart=function(e){return this.onscrollstart=e,T},this.scrollend=function(e){return this.onscrollend=e,T},this.scrollcancel=function(e){return this.onscrollcancel=e,T},this.zoomin=function(e){return this.onzoomin=e,T},this.zoomout=function(e){return this.onzoomout=e,T},this.isScrollable=function(e){var o=e.target?e.target:e;if("OPTION"==o.nodeName)return!0;for(;o&&1==o.nodeType&&o!==this.me[0]&&!/^BODY|HTML/.test(o.nodeName);){var t=n(o),r=t.css("overflowY")||t.css("overflowX")||t.css("overflow")||"";if(/scroll|auto/.test(r))return o.clientHeight!=o.scrollHeight;o=!!o.parentNode&&o.parentNode}return!1},this.getViewport=function(e){for(var o=!(!e||!e.parentNode)&&e.parentNode;o&&1==o.nodeType&&!/^BODY|HTML/.test(o.nodeName);){var t=n(o);if(/fixed|absolute/.test(t.css("position")))return t;var r=t.css("overflowY")||t.css("overflowX")||t.css("overflow")||"";if(/scroll|auto/.test(r)&&o.clientHeight!=o.scrollHeight)return t;if(t.getNiceScroll().length>0)return t;o=!!o.parentNode&&o.parentNode}return!1},this.triggerScrollStart=function(e,o,t,r,i){if(T.onscrollstart){var s={type:"scrollstart",current:{x:e,y:o},request:{x:t,y:r},end:{x:T.newscrollx,y:T.newscrolly},speed:i};T.onscrollstart.call(T,s)}},this.triggerScrollEnd=function(){if(T.onscrollend){var e=T.getScrollLeft(),o=T.getScrollTop(),t={type:"scrollend",current:{x:e,y:o},end:{x:e,y:o}};T.onscrollend.call(T,t)}};var B=0,X=0,D=0,A=1,q=!1;if(this.onmousewheel=function(e){if(T.wheelprevented||T.locked)return!1;if(T.railslocked)return T.debounced("checkunlock",T.resize,250),!1;if(T.rail.drag)return T.cancelEvent(e);if("auto"===M.oneaxismousemode&&0!==e.deltaX&&(M.oneaxismousemode=!1),M.oneaxismousemode&&0===e.deltaX&&!T.rail.scrollable)return!T.railh||!T.railh.scrollable||T.onmousewheelhr(e);var o=f(),t=!1;if(M.preservenativescrolling&&T.checkarea+600<o&&(T.nativescrollingarea=T.isScrollable(e),t=!0),T.checkarea=o,T.nativescrollingarea)return!0;var r=k(e,!1,t);return r&&(T.checkarea=0),r},this.onmousewheelhr=function(e){if(!T.wheelprevented){if(T.railslocked||!T.railh.scrollable)return!0;if(T.rail.drag)return T.cancelEvent(e);var o=f(),t=!1;return M.preservenativescrolling&&T.checkarea+600<o&&(T.nativescrollingarea=T.isScrollable(e),t=!0),T.checkarea=o,!!T.nativescrollingarea||(T.railslocked?T.cancelEvent(e):k(e,!0,t))}},this.stop=function(){return T.cancelScroll(),T.scrollmon&&T.scrollmon.stop(),T.cursorfreezed=!1,T.scroll.y=Math.round(T.getScrollTop()*(1/T.scrollratio.y)),T.noticeCursor(),T},this.getTransitionSpeed=function(e){return 80+e/72*M.scrollspeed|0},M.smoothscroll)if(T.ishwscroll&&P.hastransition&&M.usetransition&&M.smoothscroll){var j="";this.resetTransition=function(){j="",T.doc.css(P.prefixstyle+"transition-duration","0ms")},this.prepareTransition=function(e,o){var t=o?e:T.getTransitionSpeed(e),r=t+"ms";return j!==r&&(j=r,T.doc.css(P.prefixstyle+"transition-duration",r)),t},this.doScrollLeft=function(e,o){var t=T.scrollrunning?T.newscrolly:T.getScrollTop();T.doScrollPos(e,t,o)},this.doScrollTop=function(e,o){var t=T.scrollrunning?T.newscrollx:T.getScrollLeft();T.doScrollPos(t,e,o)},this.cursorupdate={running:!1,start:function(){var e=this;if(!e.running){e.running=!0;var o=function(){e.running&&u(o),T.showCursor(T.getScrollTop(),T.getScrollLeft()),T.notifyScrollEvent(T.win[0])};u(o)}},stop:function(){this.running=!1}},this.doScrollPos=function(e,o,t){var r=T.getScrollTop(),i=T.getScrollLeft();if(((T.newscrolly-r)*(o-r)<0||(T.newscrollx-i)*(e-i)<0)&&T.cancelScroll(),M.bouncescroll?(o<0?o=o/2|0:o>T.page.maxh&&(o=T.page.maxh+(o-T.page.maxh)/2|0),e<0?e=e/2|0:e>T.page.maxw&&(e=T.page.maxw+(e-T.page.maxw)/2|0)):(o<0?o=0:o>T.page.maxh&&(o=T.page.maxh),e<0?e=0:e>T.page.maxw&&(e=T.page.maxw)),T.scrollrunning&&e==T.newscrollx&&o==T.newscrolly)return!1;T.newscrolly=o,T.newscrollx=e;var s=T.getScrollTop(),n=T.getScrollLeft(),l={};l.x=e-n,l.y=o-s;var a=0|Math.sqrt(l.x*l.x+l.y*l.y),c=T.prepareTransition(a);T.scrollrunning||(T.scrollrunning=!0,T.triggerScrollStart(n,s,e,o,c),T.cursorupdate.start()),T.scrollendtrapped=!0,P.transitionend||(T.scrollendtrapped&&clearTimeout(T.scrollendtrapped),T.scrollendtrapped=setTimeout(T.onScrollTransitionEnd,c)),T.setScrollTop(T.newscrolly),T.setScrollLeft(T.newscrollx)},this.cancelScroll=function(){if(!T.scrollendtrapped)return!0;var e=T.getScrollTop(),o=T.getScrollLeft();return T.scrollrunning=!1,P.transitionend||clearTimeout(P.transitionend),T.scrollendtrapped=!1,T.resetTransition(),T.setScrollTop(e),T.railh&&T.setScrollLeft(o),T.timerscroll&&T.timerscroll.tm&&clearInterval(T.timerscroll.tm),T.timerscroll=!1,T.cursorfreezed=!1,T.cursorupdate.stop(),T.showCursor(e,o),T},this.onScrollTransitionEnd=function(){if(T.scrollendtrapped){var e=T.getScrollTop(),o=T.getScrollLeft();if(e<0?e=0:e>T.page.maxh&&(e=T.page.maxh),o<0?o=0:o>T.page.maxw&&(o=T.page.maxw),e!=T.newscrolly||o!=T.newscrollx)return T.doScrollPos(o,e,M.snapbackspeed);T.scrollrunning&&T.triggerScrollEnd(),T.scrollrunning=!1,T.scrollendtrapped=!1,T.resetTransition(),T.timerscroll=!1,T.setScrollTop(e),T.railh&&T.setScrollLeft(o),T.cursorupdate.stop(),T.noticeCursor(!1,e,o),T.cursorfreezed=!1}}}else this.doScrollLeft=function(e,o){var t=T.scrollrunning?T.newscrolly:T.getScrollTop();T.doScrollPos(e,t,o)},this.doScrollTop=function(e,o){var t=T.scrollrunning?T.newscrollx:T.getScrollLeft();T.doScrollPos(t,e,o)},this.doScrollPos=function(e,o,t){var r=T.getScrollTop(),i=T.getScrollLeft();((T.newscrolly-r)*(o-r)<0||(T.newscrollx-i)*(e-i)<0)&&T.cancelScroll();var s=!1;if(T.bouncescroll&&T.rail.visibility||(o<0?(o=0,s=!0):o>T.page.maxh&&(o=T.page.maxh,s=!0)),T.bouncescroll&&T.railh.visibility||(e<0?(e=0,s=!0):e>T.page.maxw&&(e=T.page.maxw,s=!0)),T.scrollrunning&&T.newscrolly===o&&T.newscrollx===e)return!0;T.newscrolly=o,T.newscrollx=e,T.dst={},T.dst.x=e-i,T.dst.y=o-r,T.dst.px=i,T.dst.py=r;var n=0|Math.sqrt(T.dst.x*T.dst.x+T.dst.y*T.dst.y),l=T.getTransitionSpeed(n);T.bzscroll={};var a=s?1:.58;T.bzscroll.x=new R(i,T.newscrollx,l,0,0,a,1),T.bzscroll.y=new R(r,T.newscrolly,l,0,0,a,1);f();var c=function(){if(T.scrollrunning){var e=T.bzscroll.y.getPos();T.setScrollLeft(T.bzscroll.x.getNow()),T.setScrollTop(T.bzscroll.y.getNow()),e<=1?T.timer=u(c):(T.scrollrunning=!1,T.timer=0,T.triggerScrollEnd())}};T.scrollrunning||(T.triggerScrollStart(i,r,e,o,l),T.scrollrunning=!0,T.timer=u(c))},this.cancelScroll=function(){return T.timer&&h(T.timer),T.timer=0,T.bzscroll=!1,T.scrollrunning=!1,T};else this.doScrollLeft=function(e,o){var t=T.getScrollTop();T.doScrollPos(e,t,o)},this.doScrollTop=function(e,o){var t=T.getScrollLeft();T.doScrollPos(t,e,o)},this.doScrollPos=function(e,o,t){var r=e>T.page.maxw?T.page.maxw:e;r<0&&(r=0);var i=o>T.page.maxh?T.page.maxh:o;i<0&&(i=0),T.synched("scroll",function(){T.setScrollTop(i),T.setScrollLeft(r)})},this.cancelScroll=function(){};this.doScrollBy=function(e,o){z(0,e)},this.doScrollLeftBy=function(e,o){z(e,0)},this.doScrollTo=function(e,o){var t=o?Math.round(e*T.scrollratio.y):e;t<0?t=0:t>T.page.maxh&&(t=T.page.maxh),T.cursorfreezed=!1,T.doScrollTop(e)},this.checkContentSize=function(){var e=T.getContentSize();e.h==T.page.h&&e.w==T.page.w||T.resize(!1,e)},T.onscroll=function(e){T.rail.drag||T.cursorfreezed||T.synched("scroll",function(){T.scroll.y=Math.round(T.getScrollTop()/T.scrollratio.y),T.railh&&(T.scroll.x=Math.round(T.getScrollLeft()/T.scrollratio.x)),T.noticeCursor()})},T.bind(T.docscroll,"scroll",T.onscroll),this.doZoomIn=function(e){if(!T.zoomactive){T.zoomactive=!0,T.zoomrestore={style:{}};var o=["position","top","left","zIndex","backgroundColor","marginTop","marginBottom","marginLeft","marginRight"],t=T.win[0].style;for(var r in o){var i=o[r];T.zoomrestore.style[i]=void 0!==t[i]?t[i]:""}T.zoomrestore.style.width=T.win.css("width"),T.zoomrestore.style.height=T.win.css("height"),T.zoomrestore.padding={w:T.win.outerWidth()-T.win.width(),h:T.win.outerHeight()-T.win.height()},P.isios4&&(T.zoomrestore.scrollTop=c.scrollTop(),c.scrollTop(0)),T.win.css({position:P.isios4?"absolute":"fixed",top:0,left:0,zIndex:s+100,margin:0});var n=T.win.css("backgroundColor");return(""===n||/transparent|rgba\(0, 0, 0, 0\)|rgba\(0,0,0,0\)/.test(n))&&T.win.css("backgroundColor","#fff"),T.rail.css({zIndex:s+101}),T.zoom.css({zIndex:s+102}),T.zoom.css("backgroundPosition","0 -18px"),T.resizeZoom(),T.onzoomin&&T.onzoomin.call(T),T.cancelEvent(e)}},this.doZoomOut=function(e){if(T.zoomactive)return T.zoomactive=!1,T.win.css("margin",""),T.win.css(T.zoomrestore.style),P.isios4&&c.scrollTop(T.zoomrestore.scrollTop),T.rail.css({"z-index":T.zindex}),T.zoom.css({"z-index":T.zindex}),T.zoomrestore=!1,T.zoom.css("backgroundPosition","0 0"),T.onResize(),T.onzoomout&&T.onzoomout.call(T),T.cancelEvent(e)},this.doZoom=function(e){return T.zoomactive?T.doZoomOut(e):T.doZoomIn(e)},this.resizeZoom=function(){if(T.zoomactive){var e=T.getScrollTop();T.win.css({width:c.width()-T.zoomrestore.padding.w+"px",height:c.height()-T.zoomrestore.padding.h+"px"}),T.onResize(),T.setScrollTop(Math.min(T.page.maxh,e))}},this.init(),n.nicescroll.push(this)},y=function(e){var o=this;this.nc=e,this.lastx=0,this.lasty=0,this.speedx=0,this.speedy=0,this.lasttime=0,this.steptime=0,this.snapx=!1,this.snapy=!1,this.demulx=0,this.demuly=0,this.lastscrollx=-1,this.lastscrolly=-1,this.chkx=0,this.chky=0,this.timer=0,this.reset=function(e,t){o.stop(),o.steptime=0,o.lasttime=f(),o.speedx=0,o.speedy=0,o.lastx=e,o.lasty=t,o.lastscrollx=-1,o.lastscrolly=-1},this.update=function(e,t){var r=f();o.steptime=r-o.lasttime,o.lasttime=r;var i=t-o.lasty,s=e-o.lastx,n=o.nc.getScrollTop()+i,l=o.nc.getScrollLeft()+s;o.snapx=l<0||l>o.nc.page.maxw,o.snapy=n<0||n>o.nc.page.maxh,o.speedx=s,o.speedy=i,o.lastx=e,o.lasty=t},this.stop=function(){o.nc.unsynched("domomentum2d"),o.timer&&clearTimeout(o.timer),o.timer=0,o.lastscrollx=-1,o.lastscrolly=-1},this.doSnapy=function(e,t){var r=!1;t<0?(t=0,r=!0):t>o.nc.page.maxh&&(t=o.nc.page.maxh,r=!0),e<0?(e=0,r=!0):e>o.nc.page.maxw&&(e=o.nc.page.maxw,r=!0),r?o.nc.doScrollPos(e,t,o.nc.opt.snapbackspeed):o.nc.triggerScrollEnd()},this.doMomentum=function(e){var t=f(),r=e?t+e:o.lasttime,i=o.nc.getScrollLeft(),s=o.nc.getScrollTop(),n=o.nc.page.maxh,l=o.nc.page.maxw;o.speedx=l>0?Math.min(60,o.speedx):0,o.speedy=n>0?Math.min(60,o.speedy):0;var a=r&&t-r<=60;(s<0||s>n||i<0||i>l)&&(a=!1);var c=!(!o.speedy||!a)&&o.speedy,d=!(!o.speedx||!a)&&o.speedx;if(c||d){var u=Math.max(16,o.steptime);if(u>50){var h=u/50;o.speedx*=h,o.speedy*=h,u=50}o.demulxy=0,o.lastscrollx=o.nc.getScrollLeft(),o.chkx=o.lastscrollx,o.lastscrolly=o.nc.getScrollTop(),o.chky=o.lastscrolly;var p=o.lastscrollx,m=o.lastscrolly,g=function(){var e=f()-t>600?.04:.02;o.speedx&&(p=Math.floor(o.lastscrollx-o.speedx*(1-o.demulxy)),o.lastscrollx=p,(p<0||p>l)&&(e=.1)),o.speedy&&(m=Math.floor(o.lastscrolly-o.speedy*(1-o.demulxy)),o.lastscrolly=m,(m<0||m>n)&&(e=.1)),o.demulxy=Math.min(1,o.demulxy+e),o.nc.synched("domomentum2d",function(){if(o.speedx){o.nc.getScrollLeft();o.chkx=p,o.nc.setScrollLeft(p)}if(o.speedy){o.nc.getScrollTop();o.chky=m,o.nc.setScrollTop(m)}o.timer||(o.nc.hideCursor(),o.doSnapy(p,m))}),o.demulxy<1?o.timer=setTimeout(g,u):(o.stop(),o.nc.hideCursor(),o.doSnapy(p,m))};g()}else o.doSnapy(o.nc.getScrollLeft(),o.nc.getScrollTop())}},x=e.fn.scrollTop;e.cssHooks.pageYOffset={get:function(e,o,t){var r=n.data(e,"__nicescroll")||!1;return r&&r.ishwscroll?r.getScrollTop():x.call(e)},set:function(e,o){var t=n.data(e,"__nicescroll")||!1;return t&&t.ishwscroll?t.setScrollTop(parseInt(o)):x.call(e,o),this}},e.fn.scrollTop=function(e){if(void 0===e){var o=!!this[0]&&(n.data(this[0],"__nicescroll")||!1);return o&&o.ishwscroll?o.getScrollTop():x.call(this)}return this.each(function(){var o=n.data(this,"__nicescroll")||!1;o&&o.ishwscroll?o.setScrollTop(parseInt(e)):x.call(n(this),e)})};var S=e.fn.scrollLeft;n.cssHooks.pageXOffset={get:function(e,o,t){var r=n.data(e,"__nicescroll")||!1;return r&&r.ishwscroll?r.getScrollLeft():S.call(e)},set:function(e,o){var t=n.data(e,"__nicescroll")||!1;return t&&t.ishwscroll?t.setScrollLeft(parseInt(o)):S.call(e,o),this}},e.fn.scrollLeft=function(e){if(void 0===e){var o=!!this[0]&&(n.data(this[0],"__nicescroll")||!1);return o&&o.ishwscroll?o.getScrollLeft():S.call(this)}return this.each(function(){var o=n.data(this,"__nicescroll")||!1;o&&o.ishwscroll?o.setScrollLeft(parseInt(e)):S.call(n(this),e)})};var z=function(e){var o=this;if(this.length=0,this.name="nicescrollarray",this.each=function(e){return n.each(o,e),o},this.push=function(e){o[o.length]=e,o.length++},this.eq=function(e){return o[e]},e)for(var t=0;t<e.length;t++){var r=n.data(e[t],"__nicescroll")||!1;r&&(this[this.length]=r,this.length++)}return this};!function(e,o,t){for(var r=0,i=o.length;r<i;r++)t(e,o[r])}(z.prototype,["show","hide","toggle","onResize","resize","remove","stop","doScrollPos"],function(e,o){e[o]=function(){var e=arguments;return this.each(function(){this[o].apply(this,e)})}}),e.fn.getNiceScroll=function(e){return void 0===e?new z(this):this[e]&&n.data(this[e],"__nicescroll")||!1},(e.expr.pseudos||e.expr[":"]).nicescroll=function(e){return void 0!==n.data(e,"__nicescroll")},n.fn.niceScroll=function(e,o){void 0!==o||"object"!=typeof e||"jquery"in e||(o=e,e=!1);var t=new z;return this.each(function(){var r=n(this),i=n.extend({},o);if(e){var s=n(e);i.doc=s.length>1?n(e,r):s,i.win=r}!("doc"in i)||"win"in i||(i.win=r);var l=r.data("__nicescroll")||!1;l||(i.doc=i.doc||r,l=new b(i,r),r.data("__nicescroll",l)),t.push(l)}),1===t.length?t[0]:t},a.NiceScroll={getjQuery:function(){return e}},n.nicescroll||(n.nicescroll=new z,n.nicescroll.options=g)});
assets/packages/lity/lity.min.js CHANGED
@@ -1,4 +1,4 @@
1
  /*! Lity - v2.1.0 - 2016-09-19
2
  * http://sorgalla.com/lity/
3
  * Copyright (c) 2015-2016 Jan Sorgalla; Licensed MIT */
4
- !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(c){return b(a,c)}):"object"==typeof module&&"object"==typeof module.exports?module.exports=b(a,require("jquery")):a.lity=b(a,a.jQuery||a.Zepto)}("undefined"!=typeof window?window:this,function(a,b){"use strict";function c(a){var b=A();return L&&a.length?(a.one(L,b.resolve),setTimeout(b.resolve,500)):b.resolve(),b.promise()}function d(a,c,d){if(1===arguments.length)return b.extend({},a);if("string"==typeof c){if("undefined"==typeof d)return"undefined"==typeof a[c]?null:a[c];a[c]=d}else b.extend(a,c);return this}function e(a){for(var b,c=decodeURI(a.split("#")[0]).split("&"),d={},e=0,f=c.length;e<f;e++)c[e]&&(b=c[e].split("="),d[b[0]]=b[1]);return d}function f(a,c){return a+(a.indexOf("?")>-1?"&":"?")+b.param(c)}function g(a,b){var c=a.indexOf("#");return-1===c?b:(c>0&&(a=a.substr(c)),b+a)}function h(a){return b('<span class="lity-error"/>').append(a)}function i(a,c){var d=c.opener()&&c.opener().data("lity-desc")||"Image with no description",e=b('<img src="'+a+'" alt="'+d+'"/>'),f=A(),g=function(){f.reject(h("Failed loading image"))};return e.on("load",function(){return 0===this.naturalWidth?g():void f.resolve(e)}).on("error",g),f.promise()}function j(a,c){var d,e,f;try{d=b(a)}catch(a){return!1}return!!d.length&&(e=b('<i style="display:none !important"/>'),f=d.hasClass("lity-hide"),c.element().one("lity:remove",function(){e.before(d).remove(),f&&!d.closest(".lity-content").length&&d.addClass("lity-hide")}),d.removeClass("lity-hide").after(e))}function k(a){var c=I.exec(a);return!!c&&n(g(a,f("https://www.youtube"+(c[2]||"")+".com/embed/"+c[4],b.extend({autoplay:1},e(c[5]||"")))))}function l(a){var c=J.exec(a);return!!c&&n(g(a,f("https://player.vimeo.com/video/"+c[3],b.extend({autoplay:1},e(c[4]||"")))))}function m(a){var b=K.exec(a);return!!b&&n(g(a,f("https://www.google."+b[3]+"/maps?"+b[6],{output:b[6].indexOf("layer=c")>0?"svembed":"embed"})))}function n(a){return'<div class="lity-iframe-container"><iframe frameborder="0" allowfullscreen src="'+a+'"/></div>'}function o(){return y.documentElement.clientHeight?y.documentElement.clientHeight:Math.round(z.height())}function p(a){var b=u();b&&(27===a.keyCode&&b.close(),9===a.keyCode&&q(a,b))}function q(a,b){var c=b.element().find(F),d=c.index(y.activeElement);a.shiftKey&&d<=0?(c.get(c.length-1).focus(),a.preventDefault()):a.shiftKey||d!==c.length-1||(c.get(0).focus(),a.preventDefault())}function r(){b.each(C,function(a,b){b.resize()})}function s(a){1===C.unshift(a)&&(B.addClass("lity-active"),z.on({resize:r,keydown:p})),b("body > *").not(a.element()).addClass("lity-hidden").each(function(){var a=b(this);void 0===a.data(E)&&a.data(E,a.attr(D)||null)}).attr(D,"true")}function t(a){var c;a.element().attr(D,"true"),1===C.length&&(B.removeClass("lity-active"),z.off({resize:r,keydown:p})),C=b.grep(C,function(b){return a!==b}),c=C.length?C[0].element():b(".lity-hidden"),c.removeClass("lity-hidden").each(function(){var a=b(this),c=a.data(E);c?a.attr(D,c):a.removeAttr(D),a.removeData(E)})}function u(){return 0===C.length?null:C[0]}function v(a,c,d,e){var f,g="inline",h=b.extend({},d);return e&&h[e]?(f=h[e](a,c),g=e):(b.each(["inline","iframe"],function(a,b){delete h[b],h[b]=d[b]}),b.each(h,function(b,d){return!d||(!(!d.test||d.test(a,c))||(f=d(a,c),!1!==f?(g=b,!1):void 0))})),{handler:g,content:f||""}}function w(a,e,f,g){function h(a){k=b(a).css("max-height",o()+"px"),j.find(".lity-loader").each(function(){var a=b(this);c(a).always(function(){a.remove()})}),j.removeClass("lity-loading").find(".lity-content").empty().append(k),m=!0,k.trigger("lity:ready",[l])}var i,j,k,l=this,m=!1,n=!1;e=b.extend({},G,e),j=b(e.template),l.element=function(){return j},l.opener=function(){return f},l.options=b.proxy(d,l,e),l.handlers=b.proxy(d,l,e.handlers),l.resize=function(){m&&!n&&k.css("max-height",o()+"px").trigger("lity:resize",[l])},l.close=function(){if(m&&!n){n=!0,t(l);var a=A();return g&&b.contains(j,y.activeElement)&&g.focus(),k.trigger("lity:close",[l]),j.removeClass("lity-opened").addClass("lity-closed"),c(k.add(j)).always(function(){k.trigger("lity:remove",[l]),j.remove(),j=void 0,a.resolve()}),a.promise()}},i=v(a,l,e.handlers,e.handler),j.attr(D,"false").addClass("lity-loading lity-opened lity-"+i.handler).appendTo("body").focus().on("click","[data-lity-close]",function(a){b(a.target).is("[data-lity-close]")&&l.close()}).trigger("lity:open",[l]),s(l),b.when(i.content).always(h)}function x(a,c,d){a.preventDefault?(a.preventDefault(),d=b(this),a=d.data("lity-target")||d.attr("href")||d.attr("src")):d=b(d);var e=new w(a,b.extend({},d.data("lity-options")||d.data("lity"),c),d,y.activeElement);if(!a.preventDefault)return e}var y=a.document,z=b(a),A=b.Deferred,B=b("html"),C=[],D="aria-hidden",E="lity-"+D,F='a[href],area[href],input:not([disabled]),select:not([disabled]),textarea:not([disabled]),button:not([disabled]),iframe,object,embed,[contenteditable],[tabindex]:not([tabindex^="-"])',G={handler:null,handlers:{image:i,inline:j,youtube:k,vimeo:l,googlemaps:m,iframe:n},template:'<div class="lity" role="dialog" aria-label="Dialog Window (Press escape to close)" tabindex="-1"><div class="lity-wrap" data-lity-close role="document"><div class="lity-loader" aria-hidden="true">Loading...</div><div class="lity-container"><div class="lity-content"></div><button class="lity-close" type="button" aria-label="Close (Press escape to close)" data-lity-close>&times;</button></div></div></div>'},H=/(^data:image\/)|(\.(png|jpe?g|gif|svg|webp|bmp|ico|tiff?)(\?\S*)?$)/i,I=/(youtube(-nocookie)?\.com|youtu\.be)\/(watch\?v=|v\/|u\/|embed\/?)?([\w-]{11})(.*)?/i,J=/(vimeo(pro)?.com)\/(?:[^\d]+)?(\d+)\??(.*)?$/,K=/((maps|www)\.)?google\.([^\/\?]+)\/?((maps\/?)?\?)(.*)/i,L=function(){var a=y.createElement("div"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return b[c];return!1}();return i.test=function(a){return H.test(a)},x.version="2.1.0",x.options=b.proxy(d,x,G),x.handlers=b.proxy(d,x,G.handlers),x.current=u,b(y).on("click.lity","[data-lity]",x),x});
1
  /*! Lity - v2.1.0 - 2016-09-19
2
  * http://sorgalla.com/lity/
3
  * Copyright (c) 2015-2016 Jan Sorgalla; Licensed MIT */
4
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(c){return b(a,c)}):"object"==typeof module&&"object"==typeof module.exports?module.exports=b(a,require("jquery")):a.lity=b(a,a.jQuery||a.Zepto)}("undefined"!=typeof window?window:this,function(a,b){"use strict";function c(a){var b=A();return L&&a.length?(a.one(L,b.resolve),setTimeout(b.resolve,500)):b.resolve(),b.promise()}function d(a,c,d){if(1===arguments.length)return b.extend({},a);if("string"==typeof c){if("undefined"==typeof d)return"undefined"==typeof a[c]?null:a[c];a[c]=d}else b.extend(a,c);return this}function e(a){for(var b,c=decodeURI(a.split("#")[0]).split("&"),d={},e=0,f=c.length;e<f;e++)c[e]&&(b=c[e].split("="),d[b[0]]=b[1]);return d}function f(a,c){return a+(a.indexOf("?")>-1?"&":"?")+b.param(c)}function g(a,b){var c=a.indexOf("#");return-1===c?b:(c>0&&(a=a.substr(c)),b+a)}function h(a){return b('<span class="lity-error"/>').append(a)}function i(a,c){var d=c.opener()&&c.opener().data("lity-desc")||"Image with no description",e=b('<img src="'+a+'" alt="'+d+'"/>'),f=A(),g=function(){f.reject(h("Failed loading image"))};return e.on("load",function(){return 0===this.naturalWidth?g():void f.resolve(e)}).on("error",g),f.promise()}function j(a,c){var d,e,f;try{d=b(a)}catch(a){return!1}return!!d.length&&(e=b('<i style="display:none !important"/>'),f=d.hasClass("lity-hide"),c.element().one("lity:remove",function(){e.before(d).remove(),f&&!d.closest(".lity-content").length&&d.addClass("lity-hide")}),d.removeClass("lity-hide").after(e))}function k(a){var c=I.exec(a);return!!c&&n(g(a,f("https://www.youtube"+(c[2]||"")+".com/embed/"+c[4],b.extend({autoplay:1},e(c[5]||"")))))}function l(a){var c=J.exec(a);return!!c&&n(g(a,f("https://player.vimeo.com/video/"+c[3],b.extend({autoplay:1},e(c[4]||"")))))}function m(a){var b=K.exec(a);return!!b&&n(g(a,f("https://www.google."+b[3]+"/maps?"+b[6],{output:b[6].indexOf("layer=c")>0?"svembed":"embed"})))}function n(a){return'<div class="lity-iframe-container"><iframe frameborder="0" allowfullscreen src="'+a+'"/></div>'}function o(){return y.documentElement.clientHeight?y.documentElement.clientHeight:Math.round(z.height())}function p(a){var b=u();b&&(27===a.keyCode&&b.close(),9===a.keyCode&&q(a,b))}function q(a,b){var c=b.element().find(F),d=c.index(y.activeElement);a.shiftKey&&d<=0?(c.get(c.length-1).focus(),a.preventDefault()):a.shiftKey||d!==c.length-1||(c.get(0).focus(),a.preventDefault())}function r(){b.each(C,function(a,b){b.resize()})}function s(a){1===C.unshift(a)&&(B.addClass("lity-active"),z.on({resize:r,keydown:p})),b("body > *").not(a.element()).addClass("lity-hidden").each(function(){var a=b(this);void 0===a.data(E)&&a.data(E,a.attr(D)||null)}).attr(D,"true")}function t(a){var c;a.element().attr(D,"true"),1===C.length&&(B.removeClass("lity-active"),z.off({resize:r,keydown:p})),C=b.grep(C,function(b){return a!==b}),c=C.length?C[0].element():b(".lity-hidden"),c.removeClass("lity-hidden").each(function(){var a=b(this),c=a.data(E);c?a.attr(D,c):a.removeAttr(D),a.removeData(E)})}function u(){return 0===C.length?null:C[0]}function v(a,c,d,e){var f,g="inline",h=b.extend({},d);return e&&h[e]?(f=h[e](a,c),g=e):(b.each(["inline","iframe"],function(a,b){delete h[b],h[b]=d[b]}),b.each(h,function(b,d){return!d||(!(!d.test||d.test(a,c))||(f=d(a,c),!1!==f?(g=b,!1):void 0))})),{handler:g,content:f||""}}function w(a,e,f,g){function h(a){k=b(a).css("max-height",o()+"px"),j.find(".lity-loader").each(function(){var a=b(this);c(a).always(function(){a.remove()})}),j.removeClass("lity-loading").find(".lity-content").empty().append(k),m=!0,k.trigger("lity:ready",[l])}var i,j,k,l=this,m=!1,n=!1;e=b.extend({},G,e),j=b(e.template),l.element=function(){return j},l.opener=function(){return f},l.options=b.proxy(d,l,e),l.handlers=b.proxy(d,l,e.handlers),l.resize=function(){m&&!n&&k.css("max-height",o()+"px").trigger("lity:resize",[l])},l.close=function(){if(m&&!n){n=!0,t(l);var a=A();return g&&b.contains(j,y.activeElement)&&g.focus(),k.trigger("lity:close",[l]),j.removeClass("lity-opened").addClass("lity-closed"),c(k.add(j)).always(function(){k.trigger("lity:remove",[l]),j.remove(),j=void 0,a.resolve()}),a.promise()}},i=v(a,l,e.handlers,e.handler),j.attr(D,"false").addClass("lity-loading lity-opened lity-"+i.handler).appendTo("body").focus().on("click","[data-lity-close]",function(a){b(a.target).is("[data-lity-close]")&&l.close()}).trigger("lity:open",[l]),s(l),b.when(i.content).always(h)}function x(a,c,d){a.preventDefault?(a.preventDefault(),d=b(this),a=d.data("lity-target")||d.attr("href")||d.attr("src")):d=b(d);var e=new w(a,b.extend({},d.data("lity-options")||d.data("lity"),c),d,y.activeElement);if(!a.preventDefault)return e}var y=a.document,z=b(a),A=b.Deferred,B=b("html"),C=[],D="aria-hidden",E="lity-"+D,F='a[href],area[href],input:not([disabled]),select:not([disabled]),textarea:not([disabled]),button:not([disabled]),iframe,object,embed,[contenteditable],[tabindex]:not([tabindex^="-"])',G={handler:null,handlers:{image:i,inline:j,youtube:k,vimeo:l,iframe:n},template:'<div class="lity" role="dialog" aria-label="Dialog Window (Press escape to close)" tabindex="-1"><div class="lity-wrap" data-lity-close role="document"><div class="lity-loader" aria-hidden="true">Loading...</div><div class="lity-container"><div class="lity-content"></div><button class="lity-close" type="button" aria-label="Close (Press escape to close)" data-lity-close>&times;</button></div></div></div>'},H=/(^data:image\/)|(\.(png|jpe?g|gif|svg|webp|bmp|ico|tiff?)(\?\S*)?$)/i,I=/(youtube(-nocookie)?\.com|youtu\.be)\/(watch\?v=|v\/|u\/|embed\/?)?([\w-]{11})(.*)?/i,J=/(vimeo(pro)?.com)\/(?:[^\d]+)?(\d+)\??(.*)?$/,K=/((maps|www)\.)?google\.([^\/\?]+)\/?((maps\/?)?\?)(.*)/i,L=function(){var a=y.createElement("div"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return b[c];return!1}();return i.test=function(a){return H.test(a)},x.version="2.1.0",x.options=b.proxy(d,x,G),x.handlers=b.proxy(d,x,G.handlers),x.current=u,b(y).on("click.lity","[data-lity]",x),x});
changelog.txt CHANGED
@@ -1,4 +1,11 @@
1
- v 5.0.5 - 29 January 2020
 
 
 
 
 
 
 
2
  - Added: Versioning to asset files
3
  - Added: A WordPress cron for booking reminder emails (pro)
4
  - Fixed: All day events
1
+ v 5.1.0 5 February 2019
2
+ - Added: Shortcode wizard - hard-refresh is required
3
+ - Removed: Back button after payment in booking module (pro)
4
+ - Fixed: Read more link in single event page
5
+ - Fixed: An event link issue in map modules
6
+ - Fixed: MEC widget and list view
7
+
8
+ v 5.0.5 - 29 January 2020
9
  - Added: Versioning to asset files
10
  - Added: A WordPress cron for booking reminder emails (pro)
11
  - Fixed: All day events
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: 2020-01-29 15:47+0330\n"
5
- "PO-Revision-Date: 2020-01-29 15:48+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -31,8 +31,8 @@ msgstr "Moderní kalendář událostí"
31
  msgid "Content"
32
  msgstr "Obsah"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:438
35
- #: app/features/mec.php:469 app/features/mec.php:499
36
  msgid "Shortcode"
37
  msgstr "Zkrácený kód"
38
 
@@ -62,13 +62,14 @@ msgid "Select Type"
62
  msgstr "Vyberte typ"
63
 
64
  #: app/features/colors.php:50 app/features/fes/form.php:807
65
- #: app/features/mec/settings.php:680
66
  msgid "Event Color"
67
  msgstr "Barva události"
68
 
69
- #: app/features/contextual.php:55 app/features/mec.php:414
70
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
71
- #: app/features/mec/support.php:20 app/libraries/main.php:594
 
72
  msgid "Settings"
73
  msgstr "Nastavení"
74
 
@@ -193,7 +194,7 @@ msgstr ""
193
  msgid "General Options"
194
  msgstr "Obecné možnosti"
195
 
196
- #: app/features/contextual.php:139 app/features/mec/settings.php:429
197
  #: app/libraries/main.php:533
198
  msgid "Slugs/Permalinks"
199
  msgstr "Název v URL / Trvalé odkazy"
@@ -202,7 +203,7 @@ msgstr "Název v URL / Trvalé odkazy"
202
  msgid "Event Details/Single Event Page"
203
  msgstr "Podrobnosti o události / Stránka jedné události"
204
 
205
- #: app/features/contextual.php:166 app/features/mec/settings.php:461
206
  #: app/libraries/main.php:534
207
  msgid "Currency Options"
208
  msgstr "Možnosti Měna"
@@ -212,7 +213,7 @@ msgstr "Možnosti Měna"
212
  msgid "Google Maps Options"
213
  msgstr "Možnosti Google Maps"
214
 
215
- #: app/features/contextual.php:244 app/features/mec/settings.php:518
216
  #: app/libraries/main.php:535
217
  msgid "Google Recaptcha Options"
218
  msgstr "Možnosti Google Recaptcha"
@@ -231,7 +232,7 @@ msgstr "Sociální sítě"
231
  msgid "Next Event Module"
232
  msgstr "Modul Další události"
233
 
234
- #: app/features/contextual.php:286 app/features/mec/settings.php:554
235
  #: app/libraries/main.php:536
236
  msgid "Frontend Event Submission"
237
  msgstr "Předání události frontendu"
@@ -258,7 +259,7 @@ msgstr "Kupóny"
258
  msgid "BuddyPress Integration"
259
  msgstr "Integrace BuddyPress"
260
 
261
- #: app/features/contextual.php:334 app/features/mec/settings.php:847
262
  #: app/libraries/main.php:539
263
  msgid "Mailchimp Integration"
264
  msgstr "Integrace Mailchimp"
@@ -275,16 +276,16 @@ msgid "Events"
275
  msgstr "Události"
276
 
277
  #: app/features/events.php:158 app/features/fes.php:223
278
- #: app/features/mec/meta_boxes/display_options.php:1046
279
- #: app/features/mec/meta_boxes/display_options.php:1102
280
- #: app/features/mec/meta_boxes/display_options.php:1137
281
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
282
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
283
  #: app/skins/yearly_view/tpl.php:69
284
  msgid "Event"
285
  msgstr "Událost"
286
 
287
- #: app/features/events.php:159 app/features/mec.php:400
288
  msgid "Add Event"
289
  msgstr "Přidat událost"
290
 
@@ -314,7 +315,7 @@ msgid "No events found in Trash!"
314
  msgstr "V koši nebyly nalezeny žádné události!"
315
 
316
  #: app/features/events.php:182 app/features/events.php:3320
317
- #: app/features/mec/meta_boxes/display_options.php:957
318
  #: app/features/mec/meta_boxes/search_form.php:31
319
  #: app/features/mec/meta_boxes/search_form.php:93
320
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -326,8 +327,8 @@ msgstr "V koši nebyly nalezeny žádné události!"
326
  #: app/features/mec/meta_boxes/search_form.php:514
327
  #: app/features/mec/meta_boxes/search_form.php:575
328
  #: app/features/mec/meta_boxes/search_form.php:672
329
- #: app/features/mec/settings.php:800 app/features/mec/single.php:204
330
- #: app/features/search.php:67 app/libraries/main.php:5281
331
  #: app/libraries/skins.php:858 app/skins/single.php:566
332
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
333
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -336,8 +337,8 @@ msgid "Category"
336
  msgstr "Kategorie"
337
 
338
  #: app/features/events.php:183 app/features/events.php:3275
339
- #: app/features/fes/form.php:757 app/features/mec.php:402
340
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
341
  msgid "Categories"
342
  msgstr "Kategorie"
343
 
@@ -426,7 +427,7 @@ msgid "Event Repeating"
426
  msgstr "Opakování události"
427
 
428
  #: app/features/events.php:333 app/features/events.php:1286
429
- #: app/features/mec/settings.php:710 app/skins/single.php:947
430
  msgid "Hourly Schedule"
431
  msgstr "Hodinový rozvrh"
432
 
@@ -445,7 +446,7 @@ msgstr "Odkaz"
445
  #: app/features/events.php:336 app/features/events.php:3322
446
  #: app/features/events.php:3513 app/features/events.php:3555
447
  #: app/features/ix.php:3510 app/features/ix.php:3551
448
- #: app/features/mec/meta_boxes/display_options.php:960
449
  #: app/features/mec/meta_boxes/search_form.php:45
450
  #: app/features/mec/meta_boxes/search_form.php:107
451
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -457,11 +458,11 @@ msgstr "Odkaz"
457
  #: app/features/mec/meta_boxes/search_form.php:528
458
  #: app/features/mec/meta_boxes/search_form.php:589
459
  #: app/features/mec/meta_boxes/search_form.php:686
460
- #: app/features/mec/settings.php:812 app/features/mec/single.php:208
461
  #: app/features/organizers.php:58 app/features/organizers.php:204
462
  #: app/features/organizers.php:260 app/features/organizers.php:262
463
- #: app/features/organizers.php:271 app/features/search.php:75
464
- #: app/libraries/main.php:5287 app/libraries/skins.php:910
465
  #: app/skins/single.php:812 app/skins/single/default.php:217
466
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
467
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -469,7 +470,7 @@ msgid "Organizer"
469
  msgstr "Organizátor"
470
 
471
  #: app/features/events.php:337 app/features/events.php:1172
472
- #: app/features/fes/form.php:730 app/libraries/main.php:5314
473
  #: app/skins/single.php:589 app/skins/single/default.php:126
474
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
475
  #: app/skins/single/modern.php:208
@@ -488,7 +489,7 @@ msgstr "Údaje hosta"
488
  #: app/features/events.php:3802 app/features/fes.php:223
489
  #: app/features/fes/form.php:689 app/features/labels.php:178
490
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
491
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
492
  #: app/modules/booking/steps/form.php:37
493
  msgid "Name"
494
  msgstr "Jméno"
@@ -499,9 +500,9 @@ msgstr "Jméno"
499
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
500
  #: app/features/organizers.php:111 app/features/organizers.php:152
501
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
502
- #: app/features/speakers.php:196 app/libraries/main.php:1539
503
- #: app/libraries/main.php:1608 app/libraries/main.php:2826
504
- #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
505
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
506
  #: app/skins/single.php:884 app/skins/single/default.php:234
507
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
@@ -519,21 +520,21 @@ msgstr "Datum a čas"
519
  #: app/features/fes/form.php:251 app/features/ix.php:3510
520
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
521
  #: app/features/mec/dashboard.php:401
522
- #: app/features/mec/meta_boxes/display_options.php:48
523
- #: app/features/mec/meta_boxes/display_options.php:228
524
- #: app/features/mec/meta_boxes/display_options.php:406
525
- #: app/features/mec/meta_boxes/display_options.php:474
526
- #: app/features/mec/meta_boxes/display_options.php:597
527
- #: app/features/mec/meta_boxes/display_options.php:651
528
- #: app/features/mec/meta_boxes/display_options.php:698
529
- #: app/features/mec/meta_boxes/display_options.php:731
530
- #: app/features/mec/meta_boxes/display_options.php:766
531
- #: app/features/mec/meta_boxes/display_options.php:813
532
- #: app/features/mec/meta_boxes/display_options.php:912
533
- #: app/features/mec/meta_boxes/display_options.php:1160
534
- #: app/features/mec/meta_boxes/display_options.php:1248
535
- #: app/features/mec/meta_boxes/display_options.php:1340
536
- #: app/features/mec/meta_boxes/display_options.php:1407
537
  msgid "Start Date"
538
  msgstr "Počátečná den"
539
 
@@ -600,38 +601,38 @@ msgstr ""
600
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
601
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
602
  #: app/features/mec/dashboard.php:71
603
- #: app/features/mec/meta_boxes/display_options.php:79
604
- #: app/features/mec/meta_boxes/display_options.php:92
605
- #: app/features/mec/meta_boxes/display_options.php:105
606
- #: app/features/mec/meta_boxes/display_options.php:116
607
- #: app/features/mec/meta_boxes/display_options.php:128
608
- #: app/features/mec/meta_boxes/display_options.php:259
609
- #: app/features/mec/meta_boxes/display_options.php:271
610
- #: app/features/mec/meta_boxes/display_options.php:283
611
- #: app/features/mec/meta_boxes/display_options.php:296
612
- #: app/features/mec/meta_boxes/display_options.php:307
613
- #: app/features/mec/meta_boxes/display_options.php:320
614
- #: app/features/mec/meta_boxes/display_options.php:331
615
- #: app/features/mec/meta_boxes/display_options.php:438
616
- #: app/features/mec/meta_boxes/display_options.php:614
617
- #: app/features/mec/meta_boxes/display_options.php:944
618
- #: app/features/mec/meta_boxes/display_options.php:1017
619
- #: app/features/mec/meta_boxes/display_options.php:1029
620
- #: app/features/mec/meta_boxes/display_options.php:1040
621
- #: app/features/mec/meta_boxes/display_options.php:1072
622
- #: app/features/mec/meta_boxes/display_options.php:1083
623
- #: app/features/mec/meta_boxes/display_options.php:1096
624
- #: app/features/mec/meta_boxes/display_options.php:1131
625
- #: app/features/mec/meta_boxes/display_options.php:1180
626
- #: app/features/mec/meta_boxes/display_options.php:1191
627
- #: app/features/mec/meta_boxes/display_options.php:1202
628
- #: app/features/mec/meta_boxes/display_options.php:1268
629
- #: app/features/mec/meta_boxes/display_options.php:1281
630
- #: app/features/mec/meta_boxes/display_options.php:1294
631
- #: app/features/mec/meta_boxes/display_options.php:1307
632
- #: app/features/mec/meta_boxes/display_options.php:1320
633
- #: app/features/mec/meta_boxes/display_options.php:1371
634
- #: app/features/mec/meta_boxes/display_options.php:1424
635
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
636
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
637
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
@@ -645,14 +646,14 @@ msgstr ""
645
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
646
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
647
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
648
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
649
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
650
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:418
651
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:451
652
- #: app/features/mec/settings.php:479 app/features/mec/settings.php:566
653
- #: app/features/mec/settings.php:739 app/features/mec/settings.php:755
654
- #: app/features/mec/settings.php:862 app/features/mec/settings.php:875
655
- #: app/features/mec/settings.php:891 app/features/mec/single.php:42
656
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
657
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
658
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
@@ -830,7 +831,7 @@ msgstr "Další výskyt dalších událostí"
830
  #: app/features/events.php:1168 app/features/events.php:3513
831
  #: app/features/events.php:3555 app/features/fes/form.php:727
832
  #: app/features/ix.php:3510 app/features/ix.php:3551
833
- #: app/features/mec/settings.php:656 app/libraries/main.php:5313
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Cena události"
@@ -845,8 +846,8 @@ msgstr "Vyloučit určité dny"
845
 
846
  #: app/features/events.php:1204 app/features/events.php:2541
847
  #: app/features/fes.php:223 app/features/mec/booking.php:491
848
- #: app/features/profile/profile.php:53 app/libraries/main.php:2242
849
- #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
850
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
851
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
852
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
@@ -903,13 +904,13 @@ msgstr "Název"
903
  #: app/features/events.php:2357 app/features/events.php:2399
904
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
905
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
906
- #: app/libraries/main.php:2745 app/libraries/main.php:2775
907
- #: app/libraries/main.php:2804 app/libraries/main.php:2834
908
- #: app/libraries/main.php:2863 app/libraries/main.php:2892
909
- #: app/libraries/main.php:2921 app/libraries/main.php:2950
910
- #: app/libraries/main.php:2972 app/libraries/main.php:3003
911
- #: app/libraries/main.php:3047 app/libraries/main.php:3091
912
- #: app/libraries/main.php:3138 app/libraries/main.php:3177
913
  msgid "Remove"
914
  msgstr "Odstranit"
915
 
@@ -935,9 +936,9 @@ msgstr "Popis"
935
 
936
  #: app/features/events.php:1351 app/features/events.php:1384
937
  #: app/features/events.php:1445 app/features/fes/form.php:851
938
- #: app/features/mec.php:410 app/features/mec/modules.php:52
939
- #: app/features/mec/settings.php:704 app/features/speakers.php:62
940
- #: app/libraries/main.php:565 app/libraries/main.php:5288
941
  #: app/modules/speakers/details.php:18
942
  msgid "Speakers"
943
  msgstr "Řečníci"
@@ -947,12 +948,12 @@ msgid "New Day"
947
  msgstr "Nový den"
948
 
949
  #: app/features/events.php:1476 app/features/fes/form.php:704
950
- #: app/features/mec/settings.php:650
951
  msgid "Event Links"
952
  msgstr "Odkazy na událost"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5311
956
  msgid "Event Link"
957
  msgstr "Odkaz na událost"
958
 
@@ -976,7 +977,7 @@ msgid "URL Shortener"
976
  msgstr "Zkracovač URL"
977
 
978
  #: app/features/events.php:1495 app/features/events.php:1508
979
- #: app/features/fes/form.php:711 app/libraries/main.php:5312
980
  #: app/skins/single.php:673 app/skins/single/default.php:140
981
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
982
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1011,7 +1012,7 @@ msgstr "Celkové limity rezervace"
1011
  #: app/features/events.php:1596 app/features/events.php:1849
1012
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1013
  #: app/modules/booking/steps/tickets.php:40
1014
- #: app/skins/available_spot/tpl.php:160
1015
  msgid "Unlimited"
1016
  msgstr "Neomezené"
1017
 
@@ -1045,7 +1046,7 @@ msgid "12"
1045
  msgstr "12"
1046
 
1047
  #: app/features/events.php:1653 app/libraries/book.php:60
1048
- #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1049
  msgid "Tickets"
1050
  msgstr "Vstupenky"
1051
 
@@ -1150,7 +1151,7 @@ msgstr "Cena za datum"
1150
 
1151
  #: app/features/events.php:1909 app/features/events.php:1935
1152
  #: app/features/events.php:2113 app/features/labels.php:60
1153
- #: app/features/mec/meta_boxes/display_options.php:958
1154
  #: app/features/mec/meta_boxes/search_form.php:66
1155
  #: app/features/mec/meta_boxes/search_form.php:128
1156
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1162,7 +1163,7 @@ msgstr "Cena za datum"
1162
  #: app/features/mec/meta_boxes/search_form.php:549
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
- #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
  #: app/libraries/skins.php:988
1167
  msgid "Label"
1168
  msgstr "Štítek"
@@ -1207,7 +1208,7 @@ msgstr "Částka (za vstupenku)"
1207
  msgid "Amount (Per Booking)"
1208
  msgstr "Částka (za rezervaci)"
1209
 
1210
- #: app/features/events.php:2283 app/features/mec/settings.php:728
1211
  msgid "Ticket Variations / Options"
1212
  msgstr "Varianty vstupenky / možnosti"
1213
 
@@ -1229,44 +1230,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1229
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1230
 
1231
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1232
- #: app/libraries/main.php:2767
1233
  msgid "MEC Name"
1234
  msgstr "MEC Jméno"
1235
 
1236
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1237
- #: app/libraries/main.php:2796
1238
  msgid "MEC Email"
1239
  msgstr "MEC Email"
1240
 
1241
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1242
- #: app/libraries/main.php:2737
1243
  msgid "Text"
1244
  msgstr "Text"
1245
 
1246
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1247
  #: app/features/organizers.php:103 app/features/organizers.php:148
1248
  #: app/features/speakers.php:119 app/features/speakers.php:192
1249
- #: app/features/speakers.php:271 app/libraries/main.php:2913
1250
  msgid "Tel"
1251
  msgstr "Tel"
1252
 
1253
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1254
- #: app/libraries/main.php:2855
1255
  msgid "File"
1256
  msgstr "Soubor"
1257
 
1258
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1259
- #: app/libraries/main.php:2942
1260
  msgid "Textarea"
1261
  msgstr "Plocha textu"
1262
 
1263
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1264
- #: app/libraries/main.php:2995
1265
  msgid "Checkboxes"
1266
  msgstr "Zatržítko"
1267
 
1268
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1269
- #: app/libraries/main.php:3039
1270
  msgid "Radio Buttons"
1271
  msgstr "Přepínače"
1272
 
@@ -1346,17 +1347,17 @@ msgstr "Přepínače"
1346
  #: app/features/mec/meta_boxes/search_form.php:696
1347
  #: app/features/mec/meta_boxes/search_form.php:703
1348
  #: app/features/mec/meta_boxes/search_form.php:710
1349
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1350
  msgid "Dropdown"
1351
  msgstr "Rozbalovací"
1352
 
1353
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1354
- #: app/libraries/main.php:3130
1355
  msgid "Agreement"
1356
  msgstr "Smlouva"
1357
 
1358
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1359
- #: app/libraries/main.php:2971
1360
  msgid "Paragraph"
1361
  msgstr "Paragraf"
1362
 
@@ -1389,7 +1390,7 @@ msgstr "Limit účastníků"
1389
  #: app/features/ix.php:3551 app/features/locations.php:58
1390
  #: app/features/locations.php:230 app/features/locations.php:287
1391
  #: app/features/locations.php:289 app/features/locations.php:298
1392
- #: app/features/mec/meta_boxes/display_options.php:959
1393
  #: app/features/mec/meta_boxes/search_form.php:38
1394
  #: app/features/mec/meta_boxes/search_form.php:100
1395
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1401,9 +1402,9 @@ msgstr "Limit účastníků"
1401
  #: app/features/mec/meta_boxes/search_form.php:521
1402
  #: app/features/mec/meta_boxes/search_form.php:582
1403
  #: app/features/mec/meta_boxes/search_form.php:679
1404
- #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1405
- #: app/features/search.php:71 app/libraries/main.php:2236
1406
- #: app/libraries/main.php:5285 app/libraries/skins.php:884
1407
  #: app/skins/single.php:493 app/skins/single.php:924
1408
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1409
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1467,8 +1468,8 @@ msgid "%s Email"
1467
  msgstr "%s Email"
1468
 
1469
  #: app/features/events.php:3808 app/features/fes.php:223
1470
- #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1471
- #: app/libraries/main.php:5315
1472
  msgid "Ticket"
1473
  msgstr "Vstupenka"
1474
 
@@ -1517,7 +1518,7 @@ msgstr "Prosím %s/%s v pořadí pro správu událostí."
1517
  msgid "The event removed!"
1518
  msgstr "Událost byla odebrána!"
1519
 
1520
- #: app/features/fes.php:223 app/libraries/main.php:2248
1521
  msgid "Transaction ID"
1522
  msgstr "ID transakce"
1523
 
@@ -1564,43 +1565,43 @@ msgid "Go back to events list"
1564
  msgstr "Přejít zpět na seznam událostí"
1565
 
1566
  #: app/features/fes/form.php:366
1567
- #: app/features/mec/meta_boxes/display_options.php:843
1568
  #: app/libraries/main.php:410
1569
  msgid "Monday"
1570
  msgstr "Pondělí"
1571
 
1572
  #: app/features/fes/form.php:367
1573
- #: app/features/mec/meta_boxes/display_options.php:844
1574
  #: app/libraries/main.php:410
1575
  msgid "Tuesday"
1576
  msgstr "Úterý"
1577
 
1578
  #: app/features/fes/form.php:368
1579
- #: app/features/mec/meta_boxes/display_options.php:845
1580
  #: app/libraries/main.php:410
1581
  msgid "Wednesday"
1582
  msgstr "Středa"
1583
 
1584
  #: app/features/fes/form.php:369
1585
- #: app/features/mec/meta_boxes/display_options.php:846
1586
  #: app/libraries/main.php:410
1587
  msgid "Thursday"
1588
  msgstr "Čtvrtek"
1589
 
1590
  #: app/features/fes/form.php:370
1591
- #: app/features/mec/meta_boxes/display_options.php:847
1592
  #: app/libraries/main.php:410
1593
  msgid "Friday"
1594
  msgstr "Pátek"
1595
 
1596
  #: app/features/fes/form.php:371
1597
- #: app/features/mec/meta_boxes/display_options.php:848
1598
  #: app/libraries/main.php:410
1599
  msgid "Saturday"
1600
  msgstr "Sobota"
1601
 
1602
  #: app/features/fes/form.php:372
1603
- #: app/features/mec/meta_boxes/display_options.php:842
1604
  #: app/libraries/main.php:410
1605
  msgid "Sunday"
1606
  msgstr "Neděle"
@@ -1634,7 +1635,7 @@ msgstr ""
1634
  "Vložte celý odkaz včetně http (s): //"
1635
 
1636
  # v kontextu
1637
- #: app/features/fes/form.php:744 app/features/mec/settings.php:662
1638
  msgid "Featured Image"
1639
  msgstr "Hlavní obrázek"
1640
 
@@ -1643,15 +1644,15 @@ msgid "Remove Image"
1643
  msgstr "Odebrat obrázek"
1644
 
1645
  #: app/features/fes/form.php:783 app/features/labels.php:61
1646
- #: app/features/labels.php:221 app/features/mec.php:403
1647
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1648
  #: app/skins/single.php:702 app/skins/single/default.php:155
1649
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1650
  #: app/skins/single/modern.php:223
1651
  msgid "Labels"
1652
  msgstr "Štítky"
1653
 
1654
- #: app/features/fes/form.php:829 app/features/mec.php:401
1655
  #: app/features/mec/meta_boxes/filter.php:147
1656
  msgid "Tags"
1657
  msgstr "Tagy"
@@ -1978,7 +1979,7 @@ msgstr "Přidat do Google kalendáře"
1978
 
1979
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1980
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1981
- #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1982
  msgid "Checking ..."
1983
  msgstr "Ověřování ..."
1984
 
@@ -2028,8 +2029,8 @@ msgstr "ICS Feed"
2028
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2029
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2030
  #: app/features/mec/booking.php:359
2031
- #: app/features/mec/meta_boxes/display_options.php:175
2032
- #: app/features/mec/meta_boxes/display_options.php:367
2033
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2034
  #: app/features/mec/modules.php:228
2035
  #, php-format
@@ -2039,15 +2040,15 @@ msgstr "% s je vyžadováno pro použití této funkce."
2039
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2040
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2041
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2042
- #: app/features/mec/meta_boxes/display_options.php:175
2043
- #: app/features/mec/meta_boxes/display_options.php:367
2044
- #: app/features/mec/meta_boxes/display_options.php:395
2045
- #: app/features/mec/meta_boxes/display_options.php:535
2046
- #: app/features/mec/meta_boxes/display_options.php:586
2047
- #: app/features/mec/meta_boxes/display_options.php:693
2048
- #: app/features/mec/meta_boxes/display_options.php:800
2049
- #: app/features/mec/meta_boxes/display_options.php:907
2050
- #: app/features/mec/meta_boxes/display_options.php:1120
2051
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2052
  #: app/features/mec/modules.php:228
2053
  msgid "Pro version of Modern Events Calendar"
@@ -2221,7 +2222,7 @@ msgid "Auto Synchronization"
2221
  msgstr "Automatická synchronizace"
2222
 
2223
  #: app/features/ix/sync.php:22
2224
- #: app/features/mec/meta_boxes/display_options.php:907
2225
  #, php-format
2226
  msgid "%s is required to use synchronization feature."
2227
  msgstr "%s je vyžadováno pro použití vlastností synchronizace."
@@ -2385,16 +2386,16 @@ msgid "Select label color"
2385
  msgstr "Vybrat barvu štítku"
2386
 
2387
  #: app/features/labels.php:112 app/features/labels.php:139
2388
- #: app/features/mec/meta_boxes/display_options.php:38
2389
- #: app/features/mec/meta_boxes/display_options.php:215
2390
- #: app/features/mec/meta_boxes/display_options.php:400
2391
- #: app/features/mec/meta_boxes/display_options.php:591
2392
- #: app/features/mec/meta_boxes/display_options.php:641
2393
- #: app/features/mec/meta_boxes/display_options.php:805
2394
- #: app/features/mec/meta_boxes/display_options.php:1002
2395
- #: app/features/mec/meta_boxes/display_options.php:1059
2396
- #: app/features/mec/meta_boxes/display_options.php:1151
2397
- #: app/features/mec/meta_boxes/display_options.php:1238
2398
  msgid "Style"
2399
  msgstr "Styl"
2400
 
@@ -2407,26 +2408,26 @@ msgstr "Normální"
2407
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2408
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2409
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2410
- #: app/skins/grid/render.php:52 app/skins/list/render.php:37
2411
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2412
  #: app/skins/monthly_view/calendar_clean.php:86
2413
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2414
- #: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
2415
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2416
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2417
  msgid "Featured"
2418
  msgstr "Ztvárněná"
2419
 
2420
  #: app/features/labels.php:118 app/features/labels.php:143
2421
- #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2422
- #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2423
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2424
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2425
- #: app/skins/list/render.php:38 app/skins/masonry/render.php:30
2426
  #: app/skins/monthly_view/calendar.php:90
2427
  #: app/skins/monthly_view/calendar_clean.php:90
2428
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2429
- #: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
2430
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2431
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2432
  msgid "Canceled"
@@ -2453,9 +2454,9 @@ msgstr "Slug"
2453
  msgid "Event %s"
2454
  msgstr "Událost %s"
2455
 
2456
- #: app/features/locations.php:59 app/features/mec.php:404
2457
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2458
- #: app/libraries/main.php:5284
2459
  msgid "Locations"
2460
  msgstr "Umístění"
2461
 
@@ -2526,7 +2527,7 @@ msgstr "Název místa"
2526
  msgid "eg. City Hall"
2527
  msgstr "např. Radnice"
2528
 
2529
- #: app/features/locations.php:310 app/features/mec/settings.php:692
2530
  #: app/widgets/single.php:115
2531
  msgid "Event Location"
2532
  msgstr "Místo události"
@@ -2565,7 +2566,7 @@ msgstr "Vyberte obrázek"
2565
  msgid "Don't show map in single event page"
2566
  msgstr "Nezobrazovat mapu na jednostránkové události"
2567
 
2568
- #: app/features/locations.php:356 app/libraries/main.php:5318
2569
  msgid "Other Locations"
2570
  msgstr "Další místa"
2571
 
@@ -2578,7 +2579,7 @@ msgstr "Pokud chcete, můžete kromě hlavního místa vybrat i další místa."
2578
  msgid "<strong>"
2579
  msgstr "<strong>"
2580
 
2581
- #: app/features/mec.php:185
2582
  msgid ""
2583
  "Activation faild. Please check your purchase code or license type."
2584
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
@@ -2587,16 +2588,16 @@ msgstr ""
2587
  "<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
2588
  "</b>"
2589
 
2590
- #: app/features/mec.php:185
2591
  msgid "Troubleshooting"
2592
  msgstr "Odstraňování problémů"
2593
 
2594
- #: app/features/mec.php:255 app/libraries/notifications.php:933
2595
  #, php-format
2596
  msgid "%s to %s"
2597
  msgstr ""
2598
 
2599
- #: app/features/mec.php:278
2600
  msgid ""
2601
  "Your options is not in JSON format. Please insert correct options in this "
2602
  "field and try again."
@@ -2604,91 +2605,91 @@ msgstr ""
2604
  "Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
2605
  "a zkuste to znovu."
2606
 
2607
- #: app/features/mec.php:285
2608
  msgid "Your options field can not be empty!"
2609
  msgstr "Pole možností nemůže být prázdné!"
2610
 
2611
- #: app/features/mec.php:291
2612
  msgid "Your options imported successfuly."
2613
  msgstr "Vaše možnosti byly úspěšně importovány."
2614
 
2615
- #: app/features/mec.php:384
2616
  msgid "MEC - Support"
2617
  msgstr "MEC - podpora"
2618
 
2619
- #: app/features/mec.php:384 app/features/mec/support-page.php:9
2620
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2621
  msgid "Support"
2622
  msgstr "Podpora"
2623
 
2624
- #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2625
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2626
- #: app/libraries/main.php:5286
2627
  msgid "Organizers"
2628
  msgstr "Organizátoři"
2629
 
2630
- #: app/features/mec.php:413 app/features/mec.php:437
2631
  #: app/features/mec/dashboard.php:264
2632
  msgid "Shortcodes"
2633
  msgstr "Zkrácené kódy"
2634
 
2635
- #: app/features/mec.php:414
2636
  msgid "MEC - Settings"
2637
  msgstr "MEC - Nastavení"
2638
 
2639
- #: app/features/mec.php:415
2640
  msgid "MEC - Addons"
2641
  msgstr "MEC - doplňky"
2642
 
2643
- #: app/features/mec.php:415 app/features/mec/addons.php:22
2644
  msgid "Addons"
2645
  msgstr "Doplňky"
2646
 
2647
- #: app/features/mec.php:418
2648
  #, fuzzy
2649
  #| msgid "MEC - Support"
2650
  msgid "MEC - Report"
2651
  msgstr "MEC - podpora"
2652
 
2653
- #: app/features/mec.php:418
2654
  #, fuzzy
2655
  #| msgid "Export"
2656
  msgid "Report"
2657
  msgstr "Export"
2658
 
2659
- #: app/features/mec.php:439
2660
  msgid "Add Shortcode"
2661
  msgstr "Přidat zkrácený kód"
2662
 
2663
- #: app/features/mec.php:440
2664
  msgid "Add New Shortcode"
2665
  msgstr "Přidat nový zkrácený kód"
2666
 
2667
- #: app/features/mec.php:441
2668
  msgid "No shortcodes found!"
2669
  msgstr "Nebyly nalezeny žádné zkrácené kódy!"
2670
 
2671
- #: app/features/mec.php:442
2672
  msgid "All Shortcodes"
2673
  msgstr "Všechny zkrácené kódy"
2674
 
2675
- #: app/features/mec.php:443
2676
  msgid "Edit shortcodes"
2677
  msgstr "Editace zkrácených kódů"
2678
 
2679
- #: app/features/mec.php:444
2680
  msgid "No shortcodes found in Trash!"
2681
  msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
2682
 
2683
- #: app/features/mec.php:497
2684
  msgid "Display Options"
2685
  msgstr "Zobrazit možnosti"
2686
 
2687
- #: app/features/mec.php:498
2688
  msgid "Filter Options"
2689
  msgstr "Filtrovat možnosti"
2690
 
2691
- #: app/features/mec.php:500
2692
  msgid "Search Form"
2693
  msgstr "Vyhledávací formulář"
2694
 
@@ -2696,21 +2697,21 @@ msgstr "Vyhledávací formulář"
2696
  msgid "Display content's images as Popup"
2697
  msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
2698
 
2699
- #: app/features/mec.php:888
2700
  msgid "Single Event Display Method"
2701
  msgstr "Metoda zobrazení jedné události"
2702
 
2703
- #: app/features/mec.php:893
2704
  msgid "Separate Window"
2705
  msgstr "Samostatné okno"
2706
 
2707
- #: app/features/mec.php:894
2708
  msgid "Modal 1"
2709
  msgstr "Modal 1"
2710
 
2711
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2712
- #: app/features/mec/dashboard.php:81 app/features/mec/report.php:17
2713
- #: app/features/mec/support-page.php:21
2714
  msgid "Version"
2715
  msgstr "Verze"
2716
 
@@ -2748,8 +2749,8 @@ msgstr "Vyhledávání ..."
2748
  #: app/features/mec/notifications.php:828
2749
  #: app/features/mec/notifications.php:924
2750
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2751
- #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2752
- #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2753
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2754
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2755
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
@@ -2783,13 +2784,13 @@ msgid "Default is Y-m-d"
2783
  msgstr "Výchozí je Y-m-d"
2784
 
2785
  #: app/features/mec/booking.php:115
2786
- #: app/features/mec/meta_boxes/display_options.php:134
2787
- #: app/features/mec/meta_boxes/display_options.php:348
2788
- #: app/features/mec/meta_boxes/display_options.php:444
2789
- #: app/features/mec/meta_boxes/display_options.php:950
2790
- #: app/features/mec/meta_boxes/display_options.php:1217
2791
- #: app/features/mec/meta_boxes/display_options.php:1326
2792
- #: app/features/mec/meta_boxes/display_options.php:1377
2793
  msgid "Limit"
2794
  msgstr "Limit"
2795
 
@@ -2837,7 +2838,7 @@ msgstr ""
2837
  "minut před zahájením akce!"
2838
 
2839
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2840
- #: app/features/mec/settings.php:599 app/features/mec/settings.php:609
2841
  msgid "Thank You Page"
2842
  msgstr "Stránka s poděkováním"
2843
 
@@ -2850,15 +2851,15 @@ msgstr ""
2850
  "vypnout, ponechte ji prázdnou."
2851
 
2852
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2853
- #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
2854
  msgid "Thank You Page Time Interval"
2855
  msgstr "Stránka s poděkováním časového intervalu"
2856
 
2857
- #: app/features/mec/booking.php:167 app/features/mec/settings.php:621
2858
  msgid "2000 mean 2 seconds"
2859
  msgstr "2000 znamená 2 vteřiny"
2860
 
2861
- #: app/features/mec/booking.php:171 app/features/mec/settings.php:625
2862
  msgid ""
2863
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2864
  "2000 means 2 seconds."
@@ -2969,14 +2970,14 @@ msgstr ""
2969
 
2970
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2971
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2972
- #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2973
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2974
  msgid "Saved"
2975
  msgstr "Uloženo"
2976
 
2977
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2978
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2979
- #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2980
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2981
  msgid "Settings Saved!"
2982
  msgstr "Nastavení uložena!"
@@ -2984,14 +2985,14 @@ msgstr "Nastavení uložena!"
2984
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2985
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2986
  #: app/features/mec/notifications.php:905
2987
- #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2988
- #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2989
- #: app/features/mec/single.php:289 app/libraries/main.php:5530
2990
  msgid "Verified"
2991
  msgstr "Ověřeno"
2992
 
2993
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2994
- #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
2995
  #: app/features/mec/single.php:291
2996
  msgid "Please Refresh Page"
2997
  msgstr "Prosím obnovte stránku"
@@ -3019,7 +3020,7 @@ msgstr "Ohodnoťe doplněk ★★★★★"
3019
  msgid "Update"
3020
  msgstr "Aktualizovat"
3021
 
3022
- #: app/features/mec/dashboard.php:96
3023
  #, php-format
3024
  msgid ""
3025
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3030,15 +3031,16 @@ msgstr ""
3030
  "pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
3031
  "pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
3032
 
3033
- #: app/features/mec/dashboard.php:96
3034
  msgid "lite"
3035
  msgstr " omezenou"
3036
 
3037
- #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
 
3038
  msgid "GO PREMIUM"
3039
  msgstr "PŘEJÍT NA PREMIUM"
3040
 
3041
- #: app/features/mec/dashboard.php:102
3042
  #, php-format
3043
  msgid ""
3044
  "Easily get a discount coupon by rating us on %s or following and reposting "
@@ -3047,11 +3049,11 @@ msgstr ""
3047
  "Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
3048
  "uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte % s"
3049
 
3050
- #: app/features/mec/dashboard.php:102
3051
  msgid "WordPress"
3052
  msgstr "WordPress"
3053
 
3054
- #: app/features/mec/dashboard.php:102
3055
  msgid "Copouns!"
3056
  msgstr "Kupóny!"
3057
 
@@ -3087,7 +3089,7 @@ msgstr ""
3087
  "Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
3088
  "zakoupený kód."
3089
 
3090
- #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3091
  msgid "Upcoming Events"
3092
  msgstr "Nadcházející události"
3093
 
@@ -3136,6 +3138,10 @@ msgstr "Celkový prodej %s"
3136
  msgid "Change Log"
3137
  msgstr "Změna logu"
3138
 
 
 
 
 
3139
  #: app/features/mec/ie.php:21
3140
  msgid ""
3141
  "Insert your backup files below and press import to restore your site's "
@@ -3181,63 +3187,59 @@ msgstr ""
3181
  "pokud je váš web vícejazyčný, doporučujeme vám změnit zprávy / fráze přímo "
3182
  "v jazykových souborech."
3183
 
3184
- #: app/features/mec/meta_boxes/display_options.php:22
3185
  msgid "Skin"
3186
  msgstr "Vzhled"
3187
 
3188
- #: app/features/mec/meta_boxes/display_options.php:40
3189
- #: app/features/mec/meta_boxes/display_options.php:217
3190
- #: app/features/mec/meta_boxes/display_options.php:643
3191
- #: app/features/mec/meta_boxes/display_options.php:809
3192
- #: app/features/mec/meta_boxes/display_options.php:1004
3193
- #: app/features/mec/settings.php:259 app/features/mec/settings.php:283
3194
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:333
3195
- #: app/features/mec/settings.php:357 app/features/mec/settings.php:366
 
 
3196
  msgid "Classic"
3197
  msgstr "Klasický"
3198
 
3199
- #: app/features/mec/meta_boxes/display_options.php:41
3200
- #: app/features/mec/meta_boxes/display_options.php:219
3201
- #: app/features/mec/settings.php:284 app/features/mec/settings.php:294
3202
- #: app/features/mec/settings.php:358 app/features/mec/settings.php:368
 
3203
  msgid "Minimal"
3204
  msgstr "Minimální"
3205
 
3206
- #: app/features/mec/meta_boxes/display_options.php:42
3207
- #: app/features/mec/meta_boxes/display_options.php:220
3208
- #: app/features/mec/meta_boxes/display_options.php:593
3209
- #: app/features/mec/meta_boxes/display_options.php:645
3210
- #: app/features/mec/meta_boxes/display_options.php:807
3211
- #: app/features/mec/meta_boxes/display_options.php:1006
3212
- #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3213
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:295
3214
- #: app/features/mec/settings.php:335 app/features/mec/settings.php:348
3215
- #: app/features/mec/settings.php:359 app/features/mec/settings.php:369
 
 
 
3216
  msgid "Modern"
3217
  msgstr "Moderní"
3218
 
3219
- #: app/features/mec/meta_boxes/display_options.php:43
3220
- #: app/features/mec/settings.php:286 app/features/mec/settings.php:360
 
3221
  msgid "Standard"
3222
  msgstr "Standardní"
3223
 
3224
- #: app/features/mec/meta_boxes/display_options.php:44
3225
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:361
 
3226
  msgid "Accordion"
3227
  msgstr "Akordeon"
3228
 
3229
- #: app/features/mec/meta_boxes/display_options.php:50
3230
- #: app/features/mec/meta_boxes/display_options.php:230
3231
- #: app/features/mec/meta_boxes/display_options.php:408
3232
- #: app/features/mec/meta_boxes/display_options.php:700
3233
- #: app/features/mec/meta_boxes/display_options.php:733
3234
- #: app/features/mec/meta_boxes/display_options.php:914
3235
- #: app/features/mec/meta_boxes/display_options.php:1162
3236
- #: app/features/mec/meta_boxes/display_options.php:1250
3237
- #: app/features/mec/meta_boxes/display_options.php:1342
3238
- msgid "Today"
3239
- msgstr "Dnes"
3240
-
3241
  #: app/features/mec/meta_boxes/display_options.php:51
3242
  #: app/features/mec/meta_boxes/display_options.php:231
3243
  #: app/features/mec/meta_boxes/display_options.php:409
@@ -3247,25 +3249,20 @@ msgstr "Dnes"
3247
  #: app/features/mec/meta_boxes/display_options.php:1163
3248
  #: app/features/mec/meta_boxes/display_options.php:1251
3249
  #: app/features/mec/meta_boxes/display_options.php:1343
3250
- msgid "Tomorrow"
3251
- msgstr "Zítra"
3252
 
3253
  #: app/features/mec/meta_boxes/display_options.php:52
3254
  #: app/features/mec/meta_boxes/display_options.php:232
3255
  #: app/features/mec/meta_boxes/display_options.php:410
3256
- #: app/features/mec/meta_boxes/display_options.php:476
3257
- #: app/features/mec/meta_boxes/display_options.php:653
3258
  #: app/features/mec/meta_boxes/display_options.php:702
3259
  #: app/features/mec/meta_boxes/display_options.php:735
3260
- #: app/features/mec/meta_boxes/display_options.php:770
3261
- #: app/features/mec/meta_boxes/display_options.php:817
3262
  #: app/features/mec/meta_boxes/display_options.php:916
3263
  #: app/features/mec/meta_boxes/display_options.php:1164
3264
  #: app/features/mec/meta_boxes/display_options.php:1252
3265
  #: app/features/mec/meta_boxes/display_options.php:1344
3266
- #: app/features/mec/meta_boxes/display_options.php:1409
3267
- msgid "Start of Current Month"
3268
- msgstr "Začátek aktuálního měsíce"
3269
 
3270
  #: app/features/mec/meta_boxes/display_options.php:53
3271
  #: app/features/mec/meta_boxes/display_options.php:233
@@ -3281,14 +3278,13 @@ msgstr "Začátek aktuálního měsíce"
3281
  #: app/features/mec/meta_boxes/display_options.php:1253
3282
  #: app/features/mec/meta_boxes/display_options.php:1345
3283
  #: app/features/mec/meta_boxes/display_options.php:1410
3284
- msgid "Start of Next Month"
3285
- msgstr "Začátek dalšího měsíce"
3286
 
3287
  #: app/features/mec/meta_boxes/display_options.php:54
3288
  #: app/features/mec/meta_boxes/display_options.php:234
3289
  #: app/features/mec/meta_boxes/display_options.php:412
3290
  #: app/features/mec/meta_boxes/display_options.php:478
3291
- #: app/features/mec/meta_boxes/display_options.php:601
3292
  #: app/features/mec/meta_boxes/display_options.php:655
3293
  #: app/features/mec/meta_boxes/display_options.php:704
3294
  #: app/features/mec/meta_boxes/display_options.php:737
@@ -3299,520 +3295,547 @@ msgstr "Začátek dalšího měsíce"
3299
  #: app/features/mec/meta_boxes/display_options.php:1254
3300
  #: app/features/mec/meta_boxes/display_options.php:1346
3301
  #: app/features/mec/meta_boxes/display_options.php:1411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3302
  msgid "On a certain date"
3303
  msgstr "K určitému datu"
3304
 
3305
- #: app/features/mec/meta_boxes/display_options.php:57
3306
- #: app/features/mec/meta_boxes/display_options.php:237
3307
- #: app/features/mec/meta_boxes/display_options.php:415
3308
- #: app/features/mec/meta_boxes/display_options.php:481
3309
- #: app/features/mec/meta_boxes/display_options.php:604
3310
- #: app/features/mec/meta_boxes/display_options.php:658
3311
- #: app/features/mec/meta_boxes/display_options.php:707
3312
- #: app/features/mec/meta_boxes/display_options.php:741
3313
- #: app/features/mec/meta_boxes/display_options.php:775
3314
- #: app/features/mec/meta_boxes/display_options.php:822
3315
- #: app/features/mec/meta_boxes/display_options.php:921
3316
- #: app/features/mec/meta_boxes/display_options.php:1169
3317
- #: app/features/mec/meta_boxes/display_options.php:1257
3318
- #: app/features/mec/meta_boxes/display_options.php:1349
3319
- #: app/features/mec/meta_boxes/display_options.php:1414
3320
  #, php-format
3321
  msgid "eg. %s"
3322
  msgstr "např. %s"
3323
 
3324
- #: app/features/mec/meta_boxes/display_options.php:62
3325
  #: app/features/mec/meta_boxes/display_options.php:63
3326
- #: app/features/mec/meta_boxes/display_options.php:66
3327
- #: app/features/mec/meta_boxes/display_options.php:242
3328
  #: app/features/mec/meta_boxes/display_options.php:243
3329
- #: app/features/mec/meta_boxes/display_options.php:246
3330
- #: app/features/mec/meta_boxes/display_options.php:420
3331
  #: app/features/mec/meta_boxes/display_options.php:421
3332
- #: app/features/mec/meta_boxes/display_options.php:424
3333
- #: app/features/mec/meta_boxes/display_options.php:926
3334
  #: app/features/mec/meta_boxes/display_options.php:927
3335
- #: app/features/mec/meta_boxes/display_options.php:930
3336
- #: app/features/mec/meta_boxes/display_options.php:1354
3337
  #: app/features/mec/meta_boxes/display_options.php:1355
3338
- #: app/features/mec/meta_boxes/display_options.php:1358
 
3339
  #, fuzzy
3340
  #| msgid "Maximum Dates"
3341
  msgid "Maximum Date"
3342
  msgstr "Maximum termínů"
3343
 
3344
- #: app/features/mec/meta_boxes/display_options.php:67
3345
- #: app/features/mec/meta_boxes/display_options.php:247
3346
- #: app/features/mec/meta_boxes/display_options.php:425
3347
- #: app/features/mec/meta_boxes/display_options.php:931
3348
- #: app/features/mec/meta_boxes/display_options.php:1359
3349
  #, fuzzy
3350
  #| msgid "Show events based on created shortcodes."
3351
  msgid "Show events before the specified date."
3352
  msgstr "Zobrazit události na základě vytvořených zkrácených kódů."
3353
 
3354
- #: app/features/mec/meta_boxes/display_options.php:74
3355
- #: app/features/mec/meta_boxes/display_options.php:78
3356
- #: app/features/mec/meta_boxes/display_options.php:85
3357
- #: app/features/mec/meta_boxes/display_options.php:91
3358
- #: app/features/mec/meta_boxes/display_options.php:98
3359
- #: app/features/mec/meta_boxes/display_options.php:104
3360
- #: app/features/mec/meta_boxes/display_options.php:111
3361
- #: app/features/mec/meta_boxes/display_options.php:115
3362
- #: app/features/mec/meta_boxes/display_options.php:122
3363
- #: app/features/mec/meta_boxes/display_options.php:127
3364
- #: app/features/mec/meta_boxes/display_options.php:254
3365
- #: app/features/mec/meta_boxes/display_options.php:258
3366
- #: app/features/mec/meta_boxes/display_options.php:265
3367
- #: app/features/mec/meta_boxes/display_options.php:270
3368
- #: app/features/mec/meta_boxes/display_options.php:277
3369
- #: app/features/mec/meta_boxes/display_options.php:282
3370
- #: app/features/mec/meta_boxes/display_options.php:289
3371
- #: app/features/mec/meta_boxes/display_options.php:295
3372
- #: app/features/mec/meta_boxes/display_options.php:302
3373
- #: app/features/mec/meta_boxes/display_options.php:306
3374
- #: app/features/mec/meta_boxes/display_options.php:313
3375
- #: app/features/mec/meta_boxes/display_options.php:319
3376
- #: app/features/mec/meta_boxes/display_options.php:326
3377
- #: app/features/mec/meta_boxes/display_options.php:330
3378
- #: app/features/mec/meta_boxes/display_options.php:432
3379
- #: app/features/mec/meta_boxes/display_options.php:437
3380
- #: app/features/mec/meta_boxes/display_options.php:608
3381
- #: app/features/mec/meta_boxes/display_options.php:613
3382
- #: app/features/mec/meta_boxes/display_options.php:854
3383
- #: app/features/mec/meta_boxes/display_options.php:938
3384
- #: app/features/mec/meta_boxes/display_options.php:943
3385
- #: app/features/mec/meta_boxes/display_options.php:1010
3386
- #: app/features/mec/meta_boxes/display_options.php:1016
3387
- #: app/features/mec/meta_boxes/display_options.php:1023
3388
- #: app/features/mec/meta_boxes/display_options.php:1028
3389
- #: app/features/mec/meta_boxes/display_options.php:1035
3390
- #: app/features/mec/meta_boxes/display_options.php:1039
3391
- #: app/features/mec/meta_boxes/display_options.php:1067
3392
- #: app/features/mec/meta_boxes/display_options.php:1071
3393
- #: app/features/mec/meta_boxes/display_options.php:1078
3394
- #: app/features/mec/meta_boxes/display_options.php:1082
3395
- #: app/features/mec/meta_boxes/display_options.php:1089
3396
- #: app/features/mec/meta_boxes/display_options.php:1095
3397
- #: app/features/mec/meta_boxes/display_options.php:1125
3398
- #: app/features/mec/meta_boxes/display_options.php:1130
3399
- #: app/features/mec/meta_boxes/display_options.php:1173
3400
- #: app/features/mec/meta_boxes/display_options.php:1179
3401
- #: app/features/mec/meta_boxes/display_options.php:1186
3402
- #: app/features/mec/meta_boxes/display_options.php:1190
3403
- #: app/features/mec/meta_boxes/display_options.php:1197
3404
- #: app/features/mec/meta_boxes/display_options.php:1201
3405
- #: app/features/mec/meta_boxes/display_options.php:1261
3406
- #: app/features/mec/meta_boxes/display_options.php:1267
3407
- #: app/features/mec/meta_boxes/display_options.php:1274
3408
- #: app/features/mec/meta_boxes/display_options.php:1280
3409
- #: app/features/mec/meta_boxes/display_options.php:1287
3410
- #: app/features/mec/meta_boxes/display_options.php:1293
3411
- #: app/features/mec/meta_boxes/display_options.php:1300
3412
- #: app/features/mec/meta_boxes/display_options.php:1306
3413
- #: app/features/mec/meta_boxes/display_options.php:1313
3414
- #: app/features/mec/meta_boxes/display_options.php:1319
3415
- #: app/features/mec/meta_boxes/display_options.php:1366
3416
- #: app/features/mec/meta_boxes/display_options.php:1370
3417
- #: app/features/mec/meta_boxes/display_options.php:1418
3418
- #: app/features/mec/meta_boxes/display_options.php:1423
3419
- msgid "Date Formats"
3420
- msgstr "Formát data"
3421
-
3422
  #: app/features/mec/meta_boxes/display_options.php:79
3423
- #: app/features/mec/meta_boxes/display_options.php:307
3424
- msgid "Default value is \"M d Y\""
3425
- msgstr "Výchozí hodnota je \"M d Y\""
3426
-
3427
  #: app/features/mec/meta_boxes/display_options.php:92
3428
- msgid "Default values are d, M and l"
3429
- msgstr "Výchozí hodnoty jsou d, M a l"
3430
-
3431
  #: app/features/mec/meta_boxes/display_options.php:105
 
 
 
 
 
 
 
 
 
 
 
3432
  #: app/features/mec/meta_boxes/display_options.php:296
 
 
 
3433
  #: app/features/mec/meta_boxes/display_options.php:320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3434
  #: app/features/mec/meta_boxes/display_options.php:1268
 
3435
  #: app/features/mec/meta_boxes/display_options.php:1281
 
3436
  #: app/features/mec/meta_boxes/display_options.php:1294
 
3437
  #: app/features/mec/meta_boxes/display_options.php:1307
 
3438
  #: app/features/mec/meta_boxes/display_options.php:1320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3439
  msgid "Default values are d, F and l"
3440
  msgstr "Výchozí hodnoty jsou d, F a I"
3441
 
3442
- #: app/features/mec/meta_boxes/display_options.php:116
3443
  msgid "Default value is \"M d\""
3444
  msgstr "Výchozí hodnoty jsou \"M d\""
3445
 
3446
  # Co je TDefault?
3447
- #: app/features/mec/meta_boxes/display_options.php:128
3448
  msgid "TDefault values are d and F"
3449
  msgstr "TVýchozí hodnoty jsou d a F"
3450
 
3451
- #: app/features/mec/meta_boxes/display_options.php:135
3452
- #: app/features/mec/meta_boxes/display_options.php:349
3453
- #: app/features/mec/meta_boxes/display_options.php:445
3454
- #: app/features/mec/meta_boxes/display_options.php:621
3455
- #: app/features/mec/meta_boxes/display_options.php:663
3456
- #: app/features/mec/meta_boxes/display_options.php:746
3457
- #: app/features/mec/meta_boxes/display_options.php:780
3458
- #: app/features/mec/meta_boxes/display_options.php:827
3459
- #: app/features/mec/meta_boxes/display_options.php:1218
3460
- #: app/features/mec/meta_boxes/display_options.php:1327
3461
- #: app/features/mec/meta_boxes/display_options.php:1378
3462
  msgid "eg. 6"
3463
  msgstr "např. 6"
3464
 
3465
- #: app/features/mec/meta_boxes/display_options.php:140
3466
  #, fuzzy
3467
  #| msgid "Hide Event Time"
3468
  msgid "Include Events Times"
3469
  msgstr "Skrýt čas události"
3470
 
3471
- #: app/features/mec/meta_boxes/display_options.php:151
3472
- #: app/features/mec/meta_boxes/display_options.php:353
3473
- #: app/features/mec/meta_boxes/display_options.php:449
3474
- #: app/features/mec/meta_boxes/display_options.php:987
3475
- #: app/features/mec/meta_boxes/display_options.php:1382
3476
  msgid "Load More Button"
3477
  msgstr "Načíst tlačítko Další"
3478
 
3479
- #: app/features/mec/meta_boxes/display_options.php:161
3480
- #: app/features/mec/meta_boxes/display_options.php:459
3481
- #: app/features/mec/meta_boxes/display_options.php:1392
3482
  msgid "Show Month Divider"
3483
  msgstr "Zobrazit oddělovník měsíce"
3484
 
3485
- #: app/features/mec/meta_boxes/display_options.php:171
3486
- #: app/features/mec/meta_boxes/display_options.php:363
3487
  msgid "Show Map on top"
3488
  msgstr "Zobrazit mapu nahoře"
3489
 
3490
- #: app/features/mec/meta_boxes/display_options.php:186
3491
- #: app/features/mec/meta_boxes/display_options.php:378
3492
- #: app/features/mec/meta_boxes/display_options.php:716
3493
  msgid "Geolocation"
3494
  msgstr "Geolokace"
3495
 
3496
- #: app/features/mec/meta_boxes/display_options.php:201
3497
  msgid "Toggle for Month Divider"
3498
  msgstr "Přepínač pro oddělovník měsíce"
3499
 
3500
- #: app/features/mec/meta_boxes/display_options.php:218
3501
- #: app/features/mec/meta_boxes/display_options.php:402
3502
- #: app/features/mec/meta_boxes/display_options.php:497
3503
- #: app/features/mec/meta_boxes/display_options.php:644
3504
- #: app/features/mec/meta_boxes/display_options.php:808
3505
- #: app/features/mec/meta_boxes/display_options.php:1005
3506
- #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
3507
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:334
3508
- #: app/features/mec/settings.php:349 app/features/mec/settings.php:367
 
 
 
3509
  msgid "Clean"
3510
  msgstr "Čistý"
3511
 
3512
- #: app/features/mec/meta_boxes/display_options.php:221
3513
- #: app/features/mec/meta_boxes/display_options.php:499
3514
- #: app/features/mec/meta_boxes/display_options.php:647
3515
- #: app/features/mec/settings.php:263 app/features/mec/settings.php:296
3516
- #: app/features/mec/settings.php:337 app/features/mec/settings.php:370
 
 
3517
  msgid "Simple"
3518
  msgstr "Jednoduchý"
3519
 
3520
- #: app/features/mec/meta_boxes/display_options.php:222
 
3521
  msgid "Colorful"
3522
  msgstr "Plněbarevný"
3523
 
3524
- #: app/features/mec/meta_boxes/display_options.php:223
3525
- #: app/features/mec/meta_boxes/display_options.php:498
3526
- #: app/features/mec/meta_boxes/display_options.php:646
3527
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:298
3528
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:372
 
 
3529
  msgid "Novel"
3530
  msgstr "Novela"
3531
 
3532
- #: app/features/mec/meta_boxes/display_options.php:259
3533
- #: app/features/mec/meta_boxes/display_options.php:1371
3534
  msgid "Default value is \"d F Y"
3535
  msgstr "Výchozí hodnota je \"d F Y"
3536
 
3537
- #: app/features/mec/meta_boxes/display_options.php:271
3538
  msgid "Default values are d and F"
3539
  msgstr "Výchozí hodnoty jsou d a F"
3540
 
3541
- #: app/features/mec/meta_boxes/display_options.php:283
3542
  msgid "Default values are d and M"
3543
  msgstr "Výchozí hodnoty jsou d a M"
3544
 
3545
- #: app/features/mec/meta_boxes/display_options.php:331
3546
  msgid "Default value is \"d F Y\""
3547
  msgstr "Výchozí hodnota je \"d F Y\""
3548
 
3549
- #: app/features/mec/meta_boxes/display_options.php:337
3550
- #: app/features/mec/meta_boxes/display_options.php:1208
3551
- #: app/features/mec/meta_boxes/display_options.php:1430
3552
  msgid "Count in row"
3553
  msgstr "Počet v řadě"
3554
 
3555
- #: app/features/mec/meta_boxes/display_options.php:395
3556
- #: app/features/mec/meta_boxes/display_options.php:586
3557
- #: app/features/mec/meta_boxes/display_options.php:693
3558
- #: app/features/mec/meta_boxes/display_options.php:800
3559
- #: app/features/mec/meta_boxes/display_options.php:1120
3560
  #, php-format
3561
  msgid "%s is required to use this skin."
3562
  msgstr "%s je nutné použít tento vzhled."
3563
 
3564
- #: app/features/mec/meta_boxes/display_options.php:438
3565
- #: app/features/mec/meta_boxes/display_options.php:614
3566
  msgid "Default values are l and F j"
3567
  msgstr "Výchozí hodnoty jsou I a F j"
3568
 
3569
- #: app/features/mec/meta_boxes/display_options.php:485
3570
  msgid "Default View"
3571
  msgstr "Výchozí zobrazení"
3572
 
3573
- #: app/features/mec/meta_boxes/display_options.php:487
3574
- #: app/features/mec/meta_boxes/display_options.php:508
3575
- #: app/libraries/main.php:330 app/libraries/main.php:1757
3576
- #: app/libraries/main.php:1782
3577
  msgid "List View"
3578
  msgstr "Zobrazení seznamu"
3579
 
3580
- #: app/features/mec/meta_boxes/display_options.php:488
3581
- #: app/features/mec/meta_boxes/display_options.php:518
3582
- #: app/libraries/main.php:334 app/libraries/main.php:1751
3583
- #: app/libraries/main.php:1776
3584
  msgid "Yearly View"
3585
  msgstr "Roční zobrazení"
3586
 
3587
- #: app/features/mec/meta_boxes/display_options.php:489
3588
- #: app/features/mec/meta_boxes/display_options.php:540
3589
  msgid "Monthly/Calendar View"
3590
  msgstr "Měsíční / kalendářní zobrazení"
3591
 
3592
- #: app/features/mec/meta_boxes/display_options.php:490
3593
- #: app/features/mec/meta_boxes/display_options.php:550
3594
- #: app/libraries/main.php:337 app/libraries/main.php:1753
3595
- #: app/libraries/main.php:1778
3596
  msgid "Weekly View"
3597
  msgstr "Týdenní zobrazení"
3598
 
3599
- #: app/features/mec/meta_boxes/display_options.php:491
3600
- #: app/features/mec/meta_boxes/display_options.php:560
3601
- #: app/libraries/main.php:336 app/libraries/main.php:1754
3602
- #: app/libraries/main.php:1779
3603
  msgid "Daily View"
3604
  msgstr "Denní zobrazení"
3605
 
3606
- #: app/features/mec/meta_boxes/display_options.php:495
 
3607
  msgid "Monthly Style"
3608
  msgstr "Měsíční styl"
3609
 
3610
- #: app/features/mec/meta_boxes/display_options.php:535
3611
  #, php-format
3612
  msgid "%s is required to use <b>Yearly View</b> skin."
3613
  msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
3614
 
3615
- #: app/features/mec/meta_boxes/display_options.php:568
3616
  msgid "The price shows only in List View."
3617
  msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
3618
 
3619
- #: app/features/mec/meta_boxes/display_options.php:571
3620
  msgid "Display Event Price"
3621
  msgstr "Zobrazit cenu události"
3622
 
3623
- #: app/features/mec/meta_boxes/display_options.php:599
3624
  msgid "Start of Current Year"
3625
  msgstr "Začátek aktuálního roku"
3626
 
3627
- #: app/features/mec/meta_boxes/display_options.php:600
3628
  msgid "Start of Next Year"
3629
  msgstr "Začátek příštího roku"
3630
 
3631
- #: app/features/mec/meta_boxes/display_options.php:620
3632
- #: app/features/mec/meta_boxes/display_options.php:662
3633
- #: app/features/mec/meta_boxes/display_options.php:745
3634
- #: app/features/mec/meta_boxes/display_options.php:779
3635
- #: app/features/mec/meta_boxes/display_options.php:826
3636
  msgid "Events per day"
3637
  msgstr "Události za den"
3638
 
3639
- #: app/features/mec/meta_boxes/display_options.php:625
3640
- #: app/features/mec/meta_boxes/display_options.php:667
3641
- #: app/features/mec/meta_boxes/display_options.php:750
3642
- #: app/features/mec/meta_boxes/display_options.php:784
3643
- #: app/features/mec/meta_boxes/display_options.php:888
3644
- #: app/features/mec/meta_boxes/display_options.php:1439
3645
  msgid "Next/Previous Buttons"
3646
  msgstr "Tlačítka Další / Předchozí"
3647
 
3648
- #: app/features/mec/meta_boxes/display_options.php:633
3649
  msgid "For showing next/previous year navigation."
3650
  msgstr "Pro zobrazení navigace další / předchozí."
3651
 
3652
- #: app/features/mec/meta_boxes/display_options.php:677
3653
  msgid "Uppercase Text"
3654
  msgstr "Text velkými písmeny"
3655
 
3656
- #: app/features/mec/meta_boxes/display_options.php:685
3657
- #: app/features/mec/meta_boxes/display_options.php:758
3658
- #: app/features/mec/meta_boxes/display_options.php:792
3659
- #: app/features/mec/meta_boxes/display_options.php:896
3660
- #: app/features/mec/meta_boxes/display_options.php:1447
3661
  msgid "For showing next/previous month navigation."
3662
  msgstr "Pro zobrazení navigace další / předchozí měsíc."
3663
 
3664
- #: app/features/mec/meta_boxes/display_options.php:711
3665
  msgid "Maximum events"
3666
  msgstr "Maximum událostí"
3667
 
3668
- #: app/features/mec/meta_boxes/display_options.php:712
3669
  msgid "eg. 200"
3670
  msgstr "např. 200"
3671
 
3672
- #: app/features/mec/meta_boxes/display_options.php:724
3673
  msgid "The geolocation feature works only in secure (https) websites."
3674
  msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
3675
 
3676
- #: app/features/mec/meta_boxes/display_options.php:768
3677
- #: app/features/mec/meta_boxes/display_options.php:815
3678
  msgid "Current Week"
3679
  msgstr "Aktuální týden"
3680
 
3681
- #: app/features/mec/meta_boxes/display_options.php:769
3682
- #: app/features/mec/meta_boxes/display_options.php:816
3683
  msgid "Next Week"
3684
  msgstr "Další týden"
3685
 
3686
- #: app/features/mec/meta_boxes/display_options.php:831
3687
  msgid "Number of Days"
3688
  msgstr "Počet dnů"
3689
 
3690
- #: app/features/mec/meta_boxes/display_options.php:839
3691
  msgid "Week Start"
3692
  msgstr "Začátek týdne"
3693
 
3694
- #: app/features/mec/meta_boxes/display_options.php:841
3695
  msgid "Inherite from WordPress options"
3696
  msgstr "Zdědit z možností WordPressu"
3697
 
3698
- #: app/features/mec/meta_boxes/display_options.php:856
3699
  msgid "1:00"
3700
  msgstr ""
3701
 
3702
- #: app/features/mec/meta_boxes/display_options.php:857
3703
  msgid "2:00"
3704
  msgstr ""
3705
 
3706
- #: app/features/mec/meta_boxes/display_options.php:858
3707
  msgid "3:00"
3708
  msgstr ""
3709
 
3710
- #: app/features/mec/meta_boxes/display_options.php:859
3711
  msgid "4:00"
3712
  msgstr ""
3713
 
3714
- #: app/features/mec/meta_boxes/display_options.php:860
3715
  msgid "5:00"
3716
  msgstr ""
3717
 
3718
- #: app/features/mec/meta_boxes/display_options.php:861
3719
  msgid "6:00"
3720
  msgstr ""
3721
 
3722
- #: app/features/mec/meta_boxes/display_options.php:862
3723
  msgid "7:00"
3724
  msgstr ""
3725
 
3726
- #: app/features/mec/meta_boxes/display_options.php:863
3727
  msgid "8:00"
3728
  msgstr ""
3729
 
3730
- #: app/features/mec/meta_boxes/display_options.php:864
3731
  msgid "9:00"
3732
  msgstr ""
3733
 
3734
- #: app/features/mec/meta_boxes/display_options.php:865
3735
  msgid "10:00"
3736
  msgstr ""
3737
 
3738
- #: app/features/mec/meta_boxes/display_options.php:866
3739
  msgid "11:00"
3740
  msgstr ""
3741
 
3742
- #: app/features/mec/meta_boxes/display_options.php:867
3743
  msgid "12:00"
3744
  msgstr ""
3745
 
3746
- #: app/features/mec/meta_boxes/display_options.php:870
3747
  msgid "13:00"
3748
  msgstr ""
3749
 
3750
- #: app/features/mec/meta_boxes/display_options.php:871
3751
  msgid "14:00"
3752
  msgstr ""
3753
 
3754
- #: app/features/mec/meta_boxes/display_options.php:872
3755
  msgid "15:00"
3756
  msgstr ""
3757
 
3758
- #: app/features/mec/meta_boxes/display_options.php:873
3759
  msgid "16:00"
3760
  msgstr ""
3761
 
3762
- #: app/features/mec/meta_boxes/display_options.php:874
3763
  msgid "17:00"
3764
  msgstr ""
3765
 
3766
- #: app/features/mec/meta_boxes/display_options.php:875
3767
  msgid "18:00"
3768
  msgstr ""
3769
 
3770
- #: app/features/mec/meta_boxes/display_options.php:876
3771
  msgid "19:00"
3772
  msgstr ""
3773
 
3774
- #: app/features/mec/meta_boxes/display_options.php:877
3775
  msgid "20:00"
3776
  msgstr ""
3777
 
3778
- #: app/features/mec/meta_boxes/display_options.php:878
3779
  msgid "21:00"
3780
  msgstr ""
3781
 
3782
- #: app/features/mec/meta_boxes/display_options.php:879
3783
  msgid "22:00"
3784
  msgstr ""
3785
 
3786
- #: app/features/mec/meta_boxes/display_options.php:880
3787
  msgid "23:00"
3788
  msgstr ""
3789
 
3790
- #: app/features/mec/meta_boxes/display_options.php:881
3791
  msgid "24:00"
3792
  msgstr ""
3793
 
3794
- #: app/features/mec/meta_boxes/display_options.php:944
3795
- #: app/features/mec/meta_boxes/display_options.php:1131
3796
  msgid "Default values are j and F"
3797
  msgstr "Výchozí hodnoty jsou j a F"
3798
 
3799
- #: app/features/mec/meta_boxes/display_options.php:951
3800
  msgid "eg. 24"
3801
  msgstr "např. 24"
3802
 
3803
- #: app/features/mec/meta_boxes/display_options.php:954
3804
  msgid "Filter By"
3805
  msgstr "Filtrovat podle"
3806
 
3807
- #: app/features/mec/meta_boxes/display_options.php:956
3808
  msgid "None"
3809
  msgstr "Žádný"
3810
 
3811
- #: app/features/mec/meta_boxes/display_options.php:965
3812
  msgid "Fit to row"
3813
  msgstr "Přizpůsobit řádku"
3814
 
3815
- #: app/features/mec/meta_boxes/display_options.php:966
3816
  msgid ""
3817
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3818
  "would expect from a layout that uses CSS floats."
@@ -3820,92 +3843,99 @@ msgstr ""
3820
  "Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
3821
  "očekávali od rozložení používajícího plovoucí CSS."
3822
 
3823
- #: app/features/mec/meta_boxes/display_options.php:976
3824
  msgid "Convert Masonry to Grid"
3825
  msgstr "Převést zdivo na mřížku"
3826
 
3827
- #: app/features/mec/meta_boxes/display_options.php:977
3828
  msgid "For using this option, your events should come with image"
3829
  msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
3830
 
3831
- #: app/features/mec/meta_boxes/display_options.php:1017
3832
  msgid "Default values are d, M and Y"
3833
  msgstr "Výchozí hodnoty jsou d, M a Y"
3834
 
3835
- #: app/features/mec/meta_boxes/display_options.php:1029
3836
  msgid "Default values are \"F d\" and l"
3837
  msgstr "Výchozí hodnota je \"F d\" a I"
3838
 
3839
- #: app/features/mec/meta_boxes/display_options.php:1040
3840
  msgid "Default value is \"l, F d Y\""
3841
  msgstr "Výchozí hodnota je \"I, F d Y\""
3842
 
3843
- #: app/features/mec/meta_boxes/display_options.php:1061
 
3844
  msgid "Style 1"
3845
  msgstr "Styl 1"
3846
 
3847
- #: app/features/mec/meta_boxes/display_options.php:1062
 
3848
  msgid "Style 2"
3849
  msgstr "Styl 2"
3850
 
3851
- #: app/features/mec/meta_boxes/display_options.php:1063
 
3852
  msgid "Style 3"
3853
  msgstr "Styl 3"
3854
 
3855
- #: app/features/mec/meta_boxes/display_options.php:1072
3856
- #: app/features/mec/meta_boxes/display_options.php:1083
3857
  msgid "Default value is \"j F Y\""
3858
  msgstr "Výchozí hodnota je \"j F Y\""
3859
 
3860
- #: app/features/mec/meta_boxes/display_options.php:1096
3861
  msgid "Default values are j, F and Y"
3862
  msgstr "Výchozí hodnoty jsou j, F a Y"
3863
 
3864
- #: app/features/mec/meta_boxes/display_options.php:1104
3865
- #: app/features/mec/meta_boxes/display_options.php:1139
3866
  msgid " -- Next Upcoming Event -- "
3867
  msgstr " -- Další nadcházející událost -- "
3868
 
3869
- #: app/features/mec/meta_boxes/display_options.php:1111
3870
  msgid "Background Color"
3871
  msgstr "Barva pozadí"
3872
 
3873
- #: app/features/mec/meta_boxes/display_options.php:1153
3874
- #: app/features/mec/meta_boxes/display_options.php:1240
 
3875
  msgid "Type 1"
3876
  msgstr "Typ 1"
3877
 
3878
- #: app/features/mec/meta_boxes/display_options.php:1154
3879
- #: app/features/mec/meta_boxes/display_options.php:1241
 
3880
  msgid "Type 2"
3881
  msgstr "Typ 2"
3882
 
3883
- #: app/features/mec/meta_boxes/display_options.php:1155
3884
- #: app/features/mec/meta_boxes/display_options.php:1242
 
3885
  msgid "Type 3"
3886
  msgstr "Typ 3"
3887
 
3888
- #: app/features/mec/meta_boxes/display_options.php:1156
3889
- #: app/features/mec/meta_boxes/display_options.php:1243
 
3890
  msgid "Type 4"
3891
  msgstr "Typ 4"
3892
 
3893
- #: app/features/mec/meta_boxes/display_options.php:1180
3894
  msgid "Default values are d, F and Y"
3895
  msgstr "Výchozí hodnoty jsou d, F a Y"
3896
 
3897
- #: app/features/mec/meta_boxes/display_options.php:1191
3898
- #: app/features/mec/meta_boxes/display_options.php:1202
3899
  msgid "Default value is \"M d, Y\""
3900
  msgstr "Výchozí hodnota je \"M d, Y\""
3901
 
3902
- #: app/features/mec/meta_boxes/display_options.php:1221
3903
- #: app/features/mec/meta_boxes/display_options.php:1330
3904
  msgid "Auto Play Time"
3905
  msgstr "Čas automatického přehrávání"
3906
 
3907
- #: app/features/mec/meta_boxes/display_options.php:1222
3908
- #: app/features/mec/meta_boxes/display_options.php:1331
3909
  msgid "eg. 3000 default is 3 second"
3910
  msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
3911
 
@@ -3917,11 +3947,12 @@ msgstr "Odkaz na archiv"
3917
  msgid "Head Text"
3918
  msgstr "Text hlavičky"
3919
 
3920
- #: app/features/mec/meta_boxes/display_options.php:1244
 
3921
  msgid "Type 5"
3922
  msgstr "Typ 5"
3923
 
3924
- #: app/features/mec/meta_boxes/display_options.php:1424
3925
  #, fuzzy
3926
  #| msgid "Default values are j and F"
3927
  msgid "Default values are j and M"
@@ -3964,10 +3995,12 @@ msgid "Dates"
3964
  msgstr "Data"
3965
 
3966
  #: app/features/mec/meta_boxes/filter.php:183
 
3967
  msgid "Include Expired Events"
3968
  msgstr "Zahrnout uplynulé události"
3969
 
3970
  #: app/features/mec/meta_boxes/filter.php:190
 
3971
  msgid ""
3972
  "You have ability to include past/expired events if you like so it will show "
3973
  "upcoming and expired events based on start date that you selected."
@@ -3977,6 +4010,7 @@ msgstr ""
3977
  "zahájení."
3978
 
3979
  #: app/features/mec/meta_boxes/filter.php:197
 
3980
  msgid "Show Only Expired Events"
3981
  msgstr "Zobrazit pouze uplynulé události"
3982
 
@@ -3990,6 +4024,7 @@ msgstr ""
3990
  "počáteční datum a poté přejde na% s data."
3991
 
3992
  #: app/features/mec/meta_boxes/filter.php:204
 
3993
  msgid "only"
3994
  msgstr "pouze"
3995
 
@@ -3998,10 +4033,12 @@ msgid "older"
3998
  msgstr "starší"
3999
 
4000
  #: app/features/mec/meta_boxes/filter.php:212
 
4001
  msgid "Show Only Ongoing Events"
4002
  msgstr "Zobrazit pouze probíhající události"
4003
 
4004
  #: app/features/mec/meta_boxes/filter.php:219
 
4005
  msgid "It shows only ongoing events on List and Grid skins."
4006
  msgstr "Ukazuje pouze probíhající události v seznamech a v mřížkách."
4007
 
@@ -4097,7 +4134,7 @@ msgstr "Zobrazit vyhledávací formulář"
4097
  #: app/features/mec/meta_boxes/search_form.php:716
4098
  #: app/features/mec/meta_boxes/search_form.php:723
4099
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
4100
- #: app/features/mec/settings.php:413
4101
  msgid "Disabled"
4102
  msgstr "Zakázaný"
4103
 
@@ -4112,9 +4149,9 @@ msgstr "Zakázaný"
4112
  #: app/features/mec/meta_boxes/search_form.php:535
4113
  #: app/features/mec/meta_boxes/search_form.php:596
4114
  #: app/features/mec/meta_boxes/search_form.php:693
4115
- #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4116
- #: app/features/search.php:79 app/features/speakers.php:61
4117
- #: app/features/speakers.php:269 app/libraries/main.php:5289
4118
  #: app/libraries/skins.php:936
4119
  msgid "Speaker"
4120
  msgstr "Řečník"
@@ -4130,8 +4167,8 @@ msgstr "Řečník"
4130
  #: app/features/mec/meta_boxes/search_form.php:542
4131
  #: app/features/mec/meta_boxes/search_form.php:603
4132
  #: app/features/mec/meta_boxes/search_form.php:700
4133
- #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4134
- #: app/features/search.php:83 app/libraries/skins.php:962
4135
  msgid "Tag"
4136
  msgstr "Štítek"
4137
 
@@ -4215,14 +4252,14 @@ msgid "Show Google Maps on event page"
4215
  msgstr "Zobrazit Mapy Google na stránce události"
4216
 
4217
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4218
- #: app/features/mec/settings.php:856 app/features/mec/settings.php:861
4219
- #: app/features/mec/settings.php:909 app/features/mec/settings.php:933
4220
- #: app/features/mec/settings.php:957
4221
  msgid "API Key"
4222
  msgstr "API Key"
4223
 
4224
- #: app/features/mec/modules.php:86 app/features/mec/settings.php:862
4225
- #: app/features/mec/settings.php:875
4226
  msgid "Required!"
4227
  msgstr "Požadované!"
4228
 
@@ -4833,7 +4870,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4833
  msgstr "Zašle správci informaci o přijetí nové rezervace."
4834
 
4835
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4836
- #: app/libraries/notifications.php:603
4837
  msgid "Booking Reminder"
4838
  msgstr "Připomenutí rezervace"
4839
 
@@ -4893,8 +4930,8 @@ msgid "Status of event"
4893
  msgstr "Stav události"
4894
 
4895
  #: app/features/mec/notifications.php:720
4896
- #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4897
- #: app/features/mec/settings.php:738
4898
  msgid "Event Note"
4899
  msgstr "Poznámka události"
4900
 
@@ -5088,7 +5125,7 @@ msgid "You can enable/disable Schema scripts"
5088
  msgstr "Můžete povolit nebo zakázat skripty schématu"
5089
 
5090
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5091
- #: app/libraries/main.php:5293
5092
  msgid "Weekdays"
5093
  msgstr "Pracovní dny"
5094
 
@@ -5150,60 +5187,72 @@ msgid ""
5150
  "12 AM and you don't want those events considered as multiple days events!"
5151
  msgstr ""
5152
 
5153
- #: app/features/mec/settings.php:224 app/libraries/main.php:532
 
 
 
 
 
 
 
 
 
 
 
 
5154
  msgid "Archive Pages"
5155
  msgstr "Archivní stránky"
5156
 
5157
- #: app/features/mec/settings.php:227 app/features/mec/settings.php:232
5158
  msgid "Archive Page Title"
5159
  msgstr "Název stránky archivu"
5160
 
5161
- #: app/features/mec/settings.php:233
5162
  msgid "Default value is Events - It's title of the page"
5163
  msgstr "Výchozí hodnota je Události - to je název stránky"
5164
 
5165
- #: app/features/mec/settings.php:241 app/features/mec/settings.php:309
5166
  msgid "Archive Page Skin"
5167
  msgstr "Vzhled archivní stránky"
5168
 
5169
- #: app/features/mec/settings.php:249
5170
  msgid "Put shortcode..."
5171
  msgstr "Vložte zkrácený kód..."
5172
 
5173
- #: app/features/mec/settings.php:252 app/features/mec/settings.php:267
5174
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:279
5175
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:326
5176
- #: app/features/mec/settings.php:341 app/features/mec/settings.php:344
5177
- #: app/features/mec/settings.php:353 app/features/mec/settings.php:379
5178
  msgid "There is no skins"
5179
  msgstr "Neexistuje žádný vzhled"
5180
 
5181
- #: app/features/mec/settings.php:255 app/features/mec/settings.php:329
5182
  #: app/features/mec/single.php:69
5183
  msgid "Modern Style"
5184
  msgstr "Moderní styl"
5185
 
5186
- #: app/features/mec/settings.php:297 app/features/mec/settings.php:371
5187
  msgid "colorful"
5188
  msgstr "pestrý"
5189
 
5190
- #: app/features/mec/settings.php:302 app/features/mec/settings.php:376
5191
  msgid "Clean Style"
5192
  msgstr "Čistý styl"
5193
 
5194
- #: app/features/mec/settings.php:310
5195
  msgid "Default value is Calendar/Monthly View, But you can change it "
5196
  msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
5197
 
5198
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
5199
  msgid "See Demo"
5200
  msgstr "Viz Demo"
5201
 
5202
- #: app/features/mec/settings.php:318 app/features/mec/settings.php:383
5203
  msgid "Category Page Skin"
5204
  msgstr "Vzhled stránky kategorie"
5205
 
5206
- #: app/features/mec/settings.php:384
5207
  msgid ""
5208
  "Default value is List View - But you can change it Set a skin for all "
5209
  "categories."
@@ -5211,28 +5260,28 @@ msgstr ""
5211
  "Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
5212
  "pro všechny kategorie."
5213
 
5214
- #: app/features/mec/settings.php:392 app/features/mec/settings.php:400
5215
  msgid "Category Events Method"
5216
  msgstr "Kategorie Metoda události"
5217
 
5218
- #: app/features/mec/settings.php:396
5219
  msgid "Expired Events"
5220
  msgstr "Události vypršely"
5221
 
5222
- #: app/features/mec/settings.php:401
5223
  msgid "Default value is Upcoming Events"
5224
  msgstr "Výchozí hodnota je Nadcházející události"
5225
 
5226
- #: app/features/mec/settings.php:409 app/features/mec/settings.php:417
5227
  msgid "Events Archive Status"
5228
  msgstr "Stav archivu událostí"
5229
 
5230
- #: app/features/mec/settings.php:412
5231
  msgid "Enabled (Recommended)"
5232
  msgstr "Povoleno (doporučeno)"
5233
 
5234
  # Slug
5235
- #: app/features/mec/settings.php:418
5236
  msgid ""
5237
  "If you disable it, then you should create a page as archive page of MEC. "
5238
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -5243,11 +5292,11 @@ msgstr ""
5243
  "přepisování MEC."
5244
 
5245
  # Hlavní slug
5246
- #: app/features/mec/settings.php:431 app/features/mec/settings.php:436
5247
  msgid "Main Slug"
5248
  msgstr "Main Slug"
5249
 
5250
- #: app/features/mec/settings.php:437
5251
  msgid ""
5252
  "Default value is events. You can not have a page with this name. MEC allows "
5253
  "you to create custom URLs for the permalinks and archives to enhance the "
@@ -5257,16 +5306,16 @@ msgstr ""
5257
  "umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
5258
  "se zvýšila použitelnost a dopředná kompatibilita odkazů."
5259
 
5260
- #: app/features/mec/settings.php:441 app/features/mec/settings.php:455
5261
  msgid "Valid characters are lowercase a-z, - character and numbers."
5262
  msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
5263
 
5264
  # Slug
5265
- #: app/features/mec/settings.php:445 app/features/mec/settings.php:450
5266
  msgid "Category Slug"
5267
  msgstr "Kategorie Slug"
5268
 
5269
- #: app/features/mec/settings.php:451
5270
  msgid ""
5271
  "It's slug of MEC categories, you can change it to events-cat or something "
5272
  "else. Default value is mec-category. You can not have a page with this name."
@@ -5275,93 +5324,93 @@ msgstr ""
5275
  "jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
5276
  "názvem."
5277
 
5278
- #: app/features/mec/settings.php:463
5279
  msgid "Currency"
5280
  msgstr "Měna"
5281
 
5282
- #: app/features/mec/settings.php:473 app/features/mec/settings.php:478
5283
  msgid "Currency Sign"
5284
  msgstr "Symbol měny"
5285
 
5286
- #: app/features/mec/settings.php:479
5287
  msgid "Default value will be \"currency\" if you leave it empty."
5288
  msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
5289
 
5290
- #: app/features/mec/settings.php:486
5291
  msgid "Currency Position"
5292
  msgstr "Pozice měny"
5293
 
5294
- #: app/features/mec/settings.php:489
5295
  msgid "Before $10"
5296
  msgstr "Před $10"
5297
 
5298
- #: app/features/mec/settings.php:490
5299
  msgid "After 10$"
5300
  msgstr "Po 10$"
5301
 
5302
- #: app/features/mec/settings.php:495
5303
  msgid "Thousand Separator"
5304
  msgstr "Oddělovač tisíců"
5305
 
5306
- #: app/features/mec/settings.php:501
5307
  msgid "Decimal Separator"
5308
  msgstr "Oddělovač desítel"
5309
 
5310
- #: app/features/mec/settings.php:511
5311
  msgid "No decimal"
5312
  msgstr "Bez desetinných míst"
5313
 
5314
- #: app/features/mec/settings.php:522
5315
  msgid "Enable Google Recaptcha"
5316
  msgstr "Povolit Google Recaptcha"
5317
 
5318
- #: app/features/mec/settings.php:529
5319
  msgid "Enable on booking form"
5320
  msgstr "Povolit rezervační formulář"
5321
 
5322
- #: app/features/mec/settings.php:535
5323
  msgid "Enable on \"Frontend Event Submission\" form"
5324
  msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
5325
 
5326
  # místa
5327
- #: app/features/mec/settings.php:539
5328
  msgid "Site Key"
5329
  msgstr "Klíč webu"
5330
 
5331
- #: app/features/mec/settings.php:545
5332
  msgid "Secret Key"
5333
  msgstr "Tajný klíč"
5334
 
5335
- #: app/features/mec/settings.php:557 app/features/mec/settings.php:565
5336
  msgid "Time Format"
5337
  msgstr "Formát času"
5338
 
5339
- #: app/features/mec/settings.php:560
5340
  msgid "12 hours format with AM/PM"
5341
  msgstr "12 hodinový formát s dop./odp."
5342
 
5343
- #: app/features/mec/settings.php:561
5344
  msgid "24 hours format"
5345
  msgstr "24 hodinový fotmát"
5346
 
5347
- #: app/features/mec/settings.php:566
5348
  msgid "This option, affects the selection of Start/End time."
5349
  msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
5350
 
5351
- #: app/features/mec/settings.php:574
5352
  msgid "Events List Page"
5353
  msgstr "Stránka seznamu událostí"
5354
 
5355
- #: app/features/mec/settings.php:583 app/features/mec/settings.php:595
5356
  #, php-format
5357
  msgid "Put %s shortcode into the page."
5358
  msgstr "Vložte %s na stránku zkrácené kódy."
5359
 
5360
- #: app/features/mec/settings.php:586
5361
  msgid "Add/Edit Events Page"
5362
  msgstr "Přidat / Editovat stránku událostí"
5363
 
5364
- #: app/features/mec/settings.php:610
5365
  #, fuzzy
5366
  #| msgid ""
5367
  #| "User redirects to this page after booking. Leave it empty if you want to "
@@ -5373,43 +5422,43 @@ msgstr ""
5373
  "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
5374
  "vypnout, ponechte ji prázdnou."
5375
 
5376
- #: app/features/mec/settings.php:635
5377
  msgid "Enable event submission by guest (Not logged-in) users"
5378
  msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
5379
 
5380
- #: app/features/mec/settings.php:642
5381
  msgid "Enable mandatory email and name for guest user"
5382
  msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
5383
 
5384
- #: app/features/mec/settings.php:646
5385
  msgid "Frontend Event Submission Sections"
5386
  msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
5387
 
5388
- #: app/features/mec/settings.php:668 app/widgets/single.php:119
5389
  msgid "Event Categories"
5390
  msgstr "Kategorie události"
5391
 
5392
- #: app/features/mec/settings.php:674
5393
  msgid "Event Labels"
5394
  msgstr "Štítky události"
5395
 
5396
- #: app/features/mec/settings.php:686
5397
  msgid "Event Tags"
5398
  msgstr "Tagy události"
5399
 
5400
- #: app/features/mec/settings.php:698 app/widgets/single.php:123
5401
  msgid "Event Organizer"
5402
  msgstr "Organizátor události"
5403
 
5404
- #: app/features/mec/settings.php:716
5405
  msgid "Booking Options"
5406
  msgstr "Možnosti rezervace"
5407
 
5408
- #: app/features/mec/settings.php:722
5409
  msgid "Fees / Taxes Options"
5410
  msgstr "Možnosti Poplatky / Daně"
5411
 
5412
- #: app/features/mec/settings.php:739
5413
  #, php-format
5414
  msgid ""
5415
  "Users can put a note for editors while they're submitting the event. Also "
@@ -5420,29 +5469,29 @@ msgstr ""
5420
  "oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
5421
  "mail s poznámkami uživatelů."
5422
 
5423
- #: app/features/mec/settings.php:746 app/features/mec/settings.php:754
5424
  msgid "Visibility of Note"
5425
  msgstr "Viditelnost poznámky"
5426
 
5427
- #: app/features/mec/settings.php:749
5428
  msgid "Always"
5429
  msgstr "Vždy"
5430
 
5431
- #: app/features/mec/settings.php:750
5432
  msgid "While event is not published"
5433
  msgstr "I když událost není zveřejněna"
5434
 
5435
- #: app/features/mec/settings.php:755
5436
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5437
  msgstr ""
5438
  "Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
5439
  "(frontend) a Upravit událost v administraci stránek (backend)."
5440
 
5441
- #: app/features/mec/settings.php:766 app/libraries/main.php:537
5442
  msgid "User Profile"
5443
  msgstr "Uživatelský profil"
5444
 
5445
- #: app/features/mec/settings.php:768
5446
  #, php-format
5447
  msgid ""
5448
  "Put %s shortcode into your desired page. Then users are able to see history "
@@ -5451,11 +5500,11 @@ msgstr ""
5451
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
5452
  "historii svých rezervací."
5453
 
5454
- #: app/features/mec/settings.php:773 app/libraries/main.php:538
5455
  msgid "Search Bar"
5456
  msgstr "Vyhledávací panel"
5457
 
5458
- #: app/features/mec/settings.php:775
5459
  #, php-format
5460
  msgid ""
5461
  "Put %s shortcode into your desired page. Then users are able to search events"
@@ -5463,15 +5512,15 @@ msgstr ""
5463
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
5464
  "události"
5465
 
5466
- #: app/features/mec/settings.php:779
5467
  msgid "Ajax Live mode"
5468
  msgstr "Ajax Live mód"
5469
 
5470
- #: app/features/mec/settings.php:783
5471
  msgid "Ajax mode"
5472
  msgstr "Ajax mód"
5473
 
5474
- #: app/features/mec/settings.php:784
5475
  msgid ""
5476
  "if you enable this option, search button disappeared and to use this "
5477
  "feature, text input field must be enabled."
@@ -5479,40 +5528,40 @@ msgstr ""
5479
  "pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
5480
  "této funkce musí být povoleno pole pro zadávání textu."
5481
 
5482
- #: app/features/mec/settings.php:792
5483
  msgid "Modern Type"
5484
  msgstr "Moderní typ"
5485
 
5486
- #: app/features/mec/settings.php:796
5487
  msgid "Search bar fields"
5488
  msgstr "Pole vyhledávacího panelu"
5489
 
5490
- #: app/features/mec/settings.php:838
5491
  msgid "Text input"
5492
  msgstr "Zadávání textu"
5493
 
5494
- #: app/features/mec/settings.php:851
5495
  msgid "Enable Mailchimp Integration"
5496
  msgstr "Povolit integraci Mailchimp"
5497
 
5498
- #: app/features/mec/settings.php:869 app/features/mec/settings.php:874
5499
- #: app/features/mec/settings.php:915 app/features/mec/settings.php:963
5500
  msgid "List ID"
5501
  msgstr "ID seznamu"
5502
 
5503
- #: app/features/mec/settings.php:882 app/features/mec/settings.php:890
5504
  msgid "Subscription Status"
5505
  msgstr "Stav odběru"
5506
 
5507
- #: app/features/mec/settings.php:885
5508
  msgid "Subscribe automatically"
5509
  msgstr "Odebírat automaticky"
5510
 
5511
- #: app/features/mec/settings.php:886
5512
  msgid "Subscribe by verification"
5513
  msgstr "Přihlaste se k odběru pomocí ověření"
5514
 
5515
- #: app/features/mec/settings.php:891
5516
  msgid ""
5517
  "If you choose \"Subscribe by verification\" then an email will send to user "
5518
  "by mailchimp for subscription verification."
@@ -5520,69 +5569,69 @@ msgstr ""
5520
  "Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
5521
  "uživateli mailchimp k ověření oběru."
5522
 
5523
- #: app/features/mec/settings.php:900 app/libraries/main.php:540
5524
  #, fuzzy
5525
  #| msgid "Mailchimp Integration"
5526
  msgid "Campaign Monitor Integration"
5527
  msgstr "Integrace Mailchimp"
5528
 
5529
- #: app/features/mec/settings.php:904
5530
  #, fuzzy
5531
  #| msgid "Enable Mailchimp Integration"
5532
  msgid "Enable Campaign Monitor Integration"
5533
  msgstr "Povolit integraci Mailchimp"
5534
 
5535
- #: app/features/mec/settings.php:924 app/libraries/main.php:541
5536
  #, fuzzy
5537
  #| msgid "Mailchimp Integration"
5538
  msgid "MailerLite Integration"
5539
  msgstr "Integrace Mailchimp"
5540
 
5541
- #: app/features/mec/settings.php:928
5542
  #, fuzzy
5543
  #| msgid "Enable Mailchimp Integration"
5544
  msgid "Enable MailerLite Integration"
5545
  msgstr "Povolit integraci Mailchimp"
5546
 
5547
- #: app/features/mec/settings.php:939
5548
  #, fuzzy
5549
  #| msgid "Group URL"
5550
  msgid "Group ID"
5551
  msgstr "Group URL"
5552
 
5553
- #: app/features/mec/settings.php:948 app/libraries/main.php:542
5554
  #, fuzzy
5555
  #| msgid "Enable Mailchimp Integration"
5556
  msgid "Constant Contact Integration"
5557
  msgstr "Povolit integraci Mailchimp"
5558
 
5559
- #: app/features/mec/settings.php:952
5560
  #, fuzzy
5561
  #| msgid "Enable Mailchimp Integration"
5562
  msgid "Enable constantcontact Integration"
5563
  msgstr "Povolit integraci Mailchimp"
5564
 
5565
- #: app/features/mec/settings.php:974
5566
  msgid "Upload Field Options"
5567
  msgstr "Možnosti pole Nahrát"
5568
 
5569
- #: app/features/mec/settings.php:976
5570
  msgid "Mime types"
5571
  msgstr "MIME typy"
5572
 
5573
- #: app/features/mec/settings.php:980
5574
  msgid "Split mime types with \",\"."
5575
  msgstr "Rozdělte typy MIME pomocí “,“."
5576
 
5577
- #: app/features/mec/settings.php:980
5578
  msgid "Default: jpeg,jpg,png,pdf"
5579
  msgstr "Výchozí: jpeg,jpg,png,pdf"
5580
 
5581
- #: app/features/mec/settings.php:983
5582
  msgid "Maximum file size"
5583
  msgstr "Maximální velikost souboru"
5584
 
5585
- #: app/features/mec/settings.php:987
5586
  msgid "The unit is Megabyte \"MB\""
5587
  msgstr "Jednotkou je Megabyte \"MB\""
5588
 
@@ -6314,7 +6363,7 @@ msgstr "např. info@itreseni.cz"
6314
  msgid "eg. https://webnus.net"
6315
  msgstr "např. https://webnus.net"
6316
 
6317
- #: app/features/organizers.php:312 app/libraries/main.php:5317
6318
  #: app/skins/single.php:862
6319
  msgid "Other Organizers"
6320
  msgstr "Další organizátoři"
@@ -6325,12 +6374,72 @@ msgid ""
6325
  msgstr ""
6326
  "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
6327
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6328
  #: app/features/profile.php:74
6329
  #, php-format
6330
  msgid "Please %s/%s in order to see your bookings / profile."
6331
  msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
6332
 
6333
- #: app/features/profile/profile.php:18 app/libraries/main.php:2142
6334
  msgid "Your booking already canceled!"
6335
  msgstr "Vaše rezervace již byla zrušena!"
6336
 
@@ -6338,11 +6447,11 @@ msgstr "Vaše rezervace již byla zrušena!"
6338
  msgid "#"
6339
  msgstr "#"
6340
 
6341
- #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6342
  msgid "Status"
6343
  msgstr "Stav"
6344
 
6345
- #: app/features/profile/profile.php:59 app/libraries/main.php:2257
6346
  msgid "Attendees"
6347
  msgstr "Účastníci"
6348
 
@@ -6371,11 +6480,11 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
6371
  msgid "No bookings found!"
6372
  msgstr "Nebyly nalezeny žádné rezervace!"
6373
 
6374
- #: app/features/search.php:87 app/libraries/main.php:5283
6375
  msgid "label"
6376
  msgstr "štítek"
6377
 
6378
- #: app/features/search.php:121
6379
  msgid "Please enter at least 3 characters and try again"
6380
  msgstr "Zadejte prosím alespoň 3 znaky a zkuste to znovu"
6381
 
@@ -6396,7 +6505,7 @@ msgid "No search result."
6396
  msgstr "Žádný výsledek vyhledávání."
6397
 
6398
  #: app/features/search_bar/search_result.php:11
6399
- #: app/libraries/notifications.php:947 app/libraries/render.php:488
6400
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6401
  #: app/skins/single.php:160 app/skins/single.php:753
6402
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6508,51 +6617,51 @@ msgctxt "plugin link"
6508
  msgid "Upgrade"
6509
  msgstr "Upgrade"
6510
 
6511
- #: app/libraries/factory.php:356
6512
  msgid "day"
6513
  msgstr "den"
6514
 
6515
- #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6516
- #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6517
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6518
  msgid "days"
6519
  msgstr "dny"
6520
 
6521
- #: app/libraries/factory.php:358
6522
  msgid "hour"
6523
  msgstr "hodina"
6524
 
6525
- #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6526
- #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6527
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6528
  msgid "hours"
6529
  msgstr "hodiny"
6530
 
6531
- #: app/libraries/factory.php:360
6532
  msgid "minute"
6533
  msgstr "minuta"
6534
 
6535
- #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6536
- #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6537
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6538
  msgid "minutes"
6539
  msgstr "minuty"
6540
 
6541
- #: app/libraries/factory.php:362
6542
  msgid "second"
6543
  msgstr "vteřina"
6544
 
6545
- #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6546
- #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6547
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6548
  msgid "seconds"
6549
  msgstr "vteřiny"
6550
 
6551
- #: app/libraries/factory.php:411
6552
  msgid "MEC Single Sidebar"
6553
  msgstr "MEC Postranní panel"
6554
 
6555
- #: app/libraries/factory.php:412
6556
  msgid "Custom sidebar for single and modal page of MEC."
6557
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
6558
 
@@ -6560,38 +6669,38 @@ msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
6560
  msgid "There is no excerpt because this is a protected post."
6561
  msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
6562
 
6563
- #: app/libraries/main.php:331 app/libraries/main.php:1758
6564
- #: app/libraries/main.php:1783
6565
  msgid "Grid View"
6566
  msgstr "Zobrazení mřížky"
6567
 
6568
- #: app/libraries/main.php:332 app/libraries/main.php:1759
6569
- #: app/libraries/main.php:1784
6570
  msgid "Agenda View"
6571
  msgstr "Zobrazení agendy"
6572
 
6573
- #: app/libraries/main.php:333 app/libraries/main.php:1750
6574
- #: app/libraries/main.php:1775
6575
  msgid "Full Calendar"
6576
  msgstr "Plný kalendář"
6577
 
6578
- #: app/libraries/main.php:335 app/libraries/main.php:1752
6579
- #: app/libraries/main.php:1777
6580
  msgid "Calendar/Monthly View"
6581
  msgstr "Kalendář / zobrazení měsíce"
6582
 
6583
- #: app/libraries/main.php:338 app/libraries/main.php:1755
6584
- #: app/libraries/main.php:1780
6585
  msgid "Timetable View"
6586
  msgstr "Zobrazení rozvrhu"
6587
 
6588
- #: app/libraries/main.php:339 app/libraries/main.php:1756
6589
- #: app/libraries/main.php:1781
6590
  msgid "Masonry View"
6591
  msgstr "Zobrazení zdi"
6592
 
6593
- #: app/libraries/main.php:340 app/libraries/main.php:1760
6594
- #: app/libraries/main.php:1785
6595
  msgid "Map View"
6596
  msgstr "Zobrazení mapy"
6597
 
@@ -6628,31 +6737,31 @@ msgstr "Zobrazení rozvrhu"
6628
  msgid "Tile View"
6629
  msgstr "Zobrazení rozvrhu"
6630
 
6631
- #: app/libraries/main.php:385 app/libraries/main.php:5295
6632
  msgid "SU"
6633
  msgstr "NE"
6634
 
6635
- #: app/libraries/main.php:386 app/libraries/main.php:5296
6636
  msgid "MO"
6637
  msgstr "PO"
6638
 
6639
- #: app/libraries/main.php:387 app/libraries/main.php:5297
6640
  msgid "TU"
6641
  msgstr "ÚT"
6642
 
6643
- #: app/libraries/main.php:388 app/libraries/main.php:5298
6644
  msgid "WE"
6645
  msgstr "ST"
6646
 
6647
- #: app/libraries/main.php:389 app/libraries/main.php:5299
6648
  msgid "TH"
6649
  msgstr "ČT"
6650
 
6651
- #: app/libraries/main.php:390 app/libraries/main.php:5300
6652
  msgid "FR"
6653
  msgstr "PÁ"
6654
 
6655
- #: app/libraries/main.php:391 app/libraries/main.php:5301
6656
  msgid "SA"
6657
  msgstr "SO"
6658
 
@@ -6727,356 +6836,356 @@ msgstr "Události na tomto místě"
6727
  msgid "Event at this location"
6728
  msgstr "Událost na tomto místě"
6729
 
6730
- #: app/libraries/main.php:1528
6731
  msgid "Facebook"
6732
  msgstr "Facebook"
6733
 
6734
- #: app/libraries/main.php:1529
6735
  msgid "Twitter"
6736
  msgstr "Twitter"
6737
 
6738
- #: app/libraries/main.php:1530 app/libraries/main.php:1587
6739
  msgid "Linkedin"
6740
  msgstr "Linkedin"
6741
 
6742
- #: app/libraries/main.php:1531 app/libraries/main.php:1623
6743
  msgid "VK"
6744
  msgstr "VK"
6745
 
6746
- #: app/libraries/main.php:1532
6747
  msgid "Tumblr"
6748
  msgstr ""
6749
 
6750
- #: app/libraries/main.php:1533
6751
  msgid "Pinterest"
6752
  msgstr ""
6753
 
6754
- #: app/libraries/main.php:1534
6755
  msgid "Flipboard"
6756
  msgstr ""
6757
 
6758
- #: app/libraries/main.php:1535
6759
  #, fuzzy
6760
  #| msgid "Tickets"
6761
  msgid "GetPocket"
6762
  msgstr "Vstupenky"
6763
 
6764
- #: app/libraries/main.php:1536
6765
  msgid "Reddit"
6766
  msgstr ""
6767
 
6768
- #: app/libraries/main.php:1537
6769
  msgid "WhatsApp"
6770
  msgstr ""
6771
 
6772
- #: app/libraries/main.php:1538
6773
  msgid "Telegram"
6774
  msgstr ""
6775
 
6776
- #: app/libraries/main.php:1557
6777
  msgid "Share on Facebook"
6778
  msgstr "Sdílet na Facebooku"
6779
 
6780
- #: app/libraries/main.php:1572
6781
  msgid "Tweet"
6782
  msgstr "Tweet"
6783
 
6784
- #: app/libraries/main.php:1638
6785
  #, fuzzy
6786
  #| msgid "Share on Facebook"
6787
  msgid "Share on Tumblr"
6788
  msgstr "Sdílet na Facebooku"
6789
 
6790
- #: app/libraries/main.php:1654
6791
  msgid "Share on Pinterest"
6792
  msgstr ""
6793
 
6794
- #: app/libraries/main.php:1670
6795
  #, fuzzy
6796
  #| msgid "Share on Facebook"
6797
  msgid "Share on Flipboard"
6798
  msgstr "Sdílet na Facebooku"
6799
 
6800
- #: app/libraries/main.php:1688
6801
  #, fuzzy
6802
  #| msgid "Share on Facebook"
6803
  msgid "Share on GetPocket"
6804
  msgstr "Sdílet na Facebooku"
6805
 
6806
- #: app/libraries/main.php:1704
6807
  #, fuzzy
6808
  #| msgid "Share on Facebook"
6809
  msgid "Share on Reddit"
6810
  msgstr "Sdílet na Facebooku"
6811
 
6812
- #: app/libraries/main.php:1720
6813
  msgid "Share on Telegram"
6814
  msgstr ""
6815
 
6816
- #: app/libraries/main.php:1738
6817
  msgid "Share on WhatsApp"
6818
  msgstr ""
6819
 
6820
- #: app/libraries/main.php:1761
6821
  msgid "Custom Shortcode"
6822
  msgstr "Uživatelské zkrácené kódy"
6823
 
6824
- #: app/libraries/main.php:2122
6825
  msgid "Your booking already verified!"
6826
  msgstr "Vaše rezervace již byla ověřena!"
6827
 
6828
- #: app/libraries/main.php:2127
6829
  msgid "Your booking successfully verified."
6830
  msgstr "Vaše rezervace byla úspěšně ověřena."
6831
 
6832
- #: app/libraries/main.php:2128
6833
  msgid "Your booking cannot verify!"
6834
  msgstr "Vaši rezervaci nelze ověřit!"
6835
 
6836
- #: app/libraries/main.php:2147
6837
  msgid "Your booking successfully canceled."
6838
  msgstr "Vaše rezervace byla úspěšně zrušena."
6839
 
6840
- #: app/libraries/main.php:2148
6841
  msgid "Your booking cannot be canceled."
6842
  msgstr "Vaši rezervaci nelze zrušit."
6843
 
6844
- #: app/libraries/main.php:2152
6845
  msgid "You canceled the payment successfully."
6846
  msgstr "Platbu jste úspěšně zrušili."
6847
 
6848
- #: app/libraries/main.php:2156
6849
  msgid "You returned from payment gateway successfully."
6850
  msgstr "Úspěšně jste se vrátili z platební brány."
6851
 
6852
- #: app/libraries/main.php:2172
6853
  msgid "Cannot find the invoice!"
6854
  msgstr "Fakturu nelze najít!"
6855
 
6856
- #: app/libraries/main.php:2172
6857
  msgid "Invoice is invalid."
6858
  msgstr "Faktura je neplatná."
6859
 
6860
- #: app/libraries/main.php:2192
6861
  msgid ""
6862
  "Your booking still is not confirmed. You able download it after confirmation!"
6863
  msgstr ""
6864
  "Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
6865
 
6866
- #: app/libraries/main.php:2192
6867
  msgid "Booking Not Confirmed."
6868
  msgstr "Rezervace nebyla potvrzena."
6869
 
6870
- #: app/libraries/main.php:2198
6871
  msgid "Cannot find the booking!"
6872
  msgstr "Nemohu najít rezervaci!"
6873
 
6874
- #: app/libraries/main.php:2198
6875
  msgid "Booking is invalid."
6876
  msgstr "Rezervace není platná."
6877
 
6878
- #: app/libraries/main.php:2227
6879
  #, php-format
6880
  msgid "%s Invoice"
6881
  msgstr "%s Faktura"
6882
 
6883
- #: app/libraries/main.php:2301
6884
  msgid "Billing"
6885
  msgstr "Fakturace"
6886
 
6887
- #: app/libraries/main.php:2312
6888
  msgid "Total"
6889
  msgstr "Celkem"
6890
 
6891
- #: app/libraries/main.php:2319
6892
  #, fuzzy
6893
  #| msgid "Payment Gateways"
6894
  msgid "Payment"
6895
  msgstr "Platební brány"
6896
 
6897
- #: app/libraries/main.php:2323
6898
  #, fuzzy
6899
  #| msgid "Payment Gateways"
6900
  msgid "Gateway"
6901
  msgstr "Platební brány"
6902
 
6903
- #: app/libraries/main.php:2331
6904
  #, fuzzy
6905
  #| msgid "Payment Gateways"
6906
  msgid "Payment Time"
6907
  msgstr "Platební brány"
6908
 
6909
- #: app/libraries/main.php:2392
6910
  msgid "Request is not valid."
6911
  msgstr "Požadavek není platný."
6912
 
6913
- #: app/libraries/main.php:2392
6914
  msgid "iCal export stopped!"
6915
  msgstr "iCal export byl zastaven!"
6916
 
6917
- #: app/libraries/main.php:2736 app/libraries/main.php:2766
6918
- #: app/libraries/main.php:2795 app/libraries/main.php:2825
6919
- #: app/libraries/main.php:2854 app/libraries/main.php:2883
6920
- #: app/libraries/main.php:2912 app/libraries/main.php:2941
6921
- #: app/libraries/main.php:2970 app/libraries/main.php:2994
6922
- #: app/libraries/main.php:3038 app/libraries/main.php:3082
6923
- #: app/libraries/main.php:3129 app/libraries/main.php:3176
6924
  msgid "Sort"
6925
  msgstr "Seřadit"
6926
 
6927
- #: app/libraries/main.php:2742 app/libraries/main.php:2772
6928
- #: app/libraries/main.php:2801 app/libraries/main.php:2831
6929
- #: app/libraries/main.php:2860 app/libraries/main.php:2889
6930
- #: app/libraries/main.php:2918 app/libraries/main.php:2947
6931
- #: app/libraries/main.php:3000 app/libraries/main.php:3044
6932
- #: app/libraries/main.php:3088 app/libraries/main.php:3135
6933
  msgid "Required Field"
6934
  msgstr "Požadovaná pole"
6935
 
6936
- #: app/libraries/main.php:2748 app/libraries/main.php:2778
6937
- #: app/libraries/main.php:2807 app/libraries/main.php:2837
6938
- #: app/libraries/main.php:2866 app/libraries/main.php:2895
6939
- #: app/libraries/main.php:2924 app/libraries/main.php:2953
6940
- #: app/libraries/main.php:3006 app/libraries/main.php:3050
6941
- #: app/libraries/main.php:3094 app/libraries/main.php:3141
6942
  msgid "Insert a label for this field"
6943
  msgstr "Vložte štítek pro toto pole"
6944
 
6945
- #: app/libraries/main.php:2976
6946
  msgid "HTML and shortcode are allowed."
6947
  msgstr "HTML a zkrácené kódy jsou povoleny."
6948
 
6949
- #: app/libraries/main.php:3019 app/libraries/main.php:3063
6950
- #: app/libraries/main.php:3107
6951
  msgid "Option"
6952
  msgstr "Možnost"
6953
 
6954
- #: app/libraries/main.php:3141
6955
  #, php-format
6956
  msgid "Instead of %s, the page title with a link will be show."
6957
  msgstr "Místo%s se zobrazí název stránky s odkazem."
6958
 
6959
- #: app/libraries/main.php:3143
6960
  msgid "Agreement Page"
6961
  msgstr "Stránka smlouvy"
6962
 
6963
- #: app/libraries/main.php:3154
6964
  msgid "Checked by default"
6965
  msgstr "Ve výchozím nastavení zaškrtnuto"
6966
 
6967
- #: app/libraries/main.php:3155
6968
  msgid "Unchecked by default"
6969
  msgstr "Ve výchozím nastavení není zaškrtnuto"
6970
 
6971
- #: app/libraries/main.php:3178
6972
  msgid "Insert a label for this option"
6973
  msgstr "Vložte štítek pro tuto možnost"
6974
 
6975
- #: app/libraries/main.php:3193
6976
  msgid "Free"
6977
  msgstr "Zdarma"
6978
 
6979
- #: app/libraries/main.php:3799 app/libraries/main.php:5545
6980
  msgid "M.E. Calender"
6981
  msgstr "M.E. Kalendář"
6982
 
6983
- #: app/libraries/main.php:3954
6984
  #, php-format
6985
  msgid "Copy of %s"
6986
  msgstr "Kopie %s"
6987
 
6988
- #: app/libraries/main.php:4672
6989
  msgid "Booked an event."
6990
  msgstr "Událost byla rezervována."
6991
 
6992
- #: app/libraries/main.php:4713
6993
  #, php-format
6994
  msgid "%s booked %s event."
6995
  msgstr "%s zarezervoval %s událost."
6996
 
6997
- #: app/libraries/main.php:5278
6998
  msgid "Taxonomies"
6999
  msgstr "Taxonomie"
7000
 
7001
  # Mrknout na kontext
7002
- #: app/libraries/main.php:5280
7003
  msgid "Category Plural Label"
7004
  msgstr "Štítek množné kategorie"
7005
 
7006
  # Mrknout na kontext
7007
- #: app/libraries/main.php:5281
7008
  msgid "Category Singular Label"
7009
  msgstr "Štítek jednotné kategorie"
7010
 
7011
- #: app/libraries/main.php:5282
7012
  msgid "Label Plural Label"
7013
  msgstr "Štítek množného štítku"
7014
 
7015
- #: app/libraries/main.php:5283
7016
  msgid "Label Singular Label"
7017
  msgstr "Štítek jednotného štítku"
7018
 
7019
- #: app/libraries/main.php:5284
7020
  msgid "Location Plural Label"
7021
  msgstr "Štítek množného umístění"
7022
 
7023
- #: app/libraries/main.php:5285
7024
  msgid "Location Singular Label"
7025
  msgstr "Štítek jednotného umístění"
7026
 
7027
- #: app/libraries/main.php:5286
7028
  msgid "Organizer Plural Label"
7029
  msgstr "Štítek množného organizátora"
7030
 
7031
- #: app/libraries/main.php:5287
7032
  msgid "Organizer Singular Label"
7033
  msgstr "Štítek jednotného organizátora"
7034
 
7035
- #: app/libraries/main.php:5288
7036
  msgid "Speaker Plural Label"
7037
  msgstr "Štítek množného řečníka"
7038
 
7039
- #: app/libraries/main.php:5289
7040
  msgid "Speaker Singular Label"
7041
  msgstr "Štítek jednotného řečníka"
7042
 
7043
- #: app/libraries/main.php:5295
7044
  msgid "Sunday abbreviation"
7045
  msgstr "Neděle zkratka"
7046
 
7047
- #: app/libraries/main.php:5296
7048
  msgid "Monday abbreviation"
7049
  msgstr "Pondělí zkratka"
7050
 
7051
- #: app/libraries/main.php:5297
7052
  msgid "Tuesday abbreviation"
7053
  msgstr "Úterý zkratka"
7054
 
7055
- #: app/libraries/main.php:5298
7056
  msgid "Wednesday abbreviation"
7057
  msgstr "Středa zkratka"
7058
 
7059
- #: app/libraries/main.php:5299
7060
  msgid "Thursday abbreviation"
7061
  msgstr "Čtvrtek zkratka"
7062
 
7063
- #: app/libraries/main.php:5300
7064
  msgid "Friday abbreviation"
7065
  msgstr "Pátek zkratka"
7066
 
7067
- #: app/libraries/main.php:5301
7068
  msgid "Saturday abbreviation"
7069
  msgstr "Sobota zkratka"
7070
 
7071
- #: app/libraries/main.php:5305
7072
  msgid "Others"
7073
  msgstr "Další"
7074
 
7075
- #: app/libraries/main.php:5307
7076
  msgid "Booking Success Message"
7077
  msgstr "Zpráva o úspěchu rezervace"
7078
 
7079
- #: app/libraries/main.php:5307
7080
  msgid ""
7081
  "Thanks for your booking. Your tickets booked, booking verification might be "
7082
  "needed, please check your email."
@@ -7084,15 +7193,15 @@ msgstr ""
7084
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
7085
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
7086
 
7087
- #: app/libraries/main.php:5308 app/widgets/single.php:131
7088
  msgid "Register Button"
7089
  msgstr "Registrační tlačítko"
7090
 
7091
- #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7092
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7093
- #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7094
- #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7095
- #: app/skins/list/render.php:108 app/skins/list/render.php:194
7096
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
7097
  #: app/skins/single.php:777 app/skins/single/default.php:255
7098
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
@@ -7105,101 +7214,101 @@ msgstr "Registrační tlačítko"
7105
  msgid "REGISTER"
7106
  msgstr "REGISTROVAT"
7107
 
7108
- #: app/libraries/main.php:5309
7109
  msgid "View Detail Button"
7110
  msgstr "Tlačítko Zobrazit detail"
7111
 
7112
- #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7113
- #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7114
- #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7115
- #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7116
- #: app/skins/list/render.php:194 app/skins/masonry/render.php:188
7117
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
7118
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
7119
  #: app/skins/slider/render.php:320
7120
  msgid "View Detail"
7121
  msgstr "Zobrazit detail"
7122
 
7123
- #: app/libraries/main.php:5310
7124
  msgid "Event Detail Button"
7125
  msgstr "Tlačítko Detail události"
7126
 
7127
- #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7128
  msgid "Event Detail"
7129
  msgstr "Zobrazit událost"
7130
 
7131
- #: app/libraries/main.php:5312
7132
  msgid "More Info Link"
7133
  msgstr "Odkaz na více informací"
7134
 
7135
- #: app/libraries/main.php:5315
7136
  msgid "Ticket (Singular)"
7137
  msgstr "Vstupenka (Jednotné)"
7138
 
7139
- #: app/libraries/main.php:5316
7140
  msgid "Tickets (Plural)"
7141
  msgstr "Vstupenky (Množné)"
7142
 
7143
- #: app/libraries/main.php:5402
7144
  msgid "EventON"
7145
  msgstr "EventON"
7146
 
7147
- #: app/libraries/main.php:5403
7148
  msgid "The Events Calendar"
7149
  msgstr "The Events Calendar"
7150
 
7151
- #: app/libraries/main.php:5404
7152
  msgid "Events Schedule WP Plugin"
7153
  msgstr "Events Schedule WP Plugin"
7154
 
7155
- #: app/libraries/main.php:5405
7156
  msgid "Calendarize It"
7157
  msgstr "Calendarize It"
7158
 
7159
- #: app/libraries/main.php:5406
7160
  #, fuzzy
7161
  #| msgid "Event Speakers"
7162
  msgid "Event Espresso"
7163
  msgstr "Řečník události"
7164
 
7165
- #: app/libraries/main.php:5407
7166
  #, fuzzy
7167
  #| msgid "Event Repeating (Recurring events)"
7168
  msgid "Events Manager (Recurring)"
7169
  msgstr "Opakování události (opakující se události)"
7170
 
7171
- #: app/libraries/main.php:5408
7172
  #, fuzzy
7173
  #| msgid "Modern Events Calendar (Lite)"
7174
  msgid "Events Manager (Single)"
7175
  msgstr "Modern Events Calendar (Lite)"
7176
 
7177
- #: app/libraries/main.php:5482 app/libraries/main.php:5502
7178
  msgid "Confirmed"
7179
  msgstr "Potvrzeno"
7180
 
7181
- #: app/libraries/main.php:5483 app/libraries/main.php:5510
7182
  msgid "Rejected"
7183
  msgstr "Odmítnuto"
7184
 
7185
- #: app/libraries/main.php:5484 app/libraries/main.php:5506
7186
  msgid "Pending"
7187
  msgstr "Nevyřízený"
7188
 
7189
- #: app/libraries/main.php:5532
7190
  msgid "Waiting"
7191
  msgstr "Čekající"
7192
 
7193
- #: app/libraries/main.php:5737 app/libraries/render.php:80
7194
  #: app/libraries/render.php:418
7195
  msgid "Skin controller does not exist."
7196
  msgstr "Ovladač vzhledu neexistuje."
7197
 
7198
- #: app/libraries/main.php:5851
7199
  msgid "Sold Out"
7200
  msgstr "Vyprodáno"
7201
 
7202
- #: app/libraries/main.php:5859
7203
  #, fuzzy
7204
  #| msgid "Ticket"
7205
  msgid "Last Few Tickets"
@@ -7213,44 +7322,44 @@ msgstr "Prosím, ověřte svůj e-mail."
7213
  msgid "Your booking is received."
7214
  msgstr "Vaše rezervace je přijata."
7215
 
7216
- #: app/libraries/notifications.php:271
7217
  msgid "Your booking is confirmed."
7218
  msgstr "Vaše rezervace je potvrzena."
7219
 
7220
- #: app/libraries/notifications.php:435
7221
  msgid "booking canceled."
7222
  msgstr "rezervace zrušena."
7223
 
7224
- #: app/libraries/notifications.php:510
7225
  msgid "A new booking is received."
7226
  msgstr "Je přijata nová rezervace."
7227
 
7228
- #: app/libraries/notifications.php:734
7229
  msgid "A new event is added."
7230
  msgstr "Je přidána se nová událost."
7231
 
7232
- #: app/libraries/notifications.php:803
7233
  msgid "Your event is published."
7234
  msgstr "Vaše událost je zveřejněna."
7235
 
7236
- #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7237
- #: app/libraries/notifications.php:1052
7238
  msgid "to"
7239
  msgstr "do"
7240
 
7241
- #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7242
  msgid "+ Add to Google Calendar"
7243
  msgstr "+ Přidat do Google kalendáře"
7244
 
7245
- #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7246
  msgid "+ iCal export"
7247
  msgstr "+ iCal export"
7248
 
7249
- #: app/libraries/notifications.php:1131
7250
  msgid "Yes"
7251
  msgstr "Ano"
7252
 
7253
- #: app/libraries/notifications.php:1131
7254
  msgid "No"
7255
  msgstr "Ne"
7256
 
@@ -7305,12 +7414,6 @@ msgstr "Formulář účastníků"
7305
  msgid "Fill other attendees information like the first form."
7306
  msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
7307
 
7308
- #: app/modules/booking/steps/form.php:179
7309
- #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7310
- #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7311
- msgid "Next"
7312
- msgstr "Další"
7313
-
7314
  #: app/modules/booking/steps/message.php:7
7315
  msgid "Thanks for your booking."
7316
  msgstr "Děkujeme za vaši rezervaci."
@@ -7449,13 +7552,13 @@ msgstr "Nebyla nalezena žádná událost!"
7449
  msgid "Load More"
7450
  msgstr "Načíst více"
7451
 
7452
- #: app/skins/available_spot/tpl.php:160
7453
  msgid "Available Spot(s):"
7454
  msgstr "Dostupné spoty:"
7455
 
7456
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7457
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7458
- #: app/skins/list/render.php:128
7459
  msgid "EVENT DETAIL"
7460
  msgstr "DETAIL UDÁLOSTI"
7461
 
@@ -7554,19 +7657,19 @@ msgstr "Týden %s"
7554
  msgid "Show events based on created shortcodes."
7555
  msgstr "Zobrazit události na základě vytvořených zkrácených kódů."
7556
 
7557
- #: app/widgets/MEC.php:81
7558
  msgid "Title:"
7559
  msgstr "Název:"
7560
 
7561
- #: app/widgets/MEC.php:88
7562
  msgid "Shortcode:"
7563
  msgstr "Zkrácený kód:"
7564
 
7565
- #: app/widgets/MEC.php:98
7566
  msgid "Enable No Event Block Display: "
7567
  msgstr "Povolit zobrazení bez blokování událostí: "
7568
 
7569
- #: app/widgets/MEC.php:102
7570
  msgid "Create some calendars first."
7571
  msgstr "Nejdříve vytvořte nějaké kalendáře."
7572
 
@@ -7630,11 +7733,6 @@ msgstr "Webnus Team"
7630
  msgid "http://webnus.net"
7631
  msgstr "http://webnus.net"
7632
 
7633
- #, fuzzy
7634
- #~| msgid "Enable booking reminder notification"
7635
- #~ msgid "Booking reminder notification is not enabled!"
7636
- #~ msgstr "Povolit upozornění na připomenutí rezervace"
7637
-
7638
  #, fuzzy
7639
  #~| msgid "Booking module doesn't work"
7640
  #~ msgid "Booking module is not enabled!"
@@ -7999,6 +8097,11 @@ msgstr "http://webnus.net"
7999
  #~ msgid "Organizer Payment Credentials"
8000
  #~ msgstr "Platba organizátora"
8001
 
 
 
 
 
 
8002
  #, fuzzy
8003
  #~| msgid "%s Email"
8004
  #~ msgid "Mass Email"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2020-02-05 11:24+0330\n"
5
+ "PO-Revision-Date: 2020-02-05 11:28+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
31
  msgid "Content"
32
  msgstr "Obsah"
33
 
34
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:439
35
+ #: app/features/mec.php:470 app/features/mec.php:500
36
  msgid "Shortcode"
37
  msgstr "Zkrácený kód"
38
 
62
  msgstr "Vyberte typ"
63
 
64
  #: app/features/colors.php:50 app/features/fes/form.php:807
65
+ #: app/features/mec/settings.php:688
66
  msgid "Event Color"
67
  msgstr "Barva události"
68
 
69
+ #: app/features/contextual.php:55 app/features/mec.php:415
70
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
71
+ #: app/features/mec/support.php:20 app/features/popup/shortcode.php:37
72
+ #: app/libraries/main.php:594
73
  msgid "Settings"
74
  msgstr "Nastavení"
75
 
194
  msgid "General Options"
195
  msgstr "Obecné možnosti"
196
 
197
+ #: app/features/contextual.php:139 app/features/mec/settings.php:437
198
  #: app/libraries/main.php:533
199
  msgid "Slugs/Permalinks"
200
  msgstr "Název v URL / Trvalé odkazy"
203
  msgid "Event Details/Single Event Page"
204
  msgstr "Podrobnosti o události / Stránka jedné události"
205
 
206
+ #: app/features/contextual.php:166 app/features/mec/settings.php:469
207
  #: app/libraries/main.php:534
208
  msgid "Currency Options"
209
  msgstr "Možnosti Měna"
213
  msgid "Google Maps Options"
214
  msgstr "Možnosti Google Maps"
215
 
216
+ #: app/features/contextual.php:244 app/features/mec/settings.php:526
217
  #: app/libraries/main.php:535
218
  msgid "Google Recaptcha Options"
219
  msgstr "Možnosti Google Recaptcha"
232
  msgid "Next Event Module"
233
  msgstr "Modul Další události"
234
 
235
+ #: app/features/contextual.php:286 app/features/mec/settings.php:562
236
  #: app/libraries/main.php:536
237
  msgid "Frontend Event Submission"
238
  msgstr "Předání události frontendu"
259
  msgid "BuddyPress Integration"
260
  msgstr "Integrace BuddyPress"
261
 
262
+ #: app/features/contextual.php:334 app/features/mec/settings.php:855
263
  #: app/libraries/main.php:539
264
  msgid "Mailchimp Integration"
265
  msgstr "Integrace Mailchimp"
276
  msgstr "Události"
277
 
278
  #: app/features/events.php:158 app/features/fes.php:223
279
+ #: app/features/mec/meta_boxes/display_options.php:1047
280
+ #: app/features/mec/meta_boxes/display_options.php:1103
281
+ #: app/features/mec/meta_boxes/display_options.php:1138
282
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
283
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
284
  #: app/skins/yearly_view/tpl.php:69
285
  msgid "Event"
286
  msgstr "Událost"
287
 
288
+ #: app/features/events.php:159 app/features/mec.php:401
289
  msgid "Add Event"
290
  msgstr "Přidat událost"
291
 
315
  msgstr "V koši nebyly nalezeny žádné události!"
316
 
317
  #: app/features/events.php:182 app/features/events.php:3320
318
+ #: app/features/mec/meta_boxes/display_options.php:958
319
  #: app/features/mec/meta_boxes/search_form.php:31
320
  #: app/features/mec/meta_boxes/search_form.php:93
321
  #: app/features/mec/meta_boxes/search_form.php:155
327
  #: app/features/mec/meta_boxes/search_form.php:514
328
  #: app/features/mec/meta_boxes/search_form.php:575
329
  #: app/features/mec/meta_boxes/search_form.php:672
330
+ #: app/features/mec/settings.php:808 app/features/mec/single.php:204
331
+ #: app/features/search.php:68 app/libraries/main.php:5282
332
  #: app/libraries/skins.php:858 app/skins/single.php:566
333
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
334
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
337
  msgstr "Kategorie"
338
 
339
  #: app/features/events.php:183 app/features/events.php:3275
340
+ #: app/features/fes/form.php:757 app/features/mec.php:403
341
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5281
342
  msgid "Categories"
343
  msgstr "Kategorie"
344
 
427
  msgstr "Opakování události"
428
 
429
  #: app/features/events.php:333 app/features/events.php:1286
430
+ #: app/features/mec/settings.php:718 app/skins/single.php:947
431
  msgid "Hourly Schedule"
432
  msgstr "Hodinový rozvrh"
433
 
446
  #: app/features/events.php:336 app/features/events.php:3322
447
  #: app/features/events.php:3513 app/features/events.php:3555
448
  #: app/features/ix.php:3510 app/features/ix.php:3551
449
+ #: app/features/mec/meta_boxes/display_options.php:961
450
  #: app/features/mec/meta_boxes/search_form.php:45
451
  #: app/features/mec/meta_boxes/search_form.php:107
452
  #: app/features/mec/meta_boxes/search_form.php:169
458
  #: app/features/mec/meta_boxes/search_form.php:528
459
  #: app/features/mec/meta_boxes/search_form.php:589
460
  #: app/features/mec/meta_boxes/search_form.php:686
461
+ #: app/features/mec/settings.php:820 app/features/mec/single.php:208
462
  #: app/features/organizers.php:58 app/features/organizers.php:204
463
  #: app/features/organizers.php:260 app/features/organizers.php:262
464
+ #: app/features/organizers.php:271 app/features/search.php:78
465
+ #: app/libraries/main.php:5288 app/libraries/skins.php:910
466
  #: app/skins/single.php:812 app/skins/single/default.php:217
467
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
468
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
470
  msgstr "Organizátor"
471
 
472
  #: app/features/events.php:337 app/features/events.php:1172
473
+ #: app/features/fes/form.php:730 app/libraries/main.php:5315
474
  #: app/skins/single.php:589 app/skins/single/default.php:126
475
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
476
  #: app/skins/single/modern.php:208
489
  #: app/features/events.php:3802 app/features/fes.php:223
490
  #: app/features/fes/form.php:689 app/features/labels.php:178
491
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
492
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1120
493
  #: app/modules/booking/steps/form.php:37
494
  msgid "Name"
495
  msgstr "Jméno"
500
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
501
  #: app/features/organizers.php:111 app/features/organizers.php:152
502
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
503
+ #: app/features/speakers.php:196 app/libraries/main.php:1540
504
+ #: app/libraries/main.php:1609 app/libraries/main.php:2827
505
+ #: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
506
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
507
  #: app/skins/single.php:884 app/skins/single/default.php:234
508
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
520
  #: app/features/fes/form.php:251 app/features/ix.php:3510
521
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
522
  #: app/features/mec/dashboard.php:401
523
+ #: app/features/mec/meta_boxes/display_options.php:49
524
+ #: app/features/mec/meta_boxes/display_options.php:229
525
+ #: app/features/mec/meta_boxes/display_options.php:407
526
+ #: app/features/mec/meta_boxes/display_options.php:475
527
+ #: app/features/mec/meta_boxes/display_options.php:598
528
+ #: app/features/mec/meta_boxes/display_options.php:652
529
+ #: app/features/mec/meta_boxes/display_options.php:699
530
+ #: app/features/mec/meta_boxes/display_options.php:732
531
+ #: app/features/mec/meta_boxes/display_options.php:767
532
+ #: app/features/mec/meta_boxes/display_options.php:814
533
+ #: app/features/mec/meta_boxes/display_options.php:913
534
+ #: app/features/mec/meta_boxes/display_options.php:1161
535
+ #: app/features/mec/meta_boxes/display_options.php:1249
536
+ #: app/features/mec/meta_boxes/display_options.php:1341
537
+ #: app/features/mec/meta_boxes/display_options.php:1408
538
  msgid "Start Date"
539
  msgstr "Počátečná den"
540
 
601
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
602
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
603
  #: app/features/mec/dashboard.php:71
604
+ #: app/features/mec/meta_boxes/display_options.php:80
605
+ #: app/features/mec/meta_boxes/display_options.php:93
606
+ #: app/features/mec/meta_boxes/display_options.php:106
607
+ #: app/features/mec/meta_boxes/display_options.php:117
608
+ #: app/features/mec/meta_boxes/display_options.php:129
609
+ #: app/features/mec/meta_boxes/display_options.php:260
610
+ #: app/features/mec/meta_boxes/display_options.php:272
611
+ #: app/features/mec/meta_boxes/display_options.php:284
612
+ #: app/features/mec/meta_boxes/display_options.php:297
613
+ #: app/features/mec/meta_boxes/display_options.php:308
614
+ #: app/features/mec/meta_boxes/display_options.php:321
615
+ #: app/features/mec/meta_boxes/display_options.php:332
616
+ #: app/features/mec/meta_boxes/display_options.php:439
617
+ #: app/features/mec/meta_boxes/display_options.php:615
618
+ #: app/features/mec/meta_boxes/display_options.php:945
619
+ #: app/features/mec/meta_boxes/display_options.php:1018
620
+ #: app/features/mec/meta_boxes/display_options.php:1030
621
+ #: app/features/mec/meta_boxes/display_options.php:1041
622
+ #: app/features/mec/meta_boxes/display_options.php:1073
623
+ #: app/features/mec/meta_boxes/display_options.php:1084
624
+ #: app/features/mec/meta_boxes/display_options.php:1097
625
+ #: app/features/mec/meta_boxes/display_options.php:1132
626
+ #: app/features/mec/meta_boxes/display_options.php:1181
627
+ #: app/features/mec/meta_boxes/display_options.php:1192
628
+ #: app/features/mec/meta_boxes/display_options.php:1203
629
+ #: app/features/mec/meta_boxes/display_options.php:1269
630
+ #: app/features/mec/meta_boxes/display_options.php:1282
631
+ #: app/features/mec/meta_boxes/display_options.php:1295
632
+ #: app/features/mec/meta_boxes/display_options.php:1308
633
+ #: app/features/mec/meta_boxes/display_options.php:1321
634
+ #: app/features/mec/meta_boxes/display_options.php:1372
635
+ #: app/features/mec/meta_boxes/display_options.php:1425
636
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
637
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
638
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
646
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
647
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
648
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
649
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:241
650
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
651
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:426
652
+ #: app/features/mec/settings.php:445 app/features/mec/settings.php:459
653
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:574
654
+ #: app/features/mec/settings.php:747 app/features/mec/settings.php:763
655
+ #: app/features/mec/settings.php:870 app/features/mec/settings.php:883
656
+ #: app/features/mec/settings.php:899 app/features/mec/single.php:42
657
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
658
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
659
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
  #: app/features/ix.php:3510 app/features/ix.php:3551
834
+ #: app/features/mec/settings.php:664 app/libraries/main.php:5314
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Cena události"
846
 
847
  #: app/features/events.php:1204 app/features/events.php:2541
848
  #: app/features/fes.php:223 app/features/mec/booking.php:491
849
+ #: app/features/profile/profile.php:53 app/libraries/main.php:2243
850
+ #: app/libraries/main.php:2885 app/modules/booking/steps/tickets.php:22
851
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
852
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
853
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
904
  #: app/features/events.php:2357 app/features/events.php:2399
905
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
906
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
907
+ #: app/libraries/main.php:2746 app/libraries/main.php:2776
908
+ #: app/libraries/main.php:2805 app/libraries/main.php:2835
909
+ #: app/libraries/main.php:2864 app/libraries/main.php:2893
910
+ #: app/libraries/main.php:2922 app/libraries/main.php:2951
911
+ #: app/libraries/main.php:2973 app/libraries/main.php:3004
912
+ #: app/libraries/main.php:3048 app/libraries/main.php:3092
913
+ #: app/libraries/main.php:3139 app/libraries/main.php:3178
914
  msgid "Remove"
915
  msgstr "Odstranit"
916
 
936
 
937
  #: app/features/events.php:1351 app/features/events.php:1384
938
  #: app/features/events.php:1445 app/features/fes/form.php:851
939
+ #: app/features/mec.php:411 app/features/mec/modules.php:52
940
+ #: app/features/mec/settings.php:712 app/features/speakers.php:62
941
+ #: app/libraries/main.php:565 app/libraries/main.php:5289
942
  #: app/modules/speakers/details.php:18
943
  msgid "Speakers"
944
  msgstr "Řečníci"
948
  msgstr "Nový den"
949
 
950
  #: app/features/events.php:1476 app/features/fes/form.php:704
951
+ #: app/features/mec/settings.php:658
952
  msgid "Event Links"
953
  msgstr "Odkazy na událost"
954
 
955
  #: app/features/events.php:1479 app/features/events.php:1485
956
+ #: app/features/fes/form.php:706 app/libraries/main.php:5312
957
  msgid "Event Link"
958
  msgstr "Odkaz na událost"
959
 
977
  msgstr "Zkracovač URL"
978
 
979
  #: app/features/events.php:1495 app/features/events.php:1508
980
+ #: app/features/fes/form.php:711 app/libraries/main.php:5313
981
  #: app/skins/single.php:673 app/skins/single/default.php:140
982
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
983
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1012
  #: app/features/events.php:1596 app/features/events.php:1849
1013
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1014
  #: app/modules/booking/steps/tickets.php:40
1015
+ #: app/skins/available_spot/tpl.php:158
1016
  msgid "Unlimited"
1017
  msgstr "Neomezené"
1018
 
1046
  msgstr "12"
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
+ #: app/libraries/main.php:5317 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Vstupenky"
1052
 
1151
 
1152
  #: app/features/events.php:1909 app/features/events.php:1935
1153
  #: app/features/events.php:2113 app/features/labels.php:60
1154
+ #: app/features/mec/meta_boxes/display_options.php:959
1155
  #: app/features/mec/meta_boxes/search_form.php:66
1156
  #: app/features/mec/meta_boxes/search_form.php:128
1157
  #: app/features/mec/meta_boxes/search_form.php:190
1163
  #: app/features/mec/meta_boxes/search_form.php:549
1164
  #: app/features/mec/meta_boxes/search_form.php:610
1165
  #: app/features/mec/meta_boxes/search_form.php:707
1166
+ #: app/features/mec/settings.php:840 app/features/mec/single.php:222
1167
  #: app/libraries/skins.php:988
1168
  msgid "Label"
1169
  msgstr "Štítek"
1208
  msgid "Amount (Per Booking)"
1209
  msgstr "Částka (za rezervaci)"
1210
 
1211
+ #: app/features/events.php:2283 app/features/mec/settings.php:736
1212
  msgid "Ticket Variations / Options"
1213
  msgstr "Varianty vstupenky / možnosti"
1214
 
1230
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1231
 
1232
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1233
+ #: app/libraries/main.php:2768
1234
  msgid "MEC Name"
1235
  msgstr "MEC Jméno"
1236
 
1237
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1238
+ #: app/libraries/main.php:2797
1239
  msgid "MEC Email"
1240
  msgstr "MEC Email"
1241
 
1242
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1243
+ #: app/libraries/main.php:2738
1244
  msgid "Text"
1245
  msgstr "Text"
1246
 
1247
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1248
  #: app/features/organizers.php:103 app/features/organizers.php:148
1249
  #: app/features/speakers.php:119 app/features/speakers.php:192
1250
+ #: app/features/speakers.php:271 app/libraries/main.php:2914
1251
  msgid "Tel"
1252
  msgstr "Tel"
1253
 
1254
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1255
+ #: app/libraries/main.php:2856
1256
  msgid "File"
1257
  msgstr "Soubor"
1258
 
1259
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1260
+ #: app/libraries/main.php:2943
1261
  msgid "Textarea"
1262
  msgstr "Plocha textu"
1263
 
1264
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1265
+ #: app/libraries/main.php:2996
1266
  msgid "Checkboxes"
1267
  msgstr "Zatržítko"
1268
 
1269
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1270
+ #: app/libraries/main.php:3040
1271
  msgid "Radio Buttons"
1272
  msgstr "Přepínače"
1273
 
1347
  #: app/features/mec/meta_boxes/search_form.php:696
1348
  #: app/features/mec/meta_boxes/search_form.php:703
1349
  #: app/features/mec/meta_boxes/search_form.php:710
1350
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3084
1351
  msgid "Dropdown"
1352
  msgstr "Rozbalovací"
1353
 
1354
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1355
+ #: app/libraries/main.php:3131
1356
  msgid "Agreement"
1357
  msgstr "Smlouva"
1358
 
1359
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1360
+ #: app/libraries/main.php:2972
1361
  msgid "Paragraph"
1362
  msgstr "Paragraf"
1363
 
1390
  #: app/features/ix.php:3551 app/features/locations.php:58
1391
  #: app/features/locations.php:230 app/features/locations.php:287
1392
  #: app/features/locations.php:289 app/features/locations.php:298
1393
+ #: app/features/mec/meta_boxes/display_options.php:960
1394
  #: app/features/mec/meta_boxes/search_form.php:38
1395
  #: app/features/mec/meta_boxes/search_form.php:100
1396
  #: app/features/mec/meta_boxes/search_form.php:162
1402
  #: app/features/mec/meta_boxes/search_form.php:521
1403
  #: app/features/mec/meta_boxes/search_form.php:582
1404
  #: app/features/mec/meta_boxes/search_form.php:679
1405
+ #: app/features/mec/settings.php:814 app/features/mec/single.php:212
1406
+ #: app/features/search.php:73 app/libraries/main.php:2237
1407
+ #: app/libraries/main.php:5286 app/libraries/skins.php:884
1408
  #: app/skins/single.php:493 app/skins/single.php:924
1409
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1410
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1468
  msgstr "%s Email"
1469
 
1470
  #: app/features/events.php:3808 app/features/fes.php:223
1471
+ #: app/features/profile/profile.php:186 app/libraries/main.php:2272
1472
+ #: app/libraries/main.php:5316
1473
  msgid "Ticket"
1474
  msgstr "Vstupenka"
1475
 
1518
  msgid "The event removed!"
1519
  msgstr "Událost byla odebrána!"
1520
 
1521
+ #: app/features/fes.php:223 app/libraries/main.php:2249
1522
  msgid "Transaction ID"
1523
  msgstr "ID transakce"
1524
 
1565
  msgstr "Přejít zpět na seznam událostí"
1566
 
1567
  #: app/features/fes/form.php:366
1568
+ #: app/features/mec/meta_boxes/display_options.php:844
1569
  #: app/libraries/main.php:410
1570
  msgid "Monday"
1571
  msgstr "Pondělí"
1572
 
1573
  #: app/features/fes/form.php:367
1574
+ #: app/features/mec/meta_boxes/display_options.php:845
1575
  #: app/libraries/main.php:410
1576
  msgid "Tuesday"
1577
  msgstr "Úterý"
1578
 
1579
  #: app/features/fes/form.php:368
1580
+ #: app/features/mec/meta_boxes/display_options.php:846
1581
  #: app/libraries/main.php:410
1582
  msgid "Wednesday"
1583
  msgstr "Středa"
1584
 
1585
  #: app/features/fes/form.php:369
1586
+ #: app/features/mec/meta_boxes/display_options.php:847
1587
  #: app/libraries/main.php:410
1588
  msgid "Thursday"
1589
  msgstr "Čtvrtek"
1590
 
1591
  #: app/features/fes/form.php:370
1592
+ #: app/features/mec/meta_boxes/display_options.php:848
1593
  #: app/libraries/main.php:410
1594
  msgid "Friday"
1595
  msgstr "Pátek"
1596
 
1597
  #: app/features/fes/form.php:371
1598
+ #: app/features/mec/meta_boxes/display_options.php:849
1599
  #: app/libraries/main.php:410
1600
  msgid "Saturday"
1601
  msgstr "Sobota"
1602
 
1603
  #: app/features/fes/form.php:372
1604
+ #: app/features/mec/meta_boxes/display_options.php:843
1605
  #: app/libraries/main.php:410
1606
  msgid "Sunday"
1607
  msgstr "Neděle"
1635
  "Vložte celý odkaz včetně http (s): //"
1636
 
1637
  # v kontextu
1638
+ #: app/features/fes/form.php:744 app/features/mec/settings.php:670
1639
  msgid "Featured Image"
1640
  msgstr "Hlavní obrázek"
1641
 
1644
  msgstr "Odebrat obrázek"
1645
 
1646
  #: app/features/fes/form.php:783 app/features/labels.php:61
1647
+ #: app/features/labels.php:221 app/features/mec.php:404
1648
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5283
1649
  #: app/skins/single.php:702 app/skins/single/default.php:155
1650
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1651
  #: app/skins/single/modern.php:223
1652
  msgid "Labels"
1653
  msgstr "Štítky"
1654
 
1655
+ #: app/features/fes/form.php:829 app/features/mec.php:402
1656
  #: app/features/mec/meta_boxes/filter.php:147
1657
  msgid "Tags"
1658
  msgstr "Tagy"
1979
 
1980
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1981
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1982
+ #: app/features/mec/settings.php:1054 app/features/mec/single.php:269
1983
  msgid "Checking ..."
1984
  msgstr "Ověřování ..."
1985
 
2029
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2030
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2031
  #: app/features/mec/booking.php:359
2032
+ #: app/features/mec/meta_boxes/display_options.php:176
2033
+ #: app/features/mec/meta_boxes/display_options.php:368
2034
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2035
  #: app/features/mec/modules.php:228
2036
  #, php-format
2040
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2041
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2042
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2043
+ #: app/features/mec/meta_boxes/display_options.php:176
2044
+ #: app/features/mec/meta_boxes/display_options.php:368
2045
+ #: app/features/mec/meta_boxes/display_options.php:396
2046
+ #: app/features/mec/meta_boxes/display_options.php:536
2047
+ #: app/features/mec/meta_boxes/display_options.php:587
2048
+ #: app/features/mec/meta_boxes/display_options.php:694
2049
+ #: app/features/mec/meta_boxes/display_options.php:801
2050
+ #: app/features/mec/meta_boxes/display_options.php:908
2051
+ #: app/features/mec/meta_boxes/display_options.php:1121
2052
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2053
  #: app/features/mec/modules.php:228
2054
  msgid "Pro version of Modern Events Calendar"
2222
  msgstr "Automatická synchronizace"
2223
 
2224
  #: app/features/ix/sync.php:22
2225
+ #: app/features/mec/meta_boxes/display_options.php:908
2226
  #, php-format
2227
  msgid "%s is required to use synchronization feature."
2228
  msgstr "%s je vyžadováno pro použití vlastností synchronizace."
2386
  msgstr "Vybrat barvu štítku"
2387
 
2388
  #: app/features/labels.php:112 app/features/labels.php:139
2389
+ #: app/features/mec/meta_boxes/display_options.php:39
2390
+ #: app/features/mec/meta_boxes/display_options.php:216
2391
+ #: app/features/mec/meta_boxes/display_options.php:401
2392
+ #: app/features/mec/meta_boxes/display_options.php:592
2393
+ #: app/features/mec/meta_boxes/display_options.php:642
2394
+ #: app/features/mec/meta_boxes/display_options.php:806
2395
+ #: app/features/mec/meta_boxes/display_options.php:1003
2396
+ #: app/features/mec/meta_boxes/display_options.php:1060
2397
+ #: app/features/mec/meta_boxes/display_options.php:1152
2398
+ #: app/features/mec/meta_boxes/display_options.php:1239
2399
  msgid "Style"
2400
  msgstr "Styl"
2401
 
2408
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2409
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2410
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2411
+ #: app/skins/grid/render.php:54 app/skins/list/render.php:38
2412
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2413
  #: app/skins/monthly_view/calendar_clean.php:86
2414
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2415
+ #: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
2416
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2417
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2418
  msgid "Featured"
2419
  msgstr "Ztvárněná"
2420
 
2421
  #: app/features/labels.php:118 app/features/labels.php:143
2422
+ #: app/libraries/main.php:5532 app/skins/agenda/render.php:43
2423
+ #: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
2424
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2425
+ #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
2426
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:30
2427
  #: app/skins/monthly_view/calendar.php:90
2428
  #: app/skins/monthly_view/calendar_clean.php:90
2429
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2430
+ #: app/skins/tile/render.php:38 app/skins/timeline/render.php:48
2431
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2432
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2433
  msgid "Canceled"
2454
  msgid "Event %s"
2455
  msgstr "Událost %s"
2456
 
2457
+ #: app/features/locations.php:59 app/features/mec.php:405
2458
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2459
+ #: app/libraries/main.php:5285
2460
  msgid "Locations"
2461
  msgstr "Umístění"
2462
 
2527
  msgid "eg. City Hall"
2528
  msgstr "např. Radnice"
2529
 
2530
+ #: app/features/locations.php:310 app/features/mec/settings.php:700
2531
  #: app/widgets/single.php:115
2532
  msgid "Event Location"
2533
  msgstr "Místo události"
2566
  msgid "Don't show map in single event page"
2567
  msgstr "Nezobrazovat mapu na jednostránkové události"
2568
 
2569
+ #: app/features/locations.php:356 app/libraries/main.php:5319
2570
  msgid "Other Locations"
2571
  msgstr "Další místa"
2572
 
2579
  msgid "<strong>"
2580
  msgstr "<strong>"
2581
 
2582
+ #: app/features/mec.php:186
2583
  msgid ""
2584
  "Activation faild. Please check your purchase code or license type."
2585
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2588
  "<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
2589
  "</b>"
2590
 
2591
+ #: app/features/mec.php:186
2592
  msgid "Troubleshooting"
2593
  msgstr "Odstraňování problémů"
2594
 
2595
+ #: app/features/mec.php:256 app/libraries/notifications.php:940
2596
  #, php-format
2597
  msgid "%s to %s"
2598
  msgstr ""
2599
 
2600
+ #: app/features/mec.php:279
2601
  msgid ""
2602
  "Your options is not in JSON format. Please insert correct options in this "
2603
  "field and try again."
2605
  "Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
2606
  "a zkuste to znovu."
2607
 
2608
+ #: app/features/mec.php:286
2609
  msgid "Your options field can not be empty!"
2610
  msgstr "Pole možností nemůže být prázdné!"
2611
 
2612
+ #: app/features/mec.php:292
2613
  msgid "Your options imported successfuly."
2614
  msgstr "Vaše možnosti byly úspěšně importovány."
2615
 
2616
+ #: app/features/mec.php:385
2617
  msgid "MEC - Support"
2618
  msgstr "MEC - podpora"
2619
 
2620
+ #: app/features/mec.php:385 app/features/mec/support-page.php:9
2621
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2622
  msgid "Support"
2623
  msgstr "Podpora"
2624
 
2625
+ #: app/features/mec.php:406 app/features/mec/dashboard.php:278
2626
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2627
+ #: app/libraries/main.php:5287
2628
  msgid "Organizers"
2629
  msgstr "Organizátoři"
2630
 
2631
+ #: app/features/mec.php:414 app/features/mec.php:438
2632
  #: app/features/mec/dashboard.php:264
2633
  msgid "Shortcodes"
2634
  msgstr "Zkrácené kódy"
2635
 
2636
+ #: app/features/mec.php:415
2637
  msgid "MEC - Settings"
2638
  msgstr "MEC - Nastavení"
2639
 
2640
+ #: app/features/mec.php:416
2641
  msgid "MEC - Addons"
2642
  msgstr "MEC - doplňky"
2643
 
2644
+ #: app/features/mec.php:416 app/features/mec/addons.php:22
2645
  msgid "Addons"
2646
  msgstr "Doplňky"
2647
 
2648
+ #: app/features/mec.php:419
2649
  #, fuzzy
2650
  #| msgid "MEC - Support"
2651
  msgid "MEC - Report"
2652
  msgstr "MEC - podpora"
2653
 
2654
+ #: app/features/mec.php:419
2655
  #, fuzzy
2656
  #| msgid "Export"
2657
  msgid "Report"
2658
  msgstr "Export"
2659
 
2660
+ #: app/features/mec.php:440
2661
  msgid "Add Shortcode"
2662
  msgstr "Přidat zkrácený kód"
2663
 
2664
+ #: app/features/mec.php:441
2665
  msgid "Add New Shortcode"
2666
  msgstr "Přidat nový zkrácený kód"
2667
 
2668
+ #: app/features/mec.php:442
2669
  msgid "No shortcodes found!"
2670
  msgstr "Nebyly nalezeny žádné zkrácené kódy!"
2671
 
2672
+ #: app/features/mec.php:443
2673
  msgid "All Shortcodes"
2674
  msgstr "Všechny zkrácené kódy"
2675
 
2676
+ #: app/features/mec.php:444
2677
  msgid "Edit shortcodes"
2678
  msgstr "Editace zkrácených kódů"
2679
 
2680
+ #: app/features/mec.php:445
2681
  msgid "No shortcodes found in Trash!"
2682
  msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
2683
 
2684
+ #: app/features/mec.php:498
2685
  msgid "Display Options"
2686
  msgstr "Zobrazit možnosti"
2687
 
2688
+ #: app/features/mec.php:499
2689
  msgid "Filter Options"
2690
  msgstr "Filtrovat možnosti"
2691
 
2692
+ #: app/features/mec.php:501
2693
  msgid "Search Form"
2694
  msgstr "Vyhledávací formulář"
2695
 
2697
  msgid "Display content's images as Popup"
2698
  msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
2699
 
2700
+ #: app/features/mec.php:889 app/features/popup/shortcode.php:300
2701
  msgid "Single Event Display Method"
2702
  msgstr "Metoda zobrazení jedné události"
2703
 
2704
+ #: app/features/mec.php:894 app/features/popup/shortcode.php:304
2705
  msgid "Separate Window"
2706
  msgstr "Samostatné okno"
2707
 
2708
+ #: app/features/mec.php:895 app/features/popup/shortcode.php:308
2709
  msgid "Modal 1"
2710
  msgstr "Modal 1"
2711
 
2712
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2713
+ #: app/features/mec/dashboard.php:81 app/features/mec/go-pro.php:13
2714
+ #: app/features/mec/report.php:17 app/features/mec/support-page.php:21
2715
  msgid "Version"
2716
  msgstr "Verze"
2717
 
2749
  #: app/features/mec/notifications.php:828
2750
  #: app/features/mec/notifications.php:924
2751
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2752
+ #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
2753
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
2754
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2755
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2756
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2784
  msgstr "Výchozí je Y-m-d"
2785
 
2786
  #: app/features/mec/booking.php:115
2787
+ #: app/features/mec/meta_boxes/display_options.php:135
2788
+ #: app/features/mec/meta_boxes/display_options.php:349
2789
+ #: app/features/mec/meta_boxes/display_options.php:445
2790
+ #: app/features/mec/meta_boxes/display_options.php:951
2791
+ #: app/features/mec/meta_boxes/display_options.php:1218
2792
+ #: app/features/mec/meta_boxes/display_options.php:1327
2793
+ #: app/features/mec/meta_boxes/display_options.php:1378
2794
  msgid "Limit"
2795
  msgstr "Limit"
2796
 
2838
  "minut před zahájením akce!"
2839
 
2840
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2841
+ #: app/features/mec/settings.php:607 app/features/mec/settings.php:617
2842
  msgid "Thank You Page"
2843
  msgstr "Stránka s poděkováním"
2844
 
2851
  "vypnout, ponechte ji prázdnou."
2852
 
2853
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2854
+ #: app/features/mec/settings.php:627 app/features/mec/settings.php:632
2855
  msgid "Thank You Page Time Interval"
2856
  msgstr "Stránka s poděkováním časového intervalu"
2857
 
2858
+ #: app/features/mec/booking.php:167 app/features/mec/settings.php:629
2859
  msgid "2000 mean 2 seconds"
2860
  msgstr "2000 znamená 2 vteřiny"
2861
 
2862
+ #: app/features/mec/booking.php:171 app/features/mec/settings.php:633
2863
  msgid ""
2864
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2865
  "2000 means 2 seconds."
2970
 
2971
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2972
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2973
+ #: app/features/mec/settings.php:1049 app/features/mec/single.php:264
2974
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2975
  msgid "Saved"
2976
  msgstr "Uloženo"
2977
 
2978
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2979
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2980
+ #: app/features/mec/settings.php:1050 app/features/mec/single.php:265
2981
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2982
  msgid "Settings Saved!"
2983
  msgstr "Nastavení uložena!"
2985
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2986
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2987
  #: app/features/mec/notifications.php:905
2988
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
2989
+ #: app/features/mec/settings.php:1074 app/features/mec/single.php:267
2990
+ #: app/features/mec/single.php:289 app/libraries/main.php:5531
2991
  msgid "Verified"
2992
  msgstr "Ověřeno"
2993
 
2994
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2995
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
2996
  #: app/features/mec/single.php:291
2997
  msgid "Please Refresh Page"
2998
  msgstr "Prosím obnovte stránku"
3020
  msgid "Update"
3021
  msgstr "Aktualizovat"
3022
 
3023
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
3024
  #, php-format
3025
  msgid ""
3026
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3031
  "pokročilý rezervační systém, moderní vzhledy jako Agenda, Rozvrh, Roční "
3032
  "pohled, Dostupná místa atd., Měli byste upgradovat na verzi Pro."
3033
 
3034
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
3035
  msgid "lite"
3036
  msgstr " omezenou"
3037
 
3038
+ #: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:25
3039
+ #: app/features/mec/support.php:126
3040
  msgid "GO PREMIUM"
3041
  msgstr "PŘEJÍT NA PREMIUM"
3042
 
3043
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3044
  #, php-format
3045
  msgid ""
3046
  "Easily get a discount coupon by rating us on %s or following and reposting "
3049
  "Jednoduše získejte slevový kupón tím, že nás ohodnocíte na% s nebo poté a "
3050
  "uložíte nás na sociální média. Stačí poslat screenshot do % s a obdržíte % s"
3051
 
3052
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3053
  msgid "WordPress"
3054
  msgstr "WordPress"
3055
 
3056
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3057
  msgid "Copouns!"
3058
  msgstr "Kupóny!"
3059
 
3089
  "Chcete-li využívat všechny funkce a možnosti doplňku, zadejte prosím "
3090
  "zakoupený kód."
3091
 
3092
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:403
3093
  msgid "Upcoming Events"
3094
  msgstr "Nadcházející události"
3095
 
3138
  msgid "Change Log"
3139
  msgstr "Změna logu"
3140
 
3141
+ #: app/features/mec/go-pro.php:9
3142
+ msgid "Go Pro"
3143
+ msgstr ""
3144
+
3145
  #: app/features/mec/ie.php:21
3146
  msgid ""
3147
  "Insert your backup files below and press import to restore your site's "
3187
  "pokud je váš web vícejazyčný, doporučujeme vám změnit zprávy / fráze přímo "
3188
  "v jazykových souborech."
3189
 
3190
+ #: app/features/mec/meta_boxes/display_options.php:23
3191
  msgid "Skin"
3192
  msgstr "Vzhled"
3193
 
3194
+ #: app/features/mec/meta_boxes/display_options.php:41
3195
+ #: app/features/mec/meta_boxes/display_options.php:218
3196
+ #: app/features/mec/meta_boxes/display_options.php:644
3197
+ #: app/features/mec/meta_boxes/display_options.php:810
3198
+ #: app/features/mec/meta_boxes/display_options.php:1005
3199
+ #: app/features/mec/settings.php:267 app/features/mec/settings.php:291
3200
+ #: app/features/mec/settings.php:300 app/features/mec/settings.php:341
3201
+ #: app/features/mec/settings.php:365 app/features/mec/settings.php:374
3202
+ #: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:95
3203
+ #: app/features/popup/shortcode.php:164 app/features/popup/shortcode.php:211
3204
  msgid "Classic"
3205
  msgstr "Klasický"
3206
 
3207
+ #: app/features/mec/meta_boxes/display_options.php:42
3208
+ #: app/features/mec/meta_boxes/display_options.php:220
3209
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:302
3210
+ #: app/features/mec/settings.php:366 app/features/mec/settings.php:376
3211
+ #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:105
3212
  msgid "Minimal"
3213
  msgstr "Minimální"
3214
 
3215
+ #: app/features/mec/meta_boxes/display_options.php:43
3216
+ #: app/features/mec/meta_boxes/display_options.php:221
3217
+ #: app/features/mec/meta_boxes/display_options.php:594
3218
+ #: app/features/mec/meta_boxes/display_options.php:646
3219
+ #: app/features/mec/meta_boxes/display_options.php:808
3220
+ #: app/features/mec/meta_boxes/display_options.php:1007
3221
+ #: app/features/mec/settings.php:269 app/features/mec/settings.php:282
3222
+ #: app/features/mec/settings.php:293 app/features/mec/settings.php:303
3223
+ #: app/features/mec/settings.php:343 app/features/mec/settings.php:356
3224
+ #: app/features/mec/settings.php:367 app/features/mec/settings.php:377
3225
+ #: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:110
3226
+ #: app/features/popup/shortcode.php:157 app/features/popup/shortcode.php:174
3227
+ #: app/features/popup/shortcode.php:197 app/features/popup/shortcode.php:221
3228
  msgid "Modern"
3229
  msgstr "Moderní"
3230
 
3231
+ #: app/features/mec/meta_boxes/display_options.php:44
3232
+ #: app/features/mec/settings.php:294 app/features/mec/settings.php:368
3233
+ #: app/features/popup/shortcode.php:83
3234
  msgid "Standard"
3235
  msgstr "Standardní"
3236
 
3237
+ #: app/features/mec/meta_boxes/display_options.php:45
3238
+ #: app/features/mec/settings.php:295 app/features/mec/settings.php:369
3239
+ #: app/features/popup/shortcode.php:88
3240
  msgid "Accordion"
3241
  msgstr "Akordeon"
3242
 
 
 
 
 
 
 
 
 
 
 
 
 
3243
  #: app/features/mec/meta_boxes/display_options.php:51
3244
  #: app/features/mec/meta_boxes/display_options.php:231
3245
  #: app/features/mec/meta_boxes/display_options.php:409
3249
  #: app/features/mec/meta_boxes/display_options.php:1163
3250
  #: app/features/mec/meta_boxes/display_options.php:1251
3251
  #: app/features/mec/meta_boxes/display_options.php:1343
3252
+ msgid "Today"
3253
+ msgstr "Dnes"
3254
 
3255
  #: app/features/mec/meta_boxes/display_options.php:52
3256
  #: app/features/mec/meta_boxes/display_options.php:232
3257
  #: app/features/mec/meta_boxes/display_options.php:410
 
 
3258
  #: app/features/mec/meta_boxes/display_options.php:702
3259
  #: app/features/mec/meta_boxes/display_options.php:735
 
 
3260
  #: app/features/mec/meta_boxes/display_options.php:916
3261
  #: app/features/mec/meta_boxes/display_options.php:1164
3262
  #: app/features/mec/meta_boxes/display_options.php:1252
3263
  #: app/features/mec/meta_boxes/display_options.php:1344
3264
+ msgid "Tomorrow"
3265
+ msgstr "Zítra"
 
3266
 
3267
  #: app/features/mec/meta_boxes/display_options.php:53
3268
  #: app/features/mec/meta_boxes/display_options.php:233
3278
  #: app/features/mec/meta_boxes/display_options.php:1253
3279
  #: app/features/mec/meta_boxes/display_options.php:1345
3280
  #: app/features/mec/meta_boxes/display_options.php:1410
3281
+ msgid "Start of Current Month"
3282
+ msgstr "Začátek aktuálního měsíce"
3283
 
3284
  #: app/features/mec/meta_boxes/display_options.php:54
3285
  #: app/features/mec/meta_boxes/display_options.php:234
3286
  #: app/features/mec/meta_boxes/display_options.php:412
3287
  #: app/features/mec/meta_boxes/display_options.php:478
 
3288
  #: app/features/mec/meta_boxes/display_options.php:655
3289
  #: app/features/mec/meta_boxes/display_options.php:704
3290
  #: app/features/mec/meta_boxes/display_options.php:737
3295
  #: app/features/mec/meta_boxes/display_options.php:1254
3296
  #: app/features/mec/meta_boxes/display_options.php:1346
3297
  #: app/features/mec/meta_boxes/display_options.php:1411
3298
+ msgid "Start of Next Month"
3299
+ msgstr "Začátek dalšího měsíce"
3300
+
3301
+ #: app/features/mec/meta_boxes/display_options.php:55
3302
+ #: app/features/mec/meta_boxes/display_options.php:235
3303
+ #: app/features/mec/meta_boxes/display_options.php:413
3304
+ #: app/features/mec/meta_boxes/display_options.php:479
3305
+ #: app/features/mec/meta_boxes/display_options.php:602
3306
+ #: app/features/mec/meta_boxes/display_options.php:656
3307
+ #: app/features/mec/meta_boxes/display_options.php:705
3308
+ #: app/features/mec/meta_boxes/display_options.php:738
3309
+ #: app/features/mec/meta_boxes/display_options.php:773
3310
+ #: app/features/mec/meta_boxes/display_options.php:820
3311
+ #: app/features/mec/meta_boxes/display_options.php:919
3312
+ #: app/features/mec/meta_boxes/display_options.php:1167
3313
+ #: app/features/mec/meta_boxes/display_options.php:1255
3314
+ #: app/features/mec/meta_boxes/display_options.php:1347
3315
+ #: app/features/mec/meta_boxes/display_options.php:1412
3316
  msgid "On a certain date"
3317
  msgstr "K určitému datu"
3318
 
3319
+ #: app/features/mec/meta_boxes/display_options.php:58
3320
+ #: app/features/mec/meta_boxes/display_options.php:238
3321
+ #: app/features/mec/meta_boxes/display_options.php:416
3322
+ #: app/features/mec/meta_boxes/display_options.php:482
3323
+ #: app/features/mec/meta_boxes/display_options.php:605
3324
+ #: app/features/mec/meta_boxes/display_options.php:659
3325
+ #: app/features/mec/meta_boxes/display_options.php:708
3326
+ #: app/features/mec/meta_boxes/display_options.php:742
3327
+ #: app/features/mec/meta_boxes/display_options.php:776
3328
+ #: app/features/mec/meta_boxes/display_options.php:823
3329
+ #: app/features/mec/meta_boxes/display_options.php:922
3330
+ #: app/features/mec/meta_boxes/display_options.php:1170
3331
+ #: app/features/mec/meta_boxes/display_options.php:1258
3332
+ #: app/features/mec/meta_boxes/display_options.php:1350
3333
+ #: app/features/mec/meta_boxes/display_options.php:1415
3334
  #, php-format
3335
  msgid "eg. %s"
3336
  msgstr "např. %s"
3337
 
 
3338
  #: app/features/mec/meta_boxes/display_options.php:63
3339
+ #: app/features/mec/meta_boxes/display_options.php:64
3340
+ #: app/features/mec/meta_boxes/display_options.php:67
3341
  #: app/features/mec/meta_boxes/display_options.php:243
3342
+ #: app/features/mec/meta_boxes/display_options.php:244
3343
+ #: app/features/mec/meta_boxes/display_options.php:247
3344
  #: app/features/mec/meta_boxes/display_options.php:421
3345
+ #: app/features/mec/meta_boxes/display_options.php:422
3346
+ #: app/features/mec/meta_boxes/display_options.php:425
3347
  #: app/features/mec/meta_boxes/display_options.php:927
3348
+ #: app/features/mec/meta_boxes/display_options.php:928
3349
+ #: app/features/mec/meta_boxes/display_options.php:931
3350
  #: app/features/mec/meta_boxes/display_options.php:1355
3351
+ #: app/features/mec/meta_boxes/display_options.php:1356
3352
+ #: app/features/mec/meta_boxes/display_options.php:1359
3353
  #, fuzzy
3354
  #| msgid "Maximum Dates"
3355
  msgid "Maximum Date"
3356
  msgstr "Maximum termínů"
3357
 
3358
+ #: app/features/mec/meta_boxes/display_options.php:68
3359
+ #: app/features/mec/meta_boxes/display_options.php:248
3360
+ #: app/features/mec/meta_boxes/display_options.php:426
3361
+ #: app/features/mec/meta_boxes/display_options.php:932
3362
+ #: app/features/mec/meta_boxes/display_options.php:1360
3363
  #, fuzzy
3364
  #| msgid "Show events based on created shortcodes."
3365
  msgid "Show events before the specified date."
3366
  msgstr "Zobrazit události na základě vytvořených zkrácených kódů."
3367
 
3368
+ #: app/features/mec/meta_boxes/display_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3369
  #: app/features/mec/meta_boxes/display_options.php:79
3370
+ #: app/features/mec/meta_boxes/display_options.php:86
 
 
 
3371
  #: app/features/mec/meta_boxes/display_options.php:92
3372
+ #: app/features/mec/meta_boxes/display_options.php:99
 
 
3373
  #: app/features/mec/meta_boxes/display_options.php:105
3374
+ #: app/features/mec/meta_boxes/display_options.php:112
3375
+ #: app/features/mec/meta_boxes/display_options.php:116
3376
+ #: app/features/mec/meta_boxes/display_options.php:123
3377
+ #: app/features/mec/meta_boxes/display_options.php:128
3378
+ #: app/features/mec/meta_boxes/display_options.php:255
3379
+ #: app/features/mec/meta_boxes/display_options.php:259
3380
+ #: app/features/mec/meta_boxes/display_options.php:266
3381
+ #: app/features/mec/meta_boxes/display_options.php:271
3382
+ #: app/features/mec/meta_boxes/display_options.php:278
3383
+ #: app/features/mec/meta_boxes/display_options.php:283
3384
+ #: app/features/mec/meta_boxes/display_options.php:290
3385
  #: app/features/mec/meta_boxes/display_options.php:296
3386
+ #: app/features/mec/meta_boxes/display_options.php:303
3387
+ #: app/features/mec/meta_boxes/display_options.php:307
3388
+ #: app/features/mec/meta_boxes/display_options.php:314
3389
  #: app/features/mec/meta_boxes/display_options.php:320
3390
+ #: app/features/mec/meta_boxes/display_options.php:327
3391
+ #: app/features/mec/meta_boxes/display_options.php:331
3392
+ #: app/features/mec/meta_boxes/display_options.php:433
3393
+ #: app/features/mec/meta_boxes/display_options.php:438
3394
+ #: app/features/mec/meta_boxes/display_options.php:609
3395
+ #: app/features/mec/meta_boxes/display_options.php:614
3396
+ #: app/features/mec/meta_boxes/display_options.php:855
3397
+ #: app/features/mec/meta_boxes/display_options.php:939
3398
+ #: app/features/mec/meta_boxes/display_options.php:944
3399
+ #: app/features/mec/meta_boxes/display_options.php:1011
3400
+ #: app/features/mec/meta_boxes/display_options.php:1017
3401
+ #: app/features/mec/meta_boxes/display_options.php:1024
3402
+ #: app/features/mec/meta_boxes/display_options.php:1029
3403
+ #: app/features/mec/meta_boxes/display_options.php:1036
3404
+ #: app/features/mec/meta_boxes/display_options.php:1040
3405
+ #: app/features/mec/meta_boxes/display_options.php:1068
3406
+ #: app/features/mec/meta_boxes/display_options.php:1072
3407
+ #: app/features/mec/meta_boxes/display_options.php:1079
3408
+ #: app/features/mec/meta_boxes/display_options.php:1083
3409
+ #: app/features/mec/meta_boxes/display_options.php:1090
3410
+ #: app/features/mec/meta_boxes/display_options.php:1096
3411
+ #: app/features/mec/meta_boxes/display_options.php:1126
3412
+ #: app/features/mec/meta_boxes/display_options.php:1131
3413
+ #: app/features/mec/meta_boxes/display_options.php:1174
3414
+ #: app/features/mec/meta_boxes/display_options.php:1180
3415
+ #: app/features/mec/meta_boxes/display_options.php:1187
3416
+ #: app/features/mec/meta_boxes/display_options.php:1191
3417
+ #: app/features/mec/meta_boxes/display_options.php:1198
3418
+ #: app/features/mec/meta_boxes/display_options.php:1202
3419
+ #: app/features/mec/meta_boxes/display_options.php:1262
3420
  #: app/features/mec/meta_boxes/display_options.php:1268
3421
+ #: app/features/mec/meta_boxes/display_options.php:1275
3422
  #: app/features/mec/meta_boxes/display_options.php:1281
3423
+ #: app/features/mec/meta_boxes/display_options.php:1288
3424
  #: app/features/mec/meta_boxes/display_options.php:1294
3425
+ #: app/features/mec/meta_boxes/display_options.php:1301
3426
  #: app/features/mec/meta_boxes/display_options.php:1307
3427
+ #: app/features/mec/meta_boxes/display_options.php:1314
3428
  #: app/features/mec/meta_boxes/display_options.php:1320
3429
+ #: app/features/mec/meta_boxes/display_options.php:1367
3430
+ #: app/features/mec/meta_boxes/display_options.php:1371
3431
+ #: app/features/mec/meta_boxes/display_options.php:1419
3432
+ #: app/features/mec/meta_boxes/display_options.php:1424
3433
+ msgid "Date Formats"
3434
+ msgstr "Formát data"
3435
+
3436
+ #: app/features/mec/meta_boxes/display_options.php:80
3437
+ #: app/features/mec/meta_boxes/display_options.php:308
3438
+ msgid "Default value is \"M d Y\""
3439
+ msgstr "Výchozí hodnota je \"M d Y\""
3440
+
3441
+ #: app/features/mec/meta_boxes/display_options.php:93
3442
+ msgid "Default values are d, M and l"
3443
+ msgstr "Výchozí hodnoty jsou d, M a l"
3444
+
3445
+ #: app/features/mec/meta_boxes/display_options.php:106
3446
+ #: app/features/mec/meta_boxes/display_options.php:297
3447
+ #: app/features/mec/meta_boxes/display_options.php:321
3448
+ #: app/features/mec/meta_boxes/display_options.php:1269
3449
+ #: app/features/mec/meta_boxes/display_options.php:1282
3450
+ #: app/features/mec/meta_boxes/display_options.php:1295
3451
+ #: app/features/mec/meta_boxes/display_options.php:1308
3452
+ #: app/features/mec/meta_boxes/display_options.php:1321
3453
  msgid "Default values are d, F and l"
3454
  msgstr "Výchozí hodnoty jsou d, F a I"
3455
 
3456
+ #: app/features/mec/meta_boxes/display_options.php:117
3457
  msgid "Default value is \"M d\""
3458
  msgstr "Výchozí hodnoty jsou \"M d\""
3459
 
3460
  # Co je TDefault?
3461
+ #: app/features/mec/meta_boxes/display_options.php:129
3462
  msgid "TDefault values are d and F"
3463
  msgstr "TVýchozí hodnoty jsou d a F"
3464
 
3465
+ #: app/features/mec/meta_boxes/display_options.php:136
3466
+ #: app/features/mec/meta_boxes/display_options.php:350
3467
+ #: app/features/mec/meta_boxes/display_options.php:446
3468
+ #: app/features/mec/meta_boxes/display_options.php:622
3469
+ #: app/features/mec/meta_boxes/display_options.php:664
3470
+ #: app/features/mec/meta_boxes/display_options.php:747
3471
+ #: app/features/mec/meta_boxes/display_options.php:781
3472
+ #: app/features/mec/meta_boxes/display_options.php:828
3473
+ #: app/features/mec/meta_boxes/display_options.php:1219
3474
+ #: app/features/mec/meta_boxes/display_options.php:1328
3475
+ #: app/features/mec/meta_boxes/display_options.php:1379
3476
  msgid "eg. 6"
3477
  msgstr "např. 6"
3478
 
3479
+ #: app/features/mec/meta_boxes/display_options.php:141
3480
  #, fuzzy
3481
  #| msgid "Hide Event Time"
3482
  msgid "Include Events Times"
3483
  msgstr "Skrýt čas události"
3484
 
3485
+ #: app/features/mec/meta_boxes/display_options.php:152
3486
+ #: app/features/mec/meta_boxes/display_options.php:354
3487
+ #: app/features/mec/meta_boxes/display_options.php:450
3488
+ #: app/features/mec/meta_boxes/display_options.php:988
3489
+ #: app/features/mec/meta_boxes/display_options.php:1383
3490
  msgid "Load More Button"
3491
  msgstr "Načíst tlačítko Další"
3492
 
3493
+ #: app/features/mec/meta_boxes/display_options.php:162
3494
+ #: app/features/mec/meta_boxes/display_options.php:460
3495
+ #: app/features/mec/meta_boxes/display_options.php:1393
3496
  msgid "Show Month Divider"
3497
  msgstr "Zobrazit oddělovník měsíce"
3498
 
3499
+ #: app/features/mec/meta_boxes/display_options.php:172
3500
+ #: app/features/mec/meta_boxes/display_options.php:364
3501
  msgid "Show Map on top"
3502
  msgstr "Zobrazit mapu nahoře"
3503
 
3504
+ #: app/features/mec/meta_boxes/display_options.php:187
3505
+ #: app/features/mec/meta_boxes/display_options.php:379
3506
+ #: app/features/mec/meta_boxes/display_options.php:717
3507
  msgid "Geolocation"
3508
  msgstr "Geolokace"
3509
 
3510
+ #: app/features/mec/meta_boxes/display_options.php:202
3511
  msgid "Toggle for Month Divider"
3512
  msgstr "Přepínač pro oddělovník měsíce"
3513
 
3514
+ #: app/features/mec/meta_boxes/display_options.php:219
3515
+ #: app/features/mec/meta_boxes/display_options.php:403
3516
+ #: app/features/mec/meta_boxes/display_options.php:498
3517
+ #: app/features/mec/meta_boxes/display_options.php:645
3518
+ #: app/features/mec/meta_boxes/display_options.php:809
3519
+ #: app/features/mec/meta_boxes/display_options.php:1006
3520
+ #: app/features/mec/settings.php:268 app/features/mec/settings.php:283
3521
+ #: app/features/mec/settings.php:301 app/features/mec/settings.php:342
3522
+ #: app/features/mec/settings.php:357 app/features/mec/settings.php:375
3523
+ #: app/features/popup/shortcode.php:100 app/features/popup/shortcode.php:132
3524
+ #: app/features/popup/shortcode.php:140 app/features/popup/shortcode.php:169
3525
+ #: app/features/popup/shortcode.php:202 app/features/popup/shortcode.php:216
3526
  msgid "Clean"
3527
  msgstr "Čistý"
3528
 
3529
+ #: app/features/mec/meta_boxes/display_options.php:222
3530
+ #: app/features/mec/meta_boxes/display_options.php:500
3531
+ #: app/features/mec/meta_boxes/display_options.php:648
3532
+ #: app/features/mec/settings.php:271 app/features/mec/settings.php:304
3533
+ #: app/features/mec/settings.php:345 app/features/mec/settings.php:378
3534
+ #: app/features/popup/shortcode.php:115 app/features/popup/shortcode.php:150
3535
+ #: app/features/popup/shortcode.php:184
3536
  msgid "Simple"
3537
  msgstr "Jednoduchý"
3538
 
3539
+ #: app/features/mec/meta_boxes/display_options.php:223
3540
+ #: app/features/popup/shortcode.php:120
3541
  msgid "Colorful"
3542
  msgstr "Plněbarevný"
3543
 
3544
+ #: app/features/mec/meta_boxes/display_options.php:224
3545
+ #: app/features/mec/meta_boxes/display_options.php:499
3546
+ #: app/features/mec/meta_boxes/display_options.php:647
3547
+ #: app/features/mec/settings.php:270 app/features/mec/settings.php:306
3548
+ #: app/features/mec/settings.php:344 app/features/mec/settings.php:380
3549
+ #: app/features/popup/shortcode.php:125 app/features/popup/shortcode.php:145
3550
+ #: app/features/popup/shortcode.php:179
3551
  msgid "Novel"
3552
  msgstr "Novela"
3553
 
3554
+ #: app/features/mec/meta_boxes/display_options.php:260
3555
+ #: app/features/mec/meta_boxes/display_options.php:1372
3556
  msgid "Default value is \"d F Y"
3557
  msgstr "Výchozí hodnota je \"d F Y"
3558
 
3559
+ #: app/features/mec/meta_boxes/display_options.php:272
3560
  msgid "Default values are d and F"
3561
  msgstr "Výchozí hodnoty jsou d a F"
3562
 
3563
+ #: app/features/mec/meta_boxes/display_options.php:284
3564
  msgid "Default values are d and M"
3565
  msgstr "Výchozí hodnoty jsou d a M"
3566
 
3567
+ #: app/features/mec/meta_boxes/display_options.php:332
3568
  msgid "Default value is \"d F Y\""
3569
  msgstr "Výchozí hodnota je \"d F Y\""
3570
 
3571
+ #: app/features/mec/meta_boxes/display_options.php:338
3572
+ #: app/features/mec/meta_boxes/display_options.php:1209
3573
+ #: app/features/mec/meta_boxes/display_options.php:1431
3574
  msgid "Count in row"
3575
  msgstr "Počet v řadě"
3576
 
3577
+ #: app/features/mec/meta_boxes/display_options.php:396
3578
+ #: app/features/mec/meta_boxes/display_options.php:587
3579
+ #: app/features/mec/meta_boxes/display_options.php:694
3580
+ #: app/features/mec/meta_boxes/display_options.php:801
3581
+ #: app/features/mec/meta_boxes/display_options.php:1121
3582
  #, php-format
3583
  msgid "%s is required to use this skin."
3584
  msgstr "%s je nutné použít tento vzhled."
3585
 
3586
+ #: app/features/mec/meta_boxes/display_options.php:439
3587
+ #: app/features/mec/meta_boxes/display_options.php:615
3588
  msgid "Default values are l and F j"
3589
  msgstr "Výchozí hodnoty jsou I a F j"
3590
 
3591
+ #: app/features/mec/meta_boxes/display_options.php:486
3592
  msgid "Default View"
3593
  msgstr "Výchozí zobrazení"
3594
 
3595
+ #: app/features/mec/meta_boxes/display_options.php:488
3596
+ #: app/features/mec/meta_boxes/display_options.php:509
3597
+ #: app/libraries/main.php:330 app/libraries/main.php:1758
3598
+ #: app/libraries/main.php:1783
3599
  msgid "List View"
3600
  msgstr "Zobrazení seznamu"
3601
 
3602
+ #: app/features/mec/meta_boxes/display_options.php:489
3603
+ #: app/features/mec/meta_boxes/display_options.php:519
3604
+ #: app/libraries/main.php:334 app/libraries/main.php:1752
3605
+ #: app/libraries/main.php:1777
3606
  msgid "Yearly View"
3607
  msgstr "Roční zobrazení"
3608
 
3609
+ #: app/features/mec/meta_boxes/display_options.php:490
3610
+ #: app/features/mec/meta_boxes/display_options.php:541
3611
  msgid "Monthly/Calendar View"
3612
  msgstr "Měsíční / kalendářní zobrazení"
3613
 
3614
+ #: app/features/mec/meta_boxes/display_options.php:491
3615
+ #: app/features/mec/meta_boxes/display_options.php:551
3616
+ #: app/libraries/main.php:337 app/libraries/main.php:1754
3617
+ #: app/libraries/main.php:1779
3618
  msgid "Weekly View"
3619
  msgstr "Týdenní zobrazení"
3620
 
3621
+ #: app/features/mec/meta_boxes/display_options.php:492
3622
+ #: app/features/mec/meta_boxes/display_options.php:561
3623
+ #: app/libraries/main.php:336 app/libraries/main.php:1755
3624
+ #: app/libraries/main.php:1780
3625
  msgid "Daily View"
3626
  msgstr "Denní zobrazení"
3627
 
3628
+ #: app/features/mec/meta_boxes/display_options.php:496
3629
+ #: app/features/popup/shortcode.php:136
3630
  msgid "Monthly Style"
3631
  msgstr "Měsíční styl"
3632
 
3633
+ #: app/features/mec/meta_boxes/display_options.php:536
3634
  #, php-format
3635
  msgid "%s is required to use <b>Yearly View</b> skin."
3636
  msgstr "%s je nutné použít vzhled <b>Roční zobrazení</b>."
3637
 
3638
+ #: app/features/mec/meta_boxes/display_options.php:569
3639
  msgid "The price shows only in List View."
3640
  msgstr "Cena se zobrazuje pouze v zobrazení seznamu."
3641
 
3642
+ #: app/features/mec/meta_boxes/display_options.php:572
3643
  msgid "Display Event Price"
3644
  msgstr "Zobrazit cenu události"
3645
 
3646
+ #: app/features/mec/meta_boxes/display_options.php:600
3647
  msgid "Start of Current Year"
3648
  msgstr "Začátek aktuálního roku"
3649
 
3650
+ #: app/features/mec/meta_boxes/display_options.php:601
3651
  msgid "Start of Next Year"
3652
  msgstr "Začátek příštího roku"
3653
 
3654
+ #: app/features/mec/meta_boxes/display_options.php:621
3655
+ #: app/features/mec/meta_boxes/display_options.php:663
3656
+ #: app/features/mec/meta_boxes/display_options.php:746
3657
+ #: app/features/mec/meta_boxes/display_options.php:780
3658
+ #: app/features/mec/meta_boxes/display_options.php:827
3659
  msgid "Events per day"
3660
  msgstr "Události za den"
3661
 
3662
+ #: app/features/mec/meta_boxes/display_options.php:626
3663
+ #: app/features/mec/meta_boxes/display_options.php:668
3664
+ #: app/features/mec/meta_boxes/display_options.php:751
3665
+ #: app/features/mec/meta_boxes/display_options.php:785
3666
+ #: app/features/mec/meta_boxes/display_options.php:889
3667
+ #: app/features/mec/meta_boxes/display_options.php:1440
3668
  msgid "Next/Previous Buttons"
3669
  msgstr "Tlačítka Další / Předchozí"
3670
 
3671
+ #: app/features/mec/meta_boxes/display_options.php:634
3672
  msgid "For showing next/previous year navigation."
3673
  msgstr "Pro zobrazení navigace další / předchozí."
3674
 
3675
+ #: app/features/mec/meta_boxes/display_options.php:678
3676
  msgid "Uppercase Text"
3677
  msgstr "Text velkými písmeny"
3678
 
3679
+ #: app/features/mec/meta_boxes/display_options.php:686
3680
+ #: app/features/mec/meta_boxes/display_options.php:759
3681
+ #: app/features/mec/meta_boxes/display_options.php:793
3682
+ #: app/features/mec/meta_boxes/display_options.php:897
3683
+ #: app/features/mec/meta_boxes/display_options.php:1448
3684
  msgid "For showing next/previous month navigation."
3685
  msgstr "Pro zobrazení navigace další / předchozí měsíc."
3686
 
3687
+ #: app/features/mec/meta_boxes/display_options.php:712
3688
  msgid "Maximum events"
3689
  msgstr "Maximum událostí"
3690
 
3691
+ #: app/features/mec/meta_boxes/display_options.php:713
3692
  msgid "eg. 200"
3693
  msgstr "např. 200"
3694
 
3695
+ #: app/features/mec/meta_boxes/display_options.php:725
3696
  msgid "The geolocation feature works only in secure (https) websites."
3697
  msgstr "Funkce geolokace funguje pouze na zabezpečených (https) webech."
3698
 
3699
+ #: app/features/mec/meta_boxes/display_options.php:769
3700
+ #: app/features/mec/meta_boxes/display_options.php:816
3701
  msgid "Current Week"
3702
  msgstr "Aktuální týden"
3703
 
3704
+ #: app/features/mec/meta_boxes/display_options.php:770
3705
+ #: app/features/mec/meta_boxes/display_options.php:817
3706
  msgid "Next Week"
3707
  msgstr "Další týden"
3708
 
3709
+ #: app/features/mec/meta_boxes/display_options.php:832
3710
  msgid "Number of Days"
3711
  msgstr "Počet dnů"
3712
 
3713
+ #: app/features/mec/meta_boxes/display_options.php:840
3714
  msgid "Week Start"
3715
  msgstr "Začátek týdne"
3716
 
3717
+ #: app/features/mec/meta_boxes/display_options.php:842
3718
  msgid "Inherite from WordPress options"
3719
  msgstr "Zdědit z možností WordPressu"
3720
 
3721
+ #: app/features/mec/meta_boxes/display_options.php:857
3722
  msgid "1:00"
3723
  msgstr ""
3724
 
3725
+ #: app/features/mec/meta_boxes/display_options.php:858
3726
  msgid "2:00"
3727
  msgstr ""
3728
 
3729
+ #: app/features/mec/meta_boxes/display_options.php:859
3730
  msgid "3:00"
3731
  msgstr ""
3732
 
3733
+ #: app/features/mec/meta_boxes/display_options.php:860
3734
  msgid "4:00"
3735
  msgstr ""
3736
 
3737
+ #: app/features/mec/meta_boxes/display_options.php:861
3738
  msgid "5:00"
3739
  msgstr ""
3740
 
3741
+ #: app/features/mec/meta_boxes/display_options.php:862
3742
  msgid "6:00"
3743
  msgstr ""
3744
 
3745
+ #: app/features/mec/meta_boxes/display_options.php:863
3746
  msgid "7:00"
3747
  msgstr ""
3748
 
3749
+ #: app/features/mec/meta_boxes/display_options.php:864
3750
  msgid "8:00"
3751
  msgstr ""
3752
 
3753
+ #: app/features/mec/meta_boxes/display_options.php:865
3754
  msgid "9:00"
3755
  msgstr ""
3756
 
3757
+ #: app/features/mec/meta_boxes/display_options.php:866
3758
  msgid "10:00"
3759
  msgstr ""
3760
 
3761
+ #: app/features/mec/meta_boxes/display_options.php:867
3762
  msgid "11:00"
3763
  msgstr ""
3764
 
3765
+ #: app/features/mec/meta_boxes/display_options.php:868
3766
  msgid "12:00"
3767
  msgstr ""
3768
 
3769
+ #: app/features/mec/meta_boxes/display_options.php:871
3770
  msgid "13:00"
3771
  msgstr ""
3772
 
3773
+ #: app/features/mec/meta_boxes/display_options.php:872
3774
  msgid "14:00"
3775
  msgstr ""
3776
 
3777
+ #: app/features/mec/meta_boxes/display_options.php:873
3778
  msgid "15:00"
3779
  msgstr ""
3780
 
3781
+ #: app/features/mec/meta_boxes/display_options.php:874
3782
  msgid "16:00"
3783
  msgstr ""
3784
 
3785
+ #: app/features/mec/meta_boxes/display_options.php:875
3786
  msgid "17:00"
3787
  msgstr ""
3788
 
3789
+ #: app/features/mec/meta_boxes/display_options.php:876
3790
  msgid "18:00"
3791
  msgstr ""
3792
 
3793
+ #: app/features/mec/meta_boxes/display_options.php:877
3794
  msgid "19:00"
3795
  msgstr ""
3796
 
3797
+ #: app/features/mec/meta_boxes/display_options.php:878
3798
  msgid "20:00"
3799
  msgstr ""
3800
 
3801
+ #: app/features/mec/meta_boxes/display_options.php:879
3802
  msgid "21:00"
3803
  msgstr ""
3804
 
3805
+ #: app/features/mec/meta_boxes/display_options.php:880
3806
  msgid "22:00"
3807
  msgstr ""
3808
 
3809
+ #: app/features/mec/meta_boxes/display_options.php:881
3810
  msgid "23:00"
3811
  msgstr ""
3812
 
3813
+ #: app/features/mec/meta_boxes/display_options.php:882
3814
  msgid "24:00"
3815
  msgstr ""
3816
 
3817
+ #: app/features/mec/meta_boxes/display_options.php:945
3818
+ #: app/features/mec/meta_boxes/display_options.php:1132
3819
  msgid "Default values are j and F"
3820
  msgstr "Výchozí hodnoty jsou j a F"
3821
 
3822
+ #: app/features/mec/meta_boxes/display_options.php:952
3823
  msgid "eg. 24"
3824
  msgstr "např. 24"
3825
 
3826
+ #: app/features/mec/meta_boxes/display_options.php:955
3827
  msgid "Filter By"
3828
  msgstr "Filtrovat podle"
3829
 
3830
+ #: app/features/mec/meta_boxes/display_options.php:957
3831
  msgid "None"
3832
  msgstr "Žádný"
3833
 
3834
+ #: app/features/mec/meta_boxes/display_options.php:966
3835
  msgid "Fit to row"
3836
  msgstr "Přizpůsobit řádku"
3837
 
3838
+ #: app/features/mec/meta_boxes/display_options.php:967
3839
  msgid ""
3840
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3841
  "would expect from a layout that uses CSS floats."
3843
  "Položky jsou uspořádány do řádků. Řádky postupují svisle. Podobně, co byste "
3844
  "očekávali od rozložení používajícího plovoucí CSS."
3845
 
3846
+ #: app/features/mec/meta_boxes/display_options.php:977
3847
  msgid "Convert Masonry to Grid"
3848
  msgstr "Převést zdivo na mřížku"
3849
 
3850
+ #: app/features/mec/meta_boxes/display_options.php:978
3851
  msgid "For using this option, your events should come with image"
3852
  msgstr "Pro použití této možnosti by vaše události měly přijít s obrázkem"
3853
 
3854
+ #: app/features/mec/meta_boxes/display_options.php:1018
3855
  msgid "Default values are d, M and Y"
3856
  msgstr "Výchozí hodnoty jsou d, M a Y"
3857
 
3858
+ #: app/features/mec/meta_boxes/display_options.php:1030
3859
  msgid "Default values are \"F d\" and l"
3860
  msgstr "Výchozí hodnota je \"F d\" a I"
3861
 
3862
+ #: app/features/mec/meta_boxes/display_options.php:1041
3863
  msgid "Default value is \"l, F d Y\""
3864
  msgstr "Výchozí hodnota je \"I, F d Y\""
3865
 
3866
+ #: app/features/mec/meta_boxes/display_options.php:1062
3867
+ #: app/features/popup/shortcode.php:228
3868
  msgid "Style 1"
3869
  msgstr "Styl 1"
3870
 
3871
+ #: app/features/mec/meta_boxes/display_options.php:1063
3872
+ #: app/features/popup/shortcode.php:233
3873
  msgid "Style 2"
3874
  msgstr "Styl 2"
3875
 
3876
+ #: app/features/mec/meta_boxes/display_options.php:1064
3877
+ #: app/features/popup/shortcode.php:238
3878
  msgid "Style 3"
3879
  msgstr "Styl 3"
3880
 
3881
+ #: app/features/mec/meta_boxes/display_options.php:1073
3882
+ #: app/features/mec/meta_boxes/display_options.php:1084
3883
  msgid "Default value is \"j F Y\""
3884
  msgstr "Výchozí hodnota je \"j F Y\""
3885
 
3886
+ #: app/features/mec/meta_boxes/display_options.php:1097
3887
  msgid "Default values are j, F and Y"
3888
  msgstr "Výchozí hodnoty jsou j, F a Y"
3889
 
3890
+ #: app/features/mec/meta_boxes/display_options.php:1105
3891
+ #: app/features/mec/meta_boxes/display_options.php:1140
3892
  msgid " -- Next Upcoming Event -- "
3893
  msgstr " -- Další nadcházející událost -- "
3894
 
3895
+ #: app/features/mec/meta_boxes/display_options.php:1112
3896
  msgid "Background Color"
3897
  msgstr "Barva pozadí"
3898
 
3899
+ #: app/features/mec/meta_boxes/display_options.php:1154
3900
+ #: app/features/mec/meta_boxes/display_options.php:1241
3901
+ #: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
3902
  msgid "Type 1"
3903
  msgstr "Typ 1"
3904
 
3905
+ #: app/features/mec/meta_boxes/display_options.php:1155
3906
+ #: app/features/mec/meta_boxes/display_options.php:1242
3907
+ #: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
3908
  msgid "Type 2"
3909
  msgstr "Typ 2"
3910
 
3911
+ #: app/features/mec/meta_boxes/display_options.php:1156
3912
+ #: app/features/mec/meta_boxes/display_options.php:1243
3913
+ #: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
3914
  msgid "Type 3"
3915
  msgstr "Typ 3"
3916
 
3917
+ #: app/features/mec/meta_boxes/display_options.php:1157
3918
+ #: app/features/mec/meta_boxes/display_options.php:1244
3919
+ #: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
3920
  msgid "Type 4"
3921
  msgstr "Typ 4"
3922
 
3923
+ #: app/features/mec/meta_boxes/display_options.php:1181
3924
  msgid "Default values are d, F and Y"
3925
  msgstr "Výchozí hodnoty jsou d, F a Y"
3926
 
3927
+ #: app/features/mec/meta_boxes/display_options.php:1192
3928
+ #: app/features/mec/meta_boxes/display_options.php:1203
3929
  msgid "Default value is \"M d, Y\""
3930
  msgstr "Výchozí hodnota je \"M d, Y\""
3931
 
3932
+ #: app/features/mec/meta_boxes/display_options.php:1222
3933
+ #: app/features/mec/meta_boxes/display_options.php:1331
3934
  msgid "Auto Play Time"
3935
  msgstr "Čas automatického přehrávání"
3936
 
3937
+ #: app/features/mec/meta_boxes/display_options.php:1223
3938
+ #: app/features/mec/meta_boxes/display_options.php:1332
3939
  msgid "eg. 3000 default is 3 second"
3940
  msgstr "např. výchozí hodnota 3000 jsou 3 vteřiny"
3941
 
3947
  msgid "Head Text"
3948
  msgstr "Text hlavičky"
3949
 
3950
+ #: app/features/mec/meta_boxes/display_options.php:1245
3951
+ #: app/features/popup/shortcode.php:289
3952
  msgid "Type 5"
3953
  msgstr "Typ 5"
3954
 
3955
+ #: app/features/mec/meta_boxes/display_options.php:1425
3956
  #, fuzzy
3957
  #| msgid "Default values are j and F"
3958
  msgid "Default values are j and M"
3995
  msgstr "Data"
3996
 
3997
  #: app/features/mec/meta_boxes/filter.php:183
3998
+ #: app/features/popup/shortcode.php:324
3999
  msgid "Include Expired Events"
4000
  msgstr "Zahrnout uplynulé události"
4001
 
4002
  #: app/features/mec/meta_boxes/filter.php:190
4003
+ #: app/features/popup/shortcode.php:325
4004
  msgid ""
4005
  "You have ability to include past/expired events if you like so it will show "
4006
  "upcoming and expired events based on start date that you selected."
4010
  "zahájení."
4011
 
4012
  #: app/features/mec/meta_boxes/filter.php:197
4013
+ #: app/features/popup/shortcode.php:335
4014
  msgid "Show Only Expired Events"
4015
  msgstr "Zobrazit pouze uplynulé události"
4016
 
4024
  "počáteční datum a poté přejde na% s data."
4025
 
4026
  #: app/features/mec/meta_boxes/filter.php:204
4027
+ #: app/features/popup/shortcode.php:336
4028
  msgid "only"
4029
  msgstr "pouze"
4030
 
4033
  msgstr "starší"
4034
 
4035
  #: app/features/mec/meta_boxes/filter.php:212
4036
+ #: app/features/popup/shortcode.php:346
4037
  msgid "Show Only Ongoing Events"
4038
  msgstr "Zobrazit pouze probíhající události"
4039
 
4040
  #: app/features/mec/meta_boxes/filter.php:219
4041
+ #: app/features/popup/shortcode.php:347
4042
  msgid "It shows only ongoing events on List and Grid skins."
4043
  msgstr "Ukazuje pouze probíhající události v seznamech a v mřížkách."
4044
 
4134
  #: app/features/mec/meta_boxes/search_form.php:716
4135
  #: app/features/mec/meta_boxes/search_form.php:723
4136
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
4137
+ #: app/features/mec/settings.php:421
4138
  msgid "Disabled"
4139
  msgstr "Zakázaný"
4140
 
4149
  #: app/features/mec/meta_boxes/search_form.php:535
4150
  #: app/features/mec/meta_boxes/search_form.php:596
4151
  #: app/features/mec/meta_boxes/search_form.php:693
4152
+ #: app/features/mec/settings.php:827 app/features/mec/single.php:217
4153
+ #: app/features/search.php:83 app/features/speakers.php:61
4154
+ #: app/features/speakers.php:269 app/libraries/main.php:5290
4155
  #: app/libraries/skins.php:936
4156
  msgid "Speaker"
4157
  msgstr "Řečník"
4167
  #: app/features/mec/meta_boxes/search_form.php:542
4168
  #: app/features/mec/meta_boxes/search_form.php:603
4169
  #: app/features/mec/meta_boxes/search_form.php:700
4170
+ #: app/features/mec/settings.php:834 app/features/mec/single.php:226
4171
+ #: app/features/search.php:88 app/libraries/skins.php:962
4172
  msgid "Tag"
4173
  msgstr "Štítek"
4174
 
4252
  msgstr "Zobrazit Mapy Google na stránce události"
4253
 
4254
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4255
+ #: app/features/mec/settings.php:864 app/features/mec/settings.php:869
4256
+ #: app/features/mec/settings.php:917 app/features/mec/settings.php:941
4257
+ #: app/features/mec/settings.php:965
4258
  msgid "API Key"
4259
  msgstr "API Key"
4260
 
4261
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:870
4262
+ #: app/features/mec/settings.php:883
4263
  msgid "Required!"
4264
  msgstr "Požadované!"
4265
 
4870
  msgstr "Zašle správci informaci o přijetí nové rezervace."
4871
 
4872
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4873
+ #: app/libraries/notifications.php:610
4874
  msgid "Booking Reminder"
4875
  msgstr "Připomenutí rezervace"
4876
 
4930
  msgstr "Stav události"
4931
 
4932
  #: app/features/mec/notifications.php:720
4933
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:742
4934
+ #: app/features/mec/settings.php:746
4935
  msgid "Event Note"
4936
  msgstr "Poznámka události"
4937
 
5125
  msgstr "Můžete povolit nebo zakázat skripty schématu"
5126
 
5127
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5128
+ #: app/libraries/main.php:5294
5129
  msgid "Weekdays"
5130
  msgstr "Pracovní dny"
5131
 
5187
  "12 AM and you don't want those events considered as multiple days events!"
5188
  msgstr ""
5189
 
5190
+ #: app/features/mec/settings.php:222
5191
+ #, fuzzy
5192
+ #| msgid "Add Shortcode"
5193
+ msgid "Open \"Add Shortcode\" as Popup"
5194
+ msgstr "Přidat zkrácený kód"
5195
+
5196
+ #: app/features/mec/settings.php:225
5197
+ #, fuzzy
5198
+ #| msgid "Enabled"
5199
+ msgid "Enable"
5200
+ msgstr "Povoleno"
5201
+
5202
+ #: app/features/mec/settings.php:232 app/libraries/main.php:532
5203
  msgid "Archive Pages"
5204
  msgstr "Archivní stránky"
5205
 
5206
+ #: app/features/mec/settings.php:235 app/features/mec/settings.php:240
5207
  msgid "Archive Page Title"
5208
  msgstr "Název stránky archivu"
5209
 
5210
+ #: app/features/mec/settings.php:241
5211
  msgid "Default value is Events - It's title of the page"
5212
  msgstr "Výchozí hodnota je Události - to je název stránky"
5213
 
5214
+ #: app/features/mec/settings.php:249 app/features/mec/settings.php:317
5215
  msgid "Archive Page Skin"
5216
  msgstr "Vzhled archivní stránky"
5217
 
5218
+ #: app/features/mec/settings.php:257
5219
  msgid "Put shortcode..."
5220
  msgstr "Vložte zkrácený kód..."
5221
 
5222
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
5223
+ #: app/features/mec/settings.php:278 app/features/mec/settings.php:287
5224
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:334
5225
+ #: app/features/mec/settings.php:349 app/features/mec/settings.php:352
5226
+ #: app/features/mec/settings.php:361 app/features/mec/settings.php:387
5227
  msgid "There is no skins"
5228
  msgstr "Neexistuje žádný vzhled"
5229
 
5230
+ #: app/features/mec/settings.php:263 app/features/mec/settings.php:337
5231
  #: app/features/mec/single.php:69
5232
  msgid "Modern Style"
5233
  msgstr "Moderní styl"
5234
 
5235
+ #: app/features/mec/settings.php:305 app/features/mec/settings.php:379
5236
  msgid "colorful"
5237
  msgstr "pestrý"
5238
 
5239
+ #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
5240
  msgid "Clean Style"
5241
  msgstr "Čistý styl"
5242
 
5243
+ #: app/features/mec/settings.php:318
5244
  msgid "Default value is Calendar/Monthly View, But you can change it "
5245
  msgstr "Výchozí hodnota je Kalendář / Měsíční zobrazení, ale můžete ji změnit "
5246
 
5247
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
5248
  msgid "See Demo"
5249
  msgstr "Viz Demo"
5250
 
5251
+ #: app/features/mec/settings.php:326 app/features/mec/settings.php:391
5252
  msgid "Category Page Skin"
5253
  msgstr "Vzhled stránky kategorie"
5254
 
5255
+ #: app/features/mec/settings.php:392
5256
  msgid ""
5257
  "Default value is List View - But you can change it Set a skin for all "
5258
  "categories."
5260
  "Výchozí hodnota je Zobrazení seznamu - ale můžete ji změnit Nastavit vzhled "
5261
  "pro všechny kategorie."
5262
 
5263
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:408
5264
  msgid "Category Events Method"
5265
  msgstr "Kategorie Metoda události"
5266
 
5267
+ #: app/features/mec/settings.php:404
5268
  msgid "Expired Events"
5269
  msgstr "Události vypršely"
5270
 
5271
+ #: app/features/mec/settings.php:409
5272
  msgid "Default value is Upcoming Events"
5273
  msgstr "Výchozí hodnota je Nadcházející události"
5274
 
5275
+ #: app/features/mec/settings.php:417 app/features/mec/settings.php:425
5276
  msgid "Events Archive Status"
5277
  msgstr "Stav archivu událostí"
5278
 
5279
+ #: app/features/mec/settings.php:420
5280
  msgid "Enabled (Recommended)"
5281
  msgstr "Povoleno (doporučeno)"
5282
 
5283
  # Slug
5284
+ #: app/features/mec/settings.php:426
5285
  msgid ""
5286
  "If you disable it, then you should create a page as archive page of MEC. "
5287
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
5292
  "přepisování MEC."
5293
 
5294
  # Hlavní slug
5295
+ #: app/features/mec/settings.php:439 app/features/mec/settings.php:444
5296
  msgid "Main Slug"
5297
  msgstr "Main Slug"
5298
 
5299
+ #: app/features/mec/settings.php:445
5300
  msgid ""
5301
  "Default value is events. You can not have a page with this name. MEC allows "
5302
  "you to create custom URLs for the permalinks and archives to enhance the "
5306
  "umožňuje vytvářet vlastní adresy URL pro permanentní odkazy a archivy, aby "
5307
  "se zvýšila použitelnost a dopředná kompatibilita odkazů."
5308
 
5309
+ #: app/features/mec/settings.php:449 app/features/mec/settings.php:463
5310
  msgid "Valid characters are lowercase a-z, - character and numbers."
5311
  msgstr "Platnými znaky jsou malá písmena a-z, - znak a čísla."
5312
 
5313
  # Slug
5314
+ #: app/features/mec/settings.php:453 app/features/mec/settings.php:458
5315
  msgid "Category Slug"
5316
  msgstr "Kategorie Slug"
5317
 
5318
+ #: app/features/mec/settings.php:459
5319
  msgid ""
5320
  "It's slug of MEC categories, you can change it to events-cat or something "
5321
  "else. Default value is mec-category. You can not have a page with this name."
5324
  "jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
5325
  "názvem."
5326
 
5327
+ #: app/features/mec/settings.php:471
5328
  msgid "Currency"
5329
  msgstr "Měna"
5330
 
5331
+ #: app/features/mec/settings.php:481 app/features/mec/settings.php:486
5332
  msgid "Currency Sign"
5333
  msgstr "Symbol měny"
5334
 
5335
+ #: app/features/mec/settings.php:487
5336
  msgid "Default value will be \"currency\" if you leave it empty."
5337
  msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
5338
 
5339
+ #: app/features/mec/settings.php:494
5340
  msgid "Currency Position"
5341
  msgstr "Pozice měny"
5342
 
5343
+ #: app/features/mec/settings.php:497
5344
  msgid "Before $10"
5345
  msgstr "Před $10"
5346
 
5347
+ #: app/features/mec/settings.php:498
5348
  msgid "After 10$"
5349
  msgstr "Po 10$"
5350
 
5351
+ #: app/features/mec/settings.php:503
5352
  msgid "Thousand Separator"
5353
  msgstr "Oddělovač tisíců"
5354
 
5355
+ #: app/features/mec/settings.php:509
5356
  msgid "Decimal Separator"
5357
  msgstr "Oddělovač desítel"
5358
 
5359
+ #: app/features/mec/settings.php:519
5360
  msgid "No decimal"
5361
  msgstr "Bez desetinných míst"
5362
 
5363
+ #: app/features/mec/settings.php:530
5364
  msgid "Enable Google Recaptcha"
5365
  msgstr "Povolit Google Recaptcha"
5366
 
5367
+ #: app/features/mec/settings.php:537
5368
  msgid "Enable on booking form"
5369
  msgstr "Povolit rezervační formulář"
5370
 
5371
+ #: app/features/mec/settings.php:543
5372
  msgid "Enable on \"Frontend Event Submission\" form"
5373
  msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
5374
 
5375
  # místa
5376
+ #: app/features/mec/settings.php:547
5377
  msgid "Site Key"
5378
  msgstr "Klíč webu"
5379
 
5380
+ #: app/features/mec/settings.php:553
5381
  msgid "Secret Key"
5382
  msgstr "Tajný klíč"
5383
 
5384
+ #: app/features/mec/settings.php:565 app/features/mec/settings.php:573
5385
  msgid "Time Format"
5386
  msgstr "Formát času"
5387
 
5388
+ #: app/features/mec/settings.php:568
5389
  msgid "12 hours format with AM/PM"
5390
  msgstr "12 hodinový formát s dop./odp."
5391
 
5392
+ #: app/features/mec/settings.php:569
5393
  msgid "24 hours format"
5394
  msgstr "24 hodinový fotmát"
5395
 
5396
+ #: app/features/mec/settings.php:574
5397
  msgid "This option, affects the selection of Start/End time."
5398
  msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
5399
 
5400
+ #: app/features/mec/settings.php:582
5401
  msgid "Events List Page"
5402
  msgstr "Stránka seznamu událostí"
5403
 
5404
+ #: app/features/mec/settings.php:591 app/features/mec/settings.php:603
5405
  #, php-format
5406
  msgid "Put %s shortcode into the page."
5407
  msgstr "Vložte %s na stránku zkrácené kódy."
5408
 
5409
+ #: app/features/mec/settings.php:594
5410
  msgid "Add/Edit Events Page"
5411
  msgstr "Přidat / Editovat stránku událostí"
5412
 
5413
+ #: app/features/mec/settings.php:618
5414
  #, fuzzy
5415
  #| msgid ""
5416
  #| "User redirects to this page after booking. Leave it empty if you want to "
5422
  "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
5423
  "vypnout, ponechte ji prázdnou."
5424
 
5425
+ #: app/features/mec/settings.php:643
5426
  msgid "Enable event submission by guest (Not logged-in) users"
5427
  msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
5428
 
5429
+ #: app/features/mec/settings.php:650
5430
  msgid "Enable mandatory email and name for guest user"
5431
  msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
5432
 
5433
+ #: app/features/mec/settings.php:654
5434
  msgid "Frontend Event Submission Sections"
5435
  msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
5436
 
5437
+ #: app/features/mec/settings.php:676 app/widgets/single.php:119
5438
  msgid "Event Categories"
5439
  msgstr "Kategorie události"
5440
 
5441
+ #: app/features/mec/settings.php:682
5442
  msgid "Event Labels"
5443
  msgstr "Štítky události"
5444
 
5445
+ #: app/features/mec/settings.php:694
5446
  msgid "Event Tags"
5447
  msgstr "Tagy události"
5448
 
5449
+ #: app/features/mec/settings.php:706 app/widgets/single.php:123
5450
  msgid "Event Organizer"
5451
  msgstr "Organizátor události"
5452
 
5453
+ #: app/features/mec/settings.php:724
5454
  msgid "Booking Options"
5455
  msgstr "Možnosti rezervace"
5456
 
5457
+ #: app/features/mec/settings.php:730
5458
  msgid "Fees / Taxes Options"
5459
  msgstr "Možnosti Poplatky / Daně"
5460
 
5461
+ #: app/features/mec/settings.php:747
5462
  #, php-format
5463
  msgid ""
5464
  "Users can put a note for editors while they're submitting the event. Also "
5469
  "oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
5470
  "mail s poznámkami uživatelů."
5471
 
5472
+ #: app/features/mec/settings.php:754 app/features/mec/settings.php:762
5473
  msgid "Visibility of Note"
5474
  msgstr "Viditelnost poznámky"
5475
 
5476
+ #: app/features/mec/settings.php:757
5477
  msgid "Always"
5478
  msgstr "Vždy"
5479
 
5480
+ #: app/features/mec/settings.php:758
5481
  msgid "While event is not published"
5482
  msgstr "I když událost není zveřejněna"
5483
 
5484
+ #: app/features/mec/settings.php:763
5485
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5486
  msgstr ""
5487
  "Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
5488
  "(frontend) a Upravit událost v administraci stránek (backend)."
5489
 
5490
+ #: app/features/mec/settings.php:774 app/libraries/main.php:537
5491
  msgid "User Profile"
5492
  msgstr "Uživatelský profil"
5493
 
5494
+ #: app/features/mec/settings.php:776
5495
  #, php-format
5496
  msgid ""
5497
  "Put %s shortcode into your desired page. Then users are able to see history "
5500
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
5501
  "historii svých rezervací."
5502
 
5503
+ #: app/features/mec/settings.php:781 app/libraries/main.php:538
5504
  msgid "Search Bar"
5505
  msgstr "Vyhledávací panel"
5506
 
5507
+ #: app/features/mec/settings.php:783
5508
  #, php-format
5509
  msgid ""
5510
  "Put %s shortcode into your desired page. Then users are able to search events"
5512
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
5513
  "události"
5514
 
5515
+ #: app/features/mec/settings.php:787
5516
  msgid "Ajax Live mode"
5517
  msgstr "Ajax Live mód"
5518
 
5519
+ #: app/features/mec/settings.php:791
5520
  msgid "Ajax mode"
5521
  msgstr "Ajax mód"
5522
 
5523
+ #: app/features/mec/settings.php:792
5524
  msgid ""
5525
  "if you enable this option, search button disappeared and to use this "
5526
  "feature, text input field must be enabled."
5528
  "pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
5529
  "této funkce musí být povoleno pole pro zadávání textu."
5530
 
5531
+ #: app/features/mec/settings.php:800
5532
  msgid "Modern Type"
5533
  msgstr "Moderní typ"
5534
 
5535
+ #: app/features/mec/settings.php:804
5536
  msgid "Search bar fields"
5537
  msgstr "Pole vyhledávacího panelu"
5538
 
5539
+ #: app/features/mec/settings.php:846
5540
  msgid "Text input"
5541
  msgstr "Zadávání textu"
5542
 
5543
+ #: app/features/mec/settings.php:859
5544
  msgid "Enable Mailchimp Integration"
5545
  msgstr "Povolit integraci Mailchimp"
5546
 
5547
+ #: app/features/mec/settings.php:877 app/features/mec/settings.php:882
5548
+ #: app/features/mec/settings.php:923 app/features/mec/settings.php:971
5549
  msgid "List ID"
5550
  msgstr "ID seznamu"
5551
 
5552
+ #: app/features/mec/settings.php:890 app/features/mec/settings.php:898
5553
  msgid "Subscription Status"
5554
  msgstr "Stav odběru"
5555
 
5556
+ #: app/features/mec/settings.php:893
5557
  msgid "Subscribe automatically"
5558
  msgstr "Odebírat automaticky"
5559
 
5560
+ #: app/features/mec/settings.php:894
5561
  msgid "Subscribe by verification"
5562
  msgstr "Přihlaste se k odběru pomocí ověření"
5563
 
5564
+ #: app/features/mec/settings.php:899
5565
  msgid ""
5566
  "If you choose \"Subscribe by verification\" then an email will send to user "
5567
  "by mailchimp for subscription verification."
5569
  "Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
5570
  "uživateli mailchimp k ověření oběru."
5571
 
5572
+ #: app/features/mec/settings.php:908 app/libraries/main.php:540
5573
  #, fuzzy
5574
  #| msgid "Mailchimp Integration"
5575
  msgid "Campaign Monitor Integration"
5576
  msgstr "Integrace Mailchimp"
5577
 
5578
+ #: app/features/mec/settings.php:912
5579
  #, fuzzy
5580
  #| msgid "Enable Mailchimp Integration"
5581
  msgid "Enable Campaign Monitor Integration"
5582
  msgstr "Povolit integraci Mailchimp"
5583
 
5584
+ #: app/features/mec/settings.php:932 app/libraries/main.php:541
5585
  #, fuzzy
5586
  #| msgid "Mailchimp Integration"
5587
  msgid "MailerLite Integration"
5588
  msgstr "Integrace Mailchimp"
5589
 
5590
+ #: app/features/mec/settings.php:936
5591
  #, fuzzy
5592
  #| msgid "Enable Mailchimp Integration"
5593
  msgid "Enable MailerLite Integration"
5594
  msgstr "Povolit integraci Mailchimp"
5595
 
5596
+ #: app/features/mec/settings.php:947
5597
  #, fuzzy
5598
  #| msgid "Group URL"
5599
  msgid "Group ID"
5600
  msgstr "Group URL"
5601
 
5602
+ #: app/features/mec/settings.php:956 app/libraries/main.php:542
5603
  #, fuzzy
5604
  #| msgid "Enable Mailchimp Integration"
5605
  msgid "Constant Contact Integration"
5606
  msgstr "Povolit integraci Mailchimp"
5607
 
5608
+ #: app/features/mec/settings.php:960
5609
  #, fuzzy
5610
  #| msgid "Enable Mailchimp Integration"
5611
  msgid "Enable constantcontact Integration"
5612
  msgstr "Povolit integraci Mailchimp"
5613
 
5614
+ #: app/features/mec/settings.php:982
5615
  msgid "Upload Field Options"
5616
  msgstr "Možnosti pole Nahrát"
5617
 
5618
+ #: app/features/mec/settings.php:984
5619
  msgid "Mime types"
5620
  msgstr "MIME typy"
5621
 
5622
+ #: app/features/mec/settings.php:988
5623
  msgid "Split mime types with \",\"."
5624
  msgstr "Rozdělte typy MIME pomocí “,“."
5625
 
5626
+ #: app/features/mec/settings.php:988
5627
  msgid "Default: jpeg,jpg,png,pdf"
5628
  msgstr "Výchozí: jpeg,jpg,png,pdf"
5629
 
5630
+ #: app/features/mec/settings.php:991
5631
  msgid "Maximum file size"
5632
  msgstr "Maximální velikost souboru"
5633
 
5634
+ #: app/features/mec/settings.php:995
5635
  msgid "The unit is Megabyte \"MB\""
5636
  msgstr "Jednotkou je Megabyte \"MB\""
5637
 
6363
  msgid "eg. https://webnus.net"
6364
  msgstr "např. https://webnus.net"
6365
 
6366
+ #: app/features/organizers.php:312 app/libraries/main.php:5318
6367
  #: app/skins/single.php:862
6368
  msgid "Other Organizers"
6369
  msgstr "Další organizátoři"
6374
  msgstr ""
6375
  "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
6376
 
6377
+ #: app/features/popup/shortcode.php:34
6378
+ #, fuzzy
6379
+ #| msgid "Add Shortcode"
6380
+ msgid "Adding a Shortcode..."
6381
+ msgstr "Přidat zkrácený kód"
6382
+
6383
+ #: app/features/popup/shortcode.php:42
6384
+ #, fuzzy
6385
+ #| msgid "Shortcode"
6386
+ msgid "Shortcode Name"
6387
+ msgstr "Zkrácený kód"
6388
+
6389
+ #: app/features/popup/shortcode.php:43
6390
+ msgid "Shortcode name is required"
6391
+ msgstr ""
6392
+
6393
+ #: app/features/popup/shortcode.php:313
6394
+ #, fuzzy
6395
+ #| msgid "Single Event"
6396
+ msgid "Select Event"
6397
+ msgstr "Jedna událost"
6398
+
6399
+ #: app/features/popup/shortcode.php:336
6400
+ #, fuzzy, php-format
6401
+ #| msgid "Show Only Expired Events"
6402
+ msgid "It shows %s expired/past events."
6403
+ msgstr "Zobrazit pouze uplynulé události"
6404
+
6405
+ #: app/features/popup/shortcode.php:360
6406
+ #, fuzzy
6407
+ #| msgid "Shortcode"
6408
+ msgid "Your Shortcode"
6409
+ msgstr "Zkrácený kód"
6410
+
6411
+ #: app/features/popup/shortcode.php:363
6412
+ msgid "Copy"
6413
+ msgstr ""
6414
+
6415
+ #: app/features/popup/shortcode.php:366
6416
+ #, fuzzy
6417
+ #| msgid "Put %s shortcode into the page."
6418
+ msgid "Put this shortcode into your desired page."
6419
+ msgstr "Vložte %s na stránku zkrácené kódy."
6420
+
6421
+ #: app/features/popup/shortcode.php:372
6422
+ msgid "Prev"
6423
+ msgstr ""
6424
+
6425
+ #: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
6426
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6427
+ #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6428
+ msgid "Next"
6429
+ msgstr "Další"
6430
+
6431
+ #: app/features/popup/shortcode.php:374
6432
+ #, fuzzy
6433
+ #| msgid "Add New Shortcode"
6434
+ msgid "New Shortcode"
6435
+ msgstr "Přidat nový zkrácený kód"
6436
+
6437
  #: app/features/profile.php:74
6438
  #, php-format
6439
  msgid "Please %s/%s in order to see your bookings / profile."
6440
  msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
6441
 
6442
+ #: app/features/profile/profile.php:18 app/libraries/main.php:2143
6443
  msgid "Your booking already canceled!"
6444
  msgstr "Vaše rezervace již byla zrušena!"
6445
 
6447
  msgid "#"
6448
  msgstr "#"
6449
 
6450
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3153
6451
  msgid "Status"
6452
  msgstr "Stav"
6453
 
6454
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2258
6455
  msgid "Attendees"
6456
  msgstr "Účastníci"
6457
 
6480
  msgid "No bookings found!"
6481
  msgstr "Nebyly nalezeny žádné rezervace!"
6482
 
6483
+ #: app/features/search.php:93 app/libraries/main.php:5284
6484
  msgid "label"
6485
  msgstr "štítek"
6486
 
6487
+ #: app/features/search.php:128
6488
  msgid "Please enter at least 3 characters and try again"
6489
  msgstr "Zadejte prosím alespoň 3 znaky a zkuste to znovu"
6490
 
6505
  msgstr "Žádný výsledek vyhledávání."
6506
 
6507
  #: app/features/search_bar/search_result.php:11
6508
+ #: app/libraries/notifications.php:954 app/libraries/render.php:488
6509
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6510
  #: app/skins/single.php:160 app/skins/single.php:753
6511
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6617
  msgid "Upgrade"
6618
  msgstr "Upgrade"
6619
 
6620
+ #: app/libraries/factory.php:362
6621
  msgid "day"
6622
  msgstr "den"
6623
 
6624
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:132
6625
+ #: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
6626
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6627
  msgid "days"
6628
  msgstr "dny"
6629
 
6630
+ #: app/libraries/factory.php:364
6631
  msgid "hour"
6632
  msgstr "hodina"
6633
 
6634
+ #: app/libraries/factory.php:365 app/modules/countdown/details.php:139
6635
+ #: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
6636
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6637
  msgid "hours"
6638
  msgstr "hodiny"
6639
 
6640
+ #: app/libraries/factory.php:366
6641
  msgid "minute"
6642
  msgstr "minuta"
6643
 
6644
+ #: app/libraries/factory.php:367 app/modules/countdown/details.php:146
6645
+ #: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
6646
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6647
  msgid "minutes"
6648
  msgstr "minuty"
6649
 
6650
+ #: app/libraries/factory.php:368
6651
  msgid "second"
6652
  msgstr "vteřina"
6653
 
6654
+ #: app/libraries/factory.php:369 app/modules/countdown/details.php:153
6655
+ #: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
6656
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6657
  msgid "seconds"
6658
  msgstr "vteřiny"
6659
 
6660
+ #: app/libraries/factory.php:417
6661
  msgid "MEC Single Sidebar"
6662
  msgstr "MEC Postranní panel"
6663
 
6664
+ #: app/libraries/factory.php:418
6665
  msgid "Custom sidebar for single and modal page of MEC."
6666
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
6667
 
6669
  msgid "There is no excerpt because this is a protected post."
6670
  msgstr "Neexistuje výňatek, protože se jedná o chráněný příspěvek."
6671
 
6672
+ #: app/libraries/main.php:331 app/libraries/main.php:1759
6673
+ #: app/libraries/main.php:1784
6674
  msgid "Grid View"
6675
  msgstr "Zobrazení mřížky"
6676
 
6677
+ #: app/libraries/main.php:332 app/libraries/main.php:1760
6678
+ #: app/libraries/main.php:1785
6679
  msgid "Agenda View"
6680
  msgstr "Zobrazení agendy"
6681
 
6682
+ #: app/libraries/main.php:333 app/libraries/main.php:1751
6683
+ #: app/libraries/main.php:1776
6684
  msgid "Full Calendar"
6685
  msgstr "Plný kalendář"
6686
 
6687
+ #: app/libraries/main.php:335 app/libraries/main.php:1753
6688
+ #: app/libraries/main.php:1778
6689
  msgid "Calendar/Monthly View"
6690
  msgstr "Kalendář / zobrazení měsíce"
6691
 
6692
+ #: app/libraries/main.php:338 app/libraries/main.php:1756
6693
+ #: app/libraries/main.php:1781
6694
  msgid "Timetable View"
6695
  msgstr "Zobrazení rozvrhu"
6696
 
6697
+ #: app/libraries/main.php:339 app/libraries/main.php:1757
6698
+ #: app/libraries/main.php:1782
6699
  msgid "Masonry View"
6700
  msgstr "Zobrazení zdi"
6701
 
6702
+ #: app/libraries/main.php:340 app/libraries/main.php:1761
6703
+ #: app/libraries/main.php:1786
6704
  msgid "Map View"
6705
  msgstr "Zobrazení mapy"
6706
 
6737
  msgid "Tile View"
6738
  msgstr "Zobrazení rozvrhu"
6739
 
6740
+ #: app/libraries/main.php:385 app/libraries/main.php:5296
6741
  msgid "SU"
6742
  msgstr "NE"
6743
 
6744
+ #: app/libraries/main.php:386 app/libraries/main.php:5297
6745
  msgid "MO"
6746
  msgstr "PO"
6747
 
6748
+ #: app/libraries/main.php:387 app/libraries/main.php:5298
6749
  msgid "TU"
6750
  msgstr "ÚT"
6751
 
6752
+ #: app/libraries/main.php:388 app/libraries/main.php:5299
6753
  msgid "WE"
6754
  msgstr "ST"
6755
 
6756
+ #: app/libraries/main.php:389 app/libraries/main.php:5300
6757
  msgid "TH"
6758
  msgstr "ČT"
6759
 
6760
+ #: app/libraries/main.php:390 app/libraries/main.php:5301
6761
  msgid "FR"
6762
  msgstr "PÁ"
6763
 
6764
+ #: app/libraries/main.php:391 app/libraries/main.php:5302
6765
  msgid "SA"
6766
  msgstr "SO"
6767
 
6836
  msgid "Event at this location"
6837
  msgstr "Událost na tomto místě"
6838
 
6839
+ #: app/libraries/main.php:1529
6840
  msgid "Facebook"
6841
  msgstr "Facebook"
6842
 
6843
+ #: app/libraries/main.php:1530
6844
  msgid "Twitter"
6845
  msgstr "Twitter"
6846
 
6847
+ #: app/libraries/main.php:1531 app/libraries/main.php:1588
6848
  msgid "Linkedin"
6849
  msgstr "Linkedin"
6850
 
6851
+ #: app/libraries/main.php:1532 app/libraries/main.php:1624
6852
  msgid "VK"
6853
  msgstr "VK"
6854
 
6855
+ #: app/libraries/main.php:1533
6856
  msgid "Tumblr"
6857
  msgstr ""
6858
 
6859
+ #: app/libraries/main.php:1534
6860
  msgid "Pinterest"
6861
  msgstr ""
6862
 
6863
+ #: app/libraries/main.php:1535
6864
  msgid "Flipboard"
6865
  msgstr ""
6866
 
6867
+ #: app/libraries/main.php:1536
6868
  #, fuzzy
6869
  #| msgid "Tickets"
6870
  msgid "GetPocket"
6871
  msgstr "Vstupenky"
6872
 
6873
+ #: app/libraries/main.php:1537
6874
  msgid "Reddit"
6875
  msgstr ""
6876
 
6877
+ #: app/libraries/main.php:1538
6878
  msgid "WhatsApp"
6879
  msgstr ""
6880
 
6881
+ #: app/libraries/main.php:1539
6882
  msgid "Telegram"
6883
  msgstr ""
6884
 
6885
+ #: app/libraries/main.php:1558
6886
  msgid "Share on Facebook"
6887
  msgstr "Sdílet na Facebooku"
6888
 
6889
+ #: app/libraries/main.php:1573
6890
  msgid "Tweet"
6891
  msgstr "Tweet"
6892
 
6893
+ #: app/libraries/main.php:1639
6894
  #, fuzzy
6895
  #| msgid "Share on Facebook"
6896
  msgid "Share on Tumblr"
6897
  msgstr "Sdílet na Facebooku"
6898
 
6899
+ #: app/libraries/main.php:1655
6900
  msgid "Share on Pinterest"
6901
  msgstr ""
6902
 
6903
+ #: app/libraries/main.php:1671
6904
  #, fuzzy
6905
  #| msgid "Share on Facebook"
6906
  msgid "Share on Flipboard"
6907
  msgstr "Sdílet na Facebooku"
6908
 
6909
+ #: app/libraries/main.php:1689
6910
  #, fuzzy
6911
  #| msgid "Share on Facebook"
6912
  msgid "Share on GetPocket"
6913
  msgstr "Sdílet na Facebooku"
6914
 
6915
+ #: app/libraries/main.php:1705
6916
  #, fuzzy
6917
  #| msgid "Share on Facebook"
6918
  msgid "Share on Reddit"
6919
  msgstr "Sdílet na Facebooku"
6920
 
6921
+ #: app/libraries/main.php:1721
6922
  msgid "Share on Telegram"
6923
  msgstr ""
6924
 
6925
+ #: app/libraries/main.php:1739
6926
  msgid "Share on WhatsApp"
6927
  msgstr ""
6928
 
6929
+ #: app/libraries/main.php:1762
6930
  msgid "Custom Shortcode"
6931
  msgstr "Uživatelské zkrácené kódy"
6932
 
6933
+ #: app/libraries/main.php:2123
6934
  msgid "Your booking already verified!"
6935
  msgstr "Vaše rezervace již byla ověřena!"
6936
 
6937
+ #: app/libraries/main.php:2128
6938
  msgid "Your booking successfully verified."
6939
  msgstr "Vaše rezervace byla úspěšně ověřena."
6940
 
6941
+ #: app/libraries/main.php:2129
6942
  msgid "Your booking cannot verify!"
6943
  msgstr "Vaši rezervaci nelze ověřit!"
6944
 
6945
+ #: app/libraries/main.php:2148
6946
  msgid "Your booking successfully canceled."
6947
  msgstr "Vaše rezervace byla úspěšně zrušena."
6948
 
6949
+ #: app/libraries/main.php:2149
6950
  msgid "Your booking cannot be canceled."
6951
  msgstr "Vaši rezervaci nelze zrušit."
6952
 
6953
+ #: app/libraries/main.php:2153
6954
  msgid "You canceled the payment successfully."
6955
  msgstr "Platbu jste úspěšně zrušili."
6956
 
6957
+ #: app/libraries/main.php:2157
6958
  msgid "You returned from payment gateway successfully."
6959
  msgstr "Úspěšně jste se vrátili z platební brány."
6960
 
6961
+ #: app/libraries/main.php:2173
6962
  msgid "Cannot find the invoice!"
6963
  msgstr "Fakturu nelze najít!"
6964
 
6965
+ #: app/libraries/main.php:2173
6966
  msgid "Invoice is invalid."
6967
  msgstr "Faktura je neplatná."
6968
 
6969
+ #: app/libraries/main.php:2193
6970
  msgid ""
6971
  "Your booking still is not confirmed. You able download it after confirmation!"
6972
  msgstr ""
6973
  "Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
6974
 
6975
+ #: app/libraries/main.php:2193
6976
  msgid "Booking Not Confirmed."
6977
  msgstr "Rezervace nebyla potvrzena."
6978
 
6979
+ #: app/libraries/main.php:2199
6980
  msgid "Cannot find the booking!"
6981
  msgstr "Nemohu najít rezervaci!"
6982
 
6983
+ #: app/libraries/main.php:2199
6984
  msgid "Booking is invalid."
6985
  msgstr "Rezervace není platná."
6986
 
6987
+ #: app/libraries/main.php:2228
6988
  #, php-format
6989
  msgid "%s Invoice"
6990
  msgstr "%s Faktura"
6991
 
6992
+ #: app/libraries/main.php:2302
6993
  msgid "Billing"
6994
  msgstr "Fakturace"
6995
 
6996
+ #: app/libraries/main.php:2313
6997
  msgid "Total"
6998
  msgstr "Celkem"
6999
 
7000
+ #: app/libraries/main.php:2320
7001
  #, fuzzy
7002
  #| msgid "Payment Gateways"
7003
  msgid "Payment"
7004
  msgstr "Platební brány"
7005
 
7006
+ #: app/libraries/main.php:2324
7007
  #, fuzzy
7008
  #| msgid "Payment Gateways"
7009
  msgid "Gateway"
7010
  msgstr "Platební brány"
7011
 
7012
+ #: app/libraries/main.php:2332
7013
  #, fuzzy
7014
  #| msgid "Payment Gateways"
7015
  msgid "Payment Time"
7016
  msgstr "Platební brány"
7017
 
7018
+ #: app/libraries/main.php:2393
7019
  msgid "Request is not valid."
7020
  msgstr "Požadavek není platný."
7021
 
7022
+ #: app/libraries/main.php:2393
7023
  msgid "iCal export stopped!"
7024
  msgstr "iCal export byl zastaven!"
7025
 
7026
+ #: app/libraries/main.php:2737 app/libraries/main.php:2767
7027
+ #: app/libraries/main.php:2796 app/libraries/main.php:2826
7028
+ #: app/libraries/main.php:2855 app/libraries/main.php:2884
7029
+ #: app/libraries/main.php:2913 app/libraries/main.php:2942
7030
+ #: app/libraries/main.php:2971 app/libraries/main.php:2995
7031
+ #: app/libraries/main.php:3039 app/libraries/main.php:3083
7032
+ #: app/libraries/main.php:3130 app/libraries/main.php:3177
7033
  msgid "Sort"
7034
  msgstr "Seřadit"
7035
 
7036
+ #: app/libraries/main.php:2743 app/libraries/main.php:2773
7037
+ #: app/libraries/main.php:2802 app/libraries/main.php:2832
7038
+ #: app/libraries/main.php:2861 app/libraries/main.php:2890
7039
+ #: app/libraries/main.php:2919 app/libraries/main.php:2948
7040
+ #: app/libraries/main.php:3001 app/libraries/main.php:3045
7041
+ #: app/libraries/main.php:3089 app/libraries/main.php:3136
7042
  msgid "Required Field"
7043
  msgstr "Požadovaná pole"
7044
 
7045
+ #: app/libraries/main.php:2749 app/libraries/main.php:2779
7046
+ #: app/libraries/main.php:2808 app/libraries/main.php:2838
7047
+ #: app/libraries/main.php:2867 app/libraries/main.php:2896
7048
+ #: app/libraries/main.php:2925 app/libraries/main.php:2954
7049
+ #: app/libraries/main.php:3007 app/libraries/main.php:3051
7050
+ #: app/libraries/main.php:3095 app/libraries/main.php:3142
7051
  msgid "Insert a label for this field"
7052
  msgstr "Vložte štítek pro toto pole"
7053
 
7054
+ #: app/libraries/main.php:2977
7055
  msgid "HTML and shortcode are allowed."
7056
  msgstr "HTML a zkrácené kódy jsou povoleny."
7057
 
7058
+ #: app/libraries/main.php:3020 app/libraries/main.php:3064
7059
+ #: app/libraries/main.php:3108
7060
  msgid "Option"
7061
  msgstr "Možnost"
7062
 
7063
+ #: app/libraries/main.php:3142
7064
  #, php-format
7065
  msgid "Instead of %s, the page title with a link will be show."
7066
  msgstr "Místo%s se zobrazí název stránky s odkazem."
7067
 
7068
+ #: app/libraries/main.php:3144
7069
  msgid "Agreement Page"
7070
  msgstr "Stránka smlouvy"
7071
 
7072
+ #: app/libraries/main.php:3155
7073
  msgid "Checked by default"
7074
  msgstr "Ve výchozím nastavení zaškrtnuto"
7075
 
7076
+ #: app/libraries/main.php:3156
7077
  msgid "Unchecked by default"
7078
  msgstr "Ve výchozím nastavení není zaškrtnuto"
7079
 
7080
+ #: app/libraries/main.php:3179
7081
  msgid "Insert a label for this option"
7082
  msgstr "Vložte štítek pro tuto možnost"
7083
 
7084
+ #: app/libraries/main.php:3194
7085
  msgid "Free"
7086
  msgstr "Zdarma"
7087
 
7088
+ #: app/libraries/main.php:3800 app/libraries/main.php:5546
7089
  msgid "M.E. Calender"
7090
  msgstr "M.E. Kalendář"
7091
 
7092
+ #: app/libraries/main.php:3955
7093
  #, php-format
7094
  msgid "Copy of %s"
7095
  msgstr "Kopie %s"
7096
 
7097
+ #: app/libraries/main.php:4673
7098
  msgid "Booked an event."
7099
  msgstr "Událost byla rezervována."
7100
 
7101
+ #: app/libraries/main.php:4714
7102
  #, php-format
7103
  msgid "%s booked %s event."
7104
  msgstr "%s zarezervoval %s událost."
7105
 
7106
+ #: app/libraries/main.php:5279
7107
  msgid "Taxonomies"
7108
  msgstr "Taxonomie"
7109
 
7110
  # Mrknout na kontext
7111
+ #: app/libraries/main.php:5281
7112
  msgid "Category Plural Label"
7113
  msgstr "Štítek množné kategorie"
7114
 
7115
  # Mrknout na kontext
7116
+ #: app/libraries/main.php:5282
7117
  msgid "Category Singular Label"
7118
  msgstr "Štítek jednotné kategorie"
7119
 
7120
+ #: app/libraries/main.php:5283
7121
  msgid "Label Plural Label"
7122
  msgstr "Štítek množného štítku"
7123
 
7124
+ #: app/libraries/main.php:5284
7125
  msgid "Label Singular Label"
7126
  msgstr "Štítek jednotného štítku"
7127
 
7128
+ #: app/libraries/main.php:5285
7129
  msgid "Location Plural Label"
7130
  msgstr "Štítek množného umístění"
7131
 
7132
+ #: app/libraries/main.php:5286
7133
  msgid "Location Singular Label"
7134
  msgstr "Štítek jednotného umístění"
7135
 
7136
+ #: app/libraries/main.php:5287
7137
  msgid "Organizer Plural Label"
7138
  msgstr "Štítek množného organizátora"
7139
 
7140
+ #: app/libraries/main.php:5288
7141
  msgid "Organizer Singular Label"
7142
  msgstr "Štítek jednotného organizátora"
7143
 
7144
+ #: app/libraries/main.php:5289
7145
  msgid "Speaker Plural Label"
7146
  msgstr "Štítek množného řečníka"
7147
 
7148
+ #: app/libraries/main.php:5290
7149
  msgid "Speaker Singular Label"
7150
  msgstr "Štítek jednotného řečníka"
7151
 
7152
+ #: app/libraries/main.php:5296
7153
  msgid "Sunday abbreviation"
7154
  msgstr "Neděle zkratka"
7155
 
7156
+ #: app/libraries/main.php:5297
7157
  msgid "Monday abbreviation"
7158
  msgstr "Pondělí zkratka"
7159
 
7160
+ #: app/libraries/main.php:5298
7161
  msgid "Tuesday abbreviation"
7162
  msgstr "Úterý zkratka"
7163
 
7164
+ #: app/libraries/main.php:5299
7165
  msgid "Wednesday abbreviation"
7166
  msgstr "Středa zkratka"
7167
 
7168
+ #: app/libraries/main.php:5300
7169
  msgid "Thursday abbreviation"
7170
  msgstr "Čtvrtek zkratka"
7171
 
7172
+ #: app/libraries/main.php:5301
7173
  msgid "Friday abbreviation"
7174
  msgstr "Pátek zkratka"
7175
 
7176
+ #: app/libraries/main.php:5302
7177
  msgid "Saturday abbreviation"
7178
  msgstr "Sobota zkratka"
7179
 
7180
+ #: app/libraries/main.php:5306
7181
  msgid "Others"
7182
  msgstr "Další"
7183
 
7184
+ #: app/libraries/main.php:5308
7185
  msgid "Booking Success Message"
7186
  msgstr "Zpráva o úspěchu rezervace"
7187
 
7188
+ #: app/libraries/main.php:5308
7189
  msgid ""
7190
  "Thanks for your booking. Your tickets booked, booking verification might be "
7191
  "needed, please check your email."
7193
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
7194
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
7195
 
7196
+ #: app/libraries/main.php:5309 app/widgets/single.php:131
7197
  msgid "Register Button"
7198
  msgstr "Registrační tlačítko"
7199
 
7200
+ #: app/libraries/main.php:5309 app/skins/available_spot/tpl.php:223
7201
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7202
+ #: app/skins/grid/render.php:124 app/skins/grid/render.php:171
7203
+ #: app/skins/grid/render.php:215 app/skins/grid/render.php:244
7204
+ #: app/skins/list/render.php:109 app/skins/list/render.php:195
7205
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
7206
  #: app/skins/single.php:777 app/skins/single/default.php:255
7207
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7214
  msgid "REGISTER"
7215
  msgstr "REGISTROVAT"
7216
 
7217
+ #: app/libraries/main.php:5310
7218
  msgid "View Detail Button"
7219
  msgstr "Tlačítko Zobrazit detail"
7220
 
7221
+ #: app/libraries/main.php:5310 app/skins/carousel/render.php:160
7222
+ #: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
7223
+ #: app/skins/grid/render.php:171 app/skins/grid/render.php:215
7224
+ #: app/skins/grid/render.php:244 app/skins/list/render.php:109
7225
+ #: app/skins/list/render.php:195 app/skins/masonry/render.php:188
7226
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
7227
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
7228
  #: app/skins/slider/render.php:320
7229
  msgid "View Detail"
7230
  msgstr "Zobrazit detail"
7231
 
7232
+ #: app/libraries/main.php:5311
7233
  msgid "Event Detail Button"
7234
  msgstr "Tlačítko Detail události"
7235
 
7236
+ #: app/libraries/main.php:5311 app/skins/countdown/tpl.php:244
7237
  msgid "Event Detail"
7238
  msgstr "Zobrazit událost"
7239
 
7240
+ #: app/libraries/main.php:5313
7241
  msgid "More Info Link"
7242
  msgstr "Odkaz na více informací"
7243
 
7244
+ #: app/libraries/main.php:5316
7245
  msgid "Ticket (Singular)"
7246
  msgstr "Vstupenka (Jednotné)"
7247
 
7248
+ #: app/libraries/main.php:5317
7249
  msgid "Tickets (Plural)"
7250
  msgstr "Vstupenky (Množné)"
7251
 
7252
+ #: app/libraries/main.php:5403
7253
  msgid "EventON"
7254
  msgstr "EventON"
7255
 
7256
+ #: app/libraries/main.php:5404
7257
  msgid "The Events Calendar"
7258
  msgstr "The Events Calendar"
7259
 
7260
+ #: app/libraries/main.php:5405
7261
  msgid "Events Schedule WP Plugin"
7262
  msgstr "Events Schedule WP Plugin"
7263
 
7264
+ #: app/libraries/main.php:5406
7265
  msgid "Calendarize It"
7266
  msgstr "Calendarize It"
7267
 
7268
+ #: app/libraries/main.php:5407
7269
  #, fuzzy
7270
  #| msgid "Event Speakers"
7271
  msgid "Event Espresso"
7272
  msgstr "Řečník události"
7273
 
7274
+ #: app/libraries/main.php:5408
7275
  #, fuzzy
7276
  #| msgid "Event Repeating (Recurring events)"
7277
  msgid "Events Manager (Recurring)"
7278
  msgstr "Opakování události (opakující se události)"
7279
 
7280
+ #: app/libraries/main.php:5409
7281
  #, fuzzy
7282
  #| msgid "Modern Events Calendar (Lite)"
7283
  msgid "Events Manager (Single)"
7284
  msgstr "Modern Events Calendar (Lite)"
7285
 
7286
+ #: app/libraries/main.php:5483 app/libraries/main.php:5503
7287
  msgid "Confirmed"
7288
  msgstr "Potvrzeno"
7289
 
7290
+ #: app/libraries/main.php:5484 app/libraries/main.php:5511
7291
  msgid "Rejected"
7292
  msgstr "Odmítnuto"
7293
 
7294
+ #: app/libraries/main.php:5485 app/libraries/main.php:5507
7295
  msgid "Pending"
7296
  msgstr "Nevyřízený"
7297
 
7298
+ #: app/libraries/main.php:5533
7299
  msgid "Waiting"
7300
  msgstr "Čekající"
7301
 
7302
+ #: app/libraries/main.php:5738 app/libraries/render.php:80
7303
  #: app/libraries/render.php:418
7304
  msgid "Skin controller does not exist."
7305
  msgstr "Ovladač vzhledu neexistuje."
7306
 
7307
+ #: app/libraries/main.php:5852
7308
  msgid "Sold Out"
7309
  msgstr "Vyprodáno"
7310
 
7311
+ #: app/libraries/main.php:5860
7312
  #, fuzzy
7313
  #| msgid "Ticket"
7314
  msgid "Last Few Tickets"
7322
  msgid "Your booking is received."
7323
  msgstr "Vaše rezervace je přijata."
7324
 
7325
+ #: app/libraries/notifications.php:275
7326
  msgid "Your booking is confirmed."
7327
  msgstr "Vaše rezervace je potvrzena."
7328
 
7329
+ #: app/libraries/notifications.php:442
7330
  msgid "booking canceled."
7331
  msgstr "rezervace zrušena."
7332
 
7333
+ #: app/libraries/notifications.php:517
7334
  msgid "A new booking is received."
7335
  msgstr "Je přijata nová rezervace."
7336
 
7337
+ #: app/libraries/notifications.php:741
7338
  msgid "A new event is added."
7339
  msgstr "Je přidána se nová událost."
7340
 
7341
+ #: app/libraries/notifications.php:810
7342
  msgid "Your event is published."
7343
  msgstr "Vaše událost je zveřejněna."
7344
 
7345
+ #: app/libraries/notifications.php:1046 app/libraries/notifications.php:1057
7346
+ #: app/libraries/notifications.php:1059
7347
  msgid "to"
7348
  msgstr "do"
7349
 
7350
+ #: app/libraries/notifications.php:1074 app/modules/export/details.php:46
7351
  msgid "+ Add to Google Calendar"
7352
  msgstr "+ Přidat do Google kalendáře"
7353
 
7354
+ #: app/libraries/notifications.php:1075 app/modules/export/details.php:47
7355
  msgid "+ iCal export"
7356
  msgstr "+ iCal export"
7357
 
7358
+ #: app/libraries/notifications.php:1138
7359
  msgid "Yes"
7360
  msgstr "Ano"
7361
 
7362
+ #: app/libraries/notifications.php:1138
7363
  msgid "No"
7364
  msgstr "Ne"
7365
 
7414
  msgid "Fill other attendees information like the first form."
7415
  msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
7416
 
 
 
 
 
 
 
7417
  #: app/modules/booking/steps/message.php:7
7418
  msgid "Thanks for your booking."
7419
  msgstr "Děkujeme za vaši rezervaci."
7552
  msgid "Load More"
7553
  msgstr "Načíst více"
7554
 
7555
+ #: app/skins/available_spot/tpl.php:158
7556
  msgid "Available Spot(s):"
7557
  msgstr "Dostupné spoty:"
7558
 
7559
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7560
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7561
+ #: app/skins/list/render.php:129
7562
  msgid "EVENT DETAIL"
7563
  msgstr "DETAIL UDÁLOSTI"
7564
 
7657
  msgid "Show events based on created shortcodes."
7658
  msgstr "Zobrazit události na základě vytvořených zkrácených kódů."
7659
 
7660
+ #: app/widgets/MEC.php:86
7661
  msgid "Title:"
7662
  msgstr "Název:"
7663
 
7664
+ #: app/widgets/MEC.php:93
7665
  msgid "Shortcode:"
7666
  msgstr "Zkrácený kód:"
7667
 
7668
+ #: app/widgets/MEC.php:103
7669
  msgid "Enable No Event Block Display: "
7670
  msgstr "Povolit zobrazení bez blokování událostí: "
7671
 
7672
+ #: app/widgets/MEC.php:107
7673
  msgid "Create some calendars first."
7674
  msgstr "Nejdříve vytvořte nějaké kalendáře."
7675
 
7733
  msgid "http://webnus.net"
7734
  msgstr "http://webnus.net"
7735
 
 
 
 
 
 
7736
  #, fuzzy
7737
  #~| msgid "Booking module doesn't work"
7738
  #~ msgid "Booking module is not enabled!"
8097
  #~ msgid "Organizer Payment Credentials"
8098
  #~ msgstr "Platba organizátora"
8099
 
8100
+ #, fuzzy
8101
+ #~| msgid "Enable booking reminder notification"
8102
+ #~ msgid "Booking reminder notification is not enabled!"
8103
+ #~ msgstr "Povolit upozornění na připomenutí rezervace"
8104
+
8105
  #, fuzzy
8106
  #~| msgid "%s Email"
8107
  #~ msgid "Mass Email"
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: 2020-01-29 15:47+0330\n"
6
- "PO-Revision-Date: 2020-01-29 15:48+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -27,8 +27,8 @@ msgstr "Moderner Event Kalender "
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:438
31
- #: app/features/mec.php:469 app/features/mec.php:499
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
@@ -68,13 +68,14 @@ msgid "Select Type"
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:807
71
- #: app/features/mec/settings.php:680
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
75
- #: app/features/contextual.php:55 app/features/mec.php:414
76
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
77
- #: app/features/mec/support.php:20 app/libraries/main.php:594
 
78
  msgid "Settings"
79
  msgstr "Einstellungen"
80
 
@@ -198,7 +199,7 @@ msgstr ""
198
  msgid "General Options"
199
  msgstr "Allgemeine Einstellungen"
200
 
201
- #: app/features/contextual.php:139 app/features/mec/settings.php:429
202
  #: app/libraries/main.php:533
203
  msgid "Slugs/Permalinks"
204
  msgstr "Slug/Permalinks"
@@ -207,7 +208,7 @@ msgstr "Slug/Permalinks"
207
  msgid "Event Details/Single Event Page"
208
  msgstr "Event Details / Einzelveranstaltungsseite"
209
 
210
- #: app/features/contextual.php:166 app/features/mec/settings.php:461
211
  #: app/libraries/main.php:534
212
  msgid "Currency Options"
213
  msgstr "Währungseinstellungen"
@@ -217,7 +218,7 @@ msgstr "Währungseinstellungen"
217
  msgid "Google Maps Options"
218
  msgstr "Google Maps Einstellungen"
219
 
220
- #: app/features/contextual.php:244 app/features/mec/settings.php:518
221
  #: app/libraries/main.php:535
222
  msgid "Google Recaptcha Options"
223
  msgstr "Google Recaptcha Einstellungen"
@@ -236,7 +237,7 @@ msgstr "Soziale Netzwerke"
236
  msgid "Next Event Module"
237
  msgstr "Nächstes Veranstaltung Modul"
238
 
239
- #: app/features/contextual.php:286 app/features/mec/settings.php:554
240
  #: app/libraries/main.php:536
241
  msgid "Frontend Event Submission"
242
  msgstr "Erstellung von Veranstaltungen im Frontend"
@@ -263,7 +264,7 @@ msgstr "Gutscheine"
263
  msgid "BuddyPress Integration"
264
  msgstr "Buddy Press Integration"
265
 
266
- #: app/features/contextual.php:334 app/features/mec/settings.php:847
267
  #: app/libraries/main.php:539
268
  msgid "Mailchimp Integration"
269
  msgstr "Mailchimp Integration"
@@ -280,16 +281,16 @@ msgid "Events"
280
  msgstr "Veranstaltungen"
281
 
282
  #: app/features/events.php:158 app/features/fes.php:223
283
- #: app/features/mec/meta_boxes/display_options.php:1046
284
- #: app/features/mec/meta_boxes/display_options.php:1102
285
- #: app/features/mec/meta_boxes/display_options.php:1137
286
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
287
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
288
  #: app/skins/yearly_view/tpl.php:69
289
  msgid "Event"
290
  msgstr "Veranstaltung"
291
 
292
- #: app/features/events.php:159 app/features/mec.php:400
293
  msgid "Add Event"
294
  msgstr "Veranstaltung hinzufügen"
295
 
@@ -319,7 +320,7 @@ msgid "No events found in Trash!"
319
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
320
 
321
  #: app/features/events.php:182 app/features/events.php:3320
322
- #: app/features/mec/meta_boxes/display_options.php:957
323
  #: app/features/mec/meta_boxes/search_form.php:31
324
  #: app/features/mec/meta_boxes/search_form.php:93
325
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -331,8 +332,8 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
331
  #: app/features/mec/meta_boxes/search_form.php:514
332
  #: app/features/mec/meta_boxes/search_form.php:575
333
  #: app/features/mec/meta_boxes/search_form.php:672
334
- #: app/features/mec/settings.php:800 app/features/mec/single.php:204
335
- #: app/features/search.php:67 app/libraries/main.php:5281
336
  #: app/libraries/skins.php:858 app/skins/single.php:566
337
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
338
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -341,8 +342,8 @@ msgid "Category"
341
  msgstr "Kategorie"
342
 
343
  #: app/features/events.php:183 app/features/events.php:3275
344
- #: app/features/fes/form.php:757 app/features/mec.php:402
345
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
346
  msgid "Categories"
347
  msgstr "Kategorien"
348
 
@@ -431,7 +432,7 @@ msgid "Event Repeating"
431
  msgstr "Wiederholende Veranstaltung"
432
 
433
  #: app/features/events.php:333 app/features/events.php:1286
434
- #: app/features/mec/settings.php:710 app/skins/single.php:947
435
  msgid "Hourly Schedule"
436
  msgstr "Stundenplan"
437
 
@@ -450,7 +451,7 @@ msgstr "Link"
450
  #: app/features/events.php:336 app/features/events.php:3322
451
  #: app/features/events.php:3513 app/features/events.php:3555
452
  #: app/features/ix.php:3510 app/features/ix.php:3551
453
- #: app/features/mec/meta_boxes/display_options.php:960
454
  #: app/features/mec/meta_boxes/search_form.php:45
455
  #: app/features/mec/meta_boxes/search_form.php:107
456
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -462,11 +463,11 @@ msgstr "Link"
462
  #: app/features/mec/meta_boxes/search_form.php:528
463
  #: app/features/mec/meta_boxes/search_form.php:589
464
  #: app/features/mec/meta_boxes/search_form.php:686
465
- #: app/features/mec/settings.php:812 app/features/mec/single.php:208
466
  #: app/features/organizers.php:58 app/features/organizers.php:204
467
  #: app/features/organizers.php:260 app/features/organizers.php:262
468
- #: app/features/organizers.php:271 app/features/search.php:75
469
- #: app/libraries/main.php:5287 app/libraries/skins.php:910
470
  #: app/skins/single.php:812 app/skins/single/default.php:217
471
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
472
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -474,7 +475,7 @@ msgid "Organizer"
474
  msgstr "Veranstalter"
475
 
476
  #: app/features/events.php:337 app/features/events.php:1172
477
- #: app/features/fes/form.php:730 app/libraries/main.php:5314
478
  #: app/skins/single.php:589 app/skins/single/default.php:126
479
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
480
  #: app/skins/single/modern.php:208
@@ -493,7 +494,7 @@ msgstr "Gäste Daten"
493
  #: app/features/events.php:3802 app/features/fes.php:223
494
  #: app/features/fes/form.php:689 app/features/labels.php:178
495
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
496
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
497
  #: app/modules/booking/steps/form.php:37
498
  msgid "Name"
499
  msgstr "Name"
@@ -504,9 +505,9 @@ msgstr "Name"
504
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
505
  #: app/features/organizers.php:111 app/features/organizers.php:152
506
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
507
- #: app/features/speakers.php:196 app/libraries/main.php:1539
508
- #: app/libraries/main.php:1608 app/libraries/main.php:2826
509
- #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
510
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
511
  #: app/skins/single.php:884 app/skins/single/default.php:234
512
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
@@ -524,21 +525,21 @@ msgstr "Datum und Uhrzeit"
524
  #: app/features/fes/form.php:251 app/features/ix.php:3510
525
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
526
  #: app/features/mec/dashboard.php:401
527
- #: app/features/mec/meta_boxes/display_options.php:48
528
- #: app/features/mec/meta_boxes/display_options.php:228
529
- #: app/features/mec/meta_boxes/display_options.php:406
530
- #: app/features/mec/meta_boxes/display_options.php:474
531
- #: app/features/mec/meta_boxes/display_options.php:597
532
- #: app/features/mec/meta_boxes/display_options.php:651
533
- #: app/features/mec/meta_boxes/display_options.php:698
534
- #: app/features/mec/meta_boxes/display_options.php:731
535
- #: app/features/mec/meta_boxes/display_options.php:766
536
- #: app/features/mec/meta_boxes/display_options.php:813
537
- #: app/features/mec/meta_boxes/display_options.php:912
538
- #: app/features/mec/meta_boxes/display_options.php:1160
539
- #: app/features/mec/meta_boxes/display_options.php:1248
540
- #: app/features/mec/meta_boxes/display_options.php:1340
541
- #: app/features/mec/meta_boxes/display_options.php:1407
542
  msgid "Start Date"
543
  msgstr "Start Datum"
544
 
@@ -609,38 +610,38 @@ msgstr ""
609
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
610
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
611
  #: app/features/mec/dashboard.php:71
612
- #: app/features/mec/meta_boxes/display_options.php:79
613
- #: app/features/mec/meta_boxes/display_options.php:92
614
- #: app/features/mec/meta_boxes/display_options.php:105
615
- #: app/features/mec/meta_boxes/display_options.php:116
616
- #: app/features/mec/meta_boxes/display_options.php:128
617
- #: app/features/mec/meta_boxes/display_options.php:259
618
- #: app/features/mec/meta_boxes/display_options.php:271
619
- #: app/features/mec/meta_boxes/display_options.php:283
620
- #: app/features/mec/meta_boxes/display_options.php:296
621
- #: app/features/mec/meta_boxes/display_options.php:307
622
- #: app/features/mec/meta_boxes/display_options.php:320
623
- #: app/features/mec/meta_boxes/display_options.php:331
624
- #: app/features/mec/meta_boxes/display_options.php:438
625
- #: app/features/mec/meta_boxes/display_options.php:614
626
- #: app/features/mec/meta_boxes/display_options.php:944
627
- #: app/features/mec/meta_boxes/display_options.php:1017
628
- #: app/features/mec/meta_boxes/display_options.php:1029
629
- #: app/features/mec/meta_boxes/display_options.php:1040
630
- #: app/features/mec/meta_boxes/display_options.php:1072
631
- #: app/features/mec/meta_boxes/display_options.php:1083
632
- #: app/features/mec/meta_boxes/display_options.php:1096
633
- #: app/features/mec/meta_boxes/display_options.php:1131
634
- #: app/features/mec/meta_boxes/display_options.php:1180
635
- #: app/features/mec/meta_boxes/display_options.php:1191
636
- #: app/features/mec/meta_boxes/display_options.php:1202
637
- #: app/features/mec/meta_boxes/display_options.php:1268
638
- #: app/features/mec/meta_boxes/display_options.php:1281
639
- #: app/features/mec/meta_boxes/display_options.php:1294
640
- #: app/features/mec/meta_boxes/display_options.php:1307
641
- #: app/features/mec/meta_boxes/display_options.php:1320
642
- #: app/features/mec/meta_boxes/display_options.php:1371
643
- #: app/features/mec/meta_boxes/display_options.php:1424
644
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
645
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
646
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
@@ -654,14 +655,14 @@ msgstr ""
654
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
655
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
656
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
657
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
658
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
659
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:418
660
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:451
661
- #: app/features/mec/settings.php:479 app/features/mec/settings.php:566
662
- #: app/features/mec/settings.php:739 app/features/mec/settings.php:755
663
- #: app/features/mec/settings.php:862 app/features/mec/settings.php:875
664
- #: app/features/mec/settings.php:891 app/features/mec/single.php:42
665
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
666
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
667
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
@@ -853,7 +854,7 @@ msgstr "Nächstes Auftreten von anderen Events."
853
  #: app/features/events.php:1168 app/features/events.php:3513
854
  #: app/features/events.php:3555 app/features/fes/form.php:727
855
  #: app/features/ix.php:3510 app/features/ix.php:3551
856
- #: app/features/mec/settings.php:656 app/libraries/main.php:5313
857
  #: app/widgets/single.php:103
858
  msgid "Event Cost"
859
  msgstr ""
@@ -871,8 +872,8 @@ msgstr "Ausschluss bestimmter Tage"
871
 
872
  #: app/features/events.php:1204 app/features/events.php:2541
873
  #: app/features/fes.php:223 app/features/mec/booking.php:491
874
- #: app/features/profile/profile.php:53 app/libraries/main.php:2242
875
- #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
876
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
877
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
878
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
@@ -924,13 +925,13 @@ msgstr "Titel"
924
  #: app/features/events.php:2357 app/features/events.php:2399
925
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
926
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
927
- #: app/libraries/main.php:2745 app/libraries/main.php:2775
928
- #: app/libraries/main.php:2804 app/libraries/main.php:2834
929
- #: app/libraries/main.php:2863 app/libraries/main.php:2892
930
- #: app/libraries/main.php:2921 app/libraries/main.php:2950
931
- #: app/libraries/main.php:2972 app/libraries/main.php:3003
932
- #: app/libraries/main.php:3047 app/libraries/main.php:3091
933
- #: app/libraries/main.php:3138 app/libraries/main.php:3177
934
  msgid "Remove"
935
  msgstr "Entfernen"
936
 
@@ -956,9 +957,9 @@ msgstr "Beschreibung"
956
 
957
  #: app/features/events.php:1351 app/features/events.php:1384
958
  #: app/features/events.php:1445 app/features/fes/form.php:851
959
- #: app/features/mec.php:410 app/features/mec/modules.php:52
960
- #: app/features/mec/settings.php:704 app/features/speakers.php:62
961
- #: app/libraries/main.php:565 app/libraries/main.php:5288
962
  #: app/modules/speakers/details.php:18
963
  msgid "Speakers"
964
  msgstr ""
@@ -970,12 +971,12 @@ msgid "New Day"
970
  msgstr "Wochentage"
971
 
972
  #: app/features/events.php:1476 app/features/fes/form.php:704
973
- #: app/features/mec/settings.php:650
974
  msgid "Event Links"
975
  msgstr "Veranstaltungslinks"
976
 
977
  #: app/features/events.php:1479 app/features/events.php:1485
978
- #: app/features/fes/form.php:706 app/libraries/main.php:5311
979
  msgid "Event Link"
980
  msgstr "Veranstaltungslink"
981
 
@@ -1003,7 +1004,7 @@ msgid "URL Shortener"
1003
  msgstr ""
1004
 
1005
  #: app/features/events.php:1495 app/features/events.php:1508
1006
- #: app/features/fes/form.php:711 app/libraries/main.php:5312
1007
  #: app/skins/single.php:673 app/skins/single/default.php:140
1008
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1009
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1041,7 +1042,7 @@ msgstr "Gesamt Verfügbare Plätze"
1041
  #: app/features/events.php:1596 app/features/events.php:1849
1042
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1043
  #: app/modules/booking/steps/tickets.php:40
1044
- #: app/skins/available_spot/tpl.php:160
1045
  msgid "Unlimited"
1046
  msgstr "Unlimitiert"
1047
 
@@ -1077,7 +1078,7 @@ msgid "12"
1077
  msgstr ""
1078
 
1079
  #: app/features/events.php:1653 app/libraries/book.php:60
1080
- #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1081
  msgid "Tickets"
1082
  msgstr "Tickets"
1083
 
@@ -1181,7 +1182,7 @@ msgstr "Preisschild"
1181
 
1182
  #: app/features/events.php:1909 app/features/events.php:1935
1183
  #: app/features/events.php:2113 app/features/labels.php:60
1184
- #: app/features/mec/meta_boxes/display_options.php:958
1185
  #: app/features/mec/meta_boxes/search_form.php:66
1186
  #: app/features/mec/meta_boxes/search_form.php:128
1187
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1193,7 +1194,7 @@ msgstr "Preisschild"
1193
  #: app/features/mec/meta_boxes/search_form.php:549
1194
  #: app/features/mec/meta_boxes/search_form.php:610
1195
  #: app/features/mec/meta_boxes/search_form.php:707
1196
- #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1197
  #: app/libraries/skins.php:988
1198
  msgid "Label"
1199
  msgstr "Label"
@@ -1238,7 +1239,7 @@ msgstr "Betrag (pro Ticket)"
1238
  msgid "Amount (Per Booking)"
1239
  msgstr "Betrag (pro Buchung)"
1240
 
1241
- #: app/features/events.php:2283 app/features/mec/settings.php:728
1242
  msgid "Ticket Variations / Options"
1243
  msgstr ""
1244
 
@@ -1264,48 +1265,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1267
- #: app/libraries/main.php:2767
1268
  #, fuzzy
1269
  #| msgid "Name"
1270
  msgid "MEC Name"
1271
  msgstr "Name"
1272
 
1273
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1274
- #: app/libraries/main.php:2796
1275
  #, fuzzy
1276
  #| msgid "Email"
1277
  msgid "MEC Email"
1278
  msgstr "Email"
1279
 
1280
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1281
- #: app/libraries/main.php:2737
1282
  msgid "Text"
1283
  msgstr "Text"
1284
 
1285
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1286
  #: app/features/organizers.php:103 app/features/organizers.php:148
1287
  #: app/features/speakers.php:119 app/features/speakers.php:192
1288
- #: app/features/speakers.php:271 app/libraries/main.php:2913
1289
  msgid "Tel"
1290
  msgstr "Tel"
1291
 
1292
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1293
- #: app/libraries/main.php:2855
1294
  msgid "File"
1295
  msgstr ""
1296
 
1297
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1298
- #: app/libraries/main.php:2942
1299
  msgid "Textarea"
1300
  msgstr "Textbereich"
1301
 
1302
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1303
- #: app/libraries/main.php:2995
1304
  msgid "Checkboxes"
1305
  msgstr "Checkboxes"
1306
 
1307
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1308
- #: app/libraries/main.php:3039
1309
  msgid "Radio Buttons"
1310
  msgstr "Radio Buttons"
1311
 
@@ -1385,17 +1386,17 @@ msgstr "Radio Buttons"
1385
  #: app/features/mec/meta_boxes/search_form.php:696
1386
  #: app/features/mec/meta_boxes/search_form.php:703
1387
  #: app/features/mec/meta_boxes/search_form.php:710
1388
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1389
  msgid "Dropdown"
1390
  msgstr "Dropdown"
1391
 
1392
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1393
- #: app/libraries/main.php:3130
1394
  msgid "Agreement"
1395
  msgstr "Zustimmung"
1396
 
1397
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1398
- #: app/libraries/main.php:2971
1399
  msgid "Paragraph"
1400
  msgstr "Absatz"
1401
 
@@ -1428,7 +1429,7 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
1428
  #: app/features/ix.php:3551 app/features/locations.php:58
1429
  #: app/features/locations.php:230 app/features/locations.php:287
1430
  #: app/features/locations.php:289 app/features/locations.php:298
1431
- #: app/features/mec/meta_boxes/display_options.php:959
1432
  #: app/features/mec/meta_boxes/search_form.php:38
1433
  #: app/features/mec/meta_boxes/search_form.php:100
1434
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1440,9 +1441,9 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
1440
  #: app/features/mec/meta_boxes/search_form.php:521
1441
  #: app/features/mec/meta_boxes/search_form.php:582
1442
  #: app/features/mec/meta_boxes/search_form.php:679
1443
- #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1444
- #: app/features/search.php:71 app/libraries/main.php:2236
1445
- #: app/libraries/main.php:5285 app/libraries/skins.php:884
1446
  #: app/skins/single.php:493 app/skins/single.php:924
1447
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1448
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1506,8 +1507,8 @@ msgid "%s Email"
1506
  msgstr "%s Email"
1507
 
1508
  #: app/features/events.php:3808 app/features/fes.php:223
1509
- #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1510
- #: app/libraries/main.php:5315
1511
  msgid "Ticket"
1512
  msgstr "Ticket"
1513
 
@@ -1560,7 +1561,7 @@ msgstr "Bitte %s/%s um Veranstaltungen managen zu können."
1560
  msgid "The event removed!"
1561
  msgstr "Die Veranstaltung wurde entfernt."
1562
 
1563
- #: app/features/fes.php:223 app/libraries/main.php:2248
1564
  msgid "Transaction ID"
1565
  msgstr "Transaktions-ID"
1566
 
@@ -1611,43 +1612,43 @@ msgid "Go back to events list"
1611
  msgstr "Zurück zur Liste der Veranstaltungen"
1612
 
1613
  #: app/features/fes/form.php:366
1614
- #: app/features/mec/meta_boxes/display_options.php:843
1615
  #: app/libraries/main.php:410
1616
  msgid "Monday"
1617
  msgstr "Montag"
1618
 
1619
  #: app/features/fes/form.php:367
1620
- #: app/features/mec/meta_boxes/display_options.php:844
1621
  #: app/libraries/main.php:410
1622
  msgid "Tuesday"
1623
  msgstr "Dienstag"
1624
 
1625
  #: app/features/fes/form.php:368
1626
- #: app/features/mec/meta_boxes/display_options.php:845
1627
  #: app/libraries/main.php:410
1628
  msgid "Wednesday"
1629
  msgstr "Mittwoch"
1630
 
1631
  #: app/features/fes/form.php:369
1632
- #: app/features/mec/meta_boxes/display_options.php:846
1633
  #: app/libraries/main.php:410
1634
  msgid "Thursday"
1635
  msgstr "Donnerstag"
1636
 
1637
  #: app/features/fes/form.php:370
1638
- #: app/features/mec/meta_boxes/display_options.php:847
1639
  #: app/libraries/main.php:410
1640
  msgid "Friday"
1641
  msgstr "Freitag"
1642
 
1643
  #: app/features/fes/form.php:371
1644
- #: app/features/mec/meta_boxes/display_options.php:848
1645
  #: app/libraries/main.php:410
1646
  msgid "Saturday"
1647
  msgstr "Samstag"
1648
 
1649
  #: app/features/fes/form.php:372
1650
- #: app/features/mec/meta_boxes/display_options.php:842
1651
  #: app/libraries/main.php:410
1652
  msgid "Sunday"
1653
  msgstr "Sonntag"
@@ -1681,7 +1682,7 @@ msgstr ""
1681
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1682
  "einschließlich http(s)://"
1683
 
1684
- #: app/features/fes/form.php:744 app/features/mec/settings.php:662
1685
  msgid "Featured Image"
1686
  msgstr "Ausgewähltes Bild"
1687
 
@@ -1690,15 +1691,15 @@ msgid "Remove Image"
1690
  msgstr "Bild entfernen"
1691
 
1692
  #: app/features/fes/form.php:783 app/features/labels.php:61
1693
- #: app/features/labels.php:221 app/features/mec.php:403
1694
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1695
  #: app/skins/single.php:702 app/skins/single/default.php:155
1696
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1697
  #: app/skins/single/modern.php:223
1698
  msgid "Labels"
1699
  msgstr "Labels"
1700
 
1701
- #: app/features/fes/form.php:829 app/features/mec.php:401
1702
  #: app/features/mec/meta_boxes/filter.php:147
1703
  msgid "Tags"
1704
  msgstr "Schlagworte"
@@ -2040,7 +2041,7 @@ msgstr "Zum Google Kalender hinzufügen"
2040
 
2041
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2042
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2043
- #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2044
  msgid "Checking ..."
2045
  msgstr "Überprüfung"
2046
 
@@ -2087,8 +2088,8 @@ msgstr ""
2087
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2088
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2089
  #: app/features/mec/booking.php:359
2090
- #: app/features/mec/meta_boxes/display_options.php:175
2091
- #: app/features/mec/meta_boxes/display_options.php:367
2092
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2093
  #: app/features/mec/modules.php:228
2094
  #, php-format
@@ -2098,15 +2099,15 @@ msgstr ""
2098
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2099
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2100
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2101
- #: app/features/mec/meta_boxes/display_options.php:175
2102
- #: app/features/mec/meta_boxes/display_options.php:367
2103
- #: app/features/mec/meta_boxes/display_options.php:395
2104
- #: app/features/mec/meta_boxes/display_options.php:535
2105
- #: app/features/mec/meta_boxes/display_options.php:586
2106
- #: app/features/mec/meta_boxes/display_options.php:693
2107
- #: app/features/mec/meta_boxes/display_options.php:800
2108
- #: app/features/mec/meta_boxes/display_options.php:907
2109
- #: app/features/mec/meta_boxes/display_options.php:1120
2110
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2111
  #: app/features/mec/modules.php:228
2112
  msgid "Pro version of Modern Events Calendar"
@@ -2300,7 +2301,7 @@ msgid "Auto Synchronization"
2300
  msgstr "Auto Synchronisation"
2301
 
2302
  #: app/features/ix/sync.php:22
2303
- #: app/features/mec/meta_boxes/display_options.php:907
2304
  #, php-format
2305
  msgid "%s is required to use synchronization feature."
2306
  msgstr ""
@@ -2480,16 +2481,16 @@ msgid "Select label color"
2480
  msgstr "Wähle Label Farbe"
2481
 
2482
  #: app/features/labels.php:112 app/features/labels.php:139
2483
- #: app/features/mec/meta_boxes/display_options.php:38
2484
- #: app/features/mec/meta_boxes/display_options.php:215
2485
- #: app/features/mec/meta_boxes/display_options.php:400
2486
- #: app/features/mec/meta_boxes/display_options.php:591
2487
- #: app/features/mec/meta_boxes/display_options.php:641
2488
- #: app/features/mec/meta_boxes/display_options.php:805
2489
- #: app/features/mec/meta_boxes/display_options.php:1002
2490
- #: app/features/mec/meta_boxes/display_options.php:1059
2491
- #: app/features/mec/meta_boxes/display_options.php:1151
2492
- #: app/features/mec/meta_boxes/display_options.php:1238
2493
  msgid "Style"
2494
  msgstr "Style"
2495
 
@@ -2501,11 +2502,11 @@ msgstr ""
2501
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2502
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2503
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2504
- #: app/skins/grid/render.php:52 app/skins/list/render.php:37
2505
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2506
  #: app/skins/monthly_view/calendar_clean.php:86
2507
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2508
- #: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
2509
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2510
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2511
  #, fuzzy
@@ -2514,15 +2515,15 @@ msgid "Featured"
2514
  msgstr "Ausgewähltes Bild"
2515
 
2516
  #: app/features/labels.php:118 app/features/labels.php:143
2517
- #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2518
- #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2519
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2520
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2521
- #: app/skins/list/render.php:38 app/skins/masonry/render.php:30
2522
  #: app/skins/monthly_view/calendar.php:90
2523
  #: app/skins/monthly_view/calendar_clean.php:90
2524
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2525
- #: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
2526
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2527
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2528
  msgid "Canceled"
@@ -2548,9 +2549,9 @@ msgstr "Slug"
2548
  msgid "Event %s"
2549
  msgstr "Event %s"
2550
 
2551
- #: app/features/locations.php:59 app/features/mec.php:404
2552
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2553
- #: app/libraries/main.php:5284
2554
  msgid "Locations"
2555
  msgstr "Orte"
2556
 
@@ -2624,7 +2625,7 @@ msgstr ""
2624
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2625
  "Westfalenhalle"
2626
 
2627
- #: app/features/locations.php:310 app/features/mec/settings.php:692
2628
  #: app/widgets/single.php:115
2629
  msgid "Event Location"
2630
  msgstr "Veranstaltungsort"
@@ -2662,7 +2663,7 @@ msgstr "Bild wählen"
2662
  msgid "Don't show map in single event page"
2663
  msgstr "Karte in Einzelansicht nicht anzeigen"
2664
 
2665
- #: app/features/locations.php:356 app/libraries/main.php:5318
2666
  #, fuzzy
2667
  #| msgid "Locations"
2668
  msgid "Other Locations"
@@ -2682,120 +2683,120 @@ msgstr ""
2682
  msgid "<strong>"
2683
  msgstr ""
2684
 
2685
- #: app/features/mec.php:185
2686
  msgid ""
2687
  "Activation faild. Please check your purchase code or license type."
2688
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2689
  msgstr ""
2690
 
2691
- #: app/features/mec.php:185
2692
  msgid "Troubleshooting"
2693
  msgstr ""
2694
 
2695
- #: app/features/mec.php:255 app/libraries/notifications.php:933
2696
  #, php-format
2697
  msgid "%s to %s"
2698
  msgstr "%s zu %s"
2699
 
2700
- #: app/features/mec.php:278
2701
  msgid ""
2702
  "Your options is not in JSON format. Please insert correct options in this "
2703
  "field and try again."
2704
  msgstr ""
2705
 
2706
- #: app/features/mec.php:285
2707
  #, fuzzy
2708
  #| msgid "Your booking cannot verify!"
2709
  msgid "Your options field can not be empty!"
2710
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
2711
 
2712
- #: app/features/mec.php:291
2713
  #, fuzzy
2714
  #| msgid "Your booking successfully verified."
2715
  msgid "Your options imported successfuly."
2716
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
2717
 
2718
- #: app/features/mec.php:384
2719
  #, fuzzy
2720
  #| msgid "Support"
2721
  msgid "MEC - Support"
2722
  msgstr "Support"
2723
 
2724
- #: app/features/mec.php:384 app/features/mec/support-page.php:9
2725
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2726
  msgid "Support"
2727
  msgstr "Support"
2728
 
2729
- #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2730
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2731
- #: app/libraries/main.php:5286
2732
  msgid "Organizers"
2733
  msgstr "Veranstalter"
2734
 
2735
- #: app/features/mec.php:413 app/features/mec.php:437
2736
  #: app/features/mec/dashboard.php:264
2737
  msgid "Shortcodes"
2738
  msgstr "Shortcodes"
2739
 
2740
- #: app/features/mec.php:414
2741
  msgid "MEC - Settings"
2742
  msgstr "MEC - Einstellungen"
2743
 
2744
- #: app/features/mec.php:415
2745
  #, fuzzy
2746
  #| msgid "MEC - Settings"
2747
  msgid "MEC - Addons"
2748
  msgstr "MEC - Einstellungen"
2749
 
2750
- #: app/features/mec.php:415 app/features/mec/addons.php:22
2751
  msgid "Addons"
2752
  msgstr ""
2753
 
2754
- #: app/features/mec.php:418
2755
  #, fuzzy
2756
  #| msgid "Support"
2757
  msgid "MEC - Report"
2758
  msgstr "Support"
2759
 
2760
- #: app/features/mec.php:418
2761
  #, fuzzy
2762
  #| msgid "Export"
2763
  msgid "Report"
2764
  msgstr "Export"
2765
 
2766
- #: app/features/mec.php:439
2767
  msgid "Add Shortcode"
2768
  msgstr "Shortcode hinzufügen"
2769
 
2770
- #: app/features/mec.php:440
2771
  msgid "Add New Shortcode"
2772
  msgstr "Neuen Shortcode hinzufügen"
2773
 
2774
- #: app/features/mec.php:441
2775
  msgid "No shortcodes found!"
2776
  msgstr "Keine Shortcodes gefunden!"
2777
 
2778
- #: app/features/mec.php:442
2779
  msgid "All Shortcodes"
2780
  msgstr "Alle Shortcodes"
2781
 
2782
- #: app/features/mec.php:443
2783
  msgid "Edit shortcodes"
2784
  msgstr "Shortcode ändern"
2785
 
2786
- #: app/features/mec.php:444
2787
  msgid "No shortcodes found in Trash!"
2788
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2789
 
2790
- #: app/features/mec.php:497
2791
  msgid "Display Options"
2792
  msgstr "Darstellungsoptionen"
2793
 
2794
- #: app/features/mec.php:498
2795
  msgid "Filter Options"
2796
  msgstr "Filteroptionen"
2797
 
2798
- #: app/features/mec.php:500
2799
  msgid "Search Form"
2800
  msgstr "Suche Formular"
2801
 
@@ -2803,21 +2804,21 @@ msgstr "Suche Formular"
2803
  msgid "Display content's images as Popup"
2804
  msgstr ""
2805
 
2806
- #: app/features/mec.php:888
2807
  msgid "Single Event Display Method"
2808
  msgstr "Single Event Anzeigemethode"
2809
 
2810
- #: app/features/mec.php:893
2811
  msgid "Separate Window"
2812
  msgstr "Separates Fenster"
2813
 
2814
- #: app/features/mec.php:894
2815
  msgid "Modal 1"
2816
  msgstr "Modal 1"
2817
 
2818
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2819
- #: app/features/mec/dashboard.php:81 app/features/mec/report.php:17
2820
- #: app/features/mec/support-page.php:21
2821
  msgid "Version"
2822
  msgstr "Version"
2823
 
@@ -2854,8 +2855,8 @@ msgstr "Suche %s"
2854
  #: app/features/mec/notifications.php:828
2855
  #: app/features/mec/notifications.php:924
2856
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2857
- #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2858
- #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2859
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2860
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2861
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
@@ -2887,13 +2888,13 @@ msgid "Default is Y-m-d"
2887
  msgstr "Voreinstellung ist J-M-T"
2888
 
2889
  #: app/features/mec/booking.php:115
2890
- #: app/features/mec/meta_boxes/display_options.php:134
2891
- #: app/features/mec/meta_boxes/display_options.php:348
2892
- #: app/features/mec/meta_boxes/display_options.php:444
2893
- #: app/features/mec/meta_boxes/display_options.php:950
2894
- #: app/features/mec/meta_boxes/display_options.php:1217
2895
- #: app/features/mec/meta_boxes/display_options.php:1326
2896
- #: app/features/mec/meta_boxes/display_options.php:1377
2897
  msgid "Limit"
2898
  msgstr "Limit"
2899
 
@@ -2941,7 +2942,7 @@ msgid ""
2941
  msgstr ""
2942
 
2943
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2944
- #: app/features/mec/settings.php:599 app/features/mec/settings.php:609
2945
  msgid "Thank You Page"
2946
  msgstr "Danke Seite"
2947
 
@@ -2954,17 +2955,17 @@ msgstr ""
2954
  "es leer, wenn Sie es deaktivieren möchten."
2955
 
2956
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2957
- #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
2958
  #, fuzzy
2959
  #| msgid "Thank You Page"
2960
  msgid "Thank You Page Time Interval"
2961
  msgstr "Danke Seite"
2962
 
2963
- #: app/features/mec/booking.php:167 app/features/mec/settings.php:621
2964
  msgid "2000 mean 2 seconds"
2965
  msgstr ""
2966
 
2967
- #: app/features/mec/booking.php:171 app/features/mec/settings.php:625
2968
  msgid ""
2969
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2970
  "2000 means 2 seconds."
@@ -3077,14 +3078,14 @@ msgstr ""
3077
 
3078
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3079
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3080
- #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3081
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3082
  msgid "Saved"
3083
  msgstr "Gesichert"
3084
 
3085
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3086
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3087
- #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3088
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3089
  msgid "Settings Saved!"
3090
  msgstr ""
@@ -3092,14 +3093,14 @@ msgstr ""
3092
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3093
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3094
  #: app/features/mec/notifications.php:905
3095
- #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3096
- #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3097
- #: app/features/mec/single.php:289 app/libraries/main.php:5530
3098
  msgid "Verified"
3099
  msgstr "Verifiziert"
3100
 
3101
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3102
- #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3103
  #: app/features/mec/single.php:291
3104
  msgid "Please Refresh Page"
3105
  msgstr "Bitte Seiten Refresh vornehmen"
@@ -3131,7 +3132,7 @@ msgstr ""
3131
  msgid "Update"
3132
  msgstr "Update %s"
3133
 
3134
- #: app/features/mec/dashboard.php:96
3135
  #, php-format
3136
  msgid ""
3137
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3139,28 +3140,29 @@ msgid ""
3139
  "Spots, etc you should upgrade to the Pro version."
3140
  msgstr ""
3141
 
3142
- #: app/features/mec/dashboard.php:96
3143
  msgid "lite"
3144
  msgstr ""
3145
 
3146
- #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
 
3147
  msgid "GO PREMIUM"
3148
  msgstr ""
3149
 
3150
- #: app/features/mec/dashboard.php:102
3151
  #, php-format
3152
  msgid ""
3153
  "Easily get a discount coupon by rating us on %s or following and reposting "
3154
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3155
  msgstr ""
3156
 
3157
- #: app/features/mec/dashboard.php:102
3158
  #, fuzzy
3159
  #| msgid "Address"
3160
  msgid "WordPress"
3161
  msgstr "Adresse"
3162
 
3163
- #: app/features/mec/dashboard.php:102
3164
  msgid "Copouns!"
3165
  msgstr ""
3166
 
@@ -3198,7 +3200,7 @@ msgid ""
3198
  "code."
3199
  msgstr ""
3200
 
3201
- #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3202
  msgid "Upcoming Events"
3203
  msgstr "Bevorstehende Events"
3204
 
@@ -3247,6 +3249,10 @@ msgstr "Alle Verkäufe (%s)"
3247
  msgid "Change Log"
3248
  msgstr "Änderungsprotokoll"
3249
 
 
 
 
 
3250
  #: app/features/mec/ie.php:21
3251
  msgid ""
3252
  "Insert your backup files below and press import to restore your site's "
@@ -3292,63 +3298,59 @@ msgstr ""
3292
  "wenn Ihre Website eine mehrsprachige Website ist, empfehlen wir Ihnen, die "
3293
  "Nachrichten / Phrasen aus Sprachdateien zu ändern."
3294
 
3295
- #: app/features/mec/meta_boxes/display_options.php:22
3296
  msgid "Skin"
3297
  msgstr "Skin"
3298
 
3299
- #: app/features/mec/meta_boxes/display_options.php:40
3300
- #: app/features/mec/meta_boxes/display_options.php:217
3301
- #: app/features/mec/meta_boxes/display_options.php:643
3302
- #: app/features/mec/meta_boxes/display_options.php:809
3303
- #: app/features/mec/meta_boxes/display_options.php:1004
3304
- #: app/features/mec/settings.php:259 app/features/mec/settings.php:283
3305
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:333
3306
- #: app/features/mec/settings.php:357 app/features/mec/settings.php:366
 
 
3307
  msgid "Classic"
3308
  msgstr "Klassisch"
3309
 
3310
- #: app/features/mec/meta_boxes/display_options.php:41
3311
- #: app/features/mec/meta_boxes/display_options.php:219
3312
- #: app/features/mec/settings.php:284 app/features/mec/settings.php:294
3313
- #: app/features/mec/settings.php:358 app/features/mec/settings.php:368
 
3314
  msgid "Minimal"
3315
  msgstr "Minimal"
3316
 
3317
- #: app/features/mec/meta_boxes/display_options.php:42
3318
- #: app/features/mec/meta_boxes/display_options.php:220
3319
- #: app/features/mec/meta_boxes/display_options.php:593
3320
- #: app/features/mec/meta_boxes/display_options.php:645
3321
- #: app/features/mec/meta_boxes/display_options.php:807
3322
- #: app/features/mec/meta_boxes/display_options.php:1006
3323
- #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3324
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:295
3325
- #: app/features/mec/settings.php:335 app/features/mec/settings.php:348
3326
- #: app/features/mec/settings.php:359 app/features/mec/settings.php:369
 
 
 
3327
  msgid "Modern"
3328
  msgstr "Modern"
3329
 
3330
- #: app/features/mec/meta_boxes/display_options.php:43
3331
- #: app/features/mec/settings.php:286 app/features/mec/settings.php:360
 
3332
  msgid "Standard"
3333
  msgstr "Standard"
3334
 
3335
- #: app/features/mec/meta_boxes/display_options.php:44
3336
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:361
 
3337
  msgid "Accordion"
3338
  msgstr "Accordion"
3339
 
3340
- #: app/features/mec/meta_boxes/display_options.php:50
3341
- #: app/features/mec/meta_boxes/display_options.php:230
3342
- #: app/features/mec/meta_boxes/display_options.php:408
3343
- #: app/features/mec/meta_boxes/display_options.php:700
3344
- #: app/features/mec/meta_boxes/display_options.php:733
3345
- #: app/features/mec/meta_boxes/display_options.php:914
3346
- #: app/features/mec/meta_boxes/display_options.php:1162
3347
- #: app/features/mec/meta_boxes/display_options.php:1250
3348
- #: app/features/mec/meta_boxes/display_options.php:1342
3349
- msgid "Today"
3350
- msgstr "Heute"
3351
-
3352
  #: app/features/mec/meta_boxes/display_options.php:51
3353
  #: app/features/mec/meta_boxes/display_options.php:231
3354
  #: app/features/mec/meta_boxes/display_options.php:409
@@ -3358,25 +3360,20 @@ msgstr "Heute"
3358
  #: app/features/mec/meta_boxes/display_options.php:1163
3359
  #: app/features/mec/meta_boxes/display_options.php:1251
3360
  #: app/features/mec/meta_boxes/display_options.php:1343
3361
- msgid "Tomorrow"
3362
- msgstr "Morgen"
3363
 
3364
  #: app/features/mec/meta_boxes/display_options.php:52
3365
  #: app/features/mec/meta_boxes/display_options.php:232
3366
  #: app/features/mec/meta_boxes/display_options.php:410
3367
- #: app/features/mec/meta_boxes/display_options.php:476
3368
- #: app/features/mec/meta_boxes/display_options.php:653
3369
  #: app/features/mec/meta_boxes/display_options.php:702
3370
  #: app/features/mec/meta_boxes/display_options.php:735
3371
- #: app/features/mec/meta_boxes/display_options.php:770
3372
- #: app/features/mec/meta_boxes/display_options.php:817
3373
  #: app/features/mec/meta_boxes/display_options.php:916
3374
  #: app/features/mec/meta_boxes/display_options.php:1164
3375
  #: app/features/mec/meta_boxes/display_options.php:1252
3376
  #: app/features/mec/meta_boxes/display_options.php:1344
3377
- #: app/features/mec/meta_boxes/display_options.php:1409
3378
- msgid "Start of Current Month"
3379
- msgstr "Mit Beginn des laufenden Monats"
3380
 
3381
  #: app/features/mec/meta_boxes/display_options.php:53
3382
  #: app/features/mec/meta_boxes/display_options.php:233
@@ -3392,14 +3389,13 @@ msgstr "Mit Beginn des laufenden Monats"
3392
  #: app/features/mec/meta_boxes/display_options.php:1253
3393
  #: app/features/mec/meta_boxes/display_options.php:1345
3394
  #: app/features/mec/meta_boxes/display_options.php:1410
3395
- msgid "Start of Next Month"
3396
- msgstr "Mit Beginn des kommenden Monats"
3397
 
3398
  #: app/features/mec/meta_boxes/display_options.php:54
3399
  #: app/features/mec/meta_boxes/display_options.php:234
3400
  #: app/features/mec/meta_boxes/display_options.php:412
3401
  #: app/features/mec/meta_boxes/display_options.php:478
3402
- #: app/features/mec/meta_boxes/display_options.php:601
3403
  #: app/features/mec/meta_boxes/display_options.php:655
3404
  #: app/features/mec/meta_boxes/display_options.php:704
3405
  #: app/features/mec/meta_boxes/display_options.php:737
@@ -3410,632 +3406,666 @@ msgstr "Mit Beginn des kommenden Monats"
3410
  #: app/features/mec/meta_boxes/display_options.php:1254
3411
  #: app/features/mec/meta_boxes/display_options.php:1346
3412
  #: app/features/mec/meta_boxes/display_options.php:1411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3413
  msgid "On a certain date"
3414
  msgstr "An einem bestimmten Tag"
3415
 
3416
- #: app/features/mec/meta_boxes/display_options.php:57
3417
- #: app/features/mec/meta_boxes/display_options.php:237
3418
- #: app/features/mec/meta_boxes/display_options.php:415
3419
- #: app/features/mec/meta_boxes/display_options.php:481
3420
- #: app/features/mec/meta_boxes/display_options.php:604
3421
- #: app/features/mec/meta_boxes/display_options.php:658
3422
- #: app/features/mec/meta_boxes/display_options.php:707
3423
- #: app/features/mec/meta_boxes/display_options.php:741
3424
- #: app/features/mec/meta_boxes/display_options.php:775
3425
- #: app/features/mec/meta_boxes/display_options.php:822
3426
- #: app/features/mec/meta_boxes/display_options.php:921
3427
- #: app/features/mec/meta_boxes/display_options.php:1169
3428
- #: app/features/mec/meta_boxes/display_options.php:1257
3429
- #: app/features/mec/meta_boxes/display_options.php:1349
3430
- #: app/features/mec/meta_boxes/display_options.php:1414
3431
  #, php-format
3432
  msgid "eg. %s"
3433
  msgstr "z.B. %s"
3434
 
3435
- #: app/features/mec/meta_boxes/display_options.php:62
3436
  #: app/features/mec/meta_boxes/display_options.php:63
3437
- #: app/features/mec/meta_boxes/display_options.php:66
3438
- #: app/features/mec/meta_boxes/display_options.php:242
3439
  #: app/features/mec/meta_boxes/display_options.php:243
3440
- #: app/features/mec/meta_boxes/display_options.php:246
3441
- #: app/features/mec/meta_boxes/display_options.php:420
3442
  #: app/features/mec/meta_boxes/display_options.php:421
3443
- #: app/features/mec/meta_boxes/display_options.php:424
3444
- #: app/features/mec/meta_boxes/display_options.php:926
3445
  #: app/features/mec/meta_boxes/display_options.php:927
3446
- #: app/features/mec/meta_boxes/display_options.php:930
3447
- #: app/features/mec/meta_boxes/display_options.php:1354
3448
  #: app/features/mec/meta_boxes/display_options.php:1355
3449
- #: app/features/mec/meta_boxes/display_options.php:1358
 
3450
  #, fuzzy
3451
  #| msgid "Maximum Dates"
3452
  msgid "Maximum Date"
3453
  msgstr "Maximale Anzahl von Daten"
3454
 
3455
- #: app/features/mec/meta_boxes/display_options.php:67
3456
- #: app/features/mec/meta_boxes/display_options.php:247
3457
- #: app/features/mec/meta_boxes/display_options.php:425
3458
- #: app/features/mec/meta_boxes/display_options.php:931
3459
- #: app/features/mec/meta_boxes/display_options.php:1359
3460
  #, fuzzy
3461
  #| msgid "Show events based on created shortcodes."
3462
  msgid "Show events before the specified date."
3463
  msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
3464
 
3465
- #: app/features/mec/meta_boxes/display_options.php:74
3466
- #: app/features/mec/meta_boxes/display_options.php:78
3467
- #: app/features/mec/meta_boxes/display_options.php:85
3468
- #: app/features/mec/meta_boxes/display_options.php:91
3469
- #: app/features/mec/meta_boxes/display_options.php:98
3470
- #: app/features/mec/meta_boxes/display_options.php:104
3471
- #: app/features/mec/meta_boxes/display_options.php:111
3472
- #: app/features/mec/meta_boxes/display_options.php:115
3473
- #: app/features/mec/meta_boxes/display_options.php:122
3474
- #: app/features/mec/meta_boxes/display_options.php:127
3475
- #: app/features/mec/meta_boxes/display_options.php:254
3476
- #: app/features/mec/meta_boxes/display_options.php:258
3477
- #: app/features/mec/meta_boxes/display_options.php:265
3478
- #: app/features/mec/meta_boxes/display_options.php:270
3479
- #: app/features/mec/meta_boxes/display_options.php:277
3480
- #: app/features/mec/meta_boxes/display_options.php:282
3481
- #: app/features/mec/meta_boxes/display_options.php:289
3482
- #: app/features/mec/meta_boxes/display_options.php:295
3483
- #: app/features/mec/meta_boxes/display_options.php:302
3484
- #: app/features/mec/meta_boxes/display_options.php:306
3485
- #: app/features/mec/meta_boxes/display_options.php:313
3486
- #: app/features/mec/meta_boxes/display_options.php:319
3487
- #: app/features/mec/meta_boxes/display_options.php:326
3488
- #: app/features/mec/meta_boxes/display_options.php:330
3489
- #: app/features/mec/meta_boxes/display_options.php:432
3490
- #: app/features/mec/meta_boxes/display_options.php:437
3491
- #: app/features/mec/meta_boxes/display_options.php:608
3492
- #: app/features/mec/meta_boxes/display_options.php:613
3493
- #: app/features/mec/meta_boxes/display_options.php:854
3494
- #: app/features/mec/meta_boxes/display_options.php:938
3495
- #: app/features/mec/meta_boxes/display_options.php:943
3496
- #: app/features/mec/meta_boxes/display_options.php:1010
3497
- #: app/features/mec/meta_boxes/display_options.php:1016
3498
- #: app/features/mec/meta_boxes/display_options.php:1023
3499
- #: app/features/mec/meta_boxes/display_options.php:1028
3500
- #: app/features/mec/meta_boxes/display_options.php:1035
3501
- #: app/features/mec/meta_boxes/display_options.php:1039
3502
- #: app/features/mec/meta_boxes/display_options.php:1067
3503
- #: app/features/mec/meta_boxes/display_options.php:1071
3504
- #: app/features/mec/meta_boxes/display_options.php:1078
3505
- #: app/features/mec/meta_boxes/display_options.php:1082
3506
- #: app/features/mec/meta_boxes/display_options.php:1089
3507
- #: app/features/mec/meta_boxes/display_options.php:1095
3508
- #: app/features/mec/meta_boxes/display_options.php:1125
3509
- #: app/features/mec/meta_boxes/display_options.php:1130
3510
- #: app/features/mec/meta_boxes/display_options.php:1173
3511
- #: app/features/mec/meta_boxes/display_options.php:1179
3512
- #: app/features/mec/meta_boxes/display_options.php:1186
3513
- #: app/features/mec/meta_boxes/display_options.php:1190
3514
- #: app/features/mec/meta_boxes/display_options.php:1197
3515
- #: app/features/mec/meta_boxes/display_options.php:1201
3516
- #: app/features/mec/meta_boxes/display_options.php:1261
3517
- #: app/features/mec/meta_boxes/display_options.php:1267
3518
- #: app/features/mec/meta_boxes/display_options.php:1274
3519
- #: app/features/mec/meta_boxes/display_options.php:1280
3520
- #: app/features/mec/meta_boxes/display_options.php:1287
3521
- #: app/features/mec/meta_boxes/display_options.php:1293
3522
- #: app/features/mec/meta_boxes/display_options.php:1300
3523
- #: app/features/mec/meta_boxes/display_options.php:1306
3524
- #: app/features/mec/meta_boxes/display_options.php:1313
3525
- #: app/features/mec/meta_boxes/display_options.php:1319
3526
- #: app/features/mec/meta_boxes/display_options.php:1366
3527
- #: app/features/mec/meta_boxes/display_options.php:1370
3528
- #: app/features/mec/meta_boxes/display_options.php:1418
3529
- #: app/features/mec/meta_boxes/display_options.php:1423
3530
- msgid "Date Formats"
3531
- msgstr "Datumsformate"
3532
-
3533
  #: app/features/mec/meta_boxes/display_options.php:79
3534
- #: app/features/mec/meta_boxes/display_options.php:307
3535
- msgid "Default value is \"M d Y\""
3536
- msgstr "Standard Wert ist \"M T J\""
3537
-
3538
  #: app/features/mec/meta_boxes/display_options.php:92
3539
- msgid "Default values are d, M and l"
3540
- msgstr "Standard Werte sind T, M und J"
3541
-
3542
  #: app/features/mec/meta_boxes/display_options.php:105
 
 
 
 
 
 
 
 
 
 
 
3543
  #: app/features/mec/meta_boxes/display_options.php:296
 
 
 
3544
  #: app/features/mec/meta_boxes/display_options.php:320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3545
  #: app/features/mec/meta_boxes/display_options.php:1268
 
3546
  #: app/features/mec/meta_boxes/display_options.php:1281
 
3547
  #: app/features/mec/meta_boxes/display_options.php:1294
 
3548
  #: app/features/mec/meta_boxes/display_options.php:1307
 
3549
  #: app/features/mec/meta_boxes/display_options.php:1320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3550
  msgid "Default values are d, F and l"
3551
  msgstr ""
3552
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
3553
 
3554
- #: app/features/mec/meta_boxes/display_options.php:116
3555
  msgid "Default value is \"M d\""
3556
  msgstr "Standard Wert ist \"M T\""
3557
 
3558
- #: app/features/mec/meta_boxes/display_options.php:128
3559
  #, fuzzy
3560
  #| msgid "Default values are d and F"
3561
  msgid "TDefault values are d and F"
3562
  msgstr "Die Standardwerte sind d and F"
3563
 
3564
- #: app/features/mec/meta_boxes/display_options.php:135
3565
- #: app/features/mec/meta_boxes/display_options.php:349
3566
- #: app/features/mec/meta_boxes/display_options.php:445
3567
- #: app/features/mec/meta_boxes/display_options.php:621
3568
- #: app/features/mec/meta_boxes/display_options.php:663
3569
- #: app/features/mec/meta_boxes/display_options.php:746
3570
- #: app/features/mec/meta_boxes/display_options.php:780
3571
- #: app/features/mec/meta_boxes/display_options.php:827
3572
- #: app/features/mec/meta_boxes/display_options.php:1218
3573
- #: app/features/mec/meta_boxes/display_options.php:1327
3574
- #: app/features/mec/meta_boxes/display_options.php:1378
3575
  msgid "eg. 6"
3576
  msgstr "z.B. 6"
3577
 
3578
- #: app/features/mec/meta_boxes/display_options.php:140
3579
  #, fuzzy
3580
  #| msgid "Hide Event Time"
3581
  msgid "Include Events Times"
3582
  msgstr "Event / Veranstaltungszeit verbergen"
3583
 
3584
- #: app/features/mec/meta_boxes/display_options.php:151
3585
- #: app/features/mec/meta_boxes/display_options.php:353
3586
- #: app/features/mec/meta_boxes/display_options.php:449
3587
- #: app/features/mec/meta_boxes/display_options.php:987
3588
- #: app/features/mec/meta_boxes/display_options.php:1382
3589
  msgid "Load More Button"
3590
  msgstr "Button \"Weitere Veranstaltungen Laden\""
3591
 
3592
- #: app/features/mec/meta_boxes/display_options.php:161
3593
- #: app/features/mec/meta_boxes/display_options.php:459
3594
- #: app/features/mec/meta_boxes/display_options.php:1392
3595
  msgid "Show Month Divider"
3596
  msgstr "Zeige Monatsteilung"
3597
 
3598
- #: app/features/mec/meta_boxes/display_options.php:171
3599
- #: app/features/mec/meta_boxes/display_options.php:363
3600
  #, fuzzy
3601
  #| msgid "Show Google Maps on event page"
3602
  msgid "Show Map on top"
3603
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3604
 
3605
- #: app/features/mec/meta_boxes/display_options.php:186
3606
- #: app/features/mec/meta_boxes/display_options.php:378
3607
- #: app/features/mec/meta_boxes/display_options.php:716
3608
  msgid "Geolocation"
3609
  msgstr ""
3610
 
3611
- #: app/features/mec/meta_boxes/display_options.php:201
3612
  #, fuzzy
3613
  #| msgid "Show Month Divider"
3614
  msgid "Toggle for Month Divider"
3615
  msgstr "Zeige Monatsteilung"
3616
 
3617
- #: app/features/mec/meta_boxes/display_options.php:218
3618
- #: app/features/mec/meta_boxes/display_options.php:402
3619
- #: app/features/mec/meta_boxes/display_options.php:497
3620
- #: app/features/mec/meta_boxes/display_options.php:644
3621
- #: app/features/mec/meta_boxes/display_options.php:808
3622
- #: app/features/mec/meta_boxes/display_options.php:1005
3623
- #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
3624
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:334
3625
- #: app/features/mec/settings.php:349 app/features/mec/settings.php:367
 
 
 
3626
  msgid "Clean"
3627
  msgstr "Clean"
3628
 
3629
- #: app/features/mec/meta_boxes/display_options.php:221
3630
- #: app/features/mec/meta_boxes/display_options.php:499
3631
- #: app/features/mec/meta_boxes/display_options.php:647
3632
- #: app/features/mec/settings.php:263 app/features/mec/settings.php:296
3633
- #: app/features/mec/settings.php:337 app/features/mec/settings.php:370
 
 
3634
  msgid "Simple"
3635
  msgstr "Schlicht"
3636
 
3637
- #: app/features/mec/meta_boxes/display_options.php:222
 
3638
  msgid "Colorful"
3639
  msgstr "Farbenfroh"
3640
 
3641
- #: app/features/mec/meta_boxes/display_options.php:223
3642
- #: app/features/mec/meta_boxes/display_options.php:498
3643
- #: app/features/mec/meta_boxes/display_options.php:646
3644
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:298
3645
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:372
 
 
3646
  msgid "Novel"
3647
  msgstr ""
3648
 
3649
- #: app/features/mec/meta_boxes/display_options.php:259
3650
- #: app/features/mec/meta_boxes/display_options.php:1371
3651
  #, fuzzy
3652
  #| msgid "Default value is \"d F Y\""
3653
  msgid "Default value is \"d F Y"
3654
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3655
 
3656
- #: app/features/mec/meta_boxes/display_options.php:271
3657
  msgid "Default values are d and F"
3658
  msgstr "Die Standardwerte sind d and F"
3659
 
3660
- #: app/features/mec/meta_boxes/display_options.php:283
3661
  msgid "Default values are d and M"
3662
  msgstr "Standardwerte sind T und M"
3663
 
3664
- #: app/features/mec/meta_boxes/display_options.php:331
3665
  msgid "Default value is \"d F Y\""
3666
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3667
 
3668
- #: app/features/mec/meta_boxes/display_options.php:337
3669
- #: app/features/mec/meta_boxes/display_options.php:1208
3670
- #: app/features/mec/meta_boxes/display_options.php:1430
3671
  msgid "Count in row"
3672
  msgstr "Zeilen zählen"
3673
 
3674
- #: app/features/mec/meta_boxes/display_options.php:395
3675
- #: app/features/mec/meta_boxes/display_options.php:586
3676
- #: app/features/mec/meta_boxes/display_options.php:693
3677
- #: app/features/mec/meta_boxes/display_options.php:800
3678
- #: app/features/mec/meta_boxes/display_options.php:1120
3679
  #, php-format
3680
  msgid "%s is required to use this skin."
3681
  msgstr ""
3682
 
3683
- #: app/features/mec/meta_boxes/display_options.php:438
3684
- #: app/features/mec/meta_boxes/display_options.php:614
3685
  msgid "Default values are l and F j"
3686
  msgstr "Die Standardwerte sind I und F j"
3687
 
3688
- #: app/features/mec/meta_boxes/display_options.php:485
3689
  msgid "Default View"
3690
  msgstr "Standardansicht"
3691
 
3692
- #: app/features/mec/meta_boxes/display_options.php:487
3693
- #: app/features/mec/meta_boxes/display_options.php:508
3694
- #: app/libraries/main.php:330 app/libraries/main.php:1757
3695
- #: app/libraries/main.php:1782
3696
  msgid "List View"
3697
  msgstr "Listenansicht"
3698
 
3699
- #: app/features/mec/meta_boxes/display_options.php:488
3700
- #: app/features/mec/meta_boxes/display_options.php:518
3701
- #: app/libraries/main.php:334 app/libraries/main.php:1751
3702
- #: app/libraries/main.php:1776
3703
  msgid "Yearly View"
3704
  msgstr "Jahresansicht"
3705
 
3706
- #: app/features/mec/meta_boxes/display_options.php:489
3707
- #: app/features/mec/meta_boxes/display_options.php:540
3708
  msgid "Monthly/Calendar View"
3709
  msgstr "Monatliche Kalenderansicht"
3710
 
3711
- #: app/features/mec/meta_boxes/display_options.php:490
3712
- #: app/features/mec/meta_boxes/display_options.php:550
3713
- #: app/libraries/main.php:337 app/libraries/main.php:1753
3714
- #: app/libraries/main.php:1778
3715
  msgid "Weekly View"
3716
  msgstr "Wochenansicht"
3717
 
3718
- #: app/features/mec/meta_boxes/display_options.php:491
3719
- #: app/features/mec/meta_boxes/display_options.php:560
3720
- #: app/libraries/main.php:336 app/libraries/main.php:1754
3721
- #: app/libraries/main.php:1779
3722
  msgid "Daily View"
3723
  msgstr "Tagesansicht"
3724
 
3725
- #: app/features/mec/meta_boxes/display_options.php:495
 
3726
  #, fuzzy
3727
  #| msgid "Modern Style"
3728
  msgid "Monthly Style"
3729
  msgstr "Moderner Stil"
3730
 
3731
- #: app/features/mec/meta_boxes/display_options.php:535
3732
  #, php-format
3733
  msgid "%s is required to use <b>Yearly View</b> skin."
3734
  msgstr ""
3735
 
3736
- #: app/features/mec/meta_boxes/display_options.php:568
3737
  msgid "The price shows only in List View."
3738
  msgstr ""
3739
 
3740
- #: app/features/mec/meta_boxes/display_options.php:571
3741
  msgid "Display Event Price"
3742
  msgstr ""
3743
 
3744
- #: app/features/mec/meta_boxes/display_options.php:599
3745
  msgid "Start of Current Year"
3746
  msgstr "Mit Beginn des laufenden Jahres"
3747
 
3748
- #: app/features/mec/meta_boxes/display_options.php:600
3749
  msgid "Start of Next Year"
3750
  msgstr "Start des nächsten Jahres"
3751
 
3752
- #: app/features/mec/meta_boxes/display_options.php:620
3753
- #: app/features/mec/meta_boxes/display_options.php:662
3754
- #: app/features/mec/meta_boxes/display_options.php:745
3755
- #: app/features/mec/meta_boxes/display_options.php:779
3756
- #: app/features/mec/meta_boxes/display_options.php:826
3757
  msgid "Events per day"
3758
  msgstr "Veranstaltungen pro Tag"
3759
 
3760
- #: app/features/mec/meta_boxes/display_options.php:625
3761
- #: app/features/mec/meta_boxes/display_options.php:667
3762
- #: app/features/mec/meta_boxes/display_options.php:750
3763
- #: app/features/mec/meta_boxes/display_options.php:784
3764
- #: app/features/mec/meta_boxes/display_options.php:888
3765
- #: app/features/mec/meta_boxes/display_options.php:1439
3766
  msgid "Next/Previous Buttons"
3767
  msgstr "Schaltfläche \"Nächste/Letzte\""
3768
 
3769
- #: app/features/mec/meta_boxes/display_options.php:633
3770
  msgid "For showing next/previous year navigation."
3771
  msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
3772
 
3773
- #: app/features/mec/meta_boxes/display_options.php:677
3774
  #, fuzzy
3775
  #| msgid "Text"
3776
  msgid "Uppercase Text"
3777
  msgstr "Text"
3778
 
3779
- #: app/features/mec/meta_boxes/display_options.php:685
3780
- #: app/features/mec/meta_boxes/display_options.php:758
3781
- #: app/features/mec/meta_boxes/display_options.php:792
3782
- #: app/features/mec/meta_boxes/display_options.php:896
3783
- #: app/features/mec/meta_boxes/display_options.php:1447
3784
  msgid "For showing next/previous month navigation."
3785
  msgstr "Für die Navigation zum nächsten/letzten Monat"
3786
 
3787
- #: app/features/mec/meta_boxes/display_options.php:711
3788
  msgid "Maximum events"
3789
  msgstr "Veranstaltungsmaximum"
3790
 
3791
- #: app/features/mec/meta_boxes/display_options.php:712
3792
  msgid "eg. 200"
3793
  msgstr "z.B. 200"
3794
 
3795
- #: app/features/mec/meta_boxes/display_options.php:724
3796
  msgid "The geolocation feature works only in secure (https) websites."
3797
  msgstr ""
3798
 
3799
- #: app/features/mec/meta_boxes/display_options.php:768
3800
- #: app/features/mec/meta_boxes/display_options.php:815
3801
  msgid "Current Week"
3802
  msgstr "Aktuelle Woche"
3803
 
3804
- #: app/features/mec/meta_boxes/display_options.php:769
3805
- #: app/features/mec/meta_boxes/display_options.php:816
3806
  msgid "Next Week"
3807
  msgstr "Nächste Woche"
3808
 
3809
- #: app/features/mec/meta_boxes/display_options.php:831
3810
  msgid "Number of Days"
3811
  msgstr ""
3812
 
3813
- #: app/features/mec/meta_boxes/display_options.php:839
3814
  #, fuzzy
3815
  #| msgid "Start"
3816
  msgid "Week Start"
3817
  msgstr "Start"
3818
 
3819
- #: app/features/mec/meta_boxes/display_options.php:841
3820
  #, fuzzy
3821
  #| msgid "Inherit from global options"
3822
  msgid "Inherite from WordPress options"
3823
  msgstr "Aus den globalen Einstellungen übernehmen"
3824
 
3825
- #: app/features/mec/meta_boxes/display_options.php:856
3826
  msgid "1:00"
3827
  msgstr ""
3828
 
3829
- #: app/features/mec/meta_boxes/display_options.php:857
3830
  msgid "2:00"
3831
  msgstr ""
3832
 
3833
- #: app/features/mec/meta_boxes/display_options.php:858
3834
  msgid "3:00"
3835
  msgstr ""
3836
 
3837
- #: app/features/mec/meta_boxes/display_options.php:859
3838
  msgid "4:00"
3839
  msgstr ""
3840
 
3841
- #: app/features/mec/meta_boxes/display_options.php:860
3842
  msgid "5:00"
3843
  msgstr ""
3844
 
3845
- #: app/features/mec/meta_boxes/display_options.php:861
3846
  msgid "6:00"
3847
  msgstr ""
3848
 
3849
- #: app/features/mec/meta_boxes/display_options.php:862
3850
  msgid "7:00"
3851
  msgstr ""
3852
 
3853
- #: app/features/mec/meta_boxes/display_options.php:863
3854
  msgid "8:00"
3855
  msgstr ""
3856
 
3857
- #: app/features/mec/meta_boxes/display_options.php:864
3858
  msgid "9:00"
3859
  msgstr ""
3860
 
3861
- #: app/features/mec/meta_boxes/display_options.php:865
3862
  msgid "10:00"
3863
  msgstr ""
3864
 
3865
- #: app/features/mec/meta_boxes/display_options.php:866
3866
  msgid "11:00"
3867
  msgstr ""
3868
 
3869
- #: app/features/mec/meta_boxes/display_options.php:867
3870
  msgid "12:00"
3871
  msgstr ""
3872
 
3873
- #: app/features/mec/meta_boxes/display_options.php:870
3874
  msgid "13:00"
3875
  msgstr ""
3876
 
3877
- #: app/features/mec/meta_boxes/display_options.php:871
3878
  msgid "14:00"
3879
  msgstr ""
3880
 
3881
- #: app/features/mec/meta_boxes/display_options.php:872
3882
  msgid "15:00"
3883
  msgstr ""
3884
 
3885
- #: app/features/mec/meta_boxes/display_options.php:873
3886
  msgid "16:00"
3887
  msgstr ""
3888
 
3889
- #: app/features/mec/meta_boxes/display_options.php:874
3890
  msgid "17:00"
3891
  msgstr ""
3892
 
3893
- #: app/features/mec/meta_boxes/display_options.php:875
3894
  msgid "18:00"
3895
  msgstr ""
3896
 
3897
- #: app/features/mec/meta_boxes/display_options.php:876
3898
  msgid "19:00"
3899
  msgstr ""
3900
 
3901
- #: app/features/mec/meta_boxes/display_options.php:877
3902
  msgid "20:00"
3903
  msgstr ""
3904
 
3905
- #: app/features/mec/meta_boxes/display_options.php:878
3906
  msgid "21:00"
3907
  msgstr ""
3908
 
3909
- #: app/features/mec/meta_boxes/display_options.php:879
3910
  msgid "22:00"
3911
  msgstr ""
3912
 
3913
- #: app/features/mec/meta_boxes/display_options.php:880
3914
  msgid "23:00"
3915
  msgstr ""
3916
 
3917
- #: app/features/mec/meta_boxes/display_options.php:881
3918
  msgid "24:00"
3919
  msgstr ""
3920
 
3921
- #: app/features/mec/meta_boxes/display_options.php:944
3922
- #: app/features/mec/meta_boxes/display_options.php:1131
3923
  msgid "Default values are j and F"
3924
  msgstr "Standardwerte sind j und F"
3925
 
3926
- #: app/features/mec/meta_boxes/display_options.php:951
3927
  msgid "eg. 24"
3928
  msgstr "z.B. 24"
3929
 
3930
- #: app/features/mec/meta_boxes/display_options.php:954
3931
  msgid "Filter By"
3932
  msgstr "Filtern nach"
3933
 
3934
- #: app/features/mec/meta_boxes/display_options.php:956
3935
  msgid "None"
3936
  msgstr ""
3937
 
3938
- #: app/features/mec/meta_boxes/display_options.php:965
3939
  msgid "Fit to row"
3940
  msgstr ""
3941
 
3942
- #: app/features/mec/meta_boxes/display_options.php:966
3943
  msgid ""
3944
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3945
  "would expect from a layout that uses CSS floats."
3946
  msgstr ""
3947
 
3948
- #: app/features/mec/meta_boxes/display_options.php:976
3949
  msgid "Convert Masonry to Grid"
3950
  msgstr ""
3951
 
3952
- #: app/features/mec/meta_boxes/display_options.php:977
3953
  msgid "For using this option, your events should come with image"
3954
  msgstr ""
3955
 
3956
- #: app/features/mec/meta_boxes/display_options.php:1017
3957
  msgid "Default values are d, M and Y"
3958
  msgstr "Standardwerte sind T, M und J"
3959
 
3960
- #: app/features/mec/meta_boxes/display_options.php:1029
3961
  msgid "Default values are \"F d\" and l"
3962
  msgstr ""
3963
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3964
  "und ausgeschriebener Wochentag"
3965
 
3966
- #: app/features/mec/meta_boxes/display_options.php:1040
3967
  msgid "Default value is \"l, F d Y\""
3968
  msgstr ""
3969
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3970
  "des Monates mit führender 0, Jahr"
3971
 
3972
- #: app/features/mec/meta_boxes/display_options.php:1061
 
3973
  msgid "Style 1"
3974
  msgstr "Stil 1"
3975
 
3976
- #: app/features/mec/meta_boxes/display_options.php:1062
 
3977
  msgid "Style 2"
3978
  msgstr "Stil 2"
3979
 
3980
- #: app/features/mec/meta_boxes/display_options.php:1063
 
3981
  msgid "Style 3"
3982
  msgstr "Stil 3"
3983
 
3984
- #: app/features/mec/meta_boxes/display_options.php:1072
3985
- #: app/features/mec/meta_boxes/display_options.php:1083
3986
  msgid "Default value is \"j F Y\""
3987
  msgstr "Standardwert ist \"j F Y\""
3988
 
3989
- #: app/features/mec/meta_boxes/display_options.php:1096
3990
  msgid "Default values are j, F and Y"
3991
  msgstr ""
3992
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
3993
 
3994
- #: app/features/mec/meta_boxes/display_options.php:1104
3995
- #: app/features/mec/meta_boxes/display_options.php:1139
3996
  msgid " -- Next Upcoming Event -- "
3997
  msgstr "-- Nächste Veranstaltung--"
3998
 
3999
- #: app/features/mec/meta_boxes/display_options.php:1111
4000
  msgid "Background Color"
4001
  msgstr "Hintergrund Farbe"
4002
 
4003
- #: app/features/mec/meta_boxes/display_options.php:1153
4004
- #: app/features/mec/meta_boxes/display_options.php:1240
 
4005
  msgid "Type 1"
4006
  msgstr "Typ 1"
4007
 
4008
- #: app/features/mec/meta_boxes/display_options.php:1154
4009
- #: app/features/mec/meta_boxes/display_options.php:1241
 
4010
  msgid "Type 2"
4011
  msgstr "Typ 2"
4012
 
4013
- #: app/features/mec/meta_boxes/display_options.php:1155
4014
- #: app/features/mec/meta_boxes/display_options.php:1242
 
4015
  msgid "Type 3"
4016
  msgstr "Type 3"
4017
 
4018
- #: app/features/mec/meta_boxes/display_options.php:1156
4019
- #: app/features/mec/meta_boxes/display_options.php:1243
 
4020
  msgid "Type 4"
4021
  msgstr "Typ 4"
4022
 
4023
- #: app/features/mec/meta_boxes/display_options.php:1180
4024
  msgid "Default values are d, F and Y"
4025
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
4026
 
4027
- #: app/features/mec/meta_boxes/display_options.php:1191
4028
- #: app/features/mec/meta_boxes/display_options.php:1202
4029
  msgid "Default value is \"M d, Y\""
4030
  msgstr "Standardwert ist \"M T, J\""
4031
 
4032
- #: app/features/mec/meta_boxes/display_options.php:1221
4033
- #: app/features/mec/meta_boxes/display_options.php:1330
4034
  msgid "Auto Play Time"
4035
  msgstr "Auto Play Time"
4036
 
4037
- #: app/features/mec/meta_boxes/display_options.php:1222
4038
- #: app/features/mec/meta_boxes/display_options.php:1331
4039
  msgid "eg. 3000 default is 3 second"
4040
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
4041
 
@@ -4051,11 +4081,12 @@ msgstr "Skin Seite Archiv"
4051
  msgid "Head Text"
4052
  msgstr "Text"
4053
 
4054
- #: app/features/mec/meta_boxes/display_options.php:1244
 
4055
  msgid "Type 5"
4056
  msgstr "Typ 5"
4057
 
4058
- #: app/features/mec/meta_boxes/display_options.php:1424
4059
  #, fuzzy
4060
  #| msgid "Default values are j and F"
4061
  msgid "Default values are j and M"
@@ -4098,10 +4129,12 @@ msgid "Dates"
4098
  msgstr "Daten"
4099
 
4100
  #: app/features/mec/meta_boxes/filter.php:183
 
4101
  msgid "Include Expired Events"
4102
  msgstr "Inklusive abgelaufene Events"
4103
 
4104
  #: app/features/mec/meta_boxes/filter.php:190
 
4105
  msgid ""
4106
  "You have ability to include past/expired events if you like so it will show "
4107
  "upcoming and expired events based on start date that you selected."
@@ -4111,6 +4144,7 @@ msgstr ""
4111
  "Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
4112
 
4113
  #: app/features/mec/meta_boxes/filter.php:197
 
4114
  msgid "Show Only Expired Events"
4115
  msgstr "Nur abgelaufene Events anzeigen"
4116
 
@@ -4122,6 +4156,7 @@ msgid ""
4122
  msgstr ""
4123
 
4124
  #: app/features/mec/meta_boxes/filter.php:204
 
4125
  msgid "only"
4126
  msgstr ""
4127
 
@@ -4130,10 +4165,12 @@ msgid "older"
4130
  msgstr ""
4131
 
4132
  #: app/features/mec/meta_boxes/filter.php:212
 
4133
  msgid "Show Only Ongoing Events"
4134
  msgstr "Zeigt nur laufende Events"
4135
 
4136
  #: app/features/mec/meta_boxes/filter.php:219
 
4137
  msgid "It shows only ongoing events on List and Grid skins."
4138
  msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
4139
 
@@ -4229,7 +4266,7 @@ msgstr "Such Formular anzeigen"
4229
  #: app/features/mec/meta_boxes/search_form.php:716
4230
  #: app/features/mec/meta_boxes/search_form.php:723
4231
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
4232
- #: app/features/mec/settings.php:413
4233
  msgid "Disabled"
4234
  msgstr "Deaktiviert"
4235
 
@@ -4244,9 +4281,9 @@ msgstr "Deaktiviert"
4244
  #: app/features/mec/meta_boxes/search_form.php:535
4245
  #: app/features/mec/meta_boxes/search_form.php:596
4246
  #: app/features/mec/meta_boxes/search_form.php:693
4247
- #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4248
- #: app/features/search.php:79 app/features/speakers.php:61
4249
- #: app/features/speakers.php:269 app/libraries/main.php:5289
4250
  #: app/libraries/skins.php:936
4251
  msgid "Speaker"
4252
  msgstr ""
@@ -4262,8 +4299,8 @@ msgstr ""
4262
  #: app/features/mec/meta_boxes/search_form.php:542
4263
  #: app/features/mec/meta_boxes/search_form.php:603
4264
  #: app/features/mec/meta_boxes/search_form.php:700
4265
- #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4266
- #: app/features/search.php:83 app/libraries/skins.php:962
4267
  #, fuzzy
4268
  #| msgid "Tags"
4269
  msgid "Tag"
@@ -4348,14 +4385,14 @@ msgid "Show Google Maps on event page"
4348
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
4349
 
4350
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4351
- #: app/features/mec/settings.php:856 app/features/mec/settings.php:861
4352
- #: app/features/mec/settings.php:909 app/features/mec/settings.php:933
4353
- #: app/features/mec/settings.php:957
4354
  msgid "API Key"
4355
  msgstr "API Schlüssel"
4356
 
4357
- #: app/features/mec/modules.php:86 app/features/mec/settings.php:862
4358
- #: app/features/mec/settings.php:875
4359
  msgid "Required!"
4360
  msgstr "Erforderlich (Pflichtfeld)"
4361
 
@@ -5004,7 +5041,7 @@ msgstr ""
5004
  "Informieren, dass eine neue Buchung eingegangen ist."
5005
 
5006
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
5007
- #: app/libraries/notifications.php:603
5008
  msgid "Booking Reminder"
5009
  msgstr "Buchungs Erinnerung"
5010
 
@@ -5067,8 +5104,8 @@ msgid "Status of event"
5067
  msgstr "Status der Veranstaltung"
5068
 
5069
  #: app/features/mec/notifications.php:720
5070
- #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
5071
- #: app/features/mec/settings.php:738
5072
  msgid "Event Note"
5073
  msgstr "Veranstaltungsnotiz"
5074
 
@@ -5272,7 +5309,7 @@ msgid "You can enable/disable Schema scripts"
5272
  msgstr ""
5273
 
5274
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5275
- #: app/libraries/main.php:5293
5276
  msgid "Weekdays"
5277
  msgstr "Wochentage"
5278
 
@@ -5334,98 +5371,110 @@ msgid ""
5334
  "12 AM and you don't want those events considered as multiple days events!"
5335
  msgstr ""
5336
 
5337
- #: app/features/mec/settings.php:224 app/libraries/main.php:532
 
 
 
 
 
 
 
 
 
 
 
 
5338
  msgid "Archive Pages"
5339
  msgstr ""
5340
 
5341
- #: app/features/mec/settings.php:227 app/features/mec/settings.php:232
5342
  msgid "Archive Page Title"
5343
  msgstr "Titel der Archivseite"
5344
 
5345
- #: app/features/mec/settings.php:233
5346
  #, fuzzy
5347
  #| msgid "Default value is Events"
5348
  msgid "Default value is Events - It's title of the page"
5349
  msgstr "Der Standardwert ist Ereignisse (Events)"
5350
 
5351
- #: app/features/mec/settings.php:241 app/features/mec/settings.php:309
5352
  msgid "Archive Page Skin"
5353
  msgstr "Skin Seite Archiv"
5354
 
5355
- #: app/features/mec/settings.php:249
5356
  #, fuzzy
5357
  #| msgid "Edit shortcodes"
5358
  msgid "Put shortcode..."
5359
  msgstr "Shortcode ändern"
5360
 
5361
- #: app/features/mec/settings.php:252 app/features/mec/settings.php:267
5362
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:279
5363
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:326
5364
- #: app/features/mec/settings.php:341 app/features/mec/settings.php:344
5365
- #: app/features/mec/settings.php:353 app/features/mec/settings.php:379
5366
  #, fuzzy
5367
  #| msgid "The event is ongoing."
5368
  msgid "There is no skins"
5369
  msgstr "Die Veranstaltung ist im Gange."
5370
 
5371
- #: app/features/mec/settings.php:255 app/features/mec/settings.php:329
5372
  #: app/features/mec/single.php:69
5373
  msgid "Modern Style"
5374
  msgstr "Moderner Stil"
5375
 
5376
- #: app/features/mec/settings.php:297 app/features/mec/settings.php:371
5377
  #, fuzzy
5378
  #| msgid "Colorful"
5379
  msgid "colorful"
5380
  msgstr "Farbenfroh"
5381
 
5382
- #: app/features/mec/settings.php:302 app/features/mec/settings.php:376
5383
  #, fuzzy
5384
  #| msgid "Plain Style"
5385
  msgid "Clean Style"
5386
  msgstr "Einfacher schlichter Stil"
5387
 
5388
- #: app/features/mec/settings.php:310
5389
  #, fuzzy
5390
  #| msgid "Default value is Calendar/Monthly View"
5391
  msgid "Default value is Calendar/Monthly View, But you can change it "
5392
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
5393
 
5394
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
5395
  msgid "See Demo"
5396
  msgstr ""
5397
 
5398
- #: app/features/mec/settings.php:318 app/features/mec/settings.php:383
5399
  msgid "Category Page Skin"
5400
  msgstr "Kategorie Seiten Skin"
5401
 
5402
- #: app/features/mec/settings.php:384
5403
  msgid ""
5404
  "Default value is List View - But you can change it Set a skin for all "
5405
  "categories."
5406
  msgstr ""
5407
 
5408
- #: app/features/mec/settings.php:392 app/features/mec/settings.php:400
5409
  msgid "Category Events Method"
5410
  msgstr ""
5411
 
5412
- #: app/features/mec/settings.php:396
5413
  msgid "Expired Events"
5414
  msgstr ""
5415
 
5416
- #: app/features/mec/settings.php:401
5417
  msgid "Default value is Upcoming Events"
5418
  msgstr ""
5419
 
5420
- #: app/features/mec/settings.php:409 app/features/mec/settings.php:417
5421
  msgid "Events Archive Status"
5422
  msgstr "Events Archiv Status"
5423
 
5424
- #: app/features/mec/settings.php:412
5425
  msgid "Enabled (Recommended)"
5426
  msgstr "Ist aktiviert (empfohlen)"
5427
 
5428
- #: app/features/mec/settings.php:418
5429
  msgid ""
5430
  "If you disable it, then you should create a page as archive page of MEC. "
5431
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -5435,18 +5484,18 @@ msgstr ""
5435
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
5436
  "werden alle MEC-Rewrite-Regeln deaktiviert."
5437
 
5438
- #: app/features/mec/settings.php:431 app/features/mec/settings.php:436
5439
  msgid "Main Slug"
5440
  msgstr "Main Slug"
5441
 
5442
- #: app/features/mec/settings.php:437
5443
  msgid ""
5444
  "Default value is events. You can not have a page with this name. MEC allows "
5445
  "you to create custom URLs for the permalinks and archives to enhance the "
5446
  "applicability and forward-compatibility of the links."
5447
  msgstr ""
5448
 
5449
- #: app/features/mec/settings.php:441 app/features/mec/settings.php:455
5450
  #, fuzzy
5451
  #| msgid ""
5452
  #| "Default value is events. Valid characters are lowercase a-z, - character "
@@ -5456,11 +5505,11 @@ msgstr ""
5456
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
5457
  "und Zahlen."
5458
 
5459
- #: app/features/mec/settings.php:445 app/features/mec/settings.php:450
5460
  msgid "Category Slug"
5461
  msgstr "Category Slug"
5462
 
5463
- #: app/features/mec/settings.php:451
5464
  #, fuzzy
5465
  #| msgid ""
5466
  #| "It's slug of MEC categories, you can change it to events-cat or something "
@@ -5476,94 +5525,94 @@ msgstr ""
5476
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
5477
  "category"
5478
 
5479
- #: app/features/mec/settings.php:463
5480
  msgid "Currency"
5481
  msgstr "Währung"
5482
 
5483
- #: app/features/mec/settings.php:473 app/features/mec/settings.php:478
5484
  msgid "Currency Sign"
5485
  msgstr "Währungssymbol"
5486
 
5487
- #: app/features/mec/settings.php:479
5488
  msgid "Default value will be \"currency\" if you leave it empty."
5489
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
5490
 
5491
- #: app/features/mec/settings.php:486
5492
  msgid "Currency Position"
5493
  msgstr "Position des Währungssymbols"
5494
 
5495
- #: app/features/mec/settings.php:489
5496
  msgid "Before $10"
5497
  msgstr "Vor $10"
5498
 
5499
- #: app/features/mec/settings.php:490
5500
  msgid "After 10$"
5501
  msgstr "Nach 10$"
5502
 
5503
- #: app/features/mec/settings.php:495
5504
  msgid "Thousand Separator"
5505
  msgstr "Tausendertrennzeichen"
5506
 
5507
- #: app/features/mec/settings.php:501
5508
  msgid "Decimal Separator"
5509
  msgstr "Dezimaltrennzeichen"
5510
 
5511
- #: app/features/mec/settings.php:511
5512
  msgid "No decimal"
5513
  msgstr "Keine Dezimale"
5514
 
5515
- #: app/features/mec/settings.php:522
5516
  msgid "Enable Google Recaptcha"
5517
  msgstr "Google Recaptcha aktivieren"
5518
 
5519
- #: app/features/mec/settings.php:529
5520
  msgid "Enable on booking form"
5521
  msgstr "Auf dem Buchungsformular aktivieren"
5522
 
5523
- #: app/features/mec/settings.php:535
5524
  #, fuzzy
5525
  #| msgid "Enable on \"Frontend Event Submittion\" form"
5526
  msgid "Enable on \"Frontend Event Submission\" form"
5527
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
5528
 
5529
- #: app/features/mec/settings.php:539
5530
  msgid "Site Key"
5531
  msgstr "Site Key (Seitenschlüssel)"
5532
 
5533
- #: app/features/mec/settings.php:545
5534
  msgid "Secret Key"
5535
  msgstr "Geheimschlüssel"
5536
 
5537
- #: app/features/mec/settings.php:557 app/features/mec/settings.php:565
5538
  msgid "Time Format"
5539
  msgstr "Zeitformat"
5540
 
5541
- #: app/features/mec/settings.php:560
5542
  msgid "12 hours format with AM/PM"
5543
  msgstr "12-Stunden-Format mit AM/FM"
5544
 
5545
- #: app/features/mec/settings.php:561
5546
  msgid "24 hours format"
5547
  msgstr "24-Stunden-Format"
5548
 
5549
- #: app/features/mec/settings.php:566
5550
  msgid "This option, affects the selection of Start/End time."
5551
  msgstr ""
5552
 
5553
- #: app/features/mec/settings.php:574
5554
  msgid "Events List Page"
5555
  msgstr "Seite Liste der Veranstaltungen"
5556
 
5557
- #: app/features/mec/settings.php:583 app/features/mec/settings.php:595
5558
  #, php-format
5559
  msgid "Put %s shortcode into the page."
5560
  msgstr "%s shortcode in die Seite einfügen"
5561
 
5562
- #: app/features/mec/settings.php:586
5563
  msgid "Add/Edit Events Page"
5564
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
5565
 
5566
- #: app/features/mec/settings.php:610
5567
  #, fuzzy
5568
  #| msgid ""
5569
  #| "User redirects to this page after booking. Leave it empty if you want to "
@@ -5575,48 +5624,48 @@ msgstr ""
5575
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
5576
  "es leer, wenn Sie es deaktivieren möchten."
5577
 
5578
- #: app/features/mec/settings.php:635
5579
  msgid "Enable event submission by guest (Not logged-in) users"
5580
  msgstr ""
5581
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
5582
  "erlauben"
5583
 
5584
- #: app/features/mec/settings.php:642
5585
  msgid "Enable mandatory email and name for guest user"
5586
  msgstr ""
5587
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
5588
 
5589
- #: app/features/mec/settings.php:646
5590
  msgid "Frontend Event Submission Sections"
5591
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
5592
 
5593
- #: app/features/mec/settings.php:668 app/widgets/single.php:119
5594
  msgid "Event Categories"
5595
  msgstr "Veranstaltungskategorien"
5596
 
5597
- #: app/features/mec/settings.php:674
5598
  msgid "Event Labels"
5599
  msgstr "Event Labels"
5600
 
5601
- #: app/features/mec/settings.php:686
5602
  msgid "Event Tags"
5603
  msgstr "Event Schlagworte"
5604
 
5605
- #: app/features/mec/settings.php:698 app/widgets/single.php:123
5606
  msgid "Event Organizer"
5607
  msgstr "Veranstaltungsmanager"
5608
 
5609
- #: app/features/mec/settings.php:716
5610
  msgid "Booking Options"
5611
  msgstr "Buchungsoptionen"
5612
 
5613
- #: app/features/mec/settings.php:722
5614
  #, fuzzy
5615
  #| msgid "Fees/Taxes Options"
5616
  msgid "Fees / Taxes Options"
5617
  msgstr "Gebühren/Steuer Optionen"
5618
 
5619
- #: app/features/mec/settings.php:739
5620
  #, php-format
5621
  msgid ""
5622
  "Users can put a note for editors while they're submitting the event. Also "
@@ -5628,103 +5677,103 @@ msgstr ""
5628
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
5629
  "erhalten."
5630
 
5631
- #: app/features/mec/settings.php:746 app/features/mec/settings.php:754
5632
  msgid "Visibility of Note"
5633
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
5634
 
5635
- #: app/features/mec/settings.php:749
5636
  msgid "Always"
5637
  msgstr "Immer"
5638
 
5639
- #: app/features/mec/settings.php:750
5640
  msgid "While event is not published"
5641
  msgstr "Das Ereignis wird nicht veröffentlicht"
5642
 
5643
- #: app/features/mec/settings.php:755
5644
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5645
  msgstr ""
5646
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
5647
  "Ereignis im Backend bearbeitet."
5648
 
5649
- #: app/features/mec/settings.php:766 app/libraries/main.php:537
5650
  msgid "User Profile"
5651
  msgstr ""
5652
 
5653
- #: app/features/mec/settings.php:768
5654
  #, php-format
5655
  msgid ""
5656
  "Put %s shortcode into your desired page. Then users are able to see history "
5657
  "of their bookings."
5658
  msgstr ""
5659
 
5660
- #: app/features/mec/settings.php:773 app/libraries/main.php:538
5661
  #, fuzzy
5662
  #| msgid "Search Form"
5663
  msgid "Search Bar"
5664
  msgstr "Suche Formular"
5665
 
5666
- #: app/features/mec/settings.php:775
5667
  #, php-format
5668
  msgid ""
5669
  "Put %s shortcode into your desired page. Then users are able to search events"
5670
  msgstr ""
5671
 
5672
- #: app/features/mec/settings.php:779
5673
  msgid "Ajax Live mode"
5674
  msgstr ""
5675
 
5676
- #: app/features/mec/settings.php:783
5677
  msgid "Ajax mode"
5678
  msgstr ""
5679
 
5680
- #: app/features/mec/settings.php:784
5681
  msgid ""
5682
  "if you enable this option, search button disappeared and to use this "
5683
  "feature, text input field must be enabled."
5684
  msgstr ""
5685
 
5686
- #: app/features/mec/settings.php:792
5687
  #, fuzzy
5688
  #| msgid "Modern Style"
5689
  msgid "Modern Type"
5690
  msgstr "Moderner Stil"
5691
 
5692
- #: app/features/mec/settings.php:796
5693
  #, fuzzy
5694
  #| msgid "Search Form"
5695
  msgid "Search bar fields"
5696
  msgstr "Suche Formular"
5697
 
5698
- #: app/features/mec/settings.php:838
5699
  #, fuzzy
5700
  #| msgid "Text Input"
5701
  msgid "Text input"
5702
  msgstr "Text eingeben"
5703
 
5704
- #: app/features/mec/settings.php:851
5705
  msgid "Enable Mailchimp Integration"
5706
  msgstr "Mailchimp Integration deaktivieren"
5707
 
5708
- #: app/features/mec/settings.php:869 app/features/mec/settings.php:874
5709
- #: app/features/mec/settings.php:915 app/features/mec/settings.php:963
5710
  msgid "List ID"
5711
  msgstr "List ID"
5712
 
5713
- #: app/features/mec/settings.php:882 app/features/mec/settings.php:890
5714
  msgid "Subscription Status"
5715
  msgstr "Buchungsstatus"
5716
 
5717
- #: app/features/mec/settings.php:885
5718
  msgid "Subscribe automatically"
5719
  msgstr "automatisch Anmelden/Abonnieren"
5720
 
5721
- #: app/features/mec/settings.php:886
5722
  msgid "Subscribe by verification"
5723
  msgstr ""
5724
  "Anmelden/Abonnieren durch Bestätigung\n"
5725
  " "
5726
 
5727
- #: app/features/mec/settings.php:891
5728
  msgid ""
5729
  "If you choose \"Subscribe by verification\" then an email will send to user "
5730
  "by mailchimp for subscription verification."
@@ -5732,71 +5781,71 @@ msgstr ""
5732
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5733
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5734
 
5735
- #: app/features/mec/settings.php:900 app/libraries/main.php:540
5736
  #, fuzzy
5737
  #| msgid "Mailchimp Integration"
5738
  msgid "Campaign Monitor Integration"
5739
  msgstr "Mailchimp Integration"
5740
 
5741
- #: app/features/mec/settings.php:904
5742
  #, fuzzy
5743
  #| msgid "Enable Mailchimp Integration"
5744
  msgid "Enable Campaign Monitor Integration"
5745
  msgstr "Mailchimp Integration deaktivieren"
5746
 
5747
- #: app/features/mec/settings.php:924 app/libraries/main.php:541
5748
  #, fuzzy
5749
  #| msgid "Mailchimp Integration"
5750
  msgid "MailerLite Integration"
5751
  msgstr "Mailchimp Integration"
5752
 
5753
- #: app/features/mec/settings.php:928
5754
  #, fuzzy
5755
  #| msgid "Enable Mailchimp Integration"
5756
  msgid "Enable MailerLite Integration"
5757
  msgstr "Mailchimp Integration deaktivieren"
5758
 
5759
- #: app/features/mec/settings.php:939
5760
  msgid "Group ID"
5761
  msgstr ""
5762
 
5763
- #: app/features/mec/settings.php:948 app/libraries/main.php:542
5764
  #, fuzzy
5765
  #| msgid "BuddyPress Integration"
5766
  msgid "Constant Contact Integration"
5767
  msgstr "Buddy Press Integration"
5768
 
5769
- #: app/features/mec/settings.php:952
5770
  #, fuzzy
5771
  #| msgid "Enable Mailchimp Integration"
5772
  msgid "Enable constantcontact Integration"
5773
  msgstr "Mailchimp Integration deaktivieren"
5774
 
5775
- #: app/features/mec/settings.php:974
5776
  #, fuzzy
5777
  #| msgid "Filter Options"
5778
  msgid "Upload Field Options"
5779
  msgstr "Filteroptionen"
5780
 
5781
- #: app/features/mec/settings.php:976
5782
  msgid "Mime types"
5783
  msgstr ""
5784
 
5785
- #: app/features/mec/settings.php:980
5786
  msgid "Split mime types with \",\"."
5787
  msgstr ""
5788
 
5789
- #: app/features/mec/settings.php:980
5790
  msgid "Default: jpeg,jpg,png,pdf"
5791
  msgstr ""
5792
 
5793
- #: app/features/mec/settings.php:983
5794
  #, fuzzy
5795
  #| msgid "Amount (Per Ticket)"
5796
  msgid "Maximum file size"
5797
  msgstr "Betrag (pro Ticket)"
5798
 
5799
- #: app/features/mec/settings.php:987
5800
  msgid "The unit is Megabyte \"MB\""
5801
  msgstr ""
5802
 
@@ -6565,7 +6614,7 @@ msgstr "z.B.. max@mustermann.com"
6565
  msgid "eg. https://webnus.net"
6566
  msgstr "http://webnus.net"
6567
 
6568
- #: app/features/organizers.php:312 app/libraries/main.php:5317
6569
  #: app/skins/single.php:862
6570
  msgid "Other Organizers"
6571
  msgstr "Andere Veranstalter"
@@ -6577,13 +6626,73 @@ msgstr ""
6577
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
6578
  "auswählen, wenn Sie möchten."
6579
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6580
  #: app/features/profile.php:74
6581
  #, fuzzy, php-format
6582
  #| msgid "Please %s/%s in order to submit new events."
6583
  msgid "Please %s/%s in order to see your bookings / profile."
6584
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
6585
 
6586
- #: app/features/profile/profile.php:18 app/libraries/main.php:2142
6587
  #, fuzzy
6588
  #| msgid "Your booking cannot be canceled."
6589
  msgid "Your booking already canceled!"
@@ -6593,11 +6702,11 @@ msgstr "Ihre Buchung kann nicht storniert werden."
6593
  msgid "#"
6594
  msgstr ""
6595
 
6596
- #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6597
  msgid "Status"
6598
  msgstr ""
6599
 
6600
- #: app/features/profile/profile.php:59 app/libraries/main.php:2257
6601
  msgid "Attendees"
6602
  msgstr "Teilnehmer"
6603
 
@@ -6630,11 +6739,11 @@ msgstr ""
6630
  msgid "No bookings found!"
6631
  msgstr "Keine Buchungen gefunden"
6632
 
6633
- #: app/features/search.php:87 app/libraries/main.php:5283
6634
  msgid "label"
6635
  msgstr "label"
6636
 
6637
- #: app/features/search.php:121
6638
  msgid "Please enter at least 3 characters and try again"
6639
  msgstr ""
6640
 
@@ -6657,7 +6766,7 @@ msgid "No search result."
6657
  msgstr ""
6658
 
6659
  #: app/features/search_bar/search_result.php:11
6660
- #: app/libraries/notifications.php:947 app/libraries/render.php:488
6661
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6662
  #: app/skins/single.php:160 app/skins/single.php:753
6663
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6785,51 +6894,51 @@ msgctxt "plugin link"
6785
  msgid "Upgrade"
6786
  msgstr ""
6787
 
6788
- #: app/libraries/factory.php:356
6789
  msgid "day"
6790
  msgstr "Tag"
6791
 
6792
- #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6793
- #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6794
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6795
  msgid "days"
6796
  msgstr "Tage"
6797
 
6798
- #: app/libraries/factory.php:358
6799
  msgid "hour"
6800
  msgstr "Stunde"
6801
 
6802
- #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6803
- #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6804
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6805
  msgid "hours"
6806
  msgstr "Stunden"
6807
 
6808
- #: app/libraries/factory.php:360
6809
  msgid "minute"
6810
  msgstr "Minute"
6811
 
6812
- #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6813
- #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6814
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6815
  msgid "minutes"
6816
  msgstr "Minuten"
6817
 
6818
- #: app/libraries/factory.php:362
6819
  msgid "second"
6820
  msgstr "Sekunde"
6821
 
6822
- #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6823
- #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6824
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6825
  msgid "seconds"
6826
  msgstr "Sekunden"
6827
 
6828
- #: app/libraries/factory.php:411
6829
  msgid "MEC Single Sidebar"
6830
  msgstr "MEC Single Sidebar"
6831
 
6832
- #: app/libraries/factory.php:412
6833
  msgid "Custom sidebar for single and modal page of MEC."
6834
  msgstr "Custom sidebar for single and modal page of MEC."
6835
 
@@ -6839,38 +6948,38 @@ msgstr ""
6839
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
6840
  "Beitrag handelt."
6841
 
6842
- #: app/libraries/main.php:331 app/libraries/main.php:1758
6843
- #: app/libraries/main.php:1783
6844
  msgid "Grid View"
6845
  msgstr "Rasterdarstellung"
6846
 
6847
- #: app/libraries/main.php:332 app/libraries/main.php:1759
6848
- #: app/libraries/main.php:1784
6849
  msgid "Agenda View"
6850
  msgstr "Agendaansicht"
6851
 
6852
- #: app/libraries/main.php:333 app/libraries/main.php:1750
6853
- #: app/libraries/main.php:1775
6854
  msgid "Full Calendar"
6855
  msgstr "Ganzer Kalender"
6856
 
6857
- #: app/libraries/main.php:335 app/libraries/main.php:1752
6858
- #: app/libraries/main.php:1777
6859
  msgid "Calendar/Monthly View"
6860
  msgstr "Kalender-/Monatsansicht"
6861
 
6862
- #: app/libraries/main.php:338 app/libraries/main.php:1755
6863
- #: app/libraries/main.php:1780
6864
  msgid "Timetable View"
6865
  msgstr "Stundenplan"
6866
 
6867
- #: app/libraries/main.php:339 app/libraries/main.php:1756
6868
- #: app/libraries/main.php:1781
6869
  msgid "Masonry View"
6870
  msgstr "Kachel Ansicht"
6871
 
6872
- #: app/libraries/main.php:340 app/libraries/main.php:1760
6873
- #: app/libraries/main.php:1785
6874
  msgid "Map View"
6875
  msgstr "Kartenansicht"
6876
 
@@ -6906,31 +7015,31 @@ msgstr "Stundenplan"
6906
  msgid "Tile View"
6907
  msgstr "Stundenplan"
6908
 
6909
- #: app/libraries/main.php:385 app/libraries/main.php:5295
6910
  msgid "SU"
6911
  msgstr "SO"
6912
 
6913
- #: app/libraries/main.php:386 app/libraries/main.php:5296
6914
  msgid "MO"
6915
  msgstr "MO"
6916
 
6917
- #: app/libraries/main.php:387 app/libraries/main.php:5297
6918
  msgid "TU"
6919
  msgstr "DI"
6920
 
6921
- #: app/libraries/main.php:388 app/libraries/main.php:5298
6922
  msgid "WE"
6923
  msgstr "MI"
6924
 
6925
- #: app/libraries/main.php:389 app/libraries/main.php:5299
6926
  msgid "TH"
6927
  msgstr "DO"
6928
 
6929
- #: app/libraries/main.php:390 app/libraries/main.php:5300
6930
  msgid "FR"
6931
  msgstr "FR"
6932
 
6933
- #: app/libraries/main.php:391 app/libraries/main.php:5301
6934
  msgid "SA"
6935
  msgstr "SA"
6936
 
@@ -7005,367 +7114,367 @@ msgstr "Veranstaltungen an diesem Ort "
7005
  msgid "Event at this location"
7006
  msgstr "Veranstaltung an diesem Ort "
7007
 
7008
- #: app/libraries/main.php:1528
7009
  msgid "Facebook"
7010
  msgstr "Facebook"
7011
 
7012
- #: app/libraries/main.php:1529
7013
  msgid "Twitter"
7014
  msgstr "Twitter"
7015
 
7016
- #: app/libraries/main.php:1530 app/libraries/main.php:1587
7017
  msgid "Linkedin"
7018
  msgstr "Linkedin"
7019
 
7020
- #: app/libraries/main.php:1531 app/libraries/main.php:1623
7021
  msgid "VK"
7022
  msgstr ""
7023
 
7024
- #: app/libraries/main.php:1532
7025
  msgid "Tumblr"
7026
  msgstr ""
7027
 
7028
- #: app/libraries/main.php:1533
7029
  msgid "Pinterest"
7030
  msgstr ""
7031
 
7032
- #: app/libraries/main.php:1534
7033
  msgid "Flipboard"
7034
  msgstr ""
7035
 
7036
- #: app/libraries/main.php:1535
7037
  #, fuzzy
7038
  #| msgid "Tickets"
7039
  msgid "GetPocket"
7040
  msgstr "Tickets"
7041
 
7042
- #: app/libraries/main.php:1536
7043
  msgid "Reddit"
7044
  msgstr ""
7045
 
7046
- #: app/libraries/main.php:1537
7047
  msgid "WhatsApp"
7048
  msgstr ""
7049
 
7050
- #: app/libraries/main.php:1538
7051
  msgid "Telegram"
7052
  msgstr ""
7053
 
7054
- #: app/libraries/main.php:1557
7055
  msgid "Share on Facebook"
7056
  msgstr "Teilen auf Facebook"
7057
 
7058
- #: app/libraries/main.php:1572
7059
  msgid "Tweet"
7060
  msgstr "Tweet"
7061
 
7062
- #: app/libraries/main.php:1638
7063
  #, fuzzy
7064
  #| msgid "Share on Facebook"
7065
  msgid "Share on Tumblr"
7066
  msgstr "Teilen auf Facebook"
7067
 
7068
- #: app/libraries/main.php:1654
7069
  msgid "Share on Pinterest"
7070
  msgstr ""
7071
 
7072
- #: app/libraries/main.php:1670
7073
  #, fuzzy
7074
  #| msgid "Share on Facebook"
7075
  msgid "Share on Flipboard"
7076
  msgstr "Teilen auf Facebook"
7077
 
7078
- #: app/libraries/main.php:1688
7079
  #, fuzzy
7080
  #| msgid "Share on Facebook"
7081
  msgid "Share on GetPocket"
7082
  msgstr "Teilen auf Facebook"
7083
 
7084
- #: app/libraries/main.php:1704
7085
  #, fuzzy
7086
  #| msgid "Share on Facebook"
7087
  msgid "Share on Reddit"
7088
  msgstr "Teilen auf Facebook"
7089
 
7090
- #: app/libraries/main.php:1720
7091
  msgid "Share on Telegram"
7092
  msgstr ""
7093
 
7094
- #: app/libraries/main.php:1738
7095
  msgid "Share on WhatsApp"
7096
  msgstr ""
7097
 
7098
- #: app/libraries/main.php:1761
7099
  #, fuzzy
7100
  #| msgid "Shortcode"
7101
  msgid "Custom Shortcode"
7102
  msgstr "Shortcode"
7103
 
7104
- #: app/libraries/main.php:2122
7105
  #, fuzzy
7106
  #| msgid "Your booking successfully verified."
7107
  msgid "Your booking already verified!"
7108
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
7109
 
7110
- #: app/libraries/main.php:2127
7111
  msgid "Your booking successfully verified."
7112
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
7113
 
7114
- #: app/libraries/main.php:2128
7115
  msgid "Your booking cannot verify!"
7116
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
7117
 
7118
- #: app/libraries/main.php:2147
7119
  msgid "Your booking successfully canceled."
7120
  msgstr "Ihre Buchung wurde erfolgreich storniert."
7121
 
7122
- #: app/libraries/main.php:2148
7123
  msgid "Your booking cannot be canceled."
7124
  msgstr "Ihre Buchung kann nicht storniert werden."
7125
 
7126
- #: app/libraries/main.php:2152
7127
  msgid "You canceled the payment successfully."
7128
  msgstr "Sie haben die Zahlung erfolgreich storniert."
7129
 
7130
- #: app/libraries/main.php:2156
7131
  msgid "You returned from payment gateway successfully."
7132
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
7133
 
7134
- #: app/libraries/main.php:2172
7135
  #, fuzzy
7136
  #| msgid "Cannot find the booking!"
7137
  msgid "Cannot find the invoice!"
7138
  msgstr "Kann die Buchung nicht finden!"
7139
 
7140
- #: app/libraries/main.php:2172
7141
  #, fuzzy
7142
  #| msgid "Booking is invalid."
7143
  msgid "Invoice is invalid."
7144
  msgstr "Buchung ist ungültig."
7145
 
7146
- #: app/libraries/main.php:2192
7147
  msgid ""
7148
  "Your booking still is not confirmed. You able download it after confirmation!"
7149
  msgstr ""
7150
 
7151
- #: app/libraries/main.php:2192
7152
  #, fuzzy
7153
  #| msgid "Booking Confirmation"
7154
  msgid "Booking Not Confirmed."
7155
  msgstr "Buchungsbestätigung"
7156
 
7157
- #: app/libraries/main.php:2198
7158
  msgid "Cannot find the booking!"
7159
  msgstr "Kann die Buchung nicht finden!"
7160
 
7161
- #: app/libraries/main.php:2198
7162
  msgid "Booking is invalid."
7163
  msgstr "Buchung ist ungültig."
7164
 
7165
- #: app/libraries/main.php:2227
7166
  #, php-format
7167
  msgid "%s Invoice"
7168
  msgstr "% s Rechnung"
7169
 
7170
- #: app/libraries/main.php:2301
7171
  msgid "Billing"
7172
  msgstr "Abrechnung"
7173
 
7174
- #: app/libraries/main.php:2312
7175
  msgid "Total"
7176
  msgstr "Gesamt"
7177
 
7178
- #: app/libraries/main.php:2319
7179
  msgid "Payment"
7180
  msgstr "Bezahlung"
7181
 
7182
- #: app/libraries/main.php:2323
7183
  msgid "Gateway"
7184
  msgstr "Gateway"
7185
 
7186
- #: app/libraries/main.php:2331
7187
  #, fuzzy
7188
  #| msgid "Payment"
7189
  msgid "Payment Time"
7190
  msgstr "Bezahlung"
7191
 
7192
- #: app/libraries/main.php:2392
7193
  #, fuzzy
7194
  #| msgid "Request is invalid!"
7195
  msgid "Request is not valid."
7196
  msgstr "Die Anfrage ist ungültig!"
7197
 
7198
- #: app/libraries/main.php:2392
7199
  msgid "iCal export stopped!"
7200
  msgstr "iCal Export wurde unterbrochen!"
7201
 
7202
- #: app/libraries/main.php:2736 app/libraries/main.php:2766
7203
- #: app/libraries/main.php:2795 app/libraries/main.php:2825
7204
- #: app/libraries/main.php:2854 app/libraries/main.php:2883
7205
- #: app/libraries/main.php:2912 app/libraries/main.php:2941
7206
- #: app/libraries/main.php:2970 app/libraries/main.php:2994
7207
- #: app/libraries/main.php:3038 app/libraries/main.php:3082
7208
- #: app/libraries/main.php:3129 app/libraries/main.php:3176
7209
  msgid "Sort"
7210
  msgstr "Sortieren"
7211
 
7212
- #: app/libraries/main.php:2742 app/libraries/main.php:2772
7213
- #: app/libraries/main.php:2801 app/libraries/main.php:2831
7214
- #: app/libraries/main.php:2860 app/libraries/main.php:2889
7215
- #: app/libraries/main.php:2918 app/libraries/main.php:2947
7216
- #: app/libraries/main.php:3000 app/libraries/main.php:3044
7217
- #: app/libraries/main.php:3088 app/libraries/main.php:3135
7218
  msgid "Required Field"
7219
  msgstr "Pflichtfeld"
7220
 
7221
- #: app/libraries/main.php:2748 app/libraries/main.php:2778
7222
- #: app/libraries/main.php:2807 app/libraries/main.php:2837
7223
- #: app/libraries/main.php:2866 app/libraries/main.php:2895
7224
- #: app/libraries/main.php:2924 app/libraries/main.php:2953
7225
- #: app/libraries/main.php:3006 app/libraries/main.php:3050
7226
- #: app/libraries/main.php:3094 app/libraries/main.php:3141
7227
  msgid "Insert a label for this field"
7228
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
7229
 
7230
- #: app/libraries/main.php:2976
7231
  msgid "HTML and shortcode are allowed."
7232
  msgstr "HTML und shortcodes sind erlaubt."
7233
 
7234
- #: app/libraries/main.php:3019 app/libraries/main.php:3063
7235
- #: app/libraries/main.php:3107
7236
  msgid "Option"
7237
  msgstr "Option"
7238
 
7239
- #: app/libraries/main.php:3141
7240
  #, php-format
7241
  msgid "Instead of %s, the page title with a link will be show."
7242
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
7243
 
7244
- #: app/libraries/main.php:3143
7245
  msgid "Agreement Page"
7246
  msgstr "Zustimmungsseite"
7247
 
7248
- #: app/libraries/main.php:3154
7249
  msgid "Checked by default"
7250
  msgstr ""
7251
 
7252
- #: app/libraries/main.php:3155
7253
  msgid "Unchecked by default"
7254
  msgstr ""
7255
 
7256
- #: app/libraries/main.php:3178
7257
  msgid "Insert a label for this option"
7258
  msgstr "Ein neues Label für diese Option einfügen"
7259
 
7260
- #: app/libraries/main.php:3193
7261
  msgid "Free"
7262
  msgstr "kostenfrei"
7263
 
7264
- #: app/libraries/main.php:3799 app/libraries/main.php:5545
7265
  #, fuzzy
7266
  #| msgid "M.E. Calendar"
7267
  msgid "M.E. Calender"
7268
  msgstr "M.E. Calender"
7269
 
7270
- #: app/libraries/main.php:3954
7271
  #, php-format
7272
  msgid "Copy of %s"
7273
  msgstr "Kopie von %s"
7274
 
7275
- #: app/libraries/main.php:4672
7276
  msgid "Booked an event."
7277
  msgstr "Eine Veranstaltung wurde gebucht."
7278
 
7279
- #: app/libraries/main.php:4713
7280
  #, php-format
7281
  msgid "%s booked %s event."
7282
  msgstr "%s gebuchtes %s Event"
7283
 
7284
- #: app/libraries/main.php:5278
7285
  msgid "Taxonomies"
7286
  msgstr "Klassifizierung "
7287
 
7288
- #: app/libraries/main.php:5280
7289
  msgid "Category Plural Label"
7290
  msgstr "Kategorien"
7291
 
7292
- #: app/libraries/main.php:5281
7293
  msgid "Category Singular Label"
7294
  msgstr "Kategorie"
7295
 
7296
- #: app/libraries/main.php:5282
7297
  msgid "Label Plural Label"
7298
  msgstr "Labels"
7299
 
7300
- #: app/libraries/main.php:5283
7301
  msgid "Label Singular Label"
7302
  msgstr "Label"
7303
 
7304
- #: app/libraries/main.php:5284
7305
  msgid "Location Plural Label"
7306
  msgstr "Veranstaltungsorte"
7307
 
7308
- #: app/libraries/main.php:5285
7309
  msgid "Location Singular Label"
7310
  msgstr "Veranstaltungsort"
7311
 
7312
- #: app/libraries/main.php:5286
7313
  msgid "Organizer Plural Label"
7314
  msgstr "Veranstalter"
7315
 
7316
- #: app/libraries/main.php:5287
7317
  msgid "Organizer Singular Label"
7318
  msgstr "Veranstalter"
7319
 
7320
- #: app/libraries/main.php:5288
7321
  #, fuzzy
7322
  #| msgid "Label Plural Label"
7323
  msgid "Speaker Plural Label"
7324
  msgstr "Labels"
7325
 
7326
- #: app/libraries/main.php:5289
7327
  #, fuzzy
7328
  #| msgid "Label Singular Label"
7329
  msgid "Speaker Singular Label"
7330
  msgstr "Label"
7331
 
7332
- #: app/libraries/main.php:5295
7333
  msgid "Sunday abbreviation"
7334
  msgstr "Sonntag Abkürzung"
7335
 
7336
- #: app/libraries/main.php:5296
7337
  msgid "Monday abbreviation"
7338
  msgstr "Montag Abkürzung"
7339
 
7340
- #: app/libraries/main.php:5297
7341
  msgid "Tuesday abbreviation"
7342
  msgstr "Dienstag Abkürzung"
7343
 
7344
- #: app/libraries/main.php:5298
7345
  msgid "Wednesday abbreviation"
7346
  msgstr "Mittwoch Abkürzung"
7347
 
7348
- #: app/libraries/main.php:5299
7349
  msgid "Thursday abbreviation"
7350
  msgstr "Donnerstag Abkürzung"
7351
 
7352
- #: app/libraries/main.php:5300
7353
  msgid "Friday abbreviation"
7354
  msgstr "Freitag Abkürzung"
7355
 
7356
- #: app/libraries/main.php:5301
7357
  msgid "Saturday abbreviation"
7358
  msgstr "Samstag Abkürzung "
7359
 
7360
- #: app/libraries/main.php:5305
7361
  msgid "Others"
7362
  msgstr "Andere"
7363
 
7364
- #: app/libraries/main.php:5307
7365
  msgid "Booking Success Message"
7366
  msgstr "Buchung erfolgreich Mitteilung"
7367
 
7368
- #: app/libraries/main.php:5307
7369
  msgid ""
7370
  "Thanks for your booking. Your tickets booked, booking verification might be "
7371
  "needed, please check your email."
@@ -7373,15 +7482,15 @@ msgstr ""
7373
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
7374
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
7375
 
7376
- #: app/libraries/main.php:5308 app/widgets/single.php:131
7377
  msgid "Register Button"
7378
  msgstr "Register Button"
7379
 
7380
- #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7381
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7382
- #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7383
- #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7384
- #: app/skins/list/render.php:108 app/skins/list/render.php:194
7385
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
7386
  #: app/skins/single.php:777 app/skins/single/default.php:255
7387
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
@@ -7394,103 +7503,103 @@ msgstr "Register Button"
7394
  msgid "REGISTER"
7395
  msgstr "ANMELDEN"
7396
 
7397
- #: app/libraries/main.php:5309
7398
  msgid "View Detail Button"
7399
  msgstr "Ansicht Detail Button"
7400
 
7401
- #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7402
- #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7403
- #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7404
- #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7405
- #: app/skins/list/render.php:194 app/skins/masonry/render.php:188
7406
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
7407
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
7408
  #: app/skins/slider/render.php:320
7409
  msgid "View Detail"
7410
  msgstr "Details "
7411
 
7412
- #: app/libraries/main.php:5310
7413
  msgid "Event Detail Button"
7414
  msgstr "Event Detail Button"
7415
 
7416
- #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7417
  msgid "Event Detail"
7418
  msgstr "Veranstaltungsdetails"
7419
 
7420
- #: app/libraries/main.php:5312
7421
  msgid "More Info Link"
7422
  msgstr "Link Mehr Informationen"
7423
 
7424
- #: app/libraries/main.php:5315
7425
  msgid "Ticket (Singular)"
7426
  msgstr "Ticket"
7427
 
7428
- #: app/libraries/main.php:5316
7429
  msgid "Tickets (Plural)"
7430
  msgstr "Tickets"
7431
 
7432
- #: app/libraries/main.php:5402
7433
  msgid "EventON"
7434
  msgstr "EventON"
7435
 
7436
- #: app/libraries/main.php:5403
7437
  msgid "The Events Calendar"
7438
  msgstr "The Events Calendar"
7439
 
7440
- #: app/libraries/main.php:5404
7441
  msgid "Events Schedule WP Plugin"
7442
  msgstr "Event Zeitplan WP-Plugin"
7443
 
7444
- #: app/libraries/main.php:5405
7445
  msgid "Calendarize It"
7446
  msgstr ""
7447
 
7448
- #: app/libraries/main.php:5406
7449
  #, fuzzy
7450
  #| msgid "No Search Options"
7451
  msgid "Event Espresso"
7452
  msgstr "Keine Suchoptionen"
7453
 
7454
- #: app/libraries/main.php:5407
7455
  #, fuzzy
7456
  #| msgid "Event Repeating"
7457
  msgid "Events Manager (Recurring)"
7458
  msgstr "Wiederholende Veranstaltung"
7459
 
7460
- #: app/libraries/main.php:5408
7461
  #, fuzzy
7462
  #| msgid "Modern Events Calendar"
7463
  msgid "Events Manager (Single)"
7464
  msgstr "Moderner Event Kalender "
7465
 
7466
- #: app/libraries/main.php:5482 app/libraries/main.php:5502
7467
  msgid "Confirmed"
7468
  msgstr "Bestätigt"
7469
 
7470
- #: app/libraries/main.php:5483 app/libraries/main.php:5510
7471
  msgid "Rejected"
7472
  msgstr "Abgelehnt"
7473
 
7474
- #: app/libraries/main.php:5484 app/libraries/main.php:5506
7475
  msgid "Pending"
7476
  msgstr "Ausstehend"
7477
 
7478
- #: app/libraries/main.php:5532
7479
  msgid "Waiting"
7480
  msgstr "in Bearbeitung"
7481
 
7482
- #: app/libraries/main.php:5737 app/libraries/render.php:80
7483
  #: app/libraries/render.php:418
7484
  msgid "Skin controller does not exist."
7485
  msgstr "Skin contoller existiert nicht."
7486
 
7487
- #: app/libraries/main.php:5851
7488
  #, fuzzy
7489
  #| msgid "Sold out!"
7490
  msgid "Sold Out"
7491
  msgstr "Ausverkauft!"
7492
 
7493
- #: app/libraries/main.php:5859
7494
  #, fuzzy
7495
  #| msgid "Ticket"
7496
  msgid "Last Few Tickets"
@@ -7504,48 +7613,48 @@ msgstr "Bitte bestätigen Sie Ihre email."
7504
  msgid "Your booking is received."
7505
  msgstr "Ihre Buchung ist eingegangen"
7506
 
7507
- #: app/libraries/notifications.php:271
7508
  msgid "Your booking is confirmed."
7509
  msgstr "Ihre Buchung wurde bestätigt."
7510
 
7511
- #: app/libraries/notifications.php:435
7512
  #, fuzzy
7513
  #| msgid "Your booking cannot be canceled."
7514
  msgid "booking canceled."
7515
  msgstr "Ihre Buchung kann nicht storniert werden."
7516
 
7517
- #: app/libraries/notifications.php:510
7518
  msgid "A new booking is received."
7519
  msgstr "Eine neue Buchung ist eingegangen."
7520
 
7521
- #: app/libraries/notifications.php:734
7522
  msgid "A new event is added."
7523
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
7524
 
7525
- #: app/libraries/notifications.php:803
7526
  #, fuzzy
7527
  #| msgid "The event published."
7528
  msgid "Your event is published."
7529
  msgstr "Die Veranstaltung wurde veröffentlicht."
7530
 
7531
- #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7532
- #: app/libraries/notifications.php:1052
7533
  msgid "to"
7534
  msgstr ""
7535
 
7536
- #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7537
  msgid "+ Add to Google Calendar"
7538
  msgstr "+ zum Google Calendar hinzufügen"
7539
 
7540
- #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7541
  msgid "+ iCal export"
7542
  msgstr "+ zu iCal exportieren"
7543
 
7544
- #: app/libraries/notifications.php:1131
7545
  msgid "Yes"
7546
  msgstr "Ja"
7547
 
7548
- #: app/libraries/notifications.php:1131
7549
  msgid "No"
7550
  msgstr "Nein"
7551
 
@@ -7603,12 +7712,6 @@ msgid "Fill other attendees information like the first form."
7603
  msgstr ""
7604
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
7605
 
7606
- #: app/modules/booking/steps/form.php:179
7607
- #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7608
- #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7609
- msgid "Next"
7610
- msgstr "Weiter"
7611
-
7612
  #: app/modules/booking/steps/message.php:7
7613
  msgid "Thanks for your booking."
7614
  msgstr "Vielen Dank für Ihre Buchung."
@@ -7750,13 +7853,13 @@ msgstr "Keine Veranstaltung gefunden"
7750
  msgid "Load More"
7751
  msgstr "Weitere anzeigen"
7752
 
7753
- #: app/skins/available_spot/tpl.php:160
7754
  msgid "Available Spot(s):"
7755
  msgstr "Verfügbare Spot (s):"
7756
 
7757
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7758
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7759
- #: app/skins/list/render.php:128
7760
  msgid "EVENT DETAIL"
7761
  msgstr "VERANSTALTUNGSDETAILS"
7762
 
@@ -7859,21 +7962,21 @@ msgstr "Woche %s"
7859
  msgid "Show events based on created shortcodes."
7860
  msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
7861
 
7862
- #: app/widgets/MEC.php:81
7863
  msgid "Title:"
7864
  msgstr "Titel:"
7865
 
7866
- #: app/widgets/MEC.php:88
7867
  msgid "Shortcode:"
7868
  msgstr "Shortcode:"
7869
 
7870
- #: app/widgets/MEC.php:98
7871
  #, fuzzy
7872
  #| msgid "Single Event Display Method"
7873
  msgid "Enable No Event Block Display: "
7874
  msgstr "Single Event Anzeigemethode"
7875
 
7876
- #: app/widgets/MEC.php:102
7877
  msgid "Create some calendars first."
7878
  msgstr "Erstellen Sie zuerst einige Kalender."
7879
 
@@ -7957,9 +8060,6 @@ msgstr "Webnus Team"
7957
  msgid "http://webnus.net"
7958
  msgstr "http://webnus.net"
7959
 
7960
- #~ msgid "Booking reminder notification is not enabled!"
7961
- #~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
7962
-
7963
  #~ msgid "Booking module is not enabled!"
7964
  #~ msgstr "Buchungsmodul ist nicht aktiviert!"
7965
 
@@ -8357,6 +8457,9 @@ msgstr "http://webnus.net"
8357
  #~ msgid "Organizer Payment Credentials"
8358
  #~ msgstr "Name des Veranstalters des gebuchten Events"
8359
 
 
 
 
8360
  #, fuzzy
8361
  #~| msgid "%s Email"
8362
  #~ msgid "Mass Email"
@@ -8408,9 +8511,6 @@ msgstr "http://webnus.net"
8408
  #~ msgid "Event is not repeating. No dates exist for this event!"
8409
  #~ msgstr "Rabatt ist für diese Veranstaltung nicht gültig!"
8410
 
8411
- #~ msgid "It shows only expired/past events."
8412
- #~ msgstr "Zeigt nur abgelaufene / vergangene Events."
8413
-
8414
  #~ msgid "Security nonce is missing."
8415
  #~ msgstr "Sicherheits-Nonce fehlt."
8416
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-02-05 11:24+0330\n"
6
+ "PO-Revision-Date: 2020-02-05 11:28+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:439
31
+ #: app/features/mec.php:470 app/features/mec.php:500
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
68
  msgstr "Alles Auswählen"
69
 
70
  #: app/features/colors.php:50 app/features/fes/form.php:807
71
+ #: app/features/mec/settings.php:688
72
  msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
75
+ #: app/features/contextual.php:55 app/features/mec.php:415
76
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
77
+ #: app/features/mec/support.php:20 app/features/popup/shortcode.php:37
78
+ #: app/libraries/main.php:594
79
  msgid "Settings"
80
  msgstr "Einstellungen"
81
 
199
  msgid "General Options"
200
  msgstr "Allgemeine Einstellungen"
201
 
202
+ #: app/features/contextual.php:139 app/features/mec/settings.php:437
203
  #: app/libraries/main.php:533
204
  msgid "Slugs/Permalinks"
205
  msgstr "Slug/Permalinks"
208
  msgid "Event Details/Single Event Page"
209
  msgstr "Event Details / Einzelveranstaltungsseite"
210
 
211
+ #: app/features/contextual.php:166 app/features/mec/settings.php:469
212
  #: app/libraries/main.php:534
213
  msgid "Currency Options"
214
  msgstr "Währungseinstellungen"
218
  msgid "Google Maps Options"
219
  msgstr "Google Maps Einstellungen"
220
 
221
+ #: app/features/contextual.php:244 app/features/mec/settings.php:526
222
  #: app/libraries/main.php:535
223
  msgid "Google Recaptcha Options"
224
  msgstr "Google Recaptcha Einstellungen"
237
  msgid "Next Event Module"
238
  msgstr "Nächstes Veranstaltung Modul"
239
 
240
+ #: app/features/contextual.php:286 app/features/mec/settings.php:562
241
  #: app/libraries/main.php:536
242
  msgid "Frontend Event Submission"
243
  msgstr "Erstellung von Veranstaltungen im Frontend"
264
  msgid "BuddyPress Integration"
265
  msgstr "Buddy Press Integration"
266
 
267
+ #: app/features/contextual.php:334 app/features/mec/settings.php:855
268
  #: app/libraries/main.php:539
269
  msgid "Mailchimp Integration"
270
  msgstr "Mailchimp Integration"
281
  msgstr "Veranstaltungen"
282
 
283
  #: app/features/events.php:158 app/features/fes.php:223
284
+ #: app/features/mec/meta_boxes/display_options.php:1047
285
+ #: app/features/mec/meta_boxes/display_options.php:1103
286
+ #: app/features/mec/meta_boxes/display_options.php:1138
287
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
288
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
289
  #: app/skins/yearly_view/tpl.php:69
290
  msgid "Event"
291
  msgstr "Veranstaltung"
292
 
293
+ #: app/features/events.php:159 app/features/mec.php:401
294
  msgid "Add Event"
295
  msgstr "Veranstaltung hinzufügen"
296
 
320
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
321
 
322
  #: app/features/events.php:182 app/features/events.php:3320
323
+ #: app/features/mec/meta_boxes/display_options.php:958
324
  #: app/features/mec/meta_boxes/search_form.php:31
325
  #: app/features/mec/meta_boxes/search_form.php:93
326
  #: app/features/mec/meta_boxes/search_form.php:155
332
  #: app/features/mec/meta_boxes/search_form.php:514
333
  #: app/features/mec/meta_boxes/search_form.php:575
334
  #: app/features/mec/meta_boxes/search_form.php:672
335
+ #: app/features/mec/settings.php:808 app/features/mec/single.php:204
336
+ #: app/features/search.php:68 app/libraries/main.php:5282
337
  #: app/libraries/skins.php:858 app/skins/single.php:566
338
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
339
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
342
  msgstr "Kategorie"
343
 
344
  #: app/features/events.php:183 app/features/events.php:3275
345
+ #: app/features/fes/form.php:757 app/features/mec.php:403
346
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5281
347
  msgid "Categories"
348
  msgstr "Kategorien"
349
 
432
  msgstr "Wiederholende Veranstaltung"
433
 
434
  #: app/features/events.php:333 app/features/events.php:1286
435
+ #: app/features/mec/settings.php:718 app/skins/single.php:947
436
  msgid "Hourly Schedule"
437
  msgstr "Stundenplan"
438
 
451
  #: app/features/events.php:336 app/features/events.php:3322
452
  #: app/features/events.php:3513 app/features/events.php:3555
453
  #: app/features/ix.php:3510 app/features/ix.php:3551
454
+ #: app/features/mec/meta_boxes/display_options.php:961
455
  #: app/features/mec/meta_boxes/search_form.php:45
456
  #: app/features/mec/meta_boxes/search_form.php:107
457
  #: app/features/mec/meta_boxes/search_form.php:169
463
  #: app/features/mec/meta_boxes/search_form.php:528
464
  #: app/features/mec/meta_boxes/search_form.php:589
465
  #: app/features/mec/meta_boxes/search_form.php:686
466
+ #: app/features/mec/settings.php:820 app/features/mec/single.php:208
467
  #: app/features/organizers.php:58 app/features/organizers.php:204
468
  #: app/features/organizers.php:260 app/features/organizers.php:262
469
+ #: app/features/organizers.php:271 app/features/search.php:78
470
+ #: app/libraries/main.php:5288 app/libraries/skins.php:910
471
  #: app/skins/single.php:812 app/skins/single/default.php:217
472
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
473
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
475
  msgstr "Veranstalter"
476
 
477
  #: app/features/events.php:337 app/features/events.php:1172
478
+ #: app/features/fes/form.php:730 app/libraries/main.php:5315
479
  #: app/skins/single.php:589 app/skins/single/default.php:126
480
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
481
  #: app/skins/single/modern.php:208
494
  #: app/features/events.php:3802 app/features/fes.php:223
495
  #: app/features/fes/form.php:689 app/features/labels.php:178
496
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
497
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1120
498
  #: app/modules/booking/steps/form.php:37
499
  msgid "Name"
500
  msgstr "Name"
505
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
506
  #: app/features/organizers.php:111 app/features/organizers.php:152
507
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
508
+ #: app/features/speakers.php:196 app/libraries/main.php:1540
509
+ #: app/libraries/main.php:1609 app/libraries/main.php:2827
510
+ #: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
511
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
512
  #: app/skins/single.php:884 app/skins/single/default.php:234
513
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
525
  #: app/features/fes/form.php:251 app/features/ix.php:3510
526
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
527
  #: app/features/mec/dashboard.php:401
528
+ #: app/features/mec/meta_boxes/display_options.php:49
529
+ #: app/features/mec/meta_boxes/display_options.php:229
530
+ #: app/features/mec/meta_boxes/display_options.php:407
531
+ #: app/features/mec/meta_boxes/display_options.php:475
532
+ #: app/features/mec/meta_boxes/display_options.php:598
533
+ #: app/features/mec/meta_boxes/display_options.php:652
534
+ #: app/features/mec/meta_boxes/display_options.php:699
535
+ #: app/features/mec/meta_boxes/display_options.php:732
536
+ #: app/features/mec/meta_boxes/display_options.php:767
537
+ #: app/features/mec/meta_boxes/display_options.php:814
538
+ #: app/features/mec/meta_boxes/display_options.php:913
539
+ #: app/features/mec/meta_boxes/display_options.php:1161
540
+ #: app/features/mec/meta_boxes/display_options.php:1249
541
+ #: app/features/mec/meta_boxes/display_options.php:1341
542
+ #: app/features/mec/meta_boxes/display_options.php:1408
543
  msgid "Start Date"
544
  msgstr "Start Datum"
545
 
610
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
611
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
612
  #: app/features/mec/dashboard.php:71
613
+ #: app/features/mec/meta_boxes/display_options.php:80
614
+ #: app/features/mec/meta_boxes/display_options.php:93
615
+ #: app/features/mec/meta_boxes/display_options.php:106
616
+ #: app/features/mec/meta_boxes/display_options.php:117
617
+ #: app/features/mec/meta_boxes/display_options.php:129
618
+ #: app/features/mec/meta_boxes/display_options.php:260
619
+ #: app/features/mec/meta_boxes/display_options.php:272
620
+ #: app/features/mec/meta_boxes/display_options.php:284
621
+ #: app/features/mec/meta_boxes/display_options.php:297
622
+ #: app/features/mec/meta_boxes/display_options.php:308
623
+ #: app/features/mec/meta_boxes/display_options.php:321
624
+ #: app/features/mec/meta_boxes/display_options.php:332
625
+ #: app/features/mec/meta_boxes/display_options.php:439
626
+ #: app/features/mec/meta_boxes/display_options.php:615
627
+ #: app/features/mec/meta_boxes/display_options.php:945
628
+ #: app/features/mec/meta_boxes/display_options.php:1018
629
+ #: app/features/mec/meta_boxes/display_options.php:1030
630
+ #: app/features/mec/meta_boxes/display_options.php:1041
631
+ #: app/features/mec/meta_boxes/display_options.php:1073
632
+ #: app/features/mec/meta_boxes/display_options.php:1084
633
+ #: app/features/mec/meta_boxes/display_options.php:1097
634
+ #: app/features/mec/meta_boxes/display_options.php:1132
635
+ #: app/features/mec/meta_boxes/display_options.php:1181
636
+ #: app/features/mec/meta_boxes/display_options.php:1192
637
+ #: app/features/mec/meta_boxes/display_options.php:1203
638
+ #: app/features/mec/meta_boxes/display_options.php:1269
639
+ #: app/features/mec/meta_boxes/display_options.php:1282
640
+ #: app/features/mec/meta_boxes/display_options.php:1295
641
+ #: app/features/mec/meta_boxes/display_options.php:1308
642
+ #: app/features/mec/meta_boxes/display_options.php:1321
643
+ #: app/features/mec/meta_boxes/display_options.php:1372
644
+ #: app/features/mec/meta_boxes/display_options.php:1425
645
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
646
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
647
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
655
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
656
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
657
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
658
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:241
659
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
660
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:426
661
+ #: app/features/mec/settings.php:445 app/features/mec/settings.php:459
662
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:574
663
+ #: app/features/mec/settings.php:747 app/features/mec/settings.php:763
664
+ #: app/features/mec/settings.php:870 app/features/mec/settings.php:883
665
+ #: app/features/mec/settings.php:899 app/features/mec/single.php:42
666
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
667
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
668
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
854
  #: app/features/events.php:1168 app/features/events.php:3513
855
  #: app/features/events.php:3555 app/features/fes/form.php:727
856
  #: app/features/ix.php:3510 app/features/ix.php:3551
857
+ #: app/features/mec/settings.php:664 app/libraries/main.php:5314
858
  #: app/widgets/single.php:103
859
  msgid "Event Cost"
860
  msgstr ""
872
 
873
  #: app/features/events.php:1204 app/features/events.php:2541
874
  #: app/features/fes.php:223 app/features/mec/booking.php:491
875
+ #: app/features/profile/profile.php:53 app/libraries/main.php:2243
876
+ #: app/libraries/main.php:2885 app/modules/booking/steps/tickets.php:22
877
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
878
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
879
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
925
  #: app/features/events.php:2357 app/features/events.php:2399
926
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
927
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
928
+ #: app/libraries/main.php:2746 app/libraries/main.php:2776
929
+ #: app/libraries/main.php:2805 app/libraries/main.php:2835
930
+ #: app/libraries/main.php:2864 app/libraries/main.php:2893
931
+ #: app/libraries/main.php:2922 app/libraries/main.php:2951
932
+ #: app/libraries/main.php:2973 app/libraries/main.php:3004
933
+ #: app/libraries/main.php:3048 app/libraries/main.php:3092
934
+ #: app/libraries/main.php:3139 app/libraries/main.php:3178
935
  msgid "Remove"
936
  msgstr "Entfernen"
937
 
957
 
958
  #: app/features/events.php:1351 app/features/events.php:1384
959
  #: app/features/events.php:1445 app/features/fes/form.php:851
960
+ #: app/features/mec.php:411 app/features/mec/modules.php:52
961
+ #: app/features/mec/settings.php:712 app/features/speakers.php:62
962
+ #: app/libraries/main.php:565 app/libraries/main.php:5289
963
  #: app/modules/speakers/details.php:18
964
  msgid "Speakers"
965
  msgstr ""
971
  msgstr "Wochentage"
972
 
973
  #: app/features/events.php:1476 app/features/fes/form.php:704
974
+ #: app/features/mec/settings.php:658
975
  msgid "Event Links"
976
  msgstr "Veranstaltungslinks"
977
 
978
  #: app/features/events.php:1479 app/features/events.php:1485
979
+ #: app/features/fes/form.php:706 app/libraries/main.php:5312
980
  msgid "Event Link"
981
  msgstr "Veranstaltungslink"
982
 
1004
  msgstr ""
1005
 
1006
  #: app/features/events.php:1495 app/features/events.php:1508
1007
+ #: app/features/fes/form.php:711 app/libraries/main.php:5313
1008
  #: app/skins/single.php:673 app/skins/single/default.php:140
1009
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1010
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1042
  #: app/features/events.php:1596 app/features/events.php:1849
1043
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1044
  #: app/modules/booking/steps/tickets.php:40
1045
+ #: app/skins/available_spot/tpl.php:158
1046
  msgid "Unlimited"
1047
  msgstr "Unlimitiert"
1048
 
1078
  msgstr ""
1079
 
1080
  #: app/features/events.php:1653 app/libraries/book.php:60
1081
+ #: app/libraries/main.php:5317 app/modules/booking/steps/tickets.php:40
1082
  msgid "Tickets"
1083
  msgstr "Tickets"
1084
 
1182
 
1183
  #: app/features/events.php:1909 app/features/events.php:1935
1184
  #: app/features/events.php:2113 app/features/labels.php:60
1185
+ #: app/features/mec/meta_boxes/display_options.php:959
1186
  #: app/features/mec/meta_boxes/search_form.php:66
1187
  #: app/features/mec/meta_boxes/search_form.php:128
1188
  #: app/features/mec/meta_boxes/search_form.php:190
1194
  #: app/features/mec/meta_boxes/search_form.php:549
1195
  #: app/features/mec/meta_boxes/search_form.php:610
1196
  #: app/features/mec/meta_boxes/search_form.php:707
1197
+ #: app/features/mec/settings.php:840 app/features/mec/single.php:222
1198
  #: app/libraries/skins.php:988
1199
  msgid "Label"
1200
  msgstr "Label"
1239
  msgid "Amount (Per Booking)"
1240
  msgstr "Betrag (pro Buchung)"
1241
 
1242
+ #: app/features/events.php:2283 app/features/mec/settings.php:736
1243
  msgid "Ticket Variations / Options"
1244
  msgstr ""
1245
 
1265
  msgstr ""
1266
 
1267
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1268
+ #: app/libraries/main.php:2768
1269
  #, fuzzy
1270
  #| msgid "Name"
1271
  msgid "MEC Name"
1272
  msgstr "Name"
1273
 
1274
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1275
+ #: app/libraries/main.php:2797
1276
  #, fuzzy
1277
  #| msgid "Email"
1278
  msgid "MEC Email"
1279
  msgstr "Email"
1280
 
1281
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1282
+ #: app/libraries/main.php:2738
1283
  msgid "Text"
1284
  msgstr "Text"
1285
 
1286
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1287
  #: app/features/organizers.php:103 app/features/organizers.php:148
1288
  #: app/features/speakers.php:119 app/features/speakers.php:192
1289
+ #: app/features/speakers.php:271 app/libraries/main.php:2914
1290
  msgid "Tel"
1291
  msgstr "Tel"
1292
 
1293
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1294
+ #: app/libraries/main.php:2856
1295
  msgid "File"
1296
  msgstr ""
1297
 
1298
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1299
+ #: app/libraries/main.php:2943
1300
  msgid "Textarea"
1301
  msgstr "Textbereich"
1302
 
1303
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1304
+ #: app/libraries/main.php:2996
1305
  msgid "Checkboxes"
1306
  msgstr "Checkboxes"
1307
 
1308
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1309
+ #: app/libraries/main.php:3040
1310
  msgid "Radio Buttons"
1311
  msgstr "Radio Buttons"
1312
 
1386
  #: app/features/mec/meta_boxes/search_form.php:696
1387
  #: app/features/mec/meta_boxes/search_form.php:703
1388
  #: app/features/mec/meta_boxes/search_form.php:710
1389
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3084
1390
  msgid "Dropdown"
1391
  msgstr "Dropdown"
1392
 
1393
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1394
+ #: app/libraries/main.php:3131
1395
  msgid "Agreement"
1396
  msgstr "Zustimmung"
1397
 
1398
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1399
+ #: app/libraries/main.php:2972
1400
  msgid "Paragraph"
1401
  msgstr "Absatz"
1402
 
1429
  #: app/features/ix.php:3551 app/features/locations.php:58
1430
  #: app/features/locations.php:230 app/features/locations.php:287
1431
  #: app/features/locations.php:289 app/features/locations.php:298
1432
+ #: app/features/mec/meta_boxes/display_options.php:960
1433
  #: app/features/mec/meta_boxes/search_form.php:38
1434
  #: app/features/mec/meta_boxes/search_form.php:100
1435
  #: app/features/mec/meta_boxes/search_form.php:162
1441
  #: app/features/mec/meta_boxes/search_form.php:521
1442
  #: app/features/mec/meta_boxes/search_form.php:582
1443
  #: app/features/mec/meta_boxes/search_form.php:679
1444
+ #: app/features/mec/settings.php:814 app/features/mec/single.php:212
1445
+ #: app/features/search.php:73 app/libraries/main.php:2237
1446
+ #: app/libraries/main.php:5286 app/libraries/skins.php:884
1447
  #: app/skins/single.php:493 app/skins/single.php:924
1448
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1449
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1507
  msgstr "%s Email"
1508
 
1509
  #: app/features/events.php:3808 app/features/fes.php:223
1510
+ #: app/features/profile/profile.php:186 app/libraries/main.php:2272
1511
+ #: app/libraries/main.php:5316
1512
  msgid "Ticket"
1513
  msgstr "Ticket"
1514
 
1561
  msgid "The event removed!"
1562
  msgstr "Die Veranstaltung wurde entfernt."
1563
 
1564
+ #: app/features/fes.php:223 app/libraries/main.php:2249
1565
  msgid "Transaction ID"
1566
  msgstr "Transaktions-ID"
1567
 
1612
  msgstr "Zurück zur Liste der Veranstaltungen"
1613
 
1614
  #: app/features/fes/form.php:366
1615
+ #: app/features/mec/meta_boxes/display_options.php:844
1616
  #: app/libraries/main.php:410
1617
  msgid "Monday"
1618
  msgstr "Montag"
1619
 
1620
  #: app/features/fes/form.php:367
1621
+ #: app/features/mec/meta_boxes/display_options.php:845
1622
  #: app/libraries/main.php:410
1623
  msgid "Tuesday"
1624
  msgstr "Dienstag"
1625
 
1626
  #: app/features/fes/form.php:368
1627
+ #: app/features/mec/meta_boxes/display_options.php:846
1628
  #: app/libraries/main.php:410
1629
  msgid "Wednesday"
1630
  msgstr "Mittwoch"
1631
 
1632
  #: app/features/fes/form.php:369
1633
+ #: app/features/mec/meta_boxes/display_options.php:847
1634
  #: app/libraries/main.php:410
1635
  msgid "Thursday"
1636
  msgstr "Donnerstag"
1637
 
1638
  #: app/features/fes/form.php:370
1639
+ #: app/features/mec/meta_boxes/display_options.php:848
1640
  #: app/libraries/main.php:410
1641
  msgid "Friday"
1642
  msgstr "Freitag"
1643
 
1644
  #: app/features/fes/form.php:371
1645
+ #: app/features/mec/meta_boxes/display_options.php:849
1646
  #: app/libraries/main.php:410
1647
  msgid "Saturday"
1648
  msgstr "Samstag"
1649
 
1650
  #: app/features/fes/form.php:372
1651
+ #: app/features/mec/meta_boxes/display_options.php:843
1652
  #: app/libraries/main.php:410
1653
  msgid "Sunday"
1654
  msgstr "Sonntag"
1682
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1683
  "einschließlich http(s)://"
1684
 
1685
+ #: app/features/fes/form.php:744 app/features/mec/settings.php:670
1686
  msgid "Featured Image"
1687
  msgstr "Ausgewähltes Bild"
1688
 
1691
  msgstr "Bild entfernen"
1692
 
1693
  #: app/features/fes/form.php:783 app/features/labels.php:61
1694
+ #: app/features/labels.php:221 app/features/mec.php:404
1695
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5283
1696
  #: app/skins/single.php:702 app/skins/single/default.php:155
1697
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1698
  #: app/skins/single/modern.php:223
1699
  msgid "Labels"
1700
  msgstr "Labels"
1701
 
1702
+ #: app/features/fes/form.php:829 app/features/mec.php:402
1703
  #: app/features/mec/meta_boxes/filter.php:147
1704
  msgid "Tags"
1705
  msgstr "Schlagworte"
2041
 
2042
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2043
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2044
+ #: app/features/mec/settings.php:1054 app/features/mec/single.php:269
2045
  msgid "Checking ..."
2046
  msgstr "Überprüfung"
2047
 
2088
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2089
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2090
  #: app/features/mec/booking.php:359
2091
+ #: app/features/mec/meta_boxes/display_options.php:176
2092
+ #: app/features/mec/meta_boxes/display_options.php:368
2093
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2094
  #: app/features/mec/modules.php:228
2095
  #, php-format
2099
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2100
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2101
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2102
+ #: app/features/mec/meta_boxes/display_options.php:176
2103
+ #: app/features/mec/meta_boxes/display_options.php:368
2104
+ #: app/features/mec/meta_boxes/display_options.php:396
2105
+ #: app/features/mec/meta_boxes/display_options.php:536
2106
+ #: app/features/mec/meta_boxes/display_options.php:587
2107
+ #: app/features/mec/meta_boxes/display_options.php:694
2108
+ #: app/features/mec/meta_boxes/display_options.php:801
2109
+ #: app/features/mec/meta_boxes/display_options.php:908
2110
+ #: app/features/mec/meta_boxes/display_options.php:1121
2111
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2112
  #: app/features/mec/modules.php:228
2113
  msgid "Pro version of Modern Events Calendar"
2301
  msgstr "Auto Synchronisation"
2302
 
2303
  #: app/features/ix/sync.php:22
2304
+ #: app/features/mec/meta_boxes/display_options.php:908
2305
  #, php-format
2306
  msgid "%s is required to use synchronization feature."
2307
  msgstr ""
2481
  msgstr "Wähle Label Farbe"
2482
 
2483
  #: app/features/labels.php:112 app/features/labels.php:139
2484
+ #: app/features/mec/meta_boxes/display_options.php:39
2485
+ #: app/features/mec/meta_boxes/display_options.php:216
2486
+ #: app/features/mec/meta_boxes/display_options.php:401
2487
+ #: app/features/mec/meta_boxes/display_options.php:592
2488
+ #: app/features/mec/meta_boxes/display_options.php:642
2489
+ #: app/features/mec/meta_boxes/display_options.php:806
2490
+ #: app/features/mec/meta_boxes/display_options.php:1003
2491
+ #: app/features/mec/meta_boxes/display_options.php:1060
2492
+ #: app/features/mec/meta_boxes/display_options.php:1152
2493
+ #: app/features/mec/meta_boxes/display_options.php:1239
2494
  msgid "Style"
2495
  msgstr "Style"
2496
 
2502
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2503
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2504
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2505
+ #: app/skins/grid/render.php:54 app/skins/list/render.php:38
2506
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2507
  #: app/skins/monthly_view/calendar_clean.php:86
2508
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2509
+ #: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
2510
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2511
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2512
  #, fuzzy
2515
  msgstr "Ausgewähltes Bild"
2516
 
2517
  #: app/features/labels.php:118 app/features/labels.php:143
2518
+ #: app/libraries/main.php:5532 app/skins/agenda/render.php:43
2519
+ #: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
2520
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2521
+ #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
2522
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:30
2523
  #: app/skins/monthly_view/calendar.php:90
2524
  #: app/skins/monthly_view/calendar_clean.php:90
2525
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2526
+ #: app/skins/tile/render.php:38 app/skins/timeline/render.php:48
2527
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2528
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2529
  msgid "Canceled"
2549
  msgid "Event %s"
2550
  msgstr "Event %s"
2551
 
2552
+ #: app/features/locations.php:59 app/features/mec.php:405
2553
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2554
+ #: app/libraries/main.php:5285
2555
  msgid "Locations"
2556
  msgstr "Orte"
2557
 
2625
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2626
  "Westfalenhalle"
2627
 
2628
+ #: app/features/locations.php:310 app/features/mec/settings.php:700
2629
  #: app/widgets/single.php:115
2630
  msgid "Event Location"
2631
  msgstr "Veranstaltungsort"
2663
  msgid "Don't show map in single event page"
2664
  msgstr "Karte in Einzelansicht nicht anzeigen"
2665
 
2666
+ #: app/features/locations.php:356 app/libraries/main.php:5319
2667
  #, fuzzy
2668
  #| msgid "Locations"
2669
  msgid "Other Locations"
2683
  msgid "<strong>"
2684
  msgstr ""
2685
 
2686
+ #: app/features/mec.php:186
2687
  msgid ""
2688
  "Activation faild. Please check your purchase code or license type."
2689
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2690
  msgstr ""
2691
 
2692
+ #: app/features/mec.php:186
2693
  msgid "Troubleshooting"
2694
  msgstr ""
2695
 
2696
+ #: app/features/mec.php:256 app/libraries/notifications.php:940
2697
  #, php-format
2698
  msgid "%s to %s"
2699
  msgstr "%s zu %s"
2700
 
2701
+ #: app/features/mec.php:279
2702
  msgid ""
2703
  "Your options is not in JSON format. Please insert correct options in this "
2704
  "field and try again."
2705
  msgstr ""
2706
 
2707
+ #: app/features/mec.php:286
2708
  #, fuzzy
2709
  #| msgid "Your booking cannot verify!"
2710
  msgid "Your options field can not be empty!"
2711
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
2712
 
2713
+ #: app/features/mec.php:292
2714
  #, fuzzy
2715
  #| msgid "Your booking successfully verified."
2716
  msgid "Your options imported successfuly."
2717
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
2718
 
2719
+ #: app/features/mec.php:385
2720
  #, fuzzy
2721
  #| msgid "Support"
2722
  msgid "MEC - Support"
2723
  msgstr "Support"
2724
 
2725
+ #: app/features/mec.php:385 app/features/mec/support-page.php:9
2726
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2727
  msgid "Support"
2728
  msgstr "Support"
2729
 
2730
+ #: app/features/mec.php:406 app/features/mec/dashboard.php:278
2731
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2732
+ #: app/libraries/main.php:5287
2733
  msgid "Organizers"
2734
  msgstr "Veranstalter"
2735
 
2736
+ #: app/features/mec.php:414 app/features/mec.php:438
2737
  #: app/features/mec/dashboard.php:264
2738
  msgid "Shortcodes"
2739
  msgstr "Shortcodes"
2740
 
2741
+ #: app/features/mec.php:415
2742
  msgid "MEC - Settings"
2743
  msgstr "MEC - Einstellungen"
2744
 
2745
+ #: app/features/mec.php:416
2746
  #, fuzzy
2747
  #| msgid "MEC - Settings"
2748
  msgid "MEC - Addons"
2749
  msgstr "MEC - Einstellungen"
2750
 
2751
+ #: app/features/mec.php:416 app/features/mec/addons.php:22
2752
  msgid "Addons"
2753
  msgstr ""
2754
 
2755
+ #: app/features/mec.php:419
2756
  #, fuzzy
2757
  #| msgid "Support"
2758
  msgid "MEC - Report"
2759
  msgstr "Support"
2760
 
2761
+ #: app/features/mec.php:419
2762
  #, fuzzy
2763
  #| msgid "Export"
2764
  msgid "Report"
2765
  msgstr "Export"
2766
 
2767
+ #: app/features/mec.php:440
2768
  msgid "Add Shortcode"
2769
  msgstr "Shortcode hinzufügen"
2770
 
2771
+ #: app/features/mec.php:441
2772
  msgid "Add New Shortcode"
2773
  msgstr "Neuen Shortcode hinzufügen"
2774
 
2775
+ #: app/features/mec.php:442
2776
  msgid "No shortcodes found!"
2777
  msgstr "Keine Shortcodes gefunden!"
2778
 
2779
+ #: app/features/mec.php:443
2780
  msgid "All Shortcodes"
2781
  msgstr "Alle Shortcodes"
2782
 
2783
+ #: app/features/mec.php:444
2784
  msgid "Edit shortcodes"
2785
  msgstr "Shortcode ändern"
2786
 
2787
+ #: app/features/mec.php:445
2788
  msgid "No shortcodes found in Trash!"
2789
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2790
 
2791
+ #: app/features/mec.php:498
2792
  msgid "Display Options"
2793
  msgstr "Darstellungsoptionen"
2794
 
2795
+ #: app/features/mec.php:499
2796
  msgid "Filter Options"
2797
  msgstr "Filteroptionen"
2798
 
2799
+ #: app/features/mec.php:501
2800
  msgid "Search Form"
2801
  msgstr "Suche Formular"
2802
 
2804
  msgid "Display content's images as Popup"
2805
  msgstr ""
2806
 
2807
+ #: app/features/mec.php:889 app/features/popup/shortcode.php:300
2808
  msgid "Single Event Display Method"
2809
  msgstr "Single Event Anzeigemethode"
2810
 
2811
+ #: app/features/mec.php:894 app/features/popup/shortcode.php:304
2812
  msgid "Separate Window"
2813
  msgstr "Separates Fenster"
2814
 
2815
+ #: app/features/mec.php:895 app/features/popup/shortcode.php:308
2816
  msgid "Modal 1"
2817
  msgstr "Modal 1"
2818
 
2819
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2820
+ #: app/features/mec/dashboard.php:81 app/features/mec/go-pro.php:13
2821
+ #: app/features/mec/report.php:17 app/features/mec/support-page.php:21
2822
  msgid "Version"
2823
  msgstr "Version"
2824
 
2855
  #: app/features/mec/notifications.php:828
2856
  #: app/features/mec/notifications.php:924
2857
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2858
+ #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
2859
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
2860
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2861
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2862
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2888
  msgstr "Voreinstellung ist J-M-T"
2889
 
2890
  #: app/features/mec/booking.php:115
2891
+ #: app/features/mec/meta_boxes/display_options.php:135
2892
+ #: app/features/mec/meta_boxes/display_options.php:349
2893
+ #: app/features/mec/meta_boxes/display_options.php:445
2894
+ #: app/features/mec/meta_boxes/display_options.php:951
2895
+ #: app/features/mec/meta_boxes/display_options.php:1218
2896
+ #: app/features/mec/meta_boxes/display_options.php:1327
2897
+ #: app/features/mec/meta_boxes/display_options.php:1378
2898
  msgid "Limit"
2899
  msgstr "Limit"
2900
 
2942
  msgstr ""
2943
 
2944
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2945
+ #: app/features/mec/settings.php:607 app/features/mec/settings.php:617
2946
  msgid "Thank You Page"
2947
  msgstr "Danke Seite"
2948
 
2955
  "es leer, wenn Sie es deaktivieren möchten."
2956
 
2957
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2958
+ #: app/features/mec/settings.php:627 app/features/mec/settings.php:632
2959
  #, fuzzy
2960
  #| msgid "Thank You Page"
2961
  msgid "Thank You Page Time Interval"
2962
  msgstr "Danke Seite"
2963
 
2964
+ #: app/features/mec/booking.php:167 app/features/mec/settings.php:629
2965
  msgid "2000 mean 2 seconds"
2966
  msgstr ""
2967
 
2968
+ #: app/features/mec/booking.php:171 app/features/mec/settings.php:633
2969
  msgid ""
2970
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2971
  "2000 means 2 seconds."
3078
 
3079
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3080
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3081
+ #: app/features/mec/settings.php:1049 app/features/mec/single.php:264
3082
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3083
  msgid "Saved"
3084
  msgstr "Gesichert"
3085
 
3086
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3087
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3088
+ #: app/features/mec/settings.php:1050 app/features/mec/single.php:265
3089
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3090
  msgid "Settings Saved!"
3091
  msgstr ""
3093
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3094
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3095
  #: app/features/mec/notifications.php:905
3096
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
3097
+ #: app/features/mec/settings.php:1074 app/features/mec/single.php:267
3098
+ #: app/features/mec/single.php:289 app/libraries/main.php:5531
3099
  msgid "Verified"
3100
  msgstr "Verifiziert"
3101
 
3102
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3103
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
3104
  #: app/features/mec/single.php:291
3105
  msgid "Please Refresh Page"
3106
  msgstr "Bitte Seiten Refresh vornehmen"
3132
  msgid "Update"
3133
  msgstr "Update %s"
3134
 
3135
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
3136
  #, php-format
3137
  msgid ""
3138
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3140
  "Spots, etc you should upgrade to the Pro version."
3141
  msgstr ""
3142
 
3143
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
3144
  msgid "lite"
3145
  msgstr ""
3146
 
3147
+ #: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:25
3148
+ #: app/features/mec/support.php:126
3149
  msgid "GO PREMIUM"
3150
  msgstr ""
3151
 
3152
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3153
  #, php-format
3154
  msgid ""
3155
  "Easily get a discount coupon by rating us on %s or following and reposting "
3156
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3157
  msgstr ""
3158
 
3159
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3160
  #, fuzzy
3161
  #| msgid "Address"
3162
  msgid "WordPress"
3163
  msgstr "Adresse"
3164
 
3165
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3166
  msgid "Copouns!"
3167
  msgstr ""
3168
 
3200
  "code."
3201
  msgstr ""
3202
 
3203
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:403
3204
  msgid "Upcoming Events"
3205
  msgstr "Bevorstehende Events"
3206
 
3249
  msgid "Change Log"
3250
  msgstr "Änderungsprotokoll"
3251
 
3252
+ #: app/features/mec/go-pro.php:9
3253
+ msgid "Go Pro"
3254
+ msgstr ""
3255
+
3256
  #: app/features/mec/ie.php:21
3257
  msgid ""
3258
  "Insert your backup files below and press import to restore your site's "
3298
  "wenn Ihre Website eine mehrsprachige Website ist, empfehlen wir Ihnen, die "
3299
  "Nachrichten / Phrasen aus Sprachdateien zu ändern."
3300
 
3301
+ #: app/features/mec/meta_boxes/display_options.php:23
3302
  msgid "Skin"
3303
  msgstr "Skin"
3304
 
3305
+ #: app/features/mec/meta_boxes/display_options.php:41
3306
+ #: app/features/mec/meta_boxes/display_options.php:218
3307
+ #: app/features/mec/meta_boxes/display_options.php:644
3308
+ #: app/features/mec/meta_boxes/display_options.php:810
3309
+ #: app/features/mec/meta_boxes/display_options.php:1005
3310
+ #: app/features/mec/settings.php:267 app/features/mec/settings.php:291
3311
+ #: app/features/mec/settings.php:300 app/features/mec/settings.php:341
3312
+ #: app/features/mec/settings.php:365 app/features/mec/settings.php:374
3313
+ #: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:95
3314
+ #: app/features/popup/shortcode.php:164 app/features/popup/shortcode.php:211
3315
  msgid "Classic"
3316
  msgstr "Klassisch"
3317
 
3318
+ #: app/features/mec/meta_boxes/display_options.php:42
3319
+ #: app/features/mec/meta_boxes/display_options.php:220
3320
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:302
3321
+ #: app/features/mec/settings.php:366 app/features/mec/settings.php:376
3322
+ #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:105
3323
  msgid "Minimal"
3324
  msgstr "Minimal"
3325
 
3326
+ #: app/features/mec/meta_boxes/display_options.php:43
3327
+ #: app/features/mec/meta_boxes/display_options.php:221
3328
+ #: app/features/mec/meta_boxes/display_options.php:594
3329
+ #: app/features/mec/meta_boxes/display_options.php:646
3330
+ #: app/features/mec/meta_boxes/display_options.php:808
3331
+ #: app/features/mec/meta_boxes/display_options.php:1007
3332
+ #: app/features/mec/settings.php:269 app/features/mec/settings.php:282
3333
+ #: app/features/mec/settings.php:293 app/features/mec/settings.php:303
3334
+ #: app/features/mec/settings.php:343 app/features/mec/settings.php:356
3335
+ #: app/features/mec/settings.php:367 app/features/mec/settings.php:377
3336
+ #: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:110
3337
+ #: app/features/popup/shortcode.php:157 app/features/popup/shortcode.php:174
3338
+ #: app/features/popup/shortcode.php:197 app/features/popup/shortcode.php:221
3339
  msgid "Modern"
3340
  msgstr "Modern"
3341
 
3342
+ #: app/features/mec/meta_boxes/display_options.php:44
3343
+ #: app/features/mec/settings.php:294 app/features/mec/settings.php:368
3344
+ #: app/features/popup/shortcode.php:83
3345
  msgid "Standard"
3346
  msgstr "Standard"
3347
 
3348
+ #: app/features/mec/meta_boxes/display_options.php:45
3349
+ #: app/features/mec/settings.php:295 app/features/mec/settings.php:369
3350
+ #: app/features/popup/shortcode.php:88
3351
  msgid "Accordion"
3352
  msgstr "Accordion"
3353
 
 
 
 
 
 
 
 
 
 
 
 
 
3354
  #: app/features/mec/meta_boxes/display_options.php:51
3355
  #: app/features/mec/meta_boxes/display_options.php:231
3356
  #: app/features/mec/meta_boxes/display_options.php:409
3360
  #: app/features/mec/meta_boxes/display_options.php:1163
3361
  #: app/features/mec/meta_boxes/display_options.php:1251
3362
  #: app/features/mec/meta_boxes/display_options.php:1343
3363
+ msgid "Today"
3364
+ msgstr "Heute"
3365
 
3366
  #: app/features/mec/meta_boxes/display_options.php:52
3367
  #: app/features/mec/meta_boxes/display_options.php:232
3368
  #: app/features/mec/meta_boxes/display_options.php:410
 
 
3369
  #: app/features/mec/meta_boxes/display_options.php:702
3370
  #: app/features/mec/meta_boxes/display_options.php:735
 
 
3371
  #: app/features/mec/meta_boxes/display_options.php:916
3372
  #: app/features/mec/meta_boxes/display_options.php:1164
3373
  #: app/features/mec/meta_boxes/display_options.php:1252
3374
  #: app/features/mec/meta_boxes/display_options.php:1344
3375
+ msgid "Tomorrow"
3376
+ msgstr "Morgen"
 
3377
 
3378
  #: app/features/mec/meta_boxes/display_options.php:53
3379
  #: app/features/mec/meta_boxes/display_options.php:233
3389
  #: app/features/mec/meta_boxes/display_options.php:1253
3390
  #: app/features/mec/meta_boxes/display_options.php:1345
3391
  #: app/features/mec/meta_boxes/display_options.php:1410
3392
+ msgid "Start of Current Month"
3393
+ msgstr "Mit Beginn des laufenden Monats"
3394
 
3395
  #: app/features/mec/meta_boxes/display_options.php:54
3396
  #: app/features/mec/meta_boxes/display_options.php:234
3397
  #: app/features/mec/meta_boxes/display_options.php:412
3398
  #: app/features/mec/meta_boxes/display_options.php:478
 
3399
  #: app/features/mec/meta_boxes/display_options.php:655
3400
  #: app/features/mec/meta_boxes/display_options.php:704
3401
  #: app/features/mec/meta_boxes/display_options.php:737
3406
  #: app/features/mec/meta_boxes/display_options.php:1254
3407
  #: app/features/mec/meta_boxes/display_options.php:1346
3408
  #: app/features/mec/meta_boxes/display_options.php:1411
3409
+ msgid "Start of Next Month"
3410
+ msgstr "Mit Beginn des kommenden Monats"
3411
+
3412
+ #: app/features/mec/meta_boxes/display_options.php:55
3413
+ #: app/features/mec/meta_boxes/display_options.php:235
3414
+ #: app/features/mec/meta_boxes/display_options.php:413
3415
+ #: app/features/mec/meta_boxes/display_options.php:479
3416
+ #: app/features/mec/meta_boxes/display_options.php:602
3417
+ #: app/features/mec/meta_boxes/display_options.php:656
3418
+ #: app/features/mec/meta_boxes/display_options.php:705
3419
+ #: app/features/mec/meta_boxes/display_options.php:738
3420
+ #: app/features/mec/meta_boxes/display_options.php:773
3421
+ #: app/features/mec/meta_boxes/display_options.php:820
3422
+ #: app/features/mec/meta_boxes/display_options.php:919
3423
+ #: app/features/mec/meta_boxes/display_options.php:1167
3424
+ #: app/features/mec/meta_boxes/display_options.php:1255
3425
+ #: app/features/mec/meta_boxes/display_options.php:1347
3426
+ #: app/features/mec/meta_boxes/display_options.php:1412
3427
  msgid "On a certain date"
3428
  msgstr "An einem bestimmten Tag"
3429
 
3430
+ #: app/features/mec/meta_boxes/display_options.php:58
3431
+ #: app/features/mec/meta_boxes/display_options.php:238
3432
+ #: app/features/mec/meta_boxes/display_options.php:416
3433
+ #: app/features/mec/meta_boxes/display_options.php:482
3434
+ #: app/features/mec/meta_boxes/display_options.php:605
3435
+ #: app/features/mec/meta_boxes/display_options.php:659
3436
+ #: app/features/mec/meta_boxes/display_options.php:708
3437
+ #: app/features/mec/meta_boxes/display_options.php:742
3438
+ #: app/features/mec/meta_boxes/display_options.php:776
3439
+ #: app/features/mec/meta_boxes/display_options.php:823
3440
+ #: app/features/mec/meta_boxes/display_options.php:922
3441
+ #: app/features/mec/meta_boxes/display_options.php:1170
3442
+ #: app/features/mec/meta_boxes/display_options.php:1258
3443
+ #: app/features/mec/meta_boxes/display_options.php:1350
3444
+ #: app/features/mec/meta_boxes/display_options.php:1415
3445
  #, php-format
3446
  msgid "eg. %s"
3447
  msgstr "z.B. %s"
3448
 
 
3449
  #: app/features/mec/meta_boxes/display_options.php:63
3450
+ #: app/features/mec/meta_boxes/display_options.php:64
3451
+ #: app/features/mec/meta_boxes/display_options.php:67
3452
  #: app/features/mec/meta_boxes/display_options.php:243
3453
+ #: app/features/mec/meta_boxes/display_options.php:244
3454
+ #: app/features/mec/meta_boxes/display_options.php:247
3455
  #: app/features/mec/meta_boxes/display_options.php:421
3456
+ #: app/features/mec/meta_boxes/display_options.php:422
3457
+ #: app/features/mec/meta_boxes/display_options.php:425
3458
  #: app/features/mec/meta_boxes/display_options.php:927
3459
+ #: app/features/mec/meta_boxes/display_options.php:928
3460
+ #: app/features/mec/meta_boxes/display_options.php:931
3461
  #: app/features/mec/meta_boxes/display_options.php:1355
3462
+ #: app/features/mec/meta_boxes/display_options.php:1356
3463
+ #: app/features/mec/meta_boxes/display_options.php:1359
3464
  #, fuzzy
3465
  #| msgid "Maximum Dates"
3466
  msgid "Maximum Date"
3467
  msgstr "Maximale Anzahl von Daten"
3468
 
3469
+ #: app/features/mec/meta_boxes/display_options.php:68
3470
+ #: app/features/mec/meta_boxes/display_options.php:248
3471
+ #: app/features/mec/meta_boxes/display_options.php:426
3472
+ #: app/features/mec/meta_boxes/display_options.php:932
3473
+ #: app/features/mec/meta_boxes/display_options.php:1360
3474
  #, fuzzy
3475
  #| msgid "Show events based on created shortcodes."
3476
  msgid "Show events before the specified date."
3477
  msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
3478
 
3479
+ #: app/features/mec/meta_boxes/display_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3480
  #: app/features/mec/meta_boxes/display_options.php:79
3481
+ #: app/features/mec/meta_boxes/display_options.php:86
 
 
 
3482
  #: app/features/mec/meta_boxes/display_options.php:92
3483
+ #: app/features/mec/meta_boxes/display_options.php:99
 
 
3484
  #: app/features/mec/meta_boxes/display_options.php:105
3485
+ #: app/features/mec/meta_boxes/display_options.php:112
3486
+ #: app/features/mec/meta_boxes/display_options.php:116
3487
+ #: app/features/mec/meta_boxes/display_options.php:123
3488
+ #: app/features/mec/meta_boxes/display_options.php:128
3489
+ #: app/features/mec/meta_boxes/display_options.php:255
3490
+ #: app/features/mec/meta_boxes/display_options.php:259
3491
+ #: app/features/mec/meta_boxes/display_options.php:266
3492
+ #: app/features/mec/meta_boxes/display_options.php:271
3493
+ #: app/features/mec/meta_boxes/display_options.php:278
3494
+ #: app/features/mec/meta_boxes/display_options.php:283
3495
+ #: app/features/mec/meta_boxes/display_options.php:290
3496
  #: app/features/mec/meta_boxes/display_options.php:296
3497
+ #: app/features/mec/meta_boxes/display_options.php:303
3498
+ #: app/features/mec/meta_boxes/display_options.php:307
3499
+ #: app/features/mec/meta_boxes/display_options.php:314
3500
  #: app/features/mec/meta_boxes/display_options.php:320
3501
+ #: app/features/mec/meta_boxes/display_options.php:327
3502
+ #: app/features/mec/meta_boxes/display_options.php:331
3503
+ #: app/features/mec/meta_boxes/display_options.php:433
3504
+ #: app/features/mec/meta_boxes/display_options.php:438
3505
+ #: app/features/mec/meta_boxes/display_options.php:609
3506
+ #: app/features/mec/meta_boxes/display_options.php:614
3507
+ #: app/features/mec/meta_boxes/display_options.php:855
3508
+ #: app/features/mec/meta_boxes/display_options.php:939
3509
+ #: app/features/mec/meta_boxes/display_options.php:944
3510
+ #: app/features/mec/meta_boxes/display_options.php:1011
3511
+ #: app/features/mec/meta_boxes/display_options.php:1017
3512
+ #: app/features/mec/meta_boxes/display_options.php:1024
3513
+ #: app/features/mec/meta_boxes/display_options.php:1029
3514
+ #: app/features/mec/meta_boxes/display_options.php:1036
3515
+ #: app/features/mec/meta_boxes/display_options.php:1040
3516
+ #: app/features/mec/meta_boxes/display_options.php:1068
3517
+ #: app/features/mec/meta_boxes/display_options.php:1072
3518
+ #: app/features/mec/meta_boxes/display_options.php:1079
3519
+ #: app/features/mec/meta_boxes/display_options.php:1083
3520
+ #: app/features/mec/meta_boxes/display_options.php:1090
3521
+ #: app/features/mec/meta_boxes/display_options.php:1096
3522
+ #: app/features/mec/meta_boxes/display_options.php:1126
3523
+ #: app/features/mec/meta_boxes/display_options.php:1131
3524
+ #: app/features/mec/meta_boxes/display_options.php:1174
3525
+ #: app/features/mec/meta_boxes/display_options.php:1180
3526
+ #: app/features/mec/meta_boxes/display_options.php:1187
3527
+ #: app/features/mec/meta_boxes/display_options.php:1191
3528
+ #: app/features/mec/meta_boxes/display_options.php:1198
3529
+ #: app/features/mec/meta_boxes/display_options.php:1202
3530
+ #: app/features/mec/meta_boxes/display_options.php:1262
3531
  #: app/features/mec/meta_boxes/display_options.php:1268
3532
+ #: app/features/mec/meta_boxes/display_options.php:1275
3533
  #: app/features/mec/meta_boxes/display_options.php:1281
3534
+ #: app/features/mec/meta_boxes/display_options.php:1288
3535
  #: app/features/mec/meta_boxes/display_options.php:1294
3536
+ #: app/features/mec/meta_boxes/display_options.php:1301
3537
  #: app/features/mec/meta_boxes/display_options.php:1307
3538
+ #: app/features/mec/meta_boxes/display_options.php:1314
3539
  #: app/features/mec/meta_boxes/display_options.php:1320
3540
+ #: app/features/mec/meta_boxes/display_options.php:1367
3541
+ #: app/features/mec/meta_boxes/display_options.php:1371
3542
+ #: app/features/mec/meta_boxes/display_options.php:1419
3543
+ #: app/features/mec/meta_boxes/display_options.php:1424
3544
+ msgid "Date Formats"
3545
+ msgstr "Datumsformate"
3546
+
3547
+ #: app/features/mec/meta_boxes/display_options.php:80
3548
+ #: app/features/mec/meta_boxes/display_options.php:308
3549
+ msgid "Default value is \"M d Y\""
3550
+ msgstr "Standard Wert ist \"M T J\""
3551
+
3552
+ #: app/features/mec/meta_boxes/display_options.php:93
3553
+ msgid "Default values are d, M and l"
3554
+ msgstr "Standard Werte sind T, M und J"
3555
+
3556
+ #: app/features/mec/meta_boxes/display_options.php:106
3557
+ #: app/features/mec/meta_boxes/display_options.php:297
3558
+ #: app/features/mec/meta_boxes/display_options.php:321
3559
+ #: app/features/mec/meta_boxes/display_options.php:1269
3560
+ #: app/features/mec/meta_boxes/display_options.php:1282
3561
+ #: app/features/mec/meta_boxes/display_options.php:1295
3562
+ #: app/features/mec/meta_boxes/display_options.php:1308
3563
+ #: app/features/mec/meta_boxes/display_options.php:1321
3564
  msgid "Default values are d, F and l"
3565
  msgstr ""
3566
  "Standardwerte sind Tag, Monat als ganzes Wort und Wochentag als ganzes Wort"
3567
 
3568
+ #: app/features/mec/meta_boxes/display_options.php:117
3569
  msgid "Default value is \"M d\""
3570
  msgstr "Standard Wert ist \"M T\""
3571
 
3572
+ #: app/features/mec/meta_boxes/display_options.php:129
3573
  #, fuzzy
3574
  #| msgid "Default values are d and F"
3575
  msgid "TDefault values are d and F"
3576
  msgstr "Die Standardwerte sind d and F"
3577
 
3578
+ #: app/features/mec/meta_boxes/display_options.php:136
3579
+ #: app/features/mec/meta_boxes/display_options.php:350
3580
+ #: app/features/mec/meta_boxes/display_options.php:446
3581
+ #: app/features/mec/meta_boxes/display_options.php:622
3582
+ #: app/features/mec/meta_boxes/display_options.php:664
3583
+ #: app/features/mec/meta_boxes/display_options.php:747
3584
+ #: app/features/mec/meta_boxes/display_options.php:781
3585
+ #: app/features/mec/meta_boxes/display_options.php:828
3586
+ #: app/features/mec/meta_boxes/display_options.php:1219
3587
+ #: app/features/mec/meta_boxes/display_options.php:1328
3588
+ #: app/features/mec/meta_boxes/display_options.php:1379
3589
  msgid "eg. 6"
3590
  msgstr "z.B. 6"
3591
 
3592
+ #: app/features/mec/meta_boxes/display_options.php:141
3593
  #, fuzzy
3594
  #| msgid "Hide Event Time"
3595
  msgid "Include Events Times"
3596
  msgstr "Event / Veranstaltungszeit verbergen"
3597
 
3598
+ #: app/features/mec/meta_boxes/display_options.php:152
3599
+ #: app/features/mec/meta_boxes/display_options.php:354
3600
+ #: app/features/mec/meta_boxes/display_options.php:450
3601
+ #: app/features/mec/meta_boxes/display_options.php:988
3602
+ #: app/features/mec/meta_boxes/display_options.php:1383
3603
  msgid "Load More Button"
3604
  msgstr "Button \"Weitere Veranstaltungen Laden\""
3605
 
3606
+ #: app/features/mec/meta_boxes/display_options.php:162
3607
+ #: app/features/mec/meta_boxes/display_options.php:460
3608
+ #: app/features/mec/meta_boxes/display_options.php:1393
3609
  msgid "Show Month Divider"
3610
  msgstr "Zeige Monatsteilung"
3611
 
3612
+ #: app/features/mec/meta_boxes/display_options.php:172
3613
+ #: app/features/mec/meta_boxes/display_options.php:364
3614
  #, fuzzy
3615
  #| msgid "Show Google Maps on event page"
3616
  msgid "Show Map on top"
3617
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3618
 
3619
+ #: app/features/mec/meta_boxes/display_options.php:187
3620
+ #: app/features/mec/meta_boxes/display_options.php:379
3621
+ #: app/features/mec/meta_boxes/display_options.php:717
3622
  msgid "Geolocation"
3623
  msgstr ""
3624
 
3625
+ #: app/features/mec/meta_boxes/display_options.php:202
3626
  #, fuzzy
3627
  #| msgid "Show Month Divider"
3628
  msgid "Toggle for Month Divider"
3629
  msgstr "Zeige Monatsteilung"
3630
 
3631
+ #: app/features/mec/meta_boxes/display_options.php:219
3632
+ #: app/features/mec/meta_boxes/display_options.php:403
3633
+ #: app/features/mec/meta_boxes/display_options.php:498
3634
+ #: app/features/mec/meta_boxes/display_options.php:645
3635
+ #: app/features/mec/meta_boxes/display_options.php:809
3636
+ #: app/features/mec/meta_boxes/display_options.php:1006
3637
+ #: app/features/mec/settings.php:268 app/features/mec/settings.php:283
3638
+ #: app/features/mec/settings.php:301 app/features/mec/settings.php:342
3639
+ #: app/features/mec/settings.php:357 app/features/mec/settings.php:375
3640
+ #: app/features/popup/shortcode.php:100 app/features/popup/shortcode.php:132
3641
+ #: app/features/popup/shortcode.php:140 app/features/popup/shortcode.php:169
3642
+ #: app/features/popup/shortcode.php:202 app/features/popup/shortcode.php:216
3643
  msgid "Clean"
3644
  msgstr "Clean"
3645
 
3646
+ #: app/features/mec/meta_boxes/display_options.php:222
3647
+ #: app/features/mec/meta_boxes/display_options.php:500
3648
+ #: app/features/mec/meta_boxes/display_options.php:648
3649
+ #: app/features/mec/settings.php:271 app/features/mec/settings.php:304
3650
+ #: app/features/mec/settings.php:345 app/features/mec/settings.php:378
3651
+ #: app/features/popup/shortcode.php:115 app/features/popup/shortcode.php:150
3652
+ #: app/features/popup/shortcode.php:184
3653
  msgid "Simple"
3654
  msgstr "Schlicht"
3655
 
3656
+ #: app/features/mec/meta_boxes/display_options.php:223
3657
+ #: app/features/popup/shortcode.php:120
3658
  msgid "Colorful"
3659
  msgstr "Farbenfroh"
3660
 
3661
+ #: app/features/mec/meta_boxes/display_options.php:224
3662
+ #: app/features/mec/meta_boxes/display_options.php:499
3663
+ #: app/features/mec/meta_boxes/display_options.php:647
3664
+ #: app/features/mec/settings.php:270 app/features/mec/settings.php:306
3665
+ #: app/features/mec/settings.php:344 app/features/mec/settings.php:380
3666
+ #: app/features/popup/shortcode.php:125 app/features/popup/shortcode.php:145
3667
+ #: app/features/popup/shortcode.php:179
3668
  msgid "Novel"
3669
  msgstr ""
3670
 
3671
+ #: app/features/mec/meta_boxes/display_options.php:260
3672
+ #: app/features/mec/meta_boxes/display_options.php:1372
3673
  #, fuzzy
3674
  #| msgid "Default value is \"d F Y\""
3675
  msgid "Default value is \"d F Y"
3676
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3677
 
3678
+ #: app/features/mec/meta_boxes/display_options.php:272
3679
  msgid "Default values are d and F"
3680
  msgstr "Die Standardwerte sind d and F"
3681
 
3682
+ #: app/features/mec/meta_boxes/display_options.php:284
3683
  msgid "Default values are d and M"
3684
  msgstr "Standardwerte sind T und M"
3685
 
3686
+ #: app/features/mec/meta_boxes/display_options.php:332
3687
  msgid "Default value is \"d F Y\""
3688
  msgstr "Standardwert ist \"d (Tag) F Y (Jahr)\" "
3689
 
3690
+ #: app/features/mec/meta_boxes/display_options.php:338
3691
+ #: app/features/mec/meta_boxes/display_options.php:1209
3692
+ #: app/features/mec/meta_boxes/display_options.php:1431
3693
  msgid "Count in row"
3694
  msgstr "Zeilen zählen"
3695
 
3696
+ #: app/features/mec/meta_boxes/display_options.php:396
3697
+ #: app/features/mec/meta_boxes/display_options.php:587
3698
+ #: app/features/mec/meta_boxes/display_options.php:694
3699
+ #: app/features/mec/meta_boxes/display_options.php:801
3700
+ #: app/features/mec/meta_boxes/display_options.php:1121
3701
  #, php-format
3702
  msgid "%s is required to use this skin."
3703
  msgstr ""
3704
 
3705
+ #: app/features/mec/meta_boxes/display_options.php:439
3706
+ #: app/features/mec/meta_boxes/display_options.php:615
3707
  msgid "Default values are l and F j"
3708
  msgstr "Die Standardwerte sind I und F j"
3709
 
3710
+ #: app/features/mec/meta_boxes/display_options.php:486
3711
  msgid "Default View"
3712
  msgstr "Standardansicht"
3713
 
3714
+ #: app/features/mec/meta_boxes/display_options.php:488
3715
+ #: app/features/mec/meta_boxes/display_options.php:509
3716
+ #: app/libraries/main.php:330 app/libraries/main.php:1758
3717
+ #: app/libraries/main.php:1783
3718
  msgid "List View"
3719
  msgstr "Listenansicht"
3720
 
3721
+ #: app/features/mec/meta_boxes/display_options.php:489
3722
+ #: app/features/mec/meta_boxes/display_options.php:519
3723
+ #: app/libraries/main.php:334 app/libraries/main.php:1752
3724
+ #: app/libraries/main.php:1777
3725
  msgid "Yearly View"
3726
  msgstr "Jahresansicht"
3727
 
3728
+ #: app/features/mec/meta_boxes/display_options.php:490
3729
+ #: app/features/mec/meta_boxes/display_options.php:541
3730
  msgid "Monthly/Calendar View"
3731
  msgstr "Monatliche Kalenderansicht"
3732
 
3733
+ #: app/features/mec/meta_boxes/display_options.php:491
3734
+ #: app/features/mec/meta_boxes/display_options.php:551
3735
+ #: app/libraries/main.php:337 app/libraries/main.php:1754
3736
+ #: app/libraries/main.php:1779
3737
  msgid "Weekly View"
3738
  msgstr "Wochenansicht"
3739
 
3740
+ #: app/features/mec/meta_boxes/display_options.php:492
3741
+ #: app/features/mec/meta_boxes/display_options.php:561
3742
+ #: app/libraries/main.php:336 app/libraries/main.php:1755
3743
+ #: app/libraries/main.php:1780
3744
  msgid "Daily View"
3745
  msgstr "Tagesansicht"
3746
 
3747
+ #: app/features/mec/meta_boxes/display_options.php:496
3748
+ #: app/features/popup/shortcode.php:136
3749
  #, fuzzy
3750
  #| msgid "Modern Style"
3751
  msgid "Monthly Style"
3752
  msgstr "Moderner Stil"
3753
 
3754
+ #: app/features/mec/meta_boxes/display_options.php:536
3755
  #, php-format
3756
  msgid "%s is required to use <b>Yearly View</b> skin."
3757
  msgstr ""
3758
 
3759
+ #: app/features/mec/meta_boxes/display_options.php:569
3760
  msgid "The price shows only in List View."
3761
  msgstr ""
3762
 
3763
+ #: app/features/mec/meta_boxes/display_options.php:572
3764
  msgid "Display Event Price"
3765
  msgstr ""
3766
 
3767
+ #: app/features/mec/meta_boxes/display_options.php:600
3768
  msgid "Start of Current Year"
3769
  msgstr "Mit Beginn des laufenden Jahres"
3770
 
3771
+ #: app/features/mec/meta_boxes/display_options.php:601
3772
  msgid "Start of Next Year"
3773
  msgstr "Start des nächsten Jahres"
3774
 
3775
+ #: app/features/mec/meta_boxes/display_options.php:621
3776
+ #: app/features/mec/meta_boxes/display_options.php:663
3777
+ #: app/features/mec/meta_boxes/display_options.php:746
3778
+ #: app/features/mec/meta_boxes/display_options.php:780
3779
+ #: app/features/mec/meta_boxes/display_options.php:827
3780
  msgid "Events per day"
3781
  msgstr "Veranstaltungen pro Tag"
3782
 
3783
+ #: app/features/mec/meta_boxes/display_options.php:626
3784
+ #: app/features/mec/meta_boxes/display_options.php:668
3785
+ #: app/features/mec/meta_boxes/display_options.php:751
3786
+ #: app/features/mec/meta_boxes/display_options.php:785
3787
+ #: app/features/mec/meta_boxes/display_options.php:889
3788
+ #: app/features/mec/meta_boxes/display_options.php:1440
3789
  msgid "Next/Previous Buttons"
3790
  msgstr "Schaltfläche \"Nächste/Letzte\""
3791
 
3792
+ #: app/features/mec/meta_boxes/display_options.php:634
3793
  msgid "For showing next/previous year navigation."
3794
  msgstr "Navigation anzeigen zum nächsten/letzten Jahr"
3795
 
3796
+ #: app/features/mec/meta_boxes/display_options.php:678
3797
  #, fuzzy
3798
  #| msgid "Text"
3799
  msgid "Uppercase Text"
3800
  msgstr "Text"
3801
 
3802
+ #: app/features/mec/meta_boxes/display_options.php:686
3803
+ #: app/features/mec/meta_boxes/display_options.php:759
3804
+ #: app/features/mec/meta_boxes/display_options.php:793
3805
+ #: app/features/mec/meta_boxes/display_options.php:897
3806
+ #: app/features/mec/meta_boxes/display_options.php:1448
3807
  msgid "For showing next/previous month navigation."
3808
  msgstr "Für die Navigation zum nächsten/letzten Monat"
3809
 
3810
+ #: app/features/mec/meta_boxes/display_options.php:712
3811
  msgid "Maximum events"
3812
  msgstr "Veranstaltungsmaximum"
3813
 
3814
+ #: app/features/mec/meta_boxes/display_options.php:713
3815
  msgid "eg. 200"
3816
  msgstr "z.B. 200"
3817
 
3818
+ #: app/features/mec/meta_boxes/display_options.php:725
3819
  msgid "The geolocation feature works only in secure (https) websites."
3820
  msgstr ""
3821
 
3822
+ #: app/features/mec/meta_boxes/display_options.php:769
3823
+ #: app/features/mec/meta_boxes/display_options.php:816
3824
  msgid "Current Week"
3825
  msgstr "Aktuelle Woche"
3826
 
3827
+ #: app/features/mec/meta_boxes/display_options.php:770
3828
+ #: app/features/mec/meta_boxes/display_options.php:817
3829
  msgid "Next Week"
3830
  msgstr "Nächste Woche"
3831
 
3832
+ #: app/features/mec/meta_boxes/display_options.php:832
3833
  msgid "Number of Days"
3834
  msgstr ""
3835
 
3836
+ #: app/features/mec/meta_boxes/display_options.php:840
3837
  #, fuzzy
3838
  #| msgid "Start"
3839
  msgid "Week Start"
3840
  msgstr "Start"
3841
 
3842
+ #: app/features/mec/meta_boxes/display_options.php:842
3843
  #, fuzzy
3844
  #| msgid "Inherit from global options"
3845
  msgid "Inherite from WordPress options"
3846
  msgstr "Aus den globalen Einstellungen übernehmen"
3847
 
3848
+ #: app/features/mec/meta_boxes/display_options.php:857
3849
  msgid "1:00"
3850
  msgstr ""
3851
 
3852
+ #: app/features/mec/meta_boxes/display_options.php:858
3853
  msgid "2:00"
3854
  msgstr ""
3855
 
3856
+ #: app/features/mec/meta_boxes/display_options.php:859
3857
  msgid "3:00"
3858
  msgstr ""
3859
 
3860
+ #: app/features/mec/meta_boxes/display_options.php:860
3861
  msgid "4:00"
3862
  msgstr ""
3863
 
3864
+ #: app/features/mec/meta_boxes/display_options.php:861
3865
  msgid "5:00"
3866
  msgstr ""
3867
 
3868
+ #: app/features/mec/meta_boxes/display_options.php:862
3869
  msgid "6:00"
3870
  msgstr ""
3871
 
3872
+ #: app/features/mec/meta_boxes/display_options.php:863
3873
  msgid "7:00"
3874
  msgstr ""
3875
 
3876
+ #: app/features/mec/meta_boxes/display_options.php:864
3877
  msgid "8:00"
3878
  msgstr ""
3879
 
3880
+ #: app/features/mec/meta_boxes/display_options.php:865
3881
  msgid "9:00"
3882
  msgstr ""
3883
 
3884
+ #: app/features/mec/meta_boxes/display_options.php:866
3885
  msgid "10:00"
3886
  msgstr ""
3887
 
3888
+ #: app/features/mec/meta_boxes/display_options.php:867
3889
  msgid "11:00"
3890
  msgstr ""
3891
 
3892
+ #: app/features/mec/meta_boxes/display_options.php:868
3893
  msgid "12:00"
3894
  msgstr ""
3895
 
3896
+ #: app/features/mec/meta_boxes/display_options.php:871
3897
  msgid "13:00"
3898
  msgstr ""
3899
 
3900
+ #: app/features/mec/meta_boxes/display_options.php:872
3901
  msgid "14:00"
3902
  msgstr ""
3903
 
3904
+ #: app/features/mec/meta_boxes/display_options.php:873
3905
  msgid "15:00"
3906
  msgstr ""
3907
 
3908
+ #: app/features/mec/meta_boxes/display_options.php:874
3909
  msgid "16:00"
3910
  msgstr ""
3911
 
3912
+ #: app/features/mec/meta_boxes/display_options.php:875
3913
  msgid "17:00"
3914
  msgstr ""
3915
 
3916
+ #: app/features/mec/meta_boxes/display_options.php:876
3917
  msgid "18:00"
3918
  msgstr ""
3919
 
3920
+ #: app/features/mec/meta_boxes/display_options.php:877
3921
  msgid "19:00"
3922
  msgstr ""
3923
 
3924
+ #: app/features/mec/meta_boxes/display_options.php:878
3925
  msgid "20:00"
3926
  msgstr ""
3927
 
3928
+ #: app/features/mec/meta_boxes/display_options.php:879
3929
  msgid "21:00"
3930
  msgstr ""
3931
 
3932
+ #: app/features/mec/meta_boxes/display_options.php:880
3933
  msgid "22:00"
3934
  msgstr ""
3935
 
3936
+ #: app/features/mec/meta_boxes/display_options.php:881
3937
  msgid "23:00"
3938
  msgstr ""
3939
 
3940
+ #: app/features/mec/meta_boxes/display_options.php:882
3941
  msgid "24:00"
3942
  msgstr ""
3943
 
3944
+ #: app/features/mec/meta_boxes/display_options.php:945
3945
+ #: app/features/mec/meta_boxes/display_options.php:1132
3946
  msgid "Default values are j and F"
3947
  msgstr "Standardwerte sind j und F"
3948
 
3949
+ #: app/features/mec/meta_boxes/display_options.php:952
3950
  msgid "eg. 24"
3951
  msgstr "z.B. 24"
3952
 
3953
+ #: app/features/mec/meta_boxes/display_options.php:955
3954
  msgid "Filter By"
3955
  msgstr "Filtern nach"
3956
 
3957
+ #: app/features/mec/meta_boxes/display_options.php:957
3958
  msgid "None"
3959
  msgstr ""
3960
 
3961
+ #: app/features/mec/meta_boxes/display_options.php:966
3962
  msgid "Fit to row"
3963
  msgstr ""
3964
 
3965
+ #: app/features/mec/meta_boxes/display_options.php:967
3966
  msgid ""
3967
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3968
  "would expect from a layout that uses CSS floats."
3969
  msgstr ""
3970
 
3971
+ #: app/features/mec/meta_boxes/display_options.php:977
3972
  msgid "Convert Masonry to Grid"
3973
  msgstr ""
3974
 
3975
+ #: app/features/mec/meta_boxes/display_options.php:978
3976
  msgid "For using this option, your events should come with image"
3977
  msgstr ""
3978
 
3979
+ #: app/features/mec/meta_boxes/display_options.php:1018
3980
  msgid "Default values are d, M and Y"
3981
  msgstr "Standardwerte sind T, M und J"
3982
 
3983
+ #: app/features/mec/meta_boxes/display_options.php:1030
3984
  msgid "Default values are \"F d\" and l"
3985
  msgstr ""
3986
  "Standardwerte sind Monat als ganzes Wort, Tag des Monates mit führender Null "
3987
  "und ausgeschriebener Wochentag"
3988
 
3989
+ #: app/features/mec/meta_boxes/display_options.php:1041
3990
  msgid "Default value is \"l, F d Y\""
3991
  msgstr ""
3992
  "Standardwerte sind ausgeschriebener Wochentag, Monat als ganzes Wort, Tag "
3993
  "des Monates mit führender 0, Jahr"
3994
 
3995
+ #: app/features/mec/meta_boxes/display_options.php:1062
3996
+ #: app/features/popup/shortcode.php:228
3997
  msgid "Style 1"
3998
  msgstr "Stil 1"
3999
 
4000
+ #: app/features/mec/meta_boxes/display_options.php:1063
4001
+ #: app/features/popup/shortcode.php:233
4002
  msgid "Style 2"
4003
  msgstr "Stil 2"
4004
 
4005
+ #: app/features/mec/meta_boxes/display_options.php:1064
4006
+ #: app/features/popup/shortcode.php:238
4007
  msgid "Style 3"
4008
  msgstr "Stil 3"
4009
 
4010
+ #: app/features/mec/meta_boxes/display_options.php:1073
4011
+ #: app/features/mec/meta_boxes/display_options.php:1084
4012
  msgid "Default value is \"j F Y\""
4013
  msgstr "Standardwert ist \"j F Y\""
4014
 
4015
+ #: app/features/mec/meta_boxes/display_options.php:1097
4016
  msgid "Default values are j, F and Y"
4017
  msgstr ""
4018
  "Standardwerte sind j ( Tag des Monats ohne führende Nullen), F und Y (Jahr)"
4019
 
4020
+ #: app/features/mec/meta_boxes/display_options.php:1105
4021
+ #: app/features/mec/meta_boxes/display_options.php:1140
4022
  msgid " -- Next Upcoming Event -- "
4023
  msgstr "-- Nächste Veranstaltung--"
4024
 
4025
+ #: app/features/mec/meta_boxes/display_options.php:1112
4026
  msgid "Background Color"
4027
  msgstr "Hintergrund Farbe"
4028
 
4029
+ #: app/features/mec/meta_boxes/display_options.php:1154
4030
+ #: app/features/mec/meta_boxes/display_options.php:1241
4031
+ #: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
4032
  msgid "Type 1"
4033
  msgstr "Typ 1"
4034
 
4035
+ #: app/features/mec/meta_boxes/display_options.php:1155
4036
+ #: app/features/mec/meta_boxes/display_options.php:1242
4037
+ #: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
4038
  msgid "Type 2"
4039
  msgstr "Typ 2"
4040
 
4041
+ #: app/features/mec/meta_boxes/display_options.php:1156
4042
+ #: app/features/mec/meta_boxes/display_options.php:1243
4043
+ #: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
4044
  msgid "Type 3"
4045
  msgstr "Type 3"
4046
 
4047
+ #: app/features/mec/meta_boxes/display_options.php:1157
4048
+ #: app/features/mec/meta_boxes/display_options.php:1244
4049
+ #: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
4050
  msgid "Type 4"
4051
  msgstr "Typ 4"
4052
 
4053
+ #: app/features/mec/meta_boxes/display_options.php:1181
4054
  msgid "Default values are d, F and Y"
4055
  msgstr "Standardwert ist d (Tag) F und Y (Jahr)"
4056
 
4057
+ #: app/features/mec/meta_boxes/display_options.php:1192
4058
+ #: app/features/mec/meta_boxes/display_options.php:1203
4059
  msgid "Default value is \"M d, Y\""
4060
  msgstr "Standardwert ist \"M T, J\""
4061
 
4062
+ #: app/features/mec/meta_boxes/display_options.php:1222
4063
+ #: app/features/mec/meta_boxes/display_options.php:1331
4064
  msgid "Auto Play Time"
4065
  msgstr "Auto Play Time"
4066
 
4067
+ #: app/features/mec/meta_boxes/display_options.php:1223
4068
+ #: app/features/mec/meta_boxes/display_options.php:1332
4069
  msgid "eg. 3000 default is 3 second"
4070
  msgstr "z.B. Voreinstellung 3000 sind 3 Sekunden"
4071
 
4081
  msgid "Head Text"
4082
  msgstr "Text"
4083
 
4084
+ #: app/features/mec/meta_boxes/display_options.php:1245
4085
+ #: app/features/popup/shortcode.php:289
4086
  msgid "Type 5"
4087
  msgstr "Typ 5"
4088
 
4089
+ #: app/features/mec/meta_boxes/display_options.php:1425
4090
  #, fuzzy
4091
  #| msgid "Default values are j and F"
4092
  msgid "Default values are j and M"
4129
  msgstr "Daten"
4130
 
4131
  #: app/features/mec/meta_boxes/filter.php:183
4132
+ #: app/features/popup/shortcode.php:324
4133
  msgid "Include Expired Events"
4134
  msgstr "Inklusive abgelaufene Events"
4135
 
4136
  #: app/features/mec/meta_boxes/filter.php:190
4137
+ #: app/features/popup/shortcode.php:325
4138
  msgid ""
4139
  "You have ability to include past/expired events if you like so it will show "
4140
  "upcoming and expired events based on start date that you selected."
4144
  "Grundlage des Starttermins angezeigt, das Sie ausgewählt haben."
4145
 
4146
  #: app/features/mec/meta_boxes/filter.php:197
4147
+ #: app/features/popup/shortcode.php:335
4148
  msgid "Show Only Expired Events"
4149
  msgstr "Nur abgelaufene Events anzeigen"
4150
 
4156
  msgstr ""
4157
 
4158
  #: app/features/mec/meta_boxes/filter.php:204
4159
+ #: app/features/popup/shortcode.php:336
4160
  msgid "only"
4161
  msgstr ""
4162
 
4165
  msgstr ""
4166
 
4167
  #: app/features/mec/meta_boxes/filter.php:212
4168
+ #: app/features/popup/shortcode.php:346
4169
  msgid "Show Only Ongoing Events"
4170
  msgstr "Zeigt nur laufende Events"
4171
 
4172
  #: app/features/mec/meta_boxes/filter.php:219
4173
+ #: app/features/popup/shortcode.php:347
4174
  msgid "It shows only ongoing events on List and Grid skins."
4175
  msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
4176
 
4266
  #: app/features/mec/meta_boxes/search_form.php:716
4267
  #: app/features/mec/meta_boxes/search_form.php:723
4268
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
4269
+ #: app/features/mec/settings.php:421
4270
  msgid "Disabled"
4271
  msgstr "Deaktiviert"
4272
 
4281
  #: app/features/mec/meta_boxes/search_form.php:535
4282
  #: app/features/mec/meta_boxes/search_form.php:596
4283
  #: app/features/mec/meta_boxes/search_form.php:693
4284
+ #: app/features/mec/settings.php:827 app/features/mec/single.php:217
4285
+ #: app/features/search.php:83 app/features/speakers.php:61
4286
+ #: app/features/speakers.php:269 app/libraries/main.php:5290
4287
  #: app/libraries/skins.php:936
4288
  msgid "Speaker"
4289
  msgstr ""
4299
  #: app/features/mec/meta_boxes/search_form.php:542
4300
  #: app/features/mec/meta_boxes/search_form.php:603
4301
  #: app/features/mec/meta_boxes/search_form.php:700
4302
+ #: app/features/mec/settings.php:834 app/features/mec/single.php:226
4303
+ #: app/features/search.php:88 app/libraries/skins.php:962
4304
  #, fuzzy
4305
  #| msgid "Tags"
4306
  msgid "Tag"
4385
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
4386
 
4387
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4388
+ #: app/features/mec/settings.php:864 app/features/mec/settings.php:869
4389
+ #: app/features/mec/settings.php:917 app/features/mec/settings.php:941
4390
+ #: app/features/mec/settings.php:965
4391
  msgid "API Key"
4392
  msgstr "API Schlüssel"
4393
 
4394
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:870
4395
+ #: app/features/mec/settings.php:883
4396
  msgid "Required!"
4397
  msgstr "Erforderlich (Pflichtfeld)"
4398
 
5041
  "Informieren, dass eine neue Buchung eingegangen ist."
5042
 
5043
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
5044
+ #: app/libraries/notifications.php:610
5045
  msgid "Booking Reminder"
5046
  msgstr "Buchungs Erinnerung"
5047
 
5104
  msgstr "Status der Veranstaltung"
5105
 
5106
  #: app/features/mec/notifications.php:720
5107
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:742
5108
+ #: app/features/mec/settings.php:746
5109
  msgid "Event Note"
5110
  msgstr "Veranstaltungsnotiz"
5111
 
5309
  msgstr ""
5310
 
5311
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5312
+ #: app/libraries/main.php:5294
5313
  msgid "Weekdays"
5314
  msgstr "Wochentage"
5315
 
5371
  "12 AM and you don't want those events considered as multiple days events!"
5372
  msgstr ""
5373
 
5374
+ #: app/features/mec/settings.php:222
5375
+ #, fuzzy
5376
+ #| msgid "Add Shortcode"
5377
+ msgid "Open \"Add Shortcode\" as Popup"
5378
+ msgstr "Shortcode hinzufügen"
5379
+
5380
+ #: app/features/mec/settings.php:225
5381
+ #, fuzzy
5382
+ #| msgid "Enabled"
5383
+ msgid "Enable"
5384
+ msgstr "Aktiviert"
5385
+
5386
+ #: app/features/mec/settings.php:232 app/libraries/main.php:532
5387
  msgid "Archive Pages"
5388
  msgstr ""
5389
 
5390
+ #: app/features/mec/settings.php:235 app/features/mec/settings.php:240
5391
  msgid "Archive Page Title"
5392
  msgstr "Titel der Archivseite"
5393
 
5394
+ #: app/features/mec/settings.php:241
5395
  #, fuzzy
5396
  #| msgid "Default value is Events"
5397
  msgid "Default value is Events - It's title of the page"
5398
  msgstr "Der Standardwert ist Ereignisse (Events)"
5399
 
5400
+ #: app/features/mec/settings.php:249 app/features/mec/settings.php:317
5401
  msgid "Archive Page Skin"
5402
  msgstr "Skin Seite Archiv"
5403
 
5404
+ #: app/features/mec/settings.php:257
5405
  #, fuzzy
5406
  #| msgid "Edit shortcodes"
5407
  msgid "Put shortcode..."
5408
  msgstr "Shortcode ändern"
5409
 
5410
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
5411
+ #: app/features/mec/settings.php:278 app/features/mec/settings.php:287
5412
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:334
5413
+ #: app/features/mec/settings.php:349 app/features/mec/settings.php:352
5414
+ #: app/features/mec/settings.php:361 app/features/mec/settings.php:387
5415
  #, fuzzy
5416
  #| msgid "The event is ongoing."
5417
  msgid "There is no skins"
5418
  msgstr "Die Veranstaltung ist im Gange."
5419
 
5420
+ #: app/features/mec/settings.php:263 app/features/mec/settings.php:337
5421
  #: app/features/mec/single.php:69
5422
  msgid "Modern Style"
5423
  msgstr "Moderner Stil"
5424
 
5425
+ #: app/features/mec/settings.php:305 app/features/mec/settings.php:379
5426
  #, fuzzy
5427
  #| msgid "Colorful"
5428
  msgid "colorful"
5429
  msgstr "Farbenfroh"
5430
 
5431
+ #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
5432
  #, fuzzy
5433
  #| msgid "Plain Style"
5434
  msgid "Clean Style"
5435
  msgstr "Einfacher schlichter Stil"
5436
 
5437
+ #: app/features/mec/settings.php:318
5438
  #, fuzzy
5439
  #| msgid "Default value is Calendar/Monthly View"
5440
  msgid "Default value is Calendar/Monthly View, But you can change it "
5441
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
5442
 
5443
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
5444
  msgid "See Demo"
5445
  msgstr ""
5446
 
5447
+ #: app/features/mec/settings.php:326 app/features/mec/settings.php:391
5448
  msgid "Category Page Skin"
5449
  msgstr "Kategorie Seiten Skin"
5450
 
5451
+ #: app/features/mec/settings.php:392
5452
  msgid ""
5453
  "Default value is List View - But you can change it Set a skin for all "
5454
  "categories."
5455
  msgstr ""
5456
 
5457
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:408
5458
  msgid "Category Events Method"
5459
  msgstr ""
5460
 
5461
+ #: app/features/mec/settings.php:404
5462
  msgid "Expired Events"
5463
  msgstr ""
5464
 
5465
+ #: app/features/mec/settings.php:409
5466
  msgid "Default value is Upcoming Events"
5467
  msgstr ""
5468
 
5469
+ #: app/features/mec/settings.php:417 app/features/mec/settings.php:425
5470
  msgid "Events Archive Status"
5471
  msgstr "Events Archiv Status"
5472
 
5473
+ #: app/features/mec/settings.php:420
5474
  msgid "Enabled (Recommended)"
5475
  msgstr "Ist aktiviert (empfohlen)"
5476
 
5477
+ #: app/features/mec/settings.php:426
5478
  msgid ""
5479
  "If you disable it, then you should create a page as archive page of MEC. "
5480
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
5484
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
5485
  "werden alle MEC-Rewrite-Regeln deaktiviert."
5486
 
5487
+ #: app/features/mec/settings.php:439 app/features/mec/settings.php:444
5488
  msgid "Main Slug"
5489
  msgstr "Main Slug"
5490
 
5491
+ #: app/features/mec/settings.php:445
5492
  msgid ""
5493
  "Default value is events. You can not have a page with this name. MEC allows "
5494
  "you to create custom URLs for the permalinks and archives to enhance the "
5495
  "applicability and forward-compatibility of the links."
5496
  msgstr ""
5497
 
5498
+ #: app/features/mec/settings.php:449 app/features/mec/settings.php:463
5499
  #, fuzzy
5500
  #| msgid ""
5501
  #| "Default value is events. Valid characters are lowercase a-z, - character "
5505
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
5506
  "und Zahlen."
5507
 
5508
+ #: app/features/mec/settings.php:453 app/features/mec/settings.php:458
5509
  msgid "Category Slug"
5510
  msgstr "Category Slug"
5511
 
5512
+ #: app/features/mec/settings.php:459
5513
  #, fuzzy
5514
  #| msgid ""
5515
  #| "It's slug of MEC categories, you can change it to events-cat or something "
5525
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
5526
  "category"
5527
 
5528
+ #: app/features/mec/settings.php:471
5529
  msgid "Currency"
5530
  msgstr "Währung"
5531
 
5532
+ #: app/features/mec/settings.php:481 app/features/mec/settings.php:486
5533
  msgid "Currency Sign"
5534
  msgstr "Währungssymbol"
5535
 
5536
+ #: app/features/mec/settings.php:487
5537
  msgid "Default value will be \"currency\" if you leave it empty."
5538
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
5539
 
5540
+ #: app/features/mec/settings.php:494
5541
  msgid "Currency Position"
5542
  msgstr "Position des Währungssymbols"
5543
 
5544
+ #: app/features/mec/settings.php:497
5545
  msgid "Before $10"
5546
  msgstr "Vor $10"
5547
 
5548
+ #: app/features/mec/settings.php:498
5549
  msgid "After 10$"
5550
  msgstr "Nach 10$"
5551
 
5552
+ #: app/features/mec/settings.php:503
5553
  msgid "Thousand Separator"
5554
  msgstr "Tausendertrennzeichen"
5555
 
5556
+ #: app/features/mec/settings.php:509
5557
  msgid "Decimal Separator"
5558
  msgstr "Dezimaltrennzeichen"
5559
 
5560
+ #: app/features/mec/settings.php:519
5561
  msgid "No decimal"
5562
  msgstr "Keine Dezimale"
5563
 
5564
+ #: app/features/mec/settings.php:530
5565
  msgid "Enable Google Recaptcha"
5566
  msgstr "Google Recaptcha aktivieren"
5567
 
5568
+ #: app/features/mec/settings.php:537
5569
  msgid "Enable on booking form"
5570
  msgstr "Auf dem Buchungsformular aktivieren"
5571
 
5572
+ #: app/features/mec/settings.php:543
5573
  #, fuzzy
5574
  #| msgid "Enable on \"Frontend Event Submittion\" form"
5575
  msgid "Enable on \"Frontend Event Submission\" form"
5576
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
5577
 
5578
+ #: app/features/mec/settings.php:547
5579
  msgid "Site Key"
5580
  msgstr "Site Key (Seitenschlüssel)"
5581
 
5582
+ #: app/features/mec/settings.php:553
5583
  msgid "Secret Key"
5584
  msgstr "Geheimschlüssel"
5585
 
5586
+ #: app/features/mec/settings.php:565 app/features/mec/settings.php:573
5587
  msgid "Time Format"
5588
  msgstr "Zeitformat"
5589
 
5590
+ #: app/features/mec/settings.php:568
5591
  msgid "12 hours format with AM/PM"
5592
  msgstr "12-Stunden-Format mit AM/FM"
5593
 
5594
+ #: app/features/mec/settings.php:569
5595
  msgid "24 hours format"
5596
  msgstr "24-Stunden-Format"
5597
 
5598
+ #: app/features/mec/settings.php:574
5599
  msgid "This option, affects the selection of Start/End time."
5600
  msgstr ""
5601
 
5602
+ #: app/features/mec/settings.php:582
5603
  msgid "Events List Page"
5604
  msgstr "Seite Liste der Veranstaltungen"
5605
 
5606
+ #: app/features/mec/settings.php:591 app/features/mec/settings.php:603
5607
  #, php-format
5608
  msgid "Put %s shortcode into the page."
5609
  msgstr "%s shortcode in die Seite einfügen"
5610
 
5611
+ #: app/features/mec/settings.php:594
5612
  msgid "Add/Edit Events Page"
5613
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
5614
 
5615
+ #: app/features/mec/settings.php:618
5616
  #, fuzzy
5617
  #| msgid ""
5618
  #| "User redirects to this page after booking. Leave it empty if you want to "
5624
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
5625
  "es leer, wenn Sie es deaktivieren möchten."
5626
 
5627
+ #: app/features/mec/settings.php:643
5628
  msgid "Enable event submission by guest (Not logged-in) users"
5629
  msgstr ""
5630
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
5631
  "erlauben"
5632
 
5633
+ #: app/features/mec/settings.php:650
5634
  msgid "Enable mandatory email and name for guest user"
5635
  msgstr ""
5636
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
5637
 
5638
+ #: app/features/mec/settings.php:654
5639
  msgid "Frontend Event Submission Sections"
5640
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
5641
 
5642
+ #: app/features/mec/settings.php:676 app/widgets/single.php:119
5643
  msgid "Event Categories"
5644
  msgstr "Veranstaltungskategorien"
5645
 
5646
+ #: app/features/mec/settings.php:682
5647
  msgid "Event Labels"
5648
  msgstr "Event Labels"
5649
 
5650
+ #: app/features/mec/settings.php:694
5651
  msgid "Event Tags"
5652
  msgstr "Event Schlagworte"
5653
 
5654
+ #: app/features/mec/settings.php:706 app/widgets/single.php:123
5655
  msgid "Event Organizer"
5656
  msgstr "Veranstaltungsmanager"
5657
 
5658
+ #: app/features/mec/settings.php:724
5659
  msgid "Booking Options"
5660
  msgstr "Buchungsoptionen"
5661
 
5662
+ #: app/features/mec/settings.php:730
5663
  #, fuzzy
5664
  #| msgid "Fees/Taxes Options"
5665
  msgid "Fees / Taxes Options"
5666
  msgstr "Gebühren/Steuer Optionen"
5667
 
5668
+ #: app/features/mec/settings.php:747
5669
  #, php-format
5670
  msgid ""
5671
  "Users can put a note for editors while they're submitting the event. Also "
5677
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
5678
  "erhalten."
5679
 
5680
+ #: app/features/mec/settings.php:754 app/features/mec/settings.php:762
5681
  msgid "Visibility of Note"
5682
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
5683
 
5684
+ #: app/features/mec/settings.php:757
5685
  msgid "Always"
5686
  msgstr "Immer"
5687
 
5688
+ #: app/features/mec/settings.php:758
5689
  msgid "While event is not published"
5690
  msgstr "Das Ereignis wird nicht veröffentlicht"
5691
 
5692
+ #: app/features/mec/settings.php:763
5693
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5694
  msgstr ""
5695
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
5696
  "Ereignis im Backend bearbeitet."
5697
 
5698
+ #: app/features/mec/settings.php:774 app/libraries/main.php:537
5699
  msgid "User Profile"
5700
  msgstr ""
5701
 
5702
+ #: app/features/mec/settings.php:776
5703
  #, php-format
5704
  msgid ""
5705
  "Put %s shortcode into your desired page. Then users are able to see history "
5706
  "of their bookings."
5707
  msgstr ""
5708
 
5709
+ #: app/features/mec/settings.php:781 app/libraries/main.php:538
5710
  #, fuzzy
5711
  #| msgid "Search Form"
5712
  msgid "Search Bar"
5713
  msgstr "Suche Formular"
5714
 
5715
+ #: app/features/mec/settings.php:783
5716
  #, php-format
5717
  msgid ""
5718
  "Put %s shortcode into your desired page. Then users are able to search events"
5719
  msgstr ""
5720
 
5721
+ #: app/features/mec/settings.php:787
5722
  msgid "Ajax Live mode"
5723
  msgstr ""
5724
 
5725
+ #: app/features/mec/settings.php:791
5726
  msgid "Ajax mode"
5727
  msgstr ""
5728
 
5729
+ #: app/features/mec/settings.php:792
5730
  msgid ""
5731
  "if you enable this option, search button disappeared and to use this "
5732
  "feature, text input field must be enabled."
5733
  msgstr ""
5734
 
5735
+ #: app/features/mec/settings.php:800
5736
  #, fuzzy
5737
  #| msgid "Modern Style"
5738
  msgid "Modern Type"
5739
  msgstr "Moderner Stil"
5740
 
5741
+ #: app/features/mec/settings.php:804
5742
  #, fuzzy
5743
  #| msgid "Search Form"
5744
  msgid "Search bar fields"
5745
  msgstr "Suche Formular"
5746
 
5747
+ #: app/features/mec/settings.php:846
5748
  #, fuzzy
5749
  #| msgid "Text Input"
5750
  msgid "Text input"
5751
  msgstr "Text eingeben"
5752
 
5753
+ #: app/features/mec/settings.php:859
5754
  msgid "Enable Mailchimp Integration"
5755
  msgstr "Mailchimp Integration deaktivieren"
5756
 
5757
+ #: app/features/mec/settings.php:877 app/features/mec/settings.php:882
5758
+ #: app/features/mec/settings.php:923 app/features/mec/settings.php:971
5759
  msgid "List ID"
5760
  msgstr "List ID"
5761
 
5762
+ #: app/features/mec/settings.php:890 app/features/mec/settings.php:898
5763
  msgid "Subscription Status"
5764
  msgstr "Buchungsstatus"
5765
 
5766
+ #: app/features/mec/settings.php:893
5767
  msgid "Subscribe automatically"
5768
  msgstr "automatisch Anmelden/Abonnieren"
5769
 
5770
+ #: app/features/mec/settings.php:894
5771
  msgid "Subscribe by verification"
5772
  msgstr ""
5773
  "Anmelden/Abonnieren durch Bestätigung\n"
5774
  " "
5775
 
5776
+ #: app/features/mec/settings.php:899
5777
  msgid ""
5778
  "If you choose \"Subscribe by verification\" then an email will send to user "
5779
  "by mailchimp for subscription verification."
5781
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
5782
  "Benutzer per Mailchimp zur Bestätigung gesendet."
5783
 
5784
+ #: app/features/mec/settings.php:908 app/libraries/main.php:540
5785
  #, fuzzy
5786
  #| msgid "Mailchimp Integration"
5787
  msgid "Campaign Monitor Integration"
5788
  msgstr "Mailchimp Integration"
5789
 
5790
+ #: app/features/mec/settings.php:912
5791
  #, fuzzy
5792
  #| msgid "Enable Mailchimp Integration"
5793
  msgid "Enable Campaign Monitor Integration"
5794
  msgstr "Mailchimp Integration deaktivieren"
5795
 
5796
+ #: app/features/mec/settings.php:932 app/libraries/main.php:541
5797
  #, fuzzy
5798
  #| msgid "Mailchimp Integration"
5799
  msgid "MailerLite Integration"
5800
  msgstr "Mailchimp Integration"
5801
 
5802
+ #: app/features/mec/settings.php:936
5803
  #, fuzzy
5804
  #| msgid "Enable Mailchimp Integration"
5805
  msgid "Enable MailerLite Integration"
5806
  msgstr "Mailchimp Integration deaktivieren"
5807
 
5808
+ #: app/features/mec/settings.php:947
5809
  msgid "Group ID"
5810
  msgstr ""
5811
 
5812
+ #: app/features/mec/settings.php:956 app/libraries/main.php:542
5813
  #, fuzzy
5814
  #| msgid "BuddyPress Integration"
5815
  msgid "Constant Contact Integration"
5816
  msgstr "Buddy Press Integration"
5817
 
5818
+ #: app/features/mec/settings.php:960
5819
  #, fuzzy
5820
  #| msgid "Enable Mailchimp Integration"
5821
  msgid "Enable constantcontact Integration"
5822
  msgstr "Mailchimp Integration deaktivieren"
5823
 
5824
+ #: app/features/mec/settings.php:982
5825
  #, fuzzy
5826
  #| msgid "Filter Options"
5827
  msgid "Upload Field Options"
5828
  msgstr "Filteroptionen"
5829
 
5830
+ #: app/features/mec/settings.php:984
5831
  msgid "Mime types"
5832
  msgstr ""
5833
 
5834
+ #: app/features/mec/settings.php:988
5835
  msgid "Split mime types with \",\"."
5836
  msgstr ""
5837
 
5838
+ #: app/features/mec/settings.php:988
5839
  msgid "Default: jpeg,jpg,png,pdf"
5840
  msgstr ""
5841
 
5842
+ #: app/features/mec/settings.php:991
5843
  #, fuzzy
5844
  #| msgid "Amount (Per Ticket)"
5845
  msgid "Maximum file size"
5846
  msgstr "Betrag (pro Ticket)"
5847
 
5848
+ #: app/features/mec/settings.php:995
5849
  msgid "The unit is Megabyte \"MB\""
5850
  msgstr ""
5851
 
6614
  msgid "eg. https://webnus.net"
6615
  msgstr "http://webnus.net"
6616
 
6617
+ #: app/features/organizers.php:312 app/libraries/main.php:5318
6618
  #: app/skins/single.php:862
6619
  msgid "Other Organizers"
6620
  msgstr "Andere Veranstalter"
6626
  "Sie können zusätzliche Veranstalter zusätzlich zum Hauptorganisator "
6627
  "auswählen, wenn Sie möchten."
6628
 
6629
+ #: app/features/popup/shortcode.php:34
6630
+ #, fuzzy
6631
+ #| msgid "Add Shortcode"
6632
+ msgid "Adding a Shortcode..."
6633
+ msgstr "Shortcode hinzufügen"
6634
+
6635
+ #: app/features/popup/shortcode.php:42
6636
+ #, fuzzy
6637
+ #| msgid "Shortcode"
6638
+ msgid "Shortcode Name"
6639
+ msgstr "Shortcode"
6640
+
6641
+ #: app/features/popup/shortcode.php:43
6642
+ msgid "Shortcode name is required"
6643
+ msgstr ""
6644
+
6645
+ #: app/features/popup/shortcode.php:313
6646
+ #, fuzzy
6647
+ #| msgid "Single Event Style"
6648
+ msgid "Select Event"
6649
+ msgstr "Single Event Stil"
6650
+
6651
+ #: app/features/popup/shortcode.php:336
6652
+ #, fuzzy, php-format
6653
+ #| msgid "It shows only expired/past events."
6654
+ msgid "It shows %s expired/past events."
6655
+ msgstr "Zeigt nur abgelaufene / vergangene Events."
6656
+
6657
+ #: app/features/popup/shortcode.php:360
6658
+ #, fuzzy
6659
+ #| msgid "Shortcode"
6660
+ msgid "Your Shortcode"
6661
+ msgstr "Shortcode"
6662
+
6663
+ #: app/features/popup/shortcode.php:363
6664
+ msgid "Copy"
6665
+ msgstr ""
6666
+
6667
+ #: app/features/popup/shortcode.php:366
6668
+ #, fuzzy
6669
+ #| msgid "Put %s shortcode into the page."
6670
+ msgid "Put this shortcode into your desired page."
6671
+ msgstr "%s shortcode in die Seite einfügen"
6672
+
6673
+ #: app/features/popup/shortcode.php:372
6674
+ msgid "Prev"
6675
+ msgstr ""
6676
+
6677
+ #: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
6678
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6679
+ #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6680
+ msgid "Next"
6681
+ msgstr "Weiter"
6682
+
6683
+ #: app/features/popup/shortcode.php:374
6684
+ #, fuzzy
6685
+ #| msgid "Add New Shortcode"
6686
+ msgid "New Shortcode"
6687
+ msgstr "Neuen Shortcode hinzufügen"
6688
+
6689
  #: app/features/profile.php:74
6690
  #, fuzzy, php-format
6691
  #| msgid "Please %s/%s in order to submit new events."
6692
  msgid "Please %s/%s in order to see your bookings / profile."
6693
  msgstr "Um neue Veranstaltungen einzugeben, bitte %s/%s"
6694
 
6695
+ #: app/features/profile/profile.php:18 app/libraries/main.php:2143
6696
  #, fuzzy
6697
  #| msgid "Your booking cannot be canceled."
6698
  msgid "Your booking already canceled!"
6702
  msgid "#"
6703
  msgstr ""
6704
 
6705
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3153
6706
  msgid "Status"
6707
  msgstr ""
6708
 
6709
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2258
6710
  msgid "Attendees"
6711
  msgstr "Teilnehmer"
6712
 
6739
  msgid "No bookings found!"
6740
  msgstr "Keine Buchungen gefunden"
6741
 
6742
+ #: app/features/search.php:93 app/libraries/main.php:5284
6743
  msgid "label"
6744
  msgstr "label"
6745
 
6746
+ #: app/features/search.php:128
6747
  msgid "Please enter at least 3 characters and try again"
6748
  msgstr ""
6749
 
6766
  msgstr ""
6767
 
6768
  #: app/features/search_bar/search_result.php:11
6769
+ #: app/libraries/notifications.php:954 app/libraries/render.php:488
6770
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6771
  #: app/skins/single.php:160 app/skins/single.php:753
6772
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6894
  msgid "Upgrade"
6895
  msgstr ""
6896
 
6897
+ #: app/libraries/factory.php:362
6898
  msgid "day"
6899
  msgstr "Tag"
6900
 
6901
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:132
6902
+ #: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
6903
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6904
  msgid "days"
6905
  msgstr "Tage"
6906
 
6907
+ #: app/libraries/factory.php:364
6908
  msgid "hour"
6909
  msgstr "Stunde"
6910
 
6911
+ #: app/libraries/factory.php:365 app/modules/countdown/details.php:139
6912
+ #: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
6913
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6914
  msgid "hours"
6915
  msgstr "Stunden"
6916
 
6917
+ #: app/libraries/factory.php:366
6918
  msgid "minute"
6919
  msgstr "Minute"
6920
 
6921
+ #: app/libraries/factory.php:367 app/modules/countdown/details.php:146
6922
+ #: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
6923
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6924
  msgid "minutes"
6925
  msgstr "Minuten"
6926
 
6927
+ #: app/libraries/factory.php:368
6928
  msgid "second"
6929
  msgstr "Sekunde"
6930
 
6931
+ #: app/libraries/factory.php:369 app/modules/countdown/details.php:153
6932
+ #: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
6933
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6934
  msgid "seconds"
6935
  msgstr "Sekunden"
6936
 
6937
+ #: app/libraries/factory.php:417
6938
  msgid "MEC Single Sidebar"
6939
  msgstr "MEC Single Sidebar"
6940
 
6941
+ #: app/libraries/factory.php:418
6942
  msgid "Custom sidebar for single and modal page of MEC."
6943
  msgstr "Custom sidebar for single and modal page of MEC."
6944
 
6948
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
6949
  "Beitrag handelt."
6950
 
6951
+ #: app/libraries/main.php:331 app/libraries/main.php:1759
6952
+ #: app/libraries/main.php:1784
6953
  msgid "Grid View"
6954
  msgstr "Rasterdarstellung"
6955
 
6956
+ #: app/libraries/main.php:332 app/libraries/main.php:1760
6957
+ #: app/libraries/main.php:1785
6958
  msgid "Agenda View"
6959
  msgstr "Agendaansicht"
6960
 
6961
+ #: app/libraries/main.php:333 app/libraries/main.php:1751
6962
+ #: app/libraries/main.php:1776
6963
  msgid "Full Calendar"
6964
  msgstr "Ganzer Kalender"
6965
 
6966
+ #: app/libraries/main.php:335 app/libraries/main.php:1753
6967
+ #: app/libraries/main.php:1778
6968
  msgid "Calendar/Monthly View"
6969
  msgstr "Kalender-/Monatsansicht"
6970
 
6971
+ #: app/libraries/main.php:338 app/libraries/main.php:1756
6972
+ #: app/libraries/main.php:1781
6973
  msgid "Timetable View"
6974
  msgstr "Stundenplan"
6975
 
6976
+ #: app/libraries/main.php:339 app/libraries/main.php:1757
6977
+ #: app/libraries/main.php:1782
6978
  msgid "Masonry View"
6979
  msgstr "Kachel Ansicht"
6980
 
6981
+ #: app/libraries/main.php:340 app/libraries/main.php:1761
6982
+ #: app/libraries/main.php:1786
6983
  msgid "Map View"
6984
  msgstr "Kartenansicht"
6985
 
7015
  msgid "Tile View"
7016
  msgstr "Stundenplan"
7017
 
7018
+ #: app/libraries/main.php:385 app/libraries/main.php:5296
7019
  msgid "SU"
7020
  msgstr "SO"
7021
 
7022
+ #: app/libraries/main.php:386 app/libraries/main.php:5297
7023
  msgid "MO"
7024
  msgstr "MO"
7025
 
7026
+ #: app/libraries/main.php:387 app/libraries/main.php:5298
7027
  msgid "TU"
7028
  msgstr "DI"
7029
 
7030
+ #: app/libraries/main.php:388 app/libraries/main.php:5299
7031
  msgid "WE"
7032
  msgstr "MI"
7033
 
7034
+ #: app/libraries/main.php:389 app/libraries/main.php:5300
7035
  msgid "TH"
7036
  msgstr "DO"
7037
 
7038
+ #: app/libraries/main.php:390 app/libraries/main.php:5301
7039
  msgid "FR"
7040
  msgstr "FR"
7041
 
7042
+ #: app/libraries/main.php:391 app/libraries/main.php:5302
7043
  msgid "SA"
7044
  msgstr "SA"
7045
 
7114
  msgid "Event at this location"
7115
  msgstr "Veranstaltung an diesem Ort "
7116
 
7117
+ #: app/libraries/main.php:1529
7118
  msgid "Facebook"
7119
  msgstr "Facebook"
7120
 
7121
+ #: app/libraries/main.php:1530
7122
  msgid "Twitter"
7123
  msgstr "Twitter"
7124
 
7125
+ #: app/libraries/main.php:1531 app/libraries/main.php:1588
7126
  msgid "Linkedin"
7127
  msgstr "Linkedin"
7128
 
7129
+ #: app/libraries/main.php:1532 app/libraries/main.php:1624
7130
  msgid "VK"
7131
  msgstr ""
7132
 
7133
+ #: app/libraries/main.php:1533
7134
  msgid "Tumblr"
7135
  msgstr ""
7136
 
7137
+ #: app/libraries/main.php:1534
7138
  msgid "Pinterest"
7139
  msgstr ""
7140
 
7141
+ #: app/libraries/main.php:1535
7142
  msgid "Flipboard"
7143
  msgstr ""
7144
 
7145
+ #: app/libraries/main.php:1536
7146
  #, fuzzy
7147
  #| msgid "Tickets"
7148
  msgid "GetPocket"
7149
  msgstr "Tickets"
7150
 
7151
+ #: app/libraries/main.php:1537
7152
  msgid "Reddit"
7153
  msgstr ""
7154
 
7155
+ #: app/libraries/main.php:1538
7156
  msgid "WhatsApp"
7157
  msgstr ""
7158
 
7159
+ #: app/libraries/main.php:1539
7160
  msgid "Telegram"
7161
  msgstr ""
7162
 
7163
+ #: app/libraries/main.php:1558
7164
  msgid "Share on Facebook"
7165
  msgstr "Teilen auf Facebook"
7166
 
7167
+ #: app/libraries/main.php:1573
7168
  msgid "Tweet"
7169
  msgstr "Tweet"
7170
 
7171
+ #: app/libraries/main.php:1639
7172
  #, fuzzy
7173
  #| msgid "Share on Facebook"
7174
  msgid "Share on Tumblr"
7175
  msgstr "Teilen auf Facebook"
7176
 
7177
+ #: app/libraries/main.php:1655
7178
  msgid "Share on Pinterest"
7179
  msgstr ""
7180
 
7181
+ #: app/libraries/main.php:1671
7182
  #, fuzzy
7183
  #| msgid "Share on Facebook"
7184
  msgid "Share on Flipboard"
7185
  msgstr "Teilen auf Facebook"
7186
 
7187
+ #: app/libraries/main.php:1689
7188
  #, fuzzy
7189
  #| msgid "Share on Facebook"
7190
  msgid "Share on GetPocket"
7191
  msgstr "Teilen auf Facebook"
7192
 
7193
+ #: app/libraries/main.php:1705
7194
  #, fuzzy
7195
  #| msgid "Share on Facebook"
7196
  msgid "Share on Reddit"
7197
  msgstr "Teilen auf Facebook"
7198
 
7199
+ #: app/libraries/main.php:1721
7200
  msgid "Share on Telegram"
7201
  msgstr ""
7202
 
7203
+ #: app/libraries/main.php:1739
7204
  msgid "Share on WhatsApp"
7205
  msgstr ""
7206
 
7207
+ #: app/libraries/main.php:1762
7208
  #, fuzzy
7209
  #| msgid "Shortcode"
7210
  msgid "Custom Shortcode"
7211
  msgstr "Shortcode"
7212
 
7213
+ #: app/libraries/main.php:2123
7214
  #, fuzzy
7215
  #| msgid "Your booking successfully verified."
7216
  msgid "Your booking already verified!"
7217
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
7218
 
7219
+ #: app/libraries/main.php:2128
7220
  msgid "Your booking successfully verified."
7221
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
7222
 
7223
+ #: app/libraries/main.php:2129
7224
  msgid "Your booking cannot verify!"
7225
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
7226
 
7227
+ #: app/libraries/main.php:2148
7228
  msgid "Your booking successfully canceled."
7229
  msgstr "Ihre Buchung wurde erfolgreich storniert."
7230
 
7231
+ #: app/libraries/main.php:2149
7232
  msgid "Your booking cannot be canceled."
7233
  msgstr "Ihre Buchung kann nicht storniert werden."
7234
 
7235
+ #: app/libraries/main.php:2153
7236
  msgid "You canceled the payment successfully."
7237
  msgstr "Sie haben die Zahlung erfolgreich storniert."
7238
 
7239
+ #: app/libraries/main.php:2157
7240
  msgid "You returned from payment gateway successfully."
7241
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
7242
 
7243
+ #: app/libraries/main.php:2173
7244
  #, fuzzy
7245
  #| msgid "Cannot find the booking!"
7246
  msgid "Cannot find the invoice!"
7247
  msgstr "Kann die Buchung nicht finden!"
7248
 
7249
+ #: app/libraries/main.php:2173
7250
  #, fuzzy
7251
  #| msgid "Booking is invalid."
7252
  msgid "Invoice is invalid."
7253
  msgstr "Buchung ist ungültig."
7254
 
7255
+ #: app/libraries/main.php:2193
7256
  msgid ""
7257
  "Your booking still is not confirmed. You able download it after confirmation!"
7258
  msgstr ""
7259
 
7260
+ #: app/libraries/main.php:2193
7261
  #, fuzzy
7262
  #| msgid "Booking Confirmation"
7263
  msgid "Booking Not Confirmed."
7264
  msgstr "Buchungsbestätigung"
7265
 
7266
+ #: app/libraries/main.php:2199
7267
  msgid "Cannot find the booking!"
7268
  msgstr "Kann die Buchung nicht finden!"
7269
 
7270
+ #: app/libraries/main.php:2199
7271
  msgid "Booking is invalid."
7272
  msgstr "Buchung ist ungültig."
7273
 
7274
+ #: app/libraries/main.php:2228
7275
  #, php-format
7276
  msgid "%s Invoice"
7277
  msgstr "% s Rechnung"
7278
 
7279
+ #: app/libraries/main.php:2302
7280
  msgid "Billing"
7281
  msgstr "Abrechnung"
7282
 
7283
+ #: app/libraries/main.php:2313
7284
  msgid "Total"
7285
  msgstr "Gesamt"
7286
 
7287
+ #: app/libraries/main.php:2320
7288
  msgid "Payment"
7289
  msgstr "Bezahlung"
7290
 
7291
+ #: app/libraries/main.php:2324
7292
  msgid "Gateway"
7293
  msgstr "Gateway"
7294
 
7295
+ #: app/libraries/main.php:2332
7296
  #, fuzzy
7297
  #| msgid "Payment"
7298
  msgid "Payment Time"
7299
  msgstr "Bezahlung"
7300
 
7301
+ #: app/libraries/main.php:2393
7302
  #, fuzzy
7303
  #| msgid "Request is invalid!"
7304
  msgid "Request is not valid."
7305
  msgstr "Die Anfrage ist ungültig!"
7306
 
7307
+ #: app/libraries/main.php:2393
7308
  msgid "iCal export stopped!"
7309
  msgstr "iCal Export wurde unterbrochen!"
7310
 
7311
+ #: app/libraries/main.php:2737 app/libraries/main.php:2767
7312
+ #: app/libraries/main.php:2796 app/libraries/main.php:2826
7313
+ #: app/libraries/main.php:2855 app/libraries/main.php:2884
7314
+ #: app/libraries/main.php:2913 app/libraries/main.php:2942
7315
+ #: app/libraries/main.php:2971 app/libraries/main.php:2995
7316
+ #: app/libraries/main.php:3039 app/libraries/main.php:3083
7317
+ #: app/libraries/main.php:3130 app/libraries/main.php:3177
7318
  msgid "Sort"
7319
  msgstr "Sortieren"
7320
 
7321
+ #: app/libraries/main.php:2743 app/libraries/main.php:2773
7322
+ #: app/libraries/main.php:2802 app/libraries/main.php:2832
7323
+ #: app/libraries/main.php:2861 app/libraries/main.php:2890
7324
+ #: app/libraries/main.php:2919 app/libraries/main.php:2948
7325
+ #: app/libraries/main.php:3001 app/libraries/main.php:3045
7326
+ #: app/libraries/main.php:3089 app/libraries/main.php:3136
7327
  msgid "Required Field"
7328
  msgstr "Pflichtfeld"
7329
 
7330
+ #: app/libraries/main.php:2749 app/libraries/main.php:2779
7331
+ #: app/libraries/main.php:2808 app/libraries/main.php:2838
7332
+ #: app/libraries/main.php:2867 app/libraries/main.php:2896
7333
+ #: app/libraries/main.php:2925 app/libraries/main.php:2954
7334
+ #: app/libraries/main.php:3007 app/libraries/main.php:3051
7335
+ #: app/libraries/main.php:3095 app/libraries/main.php:3142
7336
  msgid "Insert a label for this field"
7337
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
7338
 
7339
+ #: app/libraries/main.php:2977
7340
  msgid "HTML and shortcode are allowed."
7341
  msgstr "HTML und shortcodes sind erlaubt."
7342
 
7343
+ #: app/libraries/main.php:3020 app/libraries/main.php:3064
7344
+ #: app/libraries/main.php:3108
7345
  msgid "Option"
7346
  msgstr "Option"
7347
 
7348
+ #: app/libraries/main.php:3142
7349
  #, php-format
7350
  msgid "Instead of %s, the page title with a link will be show."
7351
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
7352
 
7353
+ #: app/libraries/main.php:3144
7354
  msgid "Agreement Page"
7355
  msgstr "Zustimmungsseite"
7356
 
7357
+ #: app/libraries/main.php:3155
7358
  msgid "Checked by default"
7359
  msgstr ""
7360
 
7361
+ #: app/libraries/main.php:3156
7362
  msgid "Unchecked by default"
7363
  msgstr ""
7364
 
7365
+ #: app/libraries/main.php:3179
7366
  msgid "Insert a label for this option"
7367
  msgstr "Ein neues Label für diese Option einfügen"
7368
 
7369
+ #: app/libraries/main.php:3194
7370
  msgid "Free"
7371
  msgstr "kostenfrei"
7372
 
7373
+ #: app/libraries/main.php:3800 app/libraries/main.php:5546
7374
  #, fuzzy
7375
  #| msgid "M.E. Calendar"
7376
  msgid "M.E. Calender"
7377
  msgstr "M.E. Calender"
7378
 
7379
+ #: app/libraries/main.php:3955
7380
  #, php-format
7381
  msgid "Copy of %s"
7382
  msgstr "Kopie von %s"
7383
 
7384
+ #: app/libraries/main.php:4673
7385
  msgid "Booked an event."
7386
  msgstr "Eine Veranstaltung wurde gebucht."
7387
 
7388
+ #: app/libraries/main.php:4714
7389
  #, php-format
7390
  msgid "%s booked %s event."
7391
  msgstr "%s gebuchtes %s Event"
7392
 
7393
+ #: app/libraries/main.php:5279
7394
  msgid "Taxonomies"
7395
  msgstr "Klassifizierung "
7396
 
7397
+ #: app/libraries/main.php:5281
7398
  msgid "Category Plural Label"
7399
  msgstr "Kategorien"
7400
 
7401
+ #: app/libraries/main.php:5282
7402
  msgid "Category Singular Label"
7403
  msgstr "Kategorie"
7404
 
7405
+ #: app/libraries/main.php:5283
7406
  msgid "Label Plural Label"
7407
  msgstr "Labels"
7408
 
7409
+ #: app/libraries/main.php:5284
7410
  msgid "Label Singular Label"
7411
  msgstr "Label"
7412
 
7413
+ #: app/libraries/main.php:5285
7414
  msgid "Location Plural Label"
7415
  msgstr "Veranstaltungsorte"
7416
 
7417
+ #: app/libraries/main.php:5286
7418
  msgid "Location Singular Label"
7419
  msgstr "Veranstaltungsort"
7420
 
7421
+ #: app/libraries/main.php:5287
7422
  msgid "Organizer Plural Label"
7423
  msgstr "Veranstalter"
7424
 
7425
+ #: app/libraries/main.php:5288
7426
  msgid "Organizer Singular Label"
7427
  msgstr "Veranstalter"
7428
 
7429
+ #: app/libraries/main.php:5289
7430
  #, fuzzy
7431
  #| msgid "Label Plural Label"
7432
  msgid "Speaker Plural Label"
7433
  msgstr "Labels"
7434
 
7435
+ #: app/libraries/main.php:5290
7436
  #, fuzzy
7437
  #| msgid "Label Singular Label"
7438
  msgid "Speaker Singular Label"
7439
  msgstr "Label"
7440
 
7441
+ #: app/libraries/main.php:5296
7442
  msgid "Sunday abbreviation"
7443
  msgstr "Sonntag Abkürzung"
7444
 
7445
+ #: app/libraries/main.php:5297
7446
  msgid "Monday abbreviation"
7447
  msgstr "Montag Abkürzung"
7448
 
7449
+ #: app/libraries/main.php:5298
7450
  msgid "Tuesday abbreviation"
7451
  msgstr "Dienstag Abkürzung"
7452
 
7453
+ #: app/libraries/main.php:5299
7454
  msgid "Wednesday abbreviation"
7455
  msgstr "Mittwoch Abkürzung"
7456
 
7457
+ #: app/libraries/main.php:5300
7458
  msgid "Thursday abbreviation"
7459
  msgstr "Donnerstag Abkürzung"
7460
 
7461
+ #: app/libraries/main.php:5301
7462
  msgid "Friday abbreviation"
7463
  msgstr "Freitag Abkürzung"
7464
 
7465
+ #: app/libraries/main.php:5302
7466
  msgid "Saturday abbreviation"
7467
  msgstr "Samstag Abkürzung "
7468
 
7469
+ #: app/libraries/main.php:5306
7470
  msgid "Others"
7471
  msgstr "Andere"
7472
 
7473
+ #: app/libraries/main.php:5308
7474
  msgid "Booking Success Message"
7475
  msgstr "Buchung erfolgreich Mitteilung"
7476
 
7477
+ #: app/libraries/main.php:5308
7478
  msgid ""
7479
  "Thanks for your booking. Your tickets booked, booking verification might be "
7480
  "needed, please check your email."
7482
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
7483
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
7484
 
7485
+ #: app/libraries/main.php:5309 app/widgets/single.php:131
7486
  msgid "Register Button"
7487
  msgstr "Register Button"
7488
 
7489
+ #: app/libraries/main.php:5309 app/skins/available_spot/tpl.php:223
7490
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7491
+ #: app/skins/grid/render.php:124 app/skins/grid/render.php:171
7492
+ #: app/skins/grid/render.php:215 app/skins/grid/render.php:244
7493
+ #: app/skins/list/render.php:109 app/skins/list/render.php:195
7494
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
7495
  #: app/skins/single.php:777 app/skins/single/default.php:255
7496
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7503
  msgid "REGISTER"
7504
  msgstr "ANMELDEN"
7505
 
7506
+ #: app/libraries/main.php:5310
7507
  msgid "View Detail Button"
7508
  msgstr "Ansicht Detail Button"
7509
 
7510
+ #: app/libraries/main.php:5310 app/skins/carousel/render.php:160
7511
+ #: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
7512
+ #: app/skins/grid/render.php:171 app/skins/grid/render.php:215
7513
+ #: app/skins/grid/render.php:244 app/skins/list/render.php:109
7514
+ #: app/skins/list/render.php:195 app/skins/masonry/render.php:188
7515
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
7516
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
7517
  #: app/skins/slider/render.php:320
7518
  msgid "View Detail"
7519
  msgstr "Details "
7520
 
7521
+ #: app/libraries/main.php:5311
7522
  msgid "Event Detail Button"
7523
  msgstr "Event Detail Button"
7524
 
7525
+ #: app/libraries/main.php:5311 app/skins/countdown/tpl.php:244
7526
  msgid "Event Detail"
7527
  msgstr "Veranstaltungsdetails"
7528
 
7529
+ #: app/libraries/main.php:5313
7530
  msgid "More Info Link"
7531
  msgstr "Link Mehr Informationen"
7532
 
7533
+ #: app/libraries/main.php:5316
7534
  msgid "Ticket (Singular)"
7535
  msgstr "Ticket"
7536
 
7537
+ #: app/libraries/main.php:5317
7538
  msgid "Tickets (Plural)"
7539
  msgstr "Tickets"
7540
 
7541
+ #: app/libraries/main.php:5403
7542
  msgid "EventON"
7543
  msgstr "EventON"
7544
 
7545
+ #: app/libraries/main.php:5404
7546
  msgid "The Events Calendar"
7547
  msgstr "The Events Calendar"
7548
 
7549
+ #: app/libraries/main.php:5405
7550
  msgid "Events Schedule WP Plugin"
7551
  msgstr "Event Zeitplan WP-Plugin"
7552
 
7553
+ #: app/libraries/main.php:5406
7554
  msgid "Calendarize It"
7555
  msgstr ""
7556
 
7557
+ #: app/libraries/main.php:5407
7558
  #, fuzzy
7559
  #| msgid "No Search Options"
7560
  msgid "Event Espresso"
7561
  msgstr "Keine Suchoptionen"
7562
 
7563
+ #: app/libraries/main.php:5408
7564
  #, fuzzy
7565
  #| msgid "Event Repeating"
7566
  msgid "Events Manager (Recurring)"
7567
  msgstr "Wiederholende Veranstaltung"
7568
 
7569
+ #: app/libraries/main.php:5409
7570
  #, fuzzy
7571
  #| msgid "Modern Events Calendar"
7572
  msgid "Events Manager (Single)"
7573
  msgstr "Moderner Event Kalender "
7574
 
7575
+ #: app/libraries/main.php:5483 app/libraries/main.php:5503
7576
  msgid "Confirmed"
7577
  msgstr "Bestätigt"
7578
 
7579
+ #: app/libraries/main.php:5484 app/libraries/main.php:5511
7580
  msgid "Rejected"
7581
  msgstr "Abgelehnt"
7582
 
7583
+ #: app/libraries/main.php:5485 app/libraries/main.php:5507
7584
  msgid "Pending"
7585
  msgstr "Ausstehend"
7586
 
7587
+ #: app/libraries/main.php:5533
7588
  msgid "Waiting"
7589
  msgstr "in Bearbeitung"
7590
 
7591
+ #: app/libraries/main.php:5738 app/libraries/render.php:80
7592
  #: app/libraries/render.php:418
7593
  msgid "Skin controller does not exist."
7594
  msgstr "Skin contoller existiert nicht."
7595
 
7596
+ #: app/libraries/main.php:5852
7597
  #, fuzzy
7598
  #| msgid "Sold out!"
7599
  msgid "Sold Out"
7600
  msgstr "Ausverkauft!"
7601
 
7602
+ #: app/libraries/main.php:5860
7603
  #, fuzzy
7604
  #| msgid "Ticket"
7605
  msgid "Last Few Tickets"
7613
  msgid "Your booking is received."
7614
  msgstr "Ihre Buchung ist eingegangen"
7615
 
7616
+ #: app/libraries/notifications.php:275
7617
  msgid "Your booking is confirmed."
7618
  msgstr "Ihre Buchung wurde bestätigt."
7619
 
7620
+ #: app/libraries/notifications.php:442
7621
  #, fuzzy
7622
  #| msgid "Your booking cannot be canceled."
7623
  msgid "booking canceled."
7624
  msgstr "Ihre Buchung kann nicht storniert werden."
7625
 
7626
+ #: app/libraries/notifications.php:517
7627
  msgid "A new booking is received."
7628
  msgstr "Eine neue Buchung ist eingegangen."
7629
 
7630
+ #: app/libraries/notifications.php:741
7631
  msgid "A new event is added."
7632
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
7633
 
7634
+ #: app/libraries/notifications.php:810
7635
  #, fuzzy
7636
  #| msgid "The event published."
7637
  msgid "Your event is published."
7638
  msgstr "Die Veranstaltung wurde veröffentlicht."
7639
 
7640
+ #: app/libraries/notifications.php:1046 app/libraries/notifications.php:1057
7641
+ #: app/libraries/notifications.php:1059
7642
  msgid "to"
7643
  msgstr ""
7644
 
7645
+ #: app/libraries/notifications.php:1074 app/modules/export/details.php:46
7646
  msgid "+ Add to Google Calendar"
7647
  msgstr "+ zum Google Calendar hinzufügen"
7648
 
7649
+ #: app/libraries/notifications.php:1075 app/modules/export/details.php:47
7650
  msgid "+ iCal export"
7651
  msgstr "+ zu iCal exportieren"
7652
 
7653
+ #: app/libraries/notifications.php:1138
7654
  msgid "Yes"
7655
  msgstr "Ja"
7656
 
7657
+ #: app/libraries/notifications.php:1138
7658
  msgid "No"
7659
  msgstr "Nein"
7660
 
7712
  msgstr ""
7713
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
7714
 
 
 
 
 
 
 
7715
  #: app/modules/booking/steps/message.php:7
7716
  msgid "Thanks for your booking."
7717
  msgstr "Vielen Dank für Ihre Buchung."
7853
  msgid "Load More"
7854
  msgstr "Weitere anzeigen"
7855
 
7856
+ #: app/skins/available_spot/tpl.php:158
7857
  msgid "Available Spot(s):"
7858
  msgstr "Verfügbare Spot (s):"
7859
 
7860
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7861
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7862
+ #: app/skins/list/render.php:129
7863
  msgid "EVENT DETAIL"
7864
  msgstr "VERANSTALTUNGSDETAILS"
7865
 
7962
  msgid "Show events based on created shortcodes."
7963
  msgstr "Veranstaltungen auf Basis der erstellten shortcodes anzeigen"
7964
 
7965
+ #: app/widgets/MEC.php:86
7966
  msgid "Title:"
7967
  msgstr "Titel:"
7968
 
7969
+ #: app/widgets/MEC.php:93
7970
  msgid "Shortcode:"
7971
  msgstr "Shortcode:"
7972
 
7973
+ #: app/widgets/MEC.php:103
7974
  #, fuzzy
7975
  #| msgid "Single Event Display Method"
7976
  msgid "Enable No Event Block Display: "
7977
  msgstr "Single Event Anzeigemethode"
7978
 
7979
+ #: app/widgets/MEC.php:107
7980
  msgid "Create some calendars first."
7981
  msgstr "Erstellen Sie zuerst einige Kalender."
7982
 
8060
  msgid "http://webnus.net"
8061
  msgstr "http://webnus.net"
8062
 
 
 
 
8063
  #~ msgid "Booking module is not enabled!"
8064
  #~ msgstr "Buchungsmodul ist nicht aktiviert!"
8065
 
8457
  #~ msgid "Organizer Payment Credentials"
8458
  #~ msgstr "Name des Veranstalters des gebuchten Events"
8459
 
8460
+ #~ msgid "Booking reminder notification is not enabled!"
8461
+ #~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
8462
+
8463
  #, fuzzy
8464
  #~| msgid "%s Email"
8465
  #~ msgid "Mass Email"
8511
  #~ msgid "Event is not repeating. No dates exist for this event!"
8512
  #~ msgstr "Rabatt ist für diese Veranstaltung nicht gültig!"
8513
 
 
 
 
8514
  #~ msgid "Security nonce is missing."
8515
  #~ msgstr "Sicherheits-Nonce fehlt."
8516
 
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: 2020-01-29 15:47+0330\n"
5
- "PO-Revision-Date: 2020-01-29 15:48+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -25,8 +25,8 @@ msgstr ""
25
  msgid "Content"
26
  msgstr ""
27
 
28
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:438
29
- #: app/features/mec.php:469 app/features/mec.php:499
30
  msgid "Shortcode"
31
  msgstr ""
32
 
@@ -56,13 +56,14 @@ msgid "Select Type"
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:807
59
- #: app/features/mec/settings.php:680
60
  msgid "Event Color"
61
  msgstr ""
62
 
63
- #: app/features/contextual.php:55 app/features/mec.php:414
64
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
65
- #: app/features/mec/support.php:20 app/libraries/main.php:594
 
66
  msgid "Settings"
67
  msgstr ""
68
 
@@ -162,7 +163,7 @@ msgstr ""
162
  msgid "General Options"
163
  msgstr ""
164
 
165
- #: app/features/contextual.php:139 app/features/mec/settings.php:429
166
  #: app/libraries/main.php:533
167
  msgid "Slugs/Permalinks"
168
  msgstr ""
@@ -171,7 +172,7 @@ msgstr ""
171
  msgid "Event Details/Single Event Page"
172
  msgstr ""
173
 
174
- #: app/features/contextual.php:166 app/features/mec/settings.php:461
175
  #: app/libraries/main.php:534
176
  msgid "Currency Options"
177
  msgstr ""
@@ -181,7 +182,7 @@ msgstr ""
181
  msgid "Google Maps Options"
182
  msgstr ""
183
 
184
- #: app/features/contextual.php:244 app/features/mec/settings.php:518
185
  #: app/libraries/main.php:535
186
  msgid "Google Recaptcha Options"
187
  msgstr ""
@@ -200,7 +201,7 @@ msgstr ""
200
  msgid "Next Event Module"
201
  msgstr ""
202
 
203
- #: app/features/contextual.php:286 app/features/mec/settings.php:554
204
  #: app/libraries/main.php:536
205
  msgid "Frontend Event Submission"
206
  msgstr ""
@@ -227,7 +228,7 @@ msgstr ""
227
  msgid "BuddyPress Integration"
228
  msgstr ""
229
 
230
- #: app/features/contextual.php:334 app/features/mec/settings.php:847
231
  #: app/libraries/main.php:539
232
  msgid "Mailchimp Integration"
233
  msgstr ""
@@ -244,16 +245,16 @@ msgid "Events"
244
  msgstr ""
245
 
246
  #: app/features/events.php:158 app/features/fes.php:223
247
- #: app/features/mec/meta_boxes/display_options.php:1046
248
- #: app/features/mec/meta_boxes/display_options.php:1102
249
- #: app/features/mec/meta_boxes/display_options.php:1137
250
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
251
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
252
  #: app/skins/yearly_view/tpl.php:69
253
  msgid "Event"
254
  msgstr ""
255
 
256
- #: app/features/events.php:159 app/features/mec.php:400
257
  msgid "Add Event"
258
  msgstr ""
259
 
@@ -283,7 +284,7 @@ msgid "No events found in Trash!"
283
  msgstr ""
284
 
285
  #: app/features/events.php:182 app/features/events.php:3320
286
- #: app/features/mec/meta_boxes/display_options.php:957
287
  #: app/features/mec/meta_boxes/search_form.php:31
288
  #: app/features/mec/meta_boxes/search_form.php:93
289
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -295,8 +296,8 @@ msgstr ""
295
  #: app/features/mec/meta_boxes/search_form.php:514
296
  #: app/features/mec/meta_boxes/search_form.php:575
297
  #: app/features/mec/meta_boxes/search_form.php:672
298
- #: app/features/mec/settings.php:800 app/features/mec/single.php:204
299
- #: app/features/search.php:67 app/libraries/main.php:5281
300
  #: app/libraries/skins.php:858 app/skins/single.php:566
301
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
302
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -305,8 +306,8 @@ msgid "Category"
305
  msgstr ""
306
 
307
  #: app/features/events.php:183 app/features/events.php:3275
308
- #: app/features/fes/form.php:757 app/features/mec.php:402
309
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
310
  msgid "Categories"
311
  msgstr ""
312
 
@@ -391,7 +392,7 @@ msgid "Event Repeating"
391
  msgstr ""
392
 
393
  #: app/features/events.php:333 app/features/events.php:1286
394
- #: app/features/mec/settings.php:710 app/skins/single.php:947
395
  msgid "Hourly Schedule"
396
  msgstr ""
397
 
@@ -406,7 +407,7 @@ msgstr ""
406
  #: app/features/events.php:336 app/features/events.php:3322
407
  #: app/features/events.php:3513 app/features/events.php:3555
408
  #: app/features/ix.php:3510 app/features/ix.php:3551
409
- #: app/features/mec/meta_boxes/display_options.php:960
410
  #: app/features/mec/meta_boxes/search_form.php:45
411
  #: app/features/mec/meta_boxes/search_form.php:107
412
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -418,11 +419,11 @@ msgstr ""
418
  #: app/features/mec/meta_boxes/search_form.php:528
419
  #: app/features/mec/meta_boxes/search_form.php:589
420
  #: app/features/mec/meta_boxes/search_form.php:686
421
- #: app/features/mec/settings.php:812 app/features/mec/single.php:208
422
  #: app/features/organizers.php:58 app/features/organizers.php:204
423
  #: app/features/organizers.php:260 app/features/organizers.php:262
424
- #: app/features/organizers.php:271 app/features/search.php:75
425
- #: app/libraries/main.php:5287 app/libraries/skins.php:910
426
  #: app/skins/single.php:812 app/skins/single/default.php:217
427
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
428
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -430,7 +431,7 @@ msgid "Organizer"
430
  msgstr ""
431
 
432
  #: app/features/events.php:337 app/features/events.php:1172
433
- #: app/features/fes/form.php:730 app/libraries/main.php:5314
434
  #: app/skins/single.php:589 app/skins/single/default.php:126
435
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
436
  #: app/skins/single/modern.php:208
@@ -449,7 +450,7 @@ msgstr ""
449
  #: app/features/events.php:3802 app/features/fes.php:223
450
  #: app/features/fes/form.php:689 app/features/labels.php:178
451
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
452
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
453
  #: app/modules/booking/steps/form.php:37
454
  msgid "Name"
455
  msgstr ""
@@ -460,9 +461,9 @@ msgstr ""
460
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
461
  #: app/features/organizers.php:111 app/features/organizers.php:152
462
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
463
- #: app/features/speakers.php:196 app/libraries/main.php:1539
464
- #: app/libraries/main.php:1608 app/libraries/main.php:2826
465
- #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
466
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
467
  #: app/skins/single.php:884 app/skins/single/default.php:234
468
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
@@ -480,21 +481,21 @@ msgstr ""
480
  #: app/features/fes/form.php:251 app/features/ix.php:3510
481
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
482
  #: app/features/mec/dashboard.php:401
483
- #: app/features/mec/meta_boxes/display_options.php:48
484
- #: app/features/mec/meta_boxes/display_options.php:228
485
- #: app/features/mec/meta_boxes/display_options.php:406
486
- #: app/features/mec/meta_boxes/display_options.php:474
487
- #: app/features/mec/meta_boxes/display_options.php:597
488
- #: app/features/mec/meta_boxes/display_options.php:651
489
- #: app/features/mec/meta_boxes/display_options.php:698
490
- #: app/features/mec/meta_boxes/display_options.php:731
491
- #: app/features/mec/meta_boxes/display_options.php:766
492
- #: app/features/mec/meta_boxes/display_options.php:813
493
- #: app/features/mec/meta_boxes/display_options.php:912
494
- #: app/features/mec/meta_boxes/display_options.php:1160
495
- #: app/features/mec/meta_boxes/display_options.php:1248
496
- #: app/features/mec/meta_boxes/display_options.php:1340
497
- #: app/features/mec/meta_boxes/display_options.php:1407
498
  msgid "Start Date"
499
  msgstr ""
500
 
@@ -559,38 +560,38 @@ msgstr ""
559
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
560
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
561
  #: app/features/mec/dashboard.php:71
562
- #: app/features/mec/meta_boxes/display_options.php:79
563
- #: app/features/mec/meta_boxes/display_options.php:92
564
- #: app/features/mec/meta_boxes/display_options.php:105
565
- #: app/features/mec/meta_boxes/display_options.php:116
566
- #: app/features/mec/meta_boxes/display_options.php:128
567
- #: app/features/mec/meta_boxes/display_options.php:259
568
- #: app/features/mec/meta_boxes/display_options.php:271
569
- #: app/features/mec/meta_boxes/display_options.php:283
570
- #: app/features/mec/meta_boxes/display_options.php:296
571
- #: app/features/mec/meta_boxes/display_options.php:307
572
- #: app/features/mec/meta_boxes/display_options.php:320
573
- #: app/features/mec/meta_boxes/display_options.php:331
574
- #: app/features/mec/meta_boxes/display_options.php:438
575
- #: app/features/mec/meta_boxes/display_options.php:614
576
- #: app/features/mec/meta_boxes/display_options.php:944
577
- #: app/features/mec/meta_boxes/display_options.php:1017
578
- #: app/features/mec/meta_boxes/display_options.php:1029
579
- #: app/features/mec/meta_boxes/display_options.php:1040
580
- #: app/features/mec/meta_boxes/display_options.php:1072
581
- #: app/features/mec/meta_boxes/display_options.php:1083
582
- #: app/features/mec/meta_boxes/display_options.php:1096
583
- #: app/features/mec/meta_boxes/display_options.php:1131
584
- #: app/features/mec/meta_boxes/display_options.php:1180
585
- #: app/features/mec/meta_boxes/display_options.php:1191
586
- #: app/features/mec/meta_boxes/display_options.php:1202
587
- #: app/features/mec/meta_boxes/display_options.php:1268
588
- #: app/features/mec/meta_boxes/display_options.php:1281
589
- #: app/features/mec/meta_boxes/display_options.php:1294
590
- #: app/features/mec/meta_boxes/display_options.php:1307
591
- #: app/features/mec/meta_boxes/display_options.php:1320
592
- #: app/features/mec/meta_boxes/display_options.php:1371
593
- #: app/features/mec/meta_boxes/display_options.php:1424
594
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
595
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
596
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
@@ -604,14 +605,14 @@ msgstr ""
604
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
605
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
606
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
607
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
608
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
609
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:418
610
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:451
611
- #: app/features/mec/settings.php:479 app/features/mec/settings.php:566
612
- #: app/features/mec/settings.php:739 app/features/mec/settings.php:755
613
- #: app/features/mec/settings.php:862 app/features/mec/settings.php:875
614
- #: app/features/mec/settings.php:891 app/features/mec/single.php:42
615
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
616
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
617
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
@@ -781,7 +782,7 @@ msgstr ""
781
  #: app/features/events.php:1168 app/features/events.php:3513
782
  #: app/features/events.php:3555 app/features/fes/form.php:727
783
  #: app/features/ix.php:3510 app/features/ix.php:3551
784
- #: app/features/mec/settings.php:656 app/libraries/main.php:5313
785
  #: app/widgets/single.php:103
786
  msgid "Event Cost"
787
  msgstr ""
@@ -796,8 +797,8 @@ msgstr ""
796
 
797
  #: app/features/events.php:1204 app/features/events.php:2541
798
  #: app/features/fes.php:223 app/features/mec/booking.php:491
799
- #: app/features/profile/profile.php:53 app/libraries/main.php:2242
800
- #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
801
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
802
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
803
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
@@ -849,13 +850,13 @@ msgstr ""
849
  #: app/features/events.php:2357 app/features/events.php:2399
850
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
851
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
852
- #: app/libraries/main.php:2745 app/libraries/main.php:2775
853
- #: app/libraries/main.php:2804 app/libraries/main.php:2834
854
- #: app/libraries/main.php:2863 app/libraries/main.php:2892
855
- #: app/libraries/main.php:2921 app/libraries/main.php:2950
856
- #: app/libraries/main.php:2972 app/libraries/main.php:3003
857
- #: app/libraries/main.php:3047 app/libraries/main.php:3091
858
- #: app/libraries/main.php:3138 app/libraries/main.php:3177
859
  msgid "Remove"
860
  msgstr ""
861
 
@@ -881,9 +882,9 @@ msgstr ""
881
 
882
  #: app/features/events.php:1351 app/features/events.php:1384
883
  #: app/features/events.php:1445 app/features/fes/form.php:851
884
- #: app/features/mec.php:410 app/features/mec/modules.php:52
885
- #: app/features/mec/settings.php:704 app/features/speakers.php:62
886
- #: app/libraries/main.php:565 app/libraries/main.php:5288
887
  #: app/modules/speakers/details.php:18
888
  msgid "Speakers"
889
  msgstr ""
@@ -893,12 +894,12 @@ msgid "New Day"
893
  msgstr ""
894
 
895
  #: app/features/events.php:1476 app/features/fes/form.php:704
896
- #: app/features/mec/settings.php:650
897
  msgid "Event Links"
898
  msgstr ""
899
 
900
  #: app/features/events.php:1479 app/features/events.php:1485
901
- #: app/features/fes/form.php:706 app/libraries/main.php:5311
902
  msgid "Event Link"
903
  msgstr ""
904
 
@@ -919,7 +920,7 @@ msgid "URL Shortener"
919
  msgstr ""
920
 
921
  #: app/features/events.php:1495 app/features/events.php:1508
922
- #: app/features/fes/form.php:711 app/libraries/main.php:5312
923
  #: app/skins/single.php:673 app/skins/single/default.php:140
924
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
925
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -952,7 +953,7 @@ msgstr ""
952
  #: app/features/events.php:1596 app/features/events.php:1849
953
  #: app/features/events.php:2064 app/modules/booking/default.php:85
954
  #: app/modules/booking/steps/tickets.php:40
955
- #: app/skins/available_spot/tpl.php:160
956
  msgid "Unlimited"
957
  msgstr ""
958
 
@@ -984,7 +985,7 @@ msgid "12"
984
  msgstr ""
985
 
986
  #: app/features/events.php:1653 app/libraries/book.php:60
987
- #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
988
  msgid "Tickets"
989
  msgstr ""
990
 
@@ -1078,7 +1079,7 @@ msgstr ""
1078
 
1079
  #: app/features/events.php:1909 app/features/events.php:1935
1080
  #: app/features/events.php:2113 app/features/labels.php:60
1081
- #: app/features/mec/meta_boxes/display_options.php:958
1082
  #: app/features/mec/meta_boxes/search_form.php:66
1083
  #: app/features/mec/meta_boxes/search_form.php:128
1084
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1090,7 +1091,7 @@ msgstr ""
1090
  #: app/features/mec/meta_boxes/search_form.php:549
1091
  #: app/features/mec/meta_boxes/search_form.php:610
1092
  #: app/features/mec/meta_boxes/search_form.php:707
1093
- #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1094
  #: app/libraries/skins.php:988
1095
  msgid "Label"
1096
  msgstr ""
@@ -1133,7 +1134,7 @@ msgstr ""
1133
  msgid "Amount (Per Booking)"
1134
  msgstr ""
1135
 
1136
- #: app/features/events.php:2283 app/features/mec/settings.php:728
1137
  msgid "Ticket Variations / Options"
1138
  msgstr ""
1139
 
@@ -1155,44 +1156,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1155
  msgstr ""
1156
 
1157
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1158
- #: app/libraries/main.php:2767
1159
  msgid "MEC Name"
1160
  msgstr ""
1161
 
1162
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1163
- #: app/libraries/main.php:2796
1164
  msgid "MEC Email"
1165
  msgstr ""
1166
 
1167
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1168
- #: app/libraries/main.php:2737
1169
  msgid "Text"
1170
  msgstr ""
1171
 
1172
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1173
  #: app/features/organizers.php:103 app/features/organizers.php:148
1174
  #: app/features/speakers.php:119 app/features/speakers.php:192
1175
- #: app/features/speakers.php:271 app/libraries/main.php:2913
1176
  msgid "Tel"
1177
  msgstr ""
1178
 
1179
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1180
- #: app/libraries/main.php:2855
1181
  msgid "File"
1182
  msgstr ""
1183
 
1184
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1185
- #: app/libraries/main.php:2942
1186
  msgid "Textarea"
1187
  msgstr ""
1188
 
1189
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1190
- #: app/libraries/main.php:2995
1191
  msgid "Checkboxes"
1192
  msgstr ""
1193
 
1194
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1195
- #: app/libraries/main.php:3039
1196
  msgid "Radio Buttons"
1197
  msgstr ""
1198
 
@@ -1272,17 +1273,17 @@ msgstr ""
1272
  #: app/features/mec/meta_boxes/search_form.php:696
1273
  #: app/features/mec/meta_boxes/search_form.php:703
1274
  #: app/features/mec/meta_boxes/search_form.php:710
1275
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1276
  msgid "Dropdown"
1277
  msgstr ""
1278
 
1279
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1280
- #: app/libraries/main.php:3130
1281
  msgid "Agreement"
1282
  msgstr ""
1283
 
1284
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1285
- #: app/libraries/main.php:2971
1286
  msgid "Paragraph"
1287
  msgstr ""
1288
 
@@ -1313,7 +1314,7 @@ msgstr ""
1313
  #: app/features/ix.php:3551 app/features/locations.php:58
1314
  #: app/features/locations.php:230 app/features/locations.php:287
1315
  #: app/features/locations.php:289 app/features/locations.php:298
1316
- #: app/features/mec/meta_boxes/display_options.php:959
1317
  #: app/features/mec/meta_boxes/search_form.php:38
1318
  #: app/features/mec/meta_boxes/search_form.php:100
1319
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1325,9 +1326,9 @@ msgstr ""
1325
  #: app/features/mec/meta_boxes/search_form.php:521
1326
  #: app/features/mec/meta_boxes/search_form.php:582
1327
  #: app/features/mec/meta_boxes/search_form.php:679
1328
- #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1329
- #: app/features/search.php:71 app/libraries/main.php:2236
1330
- #: app/libraries/main.php:5285 app/libraries/skins.php:884
1331
  #: app/skins/single.php:493 app/skins/single.php:924
1332
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1333
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1391,8 +1392,8 @@ msgid "%s Email"
1391
  msgstr ""
1392
 
1393
  #: app/features/events.php:3808 app/features/fes.php:223
1394
- #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1395
- #: app/libraries/main.php:5315
1396
  msgid "Ticket"
1397
  msgstr ""
1398
 
@@ -1438,7 +1439,7 @@ msgstr ""
1438
  msgid "The event removed!"
1439
  msgstr ""
1440
 
1441
- #: app/features/fes.php:223 app/libraries/main.php:2248
1442
  msgid "Transaction ID"
1443
  msgstr ""
1444
 
@@ -1483,43 +1484,43 @@ msgid "Go back to events list"
1483
  msgstr ""
1484
 
1485
  #: app/features/fes/form.php:366
1486
- #: app/features/mec/meta_boxes/display_options.php:843
1487
  #: app/libraries/main.php:410
1488
  msgid "Monday"
1489
  msgstr ""
1490
 
1491
  #: app/features/fes/form.php:367
1492
- #: app/features/mec/meta_boxes/display_options.php:844
1493
  #: app/libraries/main.php:410
1494
  msgid "Tuesday"
1495
  msgstr ""
1496
 
1497
  #: app/features/fes/form.php:368
1498
- #: app/features/mec/meta_boxes/display_options.php:845
1499
  #: app/libraries/main.php:410
1500
  msgid "Wednesday"
1501
  msgstr ""
1502
 
1503
  #: app/features/fes/form.php:369
1504
- #: app/features/mec/meta_boxes/display_options.php:846
1505
  #: app/libraries/main.php:410
1506
  msgid "Thursday"
1507
  msgstr ""
1508
 
1509
  #: app/features/fes/form.php:370
1510
- #: app/features/mec/meta_boxes/display_options.php:847
1511
  #: app/libraries/main.php:410
1512
  msgid "Friday"
1513
  msgstr ""
1514
 
1515
  #: app/features/fes/form.php:371
1516
- #: app/features/mec/meta_boxes/display_options.php:848
1517
  #: app/libraries/main.php:410
1518
  msgid "Saturday"
1519
  msgstr ""
1520
 
1521
  #: app/features/fes/form.php:372
1522
- #: app/features/mec/meta_boxes/display_options.php:842
1523
  #: app/libraries/main.php:410
1524
  msgid "Sunday"
1525
  msgstr ""
@@ -1550,7 +1551,7 @@ msgid ""
1550
  "Insert full link including http(s)://"
1551
  msgstr ""
1552
 
1553
- #: app/features/fes/form.php:744 app/features/mec/settings.php:662
1554
  msgid "Featured Image"
1555
  msgstr ""
1556
 
@@ -1559,15 +1560,15 @@ msgid "Remove Image"
1559
  msgstr ""
1560
 
1561
  #: app/features/fes/form.php:783 app/features/labels.php:61
1562
- #: app/features/labels.php:221 app/features/mec.php:403
1563
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1564
  #: app/skins/single.php:702 app/skins/single/default.php:155
1565
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1566
  #: app/skins/single/modern.php:223
1567
  msgid "Labels"
1568
  msgstr ""
1569
 
1570
- #: app/features/fes/form.php:829 app/features/mec.php:401
1571
  #: app/features/mec/meta_boxes/filter.php:147
1572
  msgid "Tags"
1573
  msgstr ""
@@ -1880,7 +1881,7 @@ msgstr ""
1880
 
1881
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1882
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1883
- #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1884
  msgid "Checking ..."
1885
  msgstr ""
1886
 
@@ -1925,8 +1926,8 @@ msgstr ""
1925
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1926
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1927
  #: app/features/mec/booking.php:359
1928
- #: app/features/mec/meta_boxes/display_options.php:175
1929
- #: app/features/mec/meta_boxes/display_options.php:367
1930
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1931
  #: app/features/mec/modules.php:228
1932
  #, php-format
@@ -1936,15 +1937,15 @@ msgstr ""
1936
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1937
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1938
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1939
- #: app/features/mec/meta_boxes/display_options.php:175
1940
- #: app/features/mec/meta_boxes/display_options.php:367
1941
- #: app/features/mec/meta_boxes/display_options.php:395
1942
- #: app/features/mec/meta_boxes/display_options.php:535
1943
- #: app/features/mec/meta_boxes/display_options.php:586
1944
- #: app/features/mec/meta_boxes/display_options.php:693
1945
- #: app/features/mec/meta_boxes/display_options.php:800
1946
- #: app/features/mec/meta_boxes/display_options.php:907
1947
- #: app/features/mec/meta_boxes/display_options.php:1120
1948
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1949
  #: app/features/mec/modules.php:228
1950
  msgid "Pro version of Modern Events Calendar"
@@ -2106,7 +2107,7 @@ msgid "Auto Synchronization"
2106
  msgstr ""
2107
 
2108
  #: app/features/ix/sync.php:22
2109
- #: app/features/mec/meta_boxes/display_options.php:907
2110
  #, php-format
2111
  msgid "%s is required to use synchronization feature."
2112
  msgstr ""
@@ -2254,16 +2255,16 @@ msgid "Select label color"
2254
  msgstr ""
2255
 
2256
  #: app/features/labels.php:112 app/features/labels.php:139
2257
- #: app/features/mec/meta_boxes/display_options.php:38
2258
- #: app/features/mec/meta_boxes/display_options.php:215
2259
- #: app/features/mec/meta_boxes/display_options.php:400
2260
- #: app/features/mec/meta_boxes/display_options.php:591
2261
- #: app/features/mec/meta_boxes/display_options.php:641
2262
- #: app/features/mec/meta_boxes/display_options.php:805
2263
- #: app/features/mec/meta_boxes/display_options.php:1002
2264
- #: app/features/mec/meta_boxes/display_options.php:1059
2265
- #: app/features/mec/meta_boxes/display_options.php:1151
2266
- #: app/features/mec/meta_boxes/display_options.php:1238
2267
  msgid "Style"
2268
  msgstr ""
2269
 
@@ -2275,26 +2276,26 @@ msgstr ""
2275
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2276
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2277
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2278
- #: app/skins/grid/render.php:52 app/skins/list/render.php:37
2279
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2280
  #: app/skins/monthly_view/calendar_clean.php:86
2281
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2282
- #: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
2283
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2284
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2285
  msgid "Featured"
2286
  msgstr ""
2287
 
2288
  #: app/features/labels.php:118 app/features/labels.php:143
2289
- #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2290
- #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2291
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2292
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2293
- #: app/skins/list/render.php:38 app/skins/masonry/render.php:30
2294
  #: app/skins/monthly_view/calendar.php:90
2295
  #: app/skins/monthly_view/calendar_clean.php:90
2296
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2297
- #: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
2298
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2299
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2300
  msgid "Canceled"
@@ -2320,9 +2321,9 @@ msgstr ""
2320
  msgid "Event %s"
2321
  msgstr ""
2322
 
2323
- #: app/features/locations.php:59 app/features/mec.php:404
2324
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2325
- #: app/libraries/main.php:5284
2326
  msgid "Locations"
2327
  msgstr ""
2328
 
@@ -2393,7 +2394,7 @@ msgstr ""
2393
  msgid "eg. City Hall"
2394
  msgstr ""
2395
 
2396
- #: app/features/locations.php:310 app/features/mec/settings.php:692
2397
  #: app/widgets/single.php:115
2398
  msgid "Event Location"
2399
  msgstr ""
@@ -2427,7 +2428,7 @@ msgstr ""
2427
  msgid "Don't show map in single event page"
2428
  msgstr ""
2429
 
2430
- #: app/features/locations.php:356 app/libraries/main.php:5318
2431
  msgid "Other Locations"
2432
  msgstr ""
2433
 
@@ -2440,108 +2441,108 @@ msgstr ""
2440
  msgid "<strong>"
2441
  msgstr ""
2442
 
2443
- #: app/features/mec.php:185
2444
  msgid ""
2445
  "Activation faild. Please check your purchase code or license type."
2446
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2447
  msgstr ""
2448
 
2449
- #: app/features/mec.php:185
2450
  msgid "Troubleshooting"
2451
  msgstr ""
2452
 
2453
- #: app/features/mec.php:255 app/libraries/notifications.php:933
2454
  #, php-format
2455
  msgid "%s to %s"
2456
  msgstr ""
2457
 
2458
- #: app/features/mec.php:278
2459
  msgid ""
2460
  "Your options is not in JSON format. Please insert correct options in this "
2461
  "field and try again."
2462
  msgstr ""
2463
 
2464
- #: app/features/mec.php:285
2465
  msgid "Your options field can not be empty!"
2466
  msgstr ""
2467
 
2468
- #: app/features/mec.php:291
2469
  msgid "Your options imported successfuly."
2470
  msgstr ""
2471
 
2472
- #: app/features/mec.php:384
2473
  msgid "MEC - Support"
2474
  msgstr ""
2475
 
2476
- #: app/features/mec.php:384 app/features/mec/support-page.php:9
2477
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2478
  msgid "Support"
2479
  msgstr ""
2480
 
2481
- #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2482
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2483
- #: app/libraries/main.php:5286
2484
  msgid "Organizers"
2485
  msgstr ""
2486
 
2487
- #: app/features/mec.php:413 app/features/mec.php:437
2488
  #: app/features/mec/dashboard.php:264
2489
  msgid "Shortcodes"
2490
  msgstr ""
2491
 
2492
- #: app/features/mec.php:414
2493
  msgid "MEC - Settings"
2494
  msgstr ""
2495
 
2496
- #: app/features/mec.php:415
2497
  msgid "MEC - Addons"
2498
  msgstr ""
2499
 
2500
- #: app/features/mec.php:415 app/features/mec/addons.php:22
2501
  msgid "Addons"
2502
  msgstr ""
2503
 
2504
- #: app/features/mec.php:418
2505
  msgid "MEC - Report"
2506
  msgstr ""
2507
 
2508
- #: app/features/mec.php:418
2509
  msgid "Report"
2510
  msgstr ""
2511
 
2512
- #: app/features/mec.php:439
2513
  msgid "Add Shortcode"
2514
  msgstr ""
2515
 
2516
- #: app/features/mec.php:440
2517
  msgid "Add New Shortcode"
2518
  msgstr ""
2519
 
2520
- #: app/features/mec.php:441
2521
  msgid "No shortcodes found!"
2522
  msgstr ""
2523
 
2524
- #: app/features/mec.php:442
2525
  msgid "All Shortcodes"
2526
  msgstr ""
2527
 
2528
- #: app/features/mec.php:443
2529
  msgid "Edit shortcodes"
2530
  msgstr ""
2531
 
2532
- #: app/features/mec.php:444
2533
  msgid "No shortcodes found in Trash!"
2534
  msgstr ""
2535
 
2536
- #: app/features/mec.php:497
2537
  msgid "Display Options"
2538
  msgstr ""
2539
 
2540
- #: app/features/mec.php:498
2541
  msgid "Filter Options"
2542
  msgstr ""
2543
 
2544
- #: app/features/mec.php:500
2545
  msgid "Search Form"
2546
  msgstr ""
2547
 
@@ -2549,21 +2550,21 @@ msgstr ""
2549
  msgid "Display content's images as Popup"
2550
  msgstr ""
2551
 
2552
- #: app/features/mec.php:888
2553
  msgid "Single Event Display Method"
2554
  msgstr ""
2555
 
2556
- #: app/features/mec.php:893
2557
  msgid "Separate Window"
2558
  msgstr ""
2559
 
2560
- #: app/features/mec.php:894
2561
  msgid "Modal 1"
2562
  msgstr ""
2563
 
2564
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2565
- #: app/features/mec/dashboard.php:81 app/features/mec/report.php:17
2566
- #: app/features/mec/support-page.php:21
2567
  msgid "Version"
2568
  msgstr ""
2569
 
@@ -2598,8 +2599,8 @@ msgstr ""
2598
  #: app/features/mec/notifications.php:828
2599
  #: app/features/mec/notifications.php:924
2600
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2601
- #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2602
- #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2603
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2604
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2605
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
@@ -2631,13 +2632,13 @@ msgid "Default is Y-m-d"
2631
  msgstr ""
2632
 
2633
  #: app/features/mec/booking.php:115
2634
- #: app/features/mec/meta_boxes/display_options.php:134
2635
- #: app/features/mec/meta_boxes/display_options.php:348
2636
- #: app/features/mec/meta_boxes/display_options.php:444
2637
- #: app/features/mec/meta_boxes/display_options.php:950
2638
- #: app/features/mec/meta_boxes/display_options.php:1217
2639
- #: app/features/mec/meta_boxes/display_options.php:1326
2640
- #: app/features/mec/meta_boxes/display_options.php:1377
2641
  msgid "Limit"
2642
  msgstr ""
2643
 
@@ -2679,7 +2680,7 @@ msgid ""
2679
  msgstr ""
2680
 
2681
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2682
- #: app/features/mec/settings.php:599 app/features/mec/settings.php:609
2683
  msgid "Thank You Page"
2684
  msgstr ""
2685
 
@@ -2690,15 +2691,15 @@ msgid ""
2690
  msgstr ""
2691
 
2692
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2693
- #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
2694
  msgid "Thank You Page Time Interval"
2695
  msgstr ""
2696
 
2697
- #: app/features/mec/booking.php:167 app/features/mec/settings.php:621
2698
  msgid "2000 mean 2 seconds"
2699
  msgstr ""
2700
 
2701
- #: app/features/mec/booking.php:171 app/features/mec/settings.php:625
2702
  msgid ""
2703
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2704
  "2000 means 2 seconds."
@@ -2801,14 +2802,14 @@ msgstr ""
2801
 
2802
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2803
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2804
- #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2805
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2806
  msgid "Saved"
2807
  msgstr ""
2808
 
2809
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2810
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2811
- #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2812
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2813
  msgid "Settings Saved!"
2814
  msgstr ""
@@ -2816,14 +2817,14 @@ msgstr ""
2816
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2817
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2818
  #: app/features/mec/notifications.php:905
2819
- #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2820
- #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2821
- #: app/features/mec/single.php:289 app/libraries/main.php:5530
2822
  msgid "Verified"
2823
  msgstr ""
2824
 
2825
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2826
- #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
2827
  #: app/features/mec/single.php:291
2828
  msgid "Please Refresh Page"
2829
  msgstr ""
@@ -2851,7 +2852,7 @@ msgstr ""
2851
  msgid "Update"
2852
  msgstr ""
2853
 
2854
- #: app/features/mec/dashboard.php:96
2855
  #, php-format
2856
  msgid ""
2857
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2859,26 +2860,27 @@ msgid ""
2859
  "Spots, etc you should upgrade to the Pro version."
2860
  msgstr ""
2861
 
2862
- #: app/features/mec/dashboard.php:96
2863
  msgid "lite"
2864
  msgstr ""
2865
 
2866
- #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
 
2867
  msgid "GO PREMIUM"
2868
  msgstr ""
2869
 
2870
- #: app/features/mec/dashboard.php:102
2871
  #, php-format
2872
  msgid ""
2873
  "Easily get a discount coupon by rating us on %s or following and reposting "
2874
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2875
  msgstr ""
2876
 
2877
- #: app/features/mec/dashboard.php:102
2878
  msgid "WordPress"
2879
  msgstr ""
2880
 
2881
- #: app/features/mec/dashboard.php:102
2882
  msgid "Copouns!"
2883
  msgstr ""
2884
 
@@ -2910,7 +2912,7 @@ msgid ""
2910
  "code."
2911
  msgstr ""
2912
 
2913
- #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
2914
  msgid "Upcoming Events"
2915
  msgstr ""
2916
 
@@ -2959,6 +2961,10 @@ msgstr ""
2959
  msgid "Change Log"
2960
  msgstr ""
2961
 
 
 
 
 
2962
  #: app/features/mec/ie.php:21
2963
  msgid ""
2964
  "Insert your backup files below and press import to restore your site's "
@@ -2996,61 +3002,57 @@ msgid ""
2996
  "phrases from language files."
2997
  msgstr ""
2998
 
2999
- #: app/features/mec/meta_boxes/display_options.php:22
3000
  msgid "Skin"
3001
  msgstr ""
3002
 
3003
- #: app/features/mec/meta_boxes/display_options.php:40
3004
- #: app/features/mec/meta_boxes/display_options.php:217
3005
- #: app/features/mec/meta_boxes/display_options.php:643
3006
- #: app/features/mec/meta_boxes/display_options.php:809
3007
- #: app/features/mec/meta_boxes/display_options.php:1004
3008
- #: app/features/mec/settings.php:259 app/features/mec/settings.php:283
3009
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:333
3010
- #: app/features/mec/settings.php:357 app/features/mec/settings.php:366
3011
- msgid "Classic"
3012
- msgstr ""
3013
-
3014
  #: app/features/mec/meta_boxes/display_options.php:41
3015
- #: app/features/mec/meta_boxes/display_options.php:219
3016
- #: app/features/mec/settings.php:284 app/features/mec/settings.php:294
3017
- #: app/features/mec/settings.php:358 app/features/mec/settings.php:368
3018
- msgid "Minimal"
 
 
 
 
 
 
3019
  msgstr ""
3020
 
3021
  #: app/features/mec/meta_boxes/display_options.php:42
3022
  #: app/features/mec/meta_boxes/display_options.php:220
3023
- #: app/features/mec/meta_boxes/display_options.php:593
3024
- #: app/features/mec/meta_boxes/display_options.php:645
3025
- #: app/features/mec/meta_boxes/display_options.php:807
3026
- #: app/features/mec/meta_boxes/display_options.php:1006
3027
- #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3028
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:295
3029
- #: app/features/mec/settings.php:335 app/features/mec/settings.php:348
3030
- #: app/features/mec/settings.php:359 app/features/mec/settings.php:369
3031
- msgid "Modern"
3032
  msgstr ""
3033
 
3034
  #: app/features/mec/meta_boxes/display_options.php:43
3035
- #: app/features/mec/settings.php:286 app/features/mec/settings.php:360
3036
- msgid "Standard"
 
 
 
 
 
 
 
 
 
 
 
3037
  msgstr ""
3038
 
3039
  #: app/features/mec/meta_boxes/display_options.php:44
3040
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:361
3041
- msgid "Accordion"
 
3042
  msgstr ""
3043
 
3044
- #: app/features/mec/meta_boxes/display_options.php:50
3045
- #: app/features/mec/meta_boxes/display_options.php:230
3046
- #: app/features/mec/meta_boxes/display_options.php:408
3047
- #: app/features/mec/meta_boxes/display_options.php:700
3048
- #: app/features/mec/meta_boxes/display_options.php:733
3049
- #: app/features/mec/meta_boxes/display_options.php:914
3050
- #: app/features/mec/meta_boxes/display_options.php:1162
3051
- #: app/features/mec/meta_boxes/display_options.php:1250
3052
- #: app/features/mec/meta_boxes/display_options.php:1342
3053
- msgid "Today"
3054
  msgstr ""
3055
 
3056
  #: app/features/mec/meta_boxes/display_options.php:51
@@ -3062,24 +3064,19 @@ msgstr ""
3062
  #: app/features/mec/meta_boxes/display_options.php:1163
3063
  #: app/features/mec/meta_boxes/display_options.php:1251
3064
  #: app/features/mec/meta_boxes/display_options.php:1343
3065
- msgid "Tomorrow"
3066
  msgstr ""
3067
 
3068
  #: app/features/mec/meta_boxes/display_options.php:52
3069
  #: app/features/mec/meta_boxes/display_options.php:232
3070
  #: app/features/mec/meta_boxes/display_options.php:410
3071
- #: app/features/mec/meta_boxes/display_options.php:476
3072
- #: app/features/mec/meta_boxes/display_options.php:653
3073
  #: app/features/mec/meta_boxes/display_options.php:702
3074
  #: app/features/mec/meta_boxes/display_options.php:735
3075
- #: app/features/mec/meta_boxes/display_options.php:770
3076
- #: app/features/mec/meta_boxes/display_options.php:817
3077
  #: app/features/mec/meta_boxes/display_options.php:916
3078
  #: app/features/mec/meta_boxes/display_options.php:1164
3079
  #: app/features/mec/meta_boxes/display_options.php:1252
3080
  #: app/features/mec/meta_boxes/display_options.php:1344
3081
- #: app/features/mec/meta_boxes/display_options.php:1409
3082
- msgid "Start of Current Month"
3083
  msgstr ""
3084
 
3085
  #: app/features/mec/meta_boxes/display_options.php:53
@@ -3096,14 +3093,13 @@ msgstr ""
3096
  #: app/features/mec/meta_boxes/display_options.php:1253
3097
  #: app/features/mec/meta_boxes/display_options.php:1345
3098
  #: app/features/mec/meta_boxes/display_options.php:1410
3099
- msgid "Start of Next Month"
3100
  msgstr ""
3101
 
3102
  #: app/features/mec/meta_boxes/display_options.php:54
3103
  #: app/features/mec/meta_boxes/display_options.php:234
3104
  #: app/features/mec/meta_boxes/display_options.php:412
3105
  #: app/features/mec/meta_boxes/display_options.php:478
3106
- #: app/features/mec/meta_boxes/display_options.php:601
3107
  #: app/features/mec/meta_boxes/display_options.php:655
3108
  #: app/features/mec/meta_boxes/display_options.php:704
3109
  #: app/features/mec/meta_boxes/display_options.php:737
@@ -3114,604 +3110,638 @@ msgstr ""
3114
  #: app/features/mec/meta_boxes/display_options.php:1254
3115
  #: app/features/mec/meta_boxes/display_options.php:1346
3116
  #: app/features/mec/meta_boxes/display_options.php:1411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3117
  msgid "On a certain date"
3118
  msgstr ""
3119
 
3120
- #: app/features/mec/meta_boxes/display_options.php:57
3121
- #: app/features/mec/meta_boxes/display_options.php:237
3122
- #: app/features/mec/meta_boxes/display_options.php:415
3123
- #: app/features/mec/meta_boxes/display_options.php:481
3124
- #: app/features/mec/meta_boxes/display_options.php:604
3125
- #: app/features/mec/meta_boxes/display_options.php:658
3126
- #: app/features/mec/meta_boxes/display_options.php:707
3127
- #: app/features/mec/meta_boxes/display_options.php:741
3128
- #: app/features/mec/meta_boxes/display_options.php:775
3129
- #: app/features/mec/meta_boxes/display_options.php:822
3130
- #: app/features/mec/meta_boxes/display_options.php:921
3131
- #: app/features/mec/meta_boxes/display_options.php:1169
3132
- #: app/features/mec/meta_boxes/display_options.php:1257
3133
- #: app/features/mec/meta_boxes/display_options.php:1349
3134
- #: app/features/mec/meta_boxes/display_options.php:1414
3135
  #, php-format
3136
  msgid "eg. %s"
3137
  msgstr ""
3138
 
3139
- #: app/features/mec/meta_boxes/display_options.php:62
3140
  #: app/features/mec/meta_boxes/display_options.php:63
3141
- #: app/features/mec/meta_boxes/display_options.php:66
3142
- #: app/features/mec/meta_boxes/display_options.php:242
3143
  #: app/features/mec/meta_boxes/display_options.php:243
3144
- #: app/features/mec/meta_boxes/display_options.php:246
3145
- #: app/features/mec/meta_boxes/display_options.php:420
3146
  #: app/features/mec/meta_boxes/display_options.php:421
3147
- #: app/features/mec/meta_boxes/display_options.php:424
3148
- #: app/features/mec/meta_boxes/display_options.php:926
3149
  #: app/features/mec/meta_boxes/display_options.php:927
3150
- #: app/features/mec/meta_boxes/display_options.php:930
3151
- #: app/features/mec/meta_boxes/display_options.php:1354
3152
  #: app/features/mec/meta_boxes/display_options.php:1355
3153
- #: app/features/mec/meta_boxes/display_options.php:1358
 
3154
  msgid "Maximum Date"
3155
  msgstr ""
3156
 
3157
- #: app/features/mec/meta_boxes/display_options.php:67
3158
- #: app/features/mec/meta_boxes/display_options.php:247
3159
- #: app/features/mec/meta_boxes/display_options.php:425
3160
- #: app/features/mec/meta_boxes/display_options.php:931
3161
- #: app/features/mec/meta_boxes/display_options.php:1359
3162
  msgid "Show events before the specified date."
3163
  msgstr ""
3164
 
3165
- #: app/features/mec/meta_boxes/display_options.php:74
3166
- #: app/features/mec/meta_boxes/display_options.php:78
3167
- #: app/features/mec/meta_boxes/display_options.php:85
3168
- #: app/features/mec/meta_boxes/display_options.php:91
3169
- #: app/features/mec/meta_boxes/display_options.php:98
3170
- #: app/features/mec/meta_boxes/display_options.php:104
3171
- #: app/features/mec/meta_boxes/display_options.php:111
3172
- #: app/features/mec/meta_boxes/display_options.php:115
3173
- #: app/features/mec/meta_boxes/display_options.php:122
3174
- #: app/features/mec/meta_boxes/display_options.php:127
3175
- #: app/features/mec/meta_boxes/display_options.php:254
3176
- #: app/features/mec/meta_boxes/display_options.php:258
3177
- #: app/features/mec/meta_boxes/display_options.php:265
3178
- #: app/features/mec/meta_boxes/display_options.php:270
3179
- #: app/features/mec/meta_boxes/display_options.php:277
3180
- #: app/features/mec/meta_boxes/display_options.php:282
3181
- #: app/features/mec/meta_boxes/display_options.php:289
3182
- #: app/features/mec/meta_boxes/display_options.php:295
3183
- #: app/features/mec/meta_boxes/display_options.php:302
3184
- #: app/features/mec/meta_boxes/display_options.php:306
3185
- #: app/features/mec/meta_boxes/display_options.php:313
3186
- #: app/features/mec/meta_boxes/display_options.php:319
3187
- #: app/features/mec/meta_boxes/display_options.php:326
3188
- #: app/features/mec/meta_boxes/display_options.php:330
3189
- #: app/features/mec/meta_boxes/display_options.php:432
3190
- #: app/features/mec/meta_boxes/display_options.php:437
3191
- #: app/features/mec/meta_boxes/display_options.php:608
3192
- #: app/features/mec/meta_boxes/display_options.php:613
3193
- #: app/features/mec/meta_boxes/display_options.php:854
3194
- #: app/features/mec/meta_boxes/display_options.php:938
3195
- #: app/features/mec/meta_boxes/display_options.php:943
3196
- #: app/features/mec/meta_boxes/display_options.php:1010
3197
- #: app/features/mec/meta_boxes/display_options.php:1016
3198
- #: app/features/mec/meta_boxes/display_options.php:1023
3199
- #: app/features/mec/meta_boxes/display_options.php:1028
3200
- #: app/features/mec/meta_boxes/display_options.php:1035
3201
- #: app/features/mec/meta_boxes/display_options.php:1039
3202
- #: app/features/mec/meta_boxes/display_options.php:1067
3203
- #: app/features/mec/meta_boxes/display_options.php:1071
3204
- #: app/features/mec/meta_boxes/display_options.php:1078
3205
- #: app/features/mec/meta_boxes/display_options.php:1082
3206
- #: app/features/mec/meta_boxes/display_options.php:1089
3207
- #: app/features/mec/meta_boxes/display_options.php:1095
3208
- #: app/features/mec/meta_boxes/display_options.php:1125
3209
- #: app/features/mec/meta_boxes/display_options.php:1130
3210
- #: app/features/mec/meta_boxes/display_options.php:1173
3211
- #: app/features/mec/meta_boxes/display_options.php:1179
3212
- #: app/features/mec/meta_boxes/display_options.php:1186
3213
- #: app/features/mec/meta_boxes/display_options.php:1190
3214
- #: app/features/mec/meta_boxes/display_options.php:1197
3215
- #: app/features/mec/meta_boxes/display_options.php:1201
3216
- #: app/features/mec/meta_boxes/display_options.php:1261
3217
- #: app/features/mec/meta_boxes/display_options.php:1267
3218
- #: app/features/mec/meta_boxes/display_options.php:1274
3219
- #: app/features/mec/meta_boxes/display_options.php:1280
3220
- #: app/features/mec/meta_boxes/display_options.php:1287
3221
- #: app/features/mec/meta_boxes/display_options.php:1293
3222
- #: app/features/mec/meta_boxes/display_options.php:1300
3223
- #: app/features/mec/meta_boxes/display_options.php:1306
3224
- #: app/features/mec/meta_boxes/display_options.php:1313
3225
- #: app/features/mec/meta_boxes/display_options.php:1319
3226
- #: app/features/mec/meta_boxes/display_options.php:1366
3227
- #: app/features/mec/meta_boxes/display_options.php:1370
3228
- #: app/features/mec/meta_boxes/display_options.php:1418
3229
- #: app/features/mec/meta_boxes/display_options.php:1423
3230
- msgid "Date Formats"
3231
- msgstr ""
3232
-
3233
  #: app/features/mec/meta_boxes/display_options.php:79
3234
- #: app/features/mec/meta_boxes/display_options.php:307
3235
- msgid "Default value is \"M d Y\""
3236
- msgstr ""
3237
-
3238
  #: app/features/mec/meta_boxes/display_options.php:92
3239
- msgid "Default values are d, M and l"
3240
- msgstr ""
3241
-
3242
  #: app/features/mec/meta_boxes/display_options.php:105
 
 
 
 
 
 
 
 
 
 
 
3243
  #: app/features/mec/meta_boxes/display_options.php:296
 
 
 
3244
  #: app/features/mec/meta_boxes/display_options.php:320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3245
  #: app/features/mec/meta_boxes/display_options.php:1268
 
3246
  #: app/features/mec/meta_boxes/display_options.php:1281
 
3247
  #: app/features/mec/meta_boxes/display_options.php:1294
 
3248
  #: app/features/mec/meta_boxes/display_options.php:1307
 
3249
  #: app/features/mec/meta_boxes/display_options.php:1320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3250
  msgid "Default values are d, F and l"
3251
  msgstr ""
3252
 
3253
- #: app/features/mec/meta_boxes/display_options.php:116
3254
  msgid "Default value is \"M d\""
3255
  msgstr ""
3256
 
3257
- #: app/features/mec/meta_boxes/display_options.php:128
3258
  msgid "TDefault values are d and F"
3259
  msgstr ""
3260
 
3261
- #: app/features/mec/meta_boxes/display_options.php:135
3262
- #: app/features/mec/meta_boxes/display_options.php:349
3263
- #: app/features/mec/meta_boxes/display_options.php:445
3264
- #: app/features/mec/meta_boxes/display_options.php:621
3265
- #: app/features/mec/meta_boxes/display_options.php:663
3266
- #: app/features/mec/meta_boxes/display_options.php:746
3267
- #: app/features/mec/meta_boxes/display_options.php:780
3268
- #: app/features/mec/meta_boxes/display_options.php:827
3269
- #: app/features/mec/meta_boxes/display_options.php:1218
3270
- #: app/features/mec/meta_boxes/display_options.php:1327
3271
- #: app/features/mec/meta_boxes/display_options.php:1378
3272
  msgid "eg. 6"
3273
  msgstr ""
3274
 
3275
- #: app/features/mec/meta_boxes/display_options.php:140
3276
  msgid "Include Events Times"
3277
  msgstr ""
3278
 
3279
- #: app/features/mec/meta_boxes/display_options.php:151
3280
- #: app/features/mec/meta_boxes/display_options.php:353
3281
- #: app/features/mec/meta_boxes/display_options.php:449
3282
- #: app/features/mec/meta_boxes/display_options.php:987
3283
- #: app/features/mec/meta_boxes/display_options.php:1382
3284
  msgid "Load More Button"
3285
  msgstr ""
3286
 
3287
- #: app/features/mec/meta_boxes/display_options.php:161
3288
- #: app/features/mec/meta_boxes/display_options.php:459
3289
- #: app/features/mec/meta_boxes/display_options.php:1392
3290
  msgid "Show Month Divider"
3291
  msgstr ""
3292
 
3293
- #: app/features/mec/meta_boxes/display_options.php:171
3294
- #: app/features/mec/meta_boxes/display_options.php:363
3295
  msgid "Show Map on top"
3296
  msgstr ""
3297
 
3298
- #: app/features/mec/meta_boxes/display_options.php:186
3299
- #: app/features/mec/meta_boxes/display_options.php:378
3300
- #: app/features/mec/meta_boxes/display_options.php:716
3301
  msgid "Geolocation"
3302
  msgstr ""
3303
 
3304
- #: app/features/mec/meta_boxes/display_options.php:201
3305
  msgid "Toggle for Month Divider"
3306
  msgstr ""
3307
 
3308
- #: app/features/mec/meta_boxes/display_options.php:218
3309
- #: app/features/mec/meta_boxes/display_options.php:402
3310
- #: app/features/mec/meta_boxes/display_options.php:497
3311
- #: app/features/mec/meta_boxes/display_options.php:644
3312
- #: app/features/mec/meta_boxes/display_options.php:808
3313
- #: app/features/mec/meta_boxes/display_options.php:1005
3314
- #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
3315
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:334
3316
- #: app/features/mec/settings.php:349 app/features/mec/settings.php:367
 
 
 
3317
  msgid "Clean"
3318
  msgstr ""
3319
 
3320
- #: app/features/mec/meta_boxes/display_options.php:221
3321
- #: app/features/mec/meta_boxes/display_options.php:499
3322
- #: app/features/mec/meta_boxes/display_options.php:647
3323
- #: app/features/mec/settings.php:263 app/features/mec/settings.php:296
3324
- #: app/features/mec/settings.php:337 app/features/mec/settings.php:370
 
 
3325
  msgid "Simple"
3326
  msgstr ""
3327
 
3328
- #: app/features/mec/meta_boxes/display_options.php:222
 
3329
  msgid "Colorful"
3330
  msgstr ""
3331
 
3332
- #: app/features/mec/meta_boxes/display_options.php:223
3333
- #: app/features/mec/meta_boxes/display_options.php:498
3334
- #: app/features/mec/meta_boxes/display_options.php:646
3335
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:298
3336
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:372
 
 
3337
  msgid "Novel"
3338
  msgstr ""
3339
 
3340
- #: app/features/mec/meta_boxes/display_options.php:259
3341
- #: app/features/mec/meta_boxes/display_options.php:1371
3342
  msgid "Default value is \"d F Y"
3343
  msgstr ""
3344
 
3345
- #: app/features/mec/meta_boxes/display_options.php:271
3346
  msgid "Default values are d and F"
3347
  msgstr ""
3348
 
3349
- #: app/features/mec/meta_boxes/display_options.php:283
3350
  msgid "Default values are d and M"
3351
  msgstr ""
3352
 
3353
- #: app/features/mec/meta_boxes/display_options.php:331
3354
  msgid "Default value is \"d F Y\""
3355
  msgstr ""
3356
 
3357
- #: app/features/mec/meta_boxes/display_options.php:337
3358
- #: app/features/mec/meta_boxes/display_options.php:1208
3359
- #: app/features/mec/meta_boxes/display_options.php:1430
3360
  msgid "Count in row"
3361
  msgstr ""
3362
 
3363
- #: app/features/mec/meta_boxes/display_options.php:395
3364
- #: app/features/mec/meta_boxes/display_options.php:586
3365
- #: app/features/mec/meta_boxes/display_options.php:693
3366
- #: app/features/mec/meta_boxes/display_options.php:800
3367
- #: app/features/mec/meta_boxes/display_options.php:1120
3368
  #, php-format
3369
  msgid "%s is required to use this skin."
3370
  msgstr ""
3371
 
3372
- #: app/features/mec/meta_boxes/display_options.php:438
3373
- #: app/features/mec/meta_boxes/display_options.php:614
3374
  msgid "Default values are l and F j"
3375
  msgstr ""
3376
 
3377
- #: app/features/mec/meta_boxes/display_options.php:485
3378
  msgid "Default View"
3379
  msgstr ""
3380
 
3381
- #: app/features/mec/meta_boxes/display_options.php:487
3382
- #: app/features/mec/meta_boxes/display_options.php:508
3383
- #: app/libraries/main.php:330 app/libraries/main.php:1757
3384
- #: app/libraries/main.php:1782
3385
  msgid "List View"
3386
  msgstr ""
3387
 
3388
- #: app/features/mec/meta_boxes/display_options.php:488
3389
- #: app/features/mec/meta_boxes/display_options.php:518
3390
- #: app/libraries/main.php:334 app/libraries/main.php:1751
3391
- #: app/libraries/main.php:1776
3392
  msgid "Yearly View"
3393
  msgstr ""
3394
 
3395
- #: app/features/mec/meta_boxes/display_options.php:489
3396
- #: app/features/mec/meta_boxes/display_options.php:540
3397
  msgid "Monthly/Calendar View"
3398
  msgstr ""
3399
 
3400
- #: app/features/mec/meta_boxes/display_options.php:490
3401
- #: app/features/mec/meta_boxes/display_options.php:550
3402
- #: app/libraries/main.php:337 app/libraries/main.php:1753
3403
- #: app/libraries/main.php:1778
3404
  msgid "Weekly View"
3405
  msgstr ""
3406
 
3407
- #: app/features/mec/meta_boxes/display_options.php:491
3408
- #: app/features/mec/meta_boxes/display_options.php:560
3409
- #: app/libraries/main.php:336 app/libraries/main.php:1754
3410
- #: app/libraries/main.php:1779
3411
  msgid "Daily View"
3412
  msgstr ""
3413
 
3414
- #: app/features/mec/meta_boxes/display_options.php:495
 
3415
  msgid "Monthly Style"
3416
  msgstr ""
3417
 
3418
- #: app/features/mec/meta_boxes/display_options.php:535
3419
  #, php-format
3420
  msgid "%s is required to use <b>Yearly View</b> skin."
3421
  msgstr ""
3422
 
3423
- #: app/features/mec/meta_boxes/display_options.php:568
3424
  msgid "The price shows only in List View."
3425
  msgstr ""
3426
 
3427
- #: app/features/mec/meta_boxes/display_options.php:571
3428
  msgid "Display Event Price"
3429
  msgstr ""
3430
 
3431
- #: app/features/mec/meta_boxes/display_options.php:599
3432
  msgid "Start of Current Year"
3433
  msgstr ""
3434
 
3435
- #: app/features/mec/meta_boxes/display_options.php:600
3436
  msgid "Start of Next Year"
3437
  msgstr ""
3438
 
3439
- #: app/features/mec/meta_boxes/display_options.php:620
3440
- #: app/features/mec/meta_boxes/display_options.php:662
3441
- #: app/features/mec/meta_boxes/display_options.php:745
3442
- #: app/features/mec/meta_boxes/display_options.php:779
3443
- #: app/features/mec/meta_boxes/display_options.php:826
3444
  msgid "Events per day"
3445
  msgstr ""
3446
 
3447
- #: app/features/mec/meta_boxes/display_options.php:625
3448
- #: app/features/mec/meta_boxes/display_options.php:667
3449
- #: app/features/mec/meta_boxes/display_options.php:750
3450
- #: app/features/mec/meta_boxes/display_options.php:784
3451
- #: app/features/mec/meta_boxes/display_options.php:888
3452
- #: app/features/mec/meta_boxes/display_options.php:1439
3453
  msgid "Next/Previous Buttons"
3454
  msgstr ""
3455
 
3456
- #: app/features/mec/meta_boxes/display_options.php:633
3457
  msgid "For showing next/previous year navigation."
3458
  msgstr ""
3459
 
3460
- #: app/features/mec/meta_boxes/display_options.php:677
3461
  msgid "Uppercase Text"
3462
  msgstr ""
3463
 
3464
- #: app/features/mec/meta_boxes/display_options.php:685
3465
- #: app/features/mec/meta_boxes/display_options.php:758
3466
- #: app/features/mec/meta_boxes/display_options.php:792
3467
- #: app/features/mec/meta_boxes/display_options.php:896
3468
- #: app/features/mec/meta_boxes/display_options.php:1447
3469
  msgid "For showing next/previous month navigation."
3470
  msgstr ""
3471
 
3472
- #: app/features/mec/meta_boxes/display_options.php:711
3473
  msgid "Maximum events"
3474
  msgstr ""
3475
 
3476
- #: app/features/mec/meta_boxes/display_options.php:712
3477
  msgid "eg. 200"
3478
  msgstr ""
3479
 
3480
- #: app/features/mec/meta_boxes/display_options.php:724
3481
  msgid "The geolocation feature works only in secure (https) websites."
3482
  msgstr ""
3483
 
3484
- #: app/features/mec/meta_boxes/display_options.php:768
3485
- #: app/features/mec/meta_boxes/display_options.php:815
3486
  msgid "Current Week"
3487
  msgstr ""
3488
 
3489
- #: app/features/mec/meta_boxes/display_options.php:769
3490
- #: app/features/mec/meta_boxes/display_options.php:816
3491
  msgid "Next Week"
3492
  msgstr ""
3493
 
3494
- #: app/features/mec/meta_boxes/display_options.php:831
3495
  msgid "Number of Days"
3496
  msgstr ""
3497
 
3498
- #: app/features/mec/meta_boxes/display_options.php:839
3499
  msgid "Week Start"
3500
  msgstr ""
3501
 
3502
- #: app/features/mec/meta_boxes/display_options.php:841
3503
  msgid "Inherite from WordPress options"
3504
  msgstr ""
3505
 
3506
- #: app/features/mec/meta_boxes/display_options.php:856
3507
  msgid "1:00"
3508
  msgstr ""
3509
 
3510
- #: app/features/mec/meta_boxes/display_options.php:857
3511
  msgid "2:00"
3512
  msgstr ""
3513
 
3514
- #: app/features/mec/meta_boxes/display_options.php:858
3515
  msgid "3:00"
3516
  msgstr ""
3517
 
3518
- #: app/features/mec/meta_boxes/display_options.php:859
3519
  msgid "4:00"
3520
  msgstr ""
3521
 
3522
- #: app/features/mec/meta_boxes/display_options.php:860
3523
  msgid "5:00"
3524
  msgstr ""
3525
 
3526
- #: app/features/mec/meta_boxes/display_options.php:861
3527
  msgid "6:00"
3528
  msgstr ""
3529
 
3530
- #: app/features/mec/meta_boxes/display_options.php:862
3531
  msgid "7:00"
3532
  msgstr ""
3533
 
3534
- #: app/features/mec/meta_boxes/display_options.php:863
3535
  msgid "8:00"
3536
  msgstr ""
3537
 
3538
- #: app/features/mec/meta_boxes/display_options.php:864
3539
  msgid "9:00"
3540
  msgstr ""
3541
 
3542
- #: app/features/mec/meta_boxes/display_options.php:865
3543
  msgid "10:00"
3544
  msgstr ""
3545
 
3546
- #: app/features/mec/meta_boxes/display_options.php:866
3547
  msgid "11:00"
3548
  msgstr ""
3549
 
3550
- #: app/features/mec/meta_boxes/display_options.php:867
3551
  msgid "12:00"
3552
  msgstr ""
3553
 
3554
- #: app/features/mec/meta_boxes/display_options.php:870
3555
  msgid "13:00"
3556
  msgstr ""
3557
 
3558
- #: app/features/mec/meta_boxes/display_options.php:871
3559
  msgid "14:00"
3560
  msgstr ""
3561
 
3562
- #: app/features/mec/meta_boxes/display_options.php:872
3563
  msgid "15:00"
3564
  msgstr ""
3565
 
3566
- #: app/features/mec/meta_boxes/display_options.php:873
3567
  msgid "16:00"
3568
  msgstr ""
3569
 
3570
- #: app/features/mec/meta_boxes/display_options.php:874
3571
  msgid "17:00"
3572
  msgstr ""
3573
 
3574
- #: app/features/mec/meta_boxes/display_options.php:875
3575
  msgid "18:00"
3576
  msgstr ""
3577
 
3578
- #: app/features/mec/meta_boxes/display_options.php:876
3579
  msgid "19:00"
3580
  msgstr ""
3581
 
3582
- #: app/features/mec/meta_boxes/display_options.php:877
3583
  msgid "20:00"
3584
  msgstr ""
3585
 
3586
- #: app/features/mec/meta_boxes/display_options.php:878
3587
  msgid "21:00"
3588
  msgstr ""
3589
 
3590
- #: app/features/mec/meta_boxes/display_options.php:879
3591
  msgid "22:00"
3592
  msgstr ""
3593
 
3594
- #: app/features/mec/meta_boxes/display_options.php:880
3595
  msgid "23:00"
3596
  msgstr ""
3597
 
3598
- #: app/features/mec/meta_boxes/display_options.php:881
3599
  msgid "24:00"
3600
  msgstr ""
3601
 
3602
- #: app/features/mec/meta_boxes/display_options.php:944
3603
- #: app/features/mec/meta_boxes/display_options.php:1131
3604
  msgid "Default values are j and F"
3605
  msgstr ""
3606
 
3607
- #: app/features/mec/meta_boxes/display_options.php:951
3608
  msgid "eg. 24"
3609
  msgstr ""
3610
 
3611
- #: app/features/mec/meta_boxes/display_options.php:954
3612
  msgid "Filter By"
3613
  msgstr ""
3614
 
3615
- #: app/features/mec/meta_boxes/display_options.php:956
3616
  msgid "None"
3617
  msgstr ""
3618
 
3619
- #: app/features/mec/meta_boxes/display_options.php:965
3620
  msgid "Fit to row"
3621
  msgstr ""
3622
 
3623
- #: app/features/mec/meta_boxes/display_options.php:966
3624
  msgid ""
3625
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3626
  "would expect from a layout that uses CSS floats."
3627
  msgstr ""
3628
 
3629
- #: app/features/mec/meta_boxes/display_options.php:976
3630
  msgid "Convert Masonry to Grid"
3631
  msgstr ""
3632
 
3633
- #: app/features/mec/meta_boxes/display_options.php:977
3634
  msgid "For using this option, your events should come with image"
3635
  msgstr ""
3636
 
3637
- #: app/features/mec/meta_boxes/display_options.php:1017
3638
  msgid "Default values are d, M and Y"
3639
  msgstr ""
3640
 
3641
- #: app/features/mec/meta_boxes/display_options.php:1029
3642
  msgid "Default values are \"F d\" and l"
3643
  msgstr ""
3644
 
3645
- #: app/features/mec/meta_boxes/display_options.php:1040
3646
  msgid "Default value is \"l, F d Y\""
3647
  msgstr ""
3648
 
3649
- #: app/features/mec/meta_boxes/display_options.php:1061
 
3650
  msgid "Style 1"
3651
  msgstr ""
3652
 
3653
- #: app/features/mec/meta_boxes/display_options.php:1062
 
3654
  msgid "Style 2"
3655
  msgstr ""
3656
 
3657
- #: app/features/mec/meta_boxes/display_options.php:1063
 
3658
  msgid "Style 3"
3659
  msgstr ""
3660
 
3661
- #: app/features/mec/meta_boxes/display_options.php:1072
3662
- #: app/features/mec/meta_boxes/display_options.php:1083
3663
  msgid "Default value is \"j F Y\""
3664
  msgstr ""
3665
 
3666
- #: app/features/mec/meta_boxes/display_options.php:1096
3667
  msgid "Default values are j, F and Y"
3668
  msgstr ""
3669
 
3670
- #: app/features/mec/meta_boxes/display_options.php:1104
3671
- #: app/features/mec/meta_boxes/display_options.php:1139
3672
  msgid " -- Next Upcoming Event -- "
3673
  msgstr ""
3674
 
3675
- #: app/features/mec/meta_boxes/display_options.php:1111
3676
  msgid "Background Color"
3677
  msgstr ""
3678
 
3679
- #: app/features/mec/meta_boxes/display_options.php:1153
3680
- #: app/features/mec/meta_boxes/display_options.php:1240
3681
- msgid "Type 1"
3682
- msgstr ""
3683
-
3684
  #: app/features/mec/meta_boxes/display_options.php:1154
3685
  #: app/features/mec/meta_boxes/display_options.php:1241
3686
- msgid "Type 2"
 
3687
  msgstr ""
3688
 
3689
  #: app/features/mec/meta_boxes/display_options.php:1155
3690
  #: app/features/mec/meta_boxes/display_options.php:1242
3691
- msgid "Type 3"
 
3692
  msgstr ""
3693
 
3694
  #: app/features/mec/meta_boxes/display_options.php:1156
3695
  #: app/features/mec/meta_boxes/display_options.php:1243
 
 
 
 
 
 
 
3696
  msgid "Type 4"
3697
  msgstr ""
3698
 
3699
- #: app/features/mec/meta_boxes/display_options.php:1180
3700
  msgid "Default values are d, F and Y"
3701
  msgstr ""
3702
 
3703
- #: app/features/mec/meta_boxes/display_options.php:1191
3704
- #: app/features/mec/meta_boxes/display_options.php:1202
3705
  msgid "Default value is \"M d, Y\""
3706
  msgstr ""
3707
 
3708
- #: app/features/mec/meta_boxes/display_options.php:1221
3709
- #: app/features/mec/meta_boxes/display_options.php:1330
3710
  msgid "Auto Play Time"
3711
  msgstr ""
3712
 
3713
- #: app/features/mec/meta_boxes/display_options.php:1222
3714
- #: app/features/mec/meta_boxes/display_options.php:1331
3715
  msgid "eg. 3000 default is 3 second"
3716
  msgstr ""
3717
 
@@ -3723,11 +3753,12 @@ msgstr ""
3723
  msgid "Head Text"
3724
  msgstr ""
3725
 
3726
- #: app/features/mec/meta_boxes/display_options.php:1244
 
3727
  msgid "Type 5"
3728
  msgstr ""
3729
 
3730
- #: app/features/mec/meta_boxes/display_options.php:1424
3731
  msgid "Default values are j and M"
3732
  msgstr ""
3733
 
@@ -3768,16 +3799,19 @@ msgid "Dates"
3768
  msgstr ""
3769
 
3770
  #: app/features/mec/meta_boxes/filter.php:183
 
3771
  msgid "Include Expired Events"
3772
  msgstr ""
3773
 
3774
  #: app/features/mec/meta_boxes/filter.php:190
 
3775
  msgid ""
3776
  "You have ability to include past/expired events if you like so it will show "
3777
  "upcoming and expired events based on start date that you selected."
3778
  msgstr ""
3779
 
3780
  #: app/features/mec/meta_boxes/filter.php:197
 
3781
  msgid "Show Only Expired Events"
3782
  msgstr ""
3783
 
@@ -3789,6 +3823,7 @@ msgid ""
3789
  msgstr ""
3790
 
3791
  #: app/features/mec/meta_boxes/filter.php:204
 
3792
  msgid "only"
3793
  msgstr ""
3794
 
@@ -3797,10 +3832,12 @@ msgid "older"
3797
  msgstr ""
3798
 
3799
  #: app/features/mec/meta_boxes/filter.php:212
 
3800
  msgid "Show Only Ongoing Events"
3801
  msgstr ""
3802
 
3803
  #: app/features/mec/meta_boxes/filter.php:219
 
3804
  msgid "It shows only ongoing events on List and Grid skins."
3805
  msgstr ""
3806
 
@@ -3896,7 +3933,7 @@ msgstr ""
3896
  #: app/features/mec/meta_boxes/search_form.php:716
3897
  #: app/features/mec/meta_boxes/search_form.php:723
3898
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
3899
- #: app/features/mec/settings.php:413
3900
  msgid "Disabled"
3901
  msgstr ""
3902
 
@@ -3911,9 +3948,9 @@ msgstr ""
3911
  #: app/features/mec/meta_boxes/search_form.php:535
3912
  #: app/features/mec/meta_boxes/search_form.php:596
3913
  #: app/features/mec/meta_boxes/search_form.php:693
3914
- #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3915
- #: app/features/search.php:79 app/features/speakers.php:61
3916
- #: app/features/speakers.php:269 app/libraries/main.php:5289
3917
  #: app/libraries/skins.php:936
3918
  msgid "Speaker"
3919
  msgstr ""
@@ -3929,8 +3966,8 @@ msgstr ""
3929
  #: app/features/mec/meta_boxes/search_form.php:542
3930
  #: app/features/mec/meta_boxes/search_form.php:603
3931
  #: app/features/mec/meta_boxes/search_form.php:700
3932
- #: app/features/mec/settings.php:826 app/features/mec/single.php:226
3933
- #: app/features/search.php:83 app/libraries/skins.php:962
3934
  msgid "Tag"
3935
  msgstr ""
3936
 
@@ -4009,14 +4046,14 @@ msgid "Show Google Maps on event page"
4009
  msgstr ""
4010
 
4011
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4012
- #: app/features/mec/settings.php:856 app/features/mec/settings.php:861
4013
- #: app/features/mec/settings.php:909 app/features/mec/settings.php:933
4014
- #: app/features/mec/settings.php:957
4015
  msgid "API Key"
4016
  msgstr ""
4017
 
4018
- #: app/features/mec/modules.php:86 app/features/mec/settings.php:862
4019
- #: app/features/mec/settings.php:875
4020
  msgid "Required!"
4021
  msgstr ""
4022
 
@@ -4608,7 +4645,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4608
  msgstr ""
4609
 
4610
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4611
- #: app/libraries/notifications.php:603
4612
  msgid "Booking Reminder"
4613
  msgstr ""
4614
 
@@ -4663,8 +4700,8 @@ msgid "Status of event"
4663
  msgstr ""
4664
 
4665
  #: app/features/mec/notifications.php:720
4666
- #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4667
- #: app/features/mec/settings.php:738
4668
  msgid "Event Note"
4669
  msgstr ""
4670
 
@@ -4834,7 +4871,7 @@ msgid "You can enable/disable Schema scripts"
4834
  msgstr ""
4835
 
4836
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4837
- #: app/libraries/main.php:5293
4838
  msgid "Weekdays"
4839
  msgstr ""
4840
 
@@ -4890,245 +4927,253 @@ msgid ""
4890
  "12 AM and you don't want those events considered as multiple days events!"
4891
  msgstr ""
4892
 
4893
- #: app/features/mec/settings.php:224 app/libraries/main.php:532
 
 
 
 
 
 
 
 
4894
  msgid "Archive Pages"
4895
  msgstr ""
4896
 
4897
- #: app/features/mec/settings.php:227 app/features/mec/settings.php:232
4898
  msgid "Archive Page Title"
4899
  msgstr ""
4900
 
4901
- #: app/features/mec/settings.php:233
4902
  msgid "Default value is Events - It's title of the page"
4903
  msgstr ""
4904
 
4905
- #: app/features/mec/settings.php:241 app/features/mec/settings.php:309
4906
  msgid "Archive Page Skin"
4907
  msgstr ""
4908
 
4909
- #: app/features/mec/settings.php:249
4910
  msgid "Put shortcode..."
4911
  msgstr ""
4912
 
4913
- #: app/features/mec/settings.php:252 app/features/mec/settings.php:267
4914
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:279
4915
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:326
4916
- #: app/features/mec/settings.php:341 app/features/mec/settings.php:344
4917
- #: app/features/mec/settings.php:353 app/features/mec/settings.php:379
4918
  msgid "There is no skins"
4919
  msgstr ""
4920
 
4921
- #: app/features/mec/settings.php:255 app/features/mec/settings.php:329
4922
  #: app/features/mec/single.php:69
4923
  msgid "Modern Style"
4924
  msgstr ""
4925
 
4926
- #: app/features/mec/settings.php:297 app/features/mec/settings.php:371
4927
  msgid "colorful"
4928
  msgstr ""
4929
 
4930
- #: app/features/mec/settings.php:302 app/features/mec/settings.php:376
4931
  msgid "Clean Style"
4932
  msgstr ""
4933
 
4934
- #: app/features/mec/settings.php:310
4935
  msgid "Default value is Calendar/Monthly View, But you can change it "
4936
  msgstr ""
4937
 
4938
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
4939
  msgid "See Demo"
4940
  msgstr ""
4941
 
4942
- #: app/features/mec/settings.php:318 app/features/mec/settings.php:383
4943
  msgid "Category Page Skin"
4944
  msgstr ""
4945
 
4946
- #: app/features/mec/settings.php:384
4947
  msgid ""
4948
  "Default value is List View - But you can change it Set a skin for all "
4949
  "categories."
4950
  msgstr ""
4951
 
4952
- #: app/features/mec/settings.php:392 app/features/mec/settings.php:400
4953
  msgid "Category Events Method"
4954
  msgstr ""
4955
 
4956
- #: app/features/mec/settings.php:396
4957
  msgid "Expired Events"
4958
  msgstr ""
4959
 
4960
- #: app/features/mec/settings.php:401
4961
  msgid "Default value is Upcoming Events"
4962
  msgstr ""
4963
 
4964
- #: app/features/mec/settings.php:409 app/features/mec/settings.php:417
4965
  msgid "Events Archive Status"
4966
  msgstr ""
4967
 
4968
- #: app/features/mec/settings.php:412
4969
  msgid "Enabled (Recommended)"
4970
  msgstr ""
4971
 
4972
- #: app/features/mec/settings.php:418
4973
  msgid ""
4974
  "If you disable it, then you should create a page as archive page of MEC. "
4975
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
4976
  "MEC rewrite rules."
4977
  msgstr ""
4978
 
4979
- #: app/features/mec/settings.php:431 app/features/mec/settings.php:436
4980
  msgid "Main Slug"
4981
  msgstr ""
4982
 
4983
- #: app/features/mec/settings.php:437
4984
  msgid ""
4985
  "Default value is events. You can not have a page with this name. MEC allows "
4986
  "you to create custom URLs for the permalinks and archives to enhance the "
4987
  "applicability and forward-compatibility of the links."
4988
  msgstr ""
4989
 
4990
- #: app/features/mec/settings.php:441 app/features/mec/settings.php:455
4991
  msgid "Valid characters are lowercase a-z, - character and numbers."
4992
  msgstr ""
4993
 
4994
- #: app/features/mec/settings.php:445 app/features/mec/settings.php:450
4995
  msgid "Category Slug"
4996
  msgstr ""
4997
 
4998
- #: app/features/mec/settings.php:451
4999
  msgid ""
5000
  "It's slug of MEC categories, you can change it to events-cat or something "
5001
  "else. Default value is mec-category. You can not have a page with this name."
5002
  msgstr ""
5003
 
5004
- #: app/features/mec/settings.php:463
5005
  msgid "Currency"
5006
  msgstr ""
5007
 
5008
- #: app/features/mec/settings.php:473 app/features/mec/settings.php:478
5009
  msgid "Currency Sign"
5010
  msgstr ""
5011
 
5012
- #: app/features/mec/settings.php:479
5013
  msgid "Default value will be \"currency\" if you leave it empty."
5014
  msgstr ""
5015
 
5016
- #: app/features/mec/settings.php:486
5017
  msgid "Currency Position"
5018
  msgstr ""
5019
 
5020
- #: app/features/mec/settings.php:489
5021
  msgid "Before $10"
5022
  msgstr ""
5023
 
5024
- #: app/features/mec/settings.php:490
5025
  msgid "After 10$"
5026
  msgstr ""
5027
 
5028
- #: app/features/mec/settings.php:495
5029
  msgid "Thousand Separator"
5030
  msgstr ""
5031
 
5032
- #: app/features/mec/settings.php:501
5033
  msgid "Decimal Separator"
5034
  msgstr ""
5035
 
5036
- #: app/features/mec/settings.php:511
5037
  msgid "No decimal"
5038
  msgstr ""
5039
 
5040
- #: app/features/mec/settings.php:522
5041
  msgid "Enable Google Recaptcha"
5042
  msgstr ""
5043
 
5044
- #: app/features/mec/settings.php:529
5045
  msgid "Enable on booking form"
5046
  msgstr ""
5047
 
5048
- #: app/features/mec/settings.php:535
5049
  msgid "Enable on \"Frontend Event Submission\" form"
5050
  msgstr ""
5051
 
5052
- #: app/features/mec/settings.php:539
5053
  msgid "Site Key"
5054
  msgstr ""
5055
 
5056
- #: app/features/mec/settings.php:545
5057
  msgid "Secret Key"
5058
  msgstr ""
5059
 
5060
- #: app/features/mec/settings.php:557 app/features/mec/settings.php:565
5061
  msgid "Time Format"
5062
  msgstr ""
5063
 
5064
- #: app/features/mec/settings.php:560
5065
  msgid "12 hours format with AM/PM"
5066
  msgstr ""
5067
 
5068
- #: app/features/mec/settings.php:561
5069
  msgid "24 hours format"
5070
  msgstr ""
5071
 
5072
- #: app/features/mec/settings.php:566
5073
  msgid "This option, affects the selection of Start/End time."
5074
  msgstr ""
5075
 
5076
- #: app/features/mec/settings.php:574
5077
  msgid "Events List Page"
5078
  msgstr ""
5079
 
5080
- #: app/features/mec/settings.php:583 app/features/mec/settings.php:595
5081
  #, php-format
5082
  msgid "Put %s shortcode into the page."
5083
  msgstr ""
5084
 
5085
- #: app/features/mec/settings.php:586
5086
  msgid "Add/Edit Events Page"
5087
  msgstr ""
5088
 
5089
- #: app/features/mec/settings.php:610
5090
  msgid ""
5091
  "User redirects to this page after new event submission. Leave it empty if "
5092
  "you want to disable it."
5093
  msgstr ""
5094
 
5095
- #: app/features/mec/settings.php:635
5096
  msgid "Enable event submission by guest (Not logged-in) users"
5097
  msgstr ""
5098
 
5099
- #: app/features/mec/settings.php:642
5100
  msgid "Enable mandatory email and name for guest user"
5101
  msgstr ""
5102
 
5103
- #: app/features/mec/settings.php:646
5104
  msgid "Frontend Event Submission Sections"
5105
  msgstr ""
5106
 
5107
- #: app/features/mec/settings.php:668 app/widgets/single.php:119
5108
  msgid "Event Categories"
5109
  msgstr ""
5110
 
5111
- #: app/features/mec/settings.php:674
5112
  msgid "Event Labels"
5113
  msgstr ""
5114
 
5115
- #: app/features/mec/settings.php:686
5116
  msgid "Event Tags"
5117
  msgstr ""
5118
 
5119
- #: app/features/mec/settings.php:698 app/widgets/single.php:123
5120
  msgid "Event Organizer"
5121
  msgstr ""
5122
 
5123
- #: app/features/mec/settings.php:716
5124
  msgid "Booking Options"
5125
  msgstr ""
5126
 
5127
- #: app/features/mec/settings.php:722
5128
  msgid "Fees / Taxes Options"
5129
  msgstr ""
5130
 
5131
- #: app/features/mec/settings.php:739
5132
  #, php-format
5133
  msgid ""
5134
  "Users can put a note for editors while they're submitting the event. Also "
@@ -5136,145 +5181,145 @@ msgid ""
5136
  "users' note in email."
5137
  msgstr ""
5138
 
5139
- #: app/features/mec/settings.php:746 app/features/mec/settings.php:754
5140
  msgid "Visibility of Note"
5141
  msgstr ""
5142
 
5143
- #: app/features/mec/settings.php:749
5144
  msgid "Always"
5145
  msgstr ""
5146
 
5147
- #: app/features/mec/settings.php:750
5148
  msgid "While event is not published"
5149
  msgstr ""
5150
 
5151
- #: app/features/mec/settings.php:755
5152
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5153
  msgstr ""
5154
 
5155
- #: app/features/mec/settings.php:766 app/libraries/main.php:537
5156
  msgid "User Profile"
5157
  msgstr ""
5158
 
5159
- #: app/features/mec/settings.php:768
5160
  #, php-format
5161
  msgid ""
5162
  "Put %s shortcode into your desired page. Then users are able to see history "
5163
  "of their bookings."
5164
  msgstr ""
5165
 
5166
- #: app/features/mec/settings.php:773 app/libraries/main.php:538
5167
  msgid "Search Bar"
5168
  msgstr ""
5169
 
5170
- #: app/features/mec/settings.php:775
5171
  #, php-format
5172
  msgid ""
5173
  "Put %s shortcode into your desired page. Then users are able to search events"
5174
  msgstr ""
5175
 
5176
- #: app/features/mec/settings.php:779
5177
  msgid "Ajax Live mode"
5178
  msgstr ""
5179
 
5180
- #: app/features/mec/settings.php:783
5181
  msgid "Ajax mode"
5182
  msgstr ""
5183
 
5184
- #: app/features/mec/settings.php:784
5185
  msgid ""
5186
  "if you enable this option, search button disappeared and to use this "
5187
  "feature, text input field must be enabled."
5188
  msgstr ""
5189
 
5190
- #: app/features/mec/settings.php:792
5191
  msgid "Modern Type"
5192
  msgstr ""
5193
 
5194
- #: app/features/mec/settings.php:796
5195
  msgid "Search bar fields"
5196
  msgstr ""
5197
 
5198
- #: app/features/mec/settings.php:838
5199
  msgid "Text input"
5200
  msgstr ""
5201
 
5202
- #: app/features/mec/settings.php:851
5203
  msgid "Enable Mailchimp Integration"
5204
  msgstr ""
5205
 
5206
- #: app/features/mec/settings.php:869 app/features/mec/settings.php:874
5207
- #: app/features/mec/settings.php:915 app/features/mec/settings.php:963
5208
  msgid "List ID"
5209
  msgstr ""
5210
 
5211
- #: app/features/mec/settings.php:882 app/features/mec/settings.php:890
5212
  msgid "Subscription Status"
5213
  msgstr ""
5214
 
5215
- #: app/features/mec/settings.php:885
5216
  msgid "Subscribe automatically"
5217
  msgstr ""
5218
 
5219
- #: app/features/mec/settings.php:886
5220
  msgid "Subscribe by verification"
5221
  msgstr ""
5222
 
5223
- #: app/features/mec/settings.php:891
5224
  msgid ""
5225
  "If you choose \"Subscribe by verification\" then an email will send to user "
5226
  "by mailchimp for subscription verification."
5227
  msgstr ""
5228
 
5229
- #: app/features/mec/settings.php:900 app/libraries/main.php:540
5230
  msgid "Campaign Monitor Integration"
5231
  msgstr ""
5232
 
5233
- #: app/features/mec/settings.php:904
5234
  msgid "Enable Campaign Monitor Integration"
5235
  msgstr ""
5236
 
5237
- #: app/features/mec/settings.php:924 app/libraries/main.php:541
5238
  msgid "MailerLite Integration"
5239
  msgstr ""
5240
 
5241
- #: app/features/mec/settings.php:928
5242
  msgid "Enable MailerLite Integration"
5243
  msgstr ""
5244
 
5245
- #: app/features/mec/settings.php:939
5246
  msgid "Group ID"
5247
  msgstr ""
5248
 
5249
- #: app/features/mec/settings.php:948 app/libraries/main.php:542
5250
  msgid "Constant Contact Integration"
5251
  msgstr ""
5252
 
5253
- #: app/features/mec/settings.php:952
5254
  msgid "Enable constantcontact Integration"
5255
  msgstr ""
5256
 
5257
- #: app/features/mec/settings.php:974
5258
  msgid "Upload Field Options"
5259
  msgstr ""
5260
 
5261
- #: app/features/mec/settings.php:976
5262
  msgid "Mime types"
5263
  msgstr ""
5264
 
5265
- #: app/features/mec/settings.php:980
5266
  msgid "Split mime types with \",\"."
5267
  msgstr ""
5268
 
5269
- #: app/features/mec/settings.php:980
5270
  msgid "Default: jpeg,jpg,png,pdf"
5271
  msgstr ""
5272
 
5273
- #: app/features/mec/settings.php:983
5274
  msgid "Maximum file size"
5275
  msgstr ""
5276
 
5277
- #: app/features/mec/settings.php:987
5278
  msgid "The unit is Megabyte \"MB\""
5279
  msgstr ""
5280
 
@@ -5936,7 +5981,7 @@ msgstr ""
5936
  msgid "eg. https://webnus.net"
5937
  msgstr ""
5938
 
5939
- #: app/features/organizers.php:312 app/libraries/main.php:5317
5940
  #: app/skins/single.php:862
5941
  msgid "Other Organizers"
5942
  msgstr ""
@@ -5946,12 +5991,59 @@ msgid ""
5946
  "You can select extra organizers in addition to main organizer if you like."
5947
  msgstr ""
5948
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5949
  #: app/features/profile.php:74
5950
  #, php-format
5951
  msgid "Please %s/%s in order to see your bookings / profile."
5952
  msgstr ""
5953
 
5954
- #: app/features/profile/profile.php:18 app/libraries/main.php:2142
5955
  msgid "Your booking already canceled!"
5956
  msgstr ""
5957
 
@@ -5959,11 +6051,11 @@ msgstr ""
5959
  msgid "#"
5960
  msgstr ""
5961
 
5962
- #: app/features/profile/profile.php:56 app/libraries/main.php:3152
5963
  msgid "Status"
5964
  msgstr ""
5965
 
5966
- #: app/features/profile/profile.php:59 app/libraries/main.php:2257
5967
  msgid "Attendees"
5968
  msgstr ""
5969
 
@@ -5992,11 +6084,11 @@ msgstr ""
5992
  msgid "No bookings found!"
5993
  msgstr ""
5994
 
5995
- #: app/features/search.php:87 app/libraries/main.php:5283
5996
  msgid "label"
5997
  msgstr ""
5998
 
5999
- #: app/features/search.php:121
6000
  msgid "Please enter at least 3 characters and try again"
6001
  msgstr ""
6002
 
@@ -6017,7 +6109,7 @@ msgid "No search result."
6017
  msgstr ""
6018
 
6019
  #: app/features/search_bar/search_result.php:11
6020
- #: app/libraries/notifications.php:947 app/libraries/render.php:488
6021
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6022
  #: app/skins/single.php:160 app/skins/single.php:753
6023
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6121,51 +6213,51 @@ msgctxt "plugin link"
6121
  msgid "Upgrade"
6122
  msgstr ""
6123
 
6124
- #: app/libraries/factory.php:356
6125
  msgid "day"
6126
  msgstr ""
6127
 
6128
- #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6129
- #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6130
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6131
  msgid "days"
6132
  msgstr ""
6133
 
6134
- #: app/libraries/factory.php:358
6135
  msgid "hour"
6136
  msgstr ""
6137
 
6138
- #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6139
- #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6140
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6141
  msgid "hours"
6142
  msgstr ""
6143
 
6144
- #: app/libraries/factory.php:360
6145
  msgid "minute"
6146
  msgstr ""
6147
 
6148
- #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6149
- #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6150
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6151
  msgid "minutes"
6152
  msgstr ""
6153
 
6154
- #: app/libraries/factory.php:362
6155
  msgid "second"
6156
  msgstr ""
6157
 
6158
- #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6159
- #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6160
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6161
  msgid "seconds"
6162
  msgstr ""
6163
 
6164
- #: app/libraries/factory.php:411
6165
  msgid "MEC Single Sidebar"
6166
  msgstr ""
6167
 
6168
- #: app/libraries/factory.php:412
6169
  msgid "Custom sidebar for single and modal page of MEC."
6170
  msgstr ""
6171
 
@@ -6173,38 +6265,38 @@ msgstr ""
6173
  msgid "There is no excerpt because this is a protected post."
6174
  msgstr ""
6175
 
6176
- #: app/libraries/main.php:331 app/libraries/main.php:1758
6177
- #: app/libraries/main.php:1783
6178
  msgid "Grid View"
6179
  msgstr ""
6180
 
6181
- #: app/libraries/main.php:332 app/libraries/main.php:1759
6182
- #: app/libraries/main.php:1784
6183
  msgid "Agenda View"
6184
  msgstr ""
6185
 
6186
- #: app/libraries/main.php:333 app/libraries/main.php:1750
6187
- #: app/libraries/main.php:1775
6188
  msgid "Full Calendar"
6189
  msgstr ""
6190
 
6191
- #: app/libraries/main.php:335 app/libraries/main.php:1752
6192
- #: app/libraries/main.php:1777
6193
  msgid "Calendar/Monthly View"
6194
  msgstr ""
6195
 
6196
- #: app/libraries/main.php:338 app/libraries/main.php:1755
6197
- #: app/libraries/main.php:1780
6198
  msgid "Timetable View"
6199
  msgstr ""
6200
 
6201
- #: app/libraries/main.php:339 app/libraries/main.php:1756
6202
- #: app/libraries/main.php:1781
6203
  msgid "Masonry View"
6204
  msgstr ""
6205
 
6206
- #: app/libraries/main.php:340 app/libraries/main.php:1760
6207
- #: app/libraries/main.php:1785
6208
  msgid "Map View"
6209
  msgstr ""
6210
 
@@ -6236,31 +6328,31 @@ msgstr ""
6236
  msgid "Tile View"
6237
  msgstr ""
6238
 
6239
- #: app/libraries/main.php:385 app/libraries/main.php:5295
6240
  msgid "SU"
6241
  msgstr ""
6242
 
6243
- #: app/libraries/main.php:386 app/libraries/main.php:5296
6244
  msgid "MO"
6245
  msgstr ""
6246
 
6247
- #: app/libraries/main.php:387 app/libraries/main.php:5297
6248
  msgid "TU"
6249
  msgstr ""
6250
 
6251
- #: app/libraries/main.php:388 app/libraries/main.php:5298
6252
  msgid "WE"
6253
  msgstr ""
6254
 
6255
- #: app/libraries/main.php:389 app/libraries/main.php:5299
6256
  msgid "TH"
6257
  msgstr ""
6258
 
6259
- #: app/libraries/main.php:390 app/libraries/main.php:5300
6260
  msgid "FR"
6261
  msgstr ""
6262
 
6263
- #: app/libraries/main.php:391 app/libraries/main.php:5301
6264
  msgid "SA"
6265
  msgstr ""
6266
 
@@ -6327,351 +6419,351 @@ msgstr ""
6327
  msgid "Event at this location"
6328
  msgstr ""
6329
 
6330
- #: app/libraries/main.php:1528
6331
  msgid "Facebook"
6332
  msgstr ""
6333
 
6334
- #: app/libraries/main.php:1529
6335
  msgid "Twitter"
6336
  msgstr ""
6337
 
6338
- #: app/libraries/main.php:1530 app/libraries/main.php:1587
6339
  msgid "Linkedin"
6340
  msgstr ""
6341
 
6342
- #: app/libraries/main.php:1531 app/libraries/main.php:1623
6343
  msgid "VK"
6344
  msgstr ""
6345
 
6346
- #: app/libraries/main.php:1532
6347
  msgid "Tumblr"
6348
  msgstr ""
6349
 
6350
- #: app/libraries/main.php:1533
6351
  msgid "Pinterest"
6352
  msgstr ""
6353
 
6354
- #: app/libraries/main.php:1534
6355
  msgid "Flipboard"
6356
  msgstr ""
6357
 
6358
- #: app/libraries/main.php:1535
6359
  msgid "GetPocket"
6360
  msgstr ""
6361
 
6362
- #: app/libraries/main.php:1536
6363
  msgid "Reddit"
6364
  msgstr ""
6365
 
6366
- #: app/libraries/main.php:1537
6367
  msgid "WhatsApp"
6368
  msgstr ""
6369
 
6370
- #: app/libraries/main.php:1538
6371
  msgid "Telegram"
6372
  msgstr ""
6373
 
6374
- #: app/libraries/main.php:1557
6375
  msgid "Share on Facebook"
6376
  msgstr ""
6377
 
6378
- #: app/libraries/main.php:1572
6379
  msgid "Tweet"
6380
  msgstr ""
6381
 
6382
- #: app/libraries/main.php:1638
6383
  msgid "Share on Tumblr"
6384
  msgstr ""
6385
 
6386
- #: app/libraries/main.php:1654
6387
  msgid "Share on Pinterest"
6388
  msgstr ""
6389
 
6390
- #: app/libraries/main.php:1670
6391
  msgid "Share on Flipboard"
6392
  msgstr ""
6393
 
6394
- #: app/libraries/main.php:1688
6395
  msgid "Share on GetPocket"
6396
  msgstr ""
6397
 
6398
- #: app/libraries/main.php:1704
6399
  msgid "Share on Reddit"
6400
  msgstr ""
6401
 
6402
- #: app/libraries/main.php:1720
6403
  msgid "Share on Telegram"
6404
  msgstr ""
6405
 
6406
- #: app/libraries/main.php:1738
6407
  msgid "Share on WhatsApp"
6408
  msgstr ""
6409
 
6410
- #: app/libraries/main.php:1761
6411
  msgid "Custom Shortcode"
6412
  msgstr ""
6413
 
6414
- #: app/libraries/main.php:2122
6415
  msgid "Your booking already verified!"
6416
  msgstr ""
6417
 
6418
- #: app/libraries/main.php:2127
6419
  msgid "Your booking successfully verified."
6420
  msgstr ""
6421
 
6422
- #: app/libraries/main.php:2128
6423
  msgid "Your booking cannot verify!"
6424
  msgstr ""
6425
 
6426
- #: app/libraries/main.php:2147
6427
  msgid "Your booking successfully canceled."
6428
  msgstr ""
6429
 
6430
- #: app/libraries/main.php:2148
6431
  msgid "Your booking cannot be canceled."
6432
  msgstr ""
6433
 
6434
- #: app/libraries/main.php:2152
6435
  msgid "You canceled the payment successfully."
6436
  msgstr ""
6437
 
6438
- #: app/libraries/main.php:2156
6439
  msgid "You returned from payment gateway successfully."
6440
  msgstr ""
6441
 
6442
- #: app/libraries/main.php:2172
6443
  msgid "Cannot find the invoice!"
6444
  msgstr ""
6445
 
6446
- #: app/libraries/main.php:2172
6447
  msgid "Invoice is invalid."
6448
  msgstr ""
6449
 
6450
- #: app/libraries/main.php:2192
6451
  msgid ""
6452
  "Your booking still is not confirmed. You able download it after confirmation!"
6453
  msgstr ""
6454
 
6455
- #: app/libraries/main.php:2192
6456
  msgid "Booking Not Confirmed."
6457
  msgstr ""
6458
 
6459
- #: app/libraries/main.php:2198
6460
  msgid "Cannot find the booking!"
6461
  msgstr ""
6462
 
6463
- #: app/libraries/main.php:2198
6464
  msgid "Booking is invalid."
6465
  msgstr ""
6466
 
6467
- #: app/libraries/main.php:2227
6468
  #, php-format
6469
  msgid "%s Invoice"
6470
  msgstr ""
6471
 
6472
- #: app/libraries/main.php:2301
6473
  msgid "Billing"
6474
  msgstr ""
6475
 
6476
- #: app/libraries/main.php:2312
6477
  msgid "Total"
6478
  msgstr ""
6479
 
6480
- #: app/libraries/main.php:2319
6481
  msgid "Payment"
6482
  msgstr ""
6483
 
6484
- #: app/libraries/main.php:2323
6485
  msgid "Gateway"
6486
  msgstr ""
6487
 
6488
- #: app/libraries/main.php:2331
6489
  msgid "Payment Time"
6490
  msgstr ""
6491
 
6492
- #: app/libraries/main.php:2392
6493
  msgid "Request is not valid."
6494
  msgstr ""
6495
 
6496
- #: app/libraries/main.php:2392
6497
  msgid "iCal export stopped!"
6498
  msgstr ""
6499
 
6500
- #: app/libraries/main.php:2736 app/libraries/main.php:2766
6501
- #: app/libraries/main.php:2795 app/libraries/main.php:2825
6502
- #: app/libraries/main.php:2854 app/libraries/main.php:2883
6503
- #: app/libraries/main.php:2912 app/libraries/main.php:2941
6504
- #: app/libraries/main.php:2970 app/libraries/main.php:2994
6505
- #: app/libraries/main.php:3038 app/libraries/main.php:3082
6506
- #: app/libraries/main.php:3129 app/libraries/main.php:3176
6507
  msgid "Sort"
6508
  msgstr ""
6509
 
6510
- #: app/libraries/main.php:2742 app/libraries/main.php:2772
6511
- #: app/libraries/main.php:2801 app/libraries/main.php:2831
6512
- #: app/libraries/main.php:2860 app/libraries/main.php:2889
6513
- #: app/libraries/main.php:2918 app/libraries/main.php:2947
6514
- #: app/libraries/main.php:3000 app/libraries/main.php:3044
6515
- #: app/libraries/main.php:3088 app/libraries/main.php:3135
6516
  msgid "Required Field"
6517
  msgstr ""
6518
 
6519
- #: app/libraries/main.php:2748 app/libraries/main.php:2778
6520
- #: app/libraries/main.php:2807 app/libraries/main.php:2837
6521
- #: app/libraries/main.php:2866 app/libraries/main.php:2895
6522
- #: app/libraries/main.php:2924 app/libraries/main.php:2953
6523
- #: app/libraries/main.php:3006 app/libraries/main.php:3050
6524
- #: app/libraries/main.php:3094 app/libraries/main.php:3141
6525
  msgid "Insert a label for this field"
6526
  msgstr ""
6527
 
6528
- #: app/libraries/main.php:2976
6529
  msgid "HTML and shortcode are allowed."
6530
  msgstr ""
6531
 
6532
- #: app/libraries/main.php:3019 app/libraries/main.php:3063
6533
- #: app/libraries/main.php:3107
6534
  msgid "Option"
6535
  msgstr ""
6536
 
6537
- #: app/libraries/main.php:3141
6538
  #, php-format
6539
  msgid "Instead of %s, the page title with a link will be show."
6540
  msgstr ""
6541
 
6542
- #: app/libraries/main.php:3143
6543
  msgid "Agreement Page"
6544
  msgstr ""
6545
 
6546
- #: app/libraries/main.php:3154
6547
  msgid "Checked by default"
6548
  msgstr ""
6549
 
6550
- #: app/libraries/main.php:3155
6551
  msgid "Unchecked by default"
6552
  msgstr ""
6553
 
6554
- #: app/libraries/main.php:3178
6555
  msgid "Insert a label for this option"
6556
  msgstr ""
6557
 
6558
- #: app/libraries/main.php:3193
6559
  msgid "Free"
6560
  msgstr ""
6561
 
6562
- #: app/libraries/main.php:3799 app/libraries/main.php:5545
6563
  msgid "M.E. Calender"
6564
  msgstr ""
6565
 
6566
- #: app/libraries/main.php:3954
6567
  #, php-format
6568
  msgid "Copy of %s"
6569
  msgstr ""
6570
 
6571
- #: app/libraries/main.php:4672
6572
  msgid "Booked an event."
6573
  msgstr ""
6574
 
6575
- #: app/libraries/main.php:4713
6576
  #, php-format
6577
  msgid "%s booked %s event."
6578
  msgstr ""
6579
 
6580
- #: app/libraries/main.php:5278
6581
  msgid "Taxonomies"
6582
  msgstr ""
6583
 
6584
- #: app/libraries/main.php:5280
6585
  msgid "Category Plural Label"
6586
  msgstr ""
6587
 
6588
- #: app/libraries/main.php:5281
6589
  msgid "Category Singular Label"
6590
  msgstr ""
6591
 
6592
- #: app/libraries/main.php:5282
6593
  msgid "Label Plural Label"
6594
  msgstr ""
6595
 
6596
- #: app/libraries/main.php:5283
6597
  msgid "Label Singular Label"
6598
  msgstr ""
6599
 
6600
- #: app/libraries/main.php:5284
6601
  msgid "Location Plural Label"
6602
  msgstr ""
6603
 
6604
- #: app/libraries/main.php:5285
6605
  msgid "Location Singular Label"
6606
  msgstr ""
6607
 
6608
- #: app/libraries/main.php:5286
6609
  msgid "Organizer Plural Label"
6610
  msgstr ""
6611
 
6612
- #: app/libraries/main.php:5287
6613
  msgid "Organizer Singular Label"
6614
  msgstr ""
6615
 
6616
- #: app/libraries/main.php:5288
6617
  msgid "Speaker Plural Label"
6618
  msgstr ""
6619
 
6620
- #: app/libraries/main.php:5289
6621
  msgid "Speaker Singular Label"
6622
  msgstr ""
6623
 
6624
- #: app/libraries/main.php:5295
6625
  msgid "Sunday abbreviation"
6626
  msgstr ""
6627
 
6628
- #: app/libraries/main.php:5296
6629
  msgid "Monday abbreviation"
6630
  msgstr ""
6631
 
6632
- #: app/libraries/main.php:5297
6633
  msgid "Tuesday abbreviation"
6634
  msgstr ""
6635
 
6636
- #: app/libraries/main.php:5298
6637
  msgid "Wednesday abbreviation"
6638
  msgstr ""
6639
 
6640
- #: app/libraries/main.php:5299
6641
  msgid "Thursday abbreviation"
6642
  msgstr ""
6643
 
6644
- #: app/libraries/main.php:5300
6645
  msgid "Friday abbreviation"
6646
  msgstr ""
6647
 
6648
- #: app/libraries/main.php:5301
6649
  msgid "Saturday abbreviation"
6650
  msgstr ""
6651
 
6652
- #: app/libraries/main.php:5305
6653
  msgid "Others"
6654
  msgstr ""
6655
 
6656
- #: app/libraries/main.php:5307
6657
  msgid "Booking Success Message"
6658
  msgstr ""
6659
 
6660
- #: app/libraries/main.php:5307
6661
  msgid ""
6662
  "Thanks for your booking. Your tickets booked, booking verification might be "
6663
  "needed, please check your email."
6664
  msgstr ""
6665
 
6666
- #: app/libraries/main.php:5308 app/widgets/single.php:131
6667
  msgid "Register Button"
6668
  msgstr ""
6669
 
6670
- #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
6671
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6672
- #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6673
- #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6674
- #: app/skins/list/render.php:108 app/skins/list/render.php:194
6675
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
6676
  #: app/skins/single.php:777 app/skins/single/default.php:255
6677
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
@@ -6684,95 +6776,95 @@ msgstr ""
6684
  msgid "REGISTER"
6685
  msgstr ""
6686
 
6687
- #: app/libraries/main.php:5309
6688
  msgid "View Detail Button"
6689
  msgstr ""
6690
 
6691
- #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
6692
- #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6693
- #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6694
- #: app/skins/grid/render.php:242 app/skins/list/render.php:108
6695
- #: app/skins/list/render.php:194 app/skins/masonry/render.php:188
6696
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
6697
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
6698
  #: app/skins/slider/render.php:320
6699
  msgid "View Detail"
6700
  msgstr ""
6701
 
6702
- #: app/libraries/main.php:5310
6703
  msgid "Event Detail Button"
6704
  msgstr ""
6705
 
6706
- #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
6707
  msgid "Event Detail"
6708
  msgstr ""
6709
 
6710
- #: app/libraries/main.php:5312
6711
  msgid "More Info Link"
6712
  msgstr ""
6713
 
6714
- #: app/libraries/main.php:5315
6715
  msgid "Ticket (Singular)"
6716
  msgstr ""
6717
 
6718
- #: app/libraries/main.php:5316
6719
  msgid "Tickets (Plural)"
6720
  msgstr ""
6721
 
6722
- #: app/libraries/main.php:5402
6723
  msgid "EventON"
6724
  msgstr ""
6725
 
6726
- #: app/libraries/main.php:5403
6727
  msgid "The Events Calendar"
6728
  msgstr ""
6729
 
6730
- #: app/libraries/main.php:5404
6731
  msgid "Events Schedule WP Plugin"
6732
  msgstr ""
6733
 
6734
- #: app/libraries/main.php:5405
6735
  msgid "Calendarize It"
6736
  msgstr ""
6737
 
6738
- #: app/libraries/main.php:5406
6739
  msgid "Event Espresso"
6740
  msgstr ""
6741
 
6742
- #: app/libraries/main.php:5407
6743
  msgid "Events Manager (Recurring)"
6744
  msgstr ""
6745
 
6746
- #: app/libraries/main.php:5408
6747
  msgid "Events Manager (Single)"
6748
  msgstr ""
6749
 
6750
- #: app/libraries/main.php:5482 app/libraries/main.php:5502
6751
  msgid "Confirmed"
6752
  msgstr ""
6753
 
6754
- #: app/libraries/main.php:5483 app/libraries/main.php:5510
6755
  msgid "Rejected"
6756
  msgstr ""
6757
 
6758
- #: app/libraries/main.php:5484 app/libraries/main.php:5506
6759
  msgid "Pending"
6760
  msgstr ""
6761
 
6762
- #: app/libraries/main.php:5532
6763
  msgid "Waiting"
6764
  msgstr ""
6765
 
6766
- #: app/libraries/main.php:5737 app/libraries/render.php:80
6767
  #: app/libraries/render.php:418
6768
  msgid "Skin controller does not exist."
6769
  msgstr ""
6770
 
6771
- #: app/libraries/main.php:5851
6772
  msgid "Sold Out"
6773
  msgstr ""
6774
 
6775
- #: app/libraries/main.php:5859
6776
  msgid "Last Few Tickets"
6777
  msgstr ""
6778
 
@@ -6784,44 +6876,44 @@ msgstr ""
6784
  msgid "Your booking is received."
6785
  msgstr ""
6786
 
6787
- #: app/libraries/notifications.php:271
6788
  msgid "Your booking is confirmed."
6789
  msgstr ""
6790
 
6791
- #: app/libraries/notifications.php:435
6792
  msgid "booking canceled."
6793
  msgstr ""
6794
 
6795
- #: app/libraries/notifications.php:510
6796
  msgid "A new booking is received."
6797
  msgstr ""
6798
 
6799
- #: app/libraries/notifications.php:734
6800
  msgid "A new event is added."
6801
  msgstr ""
6802
 
6803
- #: app/libraries/notifications.php:803
6804
  msgid "Your event is published."
6805
  msgstr ""
6806
 
6807
- #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
6808
- #: app/libraries/notifications.php:1052
6809
  msgid "to"
6810
  msgstr ""
6811
 
6812
- #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
6813
  msgid "+ Add to Google Calendar"
6814
  msgstr ""
6815
 
6816
- #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
6817
  msgid "+ iCal export"
6818
  msgstr ""
6819
 
6820
- #: app/libraries/notifications.php:1131
6821
  msgid "Yes"
6822
  msgstr ""
6823
 
6824
- #: app/libraries/notifications.php:1131
6825
  msgid "No"
6826
  msgstr ""
6827
 
@@ -6870,12 +6962,6 @@ msgstr ""
6870
  msgid "Fill other attendees information like the first form."
6871
  msgstr ""
6872
 
6873
- #: app/modules/booking/steps/form.php:179
6874
- #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6875
- #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6876
- msgid "Next"
6877
- msgstr ""
6878
-
6879
  #: app/modules/booking/steps/message.php:7
6880
  msgid "Thanks for your booking."
6881
  msgstr ""
@@ -7013,13 +7099,13 @@ msgstr ""
7013
  msgid "Load More"
7014
  msgstr ""
7015
 
7016
- #: app/skins/available_spot/tpl.php:160
7017
  msgid "Available Spot(s):"
7018
  msgstr ""
7019
 
7020
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7021
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7022
- #: app/skins/list/render.php:128
7023
  msgid "EVENT DETAIL"
7024
  msgstr ""
7025
 
@@ -7114,19 +7200,19 @@ msgstr ""
7114
  msgid "Show events based on created shortcodes."
7115
  msgstr ""
7116
 
7117
- #: app/widgets/MEC.php:81
7118
  msgid "Title:"
7119
  msgstr ""
7120
 
7121
- #: app/widgets/MEC.php:88
7122
  msgid "Shortcode:"
7123
  msgstr ""
7124
 
7125
- #: app/widgets/MEC.php:98
7126
  msgid "Enable No Event Block Display: "
7127
  msgstr ""
7128
 
7129
- #: app/widgets/MEC.php:102
7130
  msgid "Create some calendars first."
7131
  msgstr ""
7132
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2020-02-05 11:24+0330\n"
5
+ "PO-Revision-Date: 2020-02-05 11:28+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
25
  msgid "Content"
26
  msgstr ""
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:439
29
+ #: app/features/mec.php:470 app/features/mec.php:500
30
  msgid "Shortcode"
31
  msgstr ""
32
 
56
  msgstr ""
57
 
58
  #: app/features/colors.php:50 app/features/fes/form.php:807
59
+ #: app/features/mec/settings.php:688
60
  msgid "Event Color"
61
  msgstr ""
62
 
63
+ #: app/features/contextual.php:55 app/features/mec.php:415
64
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
65
+ #: app/features/mec/support.php:20 app/features/popup/shortcode.php:37
66
+ #: app/libraries/main.php:594
67
  msgid "Settings"
68
  msgstr ""
69
 
163
  msgid "General Options"
164
  msgstr ""
165
 
166
+ #: app/features/contextual.php:139 app/features/mec/settings.php:437
167
  #: app/libraries/main.php:533
168
  msgid "Slugs/Permalinks"
169
  msgstr ""
172
  msgid "Event Details/Single Event Page"
173
  msgstr ""
174
 
175
+ #: app/features/contextual.php:166 app/features/mec/settings.php:469
176
  #: app/libraries/main.php:534
177
  msgid "Currency Options"
178
  msgstr ""
182
  msgid "Google Maps Options"
183
  msgstr ""
184
 
185
+ #: app/features/contextual.php:244 app/features/mec/settings.php:526
186
  #: app/libraries/main.php:535
187
  msgid "Google Recaptcha Options"
188
  msgstr ""
201
  msgid "Next Event Module"
202
  msgstr ""
203
 
204
+ #: app/features/contextual.php:286 app/features/mec/settings.php:562
205
  #: app/libraries/main.php:536
206
  msgid "Frontend Event Submission"
207
  msgstr ""
228
  msgid "BuddyPress Integration"
229
  msgstr ""
230
 
231
+ #: app/features/contextual.php:334 app/features/mec/settings.php:855
232
  #: app/libraries/main.php:539
233
  msgid "Mailchimp Integration"
234
  msgstr ""
245
  msgstr ""
246
 
247
  #: app/features/events.php:158 app/features/fes.php:223
248
+ #: app/features/mec/meta_boxes/display_options.php:1047
249
+ #: app/features/mec/meta_boxes/display_options.php:1103
250
+ #: app/features/mec/meta_boxes/display_options.php:1138
251
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
252
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
253
  #: app/skins/yearly_view/tpl.php:69
254
  msgid "Event"
255
  msgstr ""
256
 
257
+ #: app/features/events.php:159 app/features/mec.php:401
258
  msgid "Add Event"
259
  msgstr ""
260
 
284
  msgstr ""
285
 
286
  #: app/features/events.php:182 app/features/events.php:3320
287
+ #: app/features/mec/meta_boxes/display_options.php:958
288
  #: app/features/mec/meta_boxes/search_form.php:31
289
  #: app/features/mec/meta_boxes/search_form.php:93
290
  #: app/features/mec/meta_boxes/search_form.php:155
296
  #: app/features/mec/meta_boxes/search_form.php:514
297
  #: app/features/mec/meta_boxes/search_form.php:575
298
  #: app/features/mec/meta_boxes/search_form.php:672
299
+ #: app/features/mec/settings.php:808 app/features/mec/single.php:204
300
+ #: app/features/search.php:68 app/libraries/main.php:5282
301
  #: app/libraries/skins.php:858 app/skins/single.php:566
302
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
303
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
306
  msgstr ""
307
 
308
  #: app/features/events.php:183 app/features/events.php:3275
309
+ #: app/features/fes/form.php:757 app/features/mec.php:403
310
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5281
311
  msgid "Categories"
312
  msgstr ""
313
 
392
  msgstr ""
393
 
394
  #: app/features/events.php:333 app/features/events.php:1286
395
+ #: app/features/mec/settings.php:718 app/skins/single.php:947
396
  msgid "Hourly Schedule"
397
  msgstr ""
398
 
407
  #: app/features/events.php:336 app/features/events.php:3322
408
  #: app/features/events.php:3513 app/features/events.php:3555
409
  #: app/features/ix.php:3510 app/features/ix.php:3551
410
+ #: app/features/mec/meta_boxes/display_options.php:961
411
  #: app/features/mec/meta_boxes/search_form.php:45
412
  #: app/features/mec/meta_boxes/search_form.php:107
413
  #: app/features/mec/meta_boxes/search_form.php:169
419
  #: app/features/mec/meta_boxes/search_form.php:528
420
  #: app/features/mec/meta_boxes/search_form.php:589
421
  #: app/features/mec/meta_boxes/search_form.php:686
422
+ #: app/features/mec/settings.php:820 app/features/mec/single.php:208
423
  #: app/features/organizers.php:58 app/features/organizers.php:204
424
  #: app/features/organizers.php:260 app/features/organizers.php:262
425
+ #: app/features/organizers.php:271 app/features/search.php:78
426
+ #: app/libraries/main.php:5288 app/libraries/skins.php:910
427
  #: app/skins/single.php:812 app/skins/single/default.php:217
428
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
429
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
431
  msgstr ""
432
 
433
  #: app/features/events.php:337 app/features/events.php:1172
434
+ #: app/features/fes/form.php:730 app/libraries/main.php:5315
435
  #: app/skins/single.php:589 app/skins/single/default.php:126
436
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
437
  #: app/skins/single/modern.php:208
450
  #: app/features/events.php:3802 app/features/fes.php:223
451
  #: app/features/fes/form.php:689 app/features/labels.php:178
452
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
453
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1120
454
  #: app/modules/booking/steps/form.php:37
455
  msgid "Name"
456
  msgstr ""
461
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
462
  #: app/features/organizers.php:111 app/features/organizers.php:152
463
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
464
+ #: app/features/speakers.php:196 app/libraries/main.php:1540
465
+ #: app/libraries/main.php:1609 app/libraries/main.php:2827
466
+ #: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
467
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
468
  #: app/skins/single.php:884 app/skins/single/default.php:234
469
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
481
  #: app/features/fes/form.php:251 app/features/ix.php:3510
482
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
483
  #: app/features/mec/dashboard.php:401
484
+ #: app/features/mec/meta_boxes/display_options.php:49
485
+ #: app/features/mec/meta_boxes/display_options.php:229
486
+ #: app/features/mec/meta_boxes/display_options.php:407
487
+ #: app/features/mec/meta_boxes/display_options.php:475
488
+ #: app/features/mec/meta_boxes/display_options.php:598
489
+ #: app/features/mec/meta_boxes/display_options.php:652
490
+ #: app/features/mec/meta_boxes/display_options.php:699
491
+ #: app/features/mec/meta_boxes/display_options.php:732
492
+ #: app/features/mec/meta_boxes/display_options.php:767
493
+ #: app/features/mec/meta_boxes/display_options.php:814
494
+ #: app/features/mec/meta_boxes/display_options.php:913
495
+ #: app/features/mec/meta_boxes/display_options.php:1161
496
+ #: app/features/mec/meta_boxes/display_options.php:1249
497
+ #: app/features/mec/meta_boxes/display_options.php:1341
498
+ #: app/features/mec/meta_boxes/display_options.php:1408
499
  msgid "Start Date"
500
  msgstr ""
501
 
560
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
561
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
562
  #: app/features/mec/dashboard.php:71
563
+ #: app/features/mec/meta_boxes/display_options.php:80
564
+ #: app/features/mec/meta_boxes/display_options.php:93
565
+ #: app/features/mec/meta_boxes/display_options.php:106
566
+ #: app/features/mec/meta_boxes/display_options.php:117
567
+ #: app/features/mec/meta_boxes/display_options.php:129
568
+ #: app/features/mec/meta_boxes/display_options.php:260
569
+ #: app/features/mec/meta_boxes/display_options.php:272
570
+ #: app/features/mec/meta_boxes/display_options.php:284
571
+ #: app/features/mec/meta_boxes/display_options.php:297
572
+ #: app/features/mec/meta_boxes/display_options.php:308
573
+ #: app/features/mec/meta_boxes/display_options.php:321
574
+ #: app/features/mec/meta_boxes/display_options.php:332
575
+ #: app/features/mec/meta_boxes/display_options.php:439
576
+ #: app/features/mec/meta_boxes/display_options.php:615
577
+ #: app/features/mec/meta_boxes/display_options.php:945
578
+ #: app/features/mec/meta_boxes/display_options.php:1018
579
+ #: app/features/mec/meta_boxes/display_options.php:1030
580
+ #: app/features/mec/meta_boxes/display_options.php:1041
581
+ #: app/features/mec/meta_boxes/display_options.php:1073
582
+ #: app/features/mec/meta_boxes/display_options.php:1084
583
+ #: app/features/mec/meta_boxes/display_options.php:1097
584
+ #: app/features/mec/meta_boxes/display_options.php:1132
585
+ #: app/features/mec/meta_boxes/display_options.php:1181
586
+ #: app/features/mec/meta_boxes/display_options.php:1192
587
+ #: app/features/mec/meta_boxes/display_options.php:1203
588
+ #: app/features/mec/meta_boxes/display_options.php:1269
589
+ #: app/features/mec/meta_boxes/display_options.php:1282
590
+ #: app/features/mec/meta_boxes/display_options.php:1295
591
+ #: app/features/mec/meta_boxes/display_options.php:1308
592
+ #: app/features/mec/meta_boxes/display_options.php:1321
593
+ #: app/features/mec/meta_boxes/display_options.php:1372
594
+ #: app/features/mec/meta_boxes/display_options.php:1425
595
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
596
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
597
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
605
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
606
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
607
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
608
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:241
609
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
610
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:426
611
+ #: app/features/mec/settings.php:445 app/features/mec/settings.php:459
612
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:574
613
+ #: app/features/mec/settings.php:747 app/features/mec/settings.php:763
614
+ #: app/features/mec/settings.php:870 app/features/mec/settings.php:883
615
+ #: app/features/mec/settings.php:899 app/features/mec/single.php:42
616
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
617
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
618
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
782
  #: app/features/events.php:1168 app/features/events.php:3513
783
  #: app/features/events.php:3555 app/features/fes/form.php:727
784
  #: app/features/ix.php:3510 app/features/ix.php:3551
785
+ #: app/features/mec/settings.php:664 app/libraries/main.php:5314
786
  #: app/widgets/single.php:103
787
  msgid "Event Cost"
788
  msgstr ""
797
 
798
  #: app/features/events.php:1204 app/features/events.php:2541
799
  #: app/features/fes.php:223 app/features/mec/booking.php:491
800
+ #: app/features/profile/profile.php:53 app/libraries/main.php:2243
801
+ #: app/libraries/main.php:2885 app/modules/booking/steps/tickets.php:22
802
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
803
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
804
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
850
  #: app/features/events.php:2357 app/features/events.php:2399
851
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
852
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
853
+ #: app/libraries/main.php:2746 app/libraries/main.php:2776
854
+ #: app/libraries/main.php:2805 app/libraries/main.php:2835
855
+ #: app/libraries/main.php:2864 app/libraries/main.php:2893
856
+ #: app/libraries/main.php:2922 app/libraries/main.php:2951
857
+ #: app/libraries/main.php:2973 app/libraries/main.php:3004
858
+ #: app/libraries/main.php:3048 app/libraries/main.php:3092
859
+ #: app/libraries/main.php:3139 app/libraries/main.php:3178
860
  msgid "Remove"
861
  msgstr ""
862
 
882
 
883
  #: app/features/events.php:1351 app/features/events.php:1384
884
  #: app/features/events.php:1445 app/features/fes/form.php:851
885
+ #: app/features/mec.php:411 app/features/mec/modules.php:52
886
+ #: app/features/mec/settings.php:712 app/features/speakers.php:62
887
+ #: app/libraries/main.php:565 app/libraries/main.php:5289
888
  #: app/modules/speakers/details.php:18
889
  msgid "Speakers"
890
  msgstr ""
894
  msgstr ""
895
 
896
  #: app/features/events.php:1476 app/features/fes/form.php:704
897
+ #: app/features/mec/settings.php:658
898
  msgid "Event Links"
899
  msgstr ""
900
 
901
  #: app/features/events.php:1479 app/features/events.php:1485
902
+ #: app/features/fes/form.php:706 app/libraries/main.php:5312
903
  msgid "Event Link"
904
  msgstr ""
905
 
920
  msgstr ""
921
 
922
  #: app/features/events.php:1495 app/features/events.php:1508
923
+ #: app/features/fes/form.php:711 app/libraries/main.php:5313
924
  #: app/skins/single.php:673 app/skins/single/default.php:140
925
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
926
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
953
  #: app/features/events.php:1596 app/features/events.php:1849
954
  #: app/features/events.php:2064 app/modules/booking/default.php:85
955
  #: app/modules/booking/steps/tickets.php:40
956
+ #: app/skins/available_spot/tpl.php:158
957
  msgid "Unlimited"
958
  msgstr ""
959
 
985
  msgstr ""
986
 
987
  #: app/features/events.php:1653 app/libraries/book.php:60
988
+ #: app/libraries/main.php:5317 app/modules/booking/steps/tickets.php:40
989
  msgid "Tickets"
990
  msgstr ""
991
 
1079
 
1080
  #: app/features/events.php:1909 app/features/events.php:1935
1081
  #: app/features/events.php:2113 app/features/labels.php:60
1082
+ #: app/features/mec/meta_boxes/display_options.php:959
1083
  #: app/features/mec/meta_boxes/search_form.php:66
1084
  #: app/features/mec/meta_boxes/search_form.php:128
1085
  #: app/features/mec/meta_boxes/search_form.php:190
1091
  #: app/features/mec/meta_boxes/search_form.php:549
1092
  #: app/features/mec/meta_boxes/search_form.php:610
1093
  #: app/features/mec/meta_boxes/search_form.php:707
1094
+ #: app/features/mec/settings.php:840 app/features/mec/single.php:222
1095
  #: app/libraries/skins.php:988
1096
  msgid "Label"
1097
  msgstr ""
1134
  msgid "Amount (Per Booking)"
1135
  msgstr ""
1136
 
1137
+ #: app/features/events.php:2283 app/features/mec/settings.php:736
1138
  msgid "Ticket Variations / Options"
1139
  msgstr ""
1140
 
1156
  msgstr ""
1157
 
1158
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1159
+ #: app/libraries/main.php:2768
1160
  msgid "MEC Name"
1161
  msgstr ""
1162
 
1163
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1164
+ #: app/libraries/main.php:2797
1165
  msgid "MEC Email"
1166
  msgstr ""
1167
 
1168
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1169
+ #: app/libraries/main.php:2738
1170
  msgid "Text"
1171
  msgstr ""
1172
 
1173
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1174
  #: app/features/organizers.php:103 app/features/organizers.php:148
1175
  #: app/features/speakers.php:119 app/features/speakers.php:192
1176
+ #: app/features/speakers.php:271 app/libraries/main.php:2914
1177
  msgid "Tel"
1178
  msgstr ""
1179
 
1180
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1181
+ #: app/libraries/main.php:2856
1182
  msgid "File"
1183
  msgstr ""
1184
 
1185
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1186
+ #: app/libraries/main.php:2943
1187
  msgid "Textarea"
1188
  msgstr ""
1189
 
1190
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1191
+ #: app/libraries/main.php:2996
1192
  msgid "Checkboxes"
1193
  msgstr ""
1194
 
1195
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1196
+ #: app/libraries/main.php:3040
1197
  msgid "Radio Buttons"
1198
  msgstr ""
1199
 
1273
  #: app/features/mec/meta_boxes/search_form.php:696
1274
  #: app/features/mec/meta_boxes/search_form.php:703
1275
  #: app/features/mec/meta_boxes/search_form.php:710
1276
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3084
1277
  msgid "Dropdown"
1278
  msgstr ""
1279
 
1280
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1281
+ #: app/libraries/main.php:3131
1282
  msgid "Agreement"
1283
  msgstr ""
1284
 
1285
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1286
+ #: app/libraries/main.php:2972
1287
  msgid "Paragraph"
1288
  msgstr ""
1289
 
1314
  #: app/features/ix.php:3551 app/features/locations.php:58
1315
  #: app/features/locations.php:230 app/features/locations.php:287
1316
  #: app/features/locations.php:289 app/features/locations.php:298
1317
+ #: app/features/mec/meta_boxes/display_options.php:960
1318
  #: app/features/mec/meta_boxes/search_form.php:38
1319
  #: app/features/mec/meta_boxes/search_form.php:100
1320
  #: app/features/mec/meta_boxes/search_form.php:162
1326
  #: app/features/mec/meta_boxes/search_form.php:521
1327
  #: app/features/mec/meta_boxes/search_form.php:582
1328
  #: app/features/mec/meta_boxes/search_form.php:679
1329
+ #: app/features/mec/settings.php:814 app/features/mec/single.php:212
1330
+ #: app/features/search.php:73 app/libraries/main.php:2237
1331
+ #: app/libraries/main.php:5286 app/libraries/skins.php:884
1332
  #: app/skins/single.php:493 app/skins/single.php:924
1333
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1334
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1392
  msgstr ""
1393
 
1394
  #: app/features/events.php:3808 app/features/fes.php:223
1395
+ #: app/features/profile/profile.php:186 app/libraries/main.php:2272
1396
+ #: app/libraries/main.php:5316
1397
  msgid "Ticket"
1398
  msgstr ""
1399
 
1439
  msgid "The event removed!"
1440
  msgstr ""
1441
 
1442
+ #: app/features/fes.php:223 app/libraries/main.php:2249
1443
  msgid "Transaction ID"
1444
  msgstr ""
1445
 
1484
  msgstr ""
1485
 
1486
  #: app/features/fes/form.php:366
1487
+ #: app/features/mec/meta_boxes/display_options.php:844
1488
  #: app/libraries/main.php:410
1489
  msgid "Monday"
1490
  msgstr ""
1491
 
1492
  #: app/features/fes/form.php:367
1493
+ #: app/features/mec/meta_boxes/display_options.php:845
1494
  #: app/libraries/main.php:410
1495
  msgid "Tuesday"
1496
  msgstr ""
1497
 
1498
  #: app/features/fes/form.php:368
1499
+ #: app/features/mec/meta_boxes/display_options.php:846
1500
  #: app/libraries/main.php:410
1501
  msgid "Wednesday"
1502
  msgstr ""
1503
 
1504
  #: app/features/fes/form.php:369
1505
+ #: app/features/mec/meta_boxes/display_options.php:847
1506
  #: app/libraries/main.php:410
1507
  msgid "Thursday"
1508
  msgstr ""
1509
 
1510
  #: app/features/fes/form.php:370
1511
+ #: app/features/mec/meta_boxes/display_options.php:848
1512
  #: app/libraries/main.php:410
1513
  msgid "Friday"
1514
  msgstr ""
1515
 
1516
  #: app/features/fes/form.php:371
1517
+ #: app/features/mec/meta_boxes/display_options.php:849
1518
  #: app/libraries/main.php:410
1519
  msgid "Saturday"
1520
  msgstr ""
1521
 
1522
  #: app/features/fes/form.php:372
1523
+ #: app/features/mec/meta_boxes/display_options.php:843
1524
  #: app/libraries/main.php:410
1525
  msgid "Sunday"
1526
  msgstr ""
1551
  "Insert full link including http(s)://"
1552
  msgstr ""
1553
 
1554
+ #: app/features/fes/form.php:744 app/features/mec/settings.php:670
1555
  msgid "Featured Image"
1556
  msgstr ""
1557
 
1560
  msgstr ""
1561
 
1562
  #: app/features/fes/form.php:783 app/features/labels.php:61
1563
+ #: app/features/labels.php:221 app/features/mec.php:404
1564
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5283
1565
  #: app/skins/single.php:702 app/skins/single/default.php:155
1566
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1567
  #: app/skins/single/modern.php:223
1568
  msgid "Labels"
1569
  msgstr ""
1570
 
1571
+ #: app/features/fes/form.php:829 app/features/mec.php:402
1572
  #: app/features/mec/meta_boxes/filter.php:147
1573
  msgid "Tags"
1574
  msgstr ""
1881
 
1882
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1883
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1884
+ #: app/features/mec/settings.php:1054 app/features/mec/single.php:269
1885
  msgid "Checking ..."
1886
  msgstr ""
1887
 
1926
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1927
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1928
  #: app/features/mec/booking.php:359
1929
+ #: app/features/mec/meta_boxes/display_options.php:176
1930
+ #: app/features/mec/meta_boxes/display_options.php:368
1931
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1932
  #: app/features/mec/modules.php:228
1933
  #, php-format
1937
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1938
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1939
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1940
+ #: app/features/mec/meta_boxes/display_options.php:176
1941
+ #: app/features/mec/meta_boxes/display_options.php:368
1942
+ #: app/features/mec/meta_boxes/display_options.php:396
1943
+ #: app/features/mec/meta_boxes/display_options.php:536
1944
+ #: app/features/mec/meta_boxes/display_options.php:587
1945
+ #: app/features/mec/meta_boxes/display_options.php:694
1946
+ #: app/features/mec/meta_boxes/display_options.php:801
1947
+ #: app/features/mec/meta_boxes/display_options.php:908
1948
+ #: app/features/mec/meta_boxes/display_options.php:1121
1949
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1950
  #: app/features/mec/modules.php:228
1951
  msgid "Pro version of Modern Events Calendar"
2107
  msgstr ""
2108
 
2109
  #: app/features/ix/sync.php:22
2110
+ #: app/features/mec/meta_boxes/display_options.php:908
2111
  #, php-format
2112
  msgid "%s is required to use synchronization feature."
2113
  msgstr ""
2255
  msgstr ""
2256
 
2257
  #: app/features/labels.php:112 app/features/labels.php:139
2258
+ #: app/features/mec/meta_boxes/display_options.php:39
2259
+ #: app/features/mec/meta_boxes/display_options.php:216
2260
+ #: app/features/mec/meta_boxes/display_options.php:401
2261
+ #: app/features/mec/meta_boxes/display_options.php:592
2262
+ #: app/features/mec/meta_boxes/display_options.php:642
2263
+ #: app/features/mec/meta_boxes/display_options.php:806
2264
+ #: app/features/mec/meta_boxes/display_options.php:1003
2265
+ #: app/features/mec/meta_boxes/display_options.php:1060
2266
+ #: app/features/mec/meta_boxes/display_options.php:1152
2267
+ #: app/features/mec/meta_boxes/display_options.php:1239
2268
  msgid "Style"
2269
  msgstr ""
2270
 
2276
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2277
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2278
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2279
+ #: app/skins/grid/render.php:54 app/skins/list/render.php:38
2280
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2281
  #: app/skins/monthly_view/calendar_clean.php:86
2282
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2283
+ #: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
2284
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2285
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2286
  msgid "Featured"
2287
  msgstr ""
2288
 
2289
  #: app/features/labels.php:118 app/features/labels.php:143
2290
+ #: app/libraries/main.php:5532 app/skins/agenda/render.php:43
2291
+ #: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
2292
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2293
+ #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
2294
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:30
2295
  #: app/skins/monthly_view/calendar.php:90
2296
  #: app/skins/monthly_view/calendar_clean.php:90
2297
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2298
+ #: app/skins/tile/render.php:38 app/skins/timeline/render.php:48
2299
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2300
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2301
  msgid "Canceled"
2321
  msgid "Event %s"
2322
  msgstr ""
2323
 
2324
+ #: app/features/locations.php:59 app/features/mec.php:405
2325
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2326
+ #: app/libraries/main.php:5285
2327
  msgid "Locations"
2328
  msgstr ""
2329
 
2394
  msgid "eg. City Hall"
2395
  msgstr ""
2396
 
2397
+ #: app/features/locations.php:310 app/features/mec/settings.php:700
2398
  #: app/widgets/single.php:115
2399
  msgid "Event Location"
2400
  msgstr ""
2428
  msgid "Don't show map in single event page"
2429
  msgstr ""
2430
 
2431
+ #: app/features/locations.php:356 app/libraries/main.php:5319
2432
  msgid "Other Locations"
2433
  msgstr ""
2434
 
2441
  msgid "<strong>"
2442
  msgstr ""
2443
 
2444
+ #: app/features/mec.php:186
2445
  msgid ""
2446
  "Activation faild. Please check your purchase code or license type."
2447
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2448
  msgstr ""
2449
 
2450
+ #: app/features/mec.php:186
2451
  msgid "Troubleshooting"
2452
  msgstr ""
2453
 
2454
+ #: app/features/mec.php:256 app/libraries/notifications.php:940
2455
  #, php-format
2456
  msgid "%s to %s"
2457
  msgstr ""
2458
 
2459
+ #: app/features/mec.php:279
2460
  msgid ""
2461
  "Your options is not in JSON format. Please insert correct options in this "
2462
  "field and try again."
2463
  msgstr ""
2464
 
2465
+ #: app/features/mec.php:286
2466
  msgid "Your options field can not be empty!"
2467
  msgstr ""
2468
 
2469
+ #: app/features/mec.php:292
2470
  msgid "Your options imported successfuly."
2471
  msgstr ""
2472
 
2473
+ #: app/features/mec.php:385
2474
  msgid "MEC - Support"
2475
  msgstr ""
2476
 
2477
+ #: app/features/mec.php:385 app/features/mec/support-page.php:9
2478
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2479
  msgid "Support"
2480
  msgstr ""
2481
 
2482
+ #: app/features/mec.php:406 app/features/mec/dashboard.php:278
2483
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2484
+ #: app/libraries/main.php:5287
2485
  msgid "Organizers"
2486
  msgstr ""
2487
 
2488
+ #: app/features/mec.php:414 app/features/mec.php:438
2489
  #: app/features/mec/dashboard.php:264
2490
  msgid "Shortcodes"
2491
  msgstr ""
2492
 
2493
+ #: app/features/mec.php:415
2494
  msgid "MEC - Settings"
2495
  msgstr ""
2496
 
2497
+ #: app/features/mec.php:416
2498
  msgid "MEC - Addons"
2499
  msgstr ""
2500
 
2501
+ #: app/features/mec.php:416 app/features/mec/addons.php:22
2502
  msgid "Addons"
2503
  msgstr ""
2504
 
2505
+ #: app/features/mec.php:419
2506
  msgid "MEC - Report"
2507
  msgstr ""
2508
 
2509
+ #: app/features/mec.php:419
2510
  msgid "Report"
2511
  msgstr ""
2512
 
2513
+ #: app/features/mec.php:440
2514
  msgid "Add Shortcode"
2515
  msgstr ""
2516
 
2517
+ #: app/features/mec.php:441
2518
  msgid "Add New Shortcode"
2519
  msgstr ""
2520
 
2521
+ #: app/features/mec.php:442
2522
  msgid "No shortcodes found!"
2523
  msgstr ""
2524
 
2525
+ #: app/features/mec.php:443
2526
  msgid "All Shortcodes"
2527
  msgstr ""
2528
 
2529
+ #: app/features/mec.php:444
2530
  msgid "Edit shortcodes"
2531
  msgstr ""
2532
 
2533
+ #: app/features/mec.php:445
2534
  msgid "No shortcodes found in Trash!"
2535
  msgstr ""
2536
 
2537
+ #: app/features/mec.php:498
2538
  msgid "Display Options"
2539
  msgstr ""
2540
 
2541
+ #: app/features/mec.php:499
2542
  msgid "Filter Options"
2543
  msgstr ""
2544
 
2545
+ #: app/features/mec.php:501
2546
  msgid "Search Form"
2547
  msgstr ""
2548
 
2550
  msgid "Display content's images as Popup"
2551
  msgstr ""
2552
 
2553
+ #: app/features/mec.php:889 app/features/popup/shortcode.php:300
2554
  msgid "Single Event Display Method"
2555
  msgstr ""
2556
 
2557
+ #: app/features/mec.php:894 app/features/popup/shortcode.php:304
2558
  msgid "Separate Window"
2559
  msgstr ""
2560
 
2561
+ #: app/features/mec.php:895 app/features/popup/shortcode.php:308
2562
  msgid "Modal 1"
2563
  msgstr ""
2564
 
2565
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2566
+ #: app/features/mec/dashboard.php:81 app/features/mec/go-pro.php:13
2567
+ #: app/features/mec/report.php:17 app/features/mec/support-page.php:21
2568
  msgid "Version"
2569
  msgstr ""
2570
 
2599
  #: app/features/mec/notifications.php:828
2600
  #: app/features/mec/notifications.php:924
2601
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2602
+ #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
2603
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
2604
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2605
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2606
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2632
  msgstr ""
2633
 
2634
  #: app/features/mec/booking.php:115
2635
+ #: app/features/mec/meta_boxes/display_options.php:135
2636
+ #: app/features/mec/meta_boxes/display_options.php:349
2637
+ #: app/features/mec/meta_boxes/display_options.php:445
2638
+ #: app/features/mec/meta_boxes/display_options.php:951
2639
+ #: app/features/mec/meta_boxes/display_options.php:1218
2640
+ #: app/features/mec/meta_boxes/display_options.php:1327
2641
+ #: app/features/mec/meta_boxes/display_options.php:1378
2642
  msgid "Limit"
2643
  msgstr ""
2644
 
2680
  msgstr ""
2681
 
2682
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2683
+ #: app/features/mec/settings.php:607 app/features/mec/settings.php:617
2684
  msgid "Thank You Page"
2685
  msgstr ""
2686
 
2691
  msgstr ""
2692
 
2693
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2694
+ #: app/features/mec/settings.php:627 app/features/mec/settings.php:632
2695
  msgid "Thank You Page Time Interval"
2696
  msgstr ""
2697
 
2698
+ #: app/features/mec/booking.php:167 app/features/mec/settings.php:629
2699
  msgid "2000 mean 2 seconds"
2700
  msgstr ""
2701
 
2702
+ #: app/features/mec/booking.php:171 app/features/mec/settings.php:633
2703
  msgid ""
2704
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2705
  "2000 means 2 seconds."
2802
 
2803
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2804
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2805
+ #: app/features/mec/settings.php:1049 app/features/mec/single.php:264
2806
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2807
  msgid "Saved"
2808
  msgstr ""
2809
 
2810
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2811
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2812
+ #: app/features/mec/settings.php:1050 app/features/mec/single.php:265
2813
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2814
  msgid "Settings Saved!"
2815
  msgstr ""
2817
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2818
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2819
  #: app/features/mec/notifications.php:905
2820
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
2821
+ #: app/features/mec/settings.php:1074 app/features/mec/single.php:267
2822
+ #: app/features/mec/single.php:289 app/libraries/main.php:5531
2823
  msgid "Verified"
2824
  msgstr ""
2825
 
2826
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2827
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
2828
  #: app/features/mec/single.php:291
2829
  msgid "Please Refresh Page"
2830
  msgstr ""
2852
  msgid "Update"
2853
  msgstr ""
2854
 
2855
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
2856
  #, php-format
2857
  msgid ""
2858
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2860
  "Spots, etc you should upgrade to the Pro version."
2861
  msgstr ""
2862
 
2863
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
2864
  msgid "lite"
2865
  msgstr ""
2866
 
2867
+ #: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:25
2868
+ #: app/features/mec/support.php:126
2869
  msgid "GO PREMIUM"
2870
  msgstr ""
2871
 
2872
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
2873
  #, php-format
2874
  msgid ""
2875
  "Easily get a discount coupon by rating us on %s or following and reposting "
2876
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2877
  msgstr ""
2878
 
2879
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
2880
  msgid "WordPress"
2881
  msgstr ""
2882
 
2883
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
2884
  msgid "Copouns!"
2885
  msgstr ""
2886
 
2912
  "code."
2913
  msgstr ""
2914
 
2915
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:403
2916
  msgid "Upcoming Events"
2917
  msgstr ""
2918
 
2961
  msgid "Change Log"
2962
  msgstr ""
2963
 
2964
+ #: app/features/mec/go-pro.php:9
2965
+ msgid "Go Pro"
2966
+ msgstr ""
2967
+
2968
  #: app/features/mec/ie.php:21
2969
  msgid ""
2970
  "Insert your backup files below and press import to restore your site's "
3002
  "phrases from language files."
3003
  msgstr ""
3004
 
3005
+ #: app/features/mec/meta_boxes/display_options.php:23
3006
  msgid "Skin"
3007
  msgstr ""
3008
 
 
 
 
 
 
 
 
 
 
 
 
3009
  #: app/features/mec/meta_boxes/display_options.php:41
3010
+ #: app/features/mec/meta_boxes/display_options.php:218
3011
+ #: app/features/mec/meta_boxes/display_options.php:644
3012
+ #: app/features/mec/meta_boxes/display_options.php:810
3013
+ #: app/features/mec/meta_boxes/display_options.php:1005
3014
+ #: app/features/mec/settings.php:267 app/features/mec/settings.php:291
3015
+ #: app/features/mec/settings.php:300 app/features/mec/settings.php:341
3016
+ #: app/features/mec/settings.php:365 app/features/mec/settings.php:374
3017
+ #: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:95
3018
+ #: app/features/popup/shortcode.php:164 app/features/popup/shortcode.php:211
3019
+ msgid "Classic"
3020
  msgstr ""
3021
 
3022
  #: app/features/mec/meta_boxes/display_options.php:42
3023
  #: app/features/mec/meta_boxes/display_options.php:220
3024
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:302
3025
+ #: app/features/mec/settings.php:366 app/features/mec/settings.php:376
3026
+ #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:105
3027
+ msgid "Minimal"
 
 
 
 
 
3028
  msgstr ""
3029
 
3030
  #: app/features/mec/meta_boxes/display_options.php:43
3031
+ #: app/features/mec/meta_boxes/display_options.php:221
3032
+ #: app/features/mec/meta_boxes/display_options.php:594
3033
+ #: app/features/mec/meta_boxes/display_options.php:646
3034
+ #: app/features/mec/meta_boxes/display_options.php:808
3035
+ #: app/features/mec/meta_boxes/display_options.php:1007
3036
+ #: app/features/mec/settings.php:269 app/features/mec/settings.php:282
3037
+ #: app/features/mec/settings.php:293 app/features/mec/settings.php:303
3038
+ #: app/features/mec/settings.php:343 app/features/mec/settings.php:356
3039
+ #: app/features/mec/settings.php:367 app/features/mec/settings.php:377
3040
+ #: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:110
3041
+ #: app/features/popup/shortcode.php:157 app/features/popup/shortcode.php:174
3042
+ #: app/features/popup/shortcode.php:197 app/features/popup/shortcode.php:221
3043
+ msgid "Modern"
3044
  msgstr ""
3045
 
3046
  #: app/features/mec/meta_boxes/display_options.php:44
3047
+ #: app/features/mec/settings.php:294 app/features/mec/settings.php:368
3048
+ #: app/features/popup/shortcode.php:83
3049
+ msgid "Standard"
3050
  msgstr ""
3051
 
3052
+ #: app/features/mec/meta_boxes/display_options.php:45
3053
+ #: app/features/mec/settings.php:295 app/features/mec/settings.php:369
3054
+ #: app/features/popup/shortcode.php:88
3055
+ msgid "Accordion"
 
 
 
 
 
 
3056
  msgstr ""
3057
 
3058
  #: app/features/mec/meta_boxes/display_options.php:51
3064
  #: app/features/mec/meta_boxes/display_options.php:1163
3065
  #: app/features/mec/meta_boxes/display_options.php:1251
3066
  #: app/features/mec/meta_boxes/display_options.php:1343
3067
+ msgid "Today"
3068
  msgstr ""
3069
 
3070
  #: app/features/mec/meta_boxes/display_options.php:52
3071
  #: app/features/mec/meta_boxes/display_options.php:232
3072
  #: app/features/mec/meta_boxes/display_options.php:410
 
 
3073
  #: app/features/mec/meta_boxes/display_options.php:702
3074
  #: app/features/mec/meta_boxes/display_options.php:735
 
 
3075
  #: app/features/mec/meta_boxes/display_options.php:916
3076
  #: app/features/mec/meta_boxes/display_options.php:1164
3077
  #: app/features/mec/meta_boxes/display_options.php:1252
3078
  #: app/features/mec/meta_boxes/display_options.php:1344
3079
+ msgid "Tomorrow"
 
3080
  msgstr ""
3081
 
3082
  #: app/features/mec/meta_boxes/display_options.php:53
3093
  #: app/features/mec/meta_boxes/display_options.php:1253
3094
  #: app/features/mec/meta_boxes/display_options.php:1345
3095
  #: app/features/mec/meta_boxes/display_options.php:1410
3096
+ msgid "Start of Current Month"
3097
  msgstr ""
3098
 
3099
  #: app/features/mec/meta_boxes/display_options.php:54
3100
  #: app/features/mec/meta_boxes/display_options.php:234
3101
  #: app/features/mec/meta_boxes/display_options.php:412
3102
  #: app/features/mec/meta_boxes/display_options.php:478
 
3103
  #: app/features/mec/meta_boxes/display_options.php:655
3104
  #: app/features/mec/meta_boxes/display_options.php:704
3105
  #: app/features/mec/meta_boxes/display_options.php:737
3110
  #: app/features/mec/meta_boxes/display_options.php:1254
3111
  #: app/features/mec/meta_boxes/display_options.php:1346
3112
  #: app/features/mec/meta_boxes/display_options.php:1411
3113
+ msgid "Start of Next Month"
3114
+ msgstr ""
3115
+
3116
+ #: app/features/mec/meta_boxes/display_options.php:55
3117
+ #: app/features/mec/meta_boxes/display_options.php:235
3118
+ #: app/features/mec/meta_boxes/display_options.php:413
3119
+ #: app/features/mec/meta_boxes/display_options.php:479
3120
+ #: app/features/mec/meta_boxes/display_options.php:602
3121
+ #: app/features/mec/meta_boxes/display_options.php:656
3122
+ #: app/features/mec/meta_boxes/display_options.php:705
3123
+ #: app/features/mec/meta_boxes/display_options.php:738
3124
+ #: app/features/mec/meta_boxes/display_options.php:773
3125
+ #: app/features/mec/meta_boxes/display_options.php:820
3126
+ #: app/features/mec/meta_boxes/display_options.php:919
3127
+ #: app/features/mec/meta_boxes/display_options.php:1167
3128
+ #: app/features/mec/meta_boxes/display_options.php:1255
3129
+ #: app/features/mec/meta_boxes/display_options.php:1347
3130
+ #: app/features/mec/meta_boxes/display_options.php:1412
3131
  msgid "On a certain date"
3132
  msgstr ""
3133
 
3134
+ #: app/features/mec/meta_boxes/display_options.php:58
3135
+ #: app/features/mec/meta_boxes/display_options.php:238
3136
+ #: app/features/mec/meta_boxes/display_options.php:416
3137
+ #: app/features/mec/meta_boxes/display_options.php:482
3138
+ #: app/features/mec/meta_boxes/display_options.php:605
3139
+ #: app/features/mec/meta_boxes/display_options.php:659
3140
+ #: app/features/mec/meta_boxes/display_options.php:708
3141
+ #: app/features/mec/meta_boxes/display_options.php:742
3142
+ #: app/features/mec/meta_boxes/display_options.php:776
3143
+ #: app/features/mec/meta_boxes/display_options.php:823
3144
+ #: app/features/mec/meta_boxes/display_options.php:922
3145
+ #: app/features/mec/meta_boxes/display_options.php:1170
3146
+ #: app/features/mec/meta_boxes/display_options.php:1258
3147
+ #: app/features/mec/meta_boxes/display_options.php:1350
3148
+ #: app/features/mec/meta_boxes/display_options.php:1415
3149
  #, php-format
3150
  msgid "eg. %s"
3151
  msgstr ""
3152
 
 
3153
  #: app/features/mec/meta_boxes/display_options.php:63
3154
+ #: app/features/mec/meta_boxes/display_options.php:64
3155
+ #: app/features/mec/meta_boxes/display_options.php:67
3156
  #: app/features/mec/meta_boxes/display_options.php:243
3157
+ #: app/features/mec/meta_boxes/display_options.php:244
3158
+ #: app/features/mec/meta_boxes/display_options.php:247
3159
  #: app/features/mec/meta_boxes/display_options.php:421
3160
+ #: app/features/mec/meta_boxes/display_options.php:422
3161
+ #: app/features/mec/meta_boxes/display_options.php:425
3162
  #: app/features/mec/meta_boxes/display_options.php:927
3163
+ #: app/features/mec/meta_boxes/display_options.php:928
3164
+ #: app/features/mec/meta_boxes/display_options.php:931
3165
  #: app/features/mec/meta_boxes/display_options.php:1355
3166
+ #: app/features/mec/meta_boxes/display_options.php:1356
3167
+ #: app/features/mec/meta_boxes/display_options.php:1359
3168
  msgid "Maximum Date"
3169
  msgstr ""
3170
 
3171
+ #: app/features/mec/meta_boxes/display_options.php:68
3172
+ #: app/features/mec/meta_boxes/display_options.php:248
3173
+ #: app/features/mec/meta_boxes/display_options.php:426
3174
+ #: app/features/mec/meta_boxes/display_options.php:932
3175
+ #: app/features/mec/meta_boxes/display_options.php:1360
3176
  msgid "Show events before the specified date."
3177
  msgstr ""
3178
 
3179
+ #: app/features/mec/meta_boxes/display_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3180
  #: app/features/mec/meta_boxes/display_options.php:79
3181
+ #: app/features/mec/meta_boxes/display_options.php:86
 
 
 
3182
  #: app/features/mec/meta_boxes/display_options.php:92
3183
+ #: app/features/mec/meta_boxes/display_options.php:99
 
 
3184
  #: app/features/mec/meta_boxes/display_options.php:105
3185
+ #: app/features/mec/meta_boxes/display_options.php:112
3186
+ #: app/features/mec/meta_boxes/display_options.php:116
3187
+ #: app/features/mec/meta_boxes/display_options.php:123
3188
+ #: app/features/mec/meta_boxes/display_options.php:128
3189
+ #: app/features/mec/meta_boxes/display_options.php:255
3190
+ #: app/features/mec/meta_boxes/display_options.php:259
3191
+ #: app/features/mec/meta_boxes/display_options.php:266
3192
+ #: app/features/mec/meta_boxes/display_options.php:271
3193
+ #: app/features/mec/meta_boxes/display_options.php:278
3194
+ #: app/features/mec/meta_boxes/display_options.php:283
3195
+ #: app/features/mec/meta_boxes/display_options.php:290
3196
  #: app/features/mec/meta_boxes/display_options.php:296
3197
+ #: app/features/mec/meta_boxes/display_options.php:303
3198
+ #: app/features/mec/meta_boxes/display_options.php:307
3199
+ #: app/features/mec/meta_boxes/display_options.php:314
3200
  #: app/features/mec/meta_boxes/display_options.php:320
3201
+ #: app/features/mec/meta_boxes/display_options.php:327
3202
+ #: app/features/mec/meta_boxes/display_options.php:331
3203
+ #: app/features/mec/meta_boxes/display_options.php:433
3204
+ #: app/features/mec/meta_boxes/display_options.php:438
3205
+ #: app/features/mec/meta_boxes/display_options.php:609
3206
+ #: app/features/mec/meta_boxes/display_options.php:614
3207
+ #: app/features/mec/meta_boxes/display_options.php:855
3208
+ #: app/features/mec/meta_boxes/display_options.php:939
3209
+ #: app/features/mec/meta_boxes/display_options.php:944
3210
+ #: app/features/mec/meta_boxes/display_options.php:1011
3211
+ #: app/features/mec/meta_boxes/display_options.php:1017
3212
+ #: app/features/mec/meta_boxes/display_options.php:1024
3213
+ #: app/features/mec/meta_boxes/display_options.php:1029
3214
+ #: app/features/mec/meta_boxes/display_options.php:1036
3215
+ #: app/features/mec/meta_boxes/display_options.php:1040
3216
+ #: app/features/mec/meta_boxes/display_options.php:1068
3217
+ #: app/features/mec/meta_boxes/display_options.php:1072
3218
+ #: app/features/mec/meta_boxes/display_options.php:1079
3219
+ #: app/features/mec/meta_boxes/display_options.php:1083
3220
+ #: app/features/mec/meta_boxes/display_options.php:1090
3221
+ #: app/features/mec/meta_boxes/display_options.php:1096
3222
+ #: app/features/mec/meta_boxes/display_options.php:1126
3223
+ #: app/features/mec/meta_boxes/display_options.php:1131
3224
+ #: app/features/mec/meta_boxes/display_options.php:1174
3225
+ #: app/features/mec/meta_boxes/display_options.php:1180
3226
+ #: app/features/mec/meta_boxes/display_options.php:1187
3227
+ #: app/features/mec/meta_boxes/display_options.php:1191
3228
+ #: app/features/mec/meta_boxes/display_options.php:1198
3229
+ #: app/features/mec/meta_boxes/display_options.php:1202
3230
+ #: app/features/mec/meta_boxes/display_options.php:1262
3231
  #: app/features/mec/meta_boxes/display_options.php:1268
3232
+ #: app/features/mec/meta_boxes/display_options.php:1275
3233
  #: app/features/mec/meta_boxes/display_options.php:1281
3234
+ #: app/features/mec/meta_boxes/display_options.php:1288
3235
  #: app/features/mec/meta_boxes/display_options.php:1294
3236
+ #: app/features/mec/meta_boxes/display_options.php:1301
3237
  #: app/features/mec/meta_boxes/display_options.php:1307
3238
+ #: app/features/mec/meta_boxes/display_options.php:1314
3239
  #: app/features/mec/meta_boxes/display_options.php:1320
3240
+ #: app/features/mec/meta_boxes/display_options.php:1367
3241
+ #: app/features/mec/meta_boxes/display_options.php:1371
3242
+ #: app/features/mec/meta_boxes/display_options.php:1419
3243
+ #: app/features/mec/meta_boxes/display_options.php:1424
3244
+ msgid "Date Formats"
3245
+ msgstr ""
3246
+
3247
+ #: app/features/mec/meta_boxes/display_options.php:80
3248
+ #: app/features/mec/meta_boxes/display_options.php:308
3249
+ msgid "Default value is \"M d Y\""
3250
+ msgstr ""
3251
+
3252
+ #: app/features/mec/meta_boxes/display_options.php:93
3253
+ msgid "Default values are d, M and l"
3254
+ msgstr ""
3255
+
3256
+ #: app/features/mec/meta_boxes/display_options.php:106
3257
+ #: app/features/mec/meta_boxes/display_options.php:297
3258
+ #: app/features/mec/meta_boxes/display_options.php:321
3259
+ #: app/features/mec/meta_boxes/display_options.php:1269
3260
+ #: app/features/mec/meta_boxes/display_options.php:1282
3261
+ #: app/features/mec/meta_boxes/display_options.php:1295
3262
+ #: app/features/mec/meta_boxes/display_options.php:1308
3263
+ #: app/features/mec/meta_boxes/display_options.php:1321
3264
  msgid "Default values are d, F and l"
3265
  msgstr ""
3266
 
3267
+ #: app/features/mec/meta_boxes/display_options.php:117
3268
  msgid "Default value is \"M d\""
3269
  msgstr ""
3270
 
3271
+ #: app/features/mec/meta_boxes/display_options.php:129
3272
  msgid "TDefault values are d and F"
3273
  msgstr ""
3274
 
3275
+ #: app/features/mec/meta_boxes/display_options.php:136
3276
+ #: app/features/mec/meta_boxes/display_options.php:350
3277
+ #: app/features/mec/meta_boxes/display_options.php:446
3278
+ #: app/features/mec/meta_boxes/display_options.php:622
3279
+ #: app/features/mec/meta_boxes/display_options.php:664
3280
+ #: app/features/mec/meta_boxes/display_options.php:747
3281
+ #: app/features/mec/meta_boxes/display_options.php:781
3282
+ #: app/features/mec/meta_boxes/display_options.php:828
3283
+ #: app/features/mec/meta_boxes/display_options.php:1219
3284
+ #: app/features/mec/meta_boxes/display_options.php:1328
3285
+ #: app/features/mec/meta_boxes/display_options.php:1379
3286
  msgid "eg. 6"
3287
  msgstr ""
3288
 
3289
+ #: app/features/mec/meta_boxes/display_options.php:141
3290
  msgid "Include Events Times"
3291
  msgstr ""
3292
 
3293
+ #: app/features/mec/meta_boxes/display_options.php:152
3294
+ #: app/features/mec/meta_boxes/display_options.php:354
3295
+ #: app/features/mec/meta_boxes/display_options.php:450
3296
+ #: app/features/mec/meta_boxes/display_options.php:988
3297
+ #: app/features/mec/meta_boxes/display_options.php:1383
3298
  msgid "Load More Button"
3299
  msgstr ""
3300
 
3301
+ #: app/features/mec/meta_boxes/display_options.php:162
3302
+ #: app/features/mec/meta_boxes/display_options.php:460
3303
+ #: app/features/mec/meta_boxes/display_options.php:1393
3304
  msgid "Show Month Divider"
3305
  msgstr ""
3306
 
3307
+ #: app/features/mec/meta_boxes/display_options.php:172
3308
+ #: app/features/mec/meta_boxes/display_options.php:364
3309
  msgid "Show Map on top"
3310
  msgstr ""
3311
 
3312
+ #: app/features/mec/meta_boxes/display_options.php:187
3313
+ #: app/features/mec/meta_boxes/display_options.php:379
3314
+ #: app/features/mec/meta_boxes/display_options.php:717
3315
  msgid "Geolocation"
3316
  msgstr ""
3317
 
3318
+ #: app/features/mec/meta_boxes/display_options.php:202
3319
  msgid "Toggle for Month Divider"
3320
  msgstr ""
3321
 
3322
+ #: app/features/mec/meta_boxes/display_options.php:219
3323
+ #: app/features/mec/meta_boxes/display_options.php:403
3324
+ #: app/features/mec/meta_boxes/display_options.php:498
3325
+ #: app/features/mec/meta_boxes/display_options.php:645
3326
+ #: app/features/mec/meta_boxes/display_options.php:809
3327
+ #: app/features/mec/meta_boxes/display_options.php:1006
3328
+ #: app/features/mec/settings.php:268 app/features/mec/settings.php:283
3329
+ #: app/features/mec/settings.php:301 app/features/mec/settings.php:342
3330
+ #: app/features/mec/settings.php:357 app/features/mec/settings.php:375
3331
+ #: app/features/popup/shortcode.php:100 app/features/popup/shortcode.php:132
3332
+ #: app/features/popup/shortcode.php:140 app/features/popup/shortcode.php:169
3333
+ #: app/features/popup/shortcode.php:202 app/features/popup/shortcode.php:216
3334
  msgid "Clean"
3335
  msgstr ""
3336
 
3337
+ #: app/features/mec/meta_boxes/display_options.php:222
3338
+ #: app/features/mec/meta_boxes/display_options.php:500
3339
+ #: app/features/mec/meta_boxes/display_options.php:648
3340
+ #: app/features/mec/settings.php:271 app/features/mec/settings.php:304
3341
+ #: app/features/mec/settings.php:345 app/features/mec/settings.php:378
3342
+ #: app/features/popup/shortcode.php:115 app/features/popup/shortcode.php:150
3343
+ #: app/features/popup/shortcode.php:184
3344
  msgid "Simple"
3345
  msgstr ""
3346
 
3347
+ #: app/features/mec/meta_boxes/display_options.php:223
3348
+ #: app/features/popup/shortcode.php:120
3349
  msgid "Colorful"
3350
  msgstr ""
3351
 
3352
+ #: app/features/mec/meta_boxes/display_options.php:224
3353
+ #: app/features/mec/meta_boxes/display_options.php:499
3354
+ #: app/features/mec/meta_boxes/display_options.php:647
3355
+ #: app/features/mec/settings.php:270 app/features/mec/settings.php:306
3356
+ #: app/features/mec/settings.php:344 app/features/mec/settings.php:380
3357
+ #: app/features/popup/shortcode.php:125 app/features/popup/shortcode.php:145
3358
+ #: app/features/popup/shortcode.php:179
3359
  msgid "Novel"
3360
  msgstr ""
3361
 
3362
+ #: app/features/mec/meta_boxes/display_options.php:260
3363
+ #: app/features/mec/meta_boxes/display_options.php:1372
3364
  msgid "Default value is \"d F Y"
3365
  msgstr ""
3366
 
3367
+ #: app/features/mec/meta_boxes/display_options.php:272
3368
  msgid "Default values are d and F"
3369
  msgstr ""
3370
 
3371
+ #: app/features/mec/meta_boxes/display_options.php:284
3372
  msgid "Default values are d and M"
3373
  msgstr ""
3374
 
3375
+ #: app/features/mec/meta_boxes/display_options.php:332
3376
  msgid "Default value is \"d F Y\""
3377
  msgstr ""
3378
 
3379
+ #: app/features/mec/meta_boxes/display_options.php:338
3380
+ #: app/features/mec/meta_boxes/display_options.php:1209
3381
+ #: app/features/mec/meta_boxes/display_options.php:1431
3382
  msgid "Count in row"
3383
  msgstr ""
3384
 
3385
+ #: app/features/mec/meta_boxes/display_options.php:396
3386
+ #: app/features/mec/meta_boxes/display_options.php:587
3387
+ #: app/features/mec/meta_boxes/display_options.php:694
3388
+ #: app/features/mec/meta_boxes/display_options.php:801
3389
+ #: app/features/mec/meta_boxes/display_options.php:1121
3390
  #, php-format
3391
  msgid "%s is required to use this skin."
3392
  msgstr ""
3393
 
3394
+ #: app/features/mec/meta_boxes/display_options.php:439
3395
+ #: app/features/mec/meta_boxes/display_options.php:615
3396
  msgid "Default values are l and F j"
3397
  msgstr ""
3398
 
3399
+ #: app/features/mec/meta_boxes/display_options.php:486
3400
  msgid "Default View"
3401
  msgstr ""
3402
 
3403
+ #: app/features/mec/meta_boxes/display_options.php:488
3404
+ #: app/features/mec/meta_boxes/display_options.php:509
3405
+ #: app/libraries/main.php:330 app/libraries/main.php:1758
3406
+ #: app/libraries/main.php:1783
3407
  msgid "List View"
3408
  msgstr ""
3409
 
3410
+ #: app/features/mec/meta_boxes/display_options.php:489
3411
+ #: app/features/mec/meta_boxes/display_options.php:519
3412
+ #: app/libraries/main.php:334 app/libraries/main.php:1752
3413
+ #: app/libraries/main.php:1777
3414
  msgid "Yearly View"
3415
  msgstr ""
3416
 
3417
+ #: app/features/mec/meta_boxes/display_options.php:490
3418
+ #: app/features/mec/meta_boxes/display_options.php:541
3419
  msgid "Monthly/Calendar View"
3420
  msgstr ""
3421
 
3422
+ #: app/features/mec/meta_boxes/display_options.php:491
3423
+ #: app/features/mec/meta_boxes/display_options.php:551
3424
+ #: app/libraries/main.php:337 app/libraries/main.php:1754
3425
+ #: app/libraries/main.php:1779
3426
  msgid "Weekly View"
3427
  msgstr ""
3428
 
3429
+ #: app/features/mec/meta_boxes/display_options.php:492
3430
+ #: app/features/mec/meta_boxes/display_options.php:561
3431
+ #: app/libraries/main.php:336 app/libraries/main.php:1755
3432
+ #: app/libraries/main.php:1780
3433
  msgid "Daily View"
3434
  msgstr ""
3435
 
3436
+ #: app/features/mec/meta_boxes/display_options.php:496
3437
+ #: app/features/popup/shortcode.php:136
3438
  msgid "Monthly Style"
3439
  msgstr ""
3440
 
3441
+ #: app/features/mec/meta_boxes/display_options.php:536
3442
  #, php-format
3443
  msgid "%s is required to use <b>Yearly View</b> skin."
3444
  msgstr ""
3445
 
3446
+ #: app/features/mec/meta_boxes/display_options.php:569
3447
  msgid "The price shows only in List View."
3448
  msgstr ""
3449
 
3450
+ #: app/features/mec/meta_boxes/display_options.php:572
3451
  msgid "Display Event Price"
3452
  msgstr ""
3453
 
3454
+ #: app/features/mec/meta_boxes/display_options.php:600
3455
  msgid "Start of Current Year"
3456
  msgstr ""
3457
 
3458
+ #: app/features/mec/meta_boxes/display_options.php:601
3459
  msgid "Start of Next Year"
3460
  msgstr ""
3461
 
3462
+ #: app/features/mec/meta_boxes/display_options.php:621
3463
+ #: app/features/mec/meta_boxes/display_options.php:663
3464
+ #: app/features/mec/meta_boxes/display_options.php:746
3465
+ #: app/features/mec/meta_boxes/display_options.php:780
3466
+ #: app/features/mec/meta_boxes/display_options.php:827
3467
  msgid "Events per day"
3468
  msgstr ""
3469
 
3470
+ #: app/features/mec/meta_boxes/display_options.php:626
3471
+ #: app/features/mec/meta_boxes/display_options.php:668
3472
+ #: app/features/mec/meta_boxes/display_options.php:751
3473
+ #: app/features/mec/meta_boxes/display_options.php:785
3474
+ #: app/features/mec/meta_boxes/display_options.php:889
3475
+ #: app/features/mec/meta_boxes/display_options.php:1440
3476
  msgid "Next/Previous Buttons"
3477
  msgstr ""
3478
 
3479
+ #: app/features/mec/meta_boxes/display_options.php:634
3480
  msgid "For showing next/previous year navigation."
3481
  msgstr ""
3482
 
3483
+ #: app/features/mec/meta_boxes/display_options.php:678
3484
  msgid "Uppercase Text"
3485
  msgstr ""
3486
 
3487
+ #: app/features/mec/meta_boxes/display_options.php:686
3488
+ #: app/features/mec/meta_boxes/display_options.php:759
3489
+ #: app/features/mec/meta_boxes/display_options.php:793
3490
+ #: app/features/mec/meta_boxes/display_options.php:897
3491
+ #: app/features/mec/meta_boxes/display_options.php:1448
3492
  msgid "For showing next/previous month navigation."
3493
  msgstr ""
3494
 
3495
+ #: app/features/mec/meta_boxes/display_options.php:712
3496
  msgid "Maximum events"
3497
  msgstr ""
3498
 
3499
+ #: app/features/mec/meta_boxes/display_options.php:713
3500
  msgid "eg. 200"
3501
  msgstr ""
3502
 
3503
+ #: app/features/mec/meta_boxes/display_options.php:725
3504
  msgid "The geolocation feature works only in secure (https) websites."
3505
  msgstr ""
3506
 
3507
+ #: app/features/mec/meta_boxes/display_options.php:769
3508
+ #: app/features/mec/meta_boxes/display_options.php:816
3509
  msgid "Current Week"
3510
  msgstr ""
3511
 
3512
+ #: app/features/mec/meta_boxes/display_options.php:770
3513
+ #: app/features/mec/meta_boxes/display_options.php:817
3514
  msgid "Next Week"
3515
  msgstr ""
3516
 
3517
+ #: app/features/mec/meta_boxes/display_options.php:832
3518
  msgid "Number of Days"
3519
  msgstr ""
3520
 
3521
+ #: app/features/mec/meta_boxes/display_options.php:840
3522
  msgid "Week Start"
3523
  msgstr ""
3524
 
3525
+ #: app/features/mec/meta_boxes/display_options.php:842
3526
  msgid "Inherite from WordPress options"
3527
  msgstr ""
3528
 
3529
+ #: app/features/mec/meta_boxes/display_options.php:857
3530
  msgid "1:00"
3531
  msgstr ""
3532
 
3533
+ #: app/features/mec/meta_boxes/display_options.php:858
3534
  msgid "2:00"
3535
  msgstr ""
3536
 
3537
+ #: app/features/mec/meta_boxes/display_options.php:859
3538
  msgid "3:00"
3539
  msgstr ""
3540
 
3541
+ #: app/features/mec/meta_boxes/display_options.php:860
3542
  msgid "4:00"
3543
  msgstr ""
3544
 
3545
+ #: app/features/mec/meta_boxes/display_options.php:861
3546
  msgid "5:00"
3547
  msgstr ""
3548
 
3549
+ #: app/features/mec/meta_boxes/display_options.php:862
3550
  msgid "6:00"
3551
  msgstr ""
3552
 
3553
+ #: app/features/mec/meta_boxes/display_options.php:863
3554
  msgid "7:00"
3555
  msgstr ""
3556
 
3557
+ #: app/features/mec/meta_boxes/display_options.php:864
3558
  msgid "8:00"
3559
  msgstr ""
3560
 
3561
+ #: app/features/mec/meta_boxes/display_options.php:865
3562
  msgid "9:00"
3563
  msgstr ""
3564
 
3565
+ #: app/features/mec/meta_boxes/display_options.php:866
3566
  msgid "10:00"
3567
  msgstr ""
3568
 
3569
+ #: app/features/mec/meta_boxes/display_options.php:867
3570
  msgid "11:00"
3571
  msgstr ""
3572
 
3573
+ #: app/features/mec/meta_boxes/display_options.php:868
3574
  msgid "12:00"
3575
  msgstr ""
3576
 
3577
+ #: app/features/mec/meta_boxes/display_options.php:871
3578
  msgid "13:00"
3579
  msgstr ""
3580
 
3581
+ #: app/features/mec/meta_boxes/display_options.php:872
3582
  msgid "14:00"
3583
  msgstr ""
3584
 
3585
+ #: app/features/mec/meta_boxes/display_options.php:873
3586
  msgid "15:00"
3587
  msgstr ""
3588
 
3589
+ #: app/features/mec/meta_boxes/display_options.php:874
3590
  msgid "16:00"
3591
  msgstr ""
3592
 
3593
+ #: app/features/mec/meta_boxes/display_options.php:875
3594
  msgid "17:00"
3595
  msgstr ""
3596
 
3597
+ #: app/features/mec/meta_boxes/display_options.php:876
3598
  msgid "18:00"
3599
  msgstr ""
3600
 
3601
+ #: app/features/mec/meta_boxes/display_options.php:877
3602
  msgid "19:00"
3603
  msgstr ""
3604
 
3605
+ #: app/features/mec/meta_boxes/display_options.php:878
3606
  msgid "20:00"
3607
  msgstr ""
3608
 
3609
+ #: app/features/mec/meta_boxes/display_options.php:879
3610
  msgid "21:00"
3611
  msgstr ""
3612
 
3613
+ #: app/features/mec/meta_boxes/display_options.php:880
3614
  msgid "22:00"
3615
  msgstr ""
3616
 
3617
+ #: app/features/mec/meta_boxes/display_options.php:881
3618
  msgid "23:00"
3619
  msgstr ""
3620
 
3621
+ #: app/features/mec/meta_boxes/display_options.php:882
3622
  msgid "24:00"
3623
  msgstr ""
3624
 
3625
+ #: app/features/mec/meta_boxes/display_options.php:945
3626
+ #: app/features/mec/meta_boxes/display_options.php:1132
3627
  msgid "Default values are j and F"
3628
  msgstr ""
3629
 
3630
+ #: app/features/mec/meta_boxes/display_options.php:952
3631
  msgid "eg. 24"
3632
  msgstr ""
3633
 
3634
+ #: app/features/mec/meta_boxes/display_options.php:955
3635
  msgid "Filter By"
3636
  msgstr ""
3637
 
3638
+ #: app/features/mec/meta_boxes/display_options.php:957
3639
  msgid "None"
3640
  msgstr ""
3641
 
3642
+ #: app/features/mec/meta_boxes/display_options.php:966
3643
  msgid "Fit to row"
3644
  msgstr ""
3645
 
3646
+ #: app/features/mec/meta_boxes/display_options.php:967
3647
  msgid ""
3648
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3649
  "would expect from a layout that uses CSS floats."
3650
  msgstr ""
3651
 
3652
+ #: app/features/mec/meta_boxes/display_options.php:977
3653
  msgid "Convert Masonry to Grid"
3654
  msgstr ""
3655
 
3656
+ #: app/features/mec/meta_boxes/display_options.php:978
3657
  msgid "For using this option, your events should come with image"
3658
  msgstr ""
3659
 
3660
+ #: app/features/mec/meta_boxes/display_options.php:1018
3661
  msgid "Default values are d, M and Y"
3662
  msgstr ""
3663
 
3664
+ #: app/features/mec/meta_boxes/display_options.php:1030
3665
  msgid "Default values are \"F d\" and l"
3666
  msgstr ""
3667
 
3668
+ #: app/features/mec/meta_boxes/display_options.php:1041
3669
  msgid "Default value is \"l, F d Y\""
3670
  msgstr ""
3671
 
3672
+ #: app/features/mec/meta_boxes/display_options.php:1062
3673
+ #: app/features/popup/shortcode.php:228
3674
  msgid "Style 1"
3675
  msgstr ""
3676
 
3677
+ #: app/features/mec/meta_boxes/display_options.php:1063
3678
+ #: app/features/popup/shortcode.php:233
3679
  msgid "Style 2"
3680
  msgstr ""
3681
 
3682
+ #: app/features/mec/meta_boxes/display_options.php:1064
3683
+ #: app/features/popup/shortcode.php:238
3684
  msgid "Style 3"
3685
  msgstr ""
3686
 
3687
+ #: app/features/mec/meta_boxes/display_options.php:1073
3688
+ #: app/features/mec/meta_boxes/display_options.php:1084
3689
  msgid "Default value is \"j F Y\""
3690
  msgstr ""
3691
 
3692
+ #: app/features/mec/meta_boxes/display_options.php:1097
3693
  msgid "Default values are j, F and Y"
3694
  msgstr ""
3695
 
3696
+ #: app/features/mec/meta_boxes/display_options.php:1105
3697
+ #: app/features/mec/meta_boxes/display_options.php:1140
3698
  msgid " -- Next Upcoming Event -- "
3699
  msgstr ""
3700
 
3701
+ #: app/features/mec/meta_boxes/display_options.php:1112
3702
  msgid "Background Color"
3703
  msgstr ""
3704
 
 
 
 
 
 
3705
  #: app/features/mec/meta_boxes/display_options.php:1154
3706
  #: app/features/mec/meta_boxes/display_options.php:1241
3707
+ #: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
3708
+ msgid "Type 1"
3709
  msgstr ""
3710
 
3711
  #: app/features/mec/meta_boxes/display_options.php:1155
3712
  #: app/features/mec/meta_boxes/display_options.php:1242
3713
+ #: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
3714
+ msgid "Type 2"
3715
  msgstr ""
3716
 
3717
  #: app/features/mec/meta_boxes/display_options.php:1156
3718
  #: app/features/mec/meta_boxes/display_options.php:1243
3719
+ #: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
3720
+ msgid "Type 3"
3721
+ msgstr ""
3722
+
3723
+ #: app/features/mec/meta_boxes/display_options.php:1157
3724
+ #: app/features/mec/meta_boxes/display_options.php:1244
3725
+ #: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
3726
  msgid "Type 4"
3727
  msgstr ""
3728
 
3729
+ #: app/features/mec/meta_boxes/display_options.php:1181
3730
  msgid "Default values are d, F and Y"
3731
  msgstr ""
3732
 
3733
+ #: app/features/mec/meta_boxes/display_options.php:1192
3734
+ #: app/features/mec/meta_boxes/display_options.php:1203
3735
  msgid "Default value is \"M d, Y\""
3736
  msgstr ""
3737
 
3738
+ #: app/features/mec/meta_boxes/display_options.php:1222
3739
+ #: app/features/mec/meta_boxes/display_options.php:1331
3740
  msgid "Auto Play Time"
3741
  msgstr ""
3742
 
3743
+ #: app/features/mec/meta_boxes/display_options.php:1223
3744
+ #: app/features/mec/meta_boxes/display_options.php:1332
3745
  msgid "eg. 3000 default is 3 second"
3746
  msgstr ""
3747
 
3753
  msgid "Head Text"
3754
  msgstr ""
3755
 
3756
+ #: app/features/mec/meta_boxes/display_options.php:1245
3757
+ #: app/features/popup/shortcode.php:289
3758
  msgid "Type 5"
3759
  msgstr ""
3760
 
3761
+ #: app/features/mec/meta_boxes/display_options.php:1425
3762
  msgid "Default values are j and M"
3763
  msgstr ""
3764
 
3799
  msgstr ""
3800
 
3801
  #: app/features/mec/meta_boxes/filter.php:183
3802
+ #: app/features/popup/shortcode.php:324
3803
  msgid "Include Expired Events"
3804
  msgstr ""
3805
 
3806
  #: app/features/mec/meta_boxes/filter.php:190
3807
+ #: app/features/popup/shortcode.php:325
3808
  msgid ""
3809
  "You have ability to include past/expired events if you like so it will show "
3810
  "upcoming and expired events based on start date that you selected."
3811
  msgstr ""
3812
 
3813
  #: app/features/mec/meta_boxes/filter.php:197
3814
+ #: app/features/popup/shortcode.php:335
3815
  msgid "Show Only Expired Events"
3816
  msgstr ""
3817
 
3823
  msgstr ""
3824
 
3825
  #: app/features/mec/meta_boxes/filter.php:204
3826
+ #: app/features/popup/shortcode.php:336
3827
  msgid "only"
3828
  msgstr ""
3829
 
3832
  msgstr ""
3833
 
3834
  #: app/features/mec/meta_boxes/filter.php:212
3835
+ #: app/features/popup/shortcode.php:346
3836
  msgid "Show Only Ongoing Events"
3837
  msgstr ""
3838
 
3839
  #: app/features/mec/meta_boxes/filter.php:219
3840
+ #: app/features/popup/shortcode.php:347
3841
  msgid "It shows only ongoing events on List and Grid skins."
3842
  msgstr ""
3843
 
3933
  #: app/features/mec/meta_boxes/search_form.php:716
3934
  #: app/features/mec/meta_boxes/search_form.php:723
3935
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
3936
+ #: app/features/mec/settings.php:421
3937
  msgid "Disabled"
3938
  msgstr ""
3939
 
3948
  #: app/features/mec/meta_boxes/search_form.php:535
3949
  #: app/features/mec/meta_boxes/search_form.php:596
3950
  #: app/features/mec/meta_boxes/search_form.php:693
3951
+ #: app/features/mec/settings.php:827 app/features/mec/single.php:217
3952
+ #: app/features/search.php:83 app/features/speakers.php:61
3953
+ #: app/features/speakers.php:269 app/libraries/main.php:5290
3954
  #: app/libraries/skins.php:936
3955
  msgid "Speaker"
3956
  msgstr ""
3966
  #: app/features/mec/meta_boxes/search_form.php:542
3967
  #: app/features/mec/meta_boxes/search_form.php:603
3968
  #: app/features/mec/meta_boxes/search_form.php:700
3969
+ #: app/features/mec/settings.php:834 app/features/mec/single.php:226
3970
+ #: app/features/search.php:88 app/libraries/skins.php:962
3971
  msgid "Tag"
3972
  msgstr ""
3973
 
4046
  msgstr ""
4047
 
4048
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4049
+ #: app/features/mec/settings.php:864 app/features/mec/settings.php:869
4050
+ #: app/features/mec/settings.php:917 app/features/mec/settings.php:941
4051
+ #: app/features/mec/settings.php:965
4052
  msgid "API Key"
4053
  msgstr ""
4054
 
4055
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:870
4056
+ #: app/features/mec/settings.php:883
4057
  msgid "Required!"
4058
  msgstr ""
4059
 
4645
  msgstr ""
4646
 
4647
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4648
+ #: app/libraries/notifications.php:610
4649
  msgid "Booking Reminder"
4650
  msgstr ""
4651
 
4700
  msgstr ""
4701
 
4702
  #: app/features/mec/notifications.php:720
4703
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:742
4704
+ #: app/features/mec/settings.php:746
4705
  msgid "Event Note"
4706
  msgstr ""
4707
 
4871
  msgstr ""
4872
 
4873
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4874
+ #: app/libraries/main.php:5294
4875
  msgid "Weekdays"
4876
  msgstr ""
4877
 
4927
  "12 AM and you don't want those events considered as multiple days events!"
4928
  msgstr ""
4929
 
4930
+ #: app/features/mec/settings.php:222
4931
+ msgid "Open \"Add Shortcode\" as Popup"
4932
+ msgstr ""
4933
+
4934
+ #: app/features/mec/settings.php:225
4935
+ msgid "Enable"
4936
+ msgstr ""
4937
+
4938
+ #: app/features/mec/settings.php:232 app/libraries/main.php:532
4939
  msgid "Archive Pages"
4940
  msgstr ""
4941
 
4942
+ #: app/features/mec/settings.php:235 app/features/mec/settings.php:240
4943
  msgid "Archive Page Title"
4944
  msgstr ""
4945
 
4946
+ #: app/features/mec/settings.php:241
4947
  msgid "Default value is Events - It's title of the page"
4948
  msgstr ""
4949
 
4950
+ #: app/features/mec/settings.php:249 app/features/mec/settings.php:317
4951
  msgid "Archive Page Skin"
4952
  msgstr ""
4953
 
4954
+ #: app/features/mec/settings.php:257
4955
  msgid "Put shortcode..."
4956
  msgstr ""
4957
 
4958
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
4959
+ #: app/features/mec/settings.php:278 app/features/mec/settings.php:287
4960
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:334
4961
+ #: app/features/mec/settings.php:349 app/features/mec/settings.php:352
4962
+ #: app/features/mec/settings.php:361 app/features/mec/settings.php:387
4963
  msgid "There is no skins"
4964
  msgstr ""
4965
 
4966
+ #: app/features/mec/settings.php:263 app/features/mec/settings.php:337
4967
  #: app/features/mec/single.php:69
4968
  msgid "Modern Style"
4969
  msgstr ""
4970
 
4971
+ #: app/features/mec/settings.php:305 app/features/mec/settings.php:379
4972
  msgid "colorful"
4973
  msgstr ""
4974
 
4975
+ #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
4976
  msgid "Clean Style"
4977
  msgstr ""
4978
 
4979
+ #: app/features/mec/settings.php:318
4980
  msgid "Default value is Calendar/Monthly View, But you can change it "
4981
  msgstr ""
4982
 
4983
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
4984
  msgid "See Demo"
4985
  msgstr ""
4986
 
4987
+ #: app/features/mec/settings.php:326 app/features/mec/settings.php:391
4988
  msgid "Category Page Skin"
4989
  msgstr ""
4990
 
4991
+ #: app/features/mec/settings.php:392
4992
  msgid ""
4993
  "Default value is List View - But you can change it Set a skin for all "
4994
  "categories."
4995
  msgstr ""
4996
 
4997
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:408
4998
  msgid "Category Events Method"
4999
  msgstr ""
5000
 
5001
+ #: app/features/mec/settings.php:404
5002
  msgid "Expired Events"
5003
  msgstr ""
5004
 
5005
+ #: app/features/mec/settings.php:409
5006
  msgid "Default value is Upcoming Events"
5007
  msgstr ""
5008
 
5009
+ #: app/features/mec/settings.php:417 app/features/mec/settings.php:425
5010
  msgid "Events Archive Status"
5011
  msgstr ""
5012
 
5013
+ #: app/features/mec/settings.php:420
5014
  msgid "Enabled (Recommended)"
5015
  msgstr ""
5016
 
5017
+ #: app/features/mec/settings.php:426
5018
  msgid ""
5019
  "If you disable it, then you should create a page as archive page of MEC. "
5020
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
5021
  "MEC rewrite rules."
5022
  msgstr ""
5023
 
5024
+ #: app/features/mec/settings.php:439 app/features/mec/settings.php:444
5025
  msgid "Main Slug"
5026
  msgstr ""
5027
 
5028
+ #: app/features/mec/settings.php:445
5029
  msgid ""
5030
  "Default value is events. You can not have a page with this name. MEC allows "
5031
  "you to create custom URLs for the permalinks and archives to enhance the "
5032
  "applicability and forward-compatibility of the links."
5033
  msgstr ""
5034
 
5035
+ #: app/features/mec/settings.php:449 app/features/mec/settings.php:463
5036
  msgid "Valid characters are lowercase a-z, - character and numbers."
5037
  msgstr ""
5038
 
5039
+ #: app/features/mec/settings.php:453 app/features/mec/settings.php:458
5040
  msgid "Category Slug"
5041
  msgstr ""
5042
 
5043
+ #: app/features/mec/settings.php:459
5044
  msgid ""
5045
  "It's slug of MEC categories, you can change it to events-cat or something "
5046
  "else. Default value is mec-category. You can not have a page with this name."
5047
  msgstr ""
5048
 
5049
+ #: app/features/mec/settings.php:471
5050
  msgid "Currency"
5051
  msgstr ""
5052
 
5053
+ #: app/features/mec/settings.php:481 app/features/mec/settings.php:486
5054
  msgid "Currency Sign"
5055
  msgstr ""
5056
 
5057
+ #: app/features/mec/settings.php:487
5058
  msgid "Default value will be \"currency\" if you leave it empty."
5059
  msgstr ""
5060
 
5061
+ #: app/features/mec/settings.php:494
5062
  msgid "Currency Position"
5063
  msgstr ""
5064
 
5065
+ #: app/features/mec/settings.php:497
5066
  msgid "Before $10"
5067
  msgstr ""
5068
 
5069
+ #: app/features/mec/settings.php:498
5070
  msgid "After 10$"
5071
  msgstr ""
5072
 
5073
+ #: app/features/mec/settings.php:503
5074
  msgid "Thousand Separator"
5075
  msgstr ""
5076
 
5077
+ #: app/features/mec/settings.php:509
5078
  msgid "Decimal Separator"
5079
  msgstr ""
5080
 
5081
+ #: app/features/mec/settings.php:519
5082
  msgid "No decimal"
5083
  msgstr ""
5084
 
5085
+ #: app/features/mec/settings.php:530
5086
  msgid "Enable Google Recaptcha"
5087
  msgstr ""
5088
 
5089
+ #: app/features/mec/settings.php:537
5090
  msgid "Enable on booking form"
5091
  msgstr ""
5092
 
5093
+ #: app/features/mec/settings.php:543
5094
  msgid "Enable on \"Frontend Event Submission\" form"
5095
  msgstr ""
5096
 
5097
+ #: app/features/mec/settings.php:547
5098
  msgid "Site Key"
5099
  msgstr ""
5100
 
5101
+ #: app/features/mec/settings.php:553
5102
  msgid "Secret Key"
5103
  msgstr ""
5104
 
5105
+ #: app/features/mec/settings.php:565 app/features/mec/settings.php:573
5106
  msgid "Time Format"
5107
  msgstr ""
5108
 
5109
+ #: app/features/mec/settings.php:568
5110
  msgid "12 hours format with AM/PM"
5111
  msgstr ""
5112
 
5113
+ #: app/features/mec/settings.php:569
5114
  msgid "24 hours format"
5115
  msgstr ""
5116
 
5117
+ #: app/features/mec/settings.php:574
5118
  msgid "This option, affects the selection of Start/End time."
5119
  msgstr ""
5120
 
5121
+ #: app/features/mec/settings.php:582
5122
  msgid "Events List Page"
5123
  msgstr ""
5124
 
5125
+ #: app/features/mec/settings.php:591 app/features/mec/settings.php:603
5126
  #, php-format
5127
  msgid "Put %s shortcode into the page."
5128
  msgstr ""
5129
 
5130
+ #: app/features/mec/settings.php:594
5131
  msgid "Add/Edit Events Page"
5132
  msgstr ""
5133
 
5134
+ #: app/features/mec/settings.php:618
5135
  msgid ""
5136
  "User redirects to this page after new event submission. Leave it empty if "
5137
  "you want to disable it."
5138
  msgstr ""
5139
 
5140
+ #: app/features/mec/settings.php:643
5141
  msgid "Enable event submission by guest (Not logged-in) users"
5142
  msgstr ""
5143
 
5144
+ #: app/features/mec/settings.php:650
5145
  msgid "Enable mandatory email and name for guest user"
5146
  msgstr ""
5147
 
5148
+ #: app/features/mec/settings.php:654
5149
  msgid "Frontend Event Submission Sections"
5150
  msgstr ""
5151
 
5152
+ #: app/features/mec/settings.php:676 app/widgets/single.php:119
5153
  msgid "Event Categories"
5154
  msgstr ""
5155
 
5156
+ #: app/features/mec/settings.php:682
5157
  msgid "Event Labels"
5158
  msgstr ""
5159
 
5160
+ #: app/features/mec/settings.php:694
5161
  msgid "Event Tags"
5162
  msgstr ""
5163
 
5164
+ #: app/features/mec/settings.php:706 app/widgets/single.php:123
5165
  msgid "Event Organizer"
5166
  msgstr ""
5167
 
5168
+ #: app/features/mec/settings.php:724
5169
  msgid "Booking Options"
5170
  msgstr ""
5171
 
5172
+ #: app/features/mec/settings.php:730
5173
  msgid "Fees / Taxes Options"
5174
  msgstr ""
5175
 
5176
+ #: app/features/mec/settings.php:747
5177
  #, php-format
5178
  msgid ""
5179
  "Users can put a note for editors while they're submitting the event. Also "
5181
  "users' note in email."
5182
  msgstr ""
5183
 
5184
+ #: app/features/mec/settings.php:754 app/features/mec/settings.php:762
5185
  msgid "Visibility of Note"
5186
  msgstr ""
5187
 
5188
+ #: app/features/mec/settings.php:757
5189
  msgid "Always"
5190
  msgstr ""
5191
 
5192
+ #: app/features/mec/settings.php:758
5193
  msgid "While event is not published"
5194
  msgstr ""
5195
 
5196
+ #: app/features/mec/settings.php:763
5197
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5198
  msgstr ""
5199
 
5200
+ #: app/features/mec/settings.php:774 app/libraries/main.php:537
5201
  msgid "User Profile"
5202
  msgstr ""
5203
 
5204
+ #: app/features/mec/settings.php:776
5205
  #, php-format
5206
  msgid ""
5207
  "Put %s shortcode into your desired page. Then users are able to see history "
5208
  "of their bookings."
5209
  msgstr ""
5210
 
5211
+ #: app/features/mec/settings.php:781 app/libraries/main.php:538
5212
  msgid "Search Bar"
5213
  msgstr ""
5214
 
5215
+ #: app/features/mec/settings.php:783
5216
  #, php-format
5217
  msgid ""
5218
  "Put %s shortcode into your desired page. Then users are able to search events"
5219
  msgstr ""
5220
 
5221
+ #: app/features/mec/settings.php:787
5222
  msgid "Ajax Live mode"
5223
  msgstr ""
5224
 
5225
+ #: app/features/mec/settings.php:791
5226
  msgid "Ajax mode"
5227
  msgstr ""
5228
 
5229
+ #: app/features/mec/settings.php:792
5230
  msgid ""
5231
  "if you enable this option, search button disappeared and to use this "
5232
  "feature, text input field must be enabled."
5233
  msgstr ""
5234
 
5235
+ #: app/features/mec/settings.php:800
5236
  msgid "Modern Type"
5237
  msgstr ""
5238
 
5239
+ #: app/features/mec/settings.php:804
5240
  msgid "Search bar fields"
5241
  msgstr ""
5242
 
5243
+ #: app/features/mec/settings.php:846
5244
  msgid "Text input"
5245
  msgstr ""
5246
 
5247
+ #: app/features/mec/settings.php:859
5248
  msgid "Enable Mailchimp Integration"
5249
  msgstr ""
5250
 
5251
+ #: app/features/mec/settings.php:877 app/features/mec/settings.php:882
5252
+ #: app/features/mec/settings.php:923 app/features/mec/settings.php:971
5253
  msgid "List ID"
5254
  msgstr ""
5255
 
5256
+ #: app/features/mec/settings.php:890 app/features/mec/settings.php:898
5257
  msgid "Subscription Status"
5258
  msgstr ""
5259
 
5260
+ #: app/features/mec/settings.php:893
5261
  msgid "Subscribe automatically"
5262
  msgstr ""
5263
 
5264
+ #: app/features/mec/settings.php:894
5265
  msgid "Subscribe by verification"
5266
  msgstr ""
5267
 
5268
+ #: app/features/mec/settings.php:899
5269
  msgid ""
5270
  "If you choose \"Subscribe by verification\" then an email will send to user "
5271
  "by mailchimp for subscription verification."
5272
  msgstr ""
5273
 
5274
+ #: app/features/mec/settings.php:908 app/libraries/main.php:540
5275
  msgid "Campaign Monitor Integration"
5276
  msgstr ""
5277
 
5278
+ #: app/features/mec/settings.php:912
5279
  msgid "Enable Campaign Monitor Integration"
5280
  msgstr ""
5281
 
5282
+ #: app/features/mec/settings.php:932 app/libraries/main.php:541
5283
  msgid "MailerLite Integration"
5284
  msgstr ""
5285
 
5286
+ #: app/features/mec/settings.php:936
5287
  msgid "Enable MailerLite Integration"
5288
  msgstr ""
5289
 
5290
+ #: app/features/mec/settings.php:947
5291
  msgid "Group ID"
5292
  msgstr ""
5293
 
5294
+ #: app/features/mec/settings.php:956 app/libraries/main.php:542
5295
  msgid "Constant Contact Integration"
5296
  msgstr ""
5297
 
5298
+ #: app/features/mec/settings.php:960
5299
  msgid "Enable constantcontact Integration"
5300
  msgstr ""
5301
 
5302
+ #: app/features/mec/settings.php:982
5303
  msgid "Upload Field Options"
5304
  msgstr ""
5305
 
5306
+ #: app/features/mec/settings.php:984
5307
  msgid "Mime types"
5308
  msgstr ""
5309
 
5310
+ #: app/features/mec/settings.php:988
5311
  msgid "Split mime types with \",\"."
5312
  msgstr ""
5313
 
5314
+ #: app/features/mec/settings.php:988
5315
  msgid "Default: jpeg,jpg,png,pdf"
5316
  msgstr ""
5317
 
5318
+ #: app/features/mec/settings.php:991
5319
  msgid "Maximum file size"
5320
  msgstr ""
5321
 
5322
+ #: app/features/mec/settings.php:995
5323
  msgid "The unit is Megabyte \"MB\""
5324
  msgstr ""
5325
 
5981
  msgid "eg. https://webnus.net"
5982
  msgstr ""
5983
 
5984
+ #: app/features/organizers.php:312 app/libraries/main.php:5318
5985
  #: app/skins/single.php:862
5986
  msgid "Other Organizers"
5987
  msgstr ""
5991
  "You can select extra organizers in addition to main organizer if you like."
5992
  msgstr ""
5993
 
5994
+ #: app/features/popup/shortcode.php:34
5995
+ msgid "Adding a Shortcode..."
5996
+ msgstr ""
5997
+
5998
+ #: app/features/popup/shortcode.php:42
5999
+ msgid "Shortcode Name"
6000
+ msgstr ""
6001
+
6002
+ #: app/features/popup/shortcode.php:43
6003
+ msgid "Shortcode name is required"
6004
+ msgstr ""
6005
+
6006
+ #: app/features/popup/shortcode.php:313
6007
+ msgid "Select Event"
6008
+ msgstr ""
6009
+
6010
+ #: app/features/popup/shortcode.php:336
6011
+ #, php-format
6012
+ msgid "It shows %s expired/past events."
6013
+ msgstr ""
6014
+
6015
+ #: app/features/popup/shortcode.php:360
6016
+ msgid "Your Shortcode"
6017
+ msgstr ""
6018
+
6019
+ #: app/features/popup/shortcode.php:363
6020
+ msgid "Copy"
6021
+ msgstr ""
6022
+
6023
+ #: app/features/popup/shortcode.php:366
6024
+ msgid "Put this shortcode into your desired page."
6025
+ msgstr ""
6026
+
6027
+ #: app/features/popup/shortcode.php:372
6028
+ msgid "Prev"
6029
+ msgstr ""
6030
+
6031
+ #: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
6032
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6033
+ #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6034
+ msgid "Next"
6035
+ msgstr ""
6036
+
6037
+ #: app/features/popup/shortcode.php:374
6038
+ msgid "New Shortcode"
6039
+ msgstr ""
6040
+
6041
  #: app/features/profile.php:74
6042
  #, php-format
6043
  msgid "Please %s/%s in order to see your bookings / profile."
6044
  msgstr ""
6045
 
6046
+ #: app/features/profile/profile.php:18 app/libraries/main.php:2143
6047
  msgid "Your booking already canceled!"
6048
  msgstr ""
6049
 
6051
  msgid "#"
6052
  msgstr ""
6053
 
6054
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3153
6055
  msgid "Status"
6056
  msgstr ""
6057
 
6058
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2258
6059
  msgid "Attendees"
6060
  msgstr ""
6061
 
6084
  msgid "No bookings found!"
6085
  msgstr ""
6086
 
6087
+ #: app/features/search.php:93 app/libraries/main.php:5284
6088
  msgid "label"
6089
  msgstr ""
6090
 
6091
+ #: app/features/search.php:128
6092
  msgid "Please enter at least 3 characters and try again"
6093
  msgstr ""
6094
 
6109
  msgstr ""
6110
 
6111
  #: app/features/search_bar/search_result.php:11
6112
+ #: app/libraries/notifications.php:954 app/libraries/render.php:488
6113
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6114
  #: app/skins/single.php:160 app/skins/single.php:753
6115
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6213
  msgid "Upgrade"
6214
  msgstr ""
6215
 
6216
+ #: app/libraries/factory.php:362
6217
  msgid "day"
6218
  msgstr ""
6219
 
6220
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:132
6221
+ #: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
6222
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6223
  msgid "days"
6224
  msgstr ""
6225
 
6226
+ #: app/libraries/factory.php:364
6227
  msgid "hour"
6228
  msgstr ""
6229
 
6230
+ #: app/libraries/factory.php:365 app/modules/countdown/details.php:139
6231
+ #: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
6232
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6233
  msgid "hours"
6234
  msgstr ""
6235
 
6236
+ #: app/libraries/factory.php:366
6237
  msgid "minute"
6238
  msgstr ""
6239
 
6240
+ #: app/libraries/factory.php:367 app/modules/countdown/details.php:146
6241
+ #: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
6242
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6243
  msgid "minutes"
6244
  msgstr ""
6245
 
6246
+ #: app/libraries/factory.php:368
6247
  msgid "second"
6248
  msgstr ""
6249
 
6250
+ #: app/libraries/factory.php:369 app/modules/countdown/details.php:153
6251
+ #: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
6252
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6253
  msgid "seconds"
6254
  msgstr ""
6255
 
6256
+ #: app/libraries/factory.php:417
6257
  msgid "MEC Single Sidebar"
6258
  msgstr ""
6259
 
6260
+ #: app/libraries/factory.php:418
6261
  msgid "Custom sidebar for single and modal page of MEC."
6262
  msgstr ""
6263
 
6265
  msgid "There is no excerpt because this is a protected post."
6266
  msgstr ""
6267
 
6268
+ #: app/libraries/main.php:331 app/libraries/main.php:1759
6269
+ #: app/libraries/main.php:1784
6270
  msgid "Grid View"
6271
  msgstr ""
6272
 
6273
+ #: app/libraries/main.php:332 app/libraries/main.php:1760
6274
+ #: app/libraries/main.php:1785
6275
  msgid "Agenda View"
6276
  msgstr ""
6277
 
6278
+ #: app/libraries/main.php:333 app/libraries/main.php:1751
6279
+ #: app/libraries/main.php:1776
6280
  msgid "Full Calendar"
6281
  msgstr ""
6282
 
6283
+ #: app/libraries/main.php:335 app/libraries/main.php:1753
6284
+ #: app/libraries/main.php:1778
6285
  msgid "Calendar/Monthly View"
6286
  msgstr ""
6287
 
6288
+ #: app/libraries/main.php:338 app/libraries/main.php:1756
6289
+ #: app/libraries/main.php:1781
6290
  msgid "Timetable View"
6291
  msgstr ""
6292
 
6293
+ #: app/libraries/main.php:339 app/libraries/main.php:1757
6294
+ #: app/libraries/main.php:1782
6295
  msgid "Masonry View"
6296
  msgstr ""
6297
 
6298
+ #: app/libraries/main.php:340 app/libraries/main.php:1761
6299
+ #: app/libraries/main.php:1786
6300
  msgid "Map View"
6301
  msgstr ""
6302
 
6328
  msgid "Tile View"
6329
  msgstr ""
6330
 
6331
+ #: app/libraries/main.php:385 app/libraries/main.php:5296
6332
  msgid "SU"
6333
  msgstr ""
6334
 
6335
+ #: app/libraries/main.php:386 app/libraries/main.php:5297
6336
  msgid "MO"
6337
  msgstr ""
6338
 
6339
+ #: app/libraries/main.php:387 app/libraries/main.php:5298
6340
  msgid "TU"
6341
  msgstr ""
6342
 
6343
+ #: app/libraries/main.php:388 app/libraries/main.php:5299
6344
  msgid "WE"
6345
  msgstr ""
6346
 
6347
+ #: app/libraries/main.php:389 app/libraries/main.php:5300
6348
  msgid "TH"
6349
  msgstr ""
6350
 
6351
+ #: app/libraries/main.php:390 app/libraries/main.php:5301
6352
  msgid "FR"
6353
  msgstr ""
6354
 
6355
+ #: app/libraries/main.php:391 app/libraries/main.php:5302
6356
  msgid "SA"
6357
  msgstr ""
6358
 
6419
  msgid "Event at this location"
6420
  msgstr ""
6421
 
6422
+ #: app/libraries/main.php:1529
6423
  msgid "Facebook"
6424
  msgstr ""
6425
 
6426
+ #: app/libraries/main.php:1530
6427
  msgid "Twitter"
6428
  msgstr ""
6429
 
6430
+ #: app/libraries/main.php:1531 app/libraries/main.php:1588
6431
  msgid "Linkedin"
6432
  msgstr ""
6433
 
6434
+ #: app/libraries/main.php:1532 app/libraries/main.php:1624
6435
  msgid "VK"
6436
  msgstr ""
6437
 
6438
+ #: app/libraries/main.php:1533
6439
  msgid "Tumblr"
6440
  msgstr ""
6441
 
6442
+ #: app/libraries/main.php:1534
6443
  msgid "Pinterest"
6444
  msgstr ""
6445
 
6446
+ #: app/libraries/main.php:1535
6447
  msgid "Flipboard"
6448
  msgstr ""
6449
 
6450
+ #: app/libraries/main.php:1536
6451
  msgid "GetPocket"
6452
  msgstr ""
6453
 
6454
+ #: app/libraries/main.php:1537
6455
  msgid "Reddit"
6456
  msgstr ""
6457
 
6458
+ #: app/libraries/main.php:1538
6459
  msgid "WhatsApp"
6460
  msgstr ""
6461
 
6462
+ #: app/libraries/main.php:1539
6463
  msgid "Telegram"
6464
  msgstr ""
6465
 
6466
+ #: app/libraries/main.php:1558
6467
  msgid "Share on Facebook"
6468
  msgstr ""
6469
 
6470
+ #: app/libraries/main.php:1573
6471
  msgid "Tweet"
6472
  msgstr ""
6473
 
6474
+ #: app/libraries/main.php:1639
6475
  msgid "Share on Tumblr"
6476
  msgstr ""
6477
 
6478
+ #: app/libraries/main.php:1655
6479
  msgid "Share on Pinterest"
6480
  msgstr ""
6481
 
6482
+ #: app/libraries/main.php:1671
6483
  msgid "Share on Flipboard"
6484
  msgstr ""
6485
 
6486
+ #: app/libraries/main.php:1689
6487
  msgid "Share on GetPocket"
6488
  msgstr ""
6489
 
6490
+ #: app/libraries/main.php:1705
6491
  msgid "Share on Reddit"
6492
  msgstr ""
6493
 
6494
+ #: app/libraries/main.php:1721
6495
  msgid "Share on Telegram"
6496
  msgstr ""
6497
 
6498
+ #: app/libraries/main.php:1739
6499
  msgid "Share on WhatsApp"
6500
  msgstr ""
6501
 
6502
+ #: app/libraries/main.php:1762
6503
  msgid "Custom Shortcode"
6504
  msgstr ""
6505
 
6506
+ #: app/libraries/main.php:2123
6507
  msgid "Your booking already verified!"
6508
  msgstr ""
6509
 
6510
+ #: app/libraries/main.php:2128
6511
  msgid "Your booking successfully verified."
6512
  msgstr ""
6513
 
6514
+ #: app/libraries/main.php:2129
6515
  msgid "Your booking cannot verify!"
6516
  msgstr ""
6517
 
6518
+ #: app/libraries/main.php:2148
6519
  msgid "Your booking successfully canceled."
6520
  msgstr ""
6521
 
6522
+ #: app/libraries/main.php:2149
6523
  msgid "Your booking cannot be canceled."
6524
  msgstr ""
6525
 
6526
+ #: app/libraries/main.php:2153
6527
  msgid "You canceled the payment successfully."
6528
  msgstr ""
6529
 
6530
+ #: app/libraries/main.php:2157
6531
  msgid "You returned from payment gateway successfully."
6532
  msgstr ""
6533
 
6534
+ #: app/libraries/main.php:2173
6535
  msgid "Cannot find the invoice!"
6536
  msgstr ""
6537
 
6538
+ #: app/libraries/main.php:2173
6539
  msgid "Invoice is invalid."
6540
  msgstr ""
6541
 
6542
+ #: app/libraries/main.php:2193
6543
  msgid ""
6544
  "Your booking still is not confirmed. You able download it after confirmation!"
6545
  msgstr ""
6546
 
6547
+ #: app/libraries/main.php:2193
6548
  msgid "Booking Not Confirmed."
6549
  msgstr ""
6550
 
6551
+ #: app/libraries/main.php:2199
6552
  msgid "Cannot find the booking!"
6553
  msgstr ""
6554
 
6555
+ #: app/libraries/main.php:2199
6556
  msgid "Booking is invalid."
6557
  msgstr ""
6558
 
6559
+ #: app/libraries/main.php:2228
6560
  #, php-format
6561
  msgid "%s Invoice"
6562
  msgstr ""
6563
 
6564
+ #: app/libraries/main.php:2302
6565
  msgid "Billing"
6566
  msgstr ""
6567
 
6568
+ #: app/libraries/main.php:2313
6569
  msgid "Total"
6570
  msgstr ""
6571
 
6572
+ #: app/libraries/main.php:2320
6573
  msgid "Payment"
6574
  msgstr ""
6575
 
6576
+ #: app/libraries/main.php:2324
6577
  msgid "Gateway"
6578
  msgstr ""
6579
 
6580
+ #: app/libraries/main.php:2332
6581
  msgid "Payment Time"
6582
  msgstr ""
6583
 
6584
+ #: app/libraries/main.php:2393
6585
  msgid "Request is not valid."
6586
  msgstr ""
6587
 
6588
+ #: app/libraries/main.php:2393
6589
  msgid "iCal export stopped!"
6590
  msgstr ""
6591
 
6592
+ #: app/libraries/main.php:2737 app/libraries/main.php:2767
6593
+ #: app/libraries/main.php:2796 app/libraries/main.php:2826
6594
+ #: app/libraries/main.php:2855 app/libraries/main.php:2884
6595
+ #: app/libraries/main.php:2913 app/libraries/main.php:2942
6596
+ #: app/libraries/main.php:2971 app/libraries/main.php:2995
6597
+ #: app/libraries/main.php:3039 app/libraries/main.php:3083
6598
+ #: app/libraries/main.php:3130 app/libraries/main.php:3177
6599
  msgid "Sort"
6600
  msgstr ""
6601
 
6602
+ #: app/libraries/main.php:2743 app/libraries/main.php:2773
6603
+ #: app/libraries/main.php:2802 app/libraries/main.php:2832
6604
+ #: app/libraries/main.php:2861 app/libraries/main.php:2890
6605
+ #: app/libraries/main.php:2919 app/libraries/main.php:2948
6606
+ #: app/libraries/main.php:3001 app/libraries/main.php:3045
6607
+ #: app/libraries/main.php:3089 app/libraries/main.php:3136
6608
  msgid "Required Field"
6609
  msgstr ""
6610
 
6611
+ #: app/libraries/main.php:2749 app/libraries/main.php:2779
6612
+ #: app/libraries/main.php:2808 app/libraries/main.php:2838
6613
+ #: app/libraries/main.php:2867 app/libraries/main.php:2896
6614
+ #: app/libraries/main.php:2925 app/libraries/main.php:2954
6615
+ #: app/libraries/main.php:3007 app/libraries/main.php:3051
6616
+ #: app/libraries/main.php:3095 app/libraries/main.php:3142
6617
  msgid "Insert a label for this field"
6618
  msgstr ""
6619
 
6620
+ #: app/libraries/main.php:2977
6621
  msgid "HTML and shortcode are allowed."
6622
  msgstr ""
6623
 
6624
+ #: app/libraries/main.php:3020 app/libraries/main.php:3064
6625
+ #: app/libraries/main.php:3108
6626
  msgid "Option"
6627
  msgstr ""
6628
 
6629
+ #: app/libraries/main.php:3142
6630
  #, php-format
6631
  msgid "Instead of %s, the page title with a link will be show."
6632
  msgstr ""
6633
 
6634
+ #: app/libraries/main.php:3144
6635
  msgid "Agreement Page"
6636
  msgstr ""
6637
 
6638
+ #: app/libraries/main.php:3155
6639
  msgid "Checked by default"
6640
  msgstr ""
6641
 
6642
+ #: app/libraries/main.php:3156
6643
  msgid "Unchecked by default"
6644
  msgstr ""
6645
 
6646
+ #: app/libraries/main.php:3179
6647
  msgid "Insert a label for this option"
6648
  msgstr ""
6649
 
6650
+ #: app/libraries/main.php:3194
6651
  msgid "Free"
6652
  msgstr ""
6653
 
6654
+ #: app/libraries/main.php:3800 app/libraries/main.php:5546
6655
  msgid "M.E. Calender"
6656
  msgstr ""
6657
 
6658
+ #: app/libraries/main.php:3955
6659
  #, php-format
6660
  msgid "Copy of %s"
6661
  msgstr ""
6662
 
6663
+ #: app/libraries/main.php:4673
6664
  msgid "Booked an event."
6665
  msgstr ""
6666
 
6667
+ #: app/libraries/main.php:4714
6668
  #, php-format
6669
  msgid "%s booked %s event."
6670
  msgstr ""
6671
 
6672
+ #: app/libraries/main.php:5279
6673
  msgid "Taxonomies"
6674
  msgstr ""
6675
 
6676
+ #: app/libraries/main.php:5281
6677
  msgid "Category Plural Label"
6678
  msgstr ""
6679
 
6680
+ #: app/libraries/main.php:5282
6681
  msgid "Category Singular Label"
6682
  msgstr ""
6683
 
6684
+ #: app/libraries/main.php:5283
6685
  msgid "Label Plural Label"
6686
  msgstr ""
6687
 
6688
+ #: app/libraries/main.php:5284
6689
  msgid "Label Singular Label"
6690
  msgstr ""
6691
 
6692
+ #: app/libraries/main.php:5285
6693
  msgid "Location Plural Label"
6694
  msgstr ""
6695
 
6696
+ #: app/libraries/main.php:5286
6697
  msgid "Location Singular Label"
6698
  msgstr ""
6699
 
6700
+ #: app/libraries/main.php:5287
6701
  msgid "Organizer Plural Label"
6702
  msgstr ""
6703
 
6704
+ #: app/libraries/main.php:5288
6705
  msgid "Organizer Singular Label"
6706
  msgstr ""
6707
 
6708
+ #: app/libraries/main.php:5289
6709
  msgid "Speaker Plural Label"
6710
  msgstr ""
6711
 
6712
+ #: app/libraries/main.php:5290
6713
  msgid "Speaker Singular Label"
6714
  msgstr ""
6715
 
6716
+ #: app/libraries/main.php:5296
6717
  msgid "Sunday abbreviation"
6718
  msgstr ""
6719
 
6720
+ #: app/libraries/main.php:5297
6721
  msgid "Monday abbreviation"
6722
  msgstr ""
6723
 
6724
+ #: app/libraries/main.php:5298
6725
  msgid "Tuesday abbreviation"
6726
  msgstr ""
6727
 
6728
+ #: app/libraries/main.php:5299
6729
  msgid "Wednesday abbreviation"
6730
  msgstr ""
6731
 
6732
+ #: app/libraries/main.php:5300
6733
  msgid "Thursday abbreviation"
6734
  msgstr ""
6735
 
6736
+ #: app/libraries/main.php:5301
6737
  msgid "Friday abbreviation"
6738
  msgstr ""
6739
 
6740
+ #: app/libraries/main.php:5302
6741
  msgid "Saturday abbreviation"
6742
  msgstr ""
6743
 
6744
+ #: app/libraries/main.php:5306
6745
  msgid "Others"
6746
  msgstr ""
6747
 
6748
+ #: app/libraries/main.php:5308
6749
  msgid "Booking Success Message"
6750
  msgstr ""
6751
 
6752
+ #: app/libraries/main.php:5308
6753
  msgid ""
6754
  "Thanks for your booking. Your tickets booked, booking verification might be "
6755
  "needed, please check your email."
6756
  msgstr ""
6757
 
6758
+ #: app/libraries/main.php:5309 app/widgets/single.php:131
6759
  msgid "Register Button"
6760
  msgstr ""
6761
 
6762
+ #: app/libraries/main.php:5309 app/skins/available_spot/tpl.php:223
6763
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6764
+ #: app/skins/grid/render.php:124 app/skins/grid/render.php:171
6765
+ #: app/skins/grid/render.php:215 app/skins/grid/render.php:244
6766
+ #: app/skins/list/render.php:109 app/skins/list/render.php:195
6767
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
6768
  #: app/skins/single.php:777 app/skins/single/default.php:255
6769
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
6776
  msgid "REGISTER"
6777
  msgstr ""
6778
 
6779
+ #: app/libraries/main.php:5310
6780
  msgid "View Detail Button"
6781
  msgstr ""
6782
 
6783
+ #: app/libraries/main.php:5310 app/skins/carousel/render.php:160
6784
+ #: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
6785
+ #: app/skins/grid/render.php:171 app/skins/grid/render.php:215
6786
+ #: app/skins/grid/render.php:244 app/skins/list/render.php:109
6787
+ #: app/skins/list/render.php:195 app/skins/masonry/render.php:188
6788
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
6789
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
6790
  #: app/skins/slider/render.php:320
6791
  msgid "View Detail"
6792
  msgstr ""
6793
 
6794
+ #: app/libraries/main.php:5311
6795
  msgid "Event Detail Button"
6796
  msgstr ""
6797
 
6798
+ #: app/libraries/main.php:5311 app/skins/countdown/tpl.php:244
6799
  msgid "Event Detail"
6800
  msgstr ""
6801
 
6802
+ #: app/libraries/main.php:5313
6803
  msgid "More Info Link"
6804
  msgstr ""
6805
 
6806
+ #: app/libraries/main.php:5316
6807
  msgid "Ticket (Singular)"
6808
  msgstr ""
6809
 
6810
+ #: app/libraries/main.php:5317
6811
  msgid "Tickets (Plural)"
6812
  msgstr ""
6813
 
6814
+ #: app/libraries/main.php:5403
6815
  msgid "EventON"
6816
  msgstr ""
6817
 
6818
+ #: app/libraries/main.php:5404
6819
  msgid "The Events Calendar"
6820
  msgstr ""
6821
 
6822
+ #: app/libraries/main.php:5405
6823
  msgid "Events Schedule WP Plugin"
6824
  msgstr ""
6825
 
6826
+ #: app/libraries/main.php:5406
6827
  msgid "Calendarize It"
6828
  msgstr ""
6829
 
6830
+ #: app/libraries/main.php:5407
6831
  msgid "Event Espresso"
6832
  msgstr ""
6833
 
6834
+ #: app/libraries/main.php:5408
6835
  msgid "Events Manager (Recurring)"
6836
  msgstr ""
6837
 
6838
+ #: app/libraries/main.php:5409
6839
  msgid "Events Manager (Single)"
6840
  msgstr ""
6841
 
6842
+ #: app/libraries/main.php:5483 app/libraries/main.php:5503
6843
  msgid "Confirmed"
6844
  msgstr ""
6845
 
6846
+ #: app/libraries/main.php:5484 app/libraries/main.php:5511
6847
  msgid "Rejected"
6848
  msgstr ""
6849
 
6850
+ #: app/libraries/main.php:5485 app/libraries/main.php:5507
6851
  msgid "Pending"
6852
  msgstr ""
6853
 
6854
+ #: app/libraries/main.php:5533
6855
  msgid "Waiting"
6856
  msgstr ""
6857
 
6858
+ #: app/libraries/main.php:5738 app/libraries/render.php:80
6859
  #: app/libraries/render.php:418
6860
  msgid "Skin controller does not exist."
6861
  msgstr ""
6862
 
6863
+ #: app/libraries/main.php:5852
6864
  msgid "Sold Out"
6865
  msgstr ""
6866
 
6867
+ #: app/libraries/main.php:5860
6868
  msgid "Last Few Tickets"
6869
  msgstr ""
6870
 
6876
  msgid "Your booking is received."
6877
  msgstr ""
6878
 
6879
+ #: app/libraries/notifications.php:275
6880
  msgid "Your booking is confirmed."
6881
  msgstr ""
6882
 
6883
+ #: app/libraries/notifications.php:442
6884
  msgid "booking canceled."
6885
  msgstr ""
6886
 
6887
+ #: app/libraries/notifications.php:517
6888
  msgid "A new booking is received."
6889
  msgstr ""
6890
 
6891
+ #: app/libraries/notifications.php:741
6892
  msgid "A new event is added."
6893
  msgstr ""
6894
 
6895
+ #: app/libraries/notifications.php:810
6896
  msgid "Your event is published."
6897
  msgstr ""
6898
 
6899
+ #: app/libraries/notifications.php:1046 app/libraries/notifications.php:1057
6900
+ #: app/libraries/notifications.php:1059
6901
  msgid "to"
6902
  msgstr ""
6903
 
6904
+ #: app/libraries/notifications.php:1074 app/modules/export/details.php:46
6905
  msgid "+ Add to Google Calendar"
6906
  msgstr ""
6907
 
6908
+ #: app/libraries/notifications.php:1075 app/modules/export/details.php:47
6909
  msgid "+ iCal export"
6910
  msgstr ""
6911
 
6912
+ #: app/libraries/notifications.php:1138
6913
  msgid "Yes"
6914
  msgstr ""
6915
 
6916
+ #: app/libraries/notifications.php:1138
6917
  msgid "No"
6918
  msgstr ""
6919
 
6962
  msgid "Fill other attendees information like the first form."
6963
  msgstr ""
6964
 
 
 
 
 
 
 
6965
  #: app/modules/booking/steps/message.php:7
6966
  msgid "Thanks for your booking."
6967
  msgstr ""
7099
  msgid "Load More"
7100
  msgstr ""
7101
 
7102
+ #: app/skins/available_spot/tpl.php:158
7103
  msgid "Available Spot(s):"
7104
  msgstr ""
7105
 
7106
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7107
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7108
+ #: app/skins/list/render.php:129
7109
  msgid "EVENT DETAIL"
7110
  msgstr ""
7111
 
7200
  msgid "Show events based on created shortcodes."
7201
  msgstr ""
7202
 
7203
+ #: app/widgets/MEC.php:86
7204
  msgid "Title:"
7205
  msgstr ""
7206
 
7207
+ #: app/widgets/MEC.php:93
7208
  msgid "Shortcode:"
7209
  msgstr ""
7210
 
7211
+ #: app/widgets/MEC.php:103
7212
  msgid "Enable No Event Block Display: "
7213
  msgstr ""
7214
 
7215
+ #: app/widgets/MEC.php:107
7216
  msgid "Create some calendars first."
7217
  msgstr ""
7218
 
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: 2020-01-29 15:47+0330\n"
8
- "PO-Revision-Date: 2020-01-29 15:48+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -25,8 +25,8 @@ msgstr "Modern Events Calendar"
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
28
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:438
29
- #: app/features/mec.php:469 app/features/mec.php:499
30
  msgid "Shortcode"
31
  msgstr "Shortcode"
32
 
@@ -60,13 +60,14 @@ msgid "Select Type"
60
  msgstr "Seleccionar tipo"
61
 
62
  #: app/features/colors.php:50 app/features/fes/form.php:807
63
- #: app/features/mec/settings.php:680
64
  msgid "Event Color"
65
  msgstr "Color del evento"
66
 
67
- #: app/features/contextual.php:55 app/features/mec.php:414
68
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
69
- #: app/features/mec/support.php:20 app/libraries/main.php:594
 
70
  msgid "Settings"
71
  msgstr "Ajustes"
72
 
@@ -191,7 +192,7 @@ msgstr ""
191
  msgid "General Options"
192
  msgstr "Opciones generales"
193
 
194
- #: app/features/contextual.php:139 app/features/mec/settings.php:429
195
  #: app/libraries/main.php:533
196
  msgid "Slugs/Permalinks"
197
  msgstr "Enlaces permanentes"
@@ -200,7 +201,7 @@ msgstr "Enlaces permanentes"
200
  msgid "Event Details/Single Event Page"
201
  msgstr "Detalles del Evento/Página de Evento Único"
202
 
203
- #: app/features/contextual.php:166 app/features/mec/settings.php:461
204
  #: app/libraries/main.php:534
205
  msgid "Currency Options"
206
  msgstr "Opciones de moneda"
@@ -210,7 +211,7 @@ msgstr "Opciones de moneda"
210
  msgid "Google Maps Options"
211
  msgstr "Opciones de Google Maps"
212
 
213
- #: app/features/contextual.php:244 app/features/mec/settings.php:518
214
  #: app/libraries/main.php:535
215
  msgid "Google Recaptcha Options"
216
  msgstr "Opciones de Google Recaptcha"
@@ -229,7 +230,7 @@ msgstr "Redes Sociales"
229
  msgid "Next Event Module"
230
  msgstr "Módulo de Siguiente Evento"
231
 
232
- #: app/features/contextual.php:286 app/features/mec/settings.php:554
233
  #: app/libraries/main.php:536
234
  msgid "Frontend Event Submission"
235
  msgstr "Presentación del evento Frontend"
@@ -256,7 +257,7 @@ msgstr "Cupones"
256
  msgid "BuddyPress Integration"
257
  msgstr "Integración de BuddyPress"
258
 
259
- #: app/features/contextual.php:334 app/features/mec/settings.php:847
260
  #: app/libraries/main.php:539
261
  msgid "Mailchimp Integration"
262
  msgstr "Integración de MailChimp"
@@ -273,16 +274,16 @@ msgid "Events"
273
  msgstr "Eventos"
274
 
275
  #: app/features/events.php:158 app/features/fes.php:223
276
- #: app/features/mec/meta_boxes/display_options.php:1046
277
- #: app/features/mec/meta_boxes/display_options.php:1102
278
- #: app/features/mec/meta_boxes/display_options.php:1137
279
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
280
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
281
  #: app/skins/yearly_view/tpl.php:69
282
  msgid "Event"
283
  msgstr "Evento"
284
 
285
- #: app/features/events.php:159 app/features/mec.php:400
286
  msgid "Add Event"
287
  msgstr "Nuevo evento"
288
 
@@ -312,7 +313,7 @@ msgid "No events found in Trash!"
312
  msgstr "No hay eventos en la papelera"
313
 
314
  #: app/features/events.php:182 app/features/events.php:3320
315
- #: app/features/mec/meta_boxes/display_options.php:957
316
  #: app/features/mec/meta_boxes/search_form.php:31
317
  #: app/features/mec/meta_boxes/search_form.php:93
318
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -324,8 +325,8 @@ msgstr "No hay eventos en la papelera"
324
  #: app/features/mec/meta_boxes/search_form.php:514
325
  #: app/features/mec/meta_boxes/search_form.php:575
326
  #: app/features/mec/meta_boxes/search_form.php:672
327
- #: app/features/mec/settings.php:800 app/features/mec/single.php:204
328
- #: app/features/search.php:67 app/libraries/main.php:5281
329
  #: app/libraries/skins.php:858 app/skins/single.php:566
330
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
331
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -334,8 +335,8 @@ msgid "Category"
334
  msgstr "Categoría"
335
 
336
  #: app/features/events.php:183 app/features/events.php:3275
337
- #: app/features/fes/form.php:757 app/features/mec.php:402
338
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
339
  msgid "Categories"
340
  msgstr "Categorías"
341
 
@@ -424,7 +425,7 @@ msgid "Event Repeating"
424
  msgstr "Repetir el evento"
425
 
426
  #: app/features/events.php:333 app/features/events.php:1286
427
- #: app/features/mec/settings.php:710 app/skins/single.php:947
428
  msgid "Hourly Schedule"
429
  msgstr "Programación horaria"
430
 
@@ -443,7 +444,7 @@ msgstr "Enlace"
443
  #: app/features/events.php:336 app/features/events.php:3322
444
  #: app/features/events.php:3513 app/features/events.php:3555
445
  #: app/features/ix.php:3510 app/features/ix.php:3551
446
- #: app/features/mec/meta_boxes/display_options.php:960
447
  #: app/features/mec/meta_boxes/search_form.php:45
448
  #: app/features/mec/meta_boxes/search_form.php:107
449
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -455,11 +456,11 @@ msgstr "Enlace"
455
  #: app/features/mec/meta_boxes/search_form.php:528
456
  #: app/features/mec/meta_boxes/search_form.php:589
457
  #: app/features/mec/meta_boxes/search_form.php:686
458
- #: app/features/mec/settings.php:812 app/features/mec/single.php:208
459
  #: app/features/organizers.php:58 app/features/organizers.php:204
460
  #: app/features/organizers.php:260 app/features/organizers.php:262
461
- #: app/features/organizers.php:271 app/features/search.php:75
462
- #: app/libraries/main.php:5287 app/libraries/skins.php:910
463
  #: app/skins/single.php:812 app/skins/single/default.php:217
464
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
465
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -467,7 +468,7 @@ msgid "Organizer"
467
  msgstr "Organizador"
468
 
469
  #: app/features/events.php:337 app/features/events.php:1172
470
- #: app/features/fes/form.php:730 app/libraries/main.php:5314
471
  #: app/skins/single.php:589 app/skins/single/default.php:126
472
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
473
  #: app/skins/single/modern.php:208
@@ -486,7 +487,7 @@ msgstr "Datos del invitado"
486
  #: app/features/events.php:3802 app/features/fes.php:223
487
  #: app/features/fes/form.php:689 app/features/labels.php:178
488
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
489
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
490
  #: app/modules/booking/steps/form.php:37
491
  msgid "Name"
492
  msgstr "Nombre"
@@ -497,9 +498,9 @@ msgstr "Nombre"
497
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
498
  #: app/features/organizers.php:111 app/features/organizers.php:152
499
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
500
- #: app/features/speakers.php:196 app/libraries/main.php:1539
501
- #: app/libraries/main.php:1608 app/libraries/main.php:2826
502
- #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
503
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
504
  #: app/skins/single.php:884 app/skins/single/default.php:234
505
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
@@ -517,21 +518,21 @@ msgstr "Día y hora"
517
  #: app/features/fes/form.php:251 app/features/ix.php:3510
518
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
519
  #: app/features/mec/dashboard.php:401
520
- #: app/features/mec/meta_boxes/display_options.php:48
521
- #: app/features/mec/meta_boxes/display_options.php:228
522
- #: app/features/mec/meta_boxes/display_options.php:406
523
- #: app/features/mec/meta_boxes/display_options.php:474
524
- #: app/features/mec/meta_boxes/display_options.php:597
525
- #: app/features/mec/meta_boxes/display_options.php:651
526
- #: app/features/mec/meta_boxes/display_options.php:698
527
- #: app/features/mec/meta_boxes/display_options.php:731
528
- #: app/features/mec/meta_boxes/display_options.php:766
529
- #: app/features/mec/meta_boxes/display_options.php:813
530
- #: app/features/mec/meta_boxes/display_options.php:912
531
- #: app/features/mec/meta_boxes/display_options.php:1160
532
- #: app/features/mec/meta_boxes/display_options.php:1248
533
- #: app/features/mec/meta_boxes/display_options.php:1340
534
- #: app/features/mec/meta_boxes/display_options.php:1407
535
  msgid "Start Date"
536
  msgstr "Día de inicio"
537
 
@@ -602,38 +603,38 @@ msgstr ""
602
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
603
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
604
  #: app/features/mec/dashboard.php:71
605
- #: app/features/mec/meta_boxes/display_options.php:79
606
- #: app/features/mec/meta_boxes/display_options.php:92
607
- #: app/features/mec/meta_boxes/display_options.php:105
608
- #: app/features/mec/meta_boxes/display_options.php:116
609
- #: app/features/mec/meta_boxes/display_options.php:128
610
- #: app/features/mec/meta_boxes/display_options.php:259
611
- #: app/features/mec/meta_boxes/display_options.php:271
612
- #: app/features/mec/meta_boxes/display_options.php:283
613
- #: app/features/mec/meta_boxes/display_options.php:296
614
- #: app/features/mec/meta_boxes/display_options.php:307
615
- #: app/features/mec/meta_boxes/display_options.php:320
616
- #: app/features/mec/meta_boxes/display_options.php:331
617
- #: app/features/mec/meta_boxes/display_options.php:438
618
- #: app/features/mec/meta_boxes/display_options.php:614
619
- #: app/features/mec/meta_boxes/display_options.php:944
620
- #: app/features/mec/meta_boxes/display_options.php:1017
621
- #: app/features/mec/meta_boxes/display_options.php:1029
622
- #: app/features/mec/meta_boxes/display_options.php:1040
623
- #: app/features/mec/meta_boxes/display_options.php:1072
624
- #: app/features/mec/meta_boxes/display_options.php:1083
625
- #: app/features/mec/meta_boxes/display_options.php:1096
626
- #: app/features/mec/meta_boxes/display_options.php:1131
627
- #: app/features/mec/meta_boxes/display_options.php:1180
628
- #: app/features/mec/meta_boxes/display_options.php:1191
629
- #: app/features/mec/meta_boxes/display_options.php:1202
630
- #: app/features/mec/meta_boxes/display_options.php:1268
631
- #: app/features/mec/meta_boxes/display_options.php:1281
632
- #: app/features/mec/meta_boxes/display_options.php:1294
633
- #: app/features/mec/meta_boxes/display_options.php:1307
634
- #: app/features/mec/meta_boxes/display_options.php:1320
635
- #: app/features/mec/meta_boxes/display_options.php:1371
636
- #: app/features/mec/meta_boxes/display_options.php:1424
637
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
638
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
639
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
@@ -647,14 +648,14 @@ msgstr ""
647
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
648
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
649
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
650
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
651
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
652
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:418
653
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:451
654
- #: app/features/mec/settings.php:479 app/features/mec/settings.php:566
655
- #: app/features/mec/settings.php:739 app/features/mec/settings.php:755
656
- #: app/features/mec/settings.php:862 app/features/mec/settings.php:875
657
- #: app/features/mec/settings.php:891 app/features/mec/single.php:42
658
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
659
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
660
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
@@ -844,7 +845,7 @@ msgstr "Próxima aparición de otros eventos"
844
  #: app/features/events.php:1168 app/features/events.php:3513
845
  #: app/features/events.php:3555 app/features/fes/form.php:727
846
  #: app/features/ix.php:3510 app/features/ix.php:3551
847
- #: app/features/mec/settings.php:656 app/libraries/main.php:5313
848
  #: app/widgets/single.php:103
849
  msgid "Event Cost"
850
  msgstr "Coste del evento"
@@ -861,8 +862,8 @@ msgstr "Excluir ciertos días"
861
 
862
  #: app/features/events.php:1204 app/features/events.php:2541
863
  #: app/features/fes.php:223 app/features/mec/booking.php:491
864
- #: app/features/profile/profile.php:53 app/libraries/main.php:2242
865
- #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
866
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
867
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
868
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
@@ -914,13 +915,13 @@ msgstr "Titulo"
914
  #: app/features/events.php:2357 app/features/events.php:2399
915
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
916
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
917
- #: app/libraries/main.php:2745 app/libraries/main.php:2775
918
- #: app/libraries/main.php:2804 app/libraries/main.php:2834
919
- #: app/libraries/main.php:2863 app/libraries/main.php:2892
920
- #: app/libraries/main.php:2921 app/libraries/main.php:2950
921
- #: app/libraries/main.php:2972 app/libraries/main.php:3003
922
- #: app/libraries/main.php:3047 app/libraries/main.php:3091
923
- #: app/libraries/main.php:3138 app/libraries/main.php:3177
924
  msgid "Remove"
925
  msgstr "Eliminar"
926
 
@@ -946,9 +947,9 @@ msgstr "Descripción"
946
 
947
  #: app/features/events.php:1351 app/features/events.php:1384
948
  #: app/features/events.php:1445 app/features/fes/form.php:851
949
- #: app/features/mec.php:410 app/features/mec/modules.php:52
950
- #: app/features/mec/settings.php:704 app/features/speakers.php:62
951
- #: app/libraries/main.php:565 app/libraries/main.php:5288
952
  #: app/modules/speakers/details.php:18
953
  msgid "Speakers"
954
  msgstr ""
@@ -960,12 +961,12 @@ msgid "New Day"
960
  msgstr "Días de semana"
961
 
962
  #: app/features/events.php:1476 app/features/fes/form.php:704
963
- #: app/features/mec/settings.php:650
964
  msgid "Event Links"
965
  msgstr "Enlaces de eventos"
966
 
967
  #: app/features/events.php:1479 app/features/events.php:1485
968
- #: app/features/fes/form.php:706 app/libraries/main.php:5311
969
  msgid "Event Link"
970
  msgstr "Enlace del evento"
971
 
@@ -992,7 +993,7 @@ msgid "URL Shortener"
992
  msgstr ""
993
 
994
  #: app/features/events.php:1495 app/features/events.php:1508
995
- #: app/features/fes/form.php:711 app/libraries/main.php:5312
996
  #: app/skins/single.php:673 app/skins/single/default.php:140
997
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
998
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1027,7 +1028,7 @@ msgstr "Límite total de reservas"
1027
  #: app/features/events.php:1596 app/features/events.php:1849
1028
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1029
  #: app/modules/booking/steps/tickets.php:40
1030
- #: app/skins/available_spot/tpl.php:160
1031
  msgid "Unlimited"
1032
  msgstr "Ilimitado"
1033
 
@@ -1061,7 +1062,7 @@ msgid "12"
1061
  msgstr ""
1062
 
1063
  #: app/features/events.php:1653 app/libraries/book.php:60
1064
- #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1065
  msgid "Tickets"
1066
  msgstr "Tickets"
1067
 
@@ -1165,7 +1166,7 @@ msgstr ""
1165
 
1166
  #: app/features/events.php:1909 app/features/events.php:1935
1167
  #: app/features/events.php:2113 app/features/labels.php:60
1168
- #: app/features/mec/meta_boxes/display_options.php:958
1169
  #: app/features/mec/meta_boxes/search_form.php:66
1170
  #: app/features/mec/meta_boxes/search_form.php:128
1171
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1177,7 +1178,7 @@ msgstr ""
1177
  #: app/features/mec/meta_boxes/search_form.php:549
1178
  #: app/features/mec/meta_boxes/search_form.php:610
1179
  #: app/features/mec/meta_boxes/search_form.php:707
1180
- #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1181
  #: app/libraries/skins.php:988
1182
  msgid "Label"
1183
  msgstr "Etiqueta"
@@ -1222,7 +1223,7 @@ msgstr "Cantidad (Por ticket)"
1222
  msgid "Amount (Per Booking)"
1223
  msgstr "Cantidad (por reservas)"
1224
 
1225
- #: app/features/events.php:2283 app/features/mec/settings.php:728
1226
  msgid "Ticket Variations / Options"
1227
  msgstr ""
1228
 
@@ -1244,48 +1245,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1244
  msgstr ""
1245
 
1246
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1247
- #: app/libraries/main.php:2767
1248
  #, fuzzy
1249
  #| msgid "Name"
1250
  msgid "MEC Name"
1251
  msgstr "Nombre"
1252
 
1253
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1254
- #: app/libraries/main.php:2796
1255
  #, fuzzy
1256
  #| msgid "Email"
1257
  msgid "MEC Email"
1258
  msgstr "Correo electrónico"
1259
 
1260
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1261
- #: app/libraries/main.php:2737
1262
  msgid "Text"
1263
  msgstr "Texto"
1264
 
1265
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1266
  #: app/features/organizers.php:103 app/features/organizers.php:148
1267
  #: app/features/speakers.php:119 app/features/speakers.php:192
1268
- #: app/features/speakers.php:271 app/libraries/main.php:2913
1269
  msgid "Tel"
1270
  msgstr "Tel"
1271
 
1272
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1273
- #: app/libraries/main.php:2855
1274
  msgid "File"
1275
  msgstr ""
1276
 
1277
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1278
- #: app/libraries/main.php:2942
1279
  msgid "Textarea"
1280
  msgstr "Área de texto"
1281
 
1282
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1283
- #: app/libraries/main.php:2995
1284
  msgid "Checkboxes"
1285
  msgstr "Checkboxes"
1286
 
1287
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1288
- #: app/libraries/main.php:3039
1289
  msgid "Radio Buttons"
1290
  msgstr "Botón tipo radio"
1291
 
@@ -1365,17 +1366,17 @@ msgstr "Botón tipo radio"
1365
  #: app/features/mec/meta_boxes/search_form.php:696
1366
  #: app/features/mec/meta_boxes/search_form.php:703
1367
  #: app/features/mec/meta_boxes/search_form.php:710
1368
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1369
  msgid "Dropdown"
1370
  msgstr "Desplegable"
1371
 
1372
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1373
- #: app/libraries/main.php:3130
1374
  msgid "Agreement"
1375
  msgstr "Acuerdo"
1376
 
1377
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1378
- #: app/libraries/main.php:2971
1379
  msgid "Paragraph"
1380
  msgstr "Párrafo"
1381
 
@@ -1408,7 +1409,7 @@ msgstr "Límite de asistentes"
1408
  #: app/features/ix.php:3551 app/features/locations.php:58
1409
  #: app/features/locations.php:230 app/features/locations.php:287
1410
  #: app/features/locations.php:289 app/features/locations.php:298
1411
- #: app/features/mec/meta_boxes/display_options.php:959
1412
  #: app/features/mec/meta_boxes/search_form.php:38
1413
  #: app/features/mec/meta_boxes/search_form.php:100
1414
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1420,9 +1421,9 @@ msgstr "Límite de asistentes"
1420
  #: app/features/mec/meta_boxes/search_form.php:521
1421
  #: app/features/mec/meta_boxes/search_form.php:582
1422
  #: app/features/mec/meta_boxes/search_form.php:679
1423
- #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1424
- #: app/features/search.php:71 app/libraries/main.php:2236
1425
- #: app/libraries/main.php:5285 app/libraries/skins.php:884
1426
  #: app/skins/single.php:493 app/skins/single.php:924
1427
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1428
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1486,8 +1487,8 @@ msgid "%s Email"
1486
  msgstr "%s Correo electrónico"
1487
 
1488
  #: app/features/events.php:3808 app/features/fes.php:223
1489
- #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1490
- #: app/libraries/main.php:5315
1491
  msgid "Ticket"
1492
  msgstr "Ticket"
1493
 
@@ -1535,7 +1536,7 @@ msgstr "Por favor %s/%s para gestionar eventos."
1535
  msgid "The event removed!"
1536
  msgstr "¡El evento ha sido eliminado!"
1537
 
1538
- #: app/features/fes.php:223 app/libraries/main.php:2248
1539
  msgid "Transaction ID"
1540
  msgstr "ID Transacción"
1541
 
@@ -1590,43 +1591,43 @@ msgid "Go back to events list"
1590
  msgstr "Regrese a la lista de eventos."
1591
 
1592
  #: app/features/fes/form.php:366
1593
- #: app/features/mec/meta_boxes/display_options.php:843
1594
  #: app/libraries/main.php:410
1595
  msgid "Monday"
1596
  msgstr "Lunes"
1597
 
1598
  #: app/features/fes/form.php:367
1599
- #: app/features/mec/meta_boxes/display_options.php:844
1600
  #: app/libraries/main.php:410
1601
  msgid "Tuesday"
1602
  msgstr "Martes"
1603
 
1604
  #: app/features/fes/form.php:368
1605
- #: app/features/mec/meta_boxes/display_options.php:845
1606
  #: app/libraries/main.php:410
1607
  msgid "Wednesday"
1608
  msgstr "Miércoles"
1609
 
1610
  #: app/features/fes/form.php:369
1611
- #: app/features/mec/meta_boxes/display_options.php:846
1612
  #: app/libraries/main.php:410
1613
  msgid "Thursday"
1614
  msgstr "Jueves"
1615
 
1616
  #: app/features/fes/form.php:370
1617
- #: app/features/mec/meta_boxes/display_options.php:847
1618
  #: app/libraries/main.php:410
1619
  msgid "Friday"
1620
  msgstr "Viernes"
1621
 
1622
  #: app/features/fes/form.php:371
1623
- #: app/features/mec/meta_boxes/display_options.php:848
1624
  #: app/libraries/main.php:410
1625
  msgid "Saturday"
1626
  msgstr "Sábado"
1627
 
1628
  #: app/features/fes/form.php:372
1629
- #: app/features/mec/meta_boxes/display_options.php:842
1630
  #: app/libraries/main.php:410
1631
  msgid "Sunday"
1632
  msgstr "Domingo"
@@ -1659,7 +1660,7 @@ msgstr ""
1659
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1660
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1661
 
1662
- #: app/features/fes/form.php:744 app/features/mec/settings.php:662
1663
  msgid "Featured Image"
1664
  msgstr "Imagen destacada"
1665
 
@@ -1668,15 +1669,15 @@ msgid "Remove Image"
1668
  msgstr "Eliminar imagen"
1669
 
1670
  #: app/features/fes/form.php:783 app/features/labels.php:61
1671
- #: app/features/labels.php:221 app/features/mec.php:403
1672
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1673
  #: app/skins/single.php:702 app/skins/single/default.php:155
1674
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1675
  #: app/skins/single/modern.php:223
1676
  msgid "Labels"
1677
  msgstr "Etiquetas"
1678
 
1679
- #: app/features/fes/form.php:829 app/features/mec.php:401
1680
  #: app/features/mec/meta_boxes/filter.php:147
1681
  msgid "Tags"
1682
  msgstr "Tags"
@@ -2006,7 +2007,7 @@ msgstr "Añadir a Google Calendar"
2006
 
2007
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2008
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2009
- #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2010
  msgid "Checking ..."
2011
  msgstr "Verificando…"
2012
 
@@ -2056,8 +2057,8 @@ msgstr "ICS Feed"
2056
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2057
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2058
  #: app/features/mec/booking.php:359
2059
- #: app/features/mec/meta_boxes/display_options.php:175
2060
- #: app/features/mec/meta_boxes/display_options.php:367
2061
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2062
  #: app/features/mec/modules.php:228
2063
  #, php-format
@@ -2067,15 +2068,15 @@ msgstr "Se requiere %s para usar esta funcionalidad."
2067
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2068
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2069
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2070
- #: app/features/mec/meta_boxes/display_options.php:175
2071
- #: app/features/mec/meta_boxes/display_options.php:367
2072
- #: app/features/mec/meta_boxes/display_options.php:395
2073
- #: app/features/mec/meta_boxes/display_options.php:535
2074
- #: app/features/mec/meta_boxes/display_options.php:586
2075
- #: app/features/mec/meta_boxes/display_options.php:693
2076
- #: app/features/mec/meta_boxes/display_options.php:800
2077
- #: app/features/mec/meta_boxes/display_options.php:907
2078
- #: app/features/mec/meta_boxes/display_options.php:1120
2079
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2080
  #: app/features/mec/modules.php:228
2081
  msgid "Pro version of Modern Events Calendar"
@@ -2251,7 +2252,7 @@ msgid "Auto Synchronization"
2251
  msgstr "Autosincronización"
2252
 
2253
  #: app/features/ix/sync.php:22
2254
- #: app/features/mec/meta_boxes/display_options.php:907
2255
  #, php-format
2256
  msgid "%s is required to use synchronization feature."
2257
  msgstr "Se requiere %s para usar la funcionalidad de sincronización."
@@ -2411,16 +2412,16 @@ msgid "Select label color"
2411
  msgstr "Elige un color de etiqueta"
2412
 
2413
  #: app/features/labels.php:112 app/features/labels.php:139
2414
- #: app/features/mec/meta_boxes/display_options.php:38
2415
- #: app/features/mec/meta_boxes/display_options.php:215
2416
- #: app/features/mec/meta_boxes/display_options.php:400
2417
- #: app/features/mec/meta_boxes/display_options.php:591
2418
- #: app/features/mec/meta_boxes/display_options.php:641
2419
- #: app/features/mec/meta_boxes/display_options.php:805
2420
- #: app/features/mec/meta_boxes/display_options.php:1002
2421
- #: app/features/mec/meta_boxes/display_options.php:1059
2422
- #: app/features/mec/meta_boxes/display_options.php:1151
2423
- #: app/features/mec/meta_boxes/display_options.php:1238
2424
  msgid "Style"
2425
  msgstr "Estilo"
2426
 
@@ -2432,26 +2433,26 @@ msgstr ""
2432
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2433
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2434
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2435
- #: app/skins/grid/render.php:52 app/skins/list/render.php:37
2436
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2437
  #: app/skins/monthly_view/calendar_clean.php:86
2438
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2439
- #: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
2440
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2441
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2442
  msgid "Featured"
2443
  msgstr ""
2444
 
2445
  #: app/features/labels.php:118 app/features/labels.php:143
2446
- #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2447
- #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2448
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2449
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2450
- #: app/skins/list/render.php:38 app/skins/masonry/render.php:30
2451
  #: app/skins/monthly_view/calendar.php:90
2452
  #: app/skins/monthly_view/calendar_clean.php:90
2453
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2454
- #: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
2455
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2456
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2457
  msgid "Canceled"
@@ -2477,9 +2478,9 @@ msgstr "Slug"
2477
  msgid "Event %s"
2478
  msgstr "Evento %s"
2479
 
2480
- #: app/features/locations.php:59 app/features/mec.php:404
2481
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2482
- #: app/libraries/main.php:5284
2483
  msgid "Locations"
2484
  msgstr "Lugar"
2485
 
@@ -2550,7 +2551,7 @@ msgstr "Nombre del lugar"
2550
  msgid "eg. City Hall"
2551
  msgstr "ej. Almería"
2552
 
2553
- #: app/features/locations.php:310 app/features/mec/settings.php:692
2554
  #: app/widgets/single.php:115
2555
  msgid "Event Location"
2556
  msgstr "Lugar del evento"
@@ -2586,7 +2587,7 @@ msgstr "Elegir imagen"
2586
  msgid "Don't show map in single event page"
2587
  msgstr "No mostrar el mapa en la página del detalle del evento"
2588
 
2589
- #: app/features/locations.php:356 app/libraries/main.php:5318
2590
  #, fuzzy
2591
  #| msgid "Locations"
2592
  msgid "Other Locations"
@@ -2606,116 +2607,116 @@ msgstr ""
2606
  msgid "<strong>"
2607
  msgstr ""
2608
 
2609
- #: app/features/mec.php:185
2610
  msgid ""
2611
  "Activation faild. Please check your purchase code or license type."
2612
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2613
  msgstr ""
2614
 
2615
- #: app/features/mec.php:185
2616
  msgid "Troubleshooting"
2617
  msgstr ""
2618
 
2619
- #: app/features/mec.php:255 app/libraries/notifications.php:933
2620
  #, php-format
2621
  msgid "%s to %s"
2622
  msgstr ""
2623
 
2624
- #: app/features/mec.php:278
2625
  msgid ""
2626
  "Your options is not in JSON format. Please insert correct options in this "
2627
  "field and try again."
2628
  msgstr ""
2629
 
2630
- #: app/features/mec.php:285
2631
  msgid "Your options field can not be empty!"
2632
  msgstr ""
2633
 
2634
- #: app/features/mec.php:291
2635
  msgid "Your options imported successfuly."
2636
  msgstr ""
2637
 
2638
- #: app/features/mec.php:384
2639
  #, fuzzy
2640
  #| msgid "Support"
2641
  msgid "MEC - Support"
2642
  msgstr "Soporte"
2643
 
2644
- #: app/features/mec.php:384 app/features/mec/support-page.php:9
2645
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2646
  msgid "Support"
2647
  msgstr "Soporte"
2648
 
2649
- #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2650
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2651
- #: app/libraries/main.php:5286
2652
  msgid "Organizers"
2653
  msgstr "Organizadores"
2654
 
2655
- #: app/features/mec.php:413 app/features/mec.php:437
2656
  #: app/features/mec/dashboard.php:264
2657
  msgid "Shortcodes"
2658
  msgstr "Shortcodes"
2659
 
2660
- #: app/features/mec.php:414
2661
  msgid "MEC - Settings"
2662
  msgstr "Ajustes MEC"
2663
 
2664
- #: app/features/mec.php:415
2665
  #, fuzzy
2666
  #| msgid "MEC - Settings"
2667
  msgid "MEC - Addons"
2668
  msgstr "Ajustes MEC"
2669
 
2670
- #: app/features/mec.php:415 app/features/mec/addons.php:22
2671
  msgid "Addons"
2672
  msgstr ""
2673
 
2674
- #: app/features/mec.php:418
2675
  #, fuzzy
2676
  #| msgid "Support"
2677
  msgid "MEC - Report"
2678
  msgstr "Soporte"
2679
 
2680
- #: app/features/mec.php:418
2681
  #, fuzzy
2682
  #| msgid "Export"
2683
  msgid "Report"
2684
  msgstr "Exportar"
2685
 
2686
- #: app/features/mec.php:439
2687
  msgid "Add Shortcode"
2688
  msgstr "Nuevo Shortcode"
2689
 
2690
- #: app/features/mec.php:440
2691
  msgid "Add New Shortcode"
2692
  msgstr "Añadir nuevo Shortcode"
2693
 
2694
- #: app/features/mec.php:441
2695
  msgid "No shortcodes found!"
2696
  msgstr "No hay shortcodes"
2697
 
2698
- #: app/features/mec.php:442
2699
  msgid "All Shortcodes"
2700
  msgstr "Todos los Shortcodes"
2701
 
2702
- #: app/features/mec.php:443
2703
  msgid "Edit shortcodes"
2704
  msgstr "Editar Shortcodes"
2705
 
2706
- #: app/features/mec.php:444
2707
  msgid "No shortcodes found in Trash!"
2708
  msgstr "No hay shortcodes en la papelera"
2709
 
2710
- #: app/features/mec.php:497
2711
  msgid "Display Options"
2712
  msgstr "Opciones de pantalla"
2713
 
2714
- #: app/features/mec.php:498
2715
  msgid "Filter Options"
2716
  msgstr "Opciones de filtros"
2717
 
2718
- #: app/features/mec.php:500
2719
  msgid "Search Form"
2720
  msgstr "Formulario de Búsqueda"
2721
 
@@ -2723,21 +2724,21 @@ msgstr "Formulario de Búsqueda"
2723
  msgid "Display content's images as Popup"
2724
  msgstr ""
2725
 
2726
- #: app/features/mec.php:888
2727
  msgid "Single Event Display Method"
2728
  msgstr "Método de vista para página del evento"
2729
 
2730
- #: app/features/mec.php:893
2731
  msgid "Separate Window"
2732
  msgstr "Ventana aparte"
2733
 
2734
- #: app/features/mec.php:894
2735
  msgid "Modal 1"
2736
  msgstr "Modal 1"
2737
 
2738
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2739
- #: app/features/mec/dashboard.php:81 app/features/mec/report.php:17
2740
- #: app/features/mec/support-page.php:21
2741
  msgid "Version"
2742
  msgstr "Versión"
2743
 
@@ -2774,8 +2775,8 @@ msgstr "Buscar %s"
2774
  #: app/features/mec/notifications.php:828
2775
  #: app/features/mec/notifications.php:924
2776
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2777
- #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2778
- #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2779
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2780
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2781
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
@@ -2807,13 +2808,13 @@ msgid "Default is Y-m-d"
2807
  msgstr "El valor predeterminado es Y-m-d"
2808
 
2809
  #: app/features/mec/booking.php:115
2810
- #: app/features/mec/meta_boxes/display_options.php:134
2811
- #: app/features/mec/meta_boxes/display_options.php:348
2812
- #: app/features/mec/meta_boxes/display_options.php:444
2813
- #: app/features/mec/meta_boxes/display_options.php:950
2814
- #: app/features/mec/meta_boxes/display_options.php:1217
2815
- #: app/features/mec/meta_boxes/display_options.php:1326
2816
- #: app/features/mec/meta_boxes/display_options.php:1377
2817
  msgid "Limit"
2818
  msgstr "Límite"
2819
 
@@ -2861,7 +2862,7 @@ msgid ""
2861
  msgstr ""
2862
 
2863
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2864
- #: app/features/mec/settings.php:599 app/features/mec/settings.php:609
2865
  msgid "Thank You Page"
2866
  msgstr "Página de agradecimiento"
2867
 
@@ -2874,17 +2875,17 @@ msgstr ""
2874
  "Déjalo vacío si lo deseas desactivado."
2875
 
2876
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2877
- #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
2878
  #, fuzzy
2879
  #| msgid "Thank You Page"
2880
  msgid "Thank You Page Time Interval"
2881
  msgstr "Página de agradecimiento"
2882
 
2883
- #: app/features/mec/booking.php:167 app/features/mec/settings.php:621
2884
  msgid "2000 mean 2 seconds"
2885
  msgstr ""
2886
 
2887
- #: app/features/mec/booking.php:171 app/features/mec/settings.php:625
2888
  msgid ""
2889
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2890
  "2000 means 2 seconds."
@@ -2995,14 +2996,14 @@ msgstr ""
2995
 
2996
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2997
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2998
- #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2999
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3000
  msgid "Saved"
3001
  msgstr "Guardado"
3002
 
3003
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3004
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3005
- #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3006
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3007
  msgid "Settings Saved!"
3008
  msgstr "¡Ajustes guardados!"
@@ -3010,14 +3011,14 @@ msgstr "¡Ajustes guardados!"
3010
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3011
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3012
  #: app/features/mec/notifications.php:905
3013
- #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3014
- #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3015
- #: app/features/mec/single.php:289 app/libraries/main.php:5530
3016
  msgid "Verified"
3017
  msgstr "Verificado"
3018
 
3019
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3020
- #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3021
  #: app/features/mec/single.php:291
3022
  msgid "Please Refresh Page"
3023
  msgstr "Por favor, actualiza la página"
@@ -3047,7 +3048,7 @@ msgstr ""
3047
  msgid "Update"
3048
  msgstr "Actualizar %s"
3049
 
3050
- #: app/features/mec/dashboard.php:96
3051
  #, fuzzy, php-format
3052
  #| msgid ""
3053
  #| "You're using %s version of Modern Events Calendar. To use advanced "
@@ -3062,28 +3063,29 @@ msgstr ""
3062
  "sistema de reserva avanzado, las temas modernos como agenda, horario, "
3063
  "masonry, vista anual, puntos disponibles, etc podrías %s a la versión Pro."
3064
 
3065
- #: app/features/mec/dashboard.php:96
3066
  msgid "lite"
3067
  msgstr "lite"
3068
 
3069
- #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
 
3070
  msgid "GO PREMIUM"
3071
  msgstr "IR A PREMIUM"
3072
 
3073
- #: app/features/mec/dashboard.php:102
3074
  #, php-format
3075
  msgid ""
3076
  "Easily get a discount coupon by rating us on %s or following and reposting "
3077
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3078
  msgstr ""
3079
 
3080
- #: app/features/mec/dashboard.php:102
3081
  #, fuzzy
3082
  #| msgid "Address"
3083
  msgid "WordPress"
3084
  msgstr "Dirección"
3085
 
3086
- #: app/features/mec/dashboard.php:102
3087
  msgid "Copouns!"
3088
  msgstr ""
3089
 
@@ -3121,7 +3123,7 @@ msgid ""
3121
  "code."
3122
  msgstr ""
3123
 
3124
- #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3125
  msgid "Upcoming Events"
3126
  msgstr "Próximos Eventos"
3127
 
@@ -3170,6 +3172,10 @@ msgstr "Ventas Totales (%s)"
3170
  msgid "Change Log"
3171
  msgstr "Historial de cambios"
3172
 
 
 
 
 
3173
  #: app/features/mec/ie.php:21
3174
  msgid ""
3175
  "Insert your backup files below and press import to restore your site's "
@@ -3211,63 +3217,59 @@ msgstr ""
3211
  "Por cierto, si tu pagina web es multidioma, te recomendamos que cambies los "
3212
  "mensajes desde los archivos de idioma."
3213
 
3214
- #: app/features/mec/meta_boxes/display_options.php:22
3215
  msgid "Skin"
3216
  msgstr "Tema"
3217
 
3218
- #: app/features/mec/meta_boxes/display_options.php:40
3219
- #: app/features/mec/meta_boxes/display_options.php:217
3220
- #: app/features/mec/meta_boxes/display_options.php:643
3221
- #: app/features/mec/meta_boxes/display_options.php:809
3222
- #: app/features/mec/meta_boxes/display_options.php:1004
3223
- #: app/features/mec/settings.php:259 app/features/mec/settings.php:283
3224
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:333
3225
- #: app/features/mec/settings.php:357 app/features/mec/settings.php:366
 
 
3226
  msgid "Classic"
3227
  msgstr "Clásico"
3228
 
3229
- #: app/features/mec/meta_boxes/display_options.php:41
3230
- #: app/features/mec/meta_boxes/display_options.php:219
3231
- #: app/features/mec/settings.php:284 app/features/mec/settings.php:294
3232
- #: app/features/mec/settings.php:358 app/features/mec/settings.php:368
 
3233
  msgid "Minimal"
3234
  msgstr "Mínimo"
3235
 
3236
- #: app/features/mec/meta_boxes/display_options.php:42
3237
- #: app/features/mec/meta_boxes/display_options.php:220
3238
- #: app/features/mec/meta_boxes/display_options.php:593
3239
- #: app/features/mec/meta_boxes/display_options.php:645
3240
- #: app/features/mec/meta_boxes/display_options.php:807
3241
- #: app/features/mec/meta_boxes/display_options.php:1006
3242
- #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3243
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:295
3244
- #: app/features/mec/settings.php:335 app/features/mec/settings.php:348
3245
- #: app/features/mec/settings.php:359 app/features/mec/settings.php:369
 
 
 
3246
  msgid "Modern"
3247
  msgstr "Moderno"
3248
 
3249
- #: app/features/mec/meta_boxes/display_options.php:43
3250
- #: app/features/mec/settings.php:286 app/features/mec/settings.php:360
 
3251
  msgid "Standard"
3252
  msgstr "Estándar"
3253
 
3254
- #: app/features/mec/meta_boxes/display_options.php:44
3255
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:361
 
3256
  msgid "Accordion"
3257
  msgstr "Acordeón"
3258
 
3259
- #: app/features/mec/meta_boxes/display_options.php:50
3260
- #: app/features/mec/meta_boxes/display_options.php:230
3261
- #: app/features/mec/meta_boxes/display_options.php:408
3262
- #: app/features/mec/meta_boxes/display_options.php:700
3263
- #: app/features/mec/meta_boxes/display_options.php:733
3264
- #: app/features/mec/meta_boxes/display_options.php:914
3265
- #: app/features/mec/meta_boxes/display_options.php:1162
3266
- #: app/features/mec/meta_boxes/display_options.php:1250
3267
- #: app/features/mec/meta_boxes/display_options.php:1342
3268
- msgid "Today"
3269
- msgstr "Hoy"
3270
-
3271
  #: app/features/mec/meta_boxes/display_options.php:51
3272
  #: app/features/mec/meta_boxes/display_options.php:231
3273
  #: app/features/mec/meta_boxes/display_options.php:409
@@ -3277,25 +3279,20 @@ msgstr "Hoy"
3277
  #: app/features/mec/meta_boxes/display_options.php:1163
3278
  #: app/features/mec/meta_boxes/display_options.php:1251
3279
  #: app/features/mec/meta_boxes/display_options.php:1343
3280
- msgid "Tomorrow"
3281
- msgstr "Mañana"
3282
 
3283
  #: app/features/mec/meta_boxes/display_options.php:52
3284
  #: app/features/mec/meta_boxes/display_options.php:232
3285
  #: app/features/mec/meta_boxes/display_options.php:410
3286
- #: app/features/mec/meta_boxes/display_options.php:476
3287
- #: app/features/mec/meta_boxes/display_options.php:653
3288
  #: app/features/mec/meta_boxes/display_options.php:702
3289
  #: app/features/mec/meta_boxes/display_options.php:735
3290
- #: app/features/mec/meta_boxes/display_options.php:770
3291
- #: app/features/mec/meta_boxes/display_options.php:817
3292
  #: app/features/mec/meta_boxes/display_options.php:916
3293
  #: app/features/mec/meta_boxes/display_options.php:1164
3294
  #: app/features/mec/meta_boxes/display_options.php:1252
3295
  #: app/features/mec/meta_boxes/display_options.php:1344
3296
- #: app/features/mec/meta_boxes/display_options.php:1409
3297
- msgid "Start of Current Month"
3298
- msgstr "Inicio del mes actual"
3299
 
3300
  #: app/features/mec/meta_boxes/display_options.php:53
3301
  #: app/features/mec/meta_boxes/display_options.php:233
@@ -3311,14 +3308,13 @@ msgstr "Inicio del mes actual"
3311
  #: app/features/mec/meta_boxes/display_options.php:1253
3312
  #: app/features/mec/meta_boxes/display_options.php:1345
3313
  #: app/features/mec/meta_boxes/display_options.php:1410
3314
- msgid "Start of Next Month"
3315
- msgstr "Inicio del siguiente mes"
3316
 
3317
  #: app/features/mec/meta_boxes/display_options.php:54
3318
  #: app/features/mec/meta_boxes/display_options.php:234
3319
  #: app/features/mec/meta_boxes/display_options.php:412
3320
  #: app/features/mec/meta_boxes/display_options.php:478
3321
- #: app/features/mec/meta_boxes/display_options.php:601
3322
  #: app/features/mec/meta_boxes/display_options.php:655
3323
  #: app/features/mec/meta_boxes/display_options.php:704
3324
  #: app/features/mec/meta_boxes/display_options.php:737
@@ -3329,625 +3325,659 @@ msgstr "Inicio del siguiente mes"
3329
  #: app/features/mec/meta_boxes/display_options.php:1254
3330
  #: app/features/mec/meta_boxes/display_options.php:1346
3331
  #: app/features/mec/meta_boxes/display_options.php:1411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3332
  msgid "On a certain date"
3333
  msgstr "Una fecha concreta"
3334
 
3335
- #: app/features/mec/meta_boxes/display_options.php:57
3336
- #: app/features/mec/meta_boxes/display_options.php:237
3337
- #: app/features/mec/meta_boxes/display_options.php:415
3338
- #: app/features/mec/meta_boxes/display_options.php:481
3339
- #: app/features/mec/meta_boxes/display_options.php:604
3340
- #: app/features/mec/meta_boxes/display_options.php:658
3341
- #: app/features/mec/meta_boxes/display_options.php:707
3342
- #: app/features/mec/meta_boxes/display_options.php:741
3343
- #: app/features/mec/meta_boxes/display_options.php:775
3344
- #: app/features/mec/meta_boxes/display_options.php:822
3345
- #: app/features/mec/meta_boxes/display_options.php:921
3346
- #: app/features/mec/meta_boxes/display_options.php:1169
3347
- #: app/features/mec/meta_boxes/display_options.php:1257
3348
- #: app/features/mec/meta_boxes/display_options.php:1349
3349
- #: app/features/mec/meta_boxes/display_options.php:1414
3350
  #, php-format
3351
  msgid "eg. %s"
3352
  msgstr "ej. %s"
3353
 
3354
- #: app/features/mec/meta_boxes/display_options.php:62
3355
  #: app/features/mec/meta_boxes/display_options.php:63
3356
- #: app/features/mec/meta_boxes/display_options.php:66
3357
- #: app/features/mec/meta_boxes/display_options.php:242
3358
  #: app/features/mec/meta_boxes/display_options.php:243
3359
- #: app/features/mec/meta_boxes/display_options.php:246
3360
- #: app/features/mec/meta_boxes/display_options.php:420
3361
  #: app/features/mec/meta_boxes/display_options.php:421
3362
- #: app/features/mec/meta_boxes/display_options.php:424
3363
- #: app/features/mec/meta_boxes/display_options.php:926
3364
  #: app/features/mec/meta_boxes/display_options.php:927
3365
- #: app/features/mec/meta_boxes/display_options.php:930
3366
- #: app/features/mec/meta_boxes/display_options.php:1354
3367
  #: app/features/mec/meta_boxes/display_options.php:1355
3368
- #: app/features/mec/meta_boxes/display_options.php:1358
 
3369
  #, fuzzy
3370
  #| msgid "Maximum Dates"
3371
  msgid "Maximum Date"
3372
  msgstr "Fechas máximas"
3373
 
3374
- #: app/features/mec/meta_boxes/display_options.php:67
3375
- #: app/features/mec/meta_boxes/display_options.php:247
3376
- #: app/features/mec/meta_boxes/display_options.php:425
3377
- #: app/features/mec/meta_boxes/display_options.php:931
3378
- #: app/features/mec/meta_boxes/display_options.php:1359
3379
  #, fuzzy
3380
  #| msgid "Show events based on created shortcodes."
3381
  msgid "Show events before the specified date."
3382
  msgstr "Mostrar eventos basados en shortcodes."
3383
 
3384
- #: app/features/mec/meta_boxes/display_options.php:74
3385
- #: app/features/mec/meta_boxes/display_options.php:78
3386
- #: app/features/mec/meta_boxes/display_options.php:85
3387
- #: app/features/mec/meta_boxes/display_options.php:91
3388
- #: app/features/mec/meta_boxes/display_options.php:98
3389
- #: app/features/mec/meta_boxes/display_options.php:104
3390
- #: app/features/mec/meta_boxes/display_options.php:111
3391
- #: app/features/mec/meta_boxes/display_options.php:115
3392
- #: app/features/mec/meta_boxes/display_options.php:122
3393
- #: app/features/mec/meta_boxes/display_options.php:127
3394
- #: app/features/mec/meta_boxes/display_options.php:254
3395
- #: app/features/mec/meta_boxes/display_options.php:258
3396
- #: app/features/mec/meta_boxes/display_options.php:265
3397
- #: app/features/mec/meta_boxes/display_options.php:270
3398
- #: app/features/mec/meta_boxes/display_options.php:277
3399
- #: app/features/mec/meta_boxes/display_options.php:282
3400
- #: app/features/mec/meta_boxes/display_options.php:289
3401
- #: app/features/mec/meta_boxes/display_options.php:295
3402
- #: app/features/mec/meta_boxes/display_options.php:302
3403
- #: app/features/mec/meta_boxes/display_options.php:306
3404
- #: app/features/mec/meta_boxes/display_options.php:313
3405
- #: app/features/mec/meta_boxes/display_options.php:319
3406
- #: app/features/mec/meta_boxes/display_options.php:326
3407
- #: app/features/mec/meta_boxes/display_options.php:330
3408
- #: app/features/mec/meta_boxes/display_options.php:432
3409
- #: app/features/mec/meta_boxes/display_options.php:437
3410
- #: app/features/mec/meta_boxes/display_options.php:608
3411
- #: app/features/mec/meta_boxes/display_options.php:613
3412
- #: app/features/mec/meta_boxes/display_options.php:854
3413
- #: app/features/mec/meta_boxes/display_options.php:938
3414
- #: app/features/mec/meta_boxes/display_options.php:943
3415
- #: app/features/mec/meta_boxes/display_options.php:1010
3416
- #: app/features/mec/meta_boxes/display_options.php:1016
3417
- #: app/features/mec/meta_boxes/display_options.php:1023
3418
- #: app/features/mec/meta_boxes/display_options.php:1028
3419
- #: app/features/mec/meta_boxes/display_options.php:1035
3420
- #: app/features/mec/meta_boxes/display_options.php:1039
3421
- #: app/features/mec/meta_boxes/display_options.php:1067
3422
- #: app/features/mec/meta_boxes/display_options.php:1071
3423
- #: app/features/mec/meta_boxes/display_options.php:1078
3424
- #: app/features/mec/meta_boxes/display_options.php:1082
3425
- #: app/features/mec/meta_boxes/display_options.php:1089
3426
- #: app/features/mec/meta_boxes/display_options.php:1095
3427
- #: app/features/mec/meta_boxes/display_options.php:1125
3428
- #: app/features/mec/meta_boxes/display_options.php:1130
3429
- #: app/features/mec/meta_boxes/display_options.php:1173
3430
- #: app/features/mec/meta_boxes/display_options.php:1179
3431
- #: app/features/mec/meta_boxes/display_options.php:1186
3432
- #: app/features/mec/meta_boxes/display_options.php:1190
3433
- #: app/features/mec/meta_boxes/display_options.php:1197
3434
- #: app/features/mec/meta_boxes/display_options.php:1201
3435
- #: app/features/mec/meta_boxes/display_options.php:1261
3436
- #: app/features/mec/meta_boxes/display_options.php:1267
3437
- #: app/features/mec/meta_boxes/display_options.php:1274
3438
- #: app/features/mec/meta_boxes/display_options.php:1280
3439
- #: app/features/mec/meta_boxes/display_options.php:1287
3440
- #: app/features/mec/meta_boxes/display_options.php:1293
3441
- #: app/features/mec/meta_boxes/display_options.php:1300
3442
- #: app/features/mec/meta_boxes/display_options.php:1306
3443
- #: app/features/mec/meta_boxes/display_options.php:1313
3444
- #: app/features/mec/meta_boxes/display_options.php:1319
3445
- #: app/features/mec/meta_boxes/display_options.php:1366
3446
- #: app/features/mec/meta_boxes/display_options.php:1370
3447
- #: app/features/mec/meta_boxes/display_options.php:1418
3448
- #: app/features/mec/meta_boxes/display_options.php:1423
3449
- msgid "Date Formats"
3450
- msgstr "Formato de fecha"
3451
-
3452
  #: app/features/mec/meta_boxes/display_options.php:79
3453
- #: app/features/mec/meta_boxes/display_options.php:307
3454
- msgid "Default value is \"M d Y\""
3455
- msgstr "El valor predeterminado es \"M d Y\""
3456
-
3457
  #: app/features/mec/meta_boxes/display_options.php:92
3458
- msgid "Default values are d, M and l"
3459
- msgstr "Los valores predeterminados son d, M y l"
3460
-
3461
  #: app/features/mec/meta_boxes/display_options.php:105
 
 
 
 
 
 
 
 
 
 
 
3462
  #: app/features/mec/meta_boxes/display_options.php:296
 
 
 
3463
  #: app/features/mec/meta_boxes/display_options.php:320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3464
  #: app/features/mec/meta_boxes/display_options.php:1268
 
3465
  #: app/features/mec/meta_boxes/display_options.php:1281
 
3466
  #: app/features/mec/meta_boxes/display_options.php:1294
 
3467
  #: app/features/mec/meta_boxes/display_options.php:1307
 
3468
  #: app/features/mec/meta_boxes/display_options.php:1320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3469
  msgid "Default values are d, F and l"
3470
  msgstr "Los valores predeterminados son d, F y l"
3471
 
3472
- #: app/features/mec/meta_boxes/display_options.php:116
3473
  msgid "Default value is \"M d\""
3474
  msgstr "Valor por defecto es \"M d\""
3475
 
3476
- #: app/features/mec/meta_boxes/display_options.php:128
3477
  #, fuzzy
3478
  #| msgid "Default values are d and F"
3479
  msgid "TDefault values are d and F"
3480
  msgstr "Los valores predeterminados son d y F"
3481
 
3482
- #: app/features/mec/meta_boxes/display_options.php:135
3483
- #: app/features/mec/meta_boxes/display_options.php:349
3484
- #: app/features/mec/meta_boxes/display_options.php:445
3485
- #: app/features/mec/meta_boxes/display_options.php:621
3486
- #: app/features/mec/meta_boxes/display_options.php:663
3487
- #: app/features/mec/meta_boxes/display_options.php:746
3488
- #: app/features/mec/meta_boxes/display_options.php:780
3489
- #: app/features/mec/meta_boxes/display_options.php:827
3490
- #: app/features/mec/meta_boxes/display_options.php:1218
3491
- #: app/features/mec/meta_boxes/display_options.php:1327
3492
- #: app/features/mec/meta_boxes/display_options.php:1378
3493
  msgid "eg. 6"
3494
  msgstr "ej. 6"
3495
 
3496
- #: app/features/mec/meta_boxes/display_options.php:140
3497
  #, fuzzy
3498
  #| msgid "Hide Event Time"
3499
  msgid "Include Events Times"
3500
  msgstr "Ocultar hora del evento"
3501
 
3502
- #: app/features/mec/meta_boxes/display_options.php:151
3503
- #: app/features/mec/meta_boxes/display_options.php:353
3504
- #: app/features/mec/meta_boxes/display_options.php:449
3505
- #: app/features/mec/meta_boxes/display_options.php:987
3506
- #: app/features/mec/meta_boxes/display_options.php:1382
3507
  msgid "Load More Button"
3508
  msgstr "Botón cargar más"
3509
 
3510
- #: app/features/mec/meta_boxes/display_options.php:161
3511
- #: app/features/mec/meta_boxes/display_options.php:459
3512
- #: app/features/mec/meta_boxes/display_options.php:1392
3513
  msgid "Show Month Divider"
3514
  msgstr "Mostrar divisor del mes"
3515
 
3516
- #: app/features/mec/meta_boxes/display_options.php:171
3517
- #: app/features/mec/meta_boxes/display_options.php:363
3518
  #, fuzzy
3519
  #| msgid "Show Google Maps on event page"
3520
  msgid "Show Map on top"
3521
  msgstr "Ver eventos en Google Maps"
3522
 
3523
- #: app/features/mec/meta_boxes/display_options.php:186
3524
- #: app/features/mec/meta_boxes/display_options.php:378
3525
- #: app/features/mec/meta_boxes/display_options.php:716
3526
  msgid "Geolocation"
3527
  msgstr "Geolocalización"
3528
 
3529
- #: app/features/mec/meta_boxes/display_options.php:201
3530
  msgid "Toggle for Month Divider"
3531
  msgstr ""
3532
 
3533
- #: app/features/mec/meta_boxes/display_options.php:218
3534
- #: app/features/mec/meta_boxes/display_options.php:402
3535
- #: app/features/mec/meta_boxes/display_options.php:497
3536
- #: app/features/mec/meta_boxes/display_options.php:644
3537
- #: app/features/mec/meta_boxes/display_options.php:808
3538
- #: app/features/mec/meta_boxes/display_options.php:1005
3539
- #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
3540
- #: app/features/mec/settings.php:293 app/features/mec/settings.php:334
3541
- #: app/features/mec/settings.php:349 app/features/mec/settings.php:367
 
 
 
3542
  msgid "Clean"
3543
  msgstr "Limpio"
3544
 
3545
- #: app/features/mec/meta_boxes/display_options.php:221
3546
- #: app/features/mec/meta_boxes/display_options.php:499
3547
- #: app/features/mec/meta_boxes/display_options.php:647
3548
- #: app/features/mec/settings.php:263 app/features/mec/settings.php:296
3549
- #: app/features/mec/settings.php:337 app/features/mec/settings.php:370
 
 
3550
  msgid "Simple"
3551
  msgstr "Simple"
3552
 
3553
- #: app/features/mec/meta_boxes/display_options.php:222
 
3554
  msgid "Colorful"
3555
  msgstr "Colorido"
3556
 
3557
- #: app/features/mec/meta_boxes/display_options.php:223
3558
- #: app/features/mec/meta_boxes/display_options.php:498
3559
- #: app/features/mec/meta_boxes/display_options.php:646
3560
- #: app/features/mec/settings.php:262 app/features/mec/settings.php:298
3561
- #: app/features/mec/settings.php:336 app/features/mec/settings.php:372
 
 
3562
  msgid "Novel"
3563
  msgstr "Novel"
3564
 
3565
- #: app/features/mec/meta_boxes/display_options.php:259
3566
- #: app/features/mec/meta_boxes/display_options.php:1371
3567
  #, fuzzy
3568
  #| msgid "Default value is \"d F Y\""
3569
  msgid "Default value is \"d F Y"
3570
  msgstr "Valor por defecto is \"d F Y\""
3571
 
3572
- #: app/features/mec/meta_boxes/display_options.php:271
3573
  msgid "Default values are d and F"
3574
  msgstr "Los valores predeterminados son d y F"
3575
 
3576
- #: app/features/mec/meta_boxes/display_options.php:283
3577
  msgid "Default values are d and M"
3578
  msgstr "Los valores predeterminados son d y M"
3579
 
3580
- #: app/features/mec/meta_boxes/display_options.php:331
3581
  msgid "Default value is \"d F Y\""
3582
  msgstr "Valor por defecto is \"d F Y\""
3583
 
3584
- #: app/features/mec/meta_boxes/display_options.php:337
3585
- #: app/features/mec/meta_boxes/display_options.php:1208
3586
- #: app/features/mec/meta_boxes/display_options.php:1430
3587
  msgid "Count in row"
3588
  msgstr "Contador en fila"
3589
 
3590
- #: app/features/mec/meta_boxes/display_options.php:395
3591
- #: app/features/mec/meta_boxes/display_options.php:586
3592
- #: app/features/mec/meta_boxes/display_options.php:693
3593
- #: app/features/mec/meta_boxes/display_options.php:800
3594
- #: app/features/mec/meta_boxes/display_options.php:1120
3595
  #, php-format
3596
  msgid "%s is required to use this skin."
3597
  msgstr "Se requiere %s para utilizar este tema."
3598
 
3599
- #: app/features/mec/meta_boxes/display_options.php:438
3600
- #: app/features/mec/meta_boxes/display_options.php:614
3601
  msgid "Default values are l and F j"
3602
  msgstr "Los valores por defectos son l y F j"
3603
 
3604
- #: app/features/mec/meta_boxes/display_options.php:485
3605
  msgid "Default View"
3606
  msgstr "Vista por defecto"
3607
 
3608
- #: app/features/mec/meta_boxes/display_options.php:487
3609
- #: app/features/mec/meta_boxes/display_options.php:508
3610
- #: app/libraries/main.php:330 app/libraries/main.php:1757
3611
- #: app/libraries/main.php:1782
3612
  msgid "List View"
3613
  msgstr "Vista de lista"
3614
 
3615
- #: app/features/mec/meta_boxes/display_options.php:488
3616
- #: app/features/mec/meta_boxes/display_options.php:518
3617
- #: app/libraries/main.php:334 app/libraries/main.php:1751
3618
- #: app/libraries/main.php:1776
3619
  msgid "Yearly View"
3620
  msgstr "Vista anual"
3621
 
3622
- #: app/features/mec/meta_boxes/display_options.php:489
3623
- #: app/features/mec/meta_boxes/display_options.php:540
3624
  msgid "Monthly/Calendar View"
3625
  msgstr "Vista Mensual/Calendario"
3626
 
3627
- #: app/features/mec/meta_boxes/display_options.php:490
3628
- #: app/features/mec/meta_boxes/display_options.php:550
3629
- #: app/libraries/main.php:337 app/libraries/main.php:1753
3630
- #: app/libraries/main.php:1778
3631
  msgid "Weekly View"
3632
  msgstr "Vista de semana"
3633
 
3634
- #: app/features/mec/meta_boxes/display_options.php:491
3635
- #: app/features/mec/meta_boxes/display_options.php:560
3636
- #: app/libraries/main.php:336 app/libraries/main.php:1754
3637
- #: app/libraries/main.php:1779
3638
  msgid "Daily View"
3639
  msgstr "Vista de día"
3640
 
3641
- #: app/features/mec/meta_boxes/display_options.php:495
 
3642
  msgid "Monthly Style"
3643
  msgstr ""
3644
 
3645
- #: app/features/mec/meta_boxes/display_options.php:535
3646
  #, fuzzy, php-format
3647
  #| msgid "%s is required to use this skin."
3648
  msgid "%s is required to use <b>Yearly View</b> skin."
3649
  msgstr "Se requiere %s para utilizar este tema."
3650
 
3651
- #: app/features/mec/meta_boxes/display_options.php:568
3652
  msgid "The price shows only in List View."
3653
  msgstr "El precio sólo aparece en la vista de lista."
3654
 
3655
- #: app/features/mec/meta_boxes/display_options.php:571
3656
  msgid "Display Event Price"
3657
  msgstr "Mostrar el precio del evento"
3658
 
3659
- #: app/features/mec/meta_boxes/display_options.php:599
3660
  msgid "Start of Current Year"
3661
  msgstr "Comienzo del año actual"
3662
 
3663
- #: app/features/mec/meta_boxes/display_options.php:600
3664
  msgid "Start of Next Year"
3665
  msgstr "Comienzo del próximo año"
3666
 
3667
- #: app/features/mec/meta_boxes/display_options.php:620
3668
- #: app/features/mec/meta_boxes/display_options.php:662
3669
- #: app/features/mec/meta_boxes/display_options.php:745
3670
- #: app/features/mec/meta_boxes/display_options.php:779
3671
- #: app/features/mec/meta_boxes/display_options.php:826
3672
  msgid "Events per day"
3673
  msgstr "Eventos por día"
3674
 
3675
- #: app/features/mec/meta_boxes/display_options.php:625
3676
- #: app/features/mec/meta_boxes/display_options.php:667
3677
- #: app/features/mec/meta_boxes/display_options.php:750
3678
- #: app/features/mec/meta_boxes/display_options.php:784
3679
- #: app/features/mec/meta_boxes/display_options.php:888
3680
- #: app/features/mec/meta_boxes/display_options.php:1439
3681
  msgid "Next/Previous Buttons"
3682
  msgstr "Botones Siguiente/Anterior"
3683
 
3684
- #: app/features/mec/meta_boxes/display_options.php:633
3685
  msgid "For showing next/previous year navigation."
3686
  msgstr "Para mostrar la navegación del año siguiente/anterior."
3687
 
3688
- #: app/features/mec/meta_boxes/display_options.php:677
3689
  #, fuzzy
3690
  #| msgid "Text"
3691
  msgid "Uppercase Text"
3692
  msgstr "Texto"
3693
 
3694
- #: app/features/mec/meta_boxes/display_options.php:685
3695
- #: app/features/mec/meta_boxes/display_options.php:758
3696
- #: app/features/mec/meta_boxes/display_options.php:792
3697
- #: app/features/mec/meta_boxes/display_options.php:896
3698
- #: app/features/mec/meta_boxes/display_options.php:1447
3699
  msgid "For showing next/previous month navigation."
3700
  msgstr "Para mostrar navegación siguiente/anterior"
3701
 
3702
- #: app/features/mec/meta_boxes/display_options.php:711
3703
  msgid "Maximum events"
3704
  msgstr "Máximo de eventos"
3705
 
3706
- #: app/features/mec/meta_boxes/display_options.php:712
3707
  msgid "eg. 200"
3708
  msgstr "ej. 200"
3709
 
3710
- #: app/features/mec/meta_boxes/display_options.php:724
3711
  msgid "The geolocation feature works only in secure (https) websites."
3712
  msgstr ""
3713
  "La funcionalidad de geolocalización sólo funciona en sitios web seguros "
3714
  "(https)."
3715
 
3716
- #: app/features/mec/meta_boxes/display_options.php:768
3717
- #: app/features/mec/meta_boxes/display_options.php:815
3718
  msgid "Current Week"
3719
  msgstr "Semana actual"
3720
 
3721
- #: app/features/mec/meta_boxes/display_options.php:769
3722
- #: app/features/mec/meta_boxes/display_options.php:816
3723
  msgid "Next Week"
3724
  msgstr "Siguiente semana"
3725
 
3726
- #: app/features/mec/meta_boxes/display_options.php:831
3727
  msgid "Number of Days"
3728
  msgstr ""
3729
 
3730
- #: app/features/mec/meta_boxes/display_options.php:839
3731
  #, fuzzy
3732
  #| msgid "Start"
3733
  msgid "Week Start"
3734
  msgstr "Inicio"
3735
 
3736
- #: app/features/mec/meta_boxes/display_options.php:841
3737
  #, fuzzy
3738
  #| msgid "Inherit from global options"
3739
  msgid "Inherite from WordPress options"
3740
  msgstr "Heredar opciones globales"
3741
 
3742
- #: app/features/mec/meta_boxes/display_options.php:856
3743
  msgid "1:00"
3744
  msgstr ""
3745
 
3746
- #: app/features/mec/meta_boxes/display_options.php:857
3747
  msgid "2:00"
3748
  msgstr ""
3749
 
3750
- #: app/features/mec/meta_boxes/display_options.php:858
3751
  msgid "3:00"
3752
  msgstr ""
3753
 
3754
- #: app/features/mec/meta_boxes/display_options.php:859
3755
  msgid "4:00"
3756
  msgstr ""
3757
 
3758
- #: app/features/mec/meta_boxes/display_options.php:860
3759
  msgid "5:00"
3760
  msgstr ""
3761
 
3762
- #: app/features/mec/meta_boxes/display_options.php:861
3763
  msgid "6:00"
3764
  msgstr ""
3765
 
3766
- #: app/features/mec/meta_boxes/display_options.php:862
3767
  msgid "7:00"
3768
  msgstr ""
3769
 
3770
- #: app/features/mec/meta_boxes/display_options.php:863
3771
  msgid "8:00"
3772
  msgstr ""
3773
 
3774
- #: app/features/mec/meta_boxes/display_options.php:864
3775
  msgid "9:00"
3776
  msgstr ""
3777
 
3778
- #: app/features/mec/meta_boxes/display_options.php:865
3779
  msgid "10:00"
3780
  msgstr ""
3781
 
3782
- #: app/features/mec/meta_boxes/display_options.php:866
3783
  msgid "11:00"
3784
  msgstr ""
3785
 
3786
- #: app/features/mec/meta_boxes/display_options.php:867
3787
  msgid "12:00"
3788
  msgstr ""
3789
 
3790
- #: app/features/mec/meta_boxes/display_options.php:870
3791
  msgid "13:00"
3792
  msgstr ""
3793
 
3794
- #: app/features/mec/meta_boxes/display_options.php:871
3795
  msgid "14:00"
3796
  msgstr ""
3797
 
3798
- #: app/features/mec/meta_boxes/display_options.php:872
3799
  msgid "15:00"
3800
  msgstr ""
3801
 
3802
- #: app/features/mec/meta_boxes/display_options.php:873
3803
  msgid "16:00"
3804
  msgstr ""
3805
 
3806
- #: app/features/mec/meta_boxes/display_options.php:874
3807
  msgid "17:00"
3808
  msgstr ""
3809
 
3810
- #: app/features/mec/meta_boxes/display_options.php:875
3811
  msgid "18:00"
3812
  msgstr ""
3813
 
3814
- #: app/features/mec/meta_boxes/display_options.php:876
3815
  msgid "19:00"
3816
  msgstr ""
3817
 
3818
- #: app/features/mec/meta_boxes/display_options.php:877
3819
  msgid "20:00"
3820
  msgstr ""
3821
 
3822
- #: app/features/mec/meta_boxes/display_options.php:878
3823
  msgid "21:00"
3824
  msgstr ""
3825
 
3826
- #: app/features/mec/meta_boxes/display_options.php:879
3827
  msgid "22:00"
3828
  msgstr ""
3829
 
3830
- #: app/features/mec/meta_boxes/display_options.php:880
3831
  msgid "23:00"
3832
  msgstr ""
3833
 
3834
- #: app/features/mec/meta_boxes/display_options.php:881
3835
  msgid "24:00"
3836
  msgstr ""
3837
 
3838
- #: app/features/mec/meta_boxes/display_options.php:944
3839
- #: app/features/mec/meta_boxes/display_options.php:1131
3840
  msgid "Default values are j and F"
3841
  msgstr "Los valores predeterminados son j y F"
3842
 
3843
- #: app/features/mec/meta_boxes/display_options.php:951
3844
  msgid "eg. 24"
3845
  msgstr "ej. 24"
3846
 
3847
- #: app/features/mec/meta_boxes/display_options.php:954
3848
  msgid "Filter By"
3849
  msgstr "Filtrar por"
3850
 
3851
- #: app/features/mec/meta_boxes/display_options.php:956
3852
  msgid "None"
3853
  msgstr ""
3854
 
3855
- #: app/features/mec/meta_boxes/display_options.php:965
3856
  msgid "Fit to row"
3857
  msgstr ""
3858
 
3859
- #: app/features/mec/meta_boxes/display_options.php:966
3860
  msgid ""
3861
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3862
  "would expect from a layout that uses CSS floats."
3863
  msgstr ""
3864
 
3865
- #: app/features/mec/meta_boxes/display_options.php:976
3866
  msgid "Convert Masonry to Grid"
3867
  msgstr ""
3868
 
3869
- #: app/features/mec/meta_boxes/display_options.php:977
3870
  msgid "For using this option, your events should come with image"
3871
  msgstr ""
3872
 
3873
- #: app/features/mec/meta_boxes/display_options.php:1017
3874
  msgid "Default values are d, M and Y"
3875
  msgstr "Los valores predeterminados son d, M e Y"
3876
 
3877
- #: app/features/mec/meta_boxes/display_options.php:1029
3878
  msgid "Default values are \"F d\" and l"
3879
  msgstr "Los valores predeterminados son \"F d\" y l"
3880
 
3881
- #: app/features/mec/meta_boxes/display_options.php:1040
3882
  msgid "Default value is \"l, F d Y\""
3883
  msgstr "Valor por defecto es \"l, F d Y\""
3884
 
3885
- #: app/features/mec/meta_boxes/display_options.php:1061
 
3886
  msgid "Style 1"
3887
  msgstr "Estilo 1"
3888
 
3889
- #: app/features/mec/meta_boxes/display_options.php:1062
 
3890
  msgid "Style 2"
3891
  msgstr "Estilo 2"
3892
 
3893
- #: app/features/mec/meta_boxes/display_options.php:1063
 
3894
  msgid "Style 3"
3895
  msgstr "Estilo 3"
3896
 
3897
- #: app/features/mec/meta_boxes/display_options.php:1072
3898
- #: app/features/mec/meta_boxes/display_options.php:1083
3899
  msgid "Default value is \"j F Y\""
3900
  msgstr "El valor predeterminado es \"j F Y\""
3901
 
3902
- #: app/features/mec/meta_boxes/display_options.php:1096
3903
  msgid "Default values are j, F and Y"
3904
  msgstr "Los valores predeterminados son j, F e Y"
3905
 
3906
- #: app/features/mec/meta_boxes/display_options.php:1104
3907
- #: app/features/mec/meta_boxes/display_options.php:1139
3908
  msgid " -- Next Upcoming Event -- "
3909
  msgstr " -- Próximo Evento -- "
3910
 
3911
- #: app/features/mec/meta_boxes/display_options.php:1111
3912
  msgid "Background Color"
3913
  msgstr "Color de fondo"
3914
 
3915
- #: app/features/mec/meta_boxes/display_options.php:1153
3916
- #: app/features/mec/meta_boxes/display_options.php:1240
 
3917
  msgid "Type 1"
3918
  msgstr "Tipo 1"
3919
 
3920
- #: app/features/mec/meta_boxes/display_options.php:1154
3921
- #: app/features/mec/meta_boxes/display_options.php:1241
 
3922
  msgid "Type 2"
3923
  msgstr "Tipo 2"
3924
 
3925
- #: app/features/mec/meta_boxes/display_options.php:1155
3926
- #: app/features/mec/meta_boxes/display_options.php:1242
 
3927
  msgid "Type 3"
3928
  msgstr "Tipo 3"
3929
 
3930
- #: app/features/mec/meta_boxes/display_options.php:1156
3931
- #: app/features/mec/meta_boxes/display_options.php:1243
 
3932
  msgid "Type 4"
3933
  msgstr "Tipo 4"
3934
 
3935
- #: app/features/mec/meta_boxes/display_options.php:1180
3936
  msgid "Default values are d, F and Y"
3937
  msgstr "Los valores predeterminados son d, F e Y"
3938
 
3939
- #: app/features/mec/meta_boxes/display_options.php:1191
3940
- #: app/features/mec/meta_boxes/display_options.php:1202
3941
  msgid "Default value is \"M d, Y\""
3942
  msgstr "El valor predeterminado es \"M d, Y\""
3943
 
3944
- #: app/features/mec/meta_boxes/display_options.php:1221
3945
- #: app/features/mec/meta_boxes/display_options.php:1330
3946
  msgid "Auto Play Time"
3947
  msgstr "Tiempo de reproducción automática"
3948
 
3949
- #: app/features/mec/meta_boxes/display_options.php:1222
3950
- #: app/features/mec/meta_boxes/display_options.php:1331
3951
  msgid "eg. 3000 default is 3 second"
3952
  msgstr "Ejemplo. 3000 son 3 segundos."
3953
 
@@ -3963,11 +3993,12 @@ msgstr "Tema de la página de archivo"
3963
  msgid "Head Text"
3964
  msgstr "Texto"
3965
 
3966
- #: app/features/mec/meta_boxes/display_options.php:1244
 
3967
  msgid "Type 5"
3968
  msgstr "Tipo 5"
3969
 
3970
- #: app/features/mec/meta_boxes/display_options.php:1424
3971
  #, fuzzy
3972
  #| msgid "Default values are j and F"
3973
  msgid "Default values are j and M"
@@ -4010,10 +4041,12 @@ msgid "Dates"
4010
  msgstr "Fechas"
4011
 
4012
  #: app/features/mec/meta_boxes/filter.php:183
 
4013
  msgid "Include Expired Events"
4014
  msgstr "Incluir eventos pasados"
4015
 
4016
  #: app/features/mec/meta_boxes/filter.php:190
 
4017
  msgid ""
4018
  "You have ability to include past/expired events if you like so it will show "
4019
  "upcoming and expired events based on start date that you selected."
@@ -4023,6 +4056,7 @@ msgstr ""
4023
  "que has seleccionado."
4024
 
4025
  #: app/features/mec/meta_boxes/filter.php:197
 
4026
  msgid "Show Only Expired Events"
4027
  msgstr "Mostrar únicamente eventos caducados"
4028
 
@@ -4034,6 +4068,7 @@ msgid ""
4034
  msgstr ""
4035
 
4036
  #: app/features/mec/meta_boxes/filter.php:204
 
4037
  msgid "only"
4038
  msgstr ""
4039
 
@@ -4042,10 +4077,12 @@ msgid "older"
4042
  msgstr ""
4043
 
4044
  #: app/features/mec/meta_boxes/filter.php:212
 
4045
  msgid "Show Only Ongoing Events"
4046
  msgstr "Mostrar solo eventos en curso"
4047
 
4048
  #: app/features/mec/meta_boxes/filter.php:219
 
4049
  msgid "It shows only ongoing events on List and Grid skins."
4050
  msgstr ""
4051
  "Solo muestra los eventos ocurriendo en los temas de lista y cuadricula."
@@ -4142,7 +4179,7 @@ msgstr "Mostrar formulario búsqueda"
4142
  #: app/features/mec/meta_boxes/search_form.php:716
4143
  #: app/features/mec/meta_boxes/search_form.php:723
4144
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
4145
- #: app/features/mec/settings.php:413
4146
  msgid "Disabled"
4147
  msgstr "Desactivado"
4148
 
@@ -4157,9 +4194,9 @@ msgstr "Desactivado"
4157
  #: app/features/mec/meta_boxes/search_form.php:535
4158
  #: app/features/mec/meta_boxes/search_form.php:596
4159
  #: app/features/mec/meta_boxes/search_form.php:693
4160
- #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4161
- #: app/features/search.php:79 app/features/speakers.php:61
4162
- #: app/features/speakers.php:269 app/libraries/main.php:5289
4163
  #: app/libraries/skins.php:936
4164
  msgid "Speaker"
4165
  msgstr ""
@@ -4175,8 +4212,8 @@ msgstr ""
4175
  #: app/features/mec/meta_boxes/search_form.php:542
4176
  #: app/features/mec/meta_boxes/search_form.php:603
4177
  #: app/features/mec/meta_boxes/search_form.php:700
4178
- #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4179
- #: app/features/search.php:83 app/libraries/skins.php:962
4180
  #, fuzzy
4181
  #| msgid "Tags"
4182
  msgid "Tag"
@@ -4257,14 +4294,14 @@ msgid "Show Google Maps on event page"
4257
  msgstr "Ver eventos en Google Maps"
4258
 
4259
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4260
- #: app/features/mec/settings.php:856 app/features/mec/settings.php:861
4261
- #: app/features/mec/settings.php:909 app/features/mec/settings.php:933
4262
- #: app/features/mec/settings.php:957
4263
  msgid "API Key"
4264
  msgstr "API Key"
4265
 
4266
- #: app/features/mec/modules.php:86 app/features/mec/settings.php:862
4267
- #: app/features/mec/settings.php:875
4268
  msgid "Required!"
4269
  msgstr "¡Obligatorio!"
4270
 
@@ -4898,7 +4935,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4898
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4899
 
4900
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4901
- #: app/libraries/notifications.php:603
4902
  msgid "Booking Reminder"
4903
  msgstr "Recordatorio de reserva"
4904
 
@@ -4961,8 +4998,8 @@ msgid "Status of event"
4961
  msgstr "Estado del evento"
4962
 
4963
  #: app/features/mec/notifications.php:720
4964
- #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4965
- #: app/features/mec/settings.php:738
4966
  msgid "Event Note"
4967
  msgstr "Nota de evento"
4968
 
@@ -5161,7 +5198,7 @@ msgid "You can enable/disable Schema scripts"
5161
  msgstr ""
5162
 
5163
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5164
- #: app/libraries/main.php:5293
5165
  msgid "Weekdays"
5166
  msgstr "Días de la semana"
5167
 
@@ -5222,98 +5259,110 @@ msgid ""
5222
  "12 AM and you don't want those events considered as multiple days events!"
5223
  msgstr ""
5224
 
5225
- #: app/features/mec/settings.php:224 app/libraries/main.php:532
 
 
 
 
 
 
 
 
 
 
 
 
5226
  msgid "Archive Pages"
5227
  msgstr "Páginas de archivo"
5228
 
5229
- #: app/features/mec/settings.php:227 app/features/mec/settings.php:232
5230
  msgid "Archive Page Title"
5231
  msgstr "Título de la página de archivo"
5232
 
5233
- #: app/features/mec/settings.php:233
5234
  #, fuzzy
5235
  #| msgid "Default value is Events"
5236
  msgid "Default value is Events - It's title of the page"
5237
  msgstr "Valor por defecto del evento"
5238
 
5239
- #: app/features/mec/settings.php:241 app/features/mec/settings.php:309
5240
  msgid "Archive Page Skin"
5241
  msgstr "Tema de la página de archivo"
5242
 
5243
- #: app/features/mec/settings.php:249
5244
  #, fuzzy
5245
  #| msgid "Edit shortcodes"
5246
  msgid "Put shortcode..."
5247
  msgstr "Editar Shortcodes"
5248
 
5249
- #: app/features/mec/settings.php:252 app/features/mec/settings.php:267
5250
- #: app/features/mec/settings.php:270 app/features/mec/settings.php:279
5251
- #: app/features/mec/settings.php:305 app/features/mec/settings.php:326
5252
- #: app/features/mec/settings.php:341 app/features/mec/settings.php:344
5253
- #: app/features/mec/settings.php:353 app/features/mec/settings.php:379
5254
  #, fuzzy
5255
  #| msgid "The event is ongoing."
5256
  msgid "There is no skins"
5257
  msgstr "El evento está en curso."
5258
 
5259
- #: app/features/mec/settings.php:255 app/features/mec/settings.php:329
5260
  #: app/features/mec/single.php:69
5261
  msgid "Modern Style"
5262
  msgstr "Estilo moderno"
5263
 
5264
- #: app/features/mec/settings.php:297 app/features/mec/settings.php:371
5265
  #, fuzzy
5266
  #| msgid "Colorful"
5267
  msgid "colorful"
5268
  msgstr "Colorido"
5269
 
5270
- #: app/features/mec/settings.php:302 app/features/mec/settings.php:376
5271
  #, fuzzy
5272
  #| msgid "Plain Style"
5273
  msgid "Clean Style"
5274
  msgstr "Estilo simple"
5275
 
5276
- #: app/features/mec/settings.php:310
5277
  #, fuzzy
5278
  #| msgid "Default value is Calendar/Monthly View"
5279
  msgid "Default value is Calendar/Monthly View, But you can change it "
5280
  msgstr "El valor predeterminado es calendario / vista mensual"
5281
 
5282
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
5283
  msgid "See Demo"
5284
  msgstr ""
5285
 
5286
- #: app/features/mec/settings.php:318 app/features/mec/settings.php:383
5287
  msgid "Category Page Skin"
5288
  msgstr "Skin de página de categoría"
5289
 
5290
- #: app/features/mec/settings.php:384
5291
  msgid ""
5292
  "Default value is List View - But you can change it Set a skin for all "
5293
  "categories."
5294
  msgstr ""
5295
 
5296
- #: app/features/mec/settings.php:392 app/features/mec/settings.php:400
5297
  msgid "Category Events Method"
5298
  msgstr "Método de categoría de eventos"
5299
 
5300
- #: app/features/mec/settings.php:396
5301
  msgid "Expired Events"
5302
  msgstr "Eventos pasados"
5303
 
5304
- #: app/features/mec/settings.php:401
5305
  msgid "Default value is Upcoming Events"
5306
  msgstr "El valor predeterminado es Próximos eventos"
5307
 
5308
- #: app/features/mec/settings.php:409 app/features/mec/settings.php:417
5309
  msgid "Events Archive Status"
5310
  msgstr "Estado del archivo de eventos"
5311
 
5312
- #: app/features/mec/settings.php:412
5313
  msgid "Enabled (Recommended)"
5314
  msgstr "Activado (recomendado)"
5315
 
5316
- #: app/features/mec/settings.php:418
5317
  msgid ""
5318
  "If you disable it, then you should create a page as archive page of MEC. "
5319
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -5323,18 +5372,18 @@ msgstr ""
5323
  "archivo de MEC. El slug debe igualarse al slug principal de MEC. También "
5324
  "desactivará todas las reglas de sobreescripción."
5325
 
5326
- #: app/features/mec/settings.php:431 app/features/mec/settings.php:436
5327
  msgid "Main Slug"
5328
  msgstr "Slug principal"
5329
 
5330
- #: app/features/mec/settings.php:437
5331
  msgid ""
5332
  "Default value is events. You can not have a page with this name. MEC allows "
5333
  "you to create custom URLs for the permalinks and archives to enhance the "
5334
  "applicability and forward-compatibility of the links."
5335
  msgstr ""
5336
 
5337
- #: app/features/mec/settings.php:441 app/features/mec/settings.php:455
5338
  #, fuzzy
5339
  #| msgid ""
5340
  #| "Default value is events. Valid characters are lowercase a-z, - character "
@@ -5344,11 +5393,11 @@ msgstr ""
5344
  "El valor por defecto es eventos. Los caracteres válidos son a-z minúsculas, "
5345
  "- carácteres y números."
5346
 
5347
- #: app/features/mec/settings.php:445 app/features/mec/settings.php:450
5348
  msgid "Category Slug"
5349
  msgstr "Slug de la categoría"
5350
 
5351
- #: app/features/mec/settings.php:451
5352
  #, fuzzy
5353
  #| msgid ""
5354
  #| "It's slug of MEC categories, you can change it to events-cat or something "
@@ -5362,92 +5411,92 @@ msgstr ""
5362
  "cat o a algo más. El valor por defecto es mec-category. Se pueden utilizar "
5363
  "letras de la a-z en minúsculas y numerosas."
5364
 
5365
- #: app/features/mec/settings.php:463
5366
  msgid "Currency"
5367
  msgstr "Moneda corriente"
5368
 
5369
- #: app/features/mec/settings.php:473 app/features/mec/settings.php:478
5370
  msgid "Currency Sign"
5371
  msgstr "Tipo de moneda"
5372
 
5373
- #: app/features/mec/settings.php:479
5374
  msgid "Default value will be \"currency\" if you leave it empty."
5375
  msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
5376
 
5377
- #: app/features/mec/settings.php:486
5378
  msgid "Currency Position"
5379
  msgstr "Posición en moneda extranjera"
5380
 
5381
- #: app/features/mec/settings.php:489
5382
  msgid "Before $10"
5383
  msgstr "Menos de 10€"
5384
 
5385
- #: app/features/mec/settings.php:490
5386
  msgid "After 10$"
5387
  msgstr "Más de 10€"
5388
 
5389
- #: app/features/mec/settings.php:495
5390
  msgid "Thousand Separator"
5391
  msgstr "Separador de miles"
5392
 
5393
- #: app/features/mec/settings.php:501
5394
  msgid "Decimal Separator"
5395
  msgstr "Separador de decimales"
5396
 
5397
- #: app/features/mec/settings.php:511
5398
  msgid "No decimal"
5399
  msgstr "No decimal"
5400
 
5401
- #: app/features/mec/settings.php:522
5402
  msgid "Enable Google Recaptcha"
5403
  msgstr "Habilitar Google Recaptcha"
5404
 
5405
- #: app/features/mec/settings.php:529
5406
  msgid "Enable on booking form"
5407
  msgstr "Activar en el formulario de reserva"
5408
 
5409
- #: app/features/mec/settings.php:535
5410
  msgid "Enable on \"Frontend Event Submission\" form"
5411
  msgstr "Activa el formulario \"Envío de eventos desde portada\""
5412
 
5413
- #: app/features/mec/settings.php:539
5414
  msgid "Site Key"
5415
  msgstr "Clave del Sitio"
5416
 
5417
- #: app/features/mec/settings.php:545
5418
  msgid "Secret Key"
5419
  msgstr "Clave secreta"
5420
 
5421
- #: app/features/mec/settings.php:557 app/features/mec/settings.php:565
5422
  msgid "Time Format"
5423
  msgstr "Formato de la hora"
5424
 
5425
- #: app/features/mec/settings.php:560
5426
  msgid "12 hours format with AM/PM"
5427
  msgstr "Formato de 12 horas con AM / PM"
5428
 
5429
- #: app/features/mec/settings.php:561
5430
  msgid "24 hours format"
5431
  msgstr "Formato de 24 horas"
5432
 
5433
- #: app/features/mec/settings.php:566
5434
  msgid "This option, affects the selection of Start/End time."
5435
  msgstr ""
5436
 
5437
- #: app/features/mec/settings.php:574
5438
  msgid "Events List Page"
5439
  msgstr "Página de lista de eventos"
5440
 
5441
- #: app/features/mec/settings.php:583 app/features/mec/settings.php:595
5442
  #, php-format
5443
  msgid "Put %s shortcode into the page."
5444
  msgstr "Pon el shortcode %s en la página."
5445
 
5446
- #: app/features/mec/settings.php:586
5447
  msgid "Add/Edit Events Page"
5448
  msgstr "Añadir/Editar página de eventos"
5449
 
5450
- #: app/features/mec/settings.php:610
5451
  #, fuzzy
5452
  #| msgid ""
5453
  #| "User redirects to this page after booking. Leave it empty if you want to "
@@ -5459,47 +5508,47 @@ msgstr ""
5459
  "Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
5460
  "Déjalo vacío si lo deseas desactivado."
5461
 
5462
- #: app/features/mec/settings.php:635
5463
  msgid "Enable event submission by guest (Not logged-in) users"
5464
  msgstr ""
5465
  "Habilitar la presentación de eventos por los usuarios invitados (no "
5466
  "conectados)"
5467
 
5468
- #: app/features/mec/settings.php:642
5469
  msgid "Enable mandatory email and name for guest user"
5470
  msgstr ""
5471
  "Activa que sea obligatorio el correo y nombre del usuario para el usuario "
5472
  "invitado"
5473
 
5474
- #: app/features/mec/settings.php:646
5475
  msgid "Frontend Event Submission Sections"
5476
  msgstr "Secciones de envío de eventos en la pagina."
5477
 
5478
- #: app/features/mec/settings.php:668 app/widgets/single.php:119
5479
  msgid "Event Categories"
5480
  msgstr "Categorías de evento"
5481
 
5482
- #: app/features/mec/settings.php:674
5483
  msgid "Event Labels"
5484
  msgstr "Etiqueta de eventos"
5485
 
5486
- #: app/features/mec/settings.php:686
5487
  msgid "Event Tags"
5488
  msgstr "Etiquetas del Evento"
5489
 
5490
- #: app/features/mec/settings.php:698 app/widgets/single.php:123
5491
  msgid "Event Organizer"
5492
  msgstr "Organizador de eventos"
5493
 
5494
- #: app/features/mec/settings.php:716
5495
  msgid "Booking Options"
5496
  msgstr "Opciones de reserva"
5497
 
5498
- #: app/features/mec/settings.php:722
5499
  msgid "Fees / Taxes Options"
5500
  msgstr "Opciones de Cuotas/Impuestos"
5501
 
5502
- #: app/features/mec/settings.php:739
5503
  #, php-format
5504
  msgid ""
5505
  "Users can put a note for editors while they're submitting the event. Also "
@@ -5510,101 +5559,101 @@ msgstr ""
5510
  "evento. También puede poner %%event_note%% en la notificación de nuevo "
5511
  "evento para obtener la nota de los usuarios en el correo electrónico."
5512
 
5513
- #: app/features/mec/settings.php:746 app/features/mec/settings.php:754
5514
  msgid "Visibility of Note"
5515
  msgstr "Visibilidad de la nota"
5516
 
5517
- #: app/features/mec/settings.php:749
5518
  msgid "Always"
5519
  msgstr "Siempre"
5520
 
5521
- #: app/features/mec/settings.php:750
5522
  msgid "While event is not published"
5523
  msgstr "Mientras no se publique el evento"
5524
 
5525
- #: app/features/mec/settings.php:755
5526
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5527
  msgstr ""
5528
  "La nota de evento se muestra en el formulario de presentación de Frontend y "
5529
  "Editar evento en el backend."
5530
 
5531
- #: app/features/mec/settings.php:766 app/libraries/main.php:537
5532
  msgid "User Profile"
5533
  msgstr ""
5534
 
5535
- #: app/features/mec/settings.php:768
5536
  #, php-format
5537
  msgid ""
5538
  "Put %s shortcode into your desired page. Then users are able to see history "
5539
  "of their bookings."
5540
  msgstr ""
5541
 
5542
- #: app/features/mec/settings.php:773 app/libraries/main.php:538
5543
  #, fuzzy
5544
  #| msgid "Search Form"
5545
  msgid "Search Bar"
5546
  msgstr "Formulario de Búsqueda"
5547
 
5548
- #: app/features/mec/settings.php:775
5549
  #, php-format
5550
  msgid ""
5551
  "Put %s shortcode into your desired page. Then users are able to search events"
5552
  msgstr ""
5553
 
5554
- #: app/features/mec/settings.php:779
5555
  msgid "Ajax Live mode"
5556
  msgstr ""
5557
 
5558
- #: app/features/mec/settings.php:783
5559
  msgid "Ajax mode"
5560
  msgstr ""
5561
 
5562
- #: app/features/mec/settings.php:784
5563
  msgid ""
5564
  "if you enable this option, search button disappeared and to use this "
5565
  "feature, text input field must be enabled."
5566
  msgstr ""
5567
 
5568
- #: app/features/mec/settings.php:792
5569
  #, fuzzy
5570
  #| msgid "Modern Style"
5571
  msgid "Modern Type"
5572
  msgstr "Estilo moderno"
5573
 
5574
- #: app/features/mec/settings.php:796
5575
  #, fuzzy
5576
  #| msgid "Search Form"
5577
  msgid "Search bar fields"
5578
  msgstr "Formulario de Búsqueda"
5579
 
5580
- #: app/features/mec/settings.php:838
5581
  #, fuzzy
5582
  #| msgid "Text Input"
5583
  msgid "Text input"
5584
  msgstr "Campo de texto"
5585
 
5586
- #: app/features/mec/settings.php:851
5587
  msgid "Enable Mailchimp Integration"
5588
  msgstr "Activar integración con MailChimp"
5589
 
5590
- #: app/features/mec/settings.php:869 app/features/mec/settings.php:874
5591
- #: app/features/mec/settings.php:915 app/features/mec/settings.php:963
5592
  msgid "List ID"
5593
  msgstr "ID de la lista"
5594
 
5595
- #: app/features/mec/settings.php:882 app/features/mec/settings.php:890
5596
  msgid "Subscription Status"
5597
  msgstr "Estado Suscripción"
5598
 
5599
- #: app/features/mec/settings.php:885
5600
  msgid "Subscribe automatically"
5601
  msgstr "Suscribirse automáticamente "
5602
 
5603
- #: app/features/mec/settings.php:886
5604
  msgid "Subscribe by verification"
5605
  msgstr "Suscribirse por verificación"
5606
 
5607
- #: app/features/mec/settings.php:891
5608
  msgid ""
5609
  "If you choose \"Subscribe by verification\" then an email will send to user "
5610
  "by mailchimp for subscription verification."
@@ -5612,71 +5661,71 @@ msgstr ""
5612
  "Si eliges “Suscribir por verificación” entonces un email de verificación de "
5613
  "suscripción se le enviará al usuario."
5614
 
5615
- #: app/features/mec/settings.php:900 app/libraries/main.php:540
5616
  #, fuzzy
5617
  #| msgid "Mailchimp Integration"
5618
  msgid "Campaign Monitor Integration"
5619
  msgstr "Integración de MailChimp"
5620
 
5621
- #: app/features/mec/settings.php:904
5622
  #, fuzzy
5623
  #| msgid "Enable Mailchimp Integration"
5624
  msgid "Enable Campaign Monitor Integration"
5625
  msgstr "Activar integración con MailChimp"
5626
 
5627
- #: app/features/mec/settings.php:924 app/libraries/main.php:541
5628
  #, fuzzy
5629
  #| msgid "Mailchimp Integration"
5630
  msgid "MailerLite Integration"
5631
  msgstr "Integración de MailChimp"
5632
 
5633
- #: app/features/mec/settings.php:928
5634
  #, fuzzy
5635
  #| msgid "Enable Mailchimp Integration"
5636
  msgid "Enable MailerLite Integration"
5637
  msgstr "Activar integración con MailChimp"
5638
 
5639
- #: app/features/mec/settings.php:939
5640
  msgid "Group ID"
5641
  msgstr ""
5642
 
5643
- #: app/features/mec/settings.php:948 app/libraries/main.php:542
5644
  #, fuzzy
5645
  #| msgid "BuddyPress Integration"
5646
  msgid "Constant Contact Integration"
5647
  msgstr "Integración de BuddyPress"
5648
 
5649
- #: app/features/mec/settings.php:952
5650
  #, fuzzy
5651
  #| msgid "Enable Mailchimp Integration"
5652
  msgid "Enable constantcontact Integration"
5653
  msgstr "Activar integración con MailChimp"
5654
 
5655
- #: app/features/mec/settings.php:974
5656
  #, fuzzy
5657
  #| msgid "Filter Options"
5658
  msgid "Upload Field Options"
5659
  msgstr "Opciones de filtros"
5660
 
5661
- #: app/features/mec/settings.php:976
5662
  msgid "Mime types"
5663
  msgstr ""
5664
 
5665
- #: app/features/mec/settings.php:980
5666
  msgid "Split mime types with \",\"."
5667
  msgstr ""
5668
 
5669
- #: app/features/mec/settings.php:980
5670
  msgid "Default: jpeg,jpg,png,pdf"
5671
  msgstr ""
5672
 
5673
- #: app/features/mec/settings.php:983
5674
  #, fuzzy
5675
  #| msgid "Maximum Dates"
5676
  msgid "Maximum file size"
5677
  msgstr "Fechas máximas"
5678
 
5679
- #: app/features/mec/settings.php:987
5680
  msgid "The unit is Megabyte \"MB\""
5681
  msgstr ""
5682
 
@@ -6429,7 +6478,7 @@ msgstr "ej. user@yoursite.com"
6429
  msgid "eg. https://webnus.net"
6430
  msgstr "ej. https://webnus.net"
6431
 
6432
- #: app/features/organizers.php:312 app/libraries/main.php:5317
6433
  #: app/skins/single.php:862
6434
  msgid "Other Organizers"
6435
  msgstr "En común"
@@ -6441,12 +6490,72 @@ msgstr ""
6441
  "Si quieres, puedes seleccionar organizadores adicionales además del "
6442
  "organizador principal."
6443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6444
  #: app/features/profile.php:74
6445
  #, php-format
6446
  msgid "Please %s/%s in order to see your bookings / profile."
6447
  msgstr ""
6448
 
6449
- #: app/features/profile/profile.php:18 app/libraries/main.php:2142
6450
  #, fuzzy
6451
  #| msgid "Your booking cannot be canceled."
6452
  msgid "Your booking already canceled!"
@@ -6456,11 +6565,11 @@ msgstr "La reserva no puede cancelarse."
6456
  msgid "#"
6457
  msgstr ""
6458
 
6459
- #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6460
  msgid "Status"
6461
  msgstr "Estado"
6462
 
6463
- #: app/features/profile/profile.php:59 app/libraries/main.php:2257
6464
  msgid "Attendees"
6465
  msgstr "Asistentes"
6466
 
@@ -6489,11 +6598,11 @@ msgstr ""
6489
  msgid "No bookings found!"
6490
  msgstr ""
6491
 
6492
- #: app/features/search.php:87 app/libraries/main.php:5283
6493
  msgid "label"
6494
  msgstr "etiqueta"
6495
 
6496
- #: app/features/search.php:121
6497
  msgid "Please enter at least 3 characters and try again"
6498
  msgstr ""
6499
 
@@ -6516,7 +6625,7 @@ msgid "No search result."
6516
  msgstr ""
6517
 
6518
  #: app/features/search_bar/search_result.php:11
6519
- #: app/libraries/notifications.php:947 app/libraries/render.php:488
6520
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6521
  #: app/skins/single.php:160 app/skins/single.php:753
6522
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6622,51 +6731,51 @@ msgctxt "plugin link"
6622
  msgid "Upgrade"
6623
  msgstr "Actualizar"
6624
 
6625
- #: app/libraries/factory.php:356
6626
  msgid "day"
6627
  msgstr "día "
6628
 
6629
- #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6630
- #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6631
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6632
  msgid "days"
6633
  msgstr "días"
6634
 
6635
- #: app/libraries/factory.php:358
6636
  msgid "hour"
6637
  msgstr "hora"
6638
 
6639
- #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6640
- #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6641
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6642
  msgid "hours"
6643
  msgstr "horas"
6644
 
6645
- #: app/libraries/factory.php:360
6646
  msgid "minute"
6647
  msgstr "minuto"
6648
 
6649
- #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6650
- #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6651
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6652
  msgid "minutes"
6653
  msgstr "minutos"
6654
 
6655
- #: app/libraries/factory.php:362
6656
  msgid "second"
6657
  msgstr "segundo"
6658
 
6659
- #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6660
- #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6661
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6662
  msgid "seconds"
6663
  msgstr "segundos"
6664
 
6665
- #: app/libraries/factory.php:411
6666
  msgid "MEC Single Sidebar"
6667
  msgstr "barra lateral MEC"
6668
 
6669
- #: app/libraries/factory.php:412
6670
  msgid "Custom sidebar for single and modal page of MEC."
6671
  msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
6672
 
@@ -6674,38 +6783,38 @@ msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
6674
  msgid "There is no excerpt because this is a protected post."
6675
  msgstr "No hay extracto porque es una entrada protegida."
6676
 
6677
- #: app/libraries/main.php:331 app/libraries/main.php:1758
6678
- #: app/libraries/main.php:1783
6679
  msgid "Grid View"
6680
  msgstr "Vista cuadrícula"
6681
 
6682
- #: app/libraries/main.php:332 app/libraries/main.php:1759
6683
- #: app/libraries/main.php:1784
6684
  msgid "Agenda View"
6685
  msgstr "Vista de Agenda"
6686
 
6687
- #: app/libraries/main.php:333 app/libraries/main.php:1750
6688
- #: app/libraries/main.php:1775
6689
  msgid "Full Calendar"
6690
  msgstr "Calendario completo"
6691
 
6692
- #: app/libraries/main.php:335 app/libraries/main.php:1752
6693
- #: app/libraries/main.php:1777
6694
  msgid "Calendar/Monthly View"
6695
  msgstr "Ver Calendario/Mes"
6696
 
6697
- #: app/libraries/main.php:338 app/libraries/main.php:1755
6698
- #: app/libraries/main.php:1780
6699
  msgid "Timetable View"
6700
  msgstr "Vista de Horario"
6701
 
6702
- #: app/libraries/main.php:339 app/libraries/main.php:1756
6703
- #: app/libraries/main.php:1781
6704
  msgid "Masonry View"
6705
  msgstr "Vista en mosaico"
6706
 
6707
- #: app/libraries/main.php:340 app/libraries/main.php:1760
6708
- #: app/libraries/main.php:1785
6709
  msgid "Map View"
6710
  msgstr "Vista de mapa"
6711
 
@@ -6741,31 +6850,31 @@ msgstr "Vista de Horario"
6741
  msgid "Tile View"
6742
  msgstr "Vista de Horario"
6743
 
6744
- #: app/libraries/main.php:385 app/libraries/main.php:5295
6745
  msgid "SU"
6746
  msgstr "DO"
6747
 
6748
- #: app/libraries/main.php:386 app/libraries/main.php:5296
6749
  msgid "MO"
6750
  msgstr "LU"
6751
 
6752
- #: app/libraries/main.php:387 app/libraries/main.php:5297
6753
  msgid "TU"
6754
  msgstr "MA"
6755
 
6756
- #: app/libraries/main.php:388 app/libraries/main.php:5298
6757
  msgid "WE"
6758
  msgstr "MI"
6759
 
6760
- #: app/libraries/main.php:389 app/libraries/main.php:5299
6761
  msgid "TH"
6762
  msgstr "JU"
6763
 
6764
- #: app/libraries/main.php:390 app/libraries/main.php:5300
6765
  msgid "FR"
6766
  msgstr "VI"
6767
 
6768
- #: app/libraries/main.php:391 app/libraries/main.php:5301
6769
  msgid "SA"
6770
  msgstr "SA"
6771
 
@@ -6840,365 +6949,365 @@ msgstr "Eventos en este lugar"
6840
  msgid "Event at this location"
6841
  msgstr "Evento en este lugar"
6842
 
6843
- #: app/libraries/main.php:1528
6844
  msgid "Facebook"
6845
  msgstr "Facebook"
6846
 
6847
- #: app/libraries/main.php:1529
6848
  msgid "Twitter"
6849
  msgstr "Twitter"
6850
 
6851
- #: app/libraries/main.php:1530 app/libraries/main.php:1587
6852
  msgid "Linkedin"
6853
  msgstr "LinkedIn"
6854
 
6855
- #: app/libraries/main.php:1531 app/libraries/main.php:1623
6856
  msgid "VK"
6857
  msgstr "VK"
6858
 
6859
- #: app/libraries/main.php:1532
6860
  msgid "Tumblr"
6861
  msgstr ""
6862
 
6863
- #: app/libraries/main.php:1533
6864
  msgid "Pinterest"
6865
  msgstr ""
6866
 
6867
- #: app/libraries/main.php:1534
6868
  msgid "Flipboard"
6869
  msgstr ""
6870
 
6871
- #: app/libraries/main.php:1535
6872
  #, fuzzy
6873
  #| msgid "Tickets"
6874
  msgid "GetPocket"
6875
  msgstr "Tickets"
6876
 
6877
- #: app/libraries/main.php:1536
6878
  msgid "Reddit"
6879
  msgstr ""
6880
 
6881
- #: app/libraries/main.php:1537
6882
  msgid "WhatsApp"
6883
  msgstr ""
6884
 
6885
- #: app/libraries/main.php:1538
6886
  msgid "Telegram"
6887
  msgstr ""
6888
 
6889
- #: app/libraries/main.php:1557
6890
  msgid "Share on Facebook"
6891
  msgstr "Compartir en Facebook"
6892
 
6893
- #: app/libraries/main.php:1572
6894
  msgid "Tweet"
6895
  msgstr "Tweet"
6896
 
6897
- #: app/libraries/main.php:1638
6898
  #, fuzzy
6899
  #| msgid "Share on Facebook"
6900
  msgid "Share on Tumblr"
6901
  msgstr "Compartir en Facebook"
6902
 
6903
- #: app/libraries/main.php:1654
6904
  msgid "Share on Pinterest"
6905
  msgstr ""
6906
 
6907
- #: app/libraries/main.php:1670
6908
  #, fuzzy
6909
  #| msgid "Share on Facebook"
6910
  msgid "Share on Flipboard"
6911
  msgstr "Compartir en Facebook"
6912
 
6913
- #: app/libraries/main.php:1688
6914
  #, fuzzy
6915
  #| msgid "Share on Facebook"
6916
  msgid "Share on GetPocket"
6917
  msgstr "Compartir en Facebook"
6918
 
6919
- #: app/libraries/main.php:1704
6920
  #, fuzzy
6921
  #| msgid "Share on Facebook"
6922
  msgid "Share on Reddit"
6923
  msgstr "Compartir en Facebook"
6924
 
6925
- #: app/libraries/main.php:1720
6926
  msgid "Share on Telegram"
6927
  msgstr ""
6928
 
6929
- #: app/libraries/main.php:1738
6930
  msgid "Share on WhatsApp"
6931
  msgstr ""
6932
 
6933
- #: app/libraries/main.php:1761
6934
  #, fuzzy
6935
  #| msgid "Shortcode"
6936
  msgid "Custom Shortcode"
6937
  msgstr "Shortcode"
6938
 
6939
- #: app/libraries/main.php:2122
6940
  #, fuzzy
6941
  #| msgid "Your booking successfully verified."
6942
  msgid "Your booking already verified!"
6943
  msgstr "Tu reserva se ha verificado correctamente."
6944
 
6945
- #: app/libraries/main.php:2127
6946
  msgid "Your booking successfully verified."
6947
  msgstr "Tu reserva se ha verificado correctamente."
6948
 
6949
- #: app/libraries/main.php:2128
6950
  msgid "Your booking cannot verify!"
6951
  msgstr "¡Tu reserva no se puede verificar!"
6952
 
6953
- #: app/libraries/main.php:2147
6954
  msgid "Your booking successfully canceled."
6955
  msgstr "Tu reserva se ha cancelado correctamente."
6956
 
6957
- #: app/libraries/main.php:2148
6958
  msgid "Your booking cannot be canceled."
6959
  msgstr "La reserva no puede cancelarse."
6960
 
6961
- #: app/libraries/main.php:2152
6962
  msgid "You canceled the payment successfully."
6963
  msgstr "Has cancelado el pago correctamente."
6964
 
6965
- #: app/libraries/main.php:2156
6966
  msgid "You returned from payment gateway successfully."
6967
  msgstr "Has vuelto correctamente de tu pasarela de pago."
6968
 
6969
- #: app/libraries/main.php:2172
6970
  #, fuzzy
6971
  #| msgid "Cannot find the booking!"
6972
  msgid "Cannot find the invoice!"
6973
  msgstr "¡No se pudo encontrar la reserva!"
6974
 
6975
- #: app/libraries/main.php:2172
6976
  #, fuzzy
6977
  #| msgid "Booking is invalid."
6978
  msgid "Invoice is invalid."
6979
  msgstr "Reserva no válida."
6980
 
6981
- #: app/libraries/main.php:2192
6982
  msgid ""
6983
  "Your booking still is not confirmed. You able download it after confirmation!"
6984
  msgstr ""
6985
 
6986
- #: app/libraries/main.php:2192
6987
  #, fuzzy
6988
  #| msgid "Booking Confirmation"
6989
  msgid "Booking Not Confirmed."
6990
  msgstr "Confirmación de reserva"
6991
 
6992
- #: app/libraries/main.php:2198
6993
  msgid "Cannot find the booking!"
6994
  msgstr "¡No se pudo encontrar la reserva!"
6995
 
6996
- #: app/libraries/main.php:2198
6997
  msgid "Booking is invalid."
6998
  msgstr "Reserva no válida."
6999
 
7000
- #: app/libraries/main.php:2227
7001
  #, php-format
7002
  msgid "%s Invoice"
7003
  msgstr "%s Factura"
7004
 
7005
- #: app/libraries/main.php:2301
7006
  msgid "Billing"
7007
  msgstr "Facturación"
7008
 
7009
- #: app/libraries/main.php:2312
7010
  msgid "Total"
7011
  msgstr "Total "
7012
 
7013
- #: app/libraries/main.php:2319
7014
  #, fuzzy
7015
  #| msgid "Payment Gateways"
7016
  msgid "Payment"
7017
  msgstr "Pasarelas de pago"
7018
 
7019
- #: app/libraries/main.php:2323
7020
  #, fuzzy
7021
  #| msgid "Popular Gateways"
7022
  msgid "Gateway"
7023
  msgstr "Pasarelas de pago populares"
7024
 
7025
- #: app/libraries/main.php:2331
7026
  #, fuzzy
7027
  #| msgid "Payment Gateways"
7028
  msgid "Payment Time"
7029
  msgstr "Pasarelas de pago"
7030
 
7031
- #: app/libraries/main.php:2392
7032
  msgid "Request is not valid."
7033
  msgstr "La solicitud no es válida."
7034
 
7035
- #: app/libraries/main.php:2392
7036
  msgid "iCal export stopped!"
7037
  msgstr "¡La exportación de iCal se detuvo!"
7038
 
7039
- #: app/libraries/main.php:2736 app/libraries/main.php:2766
7040
- #: app/libraries/main.php:2795 app/libraries/main.php:2825
7041
- #: app/libraries/main.php:2854 app/libraries/main.php:2883
7042
- #: app/libraries/main.php:2912 app/libraries/main.php:2941
7043
- #: app/libraries/main.php:2970 app/libraries/main.php:2994
7044
- #: app/libraries/main.php:3038 app/libraries/main.php:3082
7045
- #: app/libraries/main.php:3129 app/libraries/main.php:3176
7046
  msgid "Sort"
7047
  msgstr "Orden"
7048
 
7049
- #: app/libraries/main.php:2742 app/libraries/main.php:2772
7050
- #: app/libraries/main.php:2801 app/libraries/main.php:2831
7051
- #: app/libraries/main.php:2860 app/libraries/main.php:2889
7052
- #: app/libraries/main.php:2918 app/libraries/main.php:2947
7053
- #: app/libraries/main.php:3000 app/libraries/main.php:3044
7054
- #: app/libraries/main.php:3088 app/libraries/main.php:3135
7055
  msgid "Required Field"
7056
  msgstr "Campo obligatorio"
7057
 
7058
- #: app/libraries/main.php:2748 app/libraries/main.php:2778
7059
- #: app/libraries/main.php:2807 app/libraries/main.php:2837
7060
- #: app/libraries/main.php:2866 app/libraries/main.php:2895
7061
- #: app/libraries/main.php:2924 app/libraries/main.php:2953
7062
- #: app/libraries/main.php:3006 app/libraries/main.php:3050
7063
- #: app/libraries/main.php:3094 app/libraries/main.php:3141
7064
  msgid "Insert a label for this field"
7065
  msgstr "Introduce una etiqueta para este campo"
7066
 
7067
- #: app/libraries/main.php:2976
7068
  msgid "HTML and shortcode are allowed."
7069
  msgstr "Se permite HTML"
7070
 
7071
- #: app/libraries/main.php:3019 app/libraries/main.php:3063
7072
- #: app/libraries/main.php:3107
7073
  msgid "Option"
7074
  msgstr "Opción"
7075
 
7076
- #: app/libraries/main.php:3141
7077
  #, php-format
7078
  msgid "Instead of %s, the page title with a link will be show."
7079
  msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
7080
 
7081
- #: app/libraries/main.php:3143
7082
  msgid "Agreement Page"
7083
  msgstr "Página de Acuerdo"
7084
 
7085
- #: app/libraries/main.php:3154
7086
  msgid "Checked by default"
7087
  msgstr "Marcado por defecto"
7088
 
7089
- #: app/libraries/main.php:3155
7090
  msgid "Unchecked by default"
7091
  msgstr "Sin marcar por defecto"
7092
 
7093
- #: app/libraries/main.php:3178
7094
  msgid "Insert a label for this option"
7095
  msgstr "Introduce una etiqueta para esta opción"
7096
 
7097
- #: app/libraries/main.php:3193
7098
  msgid "Free"
7099
  msgstr "Gratis"
7100
 
7101
- #: app/libraries/main.php:3799 app/libraries/main.php:5545
7102
  #, fuzzy
7103
  #| msgid "M.E. Calendar"
7104
  msgid "M.E. Calender"
7105
  msgstr "M.E. Calendario"
7106
 
7107
- #: app/libraries/main.php:3954
7108
  #, php-format
7109
  msgid "Copy of %s"
7110
  msgstr "Copia de %s"
7111
 
7112
- #: app/libraries/main.php:4672
7113
  msgid "Booked an event."
7114
  msgstr "Has reservado para un evento."
7115
 
7116
- #: app/libraries/main.php:4713
7117
  #, php-format
7118
  msgid "%s booked %s event."
7119
  msgstr "%s reservado %s evento."
7120
 
7121
- #: app/libraries/main.php:5278
7122
  msgid "Taxonomies"
7123
  msgstr "Taxonomías"
7124
 
7125
- #: app/libraries/main.php:5280
7126
  msgid "Category Plural Label"
7127
  msgstr "Categoría Etiqueta plural"
7128
 
7129
- #: app/libraries/main.php:5281
7130
  msgid "Category Singular Label"
7131
  msgstr "Categoría Etiqueta Singular"
7132
 
7133
- #: app/libraries/main.php:5282
7134
  msgid "Label Plural Label"
7135
  msgstr "Etiqueta plural"
7136
 
7137
- #: app/libraries/main.php:5283
7138
  msgid "Label Singular Label"
7139
  msgstr "Etiqueta singular de la etiqueta"
7140
 
7141
- #: app/libraries/main.php:5284
7142
  msgid "Location Plural Label"
7143
  msgstr "Ubicación Etiqueta plural"
7144
 
7145
- #: app/libraries/main.php:5285
7146
  msgid "Location Singular Label"
7147
  msgstr "Etiqueta de ubicación en singular"
7148
 
7149
- #: app/libraries/main.php:5286
7150
  msgid "Organizer Plural Label"
7151
  msgstr "Etiqueta del organizador en plural"
7152
 
7153
- #: app/libraries/main.php:5287
7154
  msgid "Organizer Singular Label"
7155
  msgstr "Etiqueta Singular del Organizador"
7156
 
7157
- #: app/libraries/main.php:5288
7158
  msgid "Speaker Plural Label"
7159
  msgstr ""
7160
 
7161
- #: app/libraries/main.php:5289
7162
  msgid "Speaker Singular Label"
7163
  msgstr ""
7164
 
7165
- #: app/libraries/main.php:5295
7166
  msgid "Sunday abbreviation"
7167
  msgstr "Abreviatura de Domingo"
7168
 
7169
- #: app/libraries/main.php:5296
7170
  msgid "Monday abbreviation"
7171
  msgstr "Abreviatura de Lunes"
7172
 
7173
- #: app/libraries/main.php:5297
7174
  msgid "Tuesday abbreviation"
7175
  msgstr "Abreviatura de Martes"
7176
 
7177
- #: app/libraries/main.php:5298
7178
  msgid "Wednesday abbreviation"
7179
  msgstr "Abreviatura de Miércoles "
7180
 
7181
- #: app/libraries/main.php:5299
7182
  msgid "Thursday abbreviation"
7183
  msgstr "Abreviatura de Jueves"
7184
 
7185
- #: app/libraries/main.php:5300
7186
  msgid "Friday abbreviation"
7187
  msgstr "Abreviatura de Viernes"
7188
 
7189
- #: app/libraries/main.php:5301
7190
  msgid "Saturday abbreviation"
7191
  msgstr "Abreviatura de Sábado "
7192
 
7193
- #: app/libraries/main.php:5305
7194
  msgid "Others"
7195
  msgstr "Otros"
7196
 
7197
- #: app/libraries/main.php:5307
7198
  msgid "Booking Success Message"
7199
  msgstr "Mensaje de reserva correcta"
7200
 
7201
- #: app/libraries/main.php:5307
7202
  msgid ""
7203
  "Thanks for your booking. Your tickets booked, booking verification might be "
7204
  "needed, please check your email."
@@ -7206,15 +7315,15 @@ msgstr ""
7206
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
7207
  "una verificación, por favor consulta tu correo."
7208
 
7209
- #: app/libraries/main.php:5308 app/widgets/single.php:131
7210
  msgid "Register Button"
7211
  msgstr "Botón de registro"
7212
 
7213
- #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7214
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7215
- #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7216
- #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7217
- #: app/skins/list/render.php:108 app/skins/list/render.php:194
7218
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
7219
  #: app/skins/single.php:777 app/skins/single/default.php:255
7220
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
@@ -7227,103 +7336,103 @@ msgstr "Botón de registro"
7227
  msgid "REGISTER"
7228
  msgstr "REGISTRO"
7229
 
7230
- #: app/libraries/main.php:5309
7231
  msgid "View Detail Button"
7232
  msgstr "Ver detalle del botón"
7233
 
7234
- #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7235
- #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7236
- #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7237
- #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7238
- #: app/skins/list/render.php:194 app/skins/masonry/render.php:188
7239
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
7240
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
7241
  #: app/skins/slider/render.php:320
7242
  msgid "View Detail"
7243
  msgstr "Ver detalle"
7244
 
7245
- #: app/libraries/main.php:5310
7246
  msgid "Event Detail Button"
7247
  msgstr "Botón de detalle del evento"
7248
 
7249
- #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7250
  msgid "Event Detail"
7251
  msgstr "Detalle del evento"
7252
 
7253
- #: app/libraries/main.php:5312
7254
  msgid "More Info Link"
7255
  msgstr "Enlace a Más Información"
7256
 
7257
- #: app/libraries/main.php:5315
7258
  msgid "Ticket (Singular)"
7259
  msgstr "Entrada (Singular)"
7260
 
7261
- #: app/libraries/main.php:5316
7262
  msgid "Tickets (Plural)"
7263
  msgstr "Entradas (Plural)"
7264
 
7265
- #: app/libraries/main.php:5402
7266
  msgid "EventON"
7267
  msgstr "EventON"
7268
 
7269
- #: app/libraries/main.php:5403
7270
  msgid "The Events Calendar"
7271
  msgstr "The Events Calendar"
7272
 
7273
- #: app/libraries/main.php:5404
7274
  msgid "Events Schedule WP Plugin"
7275
  msgstr "Events Schedule WP Plugin"
7276
 
7277
- #: app/libraries/main.php:5405
7278
  msgid "Calendarize It"
7279
  msgstr "Ponlo al calendario"
7280
 
7281
- #: app/libraries/main.php:5406
7282
  #, fuzzy
7283
  #| msgid "Event %s"
7284
  msgid "Event Espresso"
7285
  msgstr "Evento %s"
7286
 
7287
- #: app/libraries/main.php:5407
7288
  #, fuzzy
7289
  #| msgid "Event Repeating"
7290
  msgid "Events Manager (Recurring)"
7291
  msgstr "Repetir el evento"
7292
 
7293
- #: app/libraries/main.php:5408
7294
  #, fuzzy
7295
  #| msgid "Modern Events Calendar (Lite)"
7296
  msgid "Events Manager (Single)"
7297
  msgstr "Modern Events Calendar (Lite)"
7298
 
7299
- #: app/libraries/main.php:5482 app/libraries/main.php:5502
7300
  msgid "Confirmed"
7301
  msgstr ""
7302
 
7303
- #: app/libraries/main.php:5483 app/libraries/main.php:5510
7304
  msgid "Rejected"
7305
  msgstr ""
7306
 
7307
- #: app/libraries/main.php:5484 app/libraries/main.php:5506
7308
  msgid "Pending"
7309
  msgstr ""
7310
 
7311
- #: app/libraries/main.php:5532
7312
  msgid "Waiting"
7313
  msgstr ""
7314
 
7315
- #: app/libraries/main.php:5737 app/libraries/render.php:80
7316
  #: app/libraries/render.php:418
7317
  msgid "Skin controller does not exist."
7318
  msgstr "No existe skin controller."
7319
 
7320
- #: app/libraries/main.php:5851
7321
  #, fuzzy
7322
  #| msgid "Sold out!"
7323
  msgid "Sold Out"
7324
  msgstr "¡Agotado!"
7325
 
7326
- #: app/libraries/main.php:5859
7327
  #, fuzzy
7328
  #| msgid "Ticket"
7329
  msgid "Last Few Tickets"
@@ -7337,48 +7446,48 @@ msgstr "Por favor comprueba tu email"
7337
  msgid "Your booking is received."
7338
  msgstr "Se ha recibido tu reserva."
7339
 
7340
- #: app/libraries/notifications.php:271
7341
  msgid "Your booking is confirmed."
7342
  msgstr "Tu reserva ha sido confirmada."
7343
 
7344
- #: app/libraries/notifications.php:435
7345
  #, fuzzy
7346
  #| msgid "Your booking cannot be canceled."
7347
  msgid "booking canceled."
7348
  msgstr "La reserva no puede cancelarse."
7349
 
7350
- #: app/libraries/notifications.php:510
7351
  msgid "A new booking is received."
7352
  msgstr "Nueva reserva recibida."
7353
 
7354
- #: app/libraries/notifications.php:734
7355
  msgid "A new event is added."
7356
  msgstr "Se ha añadido un nuevo evento."
7357
 
7358
- #: app/libraries/notifications.php:803
7359
  #, fuzzy
7360
  #| msgid "The event published."
7361
  msgid "Your event is published."
7362
  msgstr "El evento a sido publicado."
7363
 
7364
- #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7365
- #: app/libraries/notifications.php:1052
7366
  msgid "to"
7367
  msgstr "a"
7368
 
7369
- #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7370
  msgid "+ Add to Google Calendar"
7371
  msgstr "+ Añadir Google Calendar"
7372
 
7373
- #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7374
  msgid "+ iCal export"
7375
  msgstr "Exportación + iCal"
7376
 
7377
- #: app/libraries/notifications.php:1131
7378
  msgid "Yes"
7379
  msgstr "Sí"
7380
 
7381
- #: app/libraries/notifications.php:1131
7382
  msgid "No"
7383
  msgstr "No"
7384
 
@@ -7435,12 +7544,6 @@ msgstr ""
7435
  "Rellenar la información de los otros asistentes igual que el primer "
7436
  "formulario."
7437
 
7438
- #: app/modules/booking/steps/form.php:179
7439
- #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7440
- #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7441
- msgid "Next"
7442
- msgstr "Siguiente"
7443
-
7444
  #: app/modules/booking/steps/message.php:7
7445
  msgid "Thanks for your booking."
7446
  msgstr "Gracias por tu reserva."
@@ -7582,13 +7685,13 @@ msgstr "¡No hay eventos!"
7582
  msgid "Load More"
7583
  msgstr "Cargar más"
7584
 
7585
- #: app/skins/available_spot/tpl.php:160
7586
  msgid "Available Spot(s):"
7587
  msgstr "Sitio(s) disponible(s):"
7588
 
7589
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7590
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7591
- #: app/skins/list/render.php:128
7592
  msgid "EVENT DETAIL"
7593
  msgstr "DETALLE DEL EVENTO"
7594
 
@@ -7689,21 +7792,21 @@ msgstr "Semana %s"
7689
  msgid "Show events based on created shortcodes."
7690
  msgstr "Mostrar eventos basados en shortcodes."
7691
 
7692
- #: app/widgets/MEC.php:81
7693
  msgid "Title:"
7694
  msgstr "Título:"
7695
 
7696
- #: app/widgets/MEC.php:88
7697
  msgid "Shortcode:"
7698
  msgstr "Shortcode:"
7699
 
7700
- #: app/widgets/MEC.php:98
7701
  #, fuzzy
7702
  #| msgid "Single Event Display Method"
7703
  msgid "Enable No Event Block Display: "
7704
  msgstr "Método de vista para página del evento"
7705
 
7706
- #: app/widgets/MEC.php:102
7707
  msgid "Create some calendars first."
7708
  msgstr "Crea algunos calendario primero"
7709
 
@@ -7767,11 +7870,6 @@ msgstr "Equipo de Webnus"
7767
  msgid "http://webnus.net"
7768
  msgstr "http://webnus.net"
7769
 
7770
- #, fuzzy
7771
- #~| msgid "Enable booking reminder notification"
7772
- #~ msgid "Booking reminder notification is not enabled!"
7773
- #~ msgstr "Activar recordatorio de reservas del evento."
7774
-
7775
  #, fuzzy
7776
  #~| msgid "Booking module doesn't work"
7777
  #~ msgid "Booking module is not enabled!"
@@ -8099,6 +8197,11 @@ msgstr "http://webnus.net"
8099
  #~ msgid "Organizer Payment Credentials"
8100
  #~ msgstr "Nombre del organizador del evento reservado"
8101
 
 
 
 
 
 
8102
  #, fuzzy
8103
  #~| msgid "%s Email"
8104
  #~ msgid "Mass Email"
@@ -8144,9 +8247,6 @@ msgstr "http://webnus.net"
8144
  #~ "usuarios satisfechos. Si tienes algún problema, no dudes en ponerte en "
8145
  #~ "contacto con nosotros, te responderemos lo antes posible."
8146
 
8147
- #~ msgid "It shows only expired/past events."
8148
- #~ msgstr "Solo muestra eventos pasados/caducados"
8149
-
8150
  #, fuzzy
8151
  #~| msgid "Security nonce is not valid."
8152
  #~ msgid "Security nonce is missing."
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2020-02-05 11:24+0330\n"
8
+ "PO-Revision-Date: 2020-02-05 11:28+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
25
  msgid "Content"
26
  msgstr "Contenido"
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:439
29
+ #: app/features/mec.php:470 app/features/mec.php:500
30
  msgid "Shortcode"
31
  msgstr "Shortcode"
32
 
60
  msgstr "Seleccionar tipo"
61
 
62
  #: app/features/colors.php:50 app/features/fes/form.php:807
63
+ #: app/features/mec/settings.php:688
64
  msgid "Event Color"
65
  msgstr "Color del evento"
66
 
67
+ #: app/features/contextual.php:55 app/features/mec.php:415
68
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
69
+ #: app/features/mec/support.php:20 app/features/popup/shortcode.php:37
70
+ #: app/libraries/main.php:594
71
  msgid "Settings"
72
  msgstr "Ajustes"
73
 
192
  msgid "General Options"
193
  msgstr "Opciones generales"
194
 
195
+ #: app/features/contextual.php:139 app/features/mec/settings.php:437
196
  #: app/libraries/main.php:533
197
  msgid "Slugs/Permalinks"
198
  msgstr "Enlaces permanentes"
201
  msgid "Event Details/Single Event Page"
202
  msgstr "Detalles del Evento/Página de Evento Único"
203
 
204
+ #: app/features/contextual.php:166 app/features/mec/settings.php:469
205
  #: app/libraries/main.php:534
206
  msgid "Currency Options"
207
  msgstr "Opciones de moneda"
211
  msgid "Google Maps Options"
212
  msgstr "Opciones de Google Maps"
213
 
214
+ #: app/features/contextual.php:244 app/features/mec/settings.php:526
215
  #: app/libraries/main.php:535
216
  msgid "Google Recaptcha Options"
217
  msgstr "Opciones de Google Recaptcha"
230
  msgid "Next Event Module"
231
  msgstr "Módulo de Siguiente Evento"
232
 
233
+ #: app/features/contextual.php:286 app/features/mec/settings.php:562
234
  #: app/libraries/main.php:536
235
  msgid "Frontend Event Submission"
236
  msgstr "Presentación del evento Frontend"
257
  msgid "BuddyPress Integration"
258
  msgstr "Integración de BuddyPress"
259
 
260
+ #: app/features/contextual.php:334 app/features/mec/settings.php:855
261
  #: app/libraries/main.php:539
262
  msgid "Mailchimp Integration"
263
  msgstr "Integración de MailChimp"
274
  msgstr "Eventos"
275
 
276
  #: app/features/events.php:158 app/features/fes.php:223
277
+ #: app/features/mec/meta_boxes/display_options.php:1047
278
+ #: app/features/mec/meta_boxes/display_options.php:1103
279
+ #: app/features/mec/meta_boxes/display_options.php:1138
280
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
281
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
282
  #: app/skins/yearly_view/tpl.php:69
283
  msgid "Event"
284
  msgstr "Evento"
285
 
286
+ #: app/features/events.php:159 app/features/mec.php:401
287
  msgid "Add Event"
288
  msgstr "Nuevo evento"
289
 
313
  msgstr "No hay eventos en la papelera"
314
 
315
  #: app/features/events.php:182 app/features/events.php:3320
316
+ #: app/features/mec/meta_boxes/display_options.php:958
317
  #: app/features/mec/meta_boxes/search_form.php:31
318
  #: app/features/mec/meta_boxes/search_form.php:93
319
  #: app/features/mec/meta_boxes/search_form.php:155
325
  #: app/features/mec/meta_boxes/search_form.php:514
326
  #: app/features/mec/meta_boxes/search_form.php:575
327
  #: app/features/mec/meta_boxes/search_form.php:672
328
+ #: app/features/mec/settings.php:808 app/features/mec/single.php:204
329
+ #: app/features/search.php:68 app/libraries/main.php:5282
330
  #: app/libraries/skins.php:858 app/skins/single.php:566
331
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
332
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
335
  msgstr "Categoría"
336
 
337
  #: app/features/events.php:183 app/features/events.php:3275
338
+ #: app/features/fes/form.php:757 app/features/mec.php:403
339
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5281
340
  msgid "Categories"
341
  msgstr "Categorías"
342
 
425
  msgstr "Repetir el evento"
426
 
427
  #: app/features/events.php:333 app/features/events.php:1286
428
+ #: app/features/mec/settings.php:718 app/skins/single.php:947
429
  msgid "Hourly Schedule"
430
  msgstr "Programación horaria"
431
 
444
  #: app/features/events.php:336 app/features/events.php:3322
445
  #: app/features/events.php:3513 app/features/events.php:3555
446
  #: app/features/ix.php:3510 app/features/ix.php:3551
447
+ #: app/features/mec/meta_boxes/display_options.php:961
448
  #: app/features/mec/meta_boxes/search_form.php:45
449
  #: app/features/mec/meta_boxes/search_form.php:107
450
  #: app/features/mec/meta_boxes/search_form.php:169
456
  #: app/features/mec/meta_boxes/search_form.php:528
457
  #: app/features/mec/meta_boxes/search_form.php:589
458
  #: app/features/mec/meta_boxes/search_form.php:686
459
+ #: app/features/mec/settings.php:820 app/features/mec/single.php:208
460
  #: app/features/organizers.php:58 app/features/organizers.php:204
461
  #: app/features/organizers.php:260 app/features/organizers.php:262
462
+ #: app/features/organizers.php:271 app/features/search.php:78
463
+ #: app/libraries/main.php:5288 app/libraries/skins.php:910
464
  #: app/skins/single.php:812 app/skins/single/default.php:217
465
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
466
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
468
  msgstr "Organizador"
469
 
470
  #: app/features/events.php:337 app/features/events.php:1172
471
+ #: app/features/fes/form.php:730 app/libraries/main.php:5315
472
  #: app/skins/single.php:589 app/skins/single/default.php:126
473
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
474
  #: app/skins/single/modern.php:208
487
  #: app/features/events.php:3802 app/features/fes.php:223
488
  #: app/features/fes/form.php:689 app/features/labels.php:178
489
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
490
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1120
491
  #: app/modules/booking/steps/form.php:37
492
  msgid "Name"
493
  msgstr "Nombre"
498
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
499
  #: app/features/organizers.php:111 app/features/organizers.php:152
500
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
501
+ #: app/features/speakers.php:196 app/libraries/main.php:1540
502
+ #: app/libraries/main.php:1609 app/libraries/main.php:2827
503
+ #: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
504
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
505
  #: app/skins/single.php:884 app/skins/single/default.php:234
506
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
518
  #: app/features/fes/form.php:251 app/features/ix.php:3510
519
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
520
  #: app/features/mec/dashboard.php:401
521
+ #: app/features/mec/meta_boxes/display_options.php:49
522
+ #: app/features/mec/meta_boxes/display_options.php:229
523
+ #: app/features/mec/meta_boxes/display_options.php:407
524
+ #: app/features/mec/meta_boxes/display_options.php:475
525
+ #: app/features/mec/meta_boxes/display_options.php:598
526
+ #: app/features/mec/meta_boxes/display_options.php:652
527
+ #: app/features/mec/meta_boxes/display_options.php:699
528
+ #: app/features/mec/meta_boxes/display_options.php:732
529
+ #: app/features/mec/meta_boxes/display_options.php:767
530
+ #: app/features/mec/meta_boxes/display_options.php:814
531
+ #: app/features/mec/meta_boxes/display_options.php:913
532
+ #: app/features/mec/meta_boxes/display_options.php:1161
533
+ #: app/features/mec/meta_boxes/display_options.php:1249
534
+ #: app/features/mec/meta_boxes/display_options.php:1341
535
+ #: app/features/mec/meta_boxes/display_options.php:1408
536
  msgid "Start Date"
537
  msgstr "Día de inicio"
538
 
603
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
604
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
605
  #: app/features/mec/dashboard.php:71
606
+ #: app/features/mec/meta_boxes/display_options.php:80
607
+ #: app/features/mec/meta_boxes/display_options.php:93
608
+ #: app/features/mec/meta_boxes/display_options.php:106
609
+ #: app/features/mec/meta_boxes/display_options.php:117
610
+ #: app/features/mec/meta_boxes/display_options.php:129
611
+ #: app/features/mec/meta_boxes/display_options.php:260
612
+ #: app/features/mec/meta_boxes/display_options.php:272
613
+ #: app/features/mec/meta_boxes/display_options.php:284
614
+ #: app/features/mec/meta_boxes/display_options.php:297
615
+ #: app/features/mec/meta_boxes/display_options.php:308
616
+ #: app/features/mec/meta_boxes/display_options.php:321
617
+ #: app/features/mec/meta_boxes/display_options.php:332
618
+ #: app/features/mec/meta_boxes/display_options.php:439
619
+ #: app/features/mec/meta_boxes/display_options.php:615
620
+ #: app/features/mec/meta_boxes/display_options.php:945
621
+ #: app/features/mec/meta_boxes/display_options.php:1018
622
+ #: app/features/mec/meta_boxes/display_options.php:1030
623
+ #: app/features/mec/meta_boxes/display_options.php:1041
624
+ #: app/features/mec/meta_boxes/display_options.php:1073
625
+ #: app/features/mec/meta_boxes/display_options.php:1084
626
+ #: app/features/mec/meta_boxes/display_options.php:1097
627
+ #: app/features/mec/meta_boxes/display_options.php:1132
628
+ #: app/features/mec/meta_boxes/display_options.php:1181
629
+ #: app/features/mec/meta_boxes/display_options.php:1192
630
+ #: app/features/mec/meta_boxes/display_options.php:1203
631
+ #: app/features/mec/meta_boxes/display_options.php:1269
632
+ #: app/features/mec/meta_boxes/display_options.php:1282
633
+ #: app/features/mec/meta_boxes/display_options.php:1295
634
+ #: app/features/mec/meta_boxes/display_options.php:1308
635
+ #: app/features/mec/meta_boxes/display_options.php:1321
636
+ #: app/features/mec/meta_boxes/display_options.php:1372
637
+ #: app/features/mec/meta_boxes/display_options.php:1425
638
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
639
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
640
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
648
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
649
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
650
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
651
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:241
652
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
653
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:426
654
+ #: app/features/mec/settings.php:445 app/features/mec/settings.php:459
655
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:574
656
+ #: app/features/mec/settings.php:747 app/features/mec/settings.php:763
657
+ #: app/features/mec/settings.php:870 app/features/mec/settings.php:883
658
+ #: app/features/mec/settings.php:899 app/features/mec/single.php:42
659
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
660
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
661
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
845
  #: app/features/events.php:1168 app/features/events.php:3513
846
  #: app/features/events.php:3555 app/features/fes/form.php:727
847
  #: app/features/ix.php:3510 app/features/ix.php:3551
848
+ #: app/features/mec/settings.php:664 app/libraries/main.php:5314
849
  #: app/widgets/single.php:103
850
  msgid "Event Cost"
851
  msgstr "Coste del evento"
862
 
863
  #: app/features/events.php:1204 app/features/events.php:2541
864
  #: app/features/fes.php:223 app/features/mec/booking.php:491
865
+ #: app/features/profile/profile.php:53 app/libraries/main.php:2243
866
+ #: app/libraries/main.php:2885 app/modules/booking/steps/tickets.php:22
867
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
868
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
869
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
915
  #: app/features/events.php:2357 app/features/events.php:2399
916
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
917
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
918
+ #: app/libraries/main.php:2746 app/libraries/main.php:2776
919
+ #: app/libraries/main.php:2805 app/libraries/main.php:2835
920
+ #: app/libraries/main.php:2864 app/libraries/main.php:2893
921
+ #: app/libraries/main.php:2922 app/libraries/main.php:2951
922
+ #: app/libraries/main.php:2973 app/libraries/main.php:3004
923
+ #: app/libraries/main.php:3048 app/libraries/main.php:3092
924
+ #: app/libraries/main.php:3139 app/libraries/main.php:3178
925
  msgid "Remove"
926
  msgstr "Eliminar"
927
 
947
 
948
  #: app/features/events.php:1351 app/features/events.php:1384
949
  #: app/features/events.php:1445 app/features/fes/form.php:851
950
+ #: app/features/mec.php:411 app/features/mec/modules.php:52
951
+ #: app/features/mec/settings.php:712 app/features/speakers.php:62
952
+ #: app/libraries/main.php:565 app/libraries/main.php:5289
953
  #: app/modules/speakers/details.php:18
954
  msgid "Speakers"
955
  msgstr ""
961
  msgstr "Días de semana"
962
 
963
  #: app/features/events.php:1476 app/features/fes/form.php:704
964
+ #: app/features/mec/settings.php:658
965
  msgid "Event Links"
966
  msgstr "Enlaces de eventos"
967
 
968
  #: app/features/events.php:1479 app/features/events.php:1485
969
+ #: app/features/fes/form.php:706 app/libraries/main.php:5312
970
  msgid "Event Link"
971
  msgstr "Enlace del evento"
972
 
993
  msgstr ""
994
 
995
  #: app/features/events.php:1495 app/features/events.php:1508
996
+ #: app/features/fes/form.php:711 app/libraries/main.php:5313
997
  #: app/skins/single.php:673 app/skins/single/default.php:140
998
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
999
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1028
  #: app/features/events.php:1596 app/features/events.php:1849
1029
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1030
  #: app/modules/booking/steps/tickets.php:40
1031
+ #: app/skins/available_spot/tpl.php:158
1032
  msgid "Unlimited"
1033
  msgstr "Ilimitado"
1034
 
1062
  msgstr ""
1063
 
1064
  #: app/features/events.php:1653 app/libraries/book.php:60
1065
+ #: app/libraries/main.php:5317 app/modules/booking/steps/tickets.php:40
1066
  msgid "Tickets"
1067
  msgstr "Tickets"
1068
 
1166
 
1167
  #: app/features/events.php:1909 app/features/events.php:1935
1168
  #: app/features/events.php:2113 app/features/labels.php:60
1169
+ #: app/features/mec/meta_boxes/display_options.php:959
1170
  #: app/features/mec/meta_boxes/search_form.php:66
1171
  #: app/features/mec/meta_boxes/search_form.php:128
1172
  #: app/features/mec/meta_boxes/search_form.php:190
1178
  #: app/features/mec/meta_boxes/search_form.php:549
1179
  #: app/features/mec/meta_boxes/search_form.php:610
1180
  #: app/features/mec/meta_boxes/search_form.php:707
1181
+ #: app/features/mec/settings.php:840 app/features/mec/single.php:222
1182
  #: app/libraries/skins.php:988
1183
  msgid "Label"
1184
  msgstr "Etiqueta"
1223
  msgid "Amount (Per Booking)"
1224
  msgstr "Cantidad (por reservas)"
1225
 
1226
+ #: app/features/events.php:2283 app/features/mec/settings.php:736
1227
  msgid "Ticket Variations / Options"
1228
  msgstr ""
1229
 
1245
  msgstr ""
1246
 
1247
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1248
+ #: app/libraries/main.php:2768
1249
  #, fuzzy
1250
  #| msgid "Name"
1251
  msgid "MEC Name"
1252
  msgstr "Nombre"
1253
 
1254
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1255
+ #: app/libraries/main.php:2797
1256
  #, fuzzy
1257
  #| msgid "Email"
1258
  msgid "MEC Email"
1259
  msgstr "Correo electrónico"
1260
 
1261
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1262
+ #: app/libraries/main.php:2738
1263
  msgid "Text"
1264
  msgstr "Texto"
1265
 
1266
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1267
  #: app/features/organizers.php:103 app/features/organizers.php:148
1268
  #: app/features/speakers.php:119 app/features/speakers.php:192
1269
+ #: app/features/speakers.php:271 app/libraries/main.php:2914
1270
  msgid "Tel"
1271
  msgstr "Tel"
1272
 
1273
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1274
+ #: app/libraries/main.php:2856
1275
  msgid "File"
1276
  msgstr ""
1277
 
1278
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1279
+ #: app/libraries/main.php:2943
1280
  msgid "Textarea"
1281
  msgstr "Área de texto"
1282
 
1283
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1284
+ #: app/libraries/main.php:2996
1285
  msgid "Checkboxes"
1286
  msgstr "Checkboxes"
1287
 
1288
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1289
+ #: app/libraries/main.php:3040
1290
  msgid "Radio Buttons"
1291
  msgstr "Botón tipo radio"
1292
 
1366
  #: app/features/mec/meta_boxes/search_form.php:696
1367
  #: app/features/mec/meta_boxes/search_form.php:703
1368
  #: app/features/mec/meta_boxes/search_form.php:710
1369
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3084
1370
  msgid "Dropdown"
1371
  msgstr "Desplegable"
1372
 
1373
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1374
+ #: app/libraries/main.php:3131
1375
  msgid "Agreement"
1376
  msgstr "Acuerdo"
1377
 
1378
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1379
+ #: app/libraries/main.php:2972
1380
  msgid "Paragraph"
1381
  msgstr "Párrafo"
1382
 
1409
  #: app/features/ix.php:3551 app/features/locations.php:58
1410
  #: app/features/locations.php:230 app/features/locations.php:287
1411
  #: app/features/locations.php:289 app/features/locations.php:298
1412
+ #: app/features/mec/meta_boxes/display_options.php:960
1413
  #: app/features/mec/meta_boxes/search_form.php:38
1414
  #: app/features/mec/meta_boxes/search_form.php:100
1415
  #: app/features/mec/meta_boxes/search_form.php:162
1421
  #: app/features/mec/meta_boxes/search_form.php:521
1422
  #: app/features/mec/meta_boxes/search_form.php:582
1423
  #: app/features/mec/meta_boxes/search_form.php:679
1424
+ #: app/features/mec/settings.php:814 app/features/mec/single.php:212
1425
+ #: app/features/search.php:73 app/libraries/main.php:2237
1426
+ #: app/libraries/main.php:5286 app/libraries/skins.php:884
1427
  #: app/skins/single.php:493 app/skins/single.php:924
1428
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1429
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1487
  msgstr "%s Correo electrónico"
1488
 
1489
  #: app/features/events.php:3808 app/features/fes.php:223
1490
+ #: app/features/profile/profile.php:186 app/libraries/main.php:2272
1491
+ #: app/libraries/main.php:5316
1492
  msgid "Ticket"
1493
  msgstr "Ticket"
1494
 
1536
  msgid "The event removed!"
1537
  msgstr "¡El evento ha sido eliminado!"
1538
 
1539
+ #: app/features/fes.php:223 app/libraries/main.php:2249
1540
  msgid "Transaction ID"
1541
  msgstr "ID Transacción"
1542
 
1591
  msgstr "Regrese a la lista de eventos."
1592
 
1593
  #: app/features/fes/form.php:366
1594
+ #: app/features/mec/meta_boxes/display_options.php:844
1595
  #: app/libraries/main.php:410
1596
  msgid "Monday"
1597
  msgstr "Lunes"
1598
 
1599
  #: app/features/fes/form.php:367
1600
+ #: app/features/mec/meta_boxes/display_options.php:845
1601
  #: app/libraries/main.php:410
1602
  msgid "Tuesday"
1603
  msgstr "Martes"
1604
 
1605
  #: app/features/fes/form.php:368
1606
+ #: app/features/mec/meta_boxes/display_options.php:846
1607
  #: app/libraries/main.php:410
1608
  msgid "Wednesday"
1609
  msgstr "Miércoles"
1610
 
1611
  #: app/features/fes/form.php:369
1612
+ #: app/features/mec/meta_boxes/display_options.php:847
1613
  #: app/libraries/main.php:410
1614
  msgid "Thursday"
1615
  msgstr "Jueves"
1616
 
1617
  #: app/features/fes/form.php:370
1618
+ #: app/features/mec/meta_boxes/display_options.php:848
1619
  #: app/libraries/main.php:410
1620
  msgid "Friday"
1621
  msgstr "Viernes"
1622
 
1623
  #: app/features/fes/form.php:371
1624
+ #: app/features/mec/meta_boxes/display_options.php:849
1625
  #: app/libraries/main.php:410
1626
  msgid "Saturday"
1627
  msgstr "Sábado"
1628
 
1629
  #: app/features/fes/form.php:372
1630
+ #: app/features/mec/meta_boxes/display_options.php:843
1631
  #: app/libraries/main.php:410
1632
  msgid "Sunday"
1633
  msgstr "Domingo"
1660
  "Si lo rellenas, se reemplazará en vez del enlace de la página del evento por "
1661
  "defecto. Inserta todo el enlace incluyendo http(s)://"
1662
 
1663
+ #: app/features/fes/form.php:744 app/features/mec/settings.php:670
1664
  msgid "Featured Image"
1665
  msgstr "Imagen destacada"
1666
 
1669
  msgstr "Eliminar imagen"
1670
 
1671
  #: app/features/fes/form.php:783 app/features/labels.php:61
1672
+ #: app/features/labels.php:221 app/features/mec.php:404
1673
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5283
1674
  #: app/skins/single.php:702 app/skins/single/default.php:155
1675
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1676
  #: app/skins/single/modern.php:223
1677
  msgid "Labels"
1678
  msgstr "Etiquetas"
1679
 
1680
+ #: app/features/fes/form.php:829 app/features/mec.php:402
1681
  #: app/features/mec/meta_boxes/filter.php:147
1682
  msgid "Tags"
1683
  msgstr "Tags"
2007
 
2008
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2009
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2010
+ #: app/features/mec/settings.php:1054 app/features/mec/single.php:269
2011
  msgid "Checking ..."
2012
  msgstr "Verificando…"
2013
 
2057
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2058
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2059
  #: app/features/mec/booking.php:359
2060
+ #: app/features/mec/meta_boxes/display_options.php:176
2061
+ #: app/features/mec/meta_boxes/display_options.php:368
2062
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2063
  #: app/features/mec/modules.php:228
2064
  #, php-format
2068
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2069
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2070
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2071
+ #: app/features/mec/meta_boxes/display_options.php:176
2072
+ #: app/features/mec/meta_boxes/display_options.php:368
2073
+ #: app/features/mec/meta_boxes/display_options.php:396
2074
+ #: app/features/mec/meta_boxes/display_options.php:536
2075
+ #: app/features/mec/meta_boxes/display_options.php:587
2076
+ #: app/features/mec/meta_boxes/display_options.php:694
2077
+ #: app/features/mec/meta_boxes/display_options.php:801
2078
+ #: app/features/mec/meta_boxes/display_options.php:908
2079
+ #: app/features/mec/meta_boxes/display_options.php:1121
2080
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2081
  #: app/features/mec/modules.php:228
2082
  msgid "Pro version of Modern Events Calendar"
2252
  msgstr "Autosincronización"
2253
 
2254
  #: app/features/ix/sync.php:22
2255
+ #: app/features/mec/meta_boxes/display_options.php:908
2256
  #, php-format
2257
  msgid "%s is required to use synchronization feature."
2258
  msgstr "Se requiere %s para usar la funcionalidad de sincronización."
2412
  msgstr "Elige un color de etiqueta"
2413
 
2414
  #: app/features/labels.php:112 app/features/labels.php:139
2415
+ #: app/features/mec/meta_boxes/display_options.php:39
2416
+ #: app/features/mec/meta_boxes/display_options.php:216
2417
+ #: app/features/mec/meta_boxes/display_options.php:401
2418
+ #: app/features/mec/meta_boxes/display_options.php:592
2419
+ #: app/features/mec/meta_boxes/display_options.php:642
2420
+ #: app/features/mec/meta_boxes/display_options.php:806
2421
+ #: app/features/mec/meta_boxes/display_options.php:1003
2422
+ #: app/features/mec/meta_boxes/display_options.php:1060
2423
+ #: app/features/mec/meta_boxes/display_options.php:1152
2424
+ #: app/features/mec/meta_boxes/display_options.php:1239
2425
  msgid "Style"
2426
  msgstr "Estilo"
2427
 
2433
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2434
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2435
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2436
+ #: app/skins/grid/render.php:54 app/skins/list/render.php:38
2437
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2438
  #: app/skins/monthly_view/calendar_clean.php:86
2439
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2440
+ #: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
2441
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2442
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2443
  msgid "Featured"
2444
  msgstr ""
2445
 
2446
  #: app/features/labels.php:118 app/features/labels.php:143
2447
+ #: app/libraries/main.php:5532 app/skins/agenda/render.php:43
2448
+ #: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
2449
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2450
+ #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
2451
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:30
2452
  #: app/skins/monthly_view/calendar.php:90
2453
  #: app/skins/monthly_view/calendar_clean.php:90
2454
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2455
+ #: app/skins/tile/render.php:38 app/skins/timeline/render.php:48
2456
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2457
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2458
  msgid "Canceled"
2478
  msgid "Event %s"
2479
  msgstr "Evento %s"
2480
 
2481
+ #: app/features/locations.php:59 app/features/mec.php:405
2482
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2483
+ #: app/libraries/main.php:5285
2484
  msgid "Locations"
2485
  msgstr "Lugar"
2486
 
2551
  msgid "eg. City Hall"
2552
  msgstr "ej. Almería"
2553
 
2554
+ #: app/features/locations.php:310 app/features/mec/settings.php:700
2555
  #: app/widgets/single.php:115
2556
  msgid "Event Location"
2557
  msgstr "Lugar del evento"
2587
  msgid "Don't show map in single event page"
2588
  msgstr "No mostrar el mapa en la página del detalle del evento"
2589
 
2590
+ #: app/features/locations.php:356 app/libraries/main.php:5319
2591
  #, fuzzy
2592
  #| msgid "Locations"
2593
  msgid "Other Locations"
2607
  msgid "<strong>"
2608
  msgstr ""
2609
 
2610
+ #: app/features/mec.php:186
2611
  msgid ""
2612
  "Activation faild. Please check your purchase code or license type."
2613
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2614
  msgstr ""
2615
 
2616
+ #: app/features/mec.php:186
2617
  msgid "Troubleshooting"
2618
  msgstr ""
2619
 
2620
+ #: app/features/mec.php:256 app/libraries/notifications.php:940
2621
  #, php-format
2622
  msgid "%s to %s"
2623
  msgstr ""
2624
 
2625
+ #: app/features/mec.php:279
2626
  msgid ""
2627
  "Your options is not in JSON format. Please insert correct options in this "
2628
  "field and try again."
2629
  msgstr ""
2630
 
2631
+ #: app/features/mec.php:286
2632
  msgid "Your options field can not be empty!"
2633
  msgstr ""
2634
 
2635
+ #: app/features/mec.php:292
2636
  msgid "Your options imported successfuly."
2637
  msgstr ""
2638
 
2639
+ #: app/features/mec.php:385
2640
  #, fuzzy
2641
  #| msgid "Support"
2642
  msgid "MEC - Support"
2643
  msgstr "Soporte"
2644
 
2645
+ #: app/features/mec.php:385 app/features/mec/support-page.php:9
2646
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2647
  msgid "Support"
2648
  msgstr "Soporte"
2649
 
2650
+ #: app/features/mec.php:406 app/features/mec/dashboard.php:278
2651
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2652
+ #: app/libraries/main.php:5287
2653
  msgid "Organizers"
2654
  msgstr "Organizadores"
2655
 
2656
+ #: app/features/mec.php:414 app/features/mec.php:438
2657
  #: app/features/mec/dashboard.php:264
2658
  msgid "Shortcodes"
2659
  msgstr "Shortcodes"
2660
 
2661
+ #: app/features/mec.php:415
2662
  msgid "MEC - Settings"
2663
  msgstr "Ajustes MEC"
2664
 
2665
+ #: app/features/mec.php:416
2666
  #, fuzzy
2667
  #| msgid "MEC - Settings"
2668
  msgid "MEC - Addons"
2669
  msgstr "Ajustes MEC"
2670
 
2671
+ #: app/features/mec.php:416 app/features/mec/addons.php:22
2672
  msgid "Addons"
2673
  msgstr ""
2674
 
2675
+ #: app/features/mec.php:419
2676
  #, fuzzy
2677
  #| msgid "Support"
2678
  msgid "MEC - Report"
2679
  msgstr "Soporte"
2680
 
2681
+ #: app/features/mec.php:419
2682
  #, fuzzy
2683
  #| msgid "Export"
2684
  msgid "Report"
2685
  msgstr "Exportar"
2686
 
2687
+ #: app/features/mec.php:440
2688
  msgid "Add Shortcode"
2689
  msgstr "Nuevo Shortcode"
2690
 
2691
+ #: app/features/mec.php:441
2692
  msgid "Add New Shortcode"
2693
  msgstr "Añadir nuevo Shortcode"
2694
 
2695
+ #: app/features/mec.php:442
2696
  msgid "No shortcodes found!"
2697
  msgstr "No hay shortcodes"
2698
 
2699
+ #: app/features/mec.php:443
2700
  msgid "All Shortcodes"
2701
  msgstr "Todos los Shortcodes"
2702
 
2703
+ #: app/features/mec.php:444
2704
  msgid "Edit shortcodes"
2705
  msgstr "Editar Shortcodes"
2706
 
2707
+ #: app/features/mec.php:445
2708
  msgid "No shortcodes found in Trash!"
2709
  msgstr "No hay shortcodes en la papelera"
2710
 
2711
+ #: app/features/mec.php:498
2712
  msgid "Display Options"
2713
  msgstr "Opciones de pantalla"
2714
 
2715
+ #: app/features/mec.php:499
2716
  msgid "Filter Options"
2717
  msgstr "Opciones de filtros"
2718
 
2719
+ #: app/features/mec.php:501
2720
  msgid "Search Form"
2721
  msgstr "Formulario de Búsqueda"
2722
 
2724
  msgid "Display content's images as Popup"
2725
  msgstr ""
2726
 
2727
+ #: app/features/mec.php:889 app/features/popup/shortcode.php:300
2728
  msgid "Single Event Display Method"
2729
  msgstr "Método de vista para página del evento"
2730
 
2731
+ #: app/features/mec.php:894 app/features/popup/shortcode.php:304
2732
  msgid "Separate Window"
2733
  msgstr "Ventana aparte"
2734
 
2735
+ #: app/features/mec.php:895 app/features/popup/shortcode.php:308
2736
  msgid "Modal 1"
2737
  msgstr "Modal 1"
2738
 
2739
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2740
+ #: app/features/mec/dashboard.php:81 app/features/mec/go-pro.php:13
2741
+ #: app/features/mec/report.php:17 app/features/mec/support-page.php:21
2742
  msgid "Version"
2743
  msgstr "Versión"
2744
 
2775
  #: app/features/mec/notifications.php:828
2776
  #: app/features/mec/notifications.php:924
2777
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2778
+ #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
2779
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
2780
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2781
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2782
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2808
  msgstr "El valor predeterminado es Y-m-d"
2809
 
2810
  #: app/features/mec/booking.php:115
2811
+ #: app/features/mec/meta_boxes/display_options.php:135
2812
+ #: app/features/mec/meta_boxes/display_options.php:349
2813
+ #: app/features/mec/meta_boxes/display_options.php:445
2814
+ #: app/features/mec/meta_boxes/display_options.php:951
2815
+ #: app/features/mec/meta_boxes/display_options.php:1218
2816
+ #: app/features/mec/meta_boxes/display_options.php:1327
2817
+ #: app/features/mec/meta_boxes/display_options.php:1378
2818
  msgid "Limit"
2819
  msgstr "Límite"
2820
 
2862
  msgstr ""
2863
 
2864
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2865
+ #: app/features/mec/settings.php:607 app/features/mec/settings.php:617
2866
  msgid "Thank You Page"
2867
  msgstr "Página de agradecimiento"
2868
 
2875
  "Déjalo vacío si lo deseas desactivado."
2876
 
2877
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2878
+ #: app/features/mec/settings.php:627 app/features/mec/settings.php:632
2879
  #, fuzzy
2880
  #| msgid "Thank You Page"
2881
  msgid "Thank You Page Time Interval"
2882
  msgstr "Página de agradecimiento"
2883
 
2884
+ #: app/features/mec/booking.php:167 app/features/mec/settings.php:629
2885
  msgid "2000 mean 2 seconds"
2886
  msgstr ""
2887
 
2888
+ #: app/features/mec/booking.php:171 app/features/mec/settings.php:633
2889
  msgid ""
2890
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2891
  "2000 means 2 seconds."
2996
 
2997
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2998
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2999
+ #: app/features/mec/settings.php:1049 app/features/mec/single.php:264
3000
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3001
  msgid "Saved"
3002
  msgstr "Guardado"
3003
 
3004
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3005
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3006
+ #: app/features/mec/settings.php:1050 app/features/mec/single.php:265
3007
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3008
  msgid "Settings Saved!"
3009
  msgstr "¡Ajustes guardados!"
3011
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3012
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3013
  #: app/features/mec/notifications.php:905
3014
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
3015
+ #: app/features/mec/settings.php:1074 app/features/mec/single.php:267
3016
+ #: app/features/mec/single.php:289 app/libraries/main.php:5531
3017
  msgid "Verified"
3018
  msgstr "Verificado"
3019
 
3020
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3021
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
3022
  #: app/features/mec/single.php:291
3023
  msgid "Please Refresh Page"
3024
  msgstr "Por favor, actualiza la página"
3048
  msgid "Update"
3049
  msgstr "Actualizar %s"
3050
 
3051
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
3052
  #, fuzzy, php-format
3053
  #| msgid ""
3054
  #| "You're using %s version of Modern Events Calendar. To use advanced "
3063
  "sistema de reserva avanzado, las temas modernos como agenda, horario, "
3064
  "masonry, vista anual, puntos disponibles, etc podrías %s a la versión Pro."
3065
 
3066
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
3067
  msgid "lite"
3068
  msgstr "lite"
3069
 
3070
+ #: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:25
3071
+ #: app/features/mec/support.php:126
3072
  msgid "GO PREMIUM"
3073
  msgstr "IR A PREMIUM"
3074
 
3075
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3076
  #, php-format
3077
  msgid ""
3078
  "Easily get a discount coupon by rating us on %s or following and reposting "
3079
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3080
  msgstr ""
3081
 
3082
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3083
  #, fuzzy
3084
  #| msgid "Address"
3085
  msgid "WordPress"
3086
  msgstr "Dirección"
3087
 
3088
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
3089
  msgid "Copouns!"
3090
  msgstr ""
3091
 
3123
  "code."
3124
  msgstr ""
3125
 
3126
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:403
3127
  msgid "Upcoming Events"
3128
  msgstr "Próximos Eventos"
3129
 
3172
  msgid "Change Log"
3173
  msgstr "Historial de cambios"
3174
 
3175
+ #: app/features/mec/go-pro.php:9
3176
+ msgid "Go Pro"
3177
+ msgstr ""
3178
+
3179
  #: app/features/mec/ie.php:21
3180
  msgid ""
3181
  "Insert your backup files below and press import to restore your site's "
3217
  "Por cierto, si tu pagina web es multidioma, te recomendamos que cambies los "
3218
  "mensajes desde los archivos de idioma."
3219
 
3220
+ #: app/features/mec/meta_boxes/display_options.php:23
3221
  msgid "Skin"
3222
  msgstr "Tema"
3223
 
3224
+ #: app/features/mec/meta_boxes/display_options.php:41
3225
+ #: app/features/mec/meta_boxes/display_options.php:218
3226
+ #: app/features/mec/meta_boxes/display_options.php:644
3227
+ #: app/features/mec/meta_boxes/display_options.php:810
3228
+ #: app/features/mec/meta_boxes/display_options.php:1005
3229
+ #: app/features/mec/settings.php:267 app/features/mec/settings.php:291
3230
+ #: app/features/mec/settings.php:300 app/features/mec/settings.php:341
3231
+ #: app/features/mec/settings.php:365 app/features/mec/settings.php:374
3232
+ #: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:95
3233
+ #: app/features/popup/shortcode.php:164 app/features/popup/shortcode.php:211
3234
  msgid "Classic"
3235
  msgstr "Clásico"
3236
 
3237
+ #: app/features/mec/meta_boxes/display_options.php:42
3238
+ #: app/features/mec/meta_boxes/display_options.php:220
3239
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:302
3240
+ #: app/features/mec/settings.php:366 app/features/mec/settings.php:376
3241
+ #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:105
3242
  msgid "Minimal"
3243
  msgstr "Mínimo"
3244
 
3245
+ #: app/features/mec/meta_boxes/display_options.php:43
3246
+ #: app/features/mec/meta_boxes/display_options.php:221
3247
+ #: app/features/mec/meta_boxes/display_options.php:594
3248
+ #: app/features/mec/meta_boxes/display_options.php:646
3249
+ #: app/features/mec/meta_boxes/display_options.php:808
3250
+ #: app/features/mec/meta_boxes/display_options.php:1007
3251
+ #: app/features/mec/settings.php:269 app/features/mec/settings.php:282
3252
+ #: app/features/mec/settings.php:293 app/features/mec/settings.php:303
3253
+ #: app/features/mec/settings.php:343 app/features/mec/settings.php:356
3254
+ #: app/features/mec/settings.php:367 app/features/mec/settings.php:377
3255
+ #: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:110
3256
+ #: app/features/popup/shortcode.php:157 app/features/popup/shortcode.php:174
3257
+ #: app/features/popup/shortcode.php:197 app/features/popup/shortcode.php:221
3258
  msgid "Modern"
3259
  msgstr "Moderno"
3260
 
3261
+ #: app/features/mec/meta_boxes/display_options.php:44
3262
+ #: app/features/mec/settings.php:294 app/features/mec/settings.php:368
3263
+ #: app/features/popup/shortcode.php:83
3264
  msgid "Standard"
3265
  msgstr "Estándar"
3266
 
3267
+ #: app/features/mec/meta_boxes/display_options.php:45
3268
+ #: app/features/mec/settings.php:295 app/features/mec/settings.php:369
3269
+ #: app/features/popup/shortcode.php:88
3270
  msgid "Accordion"
3271
  msgstr "Acordeón"
3272
 
 
 
 
 
 
 
 
 
 
 
 
 
3273
  #: app/features/mec/meta_boxes/display_options.php:51
3274
  #: app/features/mec/meta_boxes/display_options.php:231
3275
  #: app/features/mec/meta_boxes/display_options.php:409
3279
  #: app/features/mec/meta_boxes/display_options.php:1163
3280
  #: app/features/mec/meta_boxes/display_options.php:1251
3281
  #: app/features/mec/meta_boxes/display_options.php:1343
3282
+ msgid "Today"
3283
+ msgstr "Hoy"
3284
 
3285
  #: app/features/mec/meta_boxes/display_options.php:52
3286
  #: app/features/mec/meta_boxes/display_options.php:232
3287
  #: app/features/mec/meta_boxes/display_options.php:410
 
 
3288
  #: app/features/mec/meta_boxes/display_options.php:702
3289
  #: app/features/mec/meta_boxes/display_options.php:735
 
 
3290
  #: app/features/mec/meta_boxes/display_options.php:916
3291
  #: app/features/mec/meta_boxes/display_options.php:1164
3292
  #: app/features/mec/meta_boxes/display_options.php:1252
3293
  #: app/features/mec/meta_boxes/display_options.php:1344
3294
+ msgid "Tomorrow"
3295
+ msgstr "Mañana"
 
3296
 
3297
  #: app/features/mec/meta_boxes/display_options.php:53
3298
  #: app/features/mec/meta_boxes/display_options.php:233
3308
  #: app/features/mec/meta_boxes/display_options.php:1253
3309
  #: app/features/mec/meta_boxes/display_options.php:1345
3310
  #: app/features/mec/meta_boxes/display_options.php:1410
3311
+ msgid "Start of Current Month"
3312
+ msgstr "Inicio del mes actual"
3313
 
3314
  #: app/features/mec/meta_boxes/display_options.php:54
3315
  #: app/features/mec/meta_boxes/display_options.php:234
3316
  #: app/features/mec/meta_boxes/display_options.php:412
3317
  #: app/features/mec/meta_boxes/display_options.php:478
 
3318
  #: app/features/mec/meta_boxes/display_options.php:655
3319
  #: app/features/mec/meta_boxes/display_options.php:704
3320
  #: app/features/mec/meta_boxes/display_options.php:737
3325
  #: app/features/mec/meta_boxes/display_options.php:1254
3326
  #: app/features/mec/meta_boxes/display_options.php:1346
3327
  #: app/features/mec/meta_boxes/display_options.php:1411
3328
+ msgid "Start of Next Month"
3329
+ msgstr "Inicio del siguiente mes"
3330
+
3331
+ #: app/features/mec/meta_boxes/display_options.php:55
3332
+ #: app/features/mec/meta_boxes/display_options.php:235
3333
+ #: app/features/mec/meta_boxes/display_options.php:413
3334
+ #: app/features/mec/meta_boxes/display_options.php:479
3335
+ #: app/features/mec/meta_boxes/display_options.php:602
3336
+ #: app/features/mec/meta_boxes/display_options.php:656
3337
+ #: app/features/mec/meta_boxes/display_options.php:705
3338
+ #: app/features/mec/meta_boxes/display_options.php:738
3339
+ #: app/features/mec/meta_boxes/display_options.php:773
3340
+ #: app/features/mec/meta_boxes/display_options.php:820
3341
+ #: app/features/mec/meta_boxes/display_options.php:919
3342
+ #: app/features/mec/meta_boxes/display_options.php:1167
3343
+ #: app/features/mec/meta_boxes/display_options.php:1255
3344
+ #: app/features/mec/meta_boxes/display_options.php:1347
3345
+ #: app/features/mec/meta_boxes/display_options.php:1412
3346
  msgid "On a certain date"
3347
  msgstr "Una fecha concreta"
3348
 
3349
+ #: app/features/mec/meta_boxes/display_options.php:58
3350
+ #: app/features/mec/meta_boxes/display_options.php:238
3351
+ #: app/features/mec/meta_boxes/display_options.php:416
3352
+ #: app/features/mec/meta_boxes/display_options.php:482
3353
+ #: app/features/mec/meta_boxes/display_options.php:605
3354
+ #: app/features/mec/meta_boxes/display_options.php:659
3355
+ #: app/features/mec/meta_boxes/display_options.php:708
3356
+ #: app/features/mec/meta_boxes/display_options.php:742
3357
+ #: app/features/mec/meta_boxes/display_options.php:776
3358
+ #: app/features/mec/meta_boxes/display_options.php:823
3359
+ #: app/features/mec/meta_boxes/display_options.php:922
3360
+ #: app/features/mec/meta_boxes/display_options.php:1170
3361
+ #: app/features/mec/meta_boxes/display_options.php:1258
3362
+ #: app/features/mec/meta_boxes/display_options.php:1350
3363
+ #: app/features/mec/meta_boxes/display_options.php:1415
3364
  #, php-format
3365
  msgid "eg. %s"
3366
  msgstr "ej. %s"
3367
 
 
3368
  #: app/features/mec/meta_boxes/display_options.php:63
3369
+ #: app/features/mec/meta_boxes/display_options.php:64
3370
+ #: app/features/mec/meta_boxes/display_options.php:67
3371
  #: app/features/mec/meta_boxes/display_options.php:243
3372
+ #: app/features/mec/meta_boxes/display_options.php:244
3373
+ #: app/features/mec/meta_boxes/display_options.php:247
3374
  #: app/features/mec/meta_boxes/display_options.php:421
3375
+ #: app/features/mec/meta_boxes/display_options.php:422
3376
+ #: app/features/mec/meta_boxes/display_options.php:425
3377
  #: app/features/mec/meta_boxes/display_options.php:927
3378
+ #: app/features/mec/meta_boxes/display_options.php:928
3379
+ #: app/features/mec/meta_boxes/display_options.php:931
3380
  #: app/features/mec/meta_boxes/display_options.php:1355
3381
+ #: app/features/mec/meta_boxes/display_options.php:1356
3382
+ #: app/features/mec/meta_boxes/display_options.php:1359
3383
  #, fuzzy
3384
  #| msgid "Maximum Dates"
3385
  msgid "Maximum Date"
3386
  msgstr "Fechas máximas"
3387
 
3388
+ #: app/features/mec/meta_boxes/display_options.php:68
3389
+ #: app/features/mec/meta_boxes/display_options.php:248
3390
+ #: app/features/mec/meta_boxes/display_options.php:426
3391
+ #: app/features/mec/meta_boxes/display_options.php:932
3392
+ #: app/features/mec/meta_boxes/display_options.php:1360
3393
  #, fuzzy
3394
  #| msgid "Show events based on created shortcodes."
3395
  msgid "Show events before the specified date."
3396
  msgstr "Mostrar eventos basados en shortcodes."
3397
 
3398
+ #: app/features/mec/meta_boxes/display_options.php:75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3399
  #: app/features/mec/meta_boxes/display_options.php:79
3400
+ #: app/features/mec/meta_boxes/display_options.php:86
 
 
 
3401
  #: app/features/mec/meta_boxes/display_options.php:92
3402
+ #: app/features/mec/meta_boxes/display_options.php:99
 
 
3403
  #: app/features/mec/meta_boxes/display_options.php:105
3404
+ #: app/features/mec/meta_boxes/display_options.php:112
3405
+ #: app/features/mec/meta_boxes/display_options.php:116
3406
+ #: app/features/mec/meta_boxes/display_options.php:123
3407
+ #: app/features/mec/meta_boxes/display_options.php:128
3408
+ #: app/features/mec/meta_boxes/display_options.php:255
3409
+ #: app/features/mec/meta_boxes/display_options.php:259
3410
+ #: app/features/mec/meta_boxes/display_options.php:266
3411
+ #: app/features/mec/meta_boxes/display_options.php:271
3412
+ #: app/features/mec/meta_boxes/display_options.php:278
3413
+ #: app/features/mec/meta_boxes/display_options.php:283
3414
+ #: app/features/mec/meta_boxes/display_options.php:290
3415
  #: app/features/mec/meta_boxes/display_options.php:296
3416
+ #: app/features/mec/meta_boxes/display_options.php:303
3417
+ #: app/features/mec/meta_boxes/display_options.php:307
3418
+ #: app/features/mec/meta_boxes/display_options.php:314
3419
  #: app/features/mec/meta_boxes/display_options.php:320
3420
+ #: app/features/mec/meta_boxes/display_options.php:327
3421
+ #: app/features/mec/meta_boxes/display_options.php:331
3422
+ #: app/features/mec/meta_boxes/display_options.php:433
3423
+ #: app/features/mec/meta_boxes/display_options.php:438
3424
+ #: app/features/mec/meta_boxes/display_options.php:609
3425
+ #: app/features/mec/meta_boxes/display_options.php:614
3426
+ #: app/features/mec/meta_boxes/display_options.php:855
3427
+ #: app/features/mec/meta_boxes/display_options.php:939
3428
+ #: app/features/mec/meta_boxes/display_options.php:944
3429
+ #: app/features/mec/meta_boxes/display_options.php:1011
3430
+ #: app/features/mec/meta_boxes/display_options.php:1017
3431
+ #: app/features/mec/meta_boxes/display_options.php:1024
3432
+ #: app/features/mec/meta_boxes/display_options.php:1029
3433
+ #: app/features/mec/meta_boxes/display_options.php:1036
3434
+ #: app/features/mec/meta_boxes/display_options.php:1040
3435
+ #: app/features/mec/meta_boxes/display_options.php:1068
3436
+ #: app/features/mec/meta_boxes/display_options.php:1072
3437
+ #: app/features/mec/meta_boxes/display_options.php:1079
3438
+ #: app/features/mec/meta_boxes/display_options.php:1083
3439
+ #: app/features/mec/meta_boxes/display_options.php:1090
3440
+ #: app/features/mec/meta_boxes/display_options.php:1096
3441
+ #: app/features/mec/meta_boxes/display_options.php:1126
3442
+ #: app/features/mec/meta_boxes/display_options.php:1131
3443
+ #: app/features/mec/meta_boxes/display_options.php:1174
3444
+ #: app/features/mec/meta_boxes/display_options.php:1180
3445
+ #: app/features/mec/meta_boxes/display_options.php:1187
3446
+ #: app/features/mec/meta_boxes/display_options.php:1191
3447
+ #: app/features/mec/meta_boxes/display_options.php:1198
3448
+ #: app/features/mec/meta_boxes/display_options.php:1202
3449
+ #: app/features/mec/meta_boxes/display_options.php:1262
3450
  #: app/features/mec/meta_boxes/display_options.php:1268
3451
+ #: app/features/mec/meta_boxes/display_options.php:1275
3452
  #: app/features/mec/meta_boxes/display_options.php:1281
3453
+ #: app/features/mec/meta_boxes/display_options.php:1288
3454
  #: app/features/mec/meta_boxes/display_options.php:1294
3455
+ #: app/features/mec/meta_boxes/display_options.php:1301
3456
  #: app/features/mec/meta_boxes/display_options.php:1307
3457
+ #: app/features/mec/meta_boxes/display_options.php:1314
3458
  #: app/features/mec/meta_boxes/display_options.php:1320
3459
+ #: app/features/mec/meta_boxes/display_options.php:1367
3460
+ #: app/features/mec/meta_boxes/display_options.php:1371
3461
+ #: app/features/mec/meta_boxes/display_options.php:1419
3462
+ #: app/features/mec/meta_boxes/display_options.php:1424
3463
+ msgid "Date Formats"
3464
+ msgstr "Formato de fecha"
3465
+
3466
+ #: app/features/mec/meta_boxes/display_options.php:80
3467
+ #: app/features/mec/meta_boxes/display_options.php:308
3468
+ msgid "Default value is \"M d Y\""
3469
+ msgstr "El valor predeterminado es \"M d Y\""
3470
+
3471
+ #: app/features/mec/meta_boxes/display_options.php:93
3472
+ msgid "Default values are d, M and l"
3473
+ msgstr "Los valores predeterminados son d, M y l"
3474
+
3475
+ #: app/features/mec/meta_boxes/display_options.php:106
3476
+ #: app/features/mec/meta_boxes/display_options.php:297
3477
+ #: app/features/mec/meta_boxes/display_options.php:321
3478
+ #: app/features/mec/meta_boxes/display_options.php:1269
3479
+ #: app/features/mec/meta_boxes/display_options.php:1282
3480
+ #: app/features/mec/meta_boxes/display_options.php:1295
3481
+ #: app/features/mec/meta_boxes/display_options.php:1308
3482
+ #: app/features/mec/meta_boxes/display_options.php:1321
3483
  msgid "Default values are d, F and l"
3484
  msgstr "Los valores predeterminados son d, F y l"
3485
 
3486
+ #: app/features/mec/meta_boxes/display_options.php:117
3487
  msgid "Default value is \"M d\""
3488
  msgstr "Valor por defecto es \"M d\""
3489
 
3490
+ #: app/features/mec/meta_boxes/display_options.php:129
3491
  #, fuzzy
3492
  #| msgid "Default values are d and F"
3493
  msgid "TDefault values are d and F"
3494
  msgstr "Los valores predeterminados son d y F"
3495
 
3496
+ #: app/features/mec/meta_boxes/display_options.php:136
3497
+ #: app/features/mec/meta_boxes/display_options.php:350
3498
+ #: app/features/mec/meta_boxes/display_options.php:446
3499
+ #: app/features/mec/meta_boxes/display_options.php:622
3500
+ #: app/features/mec/meta_boxes/display_options.php:664
3501
+ #: app/features/mec/meta_boxes/display_options.php:747
3502
+ #: app/features/mec/meta_boxes/display_options.php:781
3503
+ #: app/features/mec/meta_boxes/display_options.php:828
3504
+ #: app/features/mec/meta_boxes/display_options.php:1219
3505
+ #: app/features/mec/meta_boxes/display_options.php:1328
3506
+ #: app/features/mec/meta_boxes/display_options.php:1379
3507
  msgid "eg. 6"
3508
  msgstr "ej. 6"
3509
 
3510
+ #: app/features/mec/meta_boxes/display_options.php:141
3511
  #, fuzzy
3512
  #| msgid "Hide Event Time"
3513
  msgid "Include Events Times"
3514
  msgstr "Ocultar hora del evento"
3515
 
3516
+ #: app/features/mec/meta_boxes/display_options.php:152
3517
+ #: app/features/mec/meta_boxes/display_options.php:354
3518
+ #: app/features/mec/meta_boxes/display_options.php:450
3519
+ #: app/features/mec/meta_boxes/display_options.php:988
3520
+ #: app/features/mec/meta_boxes/display_options.php:1383
3521
  msgid "Load More Button"
3522
  msgstr "Botón cargar más"
3523
 
3524
+ #: app/features/mec/meta_boxes/display_options.php:162
3525
+ #: app/features/mec/meta_boxes/display_options.php:460
3526
+ #: app/features/mec/meta_boxes/display_options.php:1393
3527
  msgid "Show Month Divider"
3528
  msgstr "Mostrar divisor del mes"
3529
 
3530
+ #: app/features/mec/meta_boxes/display_options.php:172
3531
+ #: app/features/mec/meta_boxes/display_options.php:364
3532
  #, fuzzy
3533
  #| msgid "Show Google Maps on event page"
3534
  msgid "Show Map on top"
3535
  msgstr "Ver eventos en Google Maps"
3536
 
3537
+ #: app/features/mec/meta_boxes/display_options.php:187
3538
+ #: app/features/mec/meta_boxes/display_options.php:379
3539
+ #: app/features/mec/meta_boxes/display_options.php:717
3540
  msgid "Geolocation"
3541
  msgstr "Geolocalización"
3542
 
3543
+ #: app/features/mec/meta_boxes/display_options.php:202
3544
  msgid "Toggle for Month Divider"
3545
  msgstr ""
3546
 
3547
+ #: app/features/mec/meta_boxes/display_options.php:219
3548
+ #: app/features/mec/meta_boxes/display_options.php:403
3549
+ #: app/features/mec/meta_boxes/display_options.php:498
3550
+ #: app/features/mec/meta_boxes/display_options.php:645
3551
+ #: app/features/mec/meta_boxes/display_options.php:809
3552
+ #: app/features/mec/meta_boxes/display_options.php:1006
3553
+ #: app/features/mec/settings.php:268 app/features/mec/settings.php:283
3554
+ #: app/features/mec/settings.php:301 app/features/mec/settings.php:342
3555
+ #: app/features/mec/settings.php:357 app/features/mec/settings.php:375
3556
+ #: app/features/popup/shortcode.php:100 app/features/popup/shortcode.php:132
3557
+ #: app/features/popup/shortcode.php:140 app/features/popup/shortcode.php:169
3558
+ #: app/features/popup/shortcode.php:202 app/features/popup/shortcode.php:216
3559
  msgid "Clean"
3560
  msgstr "Limpio"
3561
 
3562
+ #: app/features/mec/meta_boxes/display_options.php:222
3563
+ #: app/features/mec/meta_boxes/display_options.php:500
3564
+ #: app/features/mec/meta_boxes/display_options.php:648
3565
+ #: app/features/mec/settings.php:271 app/features/mec/settings.php:304
3566
+ #: app/features/mec/settings.php:345 app/features/mec/settings.php:378
3567
+ #: app/features/popup/shortcode.php:115 app/features/popup/shortcode.php:150
3568
+ #: app/features/popup/shortcode.php:184
3569
  msgid "Simple"
3570
  msgstr "Simple"
3571
 
3572
+ #: app/features/mec/meta_boxes/display_options.php:223
3573
+ #: app/features/popup/shortcode.php:120
3574
  msgid "Colorful"
3575
  msgstr "Colorido"
3576
 
3577
+ #: app/features/mec/meta_boxes/display_options.php:224
3578
+ #: app/features/mec/meta_boxes/display_options.php:499
3579
+ #: app/features/mec/meta_boxes/display_options.php:647
3580
+ #: app/features/mec/settings.php:270 app/features/mec/settings.php:306
3581
+ #: app/features/mec/settings.php:344 app/features/mec/settings.php:380
3582
+ #: app/features/popup/shortcode.php:125 app/features/popup/shortcode.php:145
3583
+ #: app/features/popup/shortcode.php:179
3584
  msgid "Novel"
3585
  msgstr "Novel"
3586
 
3587
+ #: app/features/mec/meta_boxes/display_options.php:260
3588
+ #: app/features/mec/meta_boxes/display_options.php:1372
3589
  #, fuzzy
3590
  #| msgid "Default value is \"d F Y\""
3591
  msgid "Default value is \"d F Y"
3592
  msgstr "Valor por defecto is \"d F Y\""
3593
 
3594
+ #: app/features/mec/meta_boxes/display_options.php:272
3595
  msgid "Default values are d and F"
3596
  msgstr "Los valores predeterminados son d y F"
3597
 
3598
+ #: app/features/mec/meta_boxes/display_options.php:284
3599
  msgid "Default values are d and M"
3600
  msgstr "Los valores predeterminados son d y M"
3601
 
3602
+ #: app/features/mec/meta_boxes/display_options.php:332
3603
  msgid "Default value is \"d F Y\""
3604
  msgstr "Valor por defecto is \"d F Y\""
3605
 
3606
+ #: app/features/mec/meta_boxes/display_options.php:338
3607
+ #: app/features/mec/meta_boxes/display_options.php:1209
3608
+ #: app/features/mec/meta_boxes/display_options.php:1431
3609
  msgid "Count in row"
3610
  msgstr "Contador en fila"
3611
 
3612
+ #: app/features/mec/meta_boxes/display_options.php:396
3613
+ #: app/features/mec/meta_boxes/display_options.php:587
3614
+ #: app/features/mec/meta_boxes/display_options.php:694
3615
+ #: app/features/mec/meta_boxes/display_options.php:801
3616
+ #: app/features/mec/meta_boxes/display_options.php:1121
3617
  #, php-format
3618
  msgid "%s is required to use this skin."
3619
  msgstr "Se requiere %s para utilizar este tema."
3620
 
3621
+ #: app/features/mec/meta_boxes/display_options.php:439
3622
+ #: app/features/mec/meta_boxes/display_options.php:615
3623
  msgid "Default values are l and F j"
3624
  msgstr "Los valores por defectos son l y F j"
3625
 
3626
+ #: app/features/mec/meta_boxes/display_options.php:486
3627
  msgid "Default View"
3628
  msgstr "Vista por defecto"
3629
 
3630
+ #: app/features/mec/meta_boxes/display_options.php:488
3631
+ #: app/features/mec/meta_boxes/display_options.php:509
3632
+ #: app/libraries/main.php:330 app/libraries/main.php:1758
3633
+ #: app/libraries/main.php:1783
3634
  msgid "List View"
3635
  msgstr "Vista de lista"
3636
 
3637
+ #: app/features/mec/meta_boxes/display_options.php:489
3638
+ #: app/features/mec/meta_boxes/display_options.php:519
3639
+ #: app/libraries/main.php:334 app/libraries/main.php:1752
3640
+ #: app/libraries/main.php:1777
3641
  msgid "Yearly View"
3642
  msgstr "Vista anual"
3643
 
3644
+ #: app/features/mec/meta_boxes/display_options.php:490
3645
+ #: app/features/mec/meta_boxes/display_options.php:541
3646
  msgid "Monthly/Calendar View"
3647
  msgstr "Vista Mensual/Calendario"
3648
 
3649
+ #: app/features/mec/meta_boxes/display_options.php:491
3650
+ #: app/features/mec/meta_boxes/display_options.php:551
3651
+ #: app/libraries/main.php:337 app/libraries/main.php:1754
3652
+ #: app/libraries/main.php:1779
3653
  msgid "Weekly View"
3654
  msgstr "Vista de semana"
3655
 
3656
+ #: app/features/mec/meta_boxes/display_options.php:492
3657
+ #: app/features/mec/meta_boxes/display_options.php:561
3658
+ #: app/libraries/main.php:336 app/libraries/main.php:1755
3659
+ #: app/libraries/main.php:1780
3660
  msgid "Daily View"
3661
  msgstr "Vista de día"
3662
 
3663
+ #: app/features/mec/meta_boxes/display_options.php:496
3664
+ #: app/features/popup/shortcode.php:136
3665
  msgid "Monthly Style"
3666
  msgstr ""
3667
 
3668
+ #: app/features/mec/meta_boxes/display_options.php:536
3669
  #, fuzzy, php-format
3670
  #| msgid "%s is required to use this skin."
3671
  msgid "%s is required to use <b>Yearly View</b> skin."
3672
  msgstr "Se requiere %s para utilizar este tema."
3673
 
3674
+ #: app/features/mec/meta_boxes/display_options.php:569
3675
  msgid "The price shows only in List View."
3676
  msgstr "El precio sólo aparece en la vista de lista."
3677
 
3678
+ #: app/features/mec/meta_boxes/display_options.php:572
3679
  msgid "Display Event Price"
3680
  msgstr "Mostrar el precio del evento"
3681
 
3682
+ #: app/features/mec/meta_boxes/display_options.php:600
3683
  msgid "Start of Current Year"
3684
  msgstr "Comienzo del año actual"
3685
 
3686
+ #: app/features/mec/meta_boxes/display_options.php:601
3687
  msgid "Start of Next Year"
3688
  msgstr "Comienzo del próximo año"
3689
 
3690
+ #: app/features/mec/meta_boxes/display_options.php:621
3691
+ #: app/features/mec/meta_boxes/display_options.php:663
3692
+ #: app/features/mec/meta_boxes/display_options.php:746
3693
+ #: app/features/mec/meta_boxes/display_options.php:780
3694
+ #: app/features/mec/meta_boxes/display_options.php:827
3695
  msgid "Events per day"
3696
  msgstr "Eventos por día"
3697
 
3698
+ #: app/features/mec/meta_boxes/display_options.php:626
3699
+ #: app/features/mec/meta_boxes/display_options.php:668
3700
+ #: app/features/mec/meta_boxes/display_options.php:751
3701
+ #: app/features/mec/meta_boxes/display_options.php:785
3702
+ #: app/features/mec/meta_boxes/display_options.php:889
3703
+ #: app/features/mec/meta_boxes/display_options.php:1440
3704
  msgid "Next/Previous Buttons"
3705
  msgstr "Botones Siguiente/Anterior"
3706
 
3707
+ #: app/features/mec/meta_boxes/display_options.php:634
3708
  msgid "For showing next/previous year navigation."
3709
  msgstr "Para mostrar la navegación del año siguiente/anterior."
3710
 
3711
+ #: app/features/mec/meta_boxes/display_options.php:678
3712
  #, fuzzy
3713
  #| msgid "Text"
3714
  msgid "Uppercase Text"
3715
  msgstr "Texto"
3716
 
3717
+ #: app/features/mec/meta_boxes/display_options.php:686
3718
+ #: app/features/mec/meta_boxes/display_options.php:759
3719
+ #: app/features/mec/meta_boxes/display_options.php:793
3720
+ #: app/features/mec/meta_boxes/display_options.php:897
3721
+ #: app/features/mec/meta_boxes/display_options.php:1448
3722
  msgid "For showing next/previous month navigation."
3723
  msgstr "Para mostrar navegación siguiente/anterior"
3724
 
3725
+ #: app/features/mec/meta_boxes/display_options.php:712
3726
  msgid "Maximum events"
3727
  msgstr "Máximo de eventos"
3728
 
3729
+ #: app/features/mec/meta_boxes/display_options.php:713
3730
  msgid "eg. 200"
3731
  msgstr "ej. 200"
3732
 
3733
+ #: app/features/mec/meta_boxes/display_options.php:725
3734
  msgid "The geolocation feature works only in secure (https) websites."
3735
  msgstr ""
3736
  "La funcionalidad de geolocalización sólo funciona en sitios web seguros "
3737
  "(https)."
3738
 
3739
+ #: app/features/mec/meta_boxes/display_options.php:769
3740
+ #: app/features/mec/meta_boxes/display_options.php:816
3741
  msgid "Current Week"
3742
  msgstr "Semana actual"
3743
 
3744
+ #: app/features/mec/meta_boxes/display_options.php:770
3745
+ #: app/features/mec/meta_boxes/display_options.php:817
3746
  msgid "Next Week"
3747
  msgstr "Siguiente semana"
3748
 
3749
+ #: app/features/mec/meta_boxes/display_options.php:832
3750
  msgid "Number of Days"
3751
  msgstr ""
3752
 
3753
+ #: app/features/mec/meta_boxes/display_options.php:840
3754
  #, fuzzy
3755
  #| msgid "Start"
3756
  msgid "Week Start"
3757
  msgstr "Inicio"
3758
 
3759
+ #: app/features/mec/meta_boxes/display_options.php:842
3760
  #, fuzzy
3761
  #| msgid "Inherit from global options"
3762
  msgid "Inherite from WordPress options"
3763
  msgstr "Heredar opciones globales"
3764
 
3765
+ #: app/features/mec/meta_boxes/display_options.php:857
3766
  msgid "1:00"
3767
  msgstr ""
3768
 
3769
+ #: app/features/mec/meta_boxes/display_options.php:858
3770
  msgid "2:00"
3771
  msgstr ""
3772
 
3773
+ #: app/features/mec/meta_boxes/display_options.php:859
3774
  msgid "3:00"
3775
  msgstr ""
3776
 
3777
+ #: app/features/mec/meta_boxes/display_options.php:860
3778
  msgid "4:00"
3779
  msgstr ""
3780
 
3781
+ #: app/features/mec/meta_boxes/display_options.php:861
3782
  msgid "5:00"
3783
  msgstr ""
3784
 
3785
+ #: app/features/mec/meta_boxes/display_options.php:862
3786
  msgid "6:00"
3787
  msgstr ""
3788
 
3789
+ #: app/features/mec/meta_boxes/display_options.php:863
3790
  msgid "7:00"
3791
  msgstr ""
3792
 
3793
+ #: app/features/mec/meta_boxes/display_options.php:864
3794
  msgid "8:00"
3795
  msgstr ""
3796
 
3797
+ #: app/features/mec/meta_boxes/display_options.php:865
3798
  msgid "9:00"
3799
  msgstr ""
3800
 
3801
+ #: app/features/mec/meta_boxes/display_options.php:866
3802
  msgid "10:00"
3803
  msgstr ""
3804
 
3805
+ #: app/features/mec/meta_boxes/display_options.php:867
3806
  msgid "11:00"
3807
  msgstr ""
3808
 
3809
+ #: app/features/mec/meta_boxes/display_options.php:868
3810
  msgid "12:00"
3811
  msgstr ""
3812
 
3813
+ #: app/features/mec/meta_boxes/display_options.php:871
3814
  msgid "13:00"
3815
  msgstr ""
3816
 
3817
+ #: app/features/mec/meta_boxes/display_options.php:872
3818
  msgid "14:00"
3819
  msgstr ""
3820
 
3821
+ #: app/features/mec/meta_boxes/display_options.php:873
3822
  msgid "15:00"
3823
  msgstr ""
3824
 
3825
+ #: app/features/mec/meta_boxes/display_options.php:874
3826
  msgid "16:00"
3827
  msgstr ""
3828
 
3829
+ #: app/features/mec/meta_boxes/display_options.php:875
3830
  msgid "17:00"
3831
  msgstr ""
3832
 
3833
+ #: app/features/mec/meta_boxes/display_options.php:876
3834
  msgid "18:00"
3835
  msgstr ""
3836
 
3837
+ #: app/features/mec/meta_boxes/display_options.php:877
3838
  msgid "19:00"
3839
  msgstr ""
3840
 
3841
+ #: app/features/mec/meta_boxes/display_options.php:878
3842
  msgid "20:00"
3843
  msgstr ""
3844
 
3845
+ #: app/features/mec/meta_boxes/display_options.php:879
3846
  msgid "21:00"
3847
  msgstr ""
3848
 
3849
+ #: app/features/mec/meta_boxes/display_options.php:880
3850
  msgid "22:00"
3851
  msgstr ""
3852
 
3853
+ #: app/features/mec/meta_boxes/display_options.php:881
3854
  msgid "23:00"
3855
  msgstr ""
3856
 
3857
+ #: app/features/mec/meta_boxes/display_options.php:882
3858
  msgid "24:00"
3859
  msgstr ""
3860
 
3861
+ #: app/features/mec/meta_boxes/display_options.php:945
3862
+ #: app/features/mec/meta_boxes/display_options.php:1132
3863
  msgid "Default values are j and F"
3864
  msgstr "Los valores predeterminados son j y F"
3865
 
3866
+ #: app/features/mec/meta_boxes/display_options.php:952
3867
  msgid "eg. 24"
3868
  msgstr "ej. 24"
3869
 
3870
+ #: app/features/mec/meta_boxes/display_options.php:955
3871
  msgid "Filter By"
3872
  msgstr "Filtrar por"
3873
 
3874
+ #: app/features/mec/meta_boxes/display_options.php:957
3875
  msgid "None"
3876
  msgstr ""
3877
 
3878
+ #: app/features/mec/meta_boxes/display_options.php:966
3879
  msgid "Fit to row"
3880
  msgstr ""
3881
 
3882
+ #: app/features/mec/meta_boxes/display_options.php:967
3883
  msgid ""
3884
  "Items are arranged into rows. Rows progress vertically. Similar to what you "
3885
  "would expect from a layout that uses CSS floats."
3886
  msgstr ""
3887
 
3888
+ #: app/features/mec/meta_boxes/display_options.php:977
3889
  msgid "Convert Masonry to Grid"
3890
  msgstr ""
3891
 
3892
+ #: app/features/mec/meta_boxes/display_options.php:978
3893
  msgid "For using this option, your events should come with image"
3894
  msgstr ""
3895
 
3896
+ #: app/features/mec/meta_boxes/display_options.php:1018
3897
  msgid "Default values are d, M and Y"
3898
  msgstr "Los valores predeterminados son d, M e Y"
3899
 
3900
+ #: app/features/mec/meta_boxes/display_options.php:1030
3901
  msgid "Default values are \"F d\" and l"
3902
  msgstr "Los valores predeterminados son \"F d\" y l"
3903
 
3904
+ #: app/features/mec/meta_boxes/display_options.php:1041
3905
  msgid "Default value is \"l, F d Y\""
3906
  msgstr "Valor por defecto es \"l, F d Y\""
3907
 
3908
+ #: app/features/mec/meta_boxes/display_options.php:1062
3909
+ #: app/features/popup/shortcode.php:228
3910
  msgid "Style 1"
3911
  msgstr "Estilo 1"
3912
 
3913
+ #: app/features/mec/meta_boxes/display_options.php:1063
3914
+ #: app/features/popup/shortcode.php:233
3915
  msgid "Style 2"
3916
  msgstr "Estilo 2"
3917
 
3918
+ #: app/features/mec/meta_boxes/display_options.php:1064
3919
+ #: app/features/popup/shortcode.php:238
3920
  msgid "Style 3"
3921
  msgstr "Estilo 3"
3922
 
3923
+ #: app/features/mec/meta_boxes/display_options.php:1073
3924
+ #: app/features/mec/meta_boxes/display_options.php:1084
3925
  msgid "Default value is \"j F Y\""
3926
  msgstr "El valor predeterminado es \"j F Y\""
3927
 
3928
+ #: app/features/mec/meta_boxes/display_options.php:1097
3929
  msgid "Default values are j, F and Y"
3930
  msgstr "Los valores predeterminados son j, F e Y"
3931
 
3932
+ #: app/features/mec/meta_boxes/display_options.php:1105
3933
+ #: app/features/mec/meta_boxes/display_options.php:1140
3934
  msgid " -- Next Upcoming Event -- "
3935
  msgstr " -- Próximo Evento -- "
3936
 
3937
+ #: app/features/mec/meta_boxes/display_options.php:1112
3938
  msgid "Background Color"
3939
  msgstr "Color de fondo"
3940
 
3941
+ #: app/features/mec/meta_boxes/display_options.php:1154
3942
+ #: app/features/mec/meta_boxes/display_options.php:1241
3943
+ #: app/features/popup/shortcode.php:247 app/features/popup/shortcode.php:269
3944
  msgid "Type 1"
3945
  msgstr "Tipo 1"
3946
 
3947
+ #: app/features/mec/meta_boxes/display_options.php:1155
3948
+ #: app/features/mec/meta_boxes/display_options.php:1242
3949
+ #: app/features/popup/shortcode.php:252 app/features/popup/shortcode.php:274
3950
  msgid "Type 2"
3951
  msgstr "Tipo 2"
3952
 
3953
+ #: app/features/mec/meta_boxes/display_options.php:1156
3954
+ #: app/features/mec/meta_boxes/display_options.php:1243
3955
+ #: app/features/popup/shortcode.php:257 app/features/popup/shortcode.php:279
3956
  msgid "Type 3"
3957
  msgstr "Tipo 3"
3958
 
3959
+ #: app/features/mec/meta_boxes/display_options.php:1157
3960
+ #: app/features/mec/meta_boxes/display_options.php:1244
3961
+ #: app/features/popup/shortcode.php:262 app/features/popup/shortcode.php:284
3962
  msgid "Type 4"
3963
  msgstr "Tipo 4"
3964
 
3965
+ #: app/features/mec/meta_boxes/display_options.php:1181
3966
  msgid "Default values are d, F and Y"
3967
  msgstr "Los valores predeterminados son d, F e Y"
3968
 
3969
+ #: app/features/mec/meta_boxes/display_options.php:1192
3970
+ #: app/features/mec/meta_boxes/display_options.php:1203
3971
  msgid "Default value is \"M d, Y\""
3972
  msgstr "El valor predeterminado es \"M d, Y\""
3973
 
3974
+ #: app/features/mec/meta_boxes/display_options.php:1222
3975
+ #: app/features/mec/meta_boxes/display_options.php:1331
3976
  msgid "Auto Play Time"
3977
  msgstr "Tiempo de reproducción automática"
3978
 
3979
+ #: app/features/mec/meta_boxes/display_options.php:1223
3980
+ #: app/features/mec/meta_boxes/display_options.php:1332
3981
  msgid "eg. 3000 default is 3 second"
3982
  msgstr "Ejemplo. 3000 son 3 segundos."
3983
 
3993
  msgid "Head Text"
3994
  msgstr "Texto"
3995
 
3996
+ #: app/features/mec/meta_boxes/display_options.php:1245
3997
+ #: app/features/popup/shortcode.php:289
3998
  msgid "Type 5"
3999
  msgstr "Tipo 5"
4000
 
4001
+ #: app/features/mec/meta_boxes/display_options.php:1425
4002
  #, fuzzy
4003
  #| msgid "Default values are j and F"
4004
  msgid "Default values are j and M"
4041
  msgstr "Fechas"
4042
 
4043
  #: app/features/mec/meta_boxes/filter.php:183
4044
+ #: app/features/popup/shortcode.php:324
4045
  msgid "Include Expired Events"
4046
  msgstr "Incluir eventos pasados"
4047
 
4048
  #: app/features/mec/meta_boxes/filter.php:190
4049
+ #: app/features/popup/shortcode.php:325
4050
  msgid ""
4051
  "You have ability to include past/expired events if you like so it will show "
4052
  "upcoming and expired events based on start date that you selected."
4056
  "que has seleccionado."
4057
 
4058
  #: app/features/mec/meta_boxes/filter.php:197
4059
+ #: app/features/popup/shortcode.php:335
4060
  msgid "Show Only Expired Events"
4061
  msgstr "Mostrar únicamente eventos caducados"
4062
 
4068
  msgstr ""
4069
 
4070
  #: app/features/mec/meta_boxes/filter.php:204
4071
+ #: app/features/popup/shortcode.php:336
4072
  msgid "only"
4073
  msgstr ""
4074
 
4077
  msgstr ""
4078
 
4079
  #: app/features/mec/meta_boxes/filter.php:212
4080
+ #: app/features/popup/shortcode.php:346
4081
  msgid "Show Only Ongoing Events"
4082
  msgstr "Mostrar solo eventos en curso"
4083
 
4084
  #: app/features/mec/meta_boxes/filter.php:219
4085
+ #: app/features/popup/shortcode.php:347
4086
  msgid "It shows only ongoing events on List and Grid skins."
4087
  msgstr ""
4088
  "Solo muestra los eventos ocurriendo en los temas de lista y cuadricula."
4179
  #: app/features/mec/meta_boxes/search_form.php:716
4180
  #: app/features/mec/meta_boxes/search_form.php:723
4181
  #: app/features/mec/modules.php:125 app/features/mec/settings.php:101
4182
+ #: app/features/mec/settings.php:421
4183
  msgid "Disabled"
4184
  msgstr "Desactivado"
4185
 
4194
  #: app/features/mec/meta_boxes/search_form.php:535
4195
  #: app/features/mec/meta_boxes/search_form.php:596
4196
  #: app/features/mec/meta_boxes/search_form.php:693
4197
+ #: app/features/mec/settings.php:827 app/features/mec/single.php:217
4198
+ #: app/features/search.php:83 app/features/speakers.php:61
4199
+ #: app/features/speakers.php:269 app/libraries/main.php:5290
4200
  #: app/libraries/skins.php:936
4201
  msgid "Speaker"
4202
  msgstr ""
4212
  #: app/features/mec/meta_boxes/search_form.php:542
4213
  #: app/features/mec/meta_boxes/search_form.php:603
4214
  #: app/features/mec/meta_boxes/search_form.php:700
4215
+ #: app/features/mec/settings.php:834 app/features/mec/single.php:226
4216
+ #: app/features/search.php:88 app/libraries/skins.php:962
4217
  #, fuzzy
4218
  #| msgid "Tags"
4219
  msgid "Tag"
4294
  msgstr "Ver eventos en Google Maps"
4295
 
4296
  #: app/features/mec/modules.php:80 app/features/mec/modules.php:238
4297
+ #: app/features/mec/settings.php:864 app/features/mec/settings.php:869
4298
+ #: app/features/mec/settings.php:917 app/features/mec/settings.php:941
4299
+ #: app/features/mec/settings.php:965
4300
  msgid "API Key"
4301
  msgstr "API Key"
4302
 
4303
+ #: app/features/mec/modules.php:86 app/features/mec/settings.php:870
4304
+ #: app/features/mec/settings.php:883
4305
  msgid "Required!"
4306
  msgstr "¡Obligatorio!"
4307
 
4935
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4936
 
4937
  #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4938
+ #: app/libraries/notifications.php:610
4939
  msgid "Booking Reminder"
4940
  msgstr "Recordatorio de reserva"
4941
 
4998
  msgstr "Estado del evento"
4999
 
5000
  #: app/features/mec/notifications.php:720
5001
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:742
5002
+ #: app/features/mec/settings.php:746
5003
  msgid "Event Note"
5004
  msgstr "Nota de evento"
5005
 
5198
  msgstr ""
5199
 
5200
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5201
+ #: app/libraries/main.php:5294
5202
  msgid "Weekdays"
5203
  msgstr "Días de la semana"
5204
 
5259
  "12 AM and you don't want those events considered as multiple days events!"
5260
  msgstr ""
5261
 
5262
+ #: app/features/mec/settings.php:222
5263
+ #, fuzzy
5264
+ #| msgid "Add Shortcode"
5265
+ msgid "Open \"Add Shortcode\" as Popup"
5266
+ msgstr "Nuevo Shortcode"
5267
+
5268
+ #: app/features/mec/settings.php:225
5269
+ #, fuzzy
5270
+ #| msgid "Enabled"
5271
+ msgid "Enable"
5272
+ msgstr "Habilitado"
5273
+
5274
+ #: app/features/mec/settings.php:232 app/libraries/main.php:532
5275
  msgid "Archive Pages"
5276
  msgstr "Páginas de archivo"
5277
 
5278
+ #: app/features/mec/settings.php:235 app/features/mec/settings.php:240
5279
  msgid "Archive Page Title"
5280
  msgstr "Título de la página de archivo"
5281
 
5282
+ #: app/features/mec/settings.php:241
5283
  #, fuzzy
5284
  #| msgid "Default value is Events"
5285
  msgid "Default value is Events - It's title of the page"
5286
  msgstr "Valor por defecto del evento"
5287
 
5288
+ #: app/features/mec/settings.php:249 app/features/mec/settings.php:317
5289
  msgid "Archive Page Skin"
5290
  msgstr "Tema de la página de archivo"
5291
 
5292
+ #: app/features/mec/settings.php:257
5293
  #, fuzzy
5294
  #| msgid "Edit shortcodes"
5295
  msgid "Put shortcode..."
5296
  msgstr "Editar Shortcodes"
5297
 
5298
+ #: app/features/mec/settings.php:260 app/features/mec/settings.php:275
5299
+ #: app/features/mec/settings.php:278 app/features/mec/settings.php:287
5300
+ #: app/features/mec/settings.php:313 app/features/mec/settings.php:334
5301
+ #: app/features/mec/settings.php:349 app/features/mec/settings.php:352
5302
+ #: app/features/mec/settings.php:361 app/features/mec/settings.php:387
5303
  #, fuzzy
5304
  #| msgid "The event is ongoing."
5305
  msgid "There is no skins"
5306
  msgstr "El evento está en curso."
5307
 
5308
+ #: app/features/mec/settings.php:263 app/features/mec/settings.php:337
5309
  #: app/features/mec/single.php:69
5310
  msgid "Modern Style"
5311
  msgstr "Estilo moderno"
5312
 
5313
+ #: app/features/mec/settings.php:305 app/features/mec/settings.php:379
5314
  #, fuzzy
5315
  #| msgid "Colorful"
5316
  msgid "colorful"
5317
  msgstr "Colorido"
5318
 
5319
+ #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
5320
  #, fuzzy
5321
  #| msgid "Plain Style"
5322
  msgid "Clean Style"
5323
  msgstr "Estilo simple"
5324
 
5325
+ #: app/features/mec/settings.php:318
5326
  #, fuzzy
5327
  #| msgid "Default value is Calendar/Monthly View"
5328
  msgid "Default value is Calendar/Monthly View, But you can change it "
5329
  msgstr "El valor predeterminado es calendario / vista mensual"
5330
 
5331
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
5332
  msgid "See Demo"
5333
  msgstr ""
5334
 
5335
+ #: app/features/mec/settings.php:326 app/features/mec/settings.php:391
5336
  msgid "Category Page Skin"
5337
  msgstr "Skin de página de categoría"
5338
 
5339
+ #: app/features/mec/settings.php:392
5340
  msgid ""
5341
  "Default value is List View - But you can change it Set a skin for all "
5342
  "categories."
5343
  msgstr ""
5344
 
5345
+ #: app/features/mec/settings.php:400 app/features/mec/settings.php:408
5346
  msgid "Category Events Method"
5347
  msgstr "Método de categoría de eventos"
5348
 
5349
+ #: app/features/mec/settings.php:404
5350
  msgid "Expired Events"
5351
  msgstr "Eventos pasados"
5352
 
5353
+ #: app/features/mec/settings.php:409
5354
  msgid "Default value is Upcoming Events"
5355
  msgstr "El valor predeterminado es Próximos eventos"
5356
 
5357
+ #: app/features/mec/settings.php:417 app/features/mec/settings.php:425
5358
  msgid "Events Archive Status"
5359
  msgstr "Estado del archivo de eventos"
5360
 
5361
+ #: app/features/mec/settings.php:420
5362
  msgid "Enabled (Recommended)"
5363
  msgstr "Activado (recomendado)"
5364
 
5365
+ #: app/features/mec/settings.php:426
5366
  msgid ""
5367
  "If you disable it, then you should create a page as archive page of MEC. "
5368
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
5372
  "archivo de MEC. El slug debe igualarse al slug principal de MEC. También "
5373
  "desactivará todas las reglas de sobreescripción."
5374
 
5375
+ #: app/features/mec/settings.php:439 app/features/mec/settings.php:444
5376
  msgid "Main Slug"
5377
  msgstr "Slug principal"
5378
 
5379
+ #: app/features/mec/settings.php:445
5380
  msgid ""
5381
  "Default value is events. You can not have a page with this name. MEC allows "
5382
  "you to create custom URLs for the permalinks and archives to enhance the "
5383
  "applicability and forward-compatibility of the links."
5384
  msgstr ""
5385
 
5386
+ #: app/features/mec/settings.php:449 app/features/mec/settings.php:463
5387
  #, fuzzy
5388
  #| msgid ""
5389
  #| "Default value is events. Valid characters are lowercase a-z, - character "
5393
  "El valor por defecto es eventos. Los caracteres válidos son a-z minúsculas, "
5394
  "- carácteres y números."
5395
 
5396
+ #: app/features/mec/settings.php:453 app/features/mec/settings.php:458
5397
  msgid "Category Slug"
5398
  msgstr "Slug de la categoría"
5399
 
5400
+ #: app/features/mec/settings.php:459
5401
  #, fuzzy
5402
  #| msgid ""
5403
  #| "It's slug of MEC categories, you can change it to events-cat or something "
5411
  "cat o a algo más. El valor por defecto es mec-category. Se pueden utilizar "
5412
  "letras de la a-z en minúsculas y numerosas."
5413
 
5414
+ #: app/features/mec/settings.php:471
5415
  msgid "Currency"
5416
  msgstr "Moneda corriente"
5417
 
5418
+ #: app/features/mec/settings.php:481 app/features/mec/settings.php:486
5419
  msgid "Currency Sign"
5420
  msgstr "Tipo de moneda"
5421
 
5422
+ #: app/features/mec/settings.php:487
5423
  msgid "Default value will be \"currency\" if you leave it empty."
5424
  msgstr "El valor por defecto será \"moneda\" si lo dejas en blanco."
5425
 
5426
+ #: app/features/mec/settings.php:494
5427
  msgid "Currency Position"
5428
  msgstr "Posición en moneda extranjera"
5429
 
5430
+ #: app/features/mec/settings.php:497
5431
  msgid "Before $10"
5432
  msgstr "Menos de 10€"
5433
 
5434
+ #: app/features/mec/settings.php:498
5435
  msgid "After 10$"
5436
  msgstr "Más de 10€"
5437
 
5438
+ #: app/features/mec/settings.php:503
5439
  msgid "Thousand Separator"
5440
  msgstr "Separador de miles"
5441
 
5442
+ #: app/features/mec/settings.php:509
5443
  msgid "Decimal Separator"
5444
  msgstr "Separador de decimales"
5445
 
5446
+ #: app/features/mec/settings.php:519
5447
  msgid "No decimal"
5448
  msgstr "No decimal"
5449
 
5450
+ #: app/features/mec/settings.php:530
5451
  msgid "Enable Google Recaptcha"
5452
  msgstr "Habilitar Google Recaptcha"
5453
 
5454
+ #: app/features/mec/settings.php:537
5455
  msgid "Enable on booking form"
5456
  msgstr "Activar en el formulario de reserva"
5457
 
5458
+ #: app/features/mec/settings.php:543
5459
  msgid "Enable on \"Frontend Event Submission\" form"
5460
  msgstr "Activa el formulario \"Envío de eventos desde portada\""
5461
 
5462
+ #: app/features/mec/settings.php:547
5463
  msgid "Site Key"
5464
  msgstr "Clave del Sitio"
5465
 
5466
+ #: app/features/mec/settings.php:553
5467
  msgid "Secret Key"
5468
  msgstr "Clave secreta"
5469
 
5470
+ #: app/features/mec/settings.php:565 app/features/mec/settings.php:573
5471
  msgid "Time Format"
5472
  msgstr "Formato de la hora"
5473
 
5474
+ #: app/features/mec/settings.php:568
5475
  msgid "12 hours format with AM/PM"
5476
  msgstr "Formato de 12 horas con AM / PM"
5477
 
5478
+ #: app/features/mec/settings.php:569
5479
  msgid "24 hours format"
5480
  msgstr "Formato de 24 horas"
5481
 
5482
+ #: app/features/mec/settings.php:574
5483
  msgid "This option, affects the selection of Start/End time."
5484
  msgstr ""
5485
 
5486
+ #: app/features/mec/settings.php:582
5487
  msgid "Events List Page"
5488
  msgstr "Página de lista de eventos"
5489
 
5490
+ #: app/features/mec/settings.php:591 app/features/mec/settings.php:603
5491
  #, php-format
5492
  msgid "Put %s shortcode into the page."
5493
  msgstr "Pon el shortcode %s en la página."
5494
 
5495
+ #: app/features/mec/settings.php:594
5496
  msgid "Add/Edit Events Page"
5497
  msgstr "Añadir/Editar página de eventos"
5498
 
5499
+ #: app/features/mec/settings.php:618
5500
  #, fuzzy
5501
  #| msgid ""
5502
  #| "User redirects to this page after booking. Leave it empty if you want to "
5508
  "Se redirecciona al usuario a esta pagina una vez que completa la reserva. "
5509
  "Déjalo vacío si lo deseas desactivado."
5510
 
5511
+ #: app/features/mec/settings.php:643
5512
  msgid "Enable event submission by guest (Not logged-in) users"
5513
  msgstr ""
5514
  "Habilitar la presentación de eventos por los usuarios invitados (no "
5515
  "conectados)"
5516
 
5517
+ #: app/features/mec/settings.php:650
5518
  msgid "Enable mandatory email and name for guest user"
5519
  msgstr ""
5520
  "Activa que sea obligatorio el correo y nombre del usuario para el usuario "
5521
  "invitado"
5522
 
5523
+ #: app/features/mec/settings.php:654
5524
  msgid "Frontend Event Submission Sections"
5525
  msgstr "Secciones de envío de eventos en la pagina."
5526
 
5527
+ #: app/features/mec/settings.php:676 app/widgets/single.php:119
5528
  msgid "Event Categories"
5529
  msgstr "Categorías de evento"
5530
 
5531
+ #: app/features/mec/settings.php:682
5532
  msgid "Event Labels"
5533
  msgstr "Etiqueta de eventos"
5534
 
5535
+ #: app/features/mec/settings.php:694
5536
  msgid "Event Tags"
5537
  msgstr "Etiquetas del Evento"
5538
 
5539
+ #: app/features/mec/settings.php:706 app/widgets/single.php:123
5540
  msgid "Event Organizer"
5541
  msgstr "Organizador de eventos"
5542
 
5543
+ #: app/features/mec/settings.php:724
5544
  msgid "Booking Options"
5545
  msgstr "Opciones de reserva"
5546
 
5547
+ #: app/features/mec/settings.php:730
5548
  msgid "Fees / Taxes Options"
5549
  msgstr "Opciones de Cuotas/Impuestos"
5550
 
5551
+ #: app/features/mec/settings.php:747
5552
  #, php-format
5553
  msgid ""
5554
  "Users can put a note for editors while they're submitting the event. Also "
5559
  "evento. También puede poner %%event_note%% en la notificación de nuevo "
5560
  "evento para obtener la nota de los usuarios en el correo electrónico."
5561
 
5562
+ #: app/features/mec/settings.php:754 app/features/mec/settings.php:762
5563
  msgid "Visibility of Note"
5564
  msgstr "Visibilidad de la nota"
5565
 
5566
+ #: app/features/mec/settings.php:757
5567
  msgid "Always"
5568
  msgstr "Siempre"
5569
 
5570
+ #: app/features/mec/settings.php:758
5571
  msgid "While event is not published"
5572
  msgstr "Mientras no se publique el evento"
5573
 
5574
+ #: app/features/mec/settings.php:763
5575
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
5576
  msgstr ""
5577
  "La nota de evento se muestra en el formulario de presentación de Frontend y "
5578
  "Editar evento en el backend."
5579
 
5580
+ #: app/features/mec/settings.php:774 app/libraries/main.php:537
5581
  msgid "User Profile"
5582
  msgstr ""
5583
 
5584
+ #: app/features/mec/settings.php:776
5585
  #, php-format
5586
  msgid ""
5587
  "Put %s shortcode into your desired page. Then users are able to see history "
5588
  "of their bookings."
5589
  msgstr ""
5590
 
5591
+ #: app/features/mec/settings.php:781 app/libraries/main.php:538
5592
  #, fuzzy
5593
  #| msgid "Search Form"
5594
  msgid "Search Bar"
5595
  msgstr "Formulario de Búsqueda"
5596
 
5597
+ #: app/features/mec/settings.php:783
5598
  #, php-format
5599
  msgid ""
5600
  "Put %s shortcode into your desired page. Then users are able to search events"
5601
  msgstr ""
5602
 
5603
+ #: app/features/mec/settings.php:787
5604
  msgid "Ajax Live mode"
5605
  msgstr ""
5606
 
5607
+ #: app/features/mec/settings.php:791
5608
  msgid "Ajax mode"
5609
  msgstr ""
5610
 
5611
+ #: app/features/mec/settings.php:792
5612
  msgid ""
5613
  "if you enable this option, search button disappeared and to use this "
5614
  "feature, text input field must be enabled."
5615
  msgstr ""
5616
 
5617
+ #: app/features/mec/settings.php:800
5618
  #, fuzzy
5619
  #| msgid "Modern Style"
5620
  msgid "Modern Type"
5621
  msgstr "Estilo moderno"
5622
 
5623
+ #: app/features/mec/settings.php:804
5624
  #, fuzzy
5625
  #| msgid "Search Form"
5626
  msgid "Search bar fields"
5627
  msgstr "Formulario de Búsqueda"
5628
 
5629
+ #: app/features/mec/settings.php:846
5630
  #, fuzzy
5631
  #| msgid "Text Input"
5632
  msgid "Text input"
5633
  msgstr "Campo de texto"
5634
 
5635
+ #: app/features/mec/settings.php:859
5636
  msgid "Enable Mailchimp Integration"
5637
  msgstr "Activar integración con MailChimp"
5638
 
5639
+ #: app/features/mec/settings.php:877 app/features/mec/settings.php:882
5640
+ #: app/features/mec/settings.php:923 app/features/mec/settings.php:971
5641
  msgid "List ID"
5642
  msgstr "ID de la lista"
5643
 
5644
+ #: app/features/mec/settings.php:890 app/features/mec/settings.php:898
5645
  msgid "Subscription Status"
5646
  msgstr "Estado Suscripción"
5647
 
5648
+ #: app/features/mec/settings.php:893
5649
  msgid "Subscribe automatically"
5650
  msgstr "Suscribirse automáticamente "
5651
 
5652
+ #: app/features/mec/settings.php:894
5653
  msgid "Subscribe by verification"
5654
  msgstr "Suscribirse por verificación"
5655
 
5656
+ #: app/features/mec/settings.php:899
5657
  msgid ""
5658
  "If you choose \"Subscribe by verification\" then an email will send to user "
5659
  "by mailchimp for subscription verification."
5661
  "Si eliges “Suscribir por verificación” entonces un email de verificación de "
5662
  "suscripción se le enviará al usuario."
5663
 
5664
+ #: app/features/mec/settings.php:908 app/libraries/main.php:540
5665
  #, fuzzy
5666
  #| msgid "Mailchimp Integration"
5667
  msgid "Campaign Monitor Integration"
5668
  msgstr "Integración de MailChimp"
5669
 
5670
+ #: app/features/mec/settings.php:912
5671
  #, fuzzy
5672
  #| msgid "Enable Mailchimp Integration"
5673
  msgid "Enable Campaign Monitor Integration"
5674
  msgstr "Activar integración con MailChimp"
5675
 
5676
+ #: app/features/mec/settings.php:932 app/libraries/main.php:541
5677
  #, fuzzy
5678
  #| msgid "Mailchimp Integration"
5679
  msgid "MailerLite Integration"
5680
  msgstr "Integración de MailChimp"
5681
 
5682
+ #: app/features/mec/settings.php:936
5683
  #, fuzzy
5684
  #| msgid "Enable Mailchimp Integration"
5685
  msgid "Enable MailerLite Integration"
5686
  msgstr "Activar integración con MailChimp"
5687
 
5688
+ #: app/features/mec/settings.php:947
5689
  msgid "Group ID"
5690
  msgstr ""
5691
 
5692
+ #: app/features/mec/settings.php:956 app/libraries/main.php:542
5693
  #, fuzzy
5694
  #| msgid "BuddyPress Integration"
5695
  msgid "Constant Contact Integration"
5696
  msgstr "Integración de BuddyPress"
5697
 
5698
+ #: app/features/mec/settings.php:960
5699
  #, fuzzy
5700
  #| msgid "Enable Mailchimp Integration"
5701
  msgid "Enable constantcontact Integration"
5702
  msgstr "Activar integración con MailChimp"
5703
 
5704
+ #: app/features/mec/settings.php:982
5705
  #, fuzzy
5706
  #| msgid "Filter Options"
5707
  msgid "Upload Field Options"
5708
  msgstr "Opciones de filtros"
5709
 
5710
+ #: app/features/mec/settings.php:984
5711
  msgid "Mime types"
5712
  msgstr ""
5713
 
5714
+ #: app/features/mec/settings.php:988
5715
  msgid "Split mime types with \",\"."
5716
  msgstr ""
5717
 
5718
+ #: app/features/mec/settings.php:988
5719
  msgid "Default: jpeg,jpg,png,pdf"
5720
  msgstr ""
5721
 
5722
+ #: app/features/mec/settings.php:991
5723
  #, fuzzy
5724
  #| msgid "Maximum Dates"
5725
  msgid "Maximum file size"
5726
  msgstr "Fechas máximas"
5727
 
5728
+ #: app/features/mec/settings.php:995
5729
  msgid "The unit is Megabyte \"MB\""
5730
  msgstr ""
5731
 
6478
  msgid "eg. https://webnus.net"
6479
  msgstr "ej. https://webnus.net"
6480
 
6481
+ #: app/features/organizers.php:312 app/libraries/main.php:5318
6482
  #: app/skins/single.php:862
6483
  msgid "Other Organizers"
6484
  msgstr "En común"
6490
  "Si quieres, puedes seleccionar organizadores adicionales además del "
6491
  "organizador principal."
6492
 
6493
+ #: app/features/popup/shortcode.php:34
6494
+ #, fuzzy
6495
+ #| msgid "Add Shortcode"
6496
+ msgid "Adding a Shortcode..."
6497
+ msgstr "Nuevo Shortcode"
6498
+
6499
+ #: app/features/popup/shortcode.php:42
6500
+ #, fuzzy
6501
+ #| msgid "Shortcode"
6502
+ msgid "Shortcode Name"
6503
+ msgstr "Shortcode"
6504
+
6505
+ #: app/features/popup/shortcode.php:43
6506
+ msgid "Shortcode name is required"
6507
+ msgstr ""
6508
+
6509
+ #: app/features/popup/shortcode.php:313
6510
+ #, fuzzy
6511
+ #| msgid "Single Event Style"
6512
+ msgid "Select Event"
6513
+ msgstr "Estilo de evento único"
6514
+
6515
+ #: app/features/popup/shortcode.php:336
6516
+ #, fuzzy, php-format
6517
+ #| msgid "It shows only expired/past events."
6518
+ msgid "It shows %s expired/past events."
6519
+ msgstr "Solo muestra eventos pasados/caducados"
6520
+
6521
+ #: app/features/popup/shortcode.php:360
6522
+ #, fuzzy
6523
+ #| msgid "Shortcode"
6524
+ msgid "Your Shortcode"
6525
+ msgstr "Shortcode"
6526
+
6527
+ #: app/features/popup/shortcode.php:363
6528
+ msgid "Copy"
6529
+ msgstr ""
6530
+
6531
+ #: app/features/popup/shortcode.php:366
6532
+ #, fuzzy
6533
+ #| msgid "Put %s shortcode into the page."
6534
+ msgid "Put this shortcode into your desired page."
6535
+ msgstr "Pon el shortcode %s en la página."
6536
+
6537
+ #: app/features/popup/shortcode.php:372
6538
+ msgid "Prev"
6539
+ msgstr ""
6540
+
6541
+ #: app/features/popup/shortcode.php:373 app/modules/booking/steps/form.php:179
6542
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6543
+ #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6544
+ msgid "Next"
6545
+ msgstr "Siguiente"
6546
+
6547
+ #: app/features/popup/shortcode.php:374
6548
+ #, fuzzy
6549
+ #| msgid "Add New Shortcode"
6550
+ msgid "New Shortcode"
6551
+ msgstr "Añadir nuevo Shortcode"
6552
+
6553
  #: app/features/profile.php:74
6554
  #, php-format
6555
  msgid "Please %s/%s in order to see your bookings / profile."
6556
  msgstr ""
6557
 
6558
+ #: app/features/profile/profile.php:18 app/libraries/main.php:2143
6559
  #, fuzzy
6560
  #| msgid "Your booking cannot be canceled."
6561
  msgid "Your booking already canceled!"
6565
  msgid "#"
6566
  msgstr ""
6567
 
6568
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3153
6569
  msgid "Status"
6570
  msgstr "Estado"
6571
 
6572
+ #: app/features/profile/profile.php:59 app/libraries/main.php:2258
6573
  msgid "Attendees"
6574
  msgstr "Asistentes"
6575
 
6598
  msgid "No bookings found!"
6599
  msgstr ""
6600
 
6601
+ #: app/features/search.php:93 app/libraries/main.php:5284
6602
  msgid "label"
6603
  msgstr "etiqueta"
6604
 
6605
+ #: app/features/search.php:128
6606
  msgid "Please enter at least 3 characters and try again"
6607
  msgstr ""
6608
 
6625
  msgstr ""
6626
 
6627
  #: app/features/search_bar/search_result.php:11
6628
+ #: app/libraries/notifications.php:954 app/libraries/render.php:488
6629
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6630
  #: app/skins/single.php:160 app/skins/single.php:753
6631
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6731
  msgid "Upgrade"
6732
  msgstr "Actualizar"
6733
 
6734
+ #: app/libraries/factory.php:362
6735
  msgid "day"
6736
  msgstr "día "
6737
 
6738
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:132
6739
+ #: app/skins/available_spot/tpl.php:165 app/skins/countdown/tpl.php:158
6740
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6741
  msgid "days"
6742
  msgstr "días"
6743
 
6744
+ #: app/libraries/factory.php:364
6745
  msgid "hour"
6746
  msgstr "hora"
6747
 
6748
+ #: app/libraries/factory.php:365 app/modules/countdown/details.php:139
6749
+ #: app/skins/available_spot/tpl.php:169 app/skins/countdown/tpl.php:164
6750
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6751
  msgid "hours"
6752
  msgstr "horas"
6753
 
6754
+ #: app/libraries/factory.php:366
6755
  msgid "minute"
6756
  msgstr "minuto"
6757
 
6758
+ #: app/libraries/factory.php:367 app/modules/countdown/details.php:146
6759
+ #: app/skins/available_spot/tpl.php:173 app/skins/countdown/tpl.php:170
6760
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6761
  msgid "minutes"
6762
  msgstr "minutos"
6763
 
6764
+ #: app/libraries/factory.php:368
6765
  msgid "second"
6766
  msgstr "segundo"
6767
 
6768
+ #: app/libraries/factory.php:369 app/modules/countdown/details.php:153
6769
+ #: app/skins/available_spot/tpl.php:177 app/skins/countdown/tpl.php:176
6770
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6771
  msgid "seconds"
6772
  msgstr "segundos"
6773
 
6774
+ #: app/libraries/factory.php:417
6775
  msgid "MEC Single Sidebar"
6776
  msgstr "barra lateral MEC"
6777
 
6778
+ #: app/libraries/factory.php:418
6779
  msgid "Custom sidebar for single and modal page of MEC."
6780
  msgstr "Barra lateral personalizaba para la pagina individual y modal de MEC"
6781
 
6783
  msgid "There is no excerpt because this is a protected post."
6784
  msgstr "No hay extracto porque es una entrada protegida."
6785
 
6786
+ #: app/libraries/main.php:331 app/libraries/main.php:1759
6787
+ #: app/libraries/main.php:1784
6788
  msgid "Grid View"
6789
  msgstr "Vista cuadrícula"
6790
 
6791
+ #: app/libraries/main.php:332 app/libraries/main.php:1760
6792
+ #: app/libraries/main.php:1785
6793
  msgid "Agenda View"
6794
  msgstr "Vista de Agenda"
6795
 
6796
+ #: app/libraries/main.php:333 app/libraries/main.php:1751
6797
+ #: app/libraries/main.php:1776
6798
  msgid "Full Calendar"
6799
  msgstr "Calendario completo"
6800
 
6801
+ #: app/libraries/main.php:335 app/libraries/main.php:1753
6802
+ #: app/libraries/main.php:1778
6803
  msgid "Calendar/Monthly View"
6804
  msgstr "Ver Calendario/Mes"
6805
 
6806
+ #: app/libraries/main.php:338 app/libraries/main.php:1756
6807
+ #: app/libraries/main.php:1781
6808
  msgid "Timetable View"
6809
  msgstr "Vista de Horario"
6810
 
6811
+ #: app/libraries/main.php:339 app/libraries/main.php:1757
6812
+ #: app/libraries/main.php:1782
6813
  msgid "Masonry View"
6814
  msgstr "Vista en mosaico"
6815
 
6816
+ #: app/libraries/main.php:340 app/libraries/main.php:1761
6817
+ #: app/libraries/main.php:1786
6818
  msgid "Map View"
6819
  msgstr "Vista de mapa"
6820
 
6850
  msgid "Tile View"
6851
  msgstr "Vista de Horario"
6852
 
6853
+ #: app/libraries/main.php:385 app/libraries/main.php:5296
6854
  msgid "SU"
6855
  msgstr "DO"
6856
 
6857
+ #: app/libraries/main.php:386 app/libraries/main.php:5297
6858
  msgid "MO"
6859
  msgstr "LU"
6860
 
6861
+ #: app/libraries/main.php:387 app/libraries/main.php:5298
6862
  msgid "TU"
6863
  msgstr "MA"
6864
 
6865
+ #: app/libraries/main.php:388 app/libraries/main.php:5299
6866
  msgid "WE"
6867
  msgstr "MI"
6868
 
6869
+ #: app/libraries/main.php:389 app/libraries/main.php:5300
6870
  msgid "TH"
6871
  msgstr "JU"
6872
 
6873
+ #: app/libraries/main.php:390 app/libraries/main.php:5301
6874
  msgid "FR"
6875
  msgstr "VI"
6876
 
6877
+ #: app/libraries/main.php:391 app/libraries/main.php:5302
6878
  msgid "SA"
6879
  msgstr "SA"
6880
 
6949
  msgid "Event at this location"
6950
  msgstr "Evento en este lugar"
6951
 
6952
+ #: app/libraries/main.php:1529
6953
  msgid "Facebook"
6954
  msgstr "Facebook"
6955
 
6956
+ #: app/libraries/main.php:1530
6957
  msgid "Twitter"
6958
  msgstr "Twitter"
6959
 
6960
+ #: app/libraries/main.php:1531 app/libraries/main.php:1588
6961
  msgid "Linkedin"
6962
  msgstr "LinkedIn"
6963
 
6964
+ #: app/libraries/main.php:1532 app/libraries/main.php:1624
6965
  msgid "VK"
6966
  msgstr "VK"
6967
 
6968
+ #: app/libraries/main.php:1533
6969
  msgid "Tumblr"
6970
  msgstr ""
6971
 
6972
+ #: app/libraries/main.php:1534
6973
  msgid "Pinterest"
6974
  msgstr ""
6975
 
6976
+ #: app/libraries/main.php:1535
6977
  msgid "Flipboard"
6978
  msgstr ""
6979
 
6980
+ #: app/libraries/main.php:1536
6981
  #, fuzzy
6982
  #| msgid "Tickets"
6983
  msgid "GetPocket"
6984
  msgstr "Tickets"
6985
 
6986
+ #: app/libraries/main.php:1537
6987
  msgid "Reddit"
6988
  msgstr ""
6989
 
6990
+ #: app/libraries/main.php:1538
6991
  msgid "WhatsApp"
6992
  msgstr ""
6993
 
6994
+ #: app/libraries/main.php:1539
6995
  msgid "Telegram"
6996
  msgstr ""
6997
 
6998
+ #: app/libraries/main.php:1558
6999
  msgid "Share on Facebook"
7000
  msgstr "Compartir en Facebook"
7001
 
7002
+ #: app/libraries/main.php:1573
7003
  msgid "Tweet"
7004
  msgstr "Tweet"
7005
 
7006
+ #: app/libraries/main.php:1639
7007
  #, fuzzy
7008
  #| msgid "Share on Facebook"
7009
  msgid "Share on Tumblr"
7010
  msgstr "Compartir en Facebook"
7011
 
7012
+ #: app/libraries/main.php:1655
7013
  msgid "Share on Pinterest"
7014
  msgstr ""
7015
 
7016
+ #: app/libraries/main.php:1671
7017
  #, fuzzy
7018
  #| msgid "Share on Facebook"
7019
  msgid "Share on Flipboard"
7020
  msgstr "Compartir en Facebook"
7021
 
7022
+ #: app/libraries/main.php:1689
7023
  #, fuzzy
7024
  #| msgid "Share on Facebook"
7025
  msgid "Share on GetPocket"
7026
  msgstr "Compartir en Facebook"
7027
 
7028
+ #: app/libraries/main.php:1705
7029
  #, fuzzy
7030
  #| msgid "Share on Facebook"
7031
  msgid "Share on Reddit"
7032
  msgstr "Compartir en Facebook"
7033
 
7034
+ #: app/libraries/main.php:1721
7035
  msgid "Share on Telegram"
7036
  msgstr ""
7037
 
7038
+ #: app/libraries/main.php:1739
7039
  msgid "Share on WhatsApp"
7040
  msgstr ""
7041
 
7042
+ #: app/libraries/main.php:1762
7043
  #, fuzzy
7044
  #| msgid "Shortcode"
7045
  msgid "Custom Shortcode"
7046
  msgstr "Shortcode"
7047
 
7048
+ #: app/libraries/main.php:2123
7049
  #, fuzzy
7050
  #| msgid "Your booking successfully verified."
7051
  msgid "Your booking already verified!"
7052
  msgstr "Tu reserva se ha verificado correctamente."
7053
 
7054
+ #: app/libraries/main.php:2128
7055
  msgid "Your booking successfully verified."
7056
  msgstr "Tu reserva se ha verificado correctamente."
7057
 
7058
+ #: app/libraries/main.php:2129
7059
  msgid "Your booking cannot verify!"
7060
  msgstr "¡Tu reserva no se puede verificar!"
7061
 
7062
+ #: app/libraries/main.php:2148
7063
  msgid "Your booking successfully canceled."
7064
  msgstr "Tu reserva se ha cancelado correctamente."
7065
 
7066
+ #: app/libraries/main.php:2149
7067
  msgid "Your booking cannot be canceled."
7068
  msgstr "La reserva no puede cancelarse."
7069
 
7070
+ #: app/libraries/main.php:2153
7071
  msgid "You canceled the payment successfully."
7072
  msgstr "Has cancelado el pago correctamente."
7073
 
7074
+ #: app/libraries/main.php:2157
7075
  msgid "You returned from payment gateway successfully."
7076
  msgstr "Has vuelto correctamente de tu pasarela de pago."
7077
 
7078
+ #: app/libraries/main.php:2173
7079
  #, fuzzy
7080
  #| msgid "Cannot find the booking!"
7081
  msgid "Cannot find the invoice!"
7082
  msgstr "¡No se pudo encontrar la reserva!"
7083
 
7084
+ #: app/libraries/main.php:2173
7085
  #, fuzzy
7086
  #| msgid "Booking is invalid."
7087
  msgid "Invoice is invalid."
7088
  msgstr "Reserva no válida."
7089
 
7090
+ #: app/libraries/main.php:2193
7091
  msgid ""
7092
  "Your booking still is not confirmed. You able download it after confirmation!"
7093
  msgstr ""
7094
 
7095
+ #: app/libraries/main.php:2193
7096
  #, fuzzy
7097
  #| msgid "Booking Confirmation"
7098
  msgid "Booking Not Confirmed."
7099
  msgstr "Confirmación de reserva"
7100
 
7101
+ #: app/libraries/main.php:2199
7102
  msgid "Cannot find the booking!"
7103
  msgstr "¡No se pudo encontrar la reserva!"
7104
 
7105
+ #: app/libraries/main.php:2199
7106
  msgid "Booking is invalid."
7107
  msgstr "Reserva no válida."
7108
 
7109
+ #: app/libraries/main.php:2228
7110
  #, php-format
7111
  msgid "%s Invoice"
7112
  msgstr "%s Factura"
7113
 
7114
+ #: app/libraries/main.php:2302
7115
  msgid "Billing"
7116
  msgstr "Facturación"
7117
 
7118
+ #: app/libraries/main.php:2313
7119
  msgid "Total"
7120
  msgstr "Total "
7121
 
7122
+ #: app/libraries/main.php:2320
7123
  #, fuzzy
7124
  #| msgid "Payment Gateways"
7125
  msgid "Payment"
7126
  msgstr "Pasarelas de pago"
7127
 
7128
+ #: app/libraries/main.php:2324
7129
  #, fuzzy
7130
  #| msgid "Popular Gateways"
7131
  msgid "Gateway"
7132
  msgstr "Pasarelas de pago populares"
7133
 
7134
+ #: app/libraries/main.php:2332
7135
  #, fuzzy
7136
  #| msgid "Payment Gateways"
7137
  msgid "Payment Time"
7138
  msgstr "Pasarelas de pago"
7139
 
7140
+ #: app/libraries/main.php:2393
7141
  msgid "Request is not valid."
7142
  msgstr "La solicitud no es válida."
7143
 
7144
+ #: app/libraries/main.php:2393
7145
  msgid "iCal export stopped!"
7146
  msgstr "¡La exportación de iCal se detuvo!"
7147
 
7148
+ #: app/libraries/main.php:2737 app/libraries/main.php:2767
7149
+ #: app/libraries/main.php:2796 app/libraries/main.php:2826
7150
+ #: app/libraries/main.php:2855 app/libraries/main.php:2884
7151
+ #: app/libraries/main.php:2913 app/libraries/main.php:2942
7152
+ #: app/libraries/main.php:2971 app/libraries/main.php:2995
7153
+ #: app/libraries/main.php:3039 app/libraries/main.php:3083
7154
+ #: app/libraries/main.php:3130 app/libraries/main.php:3177
7155
  msgid "Sort"
7156
  msgstr "Orden"
7157
 
7158
+ #: app/libraries/main.php:2743 app/libraries/main.php:2773
7159
+ #: app/libraries/main.php:2802 app/libraries/main.php:2832
7160
+ #: app/libraries/main.php:2861 app/libraries/main.php:2890
7161
+ #: app/libraries/main.php:2919 app/libraries/main.php:2948
7162
+ #: app/libraries/main.php:3001 app/libraries/main.php:3045
7163
+ #: app/libraries/main.php:3089 app/libraries/main.php:3136
7164
  msgid "Required Field"
7165
  msgstr "Campo obligatorio"
7166
 
7167
+ #: app/libraries/main.php:2749 app/libraries/main.php:2779
7168
+ #: app/libraries/main.php:2808 app/libraries/main.php:2838
7169
+ #: app/libraries/main.php:2867 app/libraries/main.php:2896
7170
+ #: app/libraries/main.php:2925 app/libraries/main.php:2954
7171
+ #: app/libraries/main.php:3007 app/libraries/main.php:3051
7172
+ #: app/libraries/main.php:3095 app/libraries/main.php:3142
7173
  msgid "Insert a label for this field"
7174
  msgstr "Introduce una etiqueta para este campo"
7175
 
7176
+ #: app/libraries/main.php:2977
7177
  msgid "HTML and shortcode are allowed."
7178
  msgstr "Se permite HTML"
7179
 
7180
+ #: app/libraries/main.php:3020 app/libraries/main.php:3064
7181
+ #: app/libraries/main.php:3108
7182
  msgid "Option"
7183
  msgstr "Opción"
7184
 
7185
+ #: app/libraries/main.php:3142
7186
  #, php-format
7187
  msgid "Instead of %s, the page title with a link will be show."
7188
  msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
7189
 
7190
+ #: app/libraries/main.php:3144
7191
  msgid "Agreement Page"
7192
  msgstr "Página de Acuerdo"
7193
 
7194
+ #: app/libraries/main.php:3155
7195
  msgid "Checked by default"
7196
  msgstr "Marcado por defecto"
7197
 
7198
+ #: app/libraries/main.php:3156
7199
  msgid "Unchecked by default"
7200
  msgstr "Sin marcar por defecto"
7201
 
7202
+ #: app/libraries/main.php:3179
7203
  msgid "Insert a label for this option"
7204
  msgstr "Introduce una etiqueta para esta opción"
7205
 
7206
+ #: app/libraries/main.php:3194
7207
  msgid "Free"
7208
  msgstr "Gratis"
7209
 
7210
+ #: app/libraries/main.php:3800 app/libraries/main.php:5546
7211
  #, fuzzy
7212
  #| msgid "M.E. Calendar"
7213
  msgid "M.E. Calender"
7214
  msgstr "M.E. Calendario"
7215
 
7216
+ #: app/libraries/main.php:3955
7217
  #, php-format
7218
  msgid "Copy of %s"
7219
  msgstr "Copia de %s"
7220
 
7221
+ #: app/libraries/main.php:4673
7222
  msgid "Booked an event."
7223
  msgstr "Has reservado para un evento."
7224
 
7225
+ #: app/libraries/main.php:4714
7226
  #, php-format
7227
  msgid "%s booked %s event."
7228
  msgstr "%s reservado %s evento."
7229
 
7230
+ #: app/libraries/main.php:5279
7231
  msgid "Taxonomies"
7232
  msgstr "Taxonomías"
7233
 
7234
+ #: app/libraries/main.php:5281
7235
  msgid "Category Plural Label"
7236
  msgstr "Categoría Etiqueta plural"
7237
 
7238
+ #: app/libraries/main.php:5282
7239
  msgid "Category Singular Label"
7240
  msgstr "Categoría Etiqueta Singular"
7241
 
7242
+ #: app/libraries/main.php:5283
7243
  msgid "Label Plural Label"
7244
  msgstr "Etiqueta plural"
7245
 
7246
+ #: app/libraries/main.php:5284
7247
  msgid "Label Singular Label"
7248
  msgstr "Etiqueta singular de la etiqueta"
7249
 
7250
+ #: app/libraries/main.php:5285
7251
  msgid "Location Plural Label"
7252
  msgstr "Ubicación Etiqueta plural"
7253
 
7254
+ #: app/libraries/main.php:5286
7255
  msgid "Location Singular Label"
7256
  msgstr "Etiqueta de ubicación en singular"
7257
 
7258
+ #: app/libraries/main.php:5287
7259
  msgid "Organizer Plural Label"
7260
  msgstr "Etiqueta del organizador en plural"
7261
 
7262
+ #: app/libraries/main.php:5288
7263
  msgid "Organizer Singular Label"
7264
  msgstr "Etiqueta Singular del Organizador"
7265
 
7266
+ #: app/libraries/main.php:5289
7267
  msgid "Speaker Plural Label"
7268
  msgstr ""
7269
 
7270
+ #: app/libraries/main.php:5290
7271
  msgid "Speaker Singular Label"
7272
  msgstr ""
7273
 
7274
+ #: app/libraries/main.php:5296
7275
  msgid "Sunday abbreviation"
7276
  msgstr "Abreviatura de Domingo"
7277
 
7278
+ #: app/libraries/main.php:5297
7279
  msgid "Monday abbreviation"
7280
  msgstr "Abreviatura de Lunes"
7281
 
7282
+ #: app/libraries/main.php:5298
7283
  msgid "Tuesday abbreviation"
7284
  msgstr "Abreviatura de Martes"
7285
 
7286
+ #: app/libraries/main.php:5299
7287
  msgid "Wednesday abbreviation"
7288
  msgstr "Abreviatura de Miércoles "
7289
 
7290
+ #: app/libraries/main.php:5300
7291
  msgid "Thursday abbreviation"
7292
  msgstr "Abreviatura de Jueves"
7293
 
7294
+ #: app/libraries/main.php:5301
7295
  msgid "Friday abbreviation"
7296
  msgstr "Abreviatura de Viernes"
7297
 
7298
+ #: app/libraries/main.php:5302
7299
  msgid "Saturday abbreviation"
7300
  msgstr "Abreviatura de Sábado "
7301
 
7302
+ #: app/libraries/main.php:5306
7303
  msgid "Others"
7304
  msgstr "Otros"
7305
 
7306
+ #: app/libraries/main.php:5308
7307
  msgid "Booking Success Message"
7308
  msgstr "Mensaje de reserva correcta"
7309
 
7310
+ #: app/libraries/main.php:5308
7311
  msgid ""
7312
  "Thanks for your booking. Your tickets booked, booking verification might be "
7313
  "needed, please check your email."
7315
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
7316
  "una verificación, por favor consulta tu correo."
7317
 
7318
+ #: app/libraries/main.php:5309 app/widgets/single.php:131
7319
  msgid "Register Button"
7320
  msgstr "Botón de registro"
7321
 
7322
+ #: app/libraries/main.php:5309 app/skins/available_spot/tpl.php:223
7323
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7324
+ #: app/skins/grid/render.php:124 app/skins/grid/render.php:171
7325
+ #: app/skins/grid/render.php:215 app/skins/grid/render.php:244
7326
+ #: app/skins/list/render.php:109 app/skins/list/render.php:195
7327
  #: app/skins/masonry/render.php:188 app/skins/single.php:774
7328
  #: app/skins/single.php:777 app/skins/single/default.php:255
7329
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7336
  msgid "REGISTER"
7337
  msgstr "REGISTRO"
7338
 
7339
+ #: app/libraries/main.php:5310
7340
  msgid "View Detail Button"
7341
  msgstr "Ver detalle del botón"
7342
 
7343
+ #: app/libraries/main.php:5310 app/skins/carousel/render.php:160
7344
+ #: app/skins/carousel/render.php:197 app/skins/grid/render.php:124
7345
+ #: app/skins/grid/render.php:171 app/skins/grid/render.php:215
7346
+ #: app/skins/grid/render.php:244 app/skins/list/render.php:109
7347
+ #: app/skins/list/render.php:195 app/skins/masonry/render.php:188
7348
  #: app/skins/slider/render.php:114 app/skins/slider/render.php:163
7349
  #: app/skins/slider/render.php:211 app/skins/slider/render.php:260
7350
  #: app/skins/slider/render.php:320
7351
  msgid "View Detail"
7352
  msgstr "Ver detalle"
7353
 
7354
+ #: app/libraries/main.php:5311
7355
  msgid "Event Detail Button"
7356
  msgstr "Botón de detalle del evento"
7357
 
7358
+ #: app/libraries/main.php:5311 app/skins/countdown/tpl.php:244
7359
  msgid "Event Detail"
7360
  msgstr "Detalle del evento"
7361
 
7362
+ #: app/libraries/main.php:5313
7363
  msgid "More Info Link"
7364
  msgstr "Enlace a Más Información"
7365
 
7366
+ #: app/libraries/main.php:5316
7367
  msgid "Ticket (Singular)"
7368
  msgstr "Entrada (Singular)"
7369
 
7370
+ #: app/libraries/main.php:5317
7371
  msgid "Tickets (Plural)"
7372
  msgstr "Entradas (Plural)"
7373
 
7374
+ #: app/libraries/main.php:5403
7375
  msgid "EventON"
7376
  msgstr "EventON"
7377
 
7378
+ #: app/libraries/main.php:5404
7379
  msgid "The Events Calendar"
7380
  msgstr "The Events Calendar"
7381
 
7382
+ #: app/libraries/main.php:5405
7383
  msgid "Events Schedule WP Plugin"
7384
  msgstr "Events Schedule WP Plugin"
7385
 
7386
+ #: app/libraries/main.php:5406
7387
  msgid "Calendarize It"
7388
  msgstr "Ponlo al calendario"
7389
 
7390
+ #: app/libraries/main.php:5407
7391
  #, fuzzy
7392
  #| msgid "Event %s"
7393
  msgid "Event Espresso"
7394
  msgstr "Evento %s"
7395
 
7396
+ #: app/libraries/main.php:5408
7397
  #, fuzzy
7398
  #| msgid "Event Repeating"
7399
  msgid "Events Manager (Recurring)"
7400
  msgstr "Repetir el evento"
7401
 
7402
+ #: app/libraries/main.php:5409
7403
  #, fuzzy
7404
  #| msgid "Modern Events Calendar (Lite)"
7405
  msgid "Events Manager (Single)"
7406
  msgstr "Modern Events Calendar (Lite)"
7407
 
7408
+ #: app/libraries/main.php:5483 app/libraries/main.php:5503
7409
  msgid "Confirmed"
7410
  msgstr ""
7411
 
7412
+ #: app/libraries/main.php:5484 app/libraries/main.php:5511
7413
  msgid "Rejected"
7414
  msgstr ""
7415
 
7416
+ #: app/libraries/main.php:5485 app/libraries/main.php:5507
7417
  msgid "Pending"
7418
  msgstr ""
7419
 
7420
+ #: app/libraries/main.php:5533
7421
  msgid "Waiting"
7422
  msgstr ""
7423
 
7424
+ #: app/libraries/main.php:5738 app/libraries/render.php:80
7425
  #: app/libraries/render.php:418
7426
  msgid "Skin controller does not exist."
7427
  msgstr "No existe skin controller."
7428
 
7429
+ #: app/libraries/main.php:5852
7430
  #, fuzzy
7431
  #| msgid "Sold out!"
7432
  msgid "Sold Out"
7433
  msgstr "¡Agotado!"
7434
 
7435
+ #: app/libraries/main.php:5860
7436
  #, fuzzy
7437
  #| msgid "Ticket"
7438
  msgid "Last Few Tickets"
7446
  msgid "Your booking is received."
7447
  msgstr "Se ha recibido tu reserva."
7448
 
7449
+ #: app/libraries/notifications.php:275
7450
  msgid "Your booking is confirmed."
7451
  msgstr "Tu reserva ha sido confirmada."
7452
 
7453
+ #: app/libraries/notifications.php:442
7454
  #, fuzzy
7455
  #| msgid "Your booking cannot be canceled."
7456
  msgid "booking canceled."
7457
  msgstr "La reserva no puede cancelarse."
7458
 
7459
+ #: app/libraries/notifications.php:517
7460
  msgid "A new booking is received."
7461
  msgstr "Nueva reserva recibida."
7462
 
7463
+ #: app/libraries/notifications.php:741
7464
  msgid "A new event is added."
7465
  msgstr "Se ha añadido un nuevo evento."
7466
 
7467
+ #: app/libraries/notifications.php:810
7468
  #, fuzzy
7469
  #| msgid "The event published."
7470
  msgid "Your event is published."
7471
  msgstr "El evento a sido publicado."
7472
 
7473
+ #: app/libraries/notifications.php:1046 app/libraries/notifications.php:1057
7474
+ #: app/libraries/notifications.php:1059
7475
  msgid "to"
7476
  msgstr "a"
7477
 
7478
+ #: app/libraries/notifications.php:1074 app/modules/export/details.php:46
7479
  msgid "+ Add to Google Calendar"
7480
  msgstr "+ Añadir Google Calendar"
7481
 
7482
+ #: app/libraries/notifications.php:1075 app/modules/export/details.php:47
7483
  msgid "+ iCal export"
7484
  msgstr "Exportación + iCal"
7485
 
7486
+ #: app/libraries/notifications.php:1138
7487
  msgid "Yes"
7488
  msgstr "Sí"
7489
 
7490
+ #: app/libraries/notifications.php:1138
7491
  msgid "No"
7492
  msgstr "No"
7493
 
7544
  "Rellenar la información de los otros asistentes igual que el primer "
7545
  "formulario."
7546
 
 
 
 
 
 
 
7547
  #: app/modules/booking/steps/message.php:7
7548
  msgid "Thanks for your booking."
7549
  msgstr "Gracias por tu reserva."
7685
  msgid "Load More"
7686
  msgstr "Cargar más"
7687
 
7688
+ #: app/skins/available_spot/tpl.php:158
7689
  msgid "Available Spot(s):"
7690
  msgstr "Sitio(s) disponible(s):"
7691
 
7692
  #: app/skins/carousel/render.php:218 app/skins/countdown/tpl.php:183
7693
  #: app/skins/countdown/tpl.php:227 app/skins/cover/tpl.php:109
7694
+ #: app/skins/list/render.php:129
7695
  msgid "EVENT DETAIL"
7696
  msgstr "DETALLE DEL EVENTO"
7697
 
7792
  msgid "Show events based on created shortcodes."
7793
  msgstr "Mostrar eventos basados en shortcodes."
7794
 
7795
+ #: app/widgets/MEC.php:86
7796
  msgid "Title:"
7797
  msgstr "Título:"
7798
 
7799
+ #: app/widgets/MEC.php:93
7800
  msgid "Shortcode:"
7801
  msgstr "Shortcode:"
7802
 
7803
+ #: app/widgets/MEC.php:103
7804
  #, fuzzy
7805
  #| msgid "Single Event Display Method"
7806
  msgid "Enable No Event Block Display: "
7807
  msgstr "Método de vista para página del evento"
7808
 
7809
+ #: app/widgets/MEC.php:107
7810
  msgid "Create some calendars first."
7811
  msgstr "Crea algunos calendario primero"
7812
 
7870
  msgid "http://webnus.net"
7871
  msgstr "http://webnus.net"
7872
 
 
 
 
 
 
7873
  #, fuzzy
7874
  #~| msgid "Booking module doesn't work"
7875
  #~ msgid "Booking module is not enabled!"
8197
  #~ msgid "Organizer Payment Credentials"
8198
  #~ msgstr "Nombre del organizador del evento reservado"
8199
 
8200
+ #, fuzzy
8201
+ #~| msgid "Enable booking reminder notification"
8202
+ #~ msgid "Booking reminder notification is not enabled!"
8203
+ #~ msgstr "Activar recordatorio de reservas del evento."
8204
+
8205
  #, fuzzy
8206
  #~| msgid "%s Email"
8207
  #~ msgid "Mass Email"
8247
  #~ "usuarios satisfechos. Si tienes algún problema, no dudes en ponerte en "
8248
  #~ "contacto con nosotros, te responderemos lo antes posible."
8249
 
 
 
 
8250
  #, fuzzy
8251
  #~| msgid "Security nonce is not valid."
8252
  #~ msgid "Security nonce is missing."
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: 2020-01-29 15:47+0330\n"
5
- "PO-Revision-Date: 2020-01-29 15:48+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -30,8 +30,8 @@ msgstr "Modern Events Calendar"
30
  msgid "Content"
31
  msgstr "Contenu"
32
 
33
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:438
34
- #: app/features/mec.php:469 app/features/mec.php:499
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
@@ -41,43 +41,34 @@ msgstr "Sélectionnez des shortcodes prédéfinis"
41
 
42
  #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
43
  #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
44
- #, fuzzy
45
- #| msgid "Shortcodes"
46
  msgid "MEC Shortcodes"
47
- msgstr "Shortcodes"
48
 
49
  #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
50
- #, fuzzy
51
- #| msgid "Insert your desired tags comma separated."
52
  msgid "Input your desired shortcode_id here."
53
  msgstr "Insérez les étiquettes souhaitées séparés par des virgules."
54
 
55
  #: app/addons/elementor/shortcode.php:34
56
- #, fuzzy
57
- #| msgid "Modern Events Calendar"
58
  msgid "Modern Events Calendar (MEC)"
59
- msgstr "Modern Events Calendar"
60
 
61
  #: app/addons/elementor/shortcode.php:78
62
- #, fuzzy
63
- #| msgid "General Options"
64
  msgid "General"
65
  msgstr "Options générales"
66
 
67
  #: app/addons/elementor/shortcode.php:87
68
- #, fuzzy
69
- #| msgid "Select All"
70
  msgid "Select Type"
71
- msgstr "Tout sélectionner"
72
 
73
  #: app/features/colors.php:50 app/features/fes/form.php:807
74
- #: app/features/mec/settings.php:680
75
  msgid "Event Color"
76
  msgstr "Couleur de l'événement"
77
 
78
- #: app/features/contextual.php:55 app/features/mec.php:414
79
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
80
- #: app/features/mec/support.php:20 app/libraries/main.php:594
 
81
  msgid "Settings"
82
  msgstr "Paramètres"
83
 
@@ -177,7 +168,7 @@ msgstr ""
177
  msgid "General Options"
178
  msgstr "Options générales"
179
 
180
- #: app/features/contextual.php:139 app/features/mec/settings.php:429
181
  #: app/libraries/main.php:533
182
  msgid "Slugs/Permalinks"
183
  msgstr "Permaliens/Ancres"
@@ -186,7 +177,7 @@ msgstr "Permaliens/Ancres"
186
  msgid "Event Details/Single Event Page"
187
  msgstr "Détail de l'événement/Page de l'événement"
188
 
189
- #: app/features/contextual.php:166 app/features/mec/settings.php:461
190
  #: app/libraries/main.php:534
191
  msgid "Currency Options"
192
  msgstr "Options de devise"
@@ -196,7 +187,7 @@ msgstr "Options de devise"
196
  msgid "Google Maps Options"
197
  msgstr "Option du plugin Google Maps"
198
 
199
- #: app/features/contextual.php:244 app/features/mec/settings.php:518
200
  #: app/libraries/main.php:535
201
  msgid "Google Recaptcha Options"
202
  msgstr "Options de Google reCAPTCHA"
@@ -215,7 +206,7 @@ msgstr "Réseaux Sociaux"
215
  msgid "Next Event Module"
216
  msgstr "Module événement suivant"
217
 
218
- #: app/features/contextual.php:286 app/features/mec/settings.php:554
219
  #: app/libraries/main.php:536
220
  msgid "Frontend Event Submission"
221
  msgstr "Réglages du formulaire de création d’événements"
@@ -242,7 +233,7 @@ msgstr "Bons de réduction"
242
  msgid "BuddyPress Integration"
243
  msgstr "Intégration BuddyPress"
244
 
245
- #: app/features/contextual.php:334 app/features/mec/settings.php:847
246
  #: app/libraries/main.php:539
247
  msgid "Mailchimp Integration"
248
  msgstr "Intégration de Mailchimp"
@@ -259,16 +250,16 @@ msgid "Events"
259
  msgstr "Évenements"
260
 
261
  #: app/features/events.php:158 app/features/fes.php:223
262
- #: app/features/mec/meta_boxes/display_options.php:1046
263
- #: app/features/mec/meta_boxes/display_options.php:1102
264
- #: app/features/mec/meta_boxes/display_options.php:1137
265
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
266
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
267
  #: app/skins/yearly_view/tpl.php:69
268
  msgid "Event"
269
  msgstr "Événement"
270
 
271
- #: app/features/events.php:159 app/features/mec.php:400
272
  msgid "Add Event"
273
  msgstr "Ajouter un événement"
274
 
@@ -298,7 +289,7 @@ msgid "No events found in Trash!"
298
  msgstr "Aucun événement trouvé dans la corbeille !"
299
 
300
  #: app/features/events.php:182 app/features/events.php:3320
301
- #: app/features/mec/meta_boxes/display_options.php:957
302
  #: app/features/mec/meta_boxes/search_form.php:31
303
  #: app/features/mec/meta_boxes/search_form.php:93
304
  #: app/features/mec/meta_boxes/search_form.php:155
@@ -310,8 +301,8 @@ msgstr "Aucun événement trouvé dans la corbeille !"
310
  #: app/features/mec/meta_boxes/search_form.php:514
311
  #: app/features/mec/meta_boxes/search_form.php:575
312
  #: app/features/mec/meta_boxes/search_form.php:672
313
- #: app/features/mec/settings.php:800 app/features/mec/single.php:204
314
- #: app/features/search.php:67 app/libraries/main.php:5281
315
  #: app/libraries/skins.php:858 app/skins/single.php:566
316
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
317
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -320,8 +311,8 @@ msgid "Category"
320
  msgstr "Catégorie"
321
 
322
  #: app/features/events.php:183 app/features/events.php:3275
323
- #: app/features/fes/form.php:757 app/features/mec.php:402
324
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
325
  msgid "Categories"
326
  msgstr "Catégories"
327
 
@@ -370,14 +361,14 @@ msgstr "Nouveau nom %s"
370
  #: app/features/events.php:199 app/features/labels.php:77
371
  #: app/features/locations.php:75 app/features/organizers.php:75
372
  #: app/features/speakers.php:78
373
- #, fuzzy, php-format
374
  msgid "Popular %s"
375
- msgstr "%s Populaire"
376
 
377
  #: app/features/events.php:200 app/features/labels.php:78
378
  #: app/features/locations.php:76 app/features/organizers.php:76
379
  #: app/features/speakers.php:79
380
- #, fuzzy, php-format
381
  msgid "Search %s"
382
  msgstr "Rechercher %s"
383
 
@@ -394,14 +385,10 @@ msgid "Event Details"
394
  msgstr "Détails"
395
 
396
  #: app/features/events.php:329
397
- #, fuzzy
398
- #| msgid "Event Details"
399
  msgid "FES Details"
400
  msgstr "Détails"
401
 
402
  #: app/features/events.php:330
403
- #, fuzzy
404
- #| msgid "Date and Time"
405
  msgid "Date And Time"
406
  msgstr "Date et heure"
407
 
@@ -410,26 +397,22 @@ msgid "Event Repeating"
410
  msgstr "Événement récurrent"
411
 
412
  #: app/features/events.php:333 app/features/events.php:1286
413
- #: app/features/mec/settings.php:710 app/skins/single.php:947
414
  msgid "Hourly Schedule"
415
  msgstr "Programme"
416
 
417
  #: app/features/events.php:334
418
- #, fuzzy
419
- #| msgid "Location"
420
  msgid "Location/Venue"
421
  msgstr "Lieu"
422
 
423
  #: app/features/events.php:335
424
- #, fuzzy
425
- #| msgid "Link"
426
  msgid "Links"
427
  msgstr "Lien"
428
 
429
  #: app/features/events.php:336 app/features/events.php:3322
430
  #: app/features/events.php:3513 app/features/events.php:3555
431
  #: app/features/ix.php:3510 app/features/ix.php:3551
432
- #: app/features/mec/meta_boxes/display_options.php:960
433
  #: app/features/mec/meta_boxes/search_form.php:45
434
  #: app/features/mec/meta_boxes/search_form.php:107
435
  #: app/features/mec/meta_boxes/search_form.php:169
@@ -441,11 +424,11 @@ msgstr "Lien"
441
  #: app/features/mec/meta_boxes/search_form.php:528
442
  #: app/features/mec/meta_boxes/search_form.php:589
443
  #: app/features/mec/meta_boxes/search_form.php:686
444
- #: app/features/mec/settings.php:812 app/features/mec/single.php:208
445
  #: app/features/organizers.php:58 app/features/organizers.php:204
446
  #: app/features/organizers.php:260 app/features/organizers.php:262
447
- #: app/features/organizers.php:271 app/features/search.php:75
448
- #: app/libraries/main.php:5287 app/libraries/skins.php:910
449
  #: app/skins/single.php:812 app/skins/single/default.php:217
450
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
451
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -453,7 +436,7 @@ msgid "Organizer"
453
  msgstr "Organisateur"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
- #: app/features/fes/form.php:730 app/libraries/main.php:5314
457
  #: app/skins/single.php:589 app/skins/single/default.php:126
458
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
459
  #: app/skins/single/modern.php:208
@@ -472,7 +455,7 @@ msgstr "Coordonnées de l'Invité"
472
  #: app/features/events.php:3802 app/features/fes.php:223
473
  #: app/features/fes/form.php:689 app/features/labels.php:178
474
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
475
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
476
  #: app/modules/booking/steps/form.php:37
477
  msgid "Name"
478
  msgstr "Nom"
@@ -483,9 +466,9 @@ msgstr "Nom"
483
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
484
  #: app/features/organizers.php:111 app/features/organizers.php:152
485
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
486
- #: app/features/speakers.php:196 app/libraries/main.php:1539
487
- #: app/libraries/main.php:1608 app/libraries/main.php:2826
488
- #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
489
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
490
  #: app/skins/single.php:884 app/skins/single/default.php:234
491
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
@@ -503,21 +486,21 @@ msgstr "Date et heure"
503
  #: app/features/fes/form.php:251 app/features/ix.php:3510
504
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
505
  #: app/features/mec/dashboard.php:401
506
- #: app/features/mec/meta_boxes/display_options.php:48
507
- #: app/features/mec/meta_boxes/display_options.php:228
508
- #: app/features/mec/meta_boxes/display_options.php:406
509
- #: app/features/mec/meta_boxes/display_options.php:474
510
- #: app/features/mec/meta_boxes/display_options.php:597
511
- #: app/features/mec/meta_boxes/display_options.php:651
512
- #: app/features/mec/meta_boxes/display_options.php:698
513
- #: app/features/mec/meta_boxes/display_options.php:731
514
- #: app/features/mec/meta_boxes/display_options.php:766
515
- #: app/features/mec/meta_boxes/display_options.php:813
516
- #: app/features/mec/meta_boxes/display_options.php:912
517
- #: app/features/mec/meta_boxes/display_options.php:1160
518
- #: app/features/mec/meta_boxes/display_options.php:1248
519
- #: app/features/mec/meta_boxes/display_options.php:1340
520
- #: app/features/mec/meta_boxes/display_options.php:1407
521
  msgid "Start Date"
522
  msgstr "Date de début"
523
 
@@ -562,16 +545,12 @@ msgid "Time Comment"
562
  msgstr "Commentaire sur l'horaire"
563
 
564
  #: app/features/events.php:712 app/features/fes/form.php:337
565
- #, fuzzy
566
- #| msgid ""
567
- #| "It shows next to event time on calendar. You can insert Timezone etc. in "
568
- #| "this field."
569
  msgid ""
570
  "It shows next to event time on single event page. You can insert Timezone "
571
  "etc. in this field."
572
  msgstr ""
573
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
574
- "insérer y insérer un fuseau horaire etc ..."
575
 
576
  #: app/features/events.php:714 app/features/events.php:835
577
  #: app/features/events.php:1135 app/features/events.php:1212
@@ -588,38 +567,38 @@ msgstr ""
588
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
589
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
590
  #: app/features/mec/dashboard.php:71
591
- #: app/features/mec/meta_boxes/display_options.php:79
592
- #: app/features/mec/meta_boxes/display_options.php:92
593
- #: app/features/mec/meta_boxes/display_options.php:105
594
- #: app/features/mec/meta_boxes/display_options.php:116
595
- #: app/features/mec/meta_boxes/display_options.php:128
596
- #: app/features/mec/meta_boxes/display_options.php:259
597
- #: app/features/mec/meta_boxes/display_options.php:271
598
- #: app/features/mec/meta_boxes/display_options.php:283
599
- #: app/features/mec/meta_boxes/display_options.php:296
600
- #: app/features/mec/meta_boxes/display_options.php:307
601
- #: app/features/mec/meta_boxes/display_options.php:320
602
- #: app/features/mec/meta_boxes/display_options.php:331
603
- #: app/features/mec/meta_boxes/display_options.php:438
604
- #: app/features/mec/meta_boxes/display_options.php:614
605
- #: app/features/mec/meta_boxes/display_options.php:944
606
- #: app/features/mec/meta_boxes/display_options.php:1017
607
- #: app/features/mec/meta_boxes/display_options.php:1029
608
- #: app/features/mec/meta_boxes/display_options.php:1040
609
- #: app/features/mec/meta_boxes/display_options.php:1072
610
- #: app/features/mec/meta_boxes/display_options.php:1083
611
- #: app/features/mec/meta_boxes/display_options.php:1096
612
- #: app/features/mec/meta_boxes/display_options.php:1131
613
- #: app/features/mec/meta_boxes/display_options.php:1180
614
- #: app/features/mec/meta_boxes/display_options.php:1191
615
- #: app/features/mec/meta_boxes/display_options.php:1202
616
- #: app/features/mec/meta_boxes/display_options.php:1268
617
- #: app/features/mec/meta_boxes/display_options.php:1281
618
- #: app/features/mec/meta_boxes/display_options.php:1294
619
- #: app/features/mec/meta_boxes/display_options.php:1307
620
- #: app/features/mec/meta_boxes/display_options.php:1320
621
- #: app/features/mec/meta_boxes/display_options.php:1371
622
- #: app/features/mec/meta_boxes/display_options.php:1424
623
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
624
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
625
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
@@ -633,14 +612,14 @@ msgstr ""
633
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
634
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
635
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
636
- #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
637
- #: app/features/mec/settings.php:310 app/features/mec/settings.php:384
638
- #: app/features/mec/settings.php:401 app/features/mec/settings.php:418
639
- #: app/features/mec/settings.php:437 app/features/mec/settings.php:451
640
- #: app/features/mec/settings.php:479 app/features/mec/settings.php:566
641
- #: app/features/mec/settings.php:739 app/features/mec/settings.php:755
642
- #: app/features/mec/settings.php:862 app/features/mec/settings.php:875
643
- #: app/features/mec/settings.php:891 app/features/mec/single.php:42
644
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
645
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
646
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
@@ -653,14 +632,10 @@ msgid "Read More"
653
  msgstr "Lire la suite"
654
 
655
  #: app/features/events.php:722
656
- #, fuzzy
657
- #| msgid "Repeat"
658
  msgid "Repeating"
659
  msgstr "Répetition"
660
 
661
  #: app/features/events.php:731
662
- #, fuzzy
663
- #| msgid "Event Repeating"
664
  msgid "Event Repeating (Recurring events)"
665
  msgstr "Événement récurrent"
666
 
@@ -712,8 +687,6 @@ msgid "Custom Days"
712
  msgstr "Choisir les dates"
713
 
714
  #: app/features/events.php:799 app/features/fes/form.php:357
715
- #, fuzzy
716
- #| msgid "Advanced Method"
717
  msgid "Advanced"
718
  msgstr "Méthode avancée"
719
 
@@ -740,10 +713,8 @@ msgstr "Démarrer"
740
  #: app/features/events.php:827 app/features/events.php:1901
741
  #: app/features/events.php:1929 app/features/events.php:2109
742
  #: app/features/fes/form.php:378
743
- #, fuzzy
744
- #| msgid "Enabled"
745
  msgid "End"
746
- msgstr "Activé"
747
 
748
  #: app/features/events.php:829 app/features/events.php:1206
749
  #: app/features/events.php:1317 app/features/events.php:1422
@@ -754,10 +725,8 @@ msgid "Add"
754
  msgstr "Ajouter"
755
 
756
  #: app/features/events.php:832
757
- #, fuzzy
758
- #| msgid "Custom Days"
759
  msgid "Custom Days Repeating"
760
- msgstr "Choisir les dates"
761
 
762
  #: app/features/events.php:833
763
  msgid ""
@@ -773,8 +742,6 @@ msgid "First"
773
  msgstr "Prénom"
774
 
775
  #: app/features/events.php:911 app/features/fes/form.php:447
776
- #, fuzzy
777
- #| msgid "second"
778
  msgid "Second"
779
  msgstr "seconde"
780
 
@@ -823,24 +790,20 @@ msgstr ""
823
  "répétitions."
824
 
825
  #: app/features/events.php:1148 app/features/fes/form.php:654
826
- #, fuzzy
827
- #| msgid "Next Occurrence of Other Events"
828
  msgid "Show only one occurrence of this event"
829
- msgstr "Prochaine Occurrence de l'événement à venir"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
  #: app/features/ix.php:3510 app/features/ix.php:3551
834
- #: app/features/mec/settings.php:656 app/libraries/main.php:5313
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Tarif de l'événement"
838
 
839
  #: app/features/events.php:1193
840
- #, fuzzy
841
- #| msgid "Exceptional Days"
842
  msgid "Exceptional Days (Exclude Dates)"
843
- msgstr "Journées Exceptionnelles"
844
 
845
  #: app/features/events.php:1199 app/features/events.php:1209
846
  msgid "Exclude certain days"
@@ -848,8 +811,8 @@ msgstr "Exclure certains jours"
848
 
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
- #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
- #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
853
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
@@ -869,18 +832,20 @@ msgstr ""
869
 
870
  #: app/features/events.php:1290
871
  msgid "Add Day"
872
- msgstr ""
873
 
874
  #: app/features/events.php:1291
875
  msgid ""
876
  "Add new days for schedule. For example if your event is multiple days, you "
877
  "can add a different schedule for each day!"
878
  msgstr ""
 
 
879
 
880
  #: app/features/events.php:1298
881
  #, php-format
882
  msgid "Day %s"
883
- msgstr ""
884
 
885
  #: app/features/events.php:1302 app/features/events.php:1341
886
  #: app/features/events.php:1376 app/features/events.php:1408
@@ -901,13 +866,13 @@ msgstr "Titre"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
- #: app/libraries/main.php:2745 app/libraries/main.php:2775
905
- #: app/libraries/main.php:2804 app/libraries/main.php:2834
906
- #: app/libraries/main.php:2863 app/libraries/main.php:2892
907
- #: app/libraries/main.php:2921 app/libraries/main.php:2950
908
- #: app/libraries/main.php:2972 app/libraries/main.php:3003
909
- #: app/libraries/main.php:3047 app/libraries/main.php:3091
910
- #: app/libraries/main.php:3138 app/libraries/main.php:3177
911
  msgid "Remove"
912
  msgstr "Supprimer"
913
 
@@ -933,26 +898,24 @@ msgstr "Description"
933
 
934
  #: app/features/events.php:1351 app/features/events.php:1384
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
- #: app/features/mec.php:410 app/features/mec/modules.php:52
937
- #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
- #: app/libraries/main.php:565 app/libraries/main.php:5288
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
- msgstr ""
942
 
943
  #: app/features/events.php:1404 app/features/events.php:1412
944
- #, fuzzy
945
- #| msgid "Week Days"
946
  msgid "New Day"
947
- msgstr "Jours de la semaine"
948
 
949
  #: app/features/events.php:1476 app/features/fes/form.php:704
950
- #: app/features/mec/settings.php:650
951
  msgid "Event Links"
952
  msgstr "Liens de l'évenements"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5311
956
  msgid "Event Link"
957
  msgstr "Lien de l'événement"
958
 
@@ -962,22 +925,18 @@ msgid "eg. http://yoursite.com/your-event"
962
  msgstr "eg. http://yoursite.com/your-event"
963
 
964
  #: app/features/events.php:1486
965
- #, fuzzy
966
- #| msgid ""
967
- #| "If you fill it, it will be replaced instead of default event page link. "
968
- #| "Insert full link including http(s)://"
969
  msgid ""
970
  "If you fill it, it will be replaced instead of default event page link. "
971
  "Insert full link including http(s):// - Also, if you use advertising URL, "
972
  "can use URL Shortener"
973
- msgstr "Lien principal. Affiché sur la page de l'événement"
974
 
975
  #: app/features/events.php:1488
976
  msgid "URL Shortener"
977
  msgstr ""
978
 
979
  #: app/features/events.php:1495 app/features/events.php:1508
980
- #: app/features/fes/form.php:711 app/libraries/main.php:5312
981
  #: app/skins/single.php:673 app/skins/single/default.php:140
982
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
983
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1010,7 +969,7 @@ msgstr "Nombre limite de réservation"
1010
  #: app/features/events.php:1596 app/features/events.php:1849
1011
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1012
  #: app/modules/booking/steps/tickets.php:40
1013
- #: app/skins/available_spot/tpl.php:160
1014
  msgid "Unlimited"
1015
  msgstr "Illimité"
1016
 
@@ -1031,8 +990,6 @@ msgid "100"
1031
  msgstr "100"
1032
 
1033
  #: app/features/events.php:1617
1034
- #, fuzzy
1035
- #| msgid "Total booking limits"
1036
  msgid "Total user booking limits"
1037
  msgstr "Nombre limite de réservation"
1038
 
@@ -1046,7 +1003,7 @@ msgid "12"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
- #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Billets"
1052
 
@@ -1058,10 +1015,8 @@ msgid ""
1058
  msgstr ""
1059
 
1060
  #: app/features/events.php:1661
1061
- #, fuzzy
1062
- #| msgid "Ticket"
1063
  msgid "Add Ticket"
1064
- msgstr "Billets"
1065
 
1066
  #: app/features/events.php:1675 app/features/events.php:1951
1067
  msgid "Ticket Name"
@@ -1105,19 +1060,15 @@ msgstr "Pour affichage sur le site Web. Par exemple 15 €"
1105
 
1106
  #: app/features/events.php:1836 app/features/events.php:2058
1107
  msgid "Available Tickets"
1108
- msgstr "Place(s) disponible(s)"
1109
 
1110
  #: app/features/events.php:1853 app/features/events.php:2068
1111
- #, fuzzy
1112
- #| msgid "Amount (Per Ticket)"
1113
  msgid "Minimum Ticket e.g. 3"
1114
- msgstr "Montant (par Billet)"
1115
 
1116
  #: app/features/events.php:1856 app/features/events.php:2071
1117
- #, fuzzy
1118
- #| msgid "Amount (Per Ticket)"
1119
  msgid "MinimumTicket"
1120
- msgstr "Montant (par Billet)"
1121
 
1122
  #: app/features/events.php:1858 app/features/events.php:2073
1123
  msgid "Set a number for the minimum ticket reservation"
@@ -1128,29 +1079,25 @@ msgid "e.g. 0"
1128
  msgstr ""
1129
 
1130
  #: app/features/events.php:1868 app/features/events.php:2083
1131
- #, fuzzy
1132
- #| msgid "Daily"
1133
  msgid "Day"
1134
- msgstr "Quotidienne"
1135
 
1136
  #: app/features/events.php:1869 app/features/events.php:2084
1137
  msgid "Hour"
1138
- msgstr ""
1139
 
1140
  #: app/features/events.php:1871 app/features/events.php:2086
1141
  #, php-format
1142
  msgid "Stop selling ticket %s before event start."
1143
- msgstr ""
1144
 
1145
  #: app/features/events.php:1878 app/features/events.php:2092
1146
- #, fuzzy
1147
- #| msgid "Price Label"
1148
  msgid "Price per Date"
1149
- msgstr "Libellé du prix"
1150
 
1151
  #: app/features/events.php:1909 app/features/events.php:1935
1152
  #: app/features/events.php:2113 app/features/labels.php:60
1153
- #: app/features/mec/meta_boxes/display_options.php:958
1154
  #: app/features/mec/meta_boxes/search_form.php:66
1155
  #: app/features/mec/meta_boxes/search_form.php:128
1156
  #: app/features/mec/meta_boxes/search_form.php:190
@@ -1162,7 +1109,7 @@ msgstr "Libellé du prix"
1162
  #: app/features/mec/meta_boxes/search_form.php:549
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
- #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
  #: app/libraries/skins.php:988
1167
  msgid "Label"
1168
  msgstr "Label"
@@ -1207,25 +1154,21 @@ msgstr "Montant (par Billet)"
1207
  msgid "Amount (Per Booking)"
1208
  msgstr "Montant (par réservation)"
1209
 
1210
- #: app/features/events.php:2283 app/features/mec/settings.php:728
1211
  msgid "Ticket Variations / Options"
1212
- msgstr ""
1213
 
1214
  #: app/features/events.php:2333 app/features/events.php:2378
1215
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
1216
- #, fuzzy
1217
- #| msgid "Option"
1218
  msgid "Option Price"
1219
- msgstr "Option"
1220
 
1221
  #: app/features/events.php:2343 app/features/events.php:2347
1222
  #: app/features/events.php:2387 app/features/events.php:2390
1223
  #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1224
  #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
1225
- #, fuzzy
1226
- #| msgid "Amount (Per Ticket)"
1227
  msgid "Maximum Per Ticket"
1228
- msgstr "Montant (par Billet)"
1229
 
1230
  #: app/features/events.php:2348 app/features/events.php:2391
1231
  #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
@@ -1233,48 +1176,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1233
  msgstr ""
1234
 
1235
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1236
- #: app/libraries/main.php:2767
1237
- #, fuzzy
1238
- #| msgid "Name"
1239
  msgid "MEC Name"
1240
  msgstr "Nom"
1241
 
1242
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1243
- #: app/libraries/main.php:2796
1244
- #, fuzzy
1245
- #| msgid "Email"
1246
  msgid "MEC Email"
1247
  msgstr "Email"
1248
 
1249
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1250
- #: app/libraries/main.php:2737
1251
  msgid "Text"
1252
  msgstr "Texte"
1253
 
1254
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1255
  #: app/features/organizers.php:103 app/features/organizers.php:148
1256
  #: app/features/speakers.php:119 app/features/speakers.php:192
1257
- #: app/features/speakers.php:271 app/libraries/main.php:2913
1258
  msgid "Tel"
1259
  msgstr "Téléphone"
1260
 
1261
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1262
- #: app/libraries/main.php:2855
1263
  msgid "File"
1264
- msgstr ""
1265
 
1266
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1267
- #: app/libraries/main.php:2942
1268
  msgid "Textarea"
1269
  msgstr "Zone de texte"
1270
 
1271
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1272
- #: app/libraries/main.php:2995
1273
  msgid "Checkboxes"
1274
  msgstr "Boîtes à cocher"
1275
 
1276
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1277
- #: app/libraries/main.php:3039
1278
  msgid "Radio Buttons"
1279
  msgstr "Boutons Radio"
1280
 
@@ -1354,17 +1293,17 @@ msgstr "Boutons Radio"
1354
  #: app/features/mec/meta_boxes/search_form.php:696
1355
  #: app/features/mec/meta_boxes/search_form.php:703
1356
  #: app/features/mec/meta_boxes/search_form.php:710
1357
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1358
  msgid "Dropdown"
1359
  msgstr "Menu déroulant"
1360
 
1361
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1362
- #: app/libraries/main.php:3130
1363
  msgid "Agreement"
1364
- msgstr ""
1365
 
1366
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1367
- #: app/libraries/main.php:2971
1368
  msgid "Paragraph"
1369
  msgstr "Paragraphe"
1370
 
@@ -1387,17 +1326,15 @@ msgid "organizers"
1387
  msgstr "organisateurs"
1388
 
1389
  #: app/features/events.php:3291
1390
- #, fuzzy
1391
- #| msgid "Attendees Limit"
1392
  msgid "Attendees List"
1393
- msgstr "Limite de Participants"
1394
 
1395
  #: app/features/events.php:3321 app/features/events.php:3513
1396
  #: app/features/events.php:3555 app/features/ix.php:3510
1397
  #: app/features/ix.php:3551 app/features/locations.php:58
1398
  #: app/features/locations.php:230 app/features/locations.php:287
1399
  #: app/features/locations.php:289 app/features/locations.php:298
1400
- #: app/features/mec/meta_boxes/display_options.php:959
1401
  #: app/features/mec/meta_boxes/search_form.php:38
1402
  #: app/features/mec/meta_boxes/search_form.php:100
1403
  #: app/features/mec/meta_boxes/search_form.php:162
@@ -1409,9 +1346,9 @@ msgstr "Limite de Participants"
1409
  #: app/features/mec/meta_boxes/search_form.php:521
1410
  #: app/features/mec/meta_boxes/search_form.php:582
1411
  #: app/features/mec/meta_boxes/search_form.php:679
1412
- #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1413
- #: app/features/search.php:71 app/libraries/main.php:2236
1414
- #: app/libraries/main.php:5285 app/libraries/skins.php:884
1415
  #: app/skins/single.php:493 app/skins/single.php:924
1416
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1417
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1470,31 +1407,27 @@ msgid "%s Tel"
1470
  msgstr "%s Téléphone"
1471
 
1472
  #: app/features/events.php:3513 app/features/events.php:3555
1473
- #, fuzzy, php-format
1474
  msgid "%s Email"
1475
  msgstr "%s mail"
1476
 
1477
  #: app/features/events.php:3808 app/features/fes.php:223
1478
- #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1479
- #: app/libraries/main.php:5315
1480
  msgid "Ticket"
1481
  msgstr "Billets"
1482
 
1483
  #: app/features/events.php:3811 app/features/profile/profile.php:189
1484
- #, fuzzy
1485
- #| msgid "Verification"
1486
  msgid "Variations"
1487
- msgstr "Vérification"
1488
 
1489
  #: app/features/events.php:3826 app/features/fes.php:303
1490
  msgid "Unknown"
1491
  msgstr "Inconnu"
1492
 
1493
  #: app/features/events.php:3859
1494
- #, fuzzy
1495
- #| msgid "Attendees Form"
1496
  msgid "No Attendees Found!"
1497
- msgstr "Formulaire de réservation"
1498
 
1499
  #: app/features/fes.php:87
1500
  #, php-format
@@ -1526,7 +1459,7 @@ msgstr "Merci de %s/%s pour gérer les événements."
1526
  msgid "The event removed!"
1527
  msgstr "Événement supprimé !"
1528
 
1529
- #: app/features/fes.php:223 app/libraries/main.php:2248
1530
  msgid "Transaction ID"
1531
  msgstr "Numéro de transaction"
1532
 
@@ -1535,10 +1468,8 @@ msgid "Total Price"
1535
  msgstr ""
1536
 
1537
  #: app/features/fes.php:223
1538
- #, fuzzy
1539
- #| msgid "Verification"
1540
  msgid "Ticket Variation"
1541
- msgstr "Vérification"
1542
 
1543
  #: app/features/fes.php:223
1544
  msgid "Confirmation"
@@ -1569,49 +1500,47 @@ msgid "The event published."
1569
  msgstr "Événement Publié."
1570
 
1571
  #: app/features/fes/form.php:169
1572
- #, fuzzy
1573
- #| msgid "Go back to events list."
1574
  msgid "Go back to events list"
1575
  msgstr "Retourner à la liste des évènements."
1576
 
1577
  #: app/features/fes/form.php:366
1578
- #: app/features/mec/meta_boxes/display_options.php:843
1579
  #: app/libraries/main.php:410
1580
  msgid "Monday"
1581
  msgstr "Lundi"
1582
 
1583
  #: app/features/fes/form.php:367
1584
- #: app/features/mec/meta_boxes/display_options.php:844
1585
  #: app/libraries/main.php:410
1586
  msgid "Tuesday"
1587
  msgstr "Mardi"
1588
 
1589
  #: app/features/fes/form.php:368
1590
- #: app/features/mec/meta_boxes/display_options.php:845
1591
  #: app/libraries/main.php:410
1592
  msgid "Wednesday"
1593
  msgstr "Mercredi"
1594
 
1595
  #: app/features/fes/form.php:369
1596
- #: app/features/mec/meta_boxes/display_options.php:846
1597
  #: app/libraries/main.php:410
1598
  msgid "Thursday"
1599
  msgstr "Jeudi"
1600
 
1601
  #: app/features/fes/form.php:370
1602
- #: app/features/mec/meta_boxes/display_options.php:847
1603
  #: app/libraries/main.php:410
1604
  msgid "Friday"
1605
  msgstr "Vendredi"
1606
 
1607
  #: app/features/fes/form.php:371
1608
- #: app/features/mec/meta_boxes/display_options.php:848
1609
  #: app/libraries/main.php:410
1610
  msgid "Saturday"
1611
  msgstr "Samedi"
1612
 
1613
  #: app/features/fes/form.php:372
1614
- #: app/features/mec/meta_boxes/display_options.php:842
1615
  #: app/libraries/main.php:410
1616
  msgid "Sunday"
1617
  msgstr "Dimanche"
@@ -1642,7 +1571,7 @@ msgid ""
1642
  "Insert full link including http(s)://"
1643
  msgstr "Lien principal. Affiché sur la page de l'événement"
1644
 
1645
- #: app/features/fes/form.php:744 app/features/mec/settings.php:662
1646
  msgid "Featured Image"
1647
  msgstr "Image Principale"
1648
 
@@ -1651,15 +1580,15 @@ msgid "Remove Image"
1651
  msgstr "Supprimer l'image"
1652
 
1653
  #: app/features/fes/form.php:783 app/features/labels.php:61
1654
- #: app/features/labels.php:221 app/features/mec.php:403
1655
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1656
  #: app/skins/single.php:702 app/skins/single/default.php:155
1657
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1658
  #: app/skins/single/modern.php:223
1659
  msgid "Labels"
1660
  msgstr "Labels"
1661
 
1662
- #: app/features/fes/form.php:829 app/features/mec.php:401
1663
  #: app/features/mec/meta_boxes/filter.php:147
1664
  msgid "Tags"
1665
  msgstr "Étiquettes"
@@ -1669,10 +1598,8 @@ msgid "Insert your desired tags, comma separated."
1669
  msgstr "Insérez les étiquettes souhaitées séparés par des virgules."
1670
 
1671
  #: app/features/fes/form.php:853
1672
- #, fuzzy
1673
- #| msgid "No Search Options"
1674
  msgid "Speakers Names"
1675
- msgstr "Aucune option de recherche"
1676
 
1677
  #: app/features/fes/form.php:854
1678
  msgid "Separate names with commas Similar Justin, Cris"
@@ -1691,16 +1618,12 @@ msgid "Add new"
1691
  msgstr "Ajouter"
1692
 
1693
  #: app/features/fes/list.php:80
1694
- #, fuzzy
1695
- #| msgid "Settings"
1696
  msgid "Download Attendees"
1697
- msgstr "Paramètres"
1698
 
1699
  #: app/features/fes/list.php:84
1700
- #, fuzzy
1701
- #| msgid "featured event"
1702
  msgid "Remove Event"
1703
- msgstr "événement à la une"
1704
 
1705
  #: app/features/fes/list.php:175
1706
  #, php-format
@@ -1795,16 +1718,10 @@ msgid "%s events failed to add for following reasons: %s"
1795
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
1796
 
1797
  #: app/features/ix.php:3859
1798
- #, fuzzy
1799
- #| msgid "Please insert your facebook page's link."
1800
  msgid "Please insert your Facebook page's link."
1801
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
1802
 
1803
  #: app/features/ix.php:3868
1804
- #, fuzzy
1805
- #| msgid ""
1806
- #| "We couldn't recognize your Facebook page. Please check it and provide us "
1807
- #| "a valid facebook page link."
1808
  msgid ""
1809
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1810
  "valid Facebook page link."
@@ -1836,10 +1753,8 @@ msgstr "M.E.C. Import / Export"
1836
  #: app/features/ix/import_g_calendar.php:13
1837
  #: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
1838
  #: app/features/ix/thirdparty.php:13
1839
- #, fuzzy
1840
- #| msgid "Import"
1841
  msgid "Meetup Import"
1842
- msgstr "Importer"
1843
 
1844
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1845
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
@@ -1998,15 +1913,13 @@ msgstr "Ajouter à Google Agenda"
1998
 
1999
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2000
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2001
- #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2002
  msgid "Checking ..."
2003
  msgstr "Vérification..."
2004
 
2005
  #: app/features/ix/export_g_calendar.php:134
2006
- #, fuzzy
2007
- #| msgid "Importing ..."
2008
  msgid "Exporting ..."
2009
- msgstr "Importation..."
2010
 
2011
  #: app/features/ix/import.php:21
2012
  msgid "Import MEC XML Feed"
@@ -2028,10 +1941,8 @@ msgid "Upload & Import"
2028
  msgstr ""
2029
 
2030
  #: app/features/ix/import.php:33
2031
- #, fuzzy
2032
- #| msgid "Import Options"
2033
  msgid "Import .ics File"
2034
- msgstr "Importer les Options"
2035
 
2036
  #: app/features/ix/import.php:37
2037
  #, php-format
@@ -2047,8 +1958,8 @@ msgstr ""
2047
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
2048
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
2049
  #: app/features/mec/booking.php:359
2050
- #: app/features/mec/meta_boxes/display_options.php:175
2051
- #: app/features/mec/meta_boxes/display_options.php:367
2052
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2053
  #: app/features/mec/modules.php:228
2054
  #, php-format
@@ -2058,21 +1969,19 @@ msgstr ""
2058
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
2059
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
2060
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
2061
- #: app/features/mec/meta_boxes/display_options.php:175
2062
- #: app/features/mec/meta_boxes/display_options.php:367
2063
- #: app/features/mec/meta_boxes/display_options.php:395
2064
- #: app/features/mec/meta_boxes/display_options.php:535
2065
- #: app/features/mec/meta_boxes/display_options.php:586
2066
- #: app/features/mec/meta_boxes/display_options.php:693
2067
- #: app/features/mec/meta_boxes/display_options.php:800
2068
- #: app/features/mec/meta_boxes/display_options.php:907
2069
- #: app/features/mec/meta_boxes/display_options.php:1120
2070
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
2071
  #: app/features/mec/modules.php:228
2072
- #, fuzzy
2073
- #| msgid "Modern Events Calendar"
2074
  msgid "Pro version of Modern Events Calendar"
2075
- msgstr "Modern Events Calendar"
2076
 
2077
  #: app/features/ix/import_f_calendar.php:22
2078
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
@@ -2083,10 +1992,8 @@ msgid "Import from Facebook Calendar"
2083
  msgstr "Importer depuis Calendrier Facebook"
2084
 
2085
  #: app/features/ix/import_f_calendar.php:27
2086
- #, fuzzy
2087
- #| msgid "Import all of your facebook events into MEC."
2088
  msgid "Import all of your Facebook events into MEC."
2089
- msgstr "Importer tous vos évènements Facebook dans l'extansion M.E.C. ."
2090
 
2091
  #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2092
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
@@ -2094,10 +2001,8 @@ msgid "Documentation"
2094
  msgstr "Documentation"
2095
 
2096
  #: app/features/ix/import_f_calendar.php:29
2097
- #, fuzzy
2098
- #| msgid "Facebook Page Link"
2099
  msgid "Facebook Page Access Token"
2100
- msgstr "URL Page Facebook"
2101
 
2102
  #: app/features/ix/import_f_calendar.php:35
2103
  msgid "Facebook Page Link"
@@ -2220,10 +2125,8 @@ msgid "put only the slug of your group like %s in %s"
2220
  msgstr ""
2221
 
2222
  #: app/features/ix/import_meetup.php:50
2223
- #, fuzzy
2224
- #| msgid "Next Event"
2225
  msgid "Meetup Events"
2226
- msgstr "Prochain Événement"
2227
 
2228
  #: app/features/ix/import_meetup.php:51
2229
  #, fuzzy, php-format
@@ -2261,7 +2164,7 @@ msgid "Auto Synchronization"
2261
  msgstr "Synchronisation Automatique"
2262
 
2263
  #: app/features/ix/sync.php:22
2264
- #: app/features/mec/meta_boxes/display_options.php:907
2265
  #, php-format
2266
  msgid "%s is required to use synchronization feature."
2267
  msgstr ""
@@ -2428,16 +2331,16 @@ msgid "Select label color"
2428
  msgstr "Sélectionner la couleur du label"
2429
 
2430
  #: app/features/labels.php:112 app/features/labels.php:139
2431
- #: app/features/mec/meta_boxes/display_options.php:38
2432
- #: app/features/mec/meta_boxes/display_options.php:215
2433
- #: app/features/mec/meta_boxes/display_options.php:400
2434
- #: app/features/mec/meta_boxes/display_options.php:591
2435
- #: app/features/mec/meta_boxes/display_options.php:641
2436
- #: app/features/mec/meta_boxes/display_options.php:805
2437
- #: app/features/mec/meta_boxes/display_options.php:1002
2438
- #: app/features/mec/meta_boxes/display_options.php:1059
2439
- #: app/features/mec/meta_boxes/display_options.php:1151
2440
- #: app/features/mec/meta_boxes/display_options.php:1238
2441
  msgid "Style"
2442
  msgstr "Style"
2443
 
@@ -2449,28 +2352,26 @@ msgstr ""
2449
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2450
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2451
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2452
- #: app/skins/grid/render.php:52 app/skins/list/render.php:37
2453
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2454
  #: app/skins/monthly_view/calendar_clean.php:86
2455
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2456
- #: app/skins/tile/render.php:35 app/skins/timeline/render.php:44
2457
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2458
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
2459
- #, fuzzy
2460
- #| msgid "Featured Image"
2461
  msgid "Featured"
2462
- msgstr "Image Principale"
2463
 
2464
  #: app/features/labels.php:118 app/features/labels.php:143
2465
- #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2466
- #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2467
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2468
- #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2469
- #: app/skins/list/render.php:38 app/skins/masonry/render.php:30
2470
  #: app/skins/monthly_view/calendar.php:90
2471
  #: app/skins/monthly_view/calendar_clean.php:90
2472
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2473
- #: app/skins/tile/render.php:36 app/skins/timeline/render.php:48
2474
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2475
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2476
  msgid "Canceled"
@@ -2496,9 +2397,9 @@ msgstr "Identifiant de la catégorie."
2496
  msgid "Event %s"
2497
  msgstr "%s événement"
2498
 
2499
- #: app/features/locations.php:59 app/features/mec.php:404
2500
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2501
- #: app/libraries/main.php:5284
2502
  msgid "Locations"
2503
  msgstr "Lieux"
2504
 
@@ -2569,7 +2470,7 @@ msgstr "Nom du Lieu"
2569
  msgid "eg. City Hall"
2570
  msgstr "Ex : La Source"
2571
 
2572
- #: app/features/locations.php:310 app/features/mec/settings.php:692
2573
  #: app/widgets/single.php:115
2574
  msgid "Event Location"
2575
  msgstr "Lieu de l'événement"
@@ -2579,10 +2480,8 @@ msgid "eg. City hall, Manhattan, New York"
2579
  msgstr "Ex : Grenoble (38)"
2580
 
2581
  #: app/features/locations.php:329
2582
- #, fuzzy
2583
- #| msgid "Longitude"
2584
  msgid "Latitude/Longitude"
2585
- msgstr "Longitude"
2586
 
2587
  #: app/features/locations.php:330
2588
  msgid ""
@@ -2605,140 +2504,127 @@ msgstr "Choisir une image"
2605
  msgid "Don't show map in single event page"
2606
  msgstr "Ne pas afficher de carte pour cet événement"
2607
 
2608
- #: app/features/locations.php:356 app/libraries/main.php:5318
2609
- #, fuzzy
2610
- #| msgid "Search Locations"
2611
  msgid "Other Locations"
2612
- msgstr "Chercher un Lieu"
2613
 
2614
  #: app/features/locations.php:358
2615
- #, fuzzy
2616
- #| msgid ""
2617
- #| "You can select extra organizers in addition to main organizer if you like."
2618
  msgid ""
2619
  "You can select extra locations in addition to main location if you like."
2620
  msgstr ""
2621
- "Vous pouvez sélectionner des organisateurs supplémentaires en plus de "
2622
- "l'organisateur principal si vous le souhaitez."
2623
 
2624
  #: app/features/login.php:61 app/features/login.php:63
2625
  msgid "<strong>"
2626
  msgstr ""
2627
 
2628
- #: app/features/mec.php:185
2629
  msgid ""
2630
  "Activation faild. Please check your purchase code or license type."
2631
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2632
  msgstr ""
2633
 
2634
- #: app/features/mec.php:185
2635
  msgid "Troubleshooting"
2636
  msgstr ""
2637
 
2638
- #: app/features/mec.php:255 app/libraries/notifications.php:933
2639
  #, php-format
2640
  msgid "%s to %s"
2641
  msgstr "%s en %s"
2642
 
2643
- #: app/features/mec.php:278
2644
  msgid ""
2645
  "Your options is not in JSON format. Please insert correct options in this "
2646
  "field and try again."
2647
  msgstr ""
2648
 
2649
- #: app/features/mec.php:285
2650
  #, fuzzy
2651
  #| msgid "Your booking cannot verify!"
2652
  msgid "Your options field can not be empty!"
2653
  msgstr "Votre réservation ne peut pas être vérifiée!"
2654
 
2655
- #: app/features/mec.php:291
2656
  #, fuzzy
2657
  #| msgid "Your booking successfully verified."
2658
  msgid "Your options imported successfuly."
2659
  msgstr "Votre réservation est vérifiée avec succès."
2660
 
2661
- #: app/features/mec.php:384
2662
- #, fuzzy
2663
- #| msgid "Support"
2664
  msgid "MEC - Support"
2665
- msgstr "Aide"
2666
 
2667
- #: app/features/mec.php:384 app/features/mec/support-page.php:9
2668
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2669
  msgid "Support"
2670
  msgstr "Aide"
2671
 
2672
- #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2673
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2674
- #: app/libraries/main.php:5286
2675
  msgid "Organizers"
2676
  msgstr "Organisateurs"
2677
 
2678
- #: app/features/mec.php:413 app/features/mec.php:437
2679
  #: app/features/mec/dashboard.php:264
2680
  msgid "Shortcodes"
2681
  msgstr "Shortcodes"
2682
 
2683
- #: app/features/mec.php:414
2684
  msgid "MEC - Settings"
2685
  msgstr "Agenda - Paramètres"
2686
 
2687
- #: app/features/mec.php:415
2688
- #, fuzzy
2689
- #| msgid "MEC - Settings"
2690
  msgid "MEC - Addons"
2691
- msgstr "Agenda - Paramètres"
2692
 
2693
- #: app/features/mec.php:415 app/features/mec/addons.php:22
2694
  msgid "Addons"
2695
  msgstr ""
2696
 
2697
- #: app/features/mec.php:418
2698
- #, fuzzy
2699
- #| msgid "Support"
2700
  msgid "MEC - Report"
2701
- msgstr "Aide"
2702
 
2703
- #: app/features/mec.php:418
2704
- #, fuzzy
2705
- #| msgid "Export"
2706
  msgid "Report"
2707
- msgstr "Exporter"
2708
 
2709
- #: app/features/mec.php:439
2710
  msgid "Add Shortcode"
2711
  msgstr "Ajouter un Shortcode"
2712
 
2713
- #: app/features/mec.php:440
2714
  msgid "Add New Shortcode"
2715
  msgstr "Ajouter un nouveau Shortcode"
2716
 
2717
- #: app/features/mec.php:441
2718
  msgid "No shortcodes found!"
2719
  msgstr "Aucun shortcode trouvé !"
2720
 
2721
- #: app/features/mec.php:442
2722
  msgid "All Shortcodes"
2723
  msgstr "Tous les Shortcode"
2724
 
2725
- #: app/features/mec.php:443
2726
  msgid "Edit shortcodes"
2727
  msgstr "Modifier les shortcodes"
2728
 
2729
- #: app/features/mec.php:444
2730
  msgid "No shortcodes found in Trash!"
2731
  msgstr "Pas de shortcode dans la corbeille"
2732
 
2733
- #: app/features/mec.php:497
2734
  msgid "Display Options"
2735
  msgstr "Options d'affichage"
2736
 
2737
- #: app/features/mec.php:498
2738
  msgid "Filter Options"
2739
  msgstr "Options des filtres"
2740
 
2741
- #: app/features/mec.php:500
2742
  msgid "Search Form"
2743
  msgstr "Formulaire de Recherche"
2744
 
@@ -2746,21 +2632,21 @@ msgstr "Formulaire de Recherche"
2746
  msgid "Display content's images as Popup"
2747
  msgstr ""
2748
 
2749
- #: app/features/mec.php:888
2750
  msgid "Single Event Display Method"
2751
  msgstr "Méthode d'affichage"
2752
 
2753
- #: app/features/mec.php:893
2754
  msgid "Separate Window"
2755
  msgstr "Page séparé"
2756
 
2757
- #: app/features/mec.php:894
2758
  msgid "Modal 1"
2759
  msgstr "Pop-up"
2760
 
2761
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2762
- #: app/features/mec/dashboard.php:81 app/features/mec/report.php:17
2763
- #: app/features/mec/support-page.php:21
2764
  msgid "Version"
2765
  msgstr "Version"
2766
 
@@ -2779,9 +2665,8 @@ msgstr ""
2779
  #: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
2780
  #: app/features/mec/settings.php:37 app/features/mec/single.php:15
2781
  #: app/features/mec/styling.php:35
2782
- #, fuzzy
2783
  msgid "Search..."
2784
- msgstr "Rechercher %s"
2785
 
2786
  #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2787
  #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
@@ -2796,8 +2681,8 @@ msgstr "Rechercher %s"
2796
  #: app/features/mec/notifications.php:828
2797
  #: app/features/mec/notifications.php:924
2798
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2799
- #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2800
- #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2801
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2802
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2803
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
@@ -2829,33 +2714,31 @@ msgid "Default is Y-m-d"
2829
  msgstr "Par défaut: A-m-j"
2830
 
2831
  #: app/features/mec/booking.php:115
2832
- #: app/features/mec/meta_boxes/display_options.php:134
2833
- #: app/features/mec/meta_boxes/display_options.php:348
2834
- #: app/features/mec/meta_boxes/display_options.php:444
2835
- #: app/features/mec/meta_boxes/display_options.php:950
2836
- #: app/features/mec/meta_boxes/display_options.php:1217
2837
- #: app/features/mec/meta_boxes/display_options.php:1326
2838
- #: app/features/mec/meta_boxes/display_options.php:1377
2839
  msgid "Limit"
2840
  msgstr "Nombre maximum"
2841
 
2842
  #: app/features/mec/booking.php:117
2843
- #, fuzzy
2844
- #| msgid "Default is 6"
2845
  msgid "Default is empty"
2846
- msgstr "Par défaut: 6"
2847
 
2848
  #: app/features/mec/booking.php:120
2849
- #, fuzzy
2850
- #| msgid "Booking Form"
2851
  msgid "Booking Limit"
2852
- msgstr "Formulaire de réservation"
2853
 
2854
  #: app/features/mec/booking.php:121
2855
  msgid ""
2856
  "Total tickets that a user can book. It is useful if you're providing free "
2857
  "tickets. Leave it empty for unlimited booking."
2858
  msgstr ""
 
 
2859
 
2860
  #: app/features/mec/booking.php:128
2861
  msgid "Maximum Dates"
@@ -2883,7 +2766,7 @@ msgid ""
2883
  msgstr ""
2884
 
2885
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2886
- #: app/features/mec/settings.php:599 app/features/mec/settings.php:609
2887
  msgid "Thank You Page"
2888
  msgstr "Page de Remerciement"
2889
 
@@ -2896,17 +2779,15 @@ msgstr ""
2896
  "pour désactiver."
2897
 
2898
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2899
- #: app/features/mec/settings.php:619 app/features/mec/settings.php:624
2900
- #, fuzzy
2901
- #| msgid "Thank You Page"
2902
  msgid "Thank You Page Time Interval"
2903
- msgstr "Page de Remerciement"
2904
 
2905
- #: app/features/mec/booking.php:167 app/features/mec/settings.php:621
2906
  msgid "2000 mean 2 seconds"
2907
- msgstr ""
2908
 
2909
- #: app/features/mec/booking.php:171 app/features/mec/settings.php:625
2910
  msgid ""
2911
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2912
  "2000 means 2 seconds."
@@ -2914,7 +2795,7 @@ msgstr ""
2914
 
2915
  #: app/features/mec/booking.php:182
2916
  msgid "Enable Express Attendees Form"
2917
- msgstr ""
2918
 
2919
  #: app/features/mec/booking.php:186
2920
  msgid "Attendees Form"
@@ -2927,16 +2808,12 @@ msgid ""
2927
  msgstr ""
2928
 
2929
  #: app/features/mec/booking.php:200
2930
- #, fuzzy
2931
- #| msgid "View Event"
2932
  msgid "Enable Invoice"
2933
- msgstr "Voir l'événement"
2934
 
2935
  #: app/features/mec/booking.php:211
2936
- #, fuzzy
2937
- #| msgid "Enable on booking form"
2938
  msgid "Enable Booking for Ongoing Events"
2939
- msgstr "Activer le formulaire de réservation"
2940
 
2941
  #: app/features/mec/booking.php:216
2942
  msgid "Email verification"
@@ -2987,29 +2864,23 @@ msgstr "Ajouter frais"
2987
 
2988
  #: app/features/mec/booking.php:356 app/libraries/main.php:559
2989
  msgid "Ticket Variations & Options"
2990
- msgstr ""
2991
 
2992
  #: app/features/mec/booking.php:364
2993
- #, fuzzy
2994
- #| msgid "Enable coupons module"
2995
  msgid "Enable ticket options module"
2996
- msgstr "Activer module de coupons"
2997
 
2998
  #: app/features/mec/booking.php:369
2999
  msgid "Add Variation / Option"
3000
- msgstr ""
3001
 
3002
  #: app/features/mec/booking.php:572
3003
- #, fuzzy
3004
- #| msgid "New Organizer Name"
3005
  msgid "Enable Organizer Payment Module"
3006
- msgstr "Nouveau nom d'organisateur"
3007
 
3008
  #: app/features/mec/booking.php:576
3009
- #, fuzzy
3010
- #| msgid "Organizer Name"
3011
  msgid "Organizer Payment"
3012
- msgstr "Nom de l'organisateur"
3013
 
3014
  #: app/features/mec/booking.php:577
3015
  msgid ""
@@ -3019,14 +2890,14 @@ msgstr ""
3019
 
3020
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3021
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3022
- #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3023
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3024
  msgid "Saved"
3025
  msgstr "Sauvegardé"
3026
 
3027
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3028
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3029
- #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3030
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3031
  msgid "Settings Saved!"
3032
  msgstr ""
@@ -3034,14 +2905,14 @@ msgstr ""
3034
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3035
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3036
  #: app/features/mec/notifications.php:905
3037
- #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3038
- #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3039
- #: app/features/mec/single.php:289 app/libraries/main.php:5530
3040
  msgid "Verified"
3041
  msgstr "Vérifié"
3042
 
3043
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3044
- #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3045
  #: app/features/mec/single.php:291
3046
  msgid "Please Refresh Page"
3047
  msgstr "Merci de Rafraichir la Page"
@@ -3076,7 +2947,7 @@ msgstr ""
3076
  msgid "Update"
3077
  msgstr "Mettre à jour %s"
3078
 
3079
- #: app/features/mec/dashboard.php:96
3080
  #, php-format
3081
  msgid ""
3082
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3084,28 +2955,29 @@ msgid ""
3084
  "Spots, etc you should upgrade to the Pro version."
3085
  msgstr ""
3086
 
3087
- #: app/features/mec/dashboard.php:96
3088
  msgid "lite"
3089
  msgstr ""
3090
 
3091
- #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
 
3092
  msgid "GO PREMIUM"
3093
  msgstr ""
3094
 
3095
- #: app/features/mec/dashboard.php:102
3096
  #, php-format
3097
  msgid ""
3098
  "Easily get a discount coupon by rating us on %s or following and reposting "
3099
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3100
  msgstr ""
3101
 
3102
- #: app/features/mec/dashboard.php:102
3103
  #, fuzzy
3104
  #| msgid "Address"
3105
  msgid "WordPress"
3106
  msgstr "Adresse"
3107
 
3108
- #: app/features/mec/dashboard.php:102
3109
  msgid "Copouns!"
3110
  msgstr ""
3111
 
@@ -3143,7 +3015,7 @@ msgid ""
3143
  "code."
3144
  msgstr ""
3145
 
3146
- #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3147
  msgid "Upcoming Events"
3148
  msgstr "Prochains évenements"
3149
 
@@ -3192,6 +3064,10 @@ msgstr "Ventes totales (%s)"
3192
  msgid "Change Log"
3193
  msgstr "Journal des modifications"
3194
 
 
 
 
 
3195
  #: app/features/mec/ie.php:21
3196
  msgid ""
3197
  "Insert your backup files below and press import to restore your site's "
@@ -3238,63 +3114,59 @@ msgstr ""
3238
  "multilingue, nous vous recommandons plutôt de modifier les textes/phrases du "
3239
  "fichier de langue."
3240
 
3241
- #: app/features/mec/meta_boxes/display_options.php:22
3242
  msgid "Skin"
3243
  msgstr "Apparence"
3244
 
3245
- #: app/features/mec/meta_boxes/display_options.php:40
3246
- #: app/features/mec/meta_boxes/display_options.php:217
3247
- #: app/features/mec/meta_boxes/display_options.php:643
3248
- #: app/features/mec/meta_boxes/display_options.php:809
3249
- #: app/features/mec/meta_boxes/display_options.php:1004
3250
- #: app/features/mec/settings.php:259 app/features/mec/settings.php:283
3251
- #: app/features/mec/settings.php:292 app/features/mec/settings.php:333
3252
- #: app/features/mec/settings.php:357 app/features/mec/settings.php:366
 
 
3253
  msgid "Classic"
3254
  msgstr "Classique"
3255
 
3256
- #: app/features/mec/meta_boxes/display_options.php:41
3257
- #: app/features/mec/meta_boxes/display_options.php:219
3258
- #: app/features/mec/settings.php:284 app/features/mec/settings.php:294
3259
- #: app/features/mec/settings.php:358 app/features/mec/settings.php:368
 
3260
  msgid "Minimal"
3261
  msgstr "Minimal"
3262
 
3263
- #: app/features/mec/meta_boxes/display_options.php:42
3264
- #: app/features/mec/meta_boxes/display_options.php:220
3265
- #: app/features/mec/meta_boxes/display_options.php:593
3266
- #: app/features/mec/meta_boxes/display_options.php:645
3267
- #: app/features/mec/meta_boxes/display_options.php:807
3268
- #: app/features/mec/meta_boxes/display_options.php:1006
3269
- #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3270
- #: app/features/mec/settings.php:285 app/features/mec/settings.php:295
3271
- #: app/features/mec/settings.php:335 app/features/mec/settings.php:348
3272
- #: app/features/mec/settings.php:359 app/features/mec/settings.php:369
 
 
 
3273
  msgid "Modern"
3274
  msgstr "Moderne"
3275
 
3276
- #: app/features/mec/meta_boxes/display_options.php:43
3277
- #: app/features/mec/settings.php:286 app/features/mec/settings.php:360
 
3278
  msgid "Standard"
3279
  msgstr "Standard"
3280
 
3281
- #: app/features/mec/meta_boxes/display_options.php:44
3282
- #: app/features/mec/settings.php:287 app/features/mec/settings.php:361
 
3283
  msgid "Accordion"
3284
  msgstr "Accordéon"
3285
 
3286
- #: app/features/mec/meta_boxes/display_options.php:50
3287
- #: app/features/mec/meta_boxes/display_options.php:230
3288
- #: app/features/mec/meta_boxes/display_options.php:408
3289
- #: app/features/mec/meta_boxes/display_options.php:700
3290
- #: app/features/mec/meta_boxes/display_options.php:733
3291
- #: app/features/mec/meta_boxes/display_options.php:914
3292
- #: app/features/mec/meta_boxes/display_options.php:1162
3293
- #: app/features/mec/meta_boxes/display_options.php:1250
3294
- #: app/features/mec/meta_boxes/display_options.php:1342
3295
- msgid "Today"
3296
- msgstr "Aujourd’hui"
3297
-
3298
  #: app/features/mec/meta_boxes/display_options.php:51
3299
  #: app/features/mec/meta_boxes/display_options.php:231
3300
  #: app/features/mec/meta_boxes/display_options.php:409
@@ -3304,26 +3176,21 @@ msgstr "Aujourd’hui"
3304
  #: app/features/mec/meta_boxes/display_options.php:1163
3305
  #: app/features/mec/meta_boxes/display_options.php:1251
3306
  #: app/features/mec/meta_boxes/display_options.php:1343
3307
- msgid "Tomorrow"
3308
- msgstr "Demain"
3309
 
3310
  #: app/features/mec/meta_boxes/display_options.php:52
3311
  #: app/features/mec/meta_boxes/display_options.php:232
3312
  #: app/features/mec/meta_boxes/display_options.php:410
3313
- #: app/features/mec/meta_boxes/display_options.php:476
3314
- #: app/features/mec/meta_boxes/display_options.php:653
3315
  #: app/features/mec/meta_boxes/display_options.php:702
3316
  #: app/features/mec/meta_boxes/display_options.php:735
3317
- #: app/features/mec/meta_boxes/display_options.php:770
3318
- #: app/features/mec/meta_boxes/display_options.php:817
3319
  #: app/features/mec/meta_boxes/display_options.php:916
3320
  #: app/features/mec/meta_boxes/display_options.php:1164
3321
  #: app/features/mec/meta_boxes/display_options.php:1252
3322
  #: app/features/mec/meta_boxes/display_options.php:1344
3323
- #: app/features/mec/meta_boxes/display_options.php:1409
3324
- msgid "Start of Current Month"
3325
- msgstr "Début du mois en cours"
3326
-
3327
  #: app/features/mec/meta_boxes/display_options.php:53
3328
  #: app/features/mec/meta_boxes/display_options.php:233
3329
  #: app/features/mec/meta_boxes/display_options.php:411
@@ -3338,14 +3205,13 @@ msgstr "Début du mois en cours"
3338
  #: app/features/mec/meta_boxes/display_options.php:1253
3339
  #: app/features/mec/meta_boxes/display_options.php:1345
3340
  #: app/features/mec/meta_boxes/display_options.php:1410
3341
- msgid "Start of Next Month"
3342
- msgstr "Début du mois prochain"
3343
 
3344
  #: app/features/mec/meta_boxes/display_options.php:54
3345
  #: app/features/mec/meta_boxes/display_options.php:234
3346
  #: app/features/mec/meta_boxes/display_options.php:412
3347
  #: app/features/mec/meta_boxes/display_options.php:478
3348
- #: app/features/mec/meta_boxes/display_options.php:601
3349
  #: app/features/mec/meta_boxes/display_options.php:655
3350
  #: app/features/mec/meta_boxes/display_options.php:704
3351
  #: app/features/mec/meta_boxes/display_options.php:737
@@ -3356,650 +3222,679 @@ msgstr "Début du mois prochain"
3356
  #: app/features/mec/meta_boxes/display_options.php:1254
3357
  #: app/features/mec/meta_boxes/display_options.php:1346
3358
  #: app/features/mec/meta_boxes/display_options.php:1411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-02-05 11:24+0330\n"
5
+ "PO-Revision-Date: 2020-02-05 11:28+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
30
  msgid "Content"
31
  msgstr "Contenu"
32
 
33
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:439
34
+ #: app/features/mec.php:470 app/features/mec.php:500
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
41
 
42
  #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:15
43
  #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:25
 
 
44
  msgid "MEC Shortcodes"
45
+ msgstr "Shortcodes MEC"
46
 
47
  #: app/addons/divi/includes/modules/MECShortcodes/MECShortcodes.php:28
 
 
48
  msgid "Input your desired shortcode_id here."
49
  msgstr "Insérez les étiquettes souhaitées séparés par des virgules."
50
 
51
  #: app/addons/elementor/shortcode.php:34
 
 
52
  msgid "Modern Events Calendar (MEC)"
53
+ msgstr "Modern Events Calendar (MEC)"
54
 
55
  #: app/addons/elementor/shortcode.php:78
 
 
56
  msgid "General"
57
  msgstr "Options générales"
58
 
59
  #: app/addons/elementor/shortcode.php:87
 
 
60
  msgid "Select Type"
61
+ msgstr "Sélectionner"
62
 
63
  #: app/features/colors.php:50 app/features/fes/form.php:807
64
+ #: app/features/mec/settings.php:688
65
  msgid "Event Color"
66
  msgstr "Couleur de l'événement"
67
 
68
+ #: app/features/contextual.php:55 app/features/mec.php:415
69
  #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
70
+ #: app/features/mec/support.php:20 app/features/popup/shortcode.php:37
71
+ #: app/libraries/main.php:594
72
  msgid "Settings"
73
  msgstr "Paramètres"
74
 
168
  msgid "General Options"
169
  msgstr "Options générales"
170
 
171
+ #: app/features/contextual.php:139 app/features/mec/settings.php:437
172
  #: app/libraries/main.php:533
173
  msgid "Slugs/Permalinks"
174
  msgstr "Permaliens/Ancres"
177
  msgid "Event Details/Single Event Page"
178
  msgstr "Détail de l'événement/Page de l'événement"
179
 
180
+ #: app/features/contextual.php:166 app/features/mec/settings.php:469
181
  #: app/libraries/main.php:534
182
  msgid "Currency Options"
183
  msgstr "Options de devise"
187
  msgid "Google Maps Options"
188
  msgstr "Option du plugin Google Maps"
189
 
190
+ #: app/features/contextual.php:244 app/features/mec/settings.php:526
191
  #: app/libraries/main.php:535
192
  msgid "Google Recaptcha Options"
193
  msgstr "Options de Google reCAPTCHA"
206
  msgid "Next Event Module"
207
  msgstr "Module événement suivant"
208
 
209
+ #: app/features/contextual.php:286 app/features/mec/settings.php:562
210
  #: app/libraries/main.php:536
211
  msgid "Frontend Event Submission"
212
  msgstr "Réglages du formulaire de création d’événements"
233
  msgid "BuddyPress Integration"
234
  msgstr "Intégration BuddyPress"
235
 
236
+ #: app/features/contextual.php:334 app/features/mec/settings.php:855
237
  #: app/libraries/main.php:539
238
  msgid "Mailchimp Integration"
239
  msgstr "Intégration de Mailchimp"
250
  msgstr "Évenements"
251
 
252
  #: app/features/events.php:158 app/features/fes.php:223
253
+ #: app/features/mec/meta_boxes/display_options.php:1047
254
+ #: app/features/mec/meta_boxes/display_options.php:1103
255
+ #: app/features/mec/meta_boxes/display_options.php:1138
256
  #: app/features/profile/profile.php:50 app/skins/daily_view/tpl.php:80
257
  #: app/skins/monthly_view/tpl.php:71 app/skins/tile/tpl.php:70
258
  #: app/skins/yearly_view/tpl.php:69
259
  msgid "Event"
260
  msgstr "Événement"
261
 
262
+ #: app/features/events.php:159 app/features/mec.php:401
263
  msgid "Add Event"
264
  msgstr "Ajouter un événement"
265
 
289
  msgstr "Aucun événement trouvé dans la corbeille !"
290
 
291
  #: app/features/events.php:182 app/features/events.php:3320
292
+ #: app/features/mec/meta_boxes/display_options.php:958
293
  #: app/features/mec/meta_boxes/search_form.php:31
294
  #: app/features/mec/meta_boxes/search_form.php:93
295
  #: app/features/mec/meta_boxes/search_form.php:155
301
  #: app/features/mec/meta_boxes/search_form.php:514
302
  #: app/features/mec/meta_boxes/search_form.php:575
303
  #: app/features/mec/meta_boxes/search_form.php:672
304
+ #: app/features/mec/settings.php:808 app/features/mec/single.php:204
305
+ #: app/features/search.php:68 app/libraries/main.php:5282
306
  #: app/libraries/skins.php:858 app/skins/single.php:566
307
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
308
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
311
  msgstr "Catégorie"
312
 
313
  #: app/features/events.php:183 app/features/events.php:3275
314
+ #: app/features/fes/form.php:757 app/features/mec.php:403
315
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5281
316
  msgid "Categories"
317
  msgstr "Catégories"
318
 
361
  #: app/features/events.php:199 app/features/labels.php:77
362
  #: app/features/locations.php:75 app/features/organizers.php:75
363
  #: app/features/speakers.php:78
364
+ #, php-format
365
  msgid "Popular %s"
366
+ msgstr "%s populaire (s)"
367
 
368
  #: app/features/events.php:200 app/features/labels.php:78
369
  #: app/features/locations.php:76 app/features/organizers.php:76
370
  #: app/features/speakers.php:79
371
+ #, php-format
372
  msgid "Search %s"
373
  msgstr "Rechercher %s"
374
 
385
  msgstr "Détails"
386
 
387
  #: app/features/events.php:329
 
 
388
  msgid "FES Details"
389
  msgstr "Détails"
390
 
391
  #: app/features/events.php:330
 
 
392
  msgid "Date And Time"
393
  msgstr "Date et heure"
394
 
397
  msgstr "Événement récurrent"
398
 
399
  #: app/features/events.php:333 app/features/events.php:1286
400
+ #: app/features/mec/settings.php:718 app/skins/single.php:947
401
  msgid "Hourly Schedule"
402
  msgstr "Programme"
403
 
404
  #: app/features/events.php:334
 
 
405
  msgid "Location/Venue"
406
  msgstr "Lieu"
407
 
408
  #: app/features/events.php:335
 
 
409
  msgid "Links"
410
  msgstr "Lien"
411
 
412
  #: app/features/events.php:336 app/features/events.php:3322
413
  #: app/features/events.php:3513 app/features/events.php:3555
414
  #: app/features/ix.php:3510 app/features/ix.php:3551
415
+ #: app/features/mec/meta_boxes/display_options.php:961
416
  #: app/features/mec/meta_boxes/search_form.php:45
417
  #: app/features/mec/meta_boxes/search_form.php:107
418
  #: app/features/mec/meta_boxes/search_form.php:169
424
  #: app/features/mec/meta_boxes/search_form.php:528
425
  #: app/features/mec/meta_boxes/search_form.php:589
426
  #: app/features/mec/meta_boxes/search_form.php:686
427
+ #: app/features/mec/settings.php:820 app/features/mec/single.php:208
428
  #: app/features/organizers.php:58 app/features/organizers.php:204
429
  #: app/features/organizers.php:260 app/features/organizers.php:262
430
+ #: app/features/organizers.php:271 app/features/search.php:78
431
+ #: app/libraries/main.php:5288 app/libraries/skins.php:910
432
  #: app/skins/single.php:812 app/skins/single/default.php:217
433
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
434
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
436
  msgstr "Organisateur"
437
 
438
  #: app/features/events.php:337 app/features/events.php:1172
439
+ #: app/features/fes/form.php:730 app/libraries/main.php:5315
440
  #: app/skins/single.php:589 app/skins/single/default.php:126
441
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
442
  #: app/skins/single/modern.php:208
455
  #: app/features/events.php:3802 app/features/fes.php:223
456
  #: app/features/fes/form.php:689 app/features/labels.php:178
457
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
458
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1120
459
  #: app/modules/booking/steps/form.php:37
460
  msgid "Name"
461
  msgstr "Nom"
466
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
467
  #: app/features/organizers.php:111 app/features/organizers.php:152
468
  #: app/features/profile/profile.php:183 app/features/speakers.php:127
469
+ #: app/features/speakers.php:196 app/libraries/main.php:1540
470
+ #: app/libraries/main.php:1609 app/libraries/main.php:2827
471
+ #: app/libraries/notifications.php:1121 app/modules/booking/steps/form.php:46
472
  #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
473
  #: app/skins/single.php:884 app/skins/single/default.php:234
474
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
486
  #: app/features/fes/form.php:251 app/features/ix.php:3510
487
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
488
  #: app/features/mec/dashboard.php:401
489
+ #: app/features/mec/meta_boxes/display_options.php:49
490
+ #: app/features/mec/meta_boxes/display_options.php:229
491
+ #: app/features/mec/meta_boxes/display_options.php:407
492
+ #: app/features/mec/meta_boxes/display_options.php:475
493
+ #: app/features/mec/meta_boxes/display_options.php:598
494
+ #: app/features/mec/meta_boxes/display_options.php:652
495
+ #: app/features/mec/meta_boxes/display_options.php:699
496
+ #: app/features/mec/meta_boxes/display_options.php:732
497
+ #: app/features/mec/meta_boxes/display_options.php:767
498
+ #: app/features/mec/meta_boxes/display_options.php:814
499
+ #: app/features/mec/meta_boxes/display_options.php:913
500
+ #: app/features/mec/meta_boxes/display_options.php:1161
501
+ #: app/features/mec/meta_boxes/display_options.php:1249
502
+ #: app/features/mec/meta_boxes/display_options.php:1341
503
+ #: app/features/mec/meta_boxes/display_options.php:1408
504
  msgid "Start Date"
505
  msgstr "Date de début"
506
 
545
  msgstr "Commentaire sur l'horaire"
546
 
547
  #: app/features/events.php:712 app/features/fes/form.php:337
 
 
 
 
548
  msgid ""
549
  "It shows next to event time on single event page. You can insert Timezone "
550
  "etc. in this field."
551
  msgstr ""
552
  "Ce commentaire s'affiche à droite de l'heure de l'événement. Vous pouvez "
553
+ "insérer y insérer un fuseau horaire."
554
 
555
  #: app/features/events.php:714 app/features/events.php:835
556
  #: app/features/events.php:1135 app/features/events.php:1212
567
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:393
568
  #: app/features/mec/booking.php:415 app/features/mec/booking.php:425
569
  #: app/features/mec/dashboard.php:71
570
+ #: app/features/mec/meta_boxes/display_options.php:80
571
+ #: app/features/mec/meta_boxes/display_options.php:93
572
+ #: app/features/mec/meta_boxes/display_options.php:106
573
+ #: app/features/mec/meta_boxes/display_options.php:117
574
+ #: app/features/mec/meta_boxes/display_options.php:129
575
+ #: app/features/mec/meta_boxes/display_options.php:260
576
+ #: app/features/mec/meta_boxes/display_options.php:272
577
+ #: app/features/mec/meta_boxes/display_options.php:284
578
+ #: app/features/mec/meta_boxes/display_options.php:297
579
+ #: app/features/mec/meta_boxes/display_options.php:308
580
+ #: app/features/mec/meta_boxes/display_options.php:321
581
+ #: app/features/mec/meta_boxes/display_options.php:332
582
+ #: app/features/mec/meta_boxes/display_options.php:439
583
+ #: app/features/mec/meta_boxes/display_options.php:615
584
+ #: app/features/mec/meta_boxes/display_options.php:945
585
+ #: app/features/mec/meta_boxes/display_options.php:1018
586
+ #: app/features/mec/meta_boxes/display_options.php:1030
587
+ #: app/features/mec/meta_boxes/display_options.php:1041
588
+ #: app/features/mec/meta_boxes/display_options.php:1073
589
+ #: app/features/mec/meta_boxes/display_options.php:1084
590
+ #: app/features/mec/meta_boxes/display_options.php:1097
591
+ #: app/features/mec/meta_boxes/display_options.php:1132
592
+ #: app/features/mec/meta_boxes/display_options.php:1181
593
+ #: app/features/mec/meta_boxes/display_options.php:1192
594
+ #: app/features/mec/meta_boxes/display_options.php:1203
595
+ #: app/features/mec/meta_boxes/display_options.php:1269
596
+ #: app/features/mec/meta_boxes/display_options.php:1282
597
+ #: app/features/mec/meta_boxes/display_options.php:1295
598
+ #: app/features/mec/meta_boxes/display_options.php:1308
599
+ #: app/features/mec/meta_boxes/display_options.php:1321
600
+ #: app/features/mec/meta_boxes/display_options.php:1372
601
+ #: app/features/mec/meta_boxes/display_options.php:1425
602
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
603
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
604
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
612
  #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
613
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
614
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
615
+ #: app/features/mec/settings.php:214 app/features/mec/settings.php:241
616
+ #: app/features/mec/settings.php:318 app/features/mec/settings.php:392
617
+ #: app/features/mec/settings.php:409 app/features/mec/settings.php:426
618
+ #: app/features/mec/settings.php:445 app/features/mec/settings.php:459
619
+ #: app/features/mec/settings.php:487 app/features/mec/settings.php:574
620
+ #: app/features/mec/settings.php:747 app/features/mec/settings.php:763
621
+ #: app/features/mec/settings.php:870 app/features/mec/settings.php:883
622
+ #: app/features/mec/settings.php:899 app/features/mec/single.php:42
623
  #: app/features/mec/single.php:58 app/features/mec/single.php:77
624
  #: app/features/mec/single.php:94 app/features/mec/single.php:110
625
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
632
  msgstr "Lire la suite"
633
 
634
  #: app/features/events.php:722
 
 
635
  msgid "Repeating"
636
  msgstr "Répetition"
637
 
638
  #: app/features/events.php:731
 
 
639
  msgid "Event Repeating (Recurring events)"
640
  msgstr "Événement récurrent"
641
 
687
  msgstr "Choisir les dates"
688
 
689
  #: app/features/events.php:799 app/features/fes/form.php:357
 
 
690
  msgid "Advanced"
691
  msgstr "Méthode avancée"
692
 
713
  #: app/features/events.php:827 app/features/events.php:1901
714
  #: app/features/events.php:1929 app/features/events.php:2109
715
  #: app/features/fes/form.php:378
 
 
716
  msgid "End"
717
+ msgstr "FIn"
718
 
719
  #: app/features/events.php:829 app/features/events.php:1206
720
  #: app/features/events.php:1317 app/features/events.php:1422
725
  msgstr "Ajouter"
726
 
727
  #: app/features/events.php:832
 
 
728
  msgid "Custom Days Repeating"
729
+ msgstr "Choisir les dates de récurence"
730
 
731
  #: app/features/events.php:833
732
  msgid ""
742
  msgstr "Prénom"
743
 
744
  #: app/features/events.php:911 app/features/fes/form.php:447
 
 
745
  msgid "Second"
746
  msgstr "seconde"
747
 
790
  "répétitions."
791
 
792
  #: app/features/events.php:1148 app/features/fes/form.php:654
 
 
793
  msgid "Show only one occurrence of this event"
794
+ msgstr "Afficher uniquement une occurence pour cet événement"
795
 
796
  #: app/features/events.php:1168 app/features/events.php:3513
797
  #: app/features/events.php:3555 app/features/fes/form.php:727
798
  #: app/features/ix.php:3510 app/features/ix.php:3551
799
+ #: app/features/mec/settings.php:664 app/libraries/main.php:5314
800
  #: app/widgets/single.php:103
801
  msgid "Event Cost"
802
  msgstr "Tarif de l'événement"
803
 
804
  #: app/features/events.php:1193
 
 
805
  msgid "Exceptional Days (Exclude Dates)"
806
+ msgstr "Journées Exceptionnelles (exclusion de dates)"
807
 
808
  #: app/features/events.php:1199 app/features/events.php:1209
809
  msgid "Exclude certain days"
811
 
812
  #: app/features/events.php:1204 app/features/events.php:2541
813
  #: app/features/fes.php:223 app/features/mec/booking.php:491
814
+ #: app/features/profile/profile.php:53 app/libraries/main.php:2243
815
+ #: app/libraries/main.php:2885 app/modules/booking/steps/tickets.php:22
816
  #: app/modules/next-event/details.php:93 app/skins/single.php:648
817
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
818
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
832
 
833
  #: app/features/events.php:1290
834
  msgid "Add Day"
835
+ msgstr "Ajouter un jour"
836
 
837
  #: app/features/events.php:1291
838
  msgid ""
839
  "Add new days for schedule. For example if your event is multiple days, you "
840
  "can add a different schedule for each day!"
841
  msgstr ""
842
+ "Ajouter des programmes. Par exemple, si votre événement a de multiples "
843
+ "récurrences, vous pouvez ajouter différents programmes pour chaque jours!"
844
 
845
  #: app/features/events.php:1298
846
  #, php-format
847
  msgid "Day %s"
848
+ msgstr "%s jour(s)"
849
 
850
  #: app/features/events.php:1302 app/features/events.php:1341
851
  #: app/features/events.php:1376 app/features/events.php:1408
866
  #: app/features/events.php:2357 app/features/events.php:2399
867
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
868
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
869
+ #: app/libraries/main.php:2746 app/libraries/main.php:2776
870
+ #: app/libraries/main.php:2805 app/libraries/main.php:2835
871
+ #: app/libraries/main.php:2864 app/libraries/main.php:2893
872
+ #: app/libraries/main.php:2922 app/libraries/main.php:2951
873
+ #: app/libraries/main.php:2973 app/libraries/main.php:3004
874
+ #: app/libraries/main.php:3048 app/libraries/main.php:3092
875
+ #: app/libraries/main.php:3139 app/libraries/main.php:3178
876
  msgid "Remove"
877
  msgstr "Supprimer"
878
 
898
 
899
  #: app/features/events.php:1351 app/features/events.php:1384
900
  #: app/features/events.php:1445 app/features/fes/form.php:851
901
+ #: app/features/mec.php:411 app/features/mec/modules.php:52
902
+ #: app/features/mec/settings.php:712 app/features/speakers.php:62
903
+ #: app/libraries/main.php:565 app/libraries/main.php:5289
904
  #: app/modules/speakers/details.php:18
905
  msgid "Speakers"
906
+ msgstr "Orateurs"
907
 
908
  #: app/features/events.php:1404 app/features/events.php:1412
 
 
909
  msgid "New Day"
910
+ msgstr "Jour suivant"
911
 
912
  #: app/features/events.php:1476 app/features/fes/form.php:704
913
+ #: app/features/mec/settings.php:658
914
  msgid "Event Links"
915
  msgstr "Liens de l'évenements"
916
 
917
  #: app/features/events.php:1479 app/features/events.php:1485
918
+ #: app/features/fes/form.php:706 app/libraries/main.php:5312
919
  msgid "Event Link"
920
  msgstr "Lien de l'événement"
921
 
925
  msgstr "eg. http://yoursite.com/your-event"
926
 
927
  #: app/features/events.php:1486
 
 
 
 
928
  msgid ""
929
  "If you fill it, it will be replaced instead of default event page link. "
930
  "Insert full link including http(s):// - Also, if you use advertising URL, "
931
  "can use URL Shortener"
932
+ msgstr ""
933
 
934
  #: app/features/events.php:1488
935
  msgid "URL Shortener"
936
  msgstr ""
937
 
938
  #: app/features/events.php:1495 app/features/events.php:1508
939
+ #: app/features/fes/form.php:711 app/libraries/main.php:5313
940
  #: app/skins/single.php:673 app/skins/single/default.php:140
941
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
942
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
969
  #: app/features/events.php:1596 app/features/events.php:1849
970
  #: app/features/events.php:2064 app/modules/booking/default.php:85
971
  #: app/modules/booking/steps/tickets.php:40
972
+ #: app/skins/available_spot/tpl.php:158
973
  msgid "Unlimited"
974
  msgstr "Illimité"
975
 
990
  msgstr "100"
991
 
992
  #: app/features/events.php:1617
 
 
993
  msgid "Total user booking limits"
994
  msgstr "Nombre limite de réservation"
995
 
1003
  msgstr ""
1004
 
1005
  #: app/features/events.php:1653 app/libraries/book.php:60
1006
+ #: app/libraries/main.php:5317 app/modules/booking/steps/tickets.php:40
1007
  msgid "Tickets"
1008
  msgstr "Billets"
1009
 
1015
  msgstr ""
1016
 
1017
  #: app/features/events.php:1661
 
 
1018
  msgid "Add Ticket"
1019
+ msgstr "Ajouter un ticket"
1020
 
1021
  #: app/features/events.php:1675 app/features/events.php:1951
1022
  msgid "Ticket Name"
1060
 
1061
  #: app/features/events.php:1836 app/features/events.php:2058
1062
  msgid "Available Tickets"
1063
+ msgstr "Ticket disponibles"
1064
 
1065
  #: app/features/events.php:1853 app/features/events.php:2068
 
 
1066
  msgid "Minimum Ticket e.g. 3"
1067
+ msgstr "Nombre de ticket minimum (ex 3)"
1068
 
1069
  #: app/features/events.php:1856 app/features/events.php:2071
 
 
1070
  msgid "MinimumTicket"
1071
+ msgstr ""
1072
 
1073
  #: app/features/events.php:1858 app/features/events.php:2073
1074
  msgid "Set a number for the minimum ticket reservation"
1079
  msgstr ""
1080
 
1081
  #: app/features/events.php:1868 app/features/events.php:2083
 
 
1082
  msgid "Day"
1083
+ msgstr "Jour"
1084
 
1085
  #: app/features/events.php:1869 app/features/events.php:2084
1086
  msgid "Hour"
1087
+ msgstr "Heure(s)"
1088
 
1089
  #: app/features/events.php:1871 app/features/events.php:2086
1090
  #, php-format
1091
  msgid "Stop selling ticket %s before event start."
1092
+ msgstr "Arrêter de vendre %s avant l’événement."
1093
 
1094
  #: app/features/events.php:1878 app/features/events.php:2092
 
 
1095
  msgid "Price per Date"
1096
+ msgstr "Prix par date"
1097
 
1098
  #: app/features/events.php:1909 app/features/events.php:1935
1099
  #: app/features/events.php:2113 app/features/labels.php:60
1100
+ #: app/features/mec/meta_boxes/display_options.php:959
1101
  #: app/features/mec/meta_boxes/search_form.php:66
1102
  #: app/features/mec/meta_boxes/search_form.php:128
1103
  #: app/features/mec/meta_boxes/search_form.php:190
1109
  #: app/features/mec/meta_boxes/search_form.php:549
1110
  #: app/features/mec/meta_boxes/search_form.php:610
1111
  #: app/features/mec/meta_boxes/search_form.php:707
1112
+ #: app/features/mec/settings.php:840 app/features/mec/single.php:222
1113
  #: app/libraries/skins.php:988
1114
  msgid "Label"
1115
  msgstr "Label"
1154
  msgid "Amount (Per Booking)"
1155
  msgstr "Montant (par réservation)"
1156
 
1157
+ #: app/features/events.php:2283 app/features/mec/settings.php:736
1158
  msgid "Ticket Variations / Options"
1159
+ msgstr "Variations de tickets / options"
1160
 
1161
  #: app/features/events.php:2333 app/features/events.php:2378
1162
  #: app/features/mec/booking.php:383 app/features/mec/booking.php:415
 
 
1163
  msgid "Option Price"
1164
+ msgstr "Option de prix"
1165
 
1166
  #: app/features/events.php:2343 app/features/events.php:2347
1167
  #: app/features/events.php:2387 app/features/events.php:2390
1168
  #: app/features/mec/booking.php:389 app/features/mec/booking.php:392
1169
  #: app/features/mec/booking.php:421 app/features/mec/booking.php:424
 
 
1170
  msgid "Maximum Per Ticket"
1171
+ msgstr "Maximum par Billet"
1172
 
1173
  #: app/features/events.php:2348 app/features/events.php:2391
1174
  #: app/features/mec/booking.php:393 app/features/mec/booking.php:425
1176
  msgstr ""
1177
 
1178
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1179
+ #: app/libraries/main.php:2768
 
 
1180
  msgid "MEC Name"
1181
  msgstr "Nom"
1182
 
1183
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1184
+ #: app/libraries/main.php:2797
 
 
1185
  msgid "MEC Email"
1186
  msgstr "Email"
1187
 
1188
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1189
+ #: app/libraries/main.php:2738
1190
  msgid "Text"
1191
  msgstr "Texte"
1192
 
1193
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1194
  #: app/features/organizers.php:103 app/features/organizers.php:148
1195
  #: app/features/speakers.php:119 app/features/speakers.php:192
1196
+ #: app/features/speakers.php:271 app/libraries/main.php:2914
1197
  msgid "Tel"
1198
  msgstr "Téléphone"
1199
 
1200
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1201
+ #: app/libraries/main.php:2856
1202
  msgid "File"
1203
+ msgstr "Fichier"
1204
 
1205
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1206
+ #: app/libraries/main.php:2943
1207
  msgid "Textarea"
1208
  msgstr "Zone de texte"
1209
 
1210
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1211
+ #: app/libraries/main.php:2996
1212
  msgid "Checkboxes"
1213
  msgstr "Boîtes à cocher"
1214
 
1215
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1216
+ #: app/libraries/main.php:3040
1217
  msgid "Radio Buttons"
1218
  msgstr "Boutons Radio"
1219
 
1293
  #: app/features/mec/meta_boxes/search_form.php:696
1294
  #: app/features/mec/meta_boxes/search_form.php:703
1295
  #: app/features/mec/meta_boxes/search_form.php:710
1296
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3084
1297
  msgid "Dropdown"
1298
  msgstr "Menu déroulant"
1299
 
1300
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1301
+ #: app/libraries/main.php:3131
1302
  msgid "Agreement"
1303
+ msgstr "Accord"
1304
 
1305
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1306
+ #: app/libraries/main.php:2972
1307
  msgid "Paragraph"
1308
  msgstr "Paragraphe"
1309
 
1326
  msgstr "organisateurs"
1327
 
1328
  #: app/features/events.php:3291
 
 
1329
  msgid "Attendees List"
1330
+ msgstr "Liste des participants"
1331
 
1332
  #: app/features/events.php:3321 app/features/events.php:3513
1333
  #: app/features/events.php:3555 app/features/ix.php:3510
1334
  #: app/features/ix.php:3551 app/features/locations.php:58
1335
  #: app/features/locations.php:230 app/features/locations.php:287
1336
  #: app/features/locations.php:289 app/features/locations.php:298
1337
+ #: app/features/mec/meta_boxes/display_options.php:960
1338
  #: app/features/mec/meta_boxes/search_form.php:38
1339
  #: app/features/mec/meta_boxes/search_form.php:100
1340
  #: app/features/mec/meta_boxes/search_form.php:162
1346
  #: app/features/mec/meta_boxes/search_form.php:521
1347
  #: app/features/mec/meta_boxes/search_form.php:582
1348
  #: app/features/mec/meta_boxes/search_form.php:679
1349
+ #: app/features/mec/settings.php:814 app/features/mec/single.php:212
1350
+ #: app/features/search.php:73 app/libraries/main.php:2237
1351
+ #: app/libraries/main.php:5286 app/libraries/skins.php:884
1352
  #: app/skins/single.php:493 app/skins/single.php:924
1353
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1354
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1407
  msgstr "%s Téléphone"
1408
 
1409
  #: app/features/events.php:3513 app/features/events.php:3555
1410
+ #, php-format
1411
  msgid "%s Email"
1412
  msgstr "%s mail"
1413
 
1414
  #: app/features/events.php:3808 app/features/fes.php:223
1415
+ #: app/features/profile/profile.php:186 app/libraries/main.php:2272
1416
+ #: app/libraries/main.php:5316
1417
  msgid "Ticket"
1418
  msgstr "Billets"
1419
 
1420
  #: app/features/events.php:3811 app/features/profile/profile.php:189
 
 
1421
  msgid "Variations"
1422
+ msgstr "Vérifications"
1423
 
1424
  #: app/features/events.php:3826 app/features/fes.php:303
1425
  msgid "Unknown"
1426
  msgstr "Inconnu"
1427
 
1428
  #: app/features/events.php:3859
 
 
1429
  msgid "No Attendees Found!"
1430
+ msgstr "Aucune réservation trouvée!"
1431
 
1432
  #: app/features/fes.php:87
1433
  #, php-format
1459
  msgid "The event removed!"
1460
  msgstr "Événement supprimé !"
1461
 
1462
+ #: app/features/fes.php:223 app/libraries/main.php:2249
1463
  msgid "Transaction ID"
1464
  msgstr "Numéro de transaction"
1465
 
1468
  msgstr ""
1469
 
1470
  #: app/features/fes.php:223
 
 
1471
  msgid "Ticket Variation"
1472
+ msgstr "Vérification de ticket"
1473
 
1474
  #: app/features/fes.php:223
1475
  msgid "Confirmation"
1500
  msgstr "Événement Publié."
1501
 
1502
  #: app/features/fes/form.php:169
 
 
1503
  msgid "Go back to events list"
1504
  msgstr "Retourner à la liste des évènements."
1505
 
1506
  #: app/features/fes/form.php:366
1507
+ #: app/features/mec/meta_boxes/display_options.php:844
1508
  #: app/libraries/main.php:410
1509
  msgid "Monday"
1510
  msgstr "Lundi"
1511
 
1512
  #: app/features/fes/form.php:367
1513
+ #: app/features/mec/meta_boxes/display_options.php:845
1514
  #: app/libraries/main.php:410
1515
  msgid "Tuesday"
1516
  msgstr "Mardi"
1517
 
1518
  #: app/features/fes/form.php:368
1519
+ #: app/features/mec/meta_boxes/display_options.php:846
1520
  #: app/libraries/main.php:410
1521
  msgid "Wednesday"
1522
  msgstr "Mercredi"
1523
 
1524
  #: app/features/fes/form.php:369
1525
+ #: app/features/mec/meta_boxes/display_options.php:847
1526
  #: app/libraries/main.php:410
1527
  msgid "Thursday"
1528
  msgstr "Jeudi"
1529
 
1530
  #: app/features/fes/form.php:370
1531
+ #: app/features/mec/meta_boxes/display_options.php:848
1532
  #: app/libraries/main.php:410
1533
  msgid "Friday"
1534
  msgstr "Vendredi"
1535
 
1536
  #: app/features/fes/form.php:371
1537
+ #: app/features/mec/meta_boxes/display_options.php:849
1538
  #: app/libraries/main.php:410
1539
  msgid "Saturday"
1540
  msgstr "Samedi"
1541
 
1542
  #: app/features/fes/form.php:372
1543
+ #: app/features/mec/meta_boxes/display_options.php:843
1544
  #: app/libraries/main.php:410
1545
  msgid "Sunday"
1546
  msgstr "Dimanche"
1571
  "Insert full link including http(s)://"
1572
  msgstr "Lien principal. Affiché sur la page de l'événement"
1573
 
1574
+ #: app/features/fes/form.php:744 app/features/mec/settings.php:670
1575
  msgid "Featured Image"
1576
  msgstr "Image Principale"
1577
 
1580
  msgstr "Supprimer l'image"
1581
 
1582
  #: app/features/fes/form.php:783 app/features/labels.php:61
1583
+ #: app/features/labels.php:221 app/features/mec.php:404
1584
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5283
1585
  #: app/skins/single.php:702 app/skins/single/default.php:155
1586
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1587
  #: app/skins/single/modern.php:223
1588
  msgid "Labels"
1589
  msgstr "Labels"
1590
 
1591
+ #: app/features/fes/form.php:829 app/features/mec.php:402
1592
  #: app/features/mec/meta_boxes/filter.php:147
1593
  msgid "Tags"
1594
  msgstr "Étiquettes"
1598
  msgstr "Insérez les étiquettes souhaitées séparés par des virgules."
1599
 
1600
  #: app/features/fes/form.php:853
 
 
1601
  msgid "Speakers Names"
1602
+ msgstr "Option d’orateur"
1603
 
1604
  #: app/features/fes/form.php:854
1605
  msgid "Separate names with commas Similar Justin, Cris"
1618
  msgstr "Ajouter"
1619
 
1620
  #: app/features/fes/list.php:80
 
 
1621
  msgid "Download Attendees"
1622
+ msgstr "Télécharger les participants"
1623
 
1624
  #: app/features/fes/list.php:84
 
 
1625
  msgid "Remove Event"
1626
+ msgstr "Supprimer l’événement"
1627
 
1628
  #: app/features/fes/list.php:175
1629
  #, php-format
1718
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
1719
 
1720
  #: app/features/ix.php:3859
 
 
1721
  msgid "Please insert your Facebook page's link."
1722
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
1723
 
1724
  #: app/features/ix.php:3868
 
 
 
 
1725
  msgid ""
1726
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1727
  "valid Facebook page link."
1753
  #: app/features/ix/import_g_calendar.php:13
1754
  #: app/features/ix/import_meetup.php:13 app/features/ix/sync.php:13
1755
  #: app/features/ix/thirdparty.php:13
 
 
1756
  msgid "Meetup Import"
1757
+ msgstr "Importer Meetup"
1758
 
1759
  #: app/features/ix/export.php:14 app/features/ix/export_g_calendar.php:18
1760
  #: app/features/ix/import.php:14 app/features/ix/import_f_calendar.php:14
1913
 
1914
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1915
  #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1916
+ #: app/features/mec/settings.php:1054 app/features/mec/single.php:269
1917
  msgid "Checking ..."
1918
  msgstr "Vérification..."
1919
 
1920
  #: app/features/ix/export_g_calendar.php:134
 
 
1921
  msgid "Exporting ..."
1922
+ msgstr "Eportation…"
1923
 
1924
  #: app/features/ix/import.php:21
1925
  msgid "Import MEC XML Feed"
1941
  msgstr ""
1942
 
1943
  #: app/features/ix/import.php:33
 
 
1944
  msgid "Import .ics File"
1945
+ msgstr "Importer le fichier.ics"
1946
 
1947
  #: app/features/ix/import.php:37
1948
  #, php-format
1958
  #: app/features/ix/import.php:46 app/features/mec/booking.php:91
1959
  #: app/features/mec/booking.php:264 app/features/mec/booking.php:282
1960
  #: app/features/mec/booking.php:359
1961
+ #: app/features/mec/meta_boxes/display_options.php:176
1962
+ #: app/features/mec/meta_boxes/display_options.php:368
1963
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1964
  #: app/features/mec/modules.php:228
1965
  #, php-format
1969
  #: app/features/ix/import.php:46 app/features/ix/sync.php:22
1970
  #: app/features/mec/booking.php:91 app/features/mec/booking.php:264
1971
  #: app/features/mec/booking.php:282 app/features/mec/booking.php:359
1972
+ #: app/features/mec/meta_boxes/display_options.php:176
1973
+ #: app/features/mec/meta_boxes/display_options.php:368
1974
+ #: app/features/mec/meta_boxes/display_options.php:396
1975
+ #: app/features/mec/meta_boxes/display_options.php:536
1976
+ #: app/features/mec/meta_boxes/display_options.php:587
1977
+ #: app/features/mec/meta_boxes/display_options.php:694
1978
+ #: app/features/mec/meta_boxes/display_options.php:801
1979
+ #: app/features/mec/meta_boxes/display_options.php:908
1980
+ #: app/features/mec/meta_boxes/display_options.php:1121
1981
  #: app/features/mec/modules.php:70 app/features/mec/modules.php:211
1982
  #: app/features/mec/modules.php:228
 
 
1983
  msgid "Pro version of Modern Events Calendar"
1984
+ msgstr "Modern Events Calendar version Pro"
1985
 
1986
  #: app/features/ix/import_f_calendar.php:22
1987
  msgid "The Facebook SDK requires PHP version 5.4 or higher."
1992
  msgstr "Importer depuis Calendrier Facebook"
1993
 
1994
  #: app/features/ix/import_f_calendar.php:27
 
 
1995
  msgid "Import all of your Facebook events into MEC."
1996
+ msgstr "Importer tous vos évènements Facebook dans l'extension M.E.C. ."
1997
 
1998
  #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
1999
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2001
  msgstr "Documentation"
2002
 
2003
  #: app/features/ix/import_f_calendar.php:29
 
 
2004
  msgid "Facebook Page Access Token"
2005
+ msgstr "Facebook Access Token"
2006
 
2007
  #: app/features/ix/import_f_calendar.php:35
2008
  msgid "Facebook Page Link"
2125
  msgstr ""
2126
 
2127
  #: app/features/ix/import_meetup.php:50
 
 
2128
  msgid "Meetup Events"
2129
+ msgstr "Événement Meetup"
2130
 
2131
  #: app/features/ix/import_meetup.php:51
2132
  #, fuzzy, php-format
2164
  msgstr "Synchronisation Automatique"
2165
 
2166
  #: app/features/ix/sync.php:22
2167
+ #: app/features/mec/meta_boxes/display_options.php:908
2168
  #, php-format
2169
  msgid "%s is required to use synchronization feature."
2170
  msgstr ""
2331
  msgstr "Sélectionner la couleur du label"
2332
 
2333
  #: app/features/labels.php:112 app/features/labels.php:139
2334
+ #: app/features/mec/meta_boxes/display_options.php:39
2335
+ #: app/features/mec/meta_boxes/display_options.php:216
2336
+ #: app/features/mec/meta_boxes/display_options.php:401
2337
+ #: app/features/mec/meta_boxes/display_options.php:592
2338
+ #: app/features/mec/meta_boxes/display_options.php:642
2339
+ #: app/features/mec/meta_boxes/display_options.php:806
2340
+ #: app/features/mec/meta_boxes/display_options.php:1003
2341
+ #: app/features/mec/meta_boxes/display_options.php:1060
2342
+ #: app/features/mec/meta_boxes/display_options.php:1152
2343
+ #: app/features/mec/meta_boxes/display_options.php:1239
2344
  msgid "Style"
2345
  msgstr "Style"
2346
 
2352
  #: app/skins/agenda/render.php:39 app/skins/available_spot/tpl.php:39
2353
  #: app/skins/carousel/render.php:45 app/skins/countdown/tpl.php:28
2354
  #: app/skins/cover/tpl.php:29 app/skins/daily_view/render.php:25
2355
+ #: app/skins/grid/render.php:54 app/skins/list/render.php:38
2356
  #: app/skins/masonry/render.php:29 app/skins/monthly_view/calendar.php:86
2357
  #: app/skins/monthly_view/calendar_clean.php:86
2358
  #: app/skins/monthly_view/calendar_novel.php:77 app/skins/slider/render.php:46
2359
+ #: app/skins/tile/render.php:37 app/skins/timeline/render.php:44
2360
  #: app/skins/timetable/render.php:35 app/skins/timetable/render.php:144
2361
  #: app/skins/weekly_view/render.php:33 app/skins/yearly_view/render.php:48
 
 
2362
  msgid "Featured"
2363
+ msgstr "En avant"
2364
 
2365
  #: app/features/labels.php:118 app/features/labels.php:143
2366
+ #: app/libraries/main.php:5532 app/skins/agenda/render.php:43
2367
+ #: app/skins/available_spot/tpl.php:40 app/skins/carousel/render.php:46
2368
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2369
+ #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:55
2370
+ #: app/skins/list/render.php:39 app/skins/masonry/render.php:30
2371
  #: app/skins/monthly_view/calendar.php:90
2372
  #: app/skins/monthly_view/calendar_clean.php:90
2373
  #: app/skins/monthly_view/calendar_novel.php:78 app/skins/slider/render.php:47
2374
+ #: app/skins/tile/render.php:38 app/skins/timeline/render.php:48
2375
  #: app/skins/timetable/render.php:39 app/skins/timetable/render.php:145
2376
  #: app/skins/weekly_view/render.php:37 app/skins/yearly_view/render.php:52
2377
  msgid "Canceled"
2397
  msgid "Event %s"
2398
  msgstr "%s événement"
2399
 
2400
+ #: app/features/locations.php:59 app/features/mec.php:405
2401
  #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2402
+ #: app/libraries/main.php:5285
2403
  msgid "Locations"
2404
  msgstr "Lieux"
2405
 
2470
  msgid "eg. City Hall"
2471
  msgstr "Ex : La Source"
2472
 
2473
+ #: app/features/locations.php:310 app/features/mec/settings.php:700
2474
  #: app/widgets/single.php:115
2475
  msgid "Event Location"
2476
  msgstr "Lieu de l'événement"
2480
  msgstr "Ex : Grenoble (38)"
2481
 
2482
  #: app/features/locations.php:329
 
 
2483
  msgid "Latitude/Longitude"
2484
+ msgstr "Latitude/Longitude"
2485
 
2486
  #: app/features/locations.php:330
2487
  msgid ""
2504
  msgid "Don't show map in single event page"
2505
  msgstr "Ne pas afficher de carte pour cet événement"
2506
 
2507
+ #: app/features/locations.php:356 app/libraries/main.php:5319
 
 
2508
  msgid "Other Locations"
2509
+ msgstr "Autres lieux"
2510
 
2511
  #: app/features/locations.php:358
 
 
 
2512
  msgid ""
2513
  "You can select extra locations in addition to main location if you like."
2514
  msgstr ""
2515
+ "Vous pouvez sélectionner des lieux supplémentaires en plus du principal si "
2516
+ "vous le souhaitez."
2517
 
2518
  #: app/features/login.php:61 app/features/login.php:63
2519
  msgid "<strong>"
2520
  msgstr ""
2521
 
2522
+ #: app/features/mec.php:186
2523
  msgid ""
2524
  "Activation faild. Please check your purchase code or license type."
2525
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
2526
  msgstr ""
2527
 
2528
+ #: app/features/mec.php:186
2529
  msgid "Troubleshooting"
2530
  msgstr ""
2531
 
2532
+ #: app/features/mec.php:256 app/libraries/notifications.php:940
2533
  #, php-format
2534
  msgid "%s to %s"
2535
  msgstr "%s en %s"
2536
 
2537
+ #: app/features/mec.php:279
2538
  msgid ""
2539
  "Your options is not in JSON format. Please insert correct options in this "
2540
  "field and try again."
2541
  msgstr ""
2542
 
2543
+ #: app/features/mec.php:286
2544
  #, fuzzy
2545
  #| msgid "Your booking cannot verify!"
2546
  msgid "Your options field can not be empty!"
2547
  msgstr "Votre réservation ne peut pas être vérifiée!"
2548
 
2549
+ #: app/features/mec.php:292
2550
  #, fuzzy
2551
  #| msgid "Your booking successfully verified."
2552
  msgid "Your options imported successfuly."
2553
  msgstr "Votre réservation est vérifiée avec succès."
2554
 
2555
+ #: app/features/mec.php:385
 
 
2556
  msgid "MEC - Support"
2557
+ msgstr "MEC - Aide"
2558
 
2559
+ #: app/features/mec.php:385 app/features/mec/support-page.php:9
2560
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
2561
  msgid "Support"
2562
  msgstr "Aide"
2563
 
2564
+ #: app/features/mec.php:406 app/features/mec/dashboard.php:278
2565
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2566
+ #: app/libraries/main.php:5287
2567
  msgid "Organizers"
2568
  msgstr "Organisateurs"
2569
 
2570
+ #: app/features/mec.php:414 app/features/mec.php:438
2571
  #: app/features/mec/dashboard.php:264
2572
  msgid "Shortcodes"
2573
  msgstr "Shortcodes"
2574
 
2575
+ #: app/features/mec.php:415
2576
  msgid "MEC - Settings"
2577
  msgstr "Agenda - Paramètres"
2578
 
2579
+ #: app/features/mec.php:416
 
 
2580
  msgid "MEC - Addons"
2581
+ msgstr "MEC - Addons"
2582
 
2583
+ #: app/features/mec.php:416 app/features/mec/addons.php:22
2584
  msgid "Addons"
2585
  msgstr ""
2586
 
2587
+ #: app/features/mec.php:419
 
 
2588
  msgid "MEC - Report"
2589
+ msgstr "MEC - Rapports"
2590
 
2591
+ #: app/features/mec.php:419
 
 
2592
  msgid "Report"
2593
+ msgstr "Reporter"
2594
 
2595
+ #: app/features/mec.php:440
2596
  msgid "Add Shortcode"
2597
  msgstr "Ajouter un Shortcode"
2598
 
2599
+ #: app/features/mec.php:441
2600
  msgid "Add New Shortcode"
2601
  msgstr "Ajouter un nouveau Shortcode"
2602
 
2603
+ #: app/features/mec.php:442
2604
  msgid "No shortcodes found!"
2605
  msgstr "Aucun shortcode trouvé !"
2606
 
2607
+ #: app/features/mec.php:443
2608
  msgid "All Shortcodes"
2609
  msgstr "Tous les Shortcode"
2610
 
2611
+ #: app/features/mec.php:444
2612
  msgid "Edit shortcodes"
2613
  msgstr "Modifier les shortcodes"
2614
 
2615
+ #: app/features/mec.php:445
2616
  msgid "No shortcodes found in Trash!"
2617
  msgstr "Pas de shortcode dans la corbeille"
2618
 
2619
+ #: app/features/mec.php:498
2620
  msgid "Display Options"
2621
  msgstr "Options d'affichage"
2622
 
2623
+ #: app/features/mec.php:499
2624
  msgid "Filter Options"
2625
  msgstr "Options des filtres"
2626
 
2627
+ #: app/features/mec.php:501
2628
  msgid "Search Form"
2629
  msgstr "Formulaire de Recherche"
2630
 
2632
  msgid "Display content's images as Popup"
2633
  msgstr ""
2634
 
2635
+ #: app/features/mec.php:889 app/features/popup/shortcode.php:300
2636
  msgid "Single Event Display Method"
2637
  msgstr "Méthode d'affichage"
2638
 
2639
+ #: app/features/mec.php:894 app/features/popup/shortcode.php:304
2640
  msgid "Separate Window"
2641
  msgstr "Page séparé"
2642
 
2643
+ #: app/features/mec.php:895 app/features/popup/shortcode.php:308
2644
  msgid "Modal 1"
2645
  msgstr "Pop-up"
2646
 
2647
  #: app/features/mec/addons.php:26 app/features/mec/addons.php:68
2648
+ #: app/features/mec/dashboard.php:81 app/features/mec/go-pro.php:13
2649
+ #: app/features/mec/report.php:17 app/features/mec/support-page.php:21
2650
  msgid "Version"
2651
  msgstr "Version"
2652
 
2665
  #: app/features/mec/modules.php:23 app/features/mec/notifications.php:12
2666
  #: app/features/mec/settings.php:37 app/features/mec/single.php:15
2667
  #: app/features/mec/styling.php:35
 
2668
  msgid "Search..."
2669
+ msgstr "Recherche…"
2670
 
2671
  #: app/features/mec/booking.php:72 app/features/mec/booking.php:505
2672
  #: app/features/mec/booking.php:585 app/features/mec/booking.php:594
2681
  #: app/features/mec/notifications.php:828
2682
  #: app/features/mec/notifications.php:924
2683
  #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2684
+ #: app/features/mec/settings.php:1003 app/features/mec/settings.php:1013
2685
+ #: app/features/mec/settings.php:1071 app/features/mec/settings.php:1085
2686
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2687
  #: app/features/mec/single.php:244 app/features/mec/single.php:286
2688
  #: app/features/mec/single.php:300 app/features/mec/styles.php:11
2714
  msgstr "Par défaut: A-m-j"
2715
 
2716
  #: app/features/mec/booking.php:115
2717
+ #: app/features/mec/meta_boxes/display_options.php:135
2718
+ #: app/features/mec/meta_boxes/display_options.php:349
2719
+ #: app/features/mec/meta_boxes/display_options.php:445
2720
+ #: app/features/mec/meta_boxes/display_options.php:951
2721
+ #: app/features/mec/meta_boxes/display_options.php:1218
2722
+ #: app/features/mec/meta_boxes/display_options.php:1327
2723
+ #: app/features/mec/meta_boxes/display_options.php:1378
2724
  msgid "Limit"
2725
  msgstr "Nombre maximum"
2726
 
2727
  #: app/features/mec/booking.php:117
 
 
2728
  msgid "Default is empty"
2729
+ msgstr "Par défaut: vide"
2730
 
2731
  #: app/features/mec/booking.php:120
 
 
2732
  msgid "Booking Limit"
2733
+ msgstr "Limite de réservation"
2734
 
2735
  #: app/features/mec/booking.php:121
2736
  msgid ""
2737
  "Total tickets that a user can book. It is useful if you're providing free "
2738
  "tickets. Leave it empty for unlimited booking."
2739
  msgstr ""
2740
+ "Nombre de tickets max qu’un utilisateur peut réserver. Utile si vous "
2741
+ "fournissez des tickets gratuits. Laisser vide pour illimité."
2742
 
2743
  #: app/features/mec/booking.php:128
2744
  msgid "Maximum Dates"
2766
  msgstr ""
2767
 
2768
  #: app/features/mec/booking.php:147 app/features/mec/booking.php:157
2769
+ #: app/features/mec/settings.php:607 app/features/mec/settings.php:617
2770
  msgid "Thank You Page"
2771
  msgstr "Page de Remerciement"
2772
 
2779
  "pour désactiver."
2780
 
2781
  #: app/features/mec/booking.php:165 app/features/mec/booking.php:170
2782
+ #: app/features/mec/settings.php:627 app/features/mec/settings.php:632
 
 
2783
  msgid "Thank You Page Time Interval"
2784
+ msgstr "Intervalle de temps de la Page de Remerciement"
2785
 
2786
+ #: app/features/mec/booking.php:167 app/features/mec/settings.php:629
2787
  msgid "2000 mean 2 seconds"
2788
+ msgstr "2000 signifie 2 secondes"
2789
 
2790
+ #: app/features/mec/booking.php:171 app/features/mec/settings.php:633
2791
  msgid ""
2792
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
2793
  "2000 means 2 seconds."
2795
 
2796
  #: app/features/mec/booking.php:182
2797
  msgid "Enable Express Attendees Form"
2798
+ msgstr "Activer les réservation express"
2799
 
2800
  #: app/features/mec/booking.php:186
2801
  msgid "Attendees Form"
2808
  msgstr ""
2809
 
2810
  #: app/features/mec/booking.php:200
 
 
2811
  msgid "Enable Invoice"
2812
+ msgstr "Activer les factures"
2813
 
2814
  #: app/features/mec/booking.php:211
 
 
2815
  msgid "Enable Booking for Ongoing Events"
2816
+ msgstr "Activer le formulaire de réservation pour les prochains événements"
2817
 
2818
  #: app/features/mec/booking.php:216
2819
  msgid "Email verification"
2864
 
2865
  #: app/features/mec/booking.php:356 app/libraries/main.php:559
2866
  msgid "Ticket Variations & Options"
2867
+ msgstr "Variations de tickets & Options"
2868
 
2869
  #: app/features/mec/booking.php:364
 
 
2870
  msgid "Enable ticket options module"
2871
+ msgstr "Activer module de d’options de tickets"
2872
 
2873
  #: app/features/mec/booking.php:369
2874
  msgid "Add Variation / Option"
2875
+ msgstr "Ajouter une variation / option"
2876
 
2877
  #: app/features/mec/booking.php:572
 
 
2878
  msgid "Enable Organizer Payment Module"
2879
+ msgstr "Activer module de coupons"
2880
 
2881
  #: app/features/mec/booking.php:576
 
 
2882
  msgid "Organizer Payment"
2883
+ msgstr "Paiement de lorganisateur"
2884
 
2885
  #: app/features/mec/booking.php:577
2886
  msgid ""
2890
 
2891
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2892
  #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2893
+ #: app/features/mec/settings.php:1049 app/features/mec/single.php:264
2894
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2895
  msgid "Saved"
2896
  msgstr "Sauvegardé"
2897
 
2898
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2899
  #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2900
+ #: app/features/mec/settings.php:1050 app/features/mec/single.php:265
2901
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2902
  msgid "Settings Saved!"
2903
  msgstr ""
2905
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2906
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2907
  #: app/features/mec/notifications.php:905
2908
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1052
2909
+ #: app/features/mec/settings.php:1074 app/features/mec/single.php:267
2910
+ #: app/features/mec/single.php:289 app/libraries/main.php:5531
2911
  msgid "Verified"
2912
  msgstr "Vérifié"
2913
 
2914
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2915
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1076
2916
  #: app/features/mec/single.php:291
2917
  msgid "Please Refresh Page"
2918
  msgstr "Merci de Rafraichir la Page"
2947
  msgid "Update"
2948
  msgstr "Mettre à jour %s"
2949
 
2950
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
2951
  #, php-format
2952
  msgid ""
2953
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2955
  "Spots, etc you should upgrade to the Pro version."
2956
  msgstr ""
2957
 
2958
+ #: app/features/mec/dashboard.php:96 app/features/mec/go-pro.php:22
2959
  msgid "lite"
2960
  msgstr ""
2961
 
2962
+ #: app/features/mec/dashboard.php:99 app/features/mec/go-pro.php:25
2963
+ #: app/features/mec/support.php:126
2964
  msgid "GO PREMIUM"
2965
  msgstr ""
2966
 
2967
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
2968
  #, php-format
2969
  msgid ""
2970
  "Easily get a discount coupon by rating us on %s or following and reposting "
2971
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2972
  msgstr ""
2973
 
2974
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
2975
  #, fuzzy
2976
  #| msgid "Address"
2977
  msgid "WordPress"
2978
  msgstr "Adresse"
2979
 
2980
+ #: app/features/mec/dashboard.php:102 app/features/mec/go-pro.php:28
2981
  msgid "Copouns!"
2982
  msgstr ""
2983
 
3015
  "code."
3016
  msgstr ""
3017
 
3018
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:403
3019
  msgid "Upcoming Events"
3020
  msgstr "Prochains évenements"
3021
 
3064
  msgid "Change Log"
3065
  msgstr "Journal des modifications"
3066
 
3067
+ #: app/features/mec/go-pro.php:9
3068
+ msgid "Go Pro"
3069
+ msgstr ""
3070
+
3071
  #: app/features/mec/ie.php:21
3072
  msgid ""
3073
  "Insert your backup files below and press import to restore your site's "
3114
  "multilingue, nous vous recommandons plutôt de modifier les textes/phrases du "
3115
  "fichier de langue."
3116
 
3117
+ #: app/features/mec/meta_boxes/display_options.php:23
3118
  msgid "Skin"
3119
  msgstr "Apparence"
3120
 
3121
+ #: app/features/mec/meta_boxes/display_options.php:41
3122
+ #: app/features/mec/meta_boxes/display_options.php:218
3123
+ #: app/features/mec/meta_boxes/display_options.php:644
3124
+ #: app/features/mec/meta_boxes/display_options.php:810
3125
+ #: app/features/mec/meta_boxes/display_options.php:1005
3126
+ #: app/features/mec/settings.php:267 app/features/mec/settings.php:291
3127
+ #: app/features/mec/settings.php:300 app/features/mec/settings.php:341
3128
+ #: app/features/mec/settings.php:365 app/features/mec/settings.php:374
3129
+ #: app/features/popup/shortcode.php:68 app/features/popup/shortcode.php:95
3130
+ #: app/features/popup/shortcode.php:164 app/features/popup/shortcode.php:211
3131
  msgid "Classic"
3132
  msgstr "Classique"
3133
 
3134
+ #: app/features/mec/meta_boxes/display_options.php:42
3135
+ #: app/features/mec/meta_boxes/display_options.php:220
3136
+ #: app/features/mec/settings.php:292 app/features/mec/settings.php:302
3137
+ #: app/features/mec/settings.php:366 app/features/mec/settings.php:376
3138
+ #: app/features/popup/shortcode.php:73 app/features/popup/shortcode.php:105
3139
  msgid "Minimal"
3140
  msgstr "Minimal"
3141
 
3142
+ #: app/features/mec/meta_boxes/display_options.php:43
3143
+ #: app/features/mec/meta_boxes/display_options.php:221
3144
+ #: app/features/mec/meta_boxes/display_options.php:594
3145
+ #: app/features/mec/meta_boxes/display_options.php:646
3146
+ #: app/features/mec/meta_boxes/display_options.php:808
3147
+ #: app/features/mec/meta_boxes/display_options.php:1007
3148
+ #: app/features/mec/settings.php:269 app/features/mec/settings.php:282
3149
+ #: app/features/mec/settings.php:293 app/features/mec/settings.php:303
3150
+ #: app/features/mec/settings.php:343 app/features/mec/settings.php:356
3151
+ #: app/features/mec/settings.php:367 app/features/mec/settings.php:377
3152
+ #: app/features/popup/shortcode.php:78 app/features/popup/shortcode.php:110
3153
+ #: app/features/popup/shortcode.php:157 app/features/popup/shortcode.php:174
3154
+ #: app/features/popup/shortcode.php:197 app/features/popup/shortcode.php:221
3155
  msgid "Modern"
3156
  msgstr "Moderne"
3157
 
3158
+ #: app/features/mec/meta_boxes/display_options.php:44
3159
+ #: app/features/mec/settings.php:294 app/features/mec/settings.php:368
3160
+ #: app/features/popup/shortcode.php:83
3161
  msgid "Standard"
3162
  msgstr "Standard"
3163
 
3164
+ #: app/features/mec/meta_boxes/display_options.php:45
3165
+ #: app/features/mec/settings.php:295 app/features/mec/settings.php:369
3166
+ #: app/features/popup/shortcode.php:88
3167
  msgid "Accordion"
3168
  msgstr "Accordéon"
3169
 
 
 
 
 
 
 
 
 
 
 
 
 
3170
  #: app/features/mec/meta_boxes/display_options.php:51
3171
  #: app/features/mec/meta_boxes/display_options.php:231
3172
  #: app/features/mec/meta_boxes/display_options.php:409
3176
  #: app/features/mec/meta_boxes/display_options.php:1163
3177
  #: app/features/mec/meta_boxes/display_options.php:1251
3178
  #: app/features/mec/meta_boxes/display_options.php:1343
3179
+ msgid "Today"
3180
+ msgstr "Aujourd’hui"
3181
 
3182
  #: app/features/mec/meta_boxes/display_options.php:52
3183
  #: app/features/mec/meta_boxes/display_options.php:232
3184
  #: app/features/mec/meta_boxes/display_options.php:410
 
 
3185
  #: app/features/mec/meta_boxes/display_options.php:702
3186
  #: app/features/mec/meta_boxes/display_options.php:735
 
 
3187
  #: app/features/mec/meta_boxes/display_options.php:916
3188
  #: app/features/mec/meta_boxes/display_options.php:1164
3189
  #: app/features/mec/meta_boxes/display_options.php:1252
3190
  #: app/features/mec/meta_boxes/display_options.php:1344
3191
+ msgid "Tomorrow"
3192
+ msgstr "Demain"
3193
+
 
3194
  #: app/features/mec/meta_boxes/display_options.php:53
3195
  #: app/features/mec/meta_boxes/display_options.php:233
3196
  #: app/features/mec/meta_boxes/display_options.php:411
3205
  #: app/features/mec/meta_boxes/display_options.php:1253
3206
  #: app/features/mec/meta_boxes/display_options.php:1345
3207
  #: app/features/mec/meta_boxes/display_options.php:1410
3208
+ msgid "Start of Current Month"
3209
+ msgstr "Début du mois en cours"
3210
 
3211
  #: app/features/mec/meta_boxes/display_options.php:54
3212
  #: app/features/mec/meta_boxes/display_options.php:234
3213
  #: app/features/mec/meta_boxes/display_options.php:412
3214
  #: app/features/mec/meta_boxes/display_options.php:478
 
3215
  #: app/features/mec/meta_boxes/display_options.php:655
3216
  #: app/features/mec/meta_boxes/display_options.php:704
3217
  #: app/features/mec/meta_boxes/display_options.php:737
3222
  #: app/features/mec/meta_boxes/display_options.php:1254
3223
  #: app/features/mec/meta_boxes/display_options.php:1346
3224
  #: app/features/mec/meta_boxes/display_options.php:1411
3225
+ msgid "Start of Next Month"
3226
+ msgstr "Début du mois prochain"
3227
+
3228
+ #: app/features/mec/meta_boxes/display_options.php:55
3229
+ #: app/features/mec/meta_boxes/display_options.php:235
3230
+ #: app/features/mec/meta_boxes/display_options.php:413
3231
+ #: app/features/mec/meta_boxes/display_options.php:479
3232
+ #: app/features/mec/meta_boxes/display_options.php:602
3233
+ #: app/features/mec/meta_boxes/display_options.php:656
3234
+ #: app/features/mec/meta_boxes/display_options.php:705
3235
+ #: app/features/mec/meta_boxes/display_options.php:738
3236
+ #: app/features/mec/meta_boxes/display_options.php:773
3237
+ #: app/features/mec/meta_boxes/display_options.php:820
3238
+ #: app/features/mec/meta_boxes/display_options.php:919
3239
+ #: ap