Modern Events Calendar Lite - Version 5.0.5

Version Description

  • 29 January 2020 =
  • Added: Versioning to asset files
  • Added: A WordPress cron for booking reminder emails (pro)
  • Fixed: All day events
  • Fixed: When event time is hidden
  • Fixed: WooCommerce gateway (pro)
  • Fixed: Booking edit (pro)
  • Fixed: Apostrophe in booking success message (pro)
  • Fixed: Day focus of daily skin
  • Fixed: Accordion month toggle
  • Fixed: Sort event in masonry skin (pro)
  • Fixed: Current year in search module
  • Fixed: Advanced repeat
  • Fixed: Pay button position when cart is invalid (pro)
  • Fixed: Simple monthly calendar style
Download this release

Release Info

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

Code changes from version 5.0.2 to 5.0.5

Files changed (51) hide show
  1. app/features/ix.php +4 -4
  2. app/features/mec/dashboard.php +5 -4
  3. app/features/mec/dyncss.php +2 -2
  4. app/features/mec/messages.php +1 -1
  5. app/features/update.php +6 -0
  6. app/libraries/factory.php +30 -26
  7. app/libraries/main.php +90 -5
  8. app/libraries/render.php +40 -0
  9. app/libraries/schedule.php +1 -0
  10. app/libraries/skins.php +4 -1
  11. app/libraries/syncSchedule.php +13 -7
  12. app/modules/booking/steps/message.php +1 -1
  13. app/modules/countdown/details.php +2 -2
  14. app/skins/grid/render.php +5 -1
  15. app/skins/masonry/tpl.php +1 -1
  16. app/skins/monthly_view/calendar_simple.php +1 -1
  17. assets/css/frontend.css +10 -0
  18. assets/css/frontend.min.css +1 -1
  19. assets/js/frontend.js +72 -22
  20. changelog.txt +17 -1
  21. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  22. languages/modern-events-calendar-lite-cs_CZ.po +131 -130
  23. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  24. languages/modern-events-calendar-lite-de_DE.po +131 -130
  25. languages/modern-events-calendar-lite-en_US.mo +0 -0
  26. languages/modern-events-calendar-lite-en_US.po +131 -130
  27. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  28. languages/modern-events-calendar-lite-es_ES.po +131 -130
  29. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  30. languages/modern-events-calendar-lite-fr_FR.po +131 -130
  31. languages/modern-events-calendar-lite-hu_HU.mo +0 -0
  32. languages/modern-events-calendar-lite-hu_HU.po +131 -130
  33. languages/modern-events-calendar-lite-it_IT.mo +0 -0
  34. languages/modern-events-calendar-lite-it_IT.po +131 -130
  35. languages/modern-events-calendar-lite-nb_NO.mo +0 -0
  36. languages/modern-events-calendar-lite-nb_NO.po +131 -130
  37. languages/modern-events-calendar-lite-nl_NL.mo +0 -0
  38. languages/modern-events-calendar-lite-nl_NL.po +131 -130
  39. languages/modern-events-calendar-lite-pl_PL.mo +0 -0
  40. languages/modern-events-calendar-lite-pl_PL.po +131 -130
  41. languages/modern-events-calendar-lite-pt_BR.mo +0 -0
  42. languages/modern-events-calendar-lite-pt_BR.po +131 -130
  43. languages/modern-events-calendar-lite-ru_RU.mo +0 -0
  44. languages/modern-events-calendar-lite-ru_RU.po +131 -130
  45. languages/modern-events-calendar-lite-sv_SE.mo +0 -0
  46. languages/modern-events-calendar-lite-sv_SE.po +131 -130
  47. languages/modern-events-calendar-lite-tr_TR.mo +0 -0
  48. languages/modern-events-calendar-lite-tr_TR.po +131 -130
  49. languages/modern-events-calendar-lite.pot +130 -129
  50. modern-events-calendar-lite.php +2 -2
  51. readme.txt +17 -1
app/features/ix.php CHANGED
@@ -327,14 +327,14 @@ class MEC_feature_ix extends MEC_base
327
 
328
  // Start
329
  $start_date = (string) $meta->mec_date->start->date;
330
- $start_hour = (string) $meta->mec_date->start->hour;
331
- $start_minutes = (string) $meta->mec_date->start->minutes;
332
  $start_ampm = (string) $meta->mec_date->start->ampm;
333
 
334
  // End
335
  $end_date = (string) $meta->mec_date->end->date;
336
- $end_hour = (string) $meta->mec_date->end->hour;
337
- $end_minutes = (string) $meta->mec_date->end->minutes;
338
  $end_ampm = (string) $meta->mec_date->end->ampm;
339
 
340
  // Time Options
327
 
328
  // Start
329
  $start_date = (string) $meta->mec_date->start->date;
330
+ $start_hour = (int) $meta->mec_date->start->hour;
331
+ $start_minutes = (int) $meta->mec_date->start->minutes;
332
  $start_ampm = (string) $meta->mec_date->start->ampm;
333
 
334
  // End
335
  $end_date = (string) $meta->mec_date->end->date;
336
+ $end_hour = (int) $meta->mec_date->end->hour;
337
+ $end_minutes = (int) $meta->mec_date->end->minutes;
338
  $end_ampm = (string) $meta->mec_date->end->ampm;
339
 
340
  // Time Options
app/features/mec/dashboard.php CHANGED
@@ -83,7 +83,11 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
83
  </div>
84
  </div>
85
  <div class="welcome-content w-clearfix extra">
86
-
 
 
 
 
87
  <?php if(!$this->getPRO()): ?>
88
  <div class="w-row mec-pro-notice">
89
  <div class="w-col-sm-12">
@@ -246,9 +250,6 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
246
  </div>
247
  </div>
248
  <?php endif; ?>
249
- <div class="w-col-sm-12">
250
- <script src='https://webnus.freshsales.io/web_forms/8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc/form.js' crossorigin='anonymous' id='fs_8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc'></script>
251
- </div>
252
  <?php if(current_user_can('read')): ?>
253
  <div class="w-col-sm-3">
254
  <div class="w-box doc">
83
  </div>
84
  </div>
85
  <div class="welcome-content w-clearfix extra">
86
+ <div class="w-row">
87
+ <div class="w-col-sm-12">
88
+ <script src='https://webnus.freshsales.io/web_forms/8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc/form.js' crossorigin='anonymous' id='fs_8dd552ab6041bd25d23d8a8467819f701f9196106be0e25edc6870c9cc922bdc'></script>
89
+ </div>
90
+ </div>
91
  <?php if(!$this->getPRO()): ?>
92
  <div class="w-row mec-pro-notice">
93
  <div class="w-col-sm-12">
250
  </div>
251
  </div>
252
  <?php endif; ?>
 
 
 
253
  <?php if(current_user_can('read')): ?>
254
  <div class="w-col-sm-3">
255
  <div class="w-box doc">
app/features/mec/dyncss.php CHANGED
@@ -141,7 +141,7 @@ if($mec_p_fontfamily_arr): ?>
141
  if($color && $color != '#40d9f1'): ?>
142
  /* == TextColors
143
  ---------------- */
144
- .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover,.mec-wrap.colorskin-custom .mec-next-event-details li i,.mec-next-event-details a,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected
145
  {color: <?php echo $color; ?>}
146
 
147
  /* == Backgrounds
@@ -153,7 +153,7 @@ if($color && $color != '#40d9f1'): ?>
153
 
154
  /* == BorderColors
155
  ------------------ */
156
- .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,.mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover
157
  {border-color: <?php echo $color; ?>;}
158
  .mec-wrap.colorskin-custom .mec-event-countdown-style3 .mec-event-date:after,.mec-wrap.colorskin-custom .mec-month-divider span:before
159
  {border-bottom-color:<?php echo $color; ?>;}
141
  if($color && $color != '#40d9f1'): ?>
142
  /* == TextColors
143
  ---------------- */
144
+ .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-wrap.colorskin-custom .mec-color, .mec-wrap.colorskin-custom .mec-event-sharing-wrap .mec-event-sharing > li:hover a, .mec-wrap.colorskin-custom .mec-color-hover:hover, .mec-wrap.colorskin-custom .mec-color-before *:before ,.mec-wrap.colorskin-custom .mec-widget .mec-event-grid-classic.owl-carousel .owl-nav i,.mec-wrap.colorskin-custom .mec-event-list-classic a.magicmore:hover,.mec-wrap.colorskin-custom .mec-event-grid-simple:hover .mec-event-title,.mec-wrap.colorskin-custom .mec-single-event .mec-event-meta dd.mec-events-event-categories:before,.mec-wrap.colorskin-custom .mec-single-event-date:before,.mec-wrap.colorskin-custom .mec-single-event-time:before,.mec-wrap.colorskin-custom .mec-events-meta-group.mec-events-meta-group-venue:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month i,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-previous-month:hover,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-wrap.colorskin-custom .mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover,.mec-wrap.colorskin-custom .mec-infowindow-wp h5 a:hover, .colorskin-custom .mec-events-meta-group-countdown .mec-end-counts h3,.mec-calendar .mec-calendar-side .mec-next-month i,.mec-wrap .mec-totalcal-box i,.mec-calendar .mec-event-article .mec-event-title a:hover,.mec-attendees-list-details .mec-attendee-profile-link a:hover,.mec-wrap.colorskin-custom .mec-next-event-details li i, .mec-next-event-details i:before, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-next-event-details a,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected
145
  {color: <?php echo $color; ?>}
146
 
147
  /* == Backgrounds
153
 
154
  /* == BorderColors
155
  ------------------ */
156
+ .mec-wrap.colorskin-custom .mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing > li:hover a i,.mec-wrap.colorskin-custom .mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon,.mec-wrap.colorskin-custom .mec-event-list-standard .mec-month-divider span:before,.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,.mec-wrap.colorskin-custom .mec-calendar .mec-calendar-events-side .mec-table-side-day, .mec-wrap.colorskin-custom .mec-border-color, .mec-wrap.colorskin-custom .mec-border-color-hover:hover, .colorskin-custom .mec-single-event .mec-frontbox-title:before, .colorskin-custom .mec-single-event .mec-events-meta-group-booking form > h4:before, .mec-wrap.colorskin-custom .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,.event-carousel-type1-head .mec-event-date-carousel:after,.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected, .mec-marker-infowindow-wp .mec-marker-infowindow-count, .mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover
157
  {border-color: <?php echo $color; ?>;}
158
  .mec-wrap.colorskin-custom .mec-event-countdown-style3 .mec-event-date:after,.mec-wrap.colorskin-custom .mec-month-divider span:before
159
  {border-bottom-color:<?php echo $color; ?>;}
app/features/mec/messages.php CHANGED
@@ -38,7 +38,7 @@ $values = $this->main->get_messages_options();
38
  <?php foreach($category['messages'] as $key=>$message): ?>
39
  <li>
40
  <label for="<?php echo 'mec_m_'.$key; ?>"><?php echo $message['label']; ?></label>
41
- <input id="<?php echo 'mec_m_'.$key; ?>" name="mec[messages][<?php echo $key; ?>]" type="text" placeholder="<?php echo esc_attr($message['default']); ?>" value="<?php echo (isset($values[$key]) and trim($values[$key])) ? esc_attr($values[$key]) : ''; ?>" />
42
  </li>
43
  <?php endforeach; ?>
44
  </ul>
38
  <?php foreach($category['messages'] as $key=>$message): ?>
39
  <li>
40
  <label for="<?php echo 'mec_m_'.$key; ?>"><?php echo $message['label']; ?></label>
41
+ <input id="<?php echo 'mec_m_'.$key; ?>" name="mec[messages][<?php echo $key; ?>]" type="text" placeholder="<?php echo esc_attr($message['default']); ?>" value="<?php echo (isset($values[$key]) and trim($values[$key])) ? esc_attr(stripslashes($values[$key])) : ''; ?>" />
42
  </li>
43
  <?php endforeach; ?>
44
  </ul>
app/features/update.php CHANGED
@@ -61,6 +61,7 @@ class MEC_feature_update extends MEC_base
61
  if(version_compare($version, '4.4.6', '<')) $this->version446();
62
  if(version_compare($version, '4.6.1', '<')) $this->version461();
63
  if(version_compare($version, '4.9.0', '<')) $this->version490();
 
64
 
65
  // Update to latest version to prevent running the code twice
66
  update_option('mec_version', $this->main->get_version());
@@ -312,4 +313,9 @@ class MEC_feature_update extends MEC_base
312
  if ( !empty( $location_id )) update_post_meta($booking->ID, 'mec_booking_location', $location_id);
313
  }
314
  }
 
 
 
 
 
315
  }
61
  if(version_compare($version, '4.4.6', '<')) $this->version446();
62
  if(version_compare($version, '4.6.1', '<')) $this->version461();
63
  if(version_compare($version, '4.9.0', '<')) $this->version490();
64
+ if(version_compare($version, '5.0.5', '<')) $this->version505();
65
 
66
  // Update to latest version to prevent running the code twice
67
  update_option('mec_version', $this->main->get_version());
313
  if ( !empty( $location_id )) update_post_meta($booking->ID, 'mec_booking_location', $location_id);
314
  }
315
  }
316
+
317
+ public function version505()
318
+ {
319
+ if(!wp_next_scheduled('mec_syncScheduler')) wp_schedule_event(time(), 'daily', 'mec_syncScheduler');
320
+ }
321
  }
app/libraries/factory.php CHANGED
@@ -57,6 +57,9 @@ class MEC_factory extends MEC_base
57
  */
58
  public function load_actions()
59
  {
 
 
 
60
  // Register MEC function to be called in WordPress footer hook
61
  $this->action('wp_footer', array($this, 'load_footer'), 9999);
62
 
@@ -261,20 +264,18 @@ class MEC_factory extends MEC_base
261
  if(method_exists($current_screen, 'is_block_editor') and $current_screen->is_block_editor()) $dependencies[] = 'wp-blocks';
262
 
263
  // Include MEC backend script file
264
- wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), $dependencies);
265
 
266
  // Register New Block Editor
267
  if(function_exists('register_block_type')) register_block_type('mec/blockeditor', array('editor_script' => 'block.editor'));
268
 
269
- wp_localize_script( 'mec-backend-script', 'mec_admin_localize',
270
- array(
271
- 'ajax_url' => admin_url( 'admin-ajax.php' ),
272
- 'ajax_nonce' => wp_create_nonce('mec_settings_nonce'),
273
- 'mce_items' => $this->main->mce_get_shortcode_list(),
274
- )
275
- );
276
 
277
- wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'));
278
 
279
  // Thickbox
280
  wp_enqueue_media();
@@ -284,7 +285,7 @@ class MEC_factory extends MEC_base
284
 
285
  // Include MEC backend CSS files
286
  wp_enqueue_style('mec-font-icon', $this->main->asset('css/iconfonts.css'));
287
- wp_enqueue_style('mec-backend-style', $this->main->asset('css/backend.min.css'));
288
 
289
  // Include "Right to Left" CSS file
290
  if(is_rtl()) wp_enqueue_style('mec-backend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
@@ -307,9 +308,6 @@ class MEC_factory extends MEC_base
307
 
308
  // Google Fonts Status
309
  $gfonts_status = (isset($styling['disable_gfonts']) and $styling['disable_gfonts']) ? false : true;
310
-
311
-
312
-
313
 
314
  // Include WordPress jQuery
315
  wp_enqueue_script('jquery');
@@ -318,8 +316,8 @@ class MEC_factory extends MEC_base
318
  wp_enqueue_script('jquery-ui-datepicker');
319
 
320
  // Load Isotope
321
-
322
  if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
 
323
  include_once(ABSPATH.'wp-admin/includes/plugin.php');
324
  if(is_plugin_active( 'elementor/elementor.php' ) && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
325
 
@@ -331,10 +329,10 @@ class MEC_factory extends MEC_base
331
  wp_enqueue_style('mec-select2-style', $this->main->asset('packages/select2/select2.min.css'));
332
 
333
  // Include MEC frontend script files
334
- wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'));
335
  wp_enqueue_script('mec-tooltip-script', $this->main->asset('packages/tooltip/tooltip.js'));
336
 
337
- wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'));
338
 
339
  // Include Lity Lightbox
340
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
@@ -345,11 +343,8 @@ class MEC_factory extends MEC_base
345
  // Include MEC frontend JS libraries
346
  wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
347
 
348
- if ( did_action( 'elementor/loaded' ) ) {
349
- $elementor_edit_mode = \Elementor\Plugin::$instance->editor->is_edit_mode() == false ? 'no' : 'yes';
350
- } else {
351
- $elementor_edit_mode = 'no';
352
- }
353
 
354
  // Settings
355
  $settings = $this->main->get_settings();
@@ -370,6 +365,7 @@ class MEC_factory extends MEC_base
370
  'recapcha_key'=>$grecaptcha_key,
371
  'ajax_url' => admin_url('admin-ajax.php'),
372
  'fes_nonce' => wp_create_nonce('mec_fes_nonce'),
 
373
  ));
374
 
375
  // Include Google Recaptcha Javascript API
@@ -378,7 +374,7 @@ class MEC_factory extends MEC_base
378
 
379
  // Include MEC frontend CSS files
380
  wp_enqueue_style('mec-font-icons', $this->main->asset('css/iconfonts.css'));
381
- wp_enqueue_style('mec-frontend-style', $this->main->asset('css/frontend.min.css'));
382
  wp_enqueue_style('mec-tooltip-style', $this->main->asset('packages/tooltip/tooltip.css'));
383
  wp_enqueue_style('mec-tooltip-shadow-style', $this->main->asset('packages/tooltip/tooltipster-sideTip-shadow.min.css'));
384
  wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
@@ -906,10 +902,6 @@ class MEC_factory extends MEC_base
906
  foreach($calendar['meta'] as $key=>$value) update_post_meta($post_id, $key, $value);
907
  }
908
  }
909
-
910
- // Scheduler Cron job
911
- if(!wp_next_scheduled('mec_scheduler')) wp_schedule_event(time(), 'hourly', 'mec_scheduler');
912
- if(!wp_next_scheduled('mec_syncScheduler')) wp_schedule_event(time(), 'daily', 'mec_syncScheduler');
913
 
914
  // Mark this blog as installed
915
  update_option('mec_installed', 1);
@@ -917,6 +909,17 @@ class MEC_factory extends MEC_base
917
  // Set the version into the Database
918
  update_option('mec_version', $this->main->get_version());
919
  }
 
 
 
 
 
 
 
 
 
 
 
920
 
921
  /**
922
  * Remove MEC from a blog
@@ -946,4 +949,5 @@ class MEC_factory extends MEC_base
946
  delete_option('mec_version');
947
  }
948
  }
 
949
  }
57
  */
58
  public function load_actions()
59
  {
60
+ // Set CronJobs
61
+ $this->action('admin_init', array($this, 'mec_add_cron_jobs'), 9999);
62
+
63
  // Register MEC function to be called in WordPress footer hook
64
  $this->action('wp_footer', array($this, 'load_footer'), 9999);
65
 
264
  if(method_exists($current_screen, 'is_block_editor') and $current_screen->is_block_editor()) $dependencies[] = 'wp-blocks';
265
 
266
  // Include MEC backend script file
267
+ wp_enqueue_script('mec-backend-script', $this->main->asset('js/backend.js'), $dependencies, $this->main->get_version());
268
 
269
  // Register New Block Editor
270
  if(function_exists('register_block_type')) register_block_type('mec/blockeditor', array('editor_script' => 'block.editor'));
271
 
272
+ wp_localize_script( 'mec-backend-script', 'mec_admin_localize', array(
273
+ 'ajax_url' => admin_url( 'admin-ajax.php' ),
274
+ 'ajax_nonce' => wp_create_nonce('mec_settings_nonce'),
275
+ 'mce_items' => $this->main->mce_get_shortcode_list(),
276
+ ));
 
 
277
 
278
+ wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'), array(), $this->main->get_version());
279
 
280
  // Thickbox
281
  wp_enqueue_media();
285
 
286
  // Include MEC backend CSS files
287
  wp_enqueue_style('mec-font-icon', $this->main->asset('css/iconfonts.css'));
288
+ wp_enqueue_style('mec-backend-style', $this->main->asset('css/backend.min.css'), array(), $this->main->get_version());
289
 
290
  // Include "Right to Left" CSS file
291
  if(is_rtl()) wp_enqueue_style('mec-backend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
308
 
309
  // Google Fonts Status
310
  $gfonts_status = (isset($styling['disable_gfonts']) and $styling['disable_gfonts']) ? false : true;
 
 
 
311
 
312
  // Include WordPress jQuery
313
  wp_enqueue_script('jquery');
316
  wp_enqueue_script('jquery-ui-datepicker');
317
 
318
  // Load Isotope
 
319
  if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
320
+
321
  include_once(ABSPATH.'wp-admin/includes/plugin.php');
322
  if(is_plugin_active( 'elementor/elementor.php' ) && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
323
 
329
  wp_enqueue_style('mec-select2-style', $this->main->asset('packages/select2/select2.min.css'));
330
 
331
  // Include MEC frontend script files
332
+ wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'), array(), $this->main->get_version());
333
  wp_enqueue_script('mec-tooltip-script', $this->main->asset('packages/tooltip/tooltip.js'));
334
 
335
+ wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'), array(), $this->main->get_version());
336
 
337
  // Include Lity Lightbox
338
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
343
  // Include MEC frontend JS libraries
344
  wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'));
345
 
346
+ if(did_action('elementor/loaded')) $elementor_edit_mode = (\Elementor\Plugin::$instance->editor->is_edit_mode() == false) ? 'no' : 'yes';
347
+ else $elementor_edit_mode = 'no';
 
 
 
348
 
349
  // Settings
350
  $settings = $this->main->get_settings();
365
  'recapcha_key'=>$grecaptcha_key,
366
  'ajax_url' => admin_url('admin-ajax.php'),
367
  'fes_nonce' => wp_create_nonce('mec_fes_nonce'),
368
+ 'current_year' => date('Y', current_time('timestamp', 0)),
369
  ));
370
 
371
  // Include Google Recaptcha Javascript API
374
 
375
  // Include MEC frontend CSS files
376
  wp_enqueue_style('mec-font-icons', $this->main->asset('css/iconfonts.css'));
377
+ wp_enqueue_style('mec-frontend-style', $this->main->asset('css/frontend.min.css'), array(), $this->main->get_version());
378
  wp_enqueue_style('mec-tooltip-style', $this->main->asset('packages/tooltip/tooltip.css'));
379
  wp_enqueue_style('mec-tooltip-shadow-style', $this->main->asset('packages/tooltip/tooltipster-sideTip-shadow.min.css'));
380
  wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
902
  foreach($calendar['meta'] as $key=>$value) update_post_meta($post_id, $key, $value);
903
  }
904
  }
 
 
 
 
905
 
906
  // Mark this blog as installed
907
  update_option('mec_installed', 1);
909
  // Set the version into the Database
910
  update_option('mec_version', $this->main->get_version());
911
  }
912
+
913
+ /**
914
+ * Add cron jobs
915
+ * @author Webnus <info@webnus.biz>
916
+ */
917
+ public function mec_add_cron_jobs()
918
+ {
919
+ // Scheduler Cron job
920
+ if(!wp_next_scheduled('mec_scheduler')) wp_schedule_event(time(), 'hourly', 'mec_scheduler');
921
+ if(!wp_next_scheduled('mec_syncScheduler')) wp_schedule_event(time(), 'daily', 'mec_syncScheduler');
922
+ }
923
 
924
  /**
925
  * Remove MEC from a blog
949
  delete_option('mec_version');
950
  }
951
  }
952
+
953
  }
app/libraries/main.php CHANGED
@@ -1796,7 +1796,7 @@ class MEC_main extends MEC_base
1796
  */
1797
  public function get_events($limit = -1)
1798
  {
1799
- return get_posts(array('post_type'=>$this->get_main_post_type(), 'posts_per_page'=>$limit, 'post_status'=>'publish'));
1800
  }
1801
 
1802
  /**
@@ -4038,7 +4038,10 @@ class MEC_main extends MEC_base
4038
  // Settings
4039
  $settings = $this->get_settings();
4040
 
4041
- $time = $event->data->time;
 
 
 
4042
  $start_date = $event->date['start']['date'];
4043
  $end_date = $event->date['end']['date'];
4044
 
@@ -4050,7 +4053,7 @@ class MEC_main extends MEC_base
4050
  $midnight = $end_timestamp+(3600*$midnight_hour);
4051
 
4052
  // End Date is before Midnight
4053
- if($start_timestamp < $end_timestamp and $midnight >= strtotime($end_date.' '.$time['end'])) $end_date = date('Y-m-d', ($end_timestamp - 86400));
4054
 
4055
  return $this->date_label(array('date' => $start_date), array('date' => $end_date), $format, $separator);
4056
  }
@@ -5919,18 +5922,100 @@ class MEC_main extends MEC_base
5919
 
5920
  $start_timestamp = strtotime($event->date['start']['date']);
5921
  $end_timestamp = strtotime($event->date['end']['date']);
5922
- $time = $event->data->time;
 
 
 
5923
 
5924
  // Midnight Hour
5925
  $midnight_hour = (isset($settings['midnight_hour']) and $settings['midnight_hour']) ? $settings['midnight_hour'] : 0;
5926
  $midnight = $end_timestamp+(3600*$midnight_hour);
5927
 
5928
  // End Date is before Midnight
5929
- if($start_timestamp < $end_timestamp and $midnight >= strtotime($event->date['end']['date'].' '.$time['end'])) return true;
5930
 
5931
  return false;
5932
  }
5933
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5934
  public function get_users_dropdown($current = array(), $notifications = 'booking_notification')
5935
  {
5936
  $users = get_users();
1796
  */
1797
  public function get_events($limit = -1)
1798
  {
1799
+ return get_posts(array('post_type'=>$this->get_main_post_type(), 'numberposts'=>$limit, 'post_status'=>'publish'));
1800
  }
1801
 
1802
  /**
4038
  // Settings
4039
  $settings = $this->get_settings();
4040
 
4041
+ $time = sprintf("%02d", $event->data->meta['mec_end_time_hour']).':';
4042
+ $time .= sprintf("%02d", $event->data->meta['mec_end_time_minutes']).' ';
4043
+ $time .= $event->data->meta['mec_end_time_ampm'];
4044
+
4045
  $start_date = $event->date['start']['date'];
4046
  $end_date = $event->date['end']['date'];
4047
 
4053
  $midnight = $end_timestamp+(3600*$midnight_hour);
4054
 
4055
  // End Date is before Midnight
4056
+ if($start_timestamp < $end_timestamp and $midnight >= strtotime($end_date.' '.$time)) $end_date = date('Y-m-d', ($end_timestamp - 86400));
4057
 
4058
  return $this->date_label(array('date' => $start_date), array('date' => $end_date), $format, $separator);
4059
  }
5922
 
5923
  $start_timestamp = strtotime($event->date['start']['date']);
5924
  $end_timestamp = strtotime($event->date['end']['date']);
5925
+
5926
+ $time = sprintf("%02d", $event->data->meta['mec_end_time_hour']).':';
5927
+ $time .= sprintf("%02d", $event->data->meta['mec_end_time_minutes']).' ';
5928
+ $time .= $event->data->meta['mec_end_time_ampm'];
5929
 
5930
  // Midnight Hour
5931
  $midnight_hour = (isset($settings['midnight_hour']) and $settings['midnight_hour']) ? $settings['midnight_hour'] : 0;
5932
  $midnight = $end_timestamp+(3600*$midnight_hour);
5933
 
5934
  // End Date is before Midnight
5935
+ if($start_timestamp < $end_timestamp and $midnight >= strtotime($event->date['end']['date'].' '.$time)) return true;
5936
 
5937
  return false;
5938
  }
5939
 
5940
+ public function mec_content_html($text, $max_length)
5941
+ {
5942
+ $tags = array();
5943
+ $result = "";
5944
+ $is_open = false;
5945
+ $grab_open = false;
5946
+ $is_close = false;
5947
+ $in_double_quotes = false;
5948
+ $in_single_quotes = false;
5949
+ $tag = "";
5950
+ $i = 0;
5951
+ $stripped = 0;
5952
+ $stripped_text = strip_tags($text);
5953
+ while ($i < strlen($text) && $stripped < strlen($stripped_text) && $stripped < $max_length)
5954
+ {
5955
+ $symbol = $text{$i};
5956
+ $result .= $symbol;
5957
+ switch ($symbol)
5958
+ {
5959
+ case '<':
5960
+ $is_open = true;
5961
+ $grab_open = true;
5962
+ break;
5963
+ case '"':
5964
+ if ($in_double_quotes)
5965
+ $in_double_quotes = false;
5966
+ else
5967
+ $in_double_quotes = true;
5968
+
5969
+ break;
5970
+ case "'":
5971
+ if ($in_single_quotes)
5972
+ $in_single_quotes = false;
5973
+ else
5974
+ $in_single_quotes = true;
5975
+
5976
+ break;
5977
+ case '/':
5978
+ if ($is_open && !$in_double_quotes && !$in_single_quotes)
5979
+ {
5980
+ $is_close = true;
5981
+ $is_open = false;
5982
+ $grab_open = false;
5983
+ }
5984
+
5985
+ break;
5986
+ case ' ':
5987
+ if ($is_open)
5988
+ $grab_open = false;
5989
+ else
5990
+ $stripped++;
5991
+
5992
+ break;
5993
+ case '>':
5994
+ if ($is_open)
5995
+ {
5996
+ $is_open = false;
5997
+ $grab_open = false;
5998
+ array_push($tags, $tag);
5999
+ $tag = "";
6000
+ }
6001
+ else if ($is_close)
6002
+ {
6003
+ $is_close = false;
6004
+ array_pop($tags);
6005
+ $tag = "";
6006
+ }
6007
+ break;
6008
+ default:
6009
+ if ($grab_open || $is_close) $tag .= $symbol;
6010
+ if (!$is_open && !$is_close) $stripped++;
6011
+ }
6012
+ $i++;
6013
+ }
6014
+ while ($tags)
6015
+ $result .= "</".array_pop($tags).">";
6016
+ return $result;
6017
+ }
6018
+
6019
  public function get_users_dropdown($current = array(), $notifications = 'booking_notification')
6020
  {
6021
  $users = get_users();
app/libraries/render.php CHANGED
@@ -56,6 +56,46 @@ class MEC_render extends MEC_base
56
  $skin = isset($atts['skin']) ? $atts['skin'] : $this->get_default_layout();
57
  return $this->skin($skin, $atts);
58
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  /**
61
  * Do the widget and return its output
56
  $skin = isset($atts['skin']) ? $atts['skin'] : $this->get_default_layout();
57
  return $this->skin($skin, $atts);
58
  }
59
+
60
+ /**
61
+ * Do the shortcode and return its json output
62
+ * @author Webnus <info@webnus.biz>
63
+ * @param array $atts
64
+ * @return string
65
+ */
66
+ public function shortcode_json($atts)
67
+ {
68
+ $calendar_id = isset($atts['id']) ? $atts['id'] : 0;
69
+ $atts = apply_filters('mec_calendar_atts', $this->parse($calendar_id, $atts));
70
+
71
+ $skin = isset($atts['skin']) ? $atts['skin'] : $this->get_default_layout();
72
+ $json = $this->skin($skin, $atts);
73
+
74
+ $path = MEC::import('app.skins.'.$skin, true, true);
75
+ $skin_path = apply_filters('mec_skin_path', $skin);
76
+
77
+ if($skin_path != $skin and $this->file->exists($skin_path)) $path = $skin_path;
78
+ if(!$this->file->exists($path))
79
+ {
80
+ return __('Skin controller does not exist.', 'modern-events-calendar-lite');
81
+ }
82
+
83
+ include_once $path;
84
+
85
+ $skin_class_name = 'MEC_skin_'.$skin;
86
+
87
+ // Create Skin Object Class
88
+ $SKO = new $skin_class_name();
89
+
90
+ // Initialize the skin
91
+ $SKO->initialize($atts);
92
+
93
+ // Fetch the events
94
+ $atts['content_json'] = $SKO->fetch();
95
+ $atts['content_html'] = $SKO->output();
96
+
97
+ return $atts;
98
+ }
99
 
100
  /**
101
  * Do the widget and return its output
app/libraries/schedule.php CHANGED
@@ -125,6 +125,7 @@ class MEC_schedule extends MEC_base
125
  elseif($repeat_type == 'weekday') return 270;
126
  elseif($repeat_type == 'weekend') return 150;
127
  elseif($repeat_type == 'certain_weekdays') return 150;
 
128
  elseif($repeat_type == 'weekly') return 100;
129
  elseif($repeat_type == 'monthly') return 50;
130
  elseif($repeat_type == 'yearly') return 25;
125
  elseif($repeat_type == 'weekday') return 270;
126
  elseif($repeat_type == 'weekend') return 150;
127
  elseif($repeat_type == 'certain_weekdays') return 150;
128
+ elseif($repeat_type == 'advanced') return 120;
129
  elseif($repeat_type == 'weekly') return 100;
130
  elseif($repeat_type == 'monthly') return 50;
131
  elseif($repeat_type == 'yearly') return 25;
app/libraries/skins.php CHANGED
@@ -1038,7 +1038,10 @@ class MEC_skins extends MEC_base
1038
 
1039
  for($i = $start_year; $i <= $end_year; $i++)
1040
  {
1041
- $output .= '<option value="'.$i.'" >'.$i.'</option>';
 
 
 
1042
  }
1043
 
1044
  $output .= '</select></div>';
1038
 
1039
  for($i = $start_year; $i <= $end_year; $i++)
1040
  {
1041
+ $skins = array('list', 'grid');
1042
+ if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
1043
+ $selected = (!in_array($this->skin, $skins) and $i == date('Y', current_time('timestamp', 0))) ? 'selected="selected"' : '';
1044
+ $output .= '<option value="'.$i.'" '.$selected.'>'.$i.'</option>';
1045
  }
1046
 
1047
  $output .= '</select></div>';
app/libraries/syncSchedule.php CHANGED
@@ -8,7 +8,6 @@ defined('MECEXEC') or die();
8
  */
9
  class MEC_syncSchedule extends MEC_base
10
  {
11
-
12
  private $main;
13
 
14
  public function __construct()
@@ -19,32 +18,39 @@ class MEC_syncSchedule extends MEC_base
19
  public function sync()
20
  {
21
  $ix = $this->main->get_ix_options();
 
22
 
23
- if ( isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1' )
24
  {
25
- if ( isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1' )
26
  {
27
  $sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
28
  include_once $sync_g_import;
29
  }
30
  }
31
 
32
- if ( isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1' )
33
  {
34
- if ( isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1' )
35
  {
36
  $sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
37
  include_once $sync_g_export;
38
  }
39
  }
40
 
41
- if ( isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1' )
42
  {
43
- if ( isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1' )
44
  {
45
  $sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
46
  include_once $sync_meetup_import;
47
  }
48
  }
 
 
 
 
 
 
49
  }
50
  }
8
  */
9
  class MEC_syncSchedule extends MEC_base
10
  {
 
11
  private $main;
12
 
13
  public function __construct()
18
  public function sync()
19
  {
20
  $ix = $this->main->get_ix_options();
21
+ $notifications = $this->main->get_notifications();
22
 
23
+ if(isset($ix['sync_g_import']) and $ix['sync_g_import'] == '1')
24
  {
25
+ if(isset($ix['sync_g_import_auto']) and $ix['sync_g_import_auto'] == '1')
26
  {
27
  $sync_g_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-import.php';
28
  include_once $sync_g_import;
29
  }
30
  }
31
 
32
+ if(isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1')
33
  {
34
+ if(isset($ix['sync_g_export_auto']) and $ix['sync_g_export_auto'] == '1')
35
  {
36
  $sync_g_export = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php';
37
  include_once $sync_g_export;
38
  }
39
  }
40
 
41
+ if(isset($ix['sync_meetup_import']) and $ix['sync_meetup_import'] == '1')
42
  {
43
+ if(isset($ix['sync_meetup_import_auto']) and $ix['sync_meetup_import_auto'] == '1')
44
  {
45
  $sync_meetup_import = MEC_ABSPATH.'app'.DS.'crons'.DS.'meetup-import.php';
46
  include_once $sync_meetup_import;
47
  }
48
  }
49
+
50
+ if(isset($notifications['booking_reminder']) and $notifications['booking_reminder']['status'])
51
+ {
52
+ $booking_reminder = MEC_ABSPATH.'app'.DS.'crons'.DS.'booking-reminder.php';
53
+ include_once $booking_reminder;
54
+ }
55
  }
56
  }
app/modules/booking/steps/message.php CHANGED
@@ -7,6 +7,6 @@ $event_id = $event->ID;
7
  <h4><?php _e('Thanks for your booking.', 'modern-events-calendar-lite'); ?></h4>
8
  <?php if(isset($message)): ?>
9
  <div class="mec-event-book-message">
10
- <div class="<?php echo (isset($message_class) ? $message_class : ''); ?>"><?php echo $message; ?></div>
11
  </div>
12
  <?php endif;
7
  <h4><?php _e('Thanks for your booking.', 'modern-events-calendar-lite'); ?></h4>
8
  <?php if(isset($message)): ?>
9
  <div class="mec-event-book-message">
10
+ <div class="<?php echo (isset($message_class) ? $message_class : ''); ?>"><?php echo stripslashes($message); ?></div>
11
  </div>
12
  <?php endif;
app/modules/countdown/details.php CHANGED
@@ -11,8 +11,8 @@ if(!isset($settings['countdown_status']) or (isset($settings['countdown_status']
11
  $event = $event[0];
12
  $date = $event->date;
13
 
14
- $start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : current_time('Y-m-d H:i:s');
15
- $end_date = (isset($date['end']) and isset($date['end']['date'])) ? $date['end']['date'] : current_time('Y-m-d H:i:s');
16
 
17
  $s_time = '';
18
  if(!empty($date))
11
  $event = $event[0];
12
  $date = $event->date;
13
 
14
+ $start_date = (isset($date['start']) and isset($date['start']['date'])) ? $date['start']['date'] : current_time('Y-m-d');
15
+ $end_date = (isset($date['end']) and isset($date['end']['date'])) ? $date['end']['date'] : current_time('Y-m-d');
16
 
17
  $s_time = '';
18
  if(!empty($date))
app/skins/grid/render.php CHANGED
@@ -275,7 +275,11 @@ if($this->style == 'colorful')
275
  ?>
276
  <?php endforeach; ?>
277
  <?php endforeach; ?>
278
- <?php if (($grid_div & 1 ? 'odd' : 'even') =='even' && ($grid_limit % 2 ? 'odd' : 'even') == 'odd' ) {
 
 
 
 
279
  echo '</div>';
280
  } ?>
281
  </div>
275
  ?>
276
  <?php endforeach; ?>
277
  <?php endforeach; ?>
278
+ <?php
279
+ if ( ($rcount <= count($map_events) + 1 ) && count($map_events) % 3 != 0 ) {
280
+ echo '</div>'; //close row
281
+ }
282
+ if (($grid_div & 1 ? 'odd' : 'even') =='even' && ($grid_limit % 2 ? 'odd' : 'even') == 'odd' ) {
283
  echo '</div>';
284
  } ?>
285
  </div>
app/skins/masonry/tpl.php CHANGED
@@ -51,7 +51,7 @@ $event_colorskin = (isset($styling['mec_colorskin']) || isset($styling['color'])
51
  do_action('mec_start_skin' , $this->id);
52
  do_action('mec_masonry_skin_head');
53
  ?>
54
- <div class="mec-wrap mec-skin-masonry-container<?php echo $event_colorskin; ?><?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>" data-filterby="<?php echo trim($this->filter_by) ? trim($this->filter_by) : ''; ?>">
55
  <?php if(trim($this->filter_by)) echo $this->filter_by(); ?>
56
 
57
  <?php if($this->found): ?>
51
  do_action('mec_start_skin' , $this->id);
52
  do_action('mec_masonry_skin_head');
53
  ?>
54
+ <div class="mec-wrap mec-skin-masonry-container<?php echo $event_colorskin; ?><?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->id; ?>" data-filterby="<?php echo trim($this->filter_by) ? trim($this->filter_by) : ''; ?>" data-sortascending="<?php echo (isset($this->show_only_expired_events) and $this->show_only_expired_events) ? false : true; ?>">
55
  <?php if(trim($this->filter_by)) echo $this->filter_by(); ?>
56
 
57
  <?php if($this->found): ?>
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -81,7 +81,7 @@ elseif($week_start == 5) // Friday
81
  $tooltip_content .= trim($start_time) ? '<div class="mec-tooltip-event-time"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>' : '' ;
82
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '<div class="mec-tooltip-event-content">' : '' ;
83
  $tooltip_content .= !empty($event->data->thumbnails['thumbnail']) ? '<div class="mec-tooltip-event-featured">'.$event->data->thumbnails['thumbnail'].'</div>' : '' ;
84
- $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.substr($event->data->content, 0, 320).' , ...</div>' : '' ;
85
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '' ;
86
  $speakers = '""';
87
  if ( !empty($event->data->speakers))
81
  $tooltip_content .= trim($start_time) ? '<div class="mec-tooltip-event-time"><i class="mec-sl-clock-o"></i> '.$start_time.(trim($end_time) ? ' - '.$end_time : '').'</div>' : '' ;
82
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '<div class="mec-tooltip-event-content">' : '' ;
83
  $tooltip_content .= !empty($event->data->thumbnails['thumbnail']) ? '<div class="mec-tooltip-event-featured">'.$event->data->thumbnails['thumbnail'].'</div>' : '' ;
84
+ $tooltip_content .= !empty(!empty($event->data->content)) ? '<div class="mec-tooltip-event-desc">'.$this->main->mec_content_html($event->data->content, 320).' , ...</div>' : '' ;
85
  $tooltip_content .= (!empty($event->data->thumbnails['thumbnail']) || !empty($event->data->content)) ? '</div>' : '' ;
86
  $speakers = '""';
87
  if ( !empty($event->data->speakers))
assets/css/frontend.css CHANGED
@@ -142,6 +142,16 @@
142
  color: #fff;
143
  }
144
 
 
 
 
 
 
 
 
 
 
 
145
  /* Form Builder Button */
146
  .mec-booking-form-container button {
147
  display: block;
142
  color: #fff;
143
  }
144
 
145
+ /* WooCommerce Intagration Add To Cart Button */
146
+ .mec-wrap #mec_woo_add_to_cart_btn_r {
147
+ min-width: 155px;
148
+ margin-top: 5px;
149
+ border-radius: 2px;
150
+ box-shadow: 0 2px 1px rgba(0,0,0,.08);
151
+ float: left;
152
+ text-align: center;
153
+ }
154
+
155
  /* Form Builder Button */
156
  .mec-booking-form-container button {
157
  display: block;
assets/css/frontend.min.css CHANGED
@@ -1 +1 @@
1
- .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left}button#mec-book-form-back-btn-step-3{float:none}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .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-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .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-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .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-fes-form .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-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;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 #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.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}@-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-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#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 #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;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:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.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 input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;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-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;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 #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .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)}.mec-fes-list .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:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;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-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;width:calc(100% + 1px);height:100%;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}
1
+ .lity-container,.mec-wrap,.mec-wrap div:not([class^=elementor-]){font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}.entry-content .mec-wrap h1,.entry-content .mec-wrap h2,.entry-content .mec-wrap h3,.entry-content .mec-wrap h4,.entry-content .mec-wrap h5,.entry-content .mec-wrap h6,.mec-wrap h1,.mec-wrap h2,.mec-wrap h3,.mec-wrap h4,.mec-wrap h5,.mec-wrap h6{font-family:Montserrat,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;color:#171c24;font-weight:300;font-style:inherit;letter-spacing:normal;clear:none}.mec-wrap h1{font-size:50px;line-height:1.16;margin-bottom:12px;letter-spacing:-1px}.mec-wrap h2{font-size:36px;line-height:1.14;margin-bottom:10px}.mec-wrap h3{font-size:28px;line-height:1.2;margin-bottom:8px}.mec-wrap h4{font-size:24px;line-height:1.2;margin-bottom:10px}.mec-wrap h5{font-size:18px;line-height:1.3;margin-bottom:7px}.mec-wrap h6{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-wrap .subheader{color:#849098}.mec-wrap h1 strong{font-weight:700}.mec-wrap p{margin:0 0 20px 0;color:#616161;font-size:14px;line-height:1.8}.mec-wrap .mec-event-article .mec-color-hover{box-shadow:none;border:none}.mec-wrap abbr,.mec-wrap acronym{cursor:auto;border:none}.entry-content .mec-wrap a{box-shadow:none}.mec-wrap .button,.mec-wrap a.button:not(.owl-dot),.mec-wrap button:not(.owl-dot),.mec-wrap input[type=button],.mec-wrap input[type=reset],.mec-wrap input[type=submit]{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#24ca4f;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease}.mec-wrap .button:hover,.mec-wrap a.button:hover,.mec-wrap button:hover,.mec-wrap input[type=button]:hover,.mec-wrap input[type=reset]:hover,.mec-wrap input[type=submit]:hover{background:#222;color:#fff}.mec-wrap #mec_woo_add_to_cart_btn_r{min-width:155px;margin-top:5px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08);float:left;text-align:center}.mec-booking-form-container button{display:block}.vertical-space,.vertical-space1,.vertical-space2,.vertical-space3,.vertical-space4,.vertical-space5{display:block;width:100%;margin:0;clear:both;border:0 none;height:20px}.vertical-space2{height:40px}.vertical-space3{height:60px}.vertical-space4{height:80px}.vertical-space5{height:100px}@media only screen and (max-width:479px){.vertical-space,.vertical-space1{height:8px}.vertical-space2{height:14px}.vertical-space3{height:28px}.vertical-space4{height:40px}.vertical-space5{height:60px}}@media only screen and (max-width:960px){.vertical-space,.vertical-space1{height:12px}.vertical-space2{height:18px}.vertical-space3{height:36px}.vertical-space4{height:50px}.vertical-space5{height:80px}}.mec-wrap abbr{cursor:auto;border-bottom:0}@-webkit-keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotating{from{-ms-transform:rotate(0);-moz-transform:rotate(0);-webkit-transform:rotate(0);-o-transform:rotate(0);transform:rotate(0)}to{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mec-wrap{font:14px/25px sans-serif;font-family:Montserrat,Helvetica,Arial,sans-serif;font-weight:400;color:#626262}.mec-wrap .mec-events a{border-bottom:none}.mec-wrap .mec-container a{box-shadow:none}.mec-event-content p{font-family:Roboto,sans-serif;font-weight:300}.mec-wrap .mec-clear:after,.mec-wrap .mec-clear:before{content:" ";display:table}.mec-wrap .mec-clear:after{clear:both}.mec-events-button{background:#fff;padding:12px 34px;font-size:13px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;margin-right:10px;transition:.3s}.mec-wrap .mec-events-button:hover{color:#fff}.mec-no-event{display:none}#mec-active-current{display:block!important}.current-hide #mec-active-current{display:none!important}.mec-event-grid-classic .mec-event-article{position:relative;border:2px solid #e3e3e3;box-shadow:0 2px 0 0 rgba(0,0,0,.016);margin-bottom:30px;max-width:none}.mec-event-grid-classic .mec-event-content{background:#fff;color:#767676;padding:0 20px 5px;text-align:center;min-height:125px}.mec-event-grid-classic .mec-event-title{color:#202020;margin:10px 0;font-weight:700;font-size:20px;letter-spacing:1px;text-transform:uppercase}.mec-event-grid-classic .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-classic .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;color:#fff;padding:3px 20px;margin:0 -20px 20px -20px;text-align:center}.mec-event-grid-classic .mec-event-content p{font-size:15px;color:#8a8a8a}.mec-event-grid-classic .mec-event-detail{display:none}.mec-event-grid-classic img{margin-bottom:0;width:100%}.mec-event-footer{position:relative;border-top:1px solid #efefef;padding:20px;min-height:80px;margin:0;background:#fafafa}.mec-event-sharing-wrap{left:15px;position:absolute;list-style:none;margin:0}.mec-event-sharing-wrap .mec-event-sharing{position:absolute;padding:8px 0 2px;left:-6px;bottom:54px;margin:0;margin-top:6px;border-radius:5px;width:50px;visibility:hidden;opacity:0;border:1px solid #e2e2e2;background:#fff;box-shadow:0 0 9px 0 rgba(0,0,0,.06);z-index:99;-webkit-transition:all .18s ease;transition:all .18s ease}.mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-sharing-wrap .mec-event-sharing:before{content:'';display:block;position:absolute;bottom:-10px;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-event-sharing-wrap .mec-event-sharing:before{bottom:-21px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-sharing-wrap .mec-event-sharing:after{bottom:-19px;border-color:#fff transparent transparent transparent}.mec-event-sharing-wrap:hover .mec-event-sharing{opacity:1;visibility:visible}.mec-event-sharing-wrap li{text-align:center;border:0;display:block;margin-right:2px;overflow:hidden;margin:0 auto 6px;width:38px}.mec-event-sharing-wrap:hover>li{cursor:pointer;background-color:#40d9f1}.mec-event-sharing-wrap:hover li a{color:#fff}.mec-event-sharing-wrap>li:first-of-type{border:1px solid #d9d9d9}.mec-event-sharing-wrap li a,.mec-event-sharing-wrap:hover li ul li a{border:none;color:#767676}.mec-event-sharing-wrap li i{width:36px;height:36px;display:table-cell;vertical-align:middle}.mec-event-sharing-wrap li svg{height:16px}.mec-event-sharing-wrap .mec-event-sharing li a{display:block}.mec-event-sharing-wrap .mec-event-sharing li:hover a{color:#40d9f1}.mec-event-sharing .mec-event-share:hover .event-sharing-icon{background:#40d9f1;border-width:0 1px 0;cursor:pointer}.mec-event-sharing .mec-event-map{border-width:1px 0 1px}.mec-event-footer .mec-booking-button{box-shadow:none;transition:all .21s ease;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:1px solid #e8e8e8;position:absolute;top:20px;right:15px;padding:0 16px;line-height:37px;height:38px}.mec-event-footer .mec-booking-button:hover{background:#191919;color:#fff;border-color:#191919}@media only screen and (max-width:960px){.mec-event-grid-classic{margin-bottom:30px}}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:36px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:5px 0;width:100%;position:absolute;top:15px;padding:0}.mec-skin-grid-container.mec-widget{padding-top:18px}.mec-widget .mec-event-grid-classic.mec-owl-carousel{padding:20px 0 16px}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav{margin:0;width:100%;position:absolute;top:0;padding:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav div{position:absolute;background:#fff;line-height:0;width:34px;height:26px;padding:6px;text-align:center;margin-top:-17px;border-radius:3px;border:1px solid #e2e2e2;text-align:center;box-shadow:0 2px 0 0 rgba(0,0,0,.028);transition:all .33s ease}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-next{right:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .owl-nav .owl-prev{left:0}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-sharing{display:none}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer{text-align:center}.mec-widget .mec-event-grid-classic.mec-owl-carousel .mec-event-footer .mec-booking-button{position:static;padding:11px 16px}.widget .mec-event-footer ul.mec-event-sharing-wrap li a.mec-event-share-icon{padding:0}@media screen and (min-width:56.875em){.mec-widget .mec-month-container dl{margin-bottom:0}}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-footer{text-align:right}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap{left:5px;padding-left:5px}.mec-widget .mec-event-grid-classic.owl-carousel .mec-event-sharing-wrap .mec-event-sharing{left:0}.mec-widget .mec-event-sharing-wrap .mec-event-sharing{position:absolute;top:auto;bottom:52px;margin:0;margin-top:0;border-radius:5px}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:after{top:auto;bottom:-17px;border-color:#fff transparent transparent transparent}.mec-widget .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-18px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-grid-clean{margin-bottom:10px;max-width:none}.mec-event-grid-clean .mec-event-article{margin-bottom:30px;position:relative;border:1px solid #e2e2e2;text-align:center;padding:15px 15px 0;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-clean .mec-event-content{background:#fff;color:#767676;padding:25px 16px 0;text-align:left}.mec-event-grid-clean .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:21px;text-transform:capitalize}.mec-event-grid-clean .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-clean .mec-event-date{font-weight:400;font-size:11px;text-transform:uppercase;letter-spacing:1px;background-color:#40d9f1;color:#fff;padding:3px 0;margin:0;text-align:center}.mec-event-grid-clean .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-clean img{margin-bottom:0;width:100%}.mec-event-grid-clean .event-grid-t2-head{margin-bottom:10px;color:#fff;padding:9px 14px 6px;text-align:left}.mec-event-grid-clean .event-grid-t2-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-clean .event-grid-t2-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-clean .event-grid-t2-head .mec-event-detail{font-size:12px}.mec-event-grid-clean .mec-event-sharing-wrap{left:0}.mec-event-grid-clean .mec-event-footer{position:relative;border-top:2px solid;padding:20px 0;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-clean .mec-event-footer .mec-booking-button{right:0}.mec-event-grid-clean .row{margin-bottom:30px}.mec-event-grid-modern{margin-bottom:10px;max-width:none}.mec-event-grid-modern .mec-event-article{position:relative;border:1px solid #e2e2e2;text-align:center;margin-bottom:30px;padding:45px 15px 10px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-modern .mec-event-content{background:#fff;color:#767676;padding:35px 15px 10px;text-align:left}.mec-event-grid-modern .mec-event-title{color:#202020;margin:0 0 10px 0;font-weight:700;font-size:24px;text-transform:none;letter-spacing:-1px}.mec-event-grid-modern .mec-event-title a{color:#202020;transition:all .24s ease}.mec-event-grid-modern .mec-event-content p{font-size:15px;color:#9a9a9a;line-height:1.54}.mec-event-grid-modern img{margin-bottom:0;width:100%}.mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:9px 14px 6px;text-align:left}.mec-event-grid-modern .event-grid-modern-head .mec-event-date{font-size:50px;line-height:50px;float:left;margin-right:11px}.mec-event-grid-modern .event-grid-modern-head .mec-event-month{text-transform:uppercase;font-size:17px;line-height:20px;padding-top:4px}.mec-event-grid-modern .event-grid-modern-head .mec-event-detail{font-size:12px}.mec-event-grid-modern .event-grid-modern-head .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-event-grid-modern .mec-event-footer{position:relative;height:90px;padding:20px 0;border:none;margin:0 14px;text-align:left;background:0 0}.mec-event-grid-modern .mec-event-footer .mec-booking-button{right:auto;left:0}.mec-event-grid-modern .mec-event-sharing-wrap{left:auto;right:0}.mec-event-grid-modern .mec-event-sharing{left:auto;right:-6px}.mec-event-grid-modern .mec-event-sharing-wrap li{border-radius:55px}.mec-event-grid-modern .row{margin-bottom:0}@media only screen and (max-width:479px){.mec-event-grid-modern .mec-event-article{padding-bottom:30px}.mec-event-grid-modern .mec-event-sharing{top:60px;left:0;right:auto}.mec-event-grid-modern .mec-event-footer .mec-booking-button{top:0}}span.mec-event-title-soldout{font-size:8px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;background:#e63360;color:#fff;padding:3px 8px;line-height:1;border-radius:15px;white-space:nowrap;vertical-align:middle}.mec-event-grid-colorful .mec-event-article{min-height:400px;border:none;box-shadow:none;background:#40d9f1;padding-top:25px;margin:0;color:#fff}.mec-event-grid-colorful .mec-event-content{background:0 0}.mec-event-grid-colorful .event-grid-modern-head,.mec-event-grid-colorful .event-grid-modern-head .mec-event-date,.mec-event-grid-colorful .event-grid-modern-head .mec-event-day,.mec-event-grid-colorful .mec-event-content p,.mec-event-grid-colorful .mec-event-sharing-wrap>li>a,.mec-event-grid-colorful .mec-event-title a{color:#fff}.mec-event-grid-colorful .mec-event-footer .mec-booking-button{border:none}.mec-event-grid-colorful .mec-event-sharing-wrap>li{border-color:#fff}.mec-event-grid-colorful .mec-event-sharing-wrap:hover>li{background:#333;border-color:#333}.mec-event-grid-colorful .mec-event-title a.mec-color-hover:hover{color:#fff;text-decoration:underline}.mec-event-grid-colorful .mec-event-title .event-color{display:none}.mec-event-grid-colorful div[class^=col-md-]{padding:0 1px 1px 0;margin:0}@media only screen and (min-width:768px){.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-day{font-size:26px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-month{font-size:15px}.mec-wrap.mec-sm959.mec-event-grid-colorful .event-grid-modern-head .mec-event-date{font-size:50px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-title{font-size:21px}.mec-wrap.mec-sm959.mec-event-grid-colorful .mec-event-content p{font-size:13px}}@media only screen and (min-width:768px) and (max-width:1200px){.mec-wrap.mec-sm959.mec-event-grid-colorful div[class^=col-md-]{width:50%}}.mec-event-list-minimal .mec-event-article{border-bottom:1px solid #efefef;padding:24px 0 16px}.mec-event-list-minimal .mec-wrap .col-md-9{padding:0}.mec-event-list-minimal .mec-event-date{position:relative;float:left;margin-right:30px;color:#fff;width:52px;padding:6px 4px 3px;text-align:center;text-transform:uppercase;border-radius:3px}.mec-event-list-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px}.mec-event-list-minimal .mec-event-date:after{display:block;content:"";position:absolute;width:50px;left:1px;top:1px;height:34px;background:rgba(255,255,255,.1);box-shadow:0 4px 4px rgba(0,0,0,.02)}.mec-event-list-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:0;padding-top:10px}.mec-event-list-minimal .mec-event-detail,.mec-event-list-minimal .mec-time-details{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-list-minimal .btn-wrapper{text-align:right;padding-right:0;padding-top:6px}.mec-event-list-minimal .btn-wrapper .mec-detail-button{border-bottom:0;margin-bottom:14px;margin-right:0;box-shadow:none}.mec-event-list-minimal a.mec-detail-button{text-align:center;display:inline-block;background:#ededed;color:#191919;padding:12px;border-radius:2px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;transition:all .24s ease}.mec-event-list-minimal a.mec-detail-button:hover{background:#292929;color:#fff}.vc_col-sm-4 .mec-event-list-minimal .mec-event-date,.vc_col-sm-6 .mec-event-list-minimal .mec-event-date{margin-right:12px}.vc_col-sm-4 .mec-event-list-minimal .mec-event-title,.vc_col-sm-6 .mec-event-list-minimal .mec-event-title{font-size:15px;letter-spacing:2px}@media only screen and (min-width:480px) and (max-width:767px){.mec-event-list-minimal .btn-wrapper{padding-left:0}.mec-event-list-minimal .mec-event-date{margin-right:10px}}@media only screen and (max-width:767px){.mec-event-list-minimal .btn-wrapper .mec-detail-button{display:block;text-align:center;margin:0;margin-top:16px;padding:8px}.mec-event-list-minimal .btn-wrapper{margin:12px 0}}@media only screen and (max-width:479px){.mec-event-list-minimal .mec-event-date{float:none;width:100%;margin-bottom:8px}.mec-event-list-minimal .mec-event-date span{display:inline;padding-right:25px;margin-right:7px;font-size:inherit}.mec-event-list-minimal .mec-event-date:after{width:45%;box-shadow:4px 0 4px rgba(0,0,0,.02)}.mec-event-list-minimal .btn-wrapper{text-align:center;padding-left:0}.mec-event-list-minimal{text-align:center}.mec-event-list-minimal .mec-event-detail{margin-bottom:10px}}.mec-wrap .mec-event-list-modern .mec-event-title{margin-top:0;margin-bottom:10px}.mec-event-list-modern .mec-event-article{border-bottom:1px solid #efefef;padding:30px 0 10px}.mec-event-list-modern .mec-event-article:last-child{border-bottom:none}.mec-event-list-modern .mec-event-title a{color:#191919;transition:all .24s ease;box-shadow:none}.mec-event-list-modern .mec-event-date{text-transform:uppercase;padding:10px 0}.mec-event-list-modern .mec-event-date .event-d{font-size:48px;display:table-cell;padding:10px 0 0}.mec-event-list-modern .mec-event-date .event-f{font-size:13px;display:table-cell;vertical-align:middle;padding-left:7px;font-weight:500;letter-spacing:3px;color:#777}.mec-event-list-modern .mec-event-detail{font-weight:300;color:#8a8a8a}.mec-event-list-modern .mec-event-detail .mec-time-details{display:inline}.mec-event-list-modern .mec-event-date .event-da{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:28px;font-weight:100;text-transform:uppercase;letter-spacing:-1px;text-align:left}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{border-radius:1px;letter-spacing:2px;border:1px solid #e6e6e6;color:#333;background-color:#fff;padding:13px 20px;font-weight:700;font-size:11px;box-shadow:0 2px 0 0 rgba(0,0,0,.016);transition:all .28s ease}.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover{border-color:#222;background:#222;color:#fff}.mec-event-list-modern .mec-event-title{font-weight:700;font-size:20px;text-transform:uppercase;letter-spacing:1px}.mec-event-list-modern .mec-event-detail{color:#9a9a9a;font-size:15px;font-weight:300;line-height:25px;font-family:Roboto,sans-serif}.mec-event-list-modern .mec-btn-wrapper{text-align:right;padding:10px 0;text-transform:uppercase}.mec-event-list-modern .mec-event-sharing{position:relative;margin:10px 0}.mec-event-list-modern .mec-event-sharing>li{display:inline-block;border:none;border-radius:50%;margin-right:3px}.mec-event-list-modern .mec-event-sharing>li:hover{display:inline-block}.mec-event-list-modern .mec-event-sharing>li:hover a i{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-event-list-modern .mec-event-sharing>li i{width:36px;display:inline-block;line-height:35px;color:#767676;text-align:center;border-radius:50%;border:1px solid #ddd;font-size:14px}.mec-event-list-modern .mec-event-sharing .mec-event-share:hover .mec-event-sharing-icon{background:#40d9f1;border-color:#40d9f1;cursor:pointer;border-radius:50%}.mec-event-list-modern .mec-event-sharing li:hover a i{background:#40d9f1}@media only screen and (min-width:768px){.mec-event-list-modern .mec-event-article{position:relative;min-height:160px;overflow:hidden}.mec-event-list-modern .col-md-2.col-sm-2{width:210px;position:absolute;left:0;top:20px}.mec-event-list-modern .col-md-4.col-sm-4.mec-btn-wrapper{width:180px;padding:0;position:absolute;right:0;top:30%}.mec-event-list-modern .col-md-6.col-sm-6{width:100%;padding-left:225px;padding-right:195px}}@media only screen and (max-width:767px){.mec-event-list-modern .mec-btn-wrapper .mec-booking-button{letter-spacing:1px;border:1px solid #e1e1e1;padding:8px 16px}.mec-event-list-modern .mec-btn-wrapper{padding:0 0 12px}.mec-event-list-modern .mec-event-sharing{margin-bottom:0}}.mec-event-grid-minimal .mec-event-article{margin:15px 0;min-height:80px;display:table}.mec-event-grid-minimal .event-detail-wrap{display:table-cell;vertical-align:middle}.mec-event-grid-minimal .mec-event-date{width:70px;float:left;margin-right:20px;padding:12px 16px 10px;text-align:center;text-transform:uppercase;border-radius:4px;border:1px solid #e6e6e6;transition:all .37s ease-in-out;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-grid-minimal .mec-event-date span{display:block;font-size:24px;font-weight:700;text-align:center;margin-bottom:4px;color:#2a2a2a;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:16px;text-transform:uppercase;transition:color .3s ease}.mec-event-grid-minimal .mec-event-title a{color:#191919;transition:color .3s ease}.mec-event-grid-minimal .mec-event-detail{font-size:15px;font-weight:300;line-height:1;letter-spacing:0;color:#9a9a9a;font-family:Roboto,sans-serif}.mec-event-grid-minimal .mec-event-date:hover{color:#fff}.mec-event-grid-minimal .mec-event-date:hover span{color:#fff}.mec-event-list-classic .mec-event-article{padding:12px 0;margin-bottom:20px}.mec-event-list-classic .mec-event-image{float:left;width:86px;margin-right:20px}.mec-event-list-classic .mec-event-date,.mec-event-list-classic .mec-event-time{font-weight:400;font-size:13px;letter-spacing:0;line-height:18px;text-align:left;display:initial;margin-right:12px}.mec-event-list-classic .mec-event-time .mec-time-details,.mec-event-list-classic .mec-event-time i{display:inline;margin-right:3px}.mec-event-list-classic .mec-event-date span{font-weight:500;margin-bottom:6px}.mec-event-list-classic .mec-event-title{font-size:15px;margin:10px 0 12px;font-weight:700;text-transform:uppercase}.mec-event-list-classic .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-list-classic .mec-event-detail{color:#777;font-weight:400;line-height:12px;font-size:12px;overflow:hidden}.mec-event-list-classic a.magicmore{padding:10px 16px;color:#fff;background:#222;letter-spacing:2px;font-size:11px}.mec-event-list-classic a.magicmore:after{content:"";display:none}.mec-event-list-classic a.magicmore:hover{color:#40d9f1}.mec-event-grid-simple .mec-event-article{position:relative;margin-bottom:30px}.mec-event-grid-simple .mec-event-article:after{border-right:1px solid #e6e6e6;height:60px;position:absolute;top:50%;margin-top:-30px;right:-1px}.mec-event-grid-simple .row div:last-child .mec-event-article:after{border:none}.mec-event-grid-simple .row{margin:15px 0 30px;text-align:center}.mec-event-grid-simple .mec-event-date{padding:0;margin:0;text-transform:capitalize;font-size:12px;font-weight:700}.mec-event-grid-simple .mec-event-title{margin-top:0;margin-bottom:10px;font-weight:700;line-height:21px;font-size:15px;padding-top:5px;text-transform:uppercase;transition:color .37s ease}.mec-event-grid-simple .mec-event-title a{color:#494949;transition:color .3s ease}.mec-event-grid-simple .mec-event-detail{font-family:Roboto,sans-serif;font-weight:400;line-height:1;letter-spacing:0;font-size:13px;color:#777}.mec-event-grid-simple:hover .mec-event-title{color:#40d9f1}.mec-event-grid-simple:hover .mec-event-date{background:0 0}.event-last:after{display:none}@media only screen and (max-width:767px){.mec-event-grid-simple .mec-event-article{padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #eee}.mec-event-grid-simple .mec-event-article:after{border:none}}.mec-event-grid-novel .mec-event-article{position:relative;margin-bottom:30px;padding:60px 5% 60px 7%;border:1px solid rgba(255,255,255,.12);border-radius:10px;background-color:#0050fd;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;z-index:1}.mec-event-grid-novel .mec-event-article .novel-grad-bg{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:10px;opacity:0;z-index:-1;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.mec-event-grid-novel .mec-event-article:hover{-webkit-box-shadow:0 13px 36px 0 rgba(0,0,0,.23);box-shadow:0 13px 36px 0 rgba(0,0,0,.23);border-color:transparent}.mec-event-grid-novel .mec-event-article:hover .novel-grad-bg{background-image:-webkit-gradient(linear,left top,right top,from(#262e32),to(#0e1015));background-image:-webkit-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:-o-linear-gradient(left,#262e32 0,#0e1015 100%);background-image:linear-gradient(90deg,#262e32 0,#0e1015 100%);opacity:1}.mec-event-grid-novel .mec-event-image{float:left;width:150px;height:150px}.mec-event-grid-novel .mec-event-image img{width:150px;height:150px;border-radius:50%}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:200px}.mec-event-grid-novel .mec-event-content h4{position:relative;margin-bottom:10px;display:inline-block}.mec-event-grid-novel .mec-event-content h4 a{font-size:24px;line-height:35px;color:#fafcff}.mec-event-grid-novel .mec-event-content h4::before{content:'';position:absolute;top:8px;left:-30px;width:17px;height:17px;background:#5cd0ed;opacity:.4;border-radius:50%}.mec-event-grid-novel .mec-event-content h4::after{content:'';position:absolute;top:12px;left:-26px;width:9px;height:9px;background:#5cd0ed;border-radius:50%}.mec-event-grid-novel .mec-event-address,.mec-event-grid-novel .mec-event-detail,.mec-event-grid-novel .mec-event-month{position:relative;padding-left:35px;font-size:15px;line-height:30px;color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-address::before,.mec-event-grid-novel .mec-event-detail::before,.mec-event-grid-novel .mec-event-month::before{position:absolute;top:6px;left:6px;font-size:17px;font-family:simple-line-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}.mec-event-grid-novel .mec-event-month::before{content:"\e075"}.mec-event-grid-novel .mec-event-detail::before{content:"\e081"}.mec-event-grid-novel .mec-event-address::before{content:"\e096"}.mec-event-grid-novel .mec-event-footer{clear:both;padding:20px 0;border-top:none;background:0 0}.mec-event-grid-novel .mec-event-footer .mec-booking-button{right:auto;left:0;height:42px;width:148px;padding:0 20px;font-size:14px;font-weight:400;line-height:42px;text-align:center;color:#fff;background:0 0;border-color:rgba(255,255,255,.1);border-radius:50px}.mec-event-grid-novel .mec-event-footer .mec-booking-button:hover{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap{left:175px;cursor:pointer}.mec-event-grid-novel .mec-event-sharing-wrap>li{border-color:rgba(255,255,255,.1);border-radius:50%}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing{top:-5px;left:0;padding:5px 10px 2px 50px;min-width:150px;width:inherit;height:37px;background-color:rgba(255,255,255,.1);-webkit-box-shadow:none;box-shadow:none;border:none;border-radius:50px}.mec-event-grid-novel .mec-event-sharing-wrap:hover>li{background-color:rgba(255,255,255,.1)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::after,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing::before{display:none}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon,.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a,.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li i{display:inline}.mec-event-grid-novel .mec-event-sharing .mec-event-social-icon a{padding:0 10px}.mec-event-grid-novel .mec-event-sharing-wrap>li a{color:#fff}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a{color:rgba(255,255,255,.4)}.mec-event-grid-novel .mec-event-sharing-wrap .mec-event-sharing li a:hover{color:rgba(255,255,255,1)}@media only screen and (max-width:1200px){.mec-event-grid-novel .row .col-md-6.col-sm-6{width:100%;float:none}.mec-event-grid-novel .mec-event-image{float:none;margin-top:-20px;margin-bottom:20px}.mec-event-grid-novel .mec-event-detail-wrap{margin-left:20px}.mec-event-grid-novel .mec-event-footer{margin-top:30px}}@media only screen and (max-width:767px){.mec-event-grid-novel .mec-event-footer{margin-top:0;padding-top:30px;margin-bottom:24px}.mec-event-grid-novel .mec-event-footer .mec-booking-button{display:block;position:relative}.mec-event-grid-novel .mec-event-sharing-wrap{left:0;bottom:-55px}.mec-event-grid-novel .mec-event-content h4 a{font-size:20px;line-height:1.3}}.mec-event-cover-modern{position:relative}.mec-event-cover-modern .mec-event-cover-a{background:0 0;position:absolute;color:#fff;bottom:0;left:0;text-decoration:none}.mec-event-cover-modern .mec-event-cover-a .mec-event-overlay{transition:all .5s;opacity:.8;width:100%;height:100%;position:absolute}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-overlay{opacity:1}.mec-event-cover-modern .mec-event-detail{padding:40px;position:relative}.mec-event-cover-modern .mec-event-cover-a:hover .mec-event-tag{color:#333;transition:all .5s}.mec-event-cover-modern .mec-event-cover-a .mec-event-title:hover{text-decoration:underline}.mec-event-cover-modern .mec-event-tag{background:#fff;display:inline-block;padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px}.mec-event-cover-modern .mec-event-date{text-transform:uppercase;font-size:17px;font-weight:300}.mec-event-cover-modern .mec-event-title{color:#fff;text-transform:uppercase;font-size:40px;font-weight:700;margin:6px 0}.mec-event-cover-modern .mec-event-place{font-weight:400;font-size:18px;font-family:Roboto,sans-serif}@media only screen and (max-width:767px){.mec-event-cover-modern .mec-event-cover-a{width:100%}}.mec-event-cover-classic{position:relative;overflow:hidden;background:#fff;padding:6px;border:1px solid #e8e8e8}.mec-event-cover-classic .mec-event-overlay{position:absolute;left:6px;right:6px;bottom:6px;top:6px;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-cover-classic:hover .mec-event-overlay{background-color:rgba(36,36,36,.6)}.mec-event-cover-classic .mec-event-content{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out}.mec-event-cover-classic .mec-event-date{font-size:14px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-cover-classic .mec-event-date span{display:block;font-weight:700;font-size:16px}.mec-event-cover-classic .mec-event-title{color:#fff;margin:20px 0 38px;font-size:24px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-cover-classic .mec-btn-wrapper{text-align:left}.mec-event-cover-classic .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-cover-classic .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:12px 20px;letter-spacing:3px;font-size:12px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-cover-classic .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-cover-classic .mec-event-image img{min-width:100%}@media only screen and (max-width:960px){.mec-event-cover-classic .mec-event-content{padding:20px}.mec-event-cover-classic .mec-event-button{font-size:11px;padding:7px 10px;letter-spacing:1px}.mec-event-cover-classic .mec-event-title{font-size:19px;margin:15px 0 25px}.mec-event-cover-classic .mec-event-date{font-size:12px}}@media only screen and (max-width:767px){.mec-event-cover-classic{margin-bottom:30px}}@media only screen and (max-width:479px){.mec-event-cover-classic .mec-event-content{padding:15px;font-size:15px}.mec-event-cover-classic .mec-event-title{font-size:15px;margin:10px 0}.mec-event-cover-classic .mec-event-button{font-size:10px;padding:6px;letter-spacing:1px}.mec-event-cover-classic .mec-event-icon{padding:10px}}.mec-load-more-wrap{text-align:center;display:block;width:100%;padding-top:20px;text-align:center;position:relative}.mec-load-more-button{box-shadow:none;transition:all .21s ease;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;background:#fff;color:#767676;border:2px solid #e8e8e8;border-radius:50px;padding:0 28px;margin-bottom:20px;cursor:pointer;line-height:40px;font-family:Montserrat,Helvetica,Arial,sans-serif;height:42px;display:inline-block}.mec-load-more-button:hover{background:#191919;color:#fff;border-color:#191919}.mec-load-more-loading{content:url(../img/ajax-loader.gif);cursor:wait;background:0 0;border-style:none}.mec-load-more-loading:hover{background:0 0}.mec-modal-preloader,.mec-month-navigator-loading{width:100%;height:100%;background:no-repeat rgba(255,255,255,.88) url(../img/ajax-loader.gif) center;border-style:none;position:fixed;left:0;right:0;bottom:0;top:0;z-index:9}.mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:1024px}.mec-calendar-side .mec-calendar-table{min-height:450px}.mec-skin-weekly-view-events-container.mec-month-navigator-loading{margin-top:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-skin-daily-view-events-container.mec-month-navigator-loading{margin-top:0}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar-side .mec-calendar-table{min-height:1px}}@media only screen and (max-width:479px){.mec-calendar-side .mec-calendar-table{min-height:1px}}.mec-event-cover-clean{position:relative;border:1px solid #e6e6e6;padding:8px}.mec-event-cover-clean .mec-event-overlay{height:100%;background-color:rgba(36,36,36,.4);position:absolute;width:100%;left:0;border:8px solid #fff;top:0;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-content{color:#fff;position:absolute;bottom:20px;padding:40px 60px;transition:all .5s ease-in-out}.mec-event-cover-clean .mec-event-title{color:#fff;font-weight:700;margin:46px 0 19px;font-size:29px;text-transform:uppercase;text-shadow:0 0 1px rgba(0,0,0,.5)}.mec-event-cover-clean .mec-event-title a{color:#fff;transition:all .5s;text-decoration:none;outline:0;border:none;box-shadow:none}.mec-event-cover-clean .mec-event-title a:hover{text-decoration:underline}.mec-event-cover-clean .mec-event-date{position:absolute;top:-20px;right:60px;color:#fff;width:60px;padding:14px 10px;z-index:1}.mec-event-cover-clean .mec-event-date div{text-align:center;text-transform:uppercase;letter-spacing:1px;line-height:16px}.mec-event-cover-clean .mec-event-date .dday{padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.5);margin-bottom:13px;font-size:24px}.mec-event-cover-clean .mec-event-date .dmonth{letter-spacing:2px}.mec-event-cover-clean .mec-event-place{font-size:18px;font-family:Roboto,sans-serif}.mec-event-cover-clean .mec-event-image img{width:100%}@media only screen and (max-width:768px){.mec-event-cover-clean .mec-event-content{padding:20px;bottom:5px}.mec-event-cover-clean .mec-event-title{font-size:23px}.mec-event-cover-clean .mec-event-date{right:20px;padding:10px;width:50px}}@media only screen and (max-width:479px){.mec-event-cover-clean .mec-event-content{padding:10px}.mec-event-cover-clean .mec-event-title{font-size:19px;padding-right:25px}.mec-event-cover-clean .mec-event-date{right:-20px;top:-10px}.mec-event-cover-clean .mec-event-detail{font-size:12px}}.mec-month-divider{text-align:center;margin:60px 0 40px 0}.widget .mec-month-divider{margin:10px 0}.mec-month-divider span{text-transform:uppercase;font-size:22px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-month-divider span:before{border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-30px;left:50%;width:60px}.widget .mec-month-divider span{font-size:13px}.mec-event-list-standard .mec-events-pagination{margin-top:60px;border-top:4px solid #ebebeb;min-height:80px;padding-top:20px}.mec-event-list-standard .mec-events-pagination .mec-events-pag-previous{float:left;margin-left:0}.mec-event-list-standard .mec-events-pagination .mec-events-pag-next{float:right;margin-right:0}.mec-event-list-standard .mec-event-article{position:relative;display:block;margin-bottom:25px;border:1px solid #e9e9e9;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-list-standard .mec-topsec{display:table;width:100%}.mec-event-list-standard .col-md-3.mec-event-image-wrap{padding-left:0}.mec-event-list-standard .mec-event-content{padding-top:15px;padding-right:30px}.mec-event-list-standard .mec-event-title{font-size:29px;font-weight:700;letter-spacing:-1px;margin:0 0 10px}.mec-event-list-standard .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-list-standard .mec-col-table-c{display:table-cell;height:100%;vertical-align:middle;float:none!important}.mec-event-list-standard .mec-col-table-c.mec-event-meta-wrap{padding-top:15px}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{vertical-align:top}.mec-topsec .mec-event-image{line-height:1px}.mec-event-list-standard .mec-event-meta-wrap{border-left:1px solid #eee}.mec-event-list-standard .mec-time-details{text-transform:uppercase;font-size:11px;font-weight:300;padding-top:0;text-align:left;padding-left:30px}.mec-event-list-standard .mec-event-meta .mec-event-address{font-style:normal;letter-spacing:0;font-size:13px;color:#8a8a8a}.mec-event-list-standard .mec-event-meta span.mec-event-d,.mec-event-list-standard .mec-event-meta span.mec-event-m{font-size:17px;font-weight:700;padding-right:6px;color:#444;text-transform:uppercase}.mec-event-list-standard .mec-date-details,.mec-event-list-standard .mec-time-details,.mec-event-list-standard .mec-venue-details{position:relative;padding-left:28px;margin-bottom:10px}.mec-event-list-standard .mec-date-details:before,.mec-event-list-standard .mec-time-details:before,.mec-event-list-standard .mec-venue-details:before{content:"\f041";font-family:fontawesome;position:absolute;left:6px;font-size:15px}.mec-event-list-standard .mec-date-details:before{content:"\f073"}.mec-event-list-standard .mec-time-details:before{content:"\f017"}.mec-event-list-minimal .mec-event-title a{color:#292929;transition:color .3s ease}.mec-event-meta-wrap .mec-price-details{margin-bottom:10px}.mec-price-details i{margin-right:5px;vertical-align:text-top}.mec-event-meta-wrap .mec-event-meta .mec-price-details i:before{font-size:15px}@media only screen and (max-width:960px){.mec-event-list-standard .mec-topsec{display:block}.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:block;width:40%}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{display:block;min-height:230px}.mec-event-list-standard .mec-event-meta-wrap{display:block;border-left:none;border-top:1px solid #eee;width:100%;float:none;padding-top:20px}}@media only screen and (min-width:480px) and (max-width:960px){.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap{display:table-cell}}@media only screen and (max-width:479px){.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap,.mec-event-list-standard .mec-col-table-c.mec-event-image-wrap img{float:none;width:100%;padding:0}.mec-event-list-standard .mec-col-table-c.mec-event-content-wrap{padding:10px 10px 10px 30px}}.mec-wrap .mec-events-cal-links{margin-bottom:0}.mec-single-event #mec-wrap{padding:0;margin-top:35px}.mec-wrap .mec-single-title{margin-top:0;margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-event-content{padding:40px 0 30px;margin-bottom:10px}.mec-single-event .mec-events-meta-group-booking,.mec-single-event .mec-frontbox{margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-wrap #main-content{overflow:hidden;padding-top:35px}.mec-single-event .mec-map-get-direction-address-cnt{position:relative}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address{width:100%;height:46px;padding:13px 10px;margin-bottom:0;background:#fcfcfc;border:1px solid #e0e0e0;border-radius:0;box-shadow:inset 0 2px 5px rgba(0,0,0,.081)}.mec-single-event .mec-map-get-direction-address-cnt input.mec-map-get-direction-address:focus{color:#444;background:#fff;border-color:#b0b0b0;box-shadow:0 0 3px rgba(0,0,0,.2)}.mec-single-event .mec-map-get-direction-btn-cnt input{width:100%}.mec-single-event .mec-map-get-direction-reset{position:absolute;z-index:2;top:5px;right:10px;font-size:11px;cursor:pointer}.mec-events-meta-group-tags{margin-top:20px}.mec-events-meta-group-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-events-meta-group-tags a:hover{text-decoration:underline;background:#f9f9f9}.mec-local-time-details li{list-style:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative;border:none}.mec-single-event:not(.mec-single-modern) .mec-local-time-details ul{margin:0;padding-left:35px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3{border:none;padding-left:15px}.mec-single-event:not(.mec-single-modern) .mec-local-time-details h3:before{display:none}.mec-single-event.mec-single-modern i.mec-sl-speedometer{display:none}.mec-single-event .mec-events-meta-group-booking{padding-bottom:30px}.mec-single-event .mec-events-meta-group-booking ul{list-style:none;margin-left:0;padding-left:0}.mec-single-event .mec-events-meta-group-booking ul li{padding:0;list-style:none;margin-top:40px}.mec-single-event .mec-events-meta-group-booking h4{margin-bottom:20px;font-size:23px;font-weight:700}.mec-single-event .mec-events-meta-group-booking li h4{font-size:19px}.mec-single-event .mec-events-meta-group-booking button,.mec-single-event .mec-events-meta-group-booking input{border-radius:0;margin-bottom:6px}.mec-single-event .mec-events-meta-group-booking button{min-width:155px;margin-top:5px;margin-left:10px;border-radius:2px;box-shadow:0 2px 1px rgba(0,0,0,.08)}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button{background:#c4cace;float:left}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-back-button:hover{background:#000}.mec-single-event .mec-events-meta-group-booking button.mec-book-form-next-button{float:left}button#mec-book-form-back-btn-step-3{float:none}.mec-single-event .mec-book-form-coupon button{margin-left:0}.mec-single-event .mec-book-form-gateway-checkout button{margin-left:0}.mec-single-event .mec-single-event .mec-book-form-gateway-checkout button{margin-right:20px}.mec-single-event button#mec-book-form-back-btn-step-3{margin-left:0}.lity-content .mec-book-form-back-button{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px;background:#c4cace}.lity-content .mec-book-form-back-button:hover{background:#000}.lity-content button#mec-book-form-back-btn-step-3{float:none}.lity-content .mec-book-form-next-button{float:left}.mec-single-event .mec-book-first,.mec-single-event .mec-event-tickets-list{padding-left:15px;padding-right:15px}.mec-single-event label.mec-fill-attendees{margin-left:15px!important}.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available{display:block;margin-bottom:20px;margin-top:-17px;font-size:11px;color:#8a8a8a}.mec-single-event .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.mec-single-event .mec-events-meta-group-booking form{margin:0}.mec-single-event .mec-events-meta-group-booking h5 span,.mec-single-event .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;display:block;clear:none;padding:5px 1em 3px 0}.mec-single-event .mec-events-meta-group-booking h5 span{display:inline-block}.mec-single-event .mec-events-meta-group-booking h5 span.mec-ticket-variation-name{padding-right:5px;text-transform:capitalize}.mec-single-event .mec-events-meta-group-booking input::-webkit-input-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input:-moz-placeholder{color:#aaa}.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:330px;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both}.wbmec-mandatory{padding-left:5px;font-size:14px}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input,.mec-single-event .mec-events-meta-group-booking .mec-red-notification select,.mec-single-event .mec-events-meta-group-booking .mec-red-notification textarea{border:1px solid #ff3c3c}.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=checkbox],.mec-single-event .mec-events-meta-group-booking .mec-red-notification input[type=radio]{outline:1px solid #ff3c3c}@media only screen and (max-width:479px){.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking input[type=email],.mec-single-event .mec-events-meta-group-booking input[type=number],.mec-single-event .mec-events-meta-group-booking input[type=password],.mec-single-event .mec-events-meta-group-booking input[type=tel],.mec-single-event .mec-events-meta-group-booking input[type=text],.mec-single-event .mec-events-meta-group-booking select,.mec-single-event .mec-events-meta-group-booking textarea{width:100%}}.mec-single-event .mec-events-meta-group-booking input[type=email]:focus,.mec-single-event .mec-events-meta-group-booking input[type=number]:focus,.mec-single-event .mec-events-meta-group-booking input[type=password]:focus,.mec-single-event .mec-events-meta-group-booking input[type=tel]:focus,.mec-single-event .mec-events-meta-group-booking input[type=text]:.mec-single-event .mec-events-meta-group-booking input[type=date],.mec-single-event .mec-events-meta-group-booking select:focus,.mec-single-event .mec-events-meta-group-booking textarea:focus,focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-single-event .mec-events-meta-group-booking input[type=checkbox],.mec-single-event .mec-events-meta-group-booking input[type=radio]{margin-right:6px;margin-top:5px;min-height:20px;clear:none;margin:0 0 0 2px}.lity-container .mec-events-meta-group-booking input[type=radio]:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:18px;height:18px;margin:-1px 0 0 -3px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}.lity-container .mec-events-meta-group-booking input[type=radio]:checked:before,.mec-single-event .mec-events-meta-group-booking input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.lity-container .mec-events-meta-group-booking input[type=radio],.mec-single-event .mec-events-meta-group-booking input[type=radio]{min-height:0;margin:0;margin-right:6px}.mec-single-event .mec-events-meta-group-booking input[type=checkbox]{float:left}.lity-container .mec-events-meta-group-booking .mec_book_first_for_all,.mec-single-event .mec-events-meta-group-booking .mec_book_first_for_all{display:none}.mec-events-meta-group-booking ul.mec-book-price-details{list-style:none;border:1px solid #eee;padding:0;overflow:hidden}.mec-events-meta-group-booking ul.mec-book-price-details li{font-size:15px;color:#a9a9a9;list-style:none;padding:13px 18px;margin:0;float:left;border-right:1px solid #eee}.mec-events-meta-group-booking ul.mec-book-price-details li:last-child{border-right:none}.mec-events-meta-group-booking ul.mec-book-price-details li span.mec-book-price-detail-amount{font-weight:700;font-size:21px;color:#222}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label{height:14px;width:14px;background-color:transparent;border:1px solid #d4d4d4;position:relative;display:inline-block;-moz-transition:border-color ease .2s;-o-transition:border-color ease .2s;-webkit-transition:border-color ease .2s;transition:border-color ease .2s;cursor:pointer;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);vertical-align:middle;margin-right:3px;margin-top:-2px}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label{border-color:#008aff;box-shadow:0 2px 14px -3px #008aff}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{position:absolute;height:0;width:1px;background-color:#008aff;display:inline-block;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;-webkit-transform-origin:left top;transform-origin:left top;content:'';-webkit-transition:opacity ease .5;-moz-transition:opacity ease .5;transition:opacity ease .5}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:before,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:before{top:8px;left:7px;box-shadow:0 0 0 2px #fff;-moz-transform:rotate(-145deg);-ms-transform:rotate(-145deg);-o-transform:rotate(-145deg);-webkit-transform:rotate(-145deg);transform:rotate(-145deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::before{height:12px;-moz-animation:dothatopcheck .16s ease 0s forwards;-o-animation:dothatopcheck .16s ease 0s forwards;-webkit-animation:dothatopcheck .16s ease 0s forwards;animation:dothatopcheck .16s ease 0s forwards}.lity-container .mec-events-meta-group-booking label.wn-checkbox-label:after,.mec-single-event .mec-events-meta-group-booking label.wn-checkbox-label:after{top:6px;left:3px;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.lity-container .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after,.mec-single-event .mec-events-meta-group-booking input[type=checkbox]:checked+.wn-checkbox-label::after{-moz-animation:dothabottomcheck 80ms ease 0s forwards;-o-animation:dothabottomcheck 80ms ease 0s forwards;-webkit-animation:dothabottomcheck 80ms ease 0s forwards;animation:dothabottomcheck 80ms ease 0s forwards;height:4px}.mec-single-event .mec-events-meta-group-booking button[type=submit]:after,.mec-single-event a.button:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.mec-single-event .mec-events-meta-group-booking button[type=submit].loading:after,.mec-single-event a.button.loading:after{display:inline-block}.mec-single-event .mec-event-export-module{display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{display:table;width:100%}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{display:table-cell}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li:last-child{text-align:right}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a:hover{color:#fff}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul{padding-left:0;margin:15px 5px}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting{padding-left:0;margin:0}.mec-ticket-price{margin-left:10px;font-size:13px;font-weight:300}.mec-book-reg-field-checkbox label,.mec-book-reg-field-radio label{line-height:1.36}.mec-book-reg-field-checkbox input[type=checkbox],.mec-book-reg-field-radio input[type=radio]{float:left;margin-right:5px!important}.mec-ticket-available-spots .mec-event-ticket-description,.mec-ticket-available-spots .mec-event-ticket-price{font-size:11px}.mec-book-ticket-container .mec-reg-mandatory:nth-child(2) label:after,.mec-book-ticket-container .mec-reg-mandatory:nth-child(3) label:after,.mec-book-ticket-container .wbmec-mandatory{content:"";color:red;width:50px;height:50px;font-size:14px;padding-left:5px}@media only screen and (max-width:767px){.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li{width:100%;min-height:40px;margin-bottom:15px;text-align:center;float:none;display:block}.mec-single-event .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a{width:100%;padding-left:0;padding-right:0;text-align:center;display:block;font-size:12px}}.mec-single-event .mec-events-meta-group{margin-bottom:0}@media only screen and (max-width:767px){.mec-single-event .mec-events-meta-group-booking{margin-bottom:30px}}.mec-single-event .mec-event-meta dt,.mec-single-event .mec-event-meta h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-event .mec-event-meta h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-single-event .mec-event-meta .mec-events-event-categories a,.mec-single-event .mec-event-meta dd{font-size:14px;color:#8d8d8d}.mec-single-event .mec-event-meta .mec-location dd.author{color:#3c3b3b}.mec-single-event .mec-event-meta dd{margin:0;padding-left:35px}.mec-single-event .mec-event-meta dd.mec-events-event-categories{min-height:35px;line-height:35px}@media only screen and (max-width:480px){.single-mec-events .lity-container{width:100%}.single-mec-events .lity-content .mec-events-meta-group-booking{padding:20px;width:85%;margin:0 auto}}.mec-single-event .mec-event-meta dd.mec-events-event-categories:first-of-type{padding-top:5px}.mec-single-event .mec-event-meta dd.mec-events-event-categories:last-of-type{border-bottom:0}.mec-single-event .mec-event-meta dd a{color:#8d8d8d;transition:all .2s ease}.mec-single-event .mec-event-meta dd a i:before{font-size:16px!important}.mec-single-event .mec-event-meta dd a i{margin-right:8px}.mec-single-event .mec-event-meta dl{margin-bottom:0}.mec-single-event .mec-event-meta .mec-events-event-cost{font-size:18px}.mec-single-event .mec-event-meta .mec-events-address{color:#a9a9a9;margin-bottom:3px}.mec-single-event .mec-event-meta .mec-events-meta-group-venue .author{margin-bottom:0;color:#8d8d8d;font-size:13px}.mec-single-event .mec-events-event-image{margin-bottom:0}.mec-single-event h2.mec-single-event-title{margin-bottom:30px;font-weight:700;font-size:33px}.mec-single-event .mec-booking-button{border-bottom:none;letter-spacing:.5px;line-height:48px;height:76px;transition:all .5s ease;color:#fff;padding:16px;display:block;text-align:center;font-size:16px;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.15)}.mec-single-event .mec-booking-button:hover{background-color:#101010!important}.mec-single-event .mec-event-tags a{display:inline-block;color:#444;font-size:11px;text-transform:uppercase;letter-spacing:1.5px;font-weight:500;padding:3px 7px;border:1px solid #ddd;border-radius:2px;background:#fff;margin:1px 3px}.mec-single-event .mec-event-tags:before{font-size:24px;color:#303030;margin-right:5px;content:"\f02c";font-family:fontawesome}.mec-single-event .mec-event-tags{padding-top:13px}.mec-single-event .mec-event-sharing{margin:30px 0 10px}.mec-region.mec-events-abbr,.mec-single-event .mec-street-address{font-style:normal;font-size:13px}.mec-events-meta-group.mec-events-meta-group-venue:before,.mec-single-event-date:before,.mec-single-event-time:before{color:#40d9f1}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-event-social h3{text-transform:uppercase;font-size:15px;font-weight:700;padding-bottom:5px;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative}.mec-single-event .mec-social-single:before{padding:13px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:39px}.mec-single-event .mec-event-social .event-sharing{margin-top:30px}.mec-single-event .mec-event-social ul{list-style:none;margin-left:0}.mec-single-event .mec-event-social li.mec-event-social-icon{display:inline-block}.mec-single-event .mec-event-social li.mec-event-social-icon a{display:inline-block;color:#fff;width:40px;height:40px;padding:9px;font-size:16px;margin-right:5px;margin-bottom:5px}.mec-single-event .mec-event-social a.facebook{background:#3b5996}.mec-single-event .mec-event-social a.facebook:hover{background:#28385c}.mec-single-event .mec-event-social a.twitter{background:#00acee}.mec-single-event .mec-event-social a.twitter:hover{background:#0087bd}.mec-single-event .mec-event-social a.vimeo{background:#0dadd6}.mec-single-event .mec-event-social a.vimeo:hover{background:#0a85a3}.mec-single-event .mec-event-social a.dribble{background:#d53e68}.mec-single-event .mec-event-social a.dribble:hover{background:#bf4c78}.mec-single-event .mec-event-social a.youtube{background:#cb322c}.mec-single-event .mec-event-social a.youtube:hover{background:#992622}.mec-single-event .mec-event-social a.pinterest{background:#cb2027}.mec-single-event .mec-event-social a.pinterest:hover{background:#99181d}.mec-single-event .mec-event-social a.google{background:#c3391c}.mec-single-event .mec-event-social a.google:hover{background:#99181f}.mec-single-event .mec-event-social a.linkedin{background:#0073b2}.mec-single-event .mec-event-social a.linkedin:hover{background:#005380}.mec-single-event .mec-event-social a.email{background:#ff5d5e}.mec-single-event .mec-event-social a.email:hover{background:#cc4949}.mec-single-event .mec-event-social a.vk{background:#5b88bd}.mec-single-event .mec-event-social a.vk:hover{background:#3d608a}.mec-single-event .mec-event-social a.tumblr{background:#34465d}.mec-single-event .mec-event-social a.tumblr:hover{background:#273649}.mec-single-event .mec-event-social a.telegram{background:#08c}.mec-single-event .mec-event-social a.telegram:hover{background:#1076be}.mec-single-event .mec-event-social a.whatsapp{background:#25d366}.mec-single-event .mec-event-social a.whatsapp:hover{background:#23ac55}.mec-single-event .mec-event-social a.flipboard{background:#e12828}.mec-single-event .mec-event-social a.flipboard:hover{background:#af1e1e}.mec-single-event .mec-event-social a.pocket{background:#ef4056}.mec-single-event .mec-event-social a.pocket:hover{background:#8d1717}.mec-single-event .mec-event-social a.reddit{background:#ff5700}.mec-single-event .mec-event-social a.reddit:hover{background:#c94909}.mec-single-event .mec-event-social a.flipboard svg,.mec-single-event .mec-event-social a.telegram svg{height:16px}.mec-single-event .mec-event-social li.mec-event-social-icon a svg{display:unset}.mec-single-event .mec-event-social a.rss{background:#f29a1d}.mec-single-event .mec-event-social a.rss:hover{background:#cc7400}.mec-single-event .mec-event-social a.instagram{background:#457399}.mec-single-event .mec-event-social a.instagram:hover{background:#2e4d66}.mec-single-event .mec-event-social a.linkedin{background:#457399}.mec-single-event .mec-event-social a.linkedin:hover{background:#2e4d66}.mec-single-event .mec-event-social a.other-social{background:#ff5d5e}.mec-single-event .mec-event-social a.other-social:hover{background:#cc4949}.mec-single-event .mec-event-social{text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4,.mec-single-event .mec-frontbox-title{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center}.mec-single-event .mec-events-meta-group-booking form>h4:before,.mec-single-event .mec-frontbox-title:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:47%!important;margin-right:12px;margin-top:5px;display:inline-block!important}@media(max-width:768px){.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-month],.mec-single-event .mec-events-meta-group-booking input[data-stripe=exp-year]{width:100%!important;margin-right:0;display:block!important}}.mec-event-meta i:before{font-size:20px;vertical-align:middle}.mec-event-meta .mec-single-event-additional-organizers i:before,.mec-event-meta .mec-single-event-organizer i:before{font-size:14px;vertical-align:baseline}#mec-wrap .mec-events-day-time-slot .mec-events-content{float:left;width:33%;padding:0 15px}#mec-wrap .mec-events-day-time-slot .mec-events-event-image{padding-left:0}#mec-events-content .mec-events-abbr{color:#8d8d8d;font-size:14px}.mec-single-event .mec-events-content{margin-bottom:30px}.mec-single-event .mec-organizer-url a{word-wrap:break-word}.mec-single-event #headline{margin:0 0 10px}.mec-single-event #headline h2{padding:0}.mec-single-event .mec-events-meta-group.mec-events-meta-group-gmap .mec-events-venue-map{margin-top:0;padding:8px;border:1px solid #e5e5e5;border-radius:7px}#mec-events-gmap-0{height:325px!important}.mec-events-list .mec-events-day-time-slot .mec-events-event-meta{width:33%;float:left;padding:40px;height:auto;margin:0}.mec-events-day-time-slot .mec-events-content.description.entry-summary{font-size:15px;font-weight:300;color:#8d8d8d}.mec-events-day-time-slot .type-mec_events h2{font-size:28px;padding-bottom:20px}.mec-events-day .mec-events-day-time-slot .type-mec_events{margin:0}.mec-events-day .mec-events-day-time-slot h5{background-color:#8d8d8d}.mec-single-event .mec-event-meta .mec-single-event-additional-organizers .mec-events-single-section-title,.mec-single-event .mec-event-meta .mec-single-event-organizer .mec-events-single-section-title,.mec-single-event .mec-events-meta-date h3{padding-left:0;margin:10px;display:inline-block}.mec-single-event .mec-events-meta-date h3{width:100%}.mec-single-event .mec-events-event-image{border:0}.mec-single-event .mec-events-venue-map{padding:0}.mec-event-cost,.mec-event-more-info,.mec-event-website,.mec-events-meta-date,.mec-single-event-additional-organizers,.mec-single-event-category,.mec-single-event-date,.mec-single-event-label,.mec-single-event-location,.mec-single-event-organizer,.mec-single-event-time{background:#f7f7f7;padding:12px 14px 8px;margin-bottom:12px;vertical-align:baseline;position:relative}.mec-single-event .mec-events-meta-date dd,.mec-single-event .mec-single-event-additional-organizers dd,.mec-single-event .mec-single-event-organizer dd{padding-left:0;margin-bottom:10px}.mec-single-event .mec-events-meta-date dd span,.mec-single-event .mec-single-event-additional-organizers dd span,.mec-single-event .mec-single-event-organizer dd span{display:block;padding-left:12px;color:#8d8d8d}.mec-single-event .mec-events-meta-date i,.mec-single-event .mec-single-event-additional-organizers i,.mec-single-event .mec-single-event-organizer i{margin-right:10px;margin-left:12px}.mec-events-meta-group.mec-events-meta-group-venue dl{margin-bottom:0}address.mec-events-address{line-height:19px;font-style:normal;font-size:12px}.mec-single-event .mec-event-content dt{margin-top:5px}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer{margin-bottom:15px;padding-bottom:5px;border-bottom:1px solid #e4e4e4}.mec-single-event .mec-single-event-additional-organizers .mec-single-event-additional-organizer:last-child{margin-bottom:0;padding-bottom:0;border:none}.mec-event-schedule-content{border-left:4px solid #f0f0f0;padding-top:10px;margin-top:30px;margin-left:25px;margin-bottom:20px;color:#8a8a8a}.mec-event-schedule-content dl{padding-left:24px;font-size:12px;position:relative;margin-bottom:35px}.mec-event-schedule-content dl:before{content:'';display:block;position:absolute;left:0;top:4px;width:20px;height:0;border-top:4px solid #f0f0f0}.mec-event-schedule-content dl dt{margin:0 0 10px;line-height:1.16}.mec-event-schedule-content dl dt.mec-schedule-title{font-size:13px;color:#5a5a5a;font-weight:700}.mec-event-schedule-content dl dt.mec-schedule-description{font-weight:300}.mec-event-schedule-content .mec-schedule-speakers{background:#f7f7f7;padding:10px}.mec-wrap .mec-event-schedule-content h6{font-size:13px;color:#5a5a5a;font-weight:700;display:inline-block}.mec-wrap .mec-event-schedule-content a{font-weight:400;color:#5a5a5a;transition:all .1s ease}.single-mec-events .mec-speakers-details ul{padding:0}.mec-single-event .mec-speakers-details ul li{list-style:none;background:#f7f7f7;padding:5px 5px 18px 5px;margin-top:14px}.mec-single-event .mec-speakers-details ul li a{-webkit-transition:.2s all ease;transition:.2s all ease}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a img{float:left;border-radius:50%;transition:.2s all ease;border:2px solid transparent;width:68px;height:68px}.mec-single-event .mec-speakers-details ul li .mec-speaker-avatar a:hover img{border-color:#40d9f1}.mec-single-event .mec-speakers-details ul li .mec-speaker-name{display:inline-block;margin-top:10px;font-size:15px;line-height:1.8;text-transform:capitalize;font-weight:700;padding-left:8px}.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title{display:block;font-size:12px;margin-top:-1px;padding-left:75px;color:#888}.mec-single-event-location img,.mec-single-event-organizer img{margin-bottom:10px;width:100%}.mec-qrcode-details{text-align:center}.mec-time-comment{font-size:11px}.mec-wrap .mec-attendees-list-details p{font-weight:300;margin:20px 0 0 0;color:#8d8d8d}.mec-wrap .mec-attendees-list-details li{list-style:none;display:block;margin-top:15px}.mec-wrap .mec-attendees-list-details li .mec-attendee-avatar{display:inline-block}.mec-wrap .mec-attendees-list-details li .mec-attendee-profile-link{display:inline-block;vertical-align:top;margin-left:10px}.mec-attendees-list-details ul{margin-bottom:0}.mec-attendees-list-details .mec-attendee-profile-link a{color:#8d8d8d;display:block}.mec-attendees-list-details .mec-attendee-profile-link span{display:inline-block;color:#000;vertical-align:middle;cursor:pointer}.mec-attendees-list-details span.mec-attendee-profile-ticket-number{border-radius:50px;width:20px;height:20px;font-size:12px;text-align:center;color:#fff;margin-right:4px}.mec-attendees-list-details .mec-attendee-profile-link span i{vertical-align:middle;font-size:9px;font-weight:700;margin-left:5px}.mec-attendees-list-details .mec-attendees-toggle{border:1px solid #e6e6e6;background:#fafafa;padding:15px 15px 0;border-radius:3px;margin:12px 0 20px 52px;position:relative;font-size:13px;box-shadow:0 3px 1px 0 rgba(0,0,0,.02)}.mec-attendees-list-details .mec-attendees-toggle:after,.mec-attendees-list-details .mec-attendees-toggle:before{content:'';display:block;position:absolute;left:50px;width:0;height:0;border-style:solid;border-width:10px}.mec-attendees-list-details .mec-attendees-toggle:after{top:-20px;border-color:transparent transparent #fafafa transparent}.mec-attendees-list-details .mec-attendees-toggle:before{top:-21px;border-color:transparent transparent #e1e1e1 transparent}.mec-attendees-list-details .mec-attendees-toggle .mec-attendees-item{padding-bottom:15px}.mec-attendees-list-details .mec-attendee-avatar img{border-radius:3px}.mec-attendee-avatar-sec{float:left;width:50px;margin-right:12px}.mec-attendee-profile-name-sec,.mec-attendee-profile-ticket-sec{float:left;width:calc(100% - 62px);margin-top:3px}.mec-calendar{margin-bottom:20px;border:1px solid #e8e8e8;width:100%;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-calendar .mec-calendar-topsec{display:table;background:#fff}.mec-calendar .mec-calendar-topsec .mec-calendar-events-sec{display:none}.mec-calendar .mec-calendar-side{width:590px;display:table-cell;padding:40px;position:relative;text-align:center;box-shadow:0 1px 5px 6px rgba(0,0,0,.005) inset}.mec-calendar .mec-calendar-events-side{display:table-cell;height:100%;border-left:1px solid #efefef;padding:40px;width:100%}.mec-calendar .mec-calendar-events-side .mec-table-side-day{width:46px;height:46px;margin:0 auto 20px;position:relative;text-align:center;line-height:46px;border:1px solid #40d9f1;border-radius:50%;font-size:12px;font-weight:600;padding:0}.mec-calendar .mec-calendar-events-side .mec-table-side-title{text-align:center;font-size:11px;text-transform:uppercase;letter-spacing:3px;margin-bottom:14px}.mec-calendar .mec-calendar-header{position:relative;width:560px;margin-top:8px;margin-bottom:16px}.mec-calendar .mec-calendar-header h2{text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-calendar .mec-event-footer{width:auto;min-height:60px}.mec-calendar dl{display:table;margin:0;border:none;padding:0;table-layout:fixed}.mec-calendar dt{display:table-cell;transition:all .66s ease;color:#4d4d4d;background:#fff;border-radius:44px;font-size:14px;width:80px;height:80px;line-height:80px;text-align:center}.mec-calendar .mec-calendar-table .mec-no-event{display:none}.mec-calendar .mec-calendar-table-head dt{font-weight:700;text-transform:uppercase;font-size:15px}.mec-calendar .mec-calendar-row dt:hover{background:#f4f4f4}.mec-calendar .mec-table-nullday{color:#cacaca}.mec-calendar.mec-box-calendar .mec-table-nullday:last-child{border-right:1px solid #eaeaea}.mec-calendar .mec-next-month:hover,.mec-calendar .mec-prev-month:hover{background:#f4f4f4}.mec-calendar .mec-selected-day,.mec-calendar .mec-selected-day:hover{background:#40d9f1;color:#fff}.mec-calendar .mec-selected-day a{color:#fff}.mec-calendar .mec-has-event{position:relative}.mec-calendar .mec-calendar-row dt.mec-has-event:hover{background:#40d9f1}.mec-calendar .mec-has-event a{cursor:pointer;display:block;width:100%;height:100%;border-radius:50%;color:#4d4d4d;transition:all .25s ease;text-decoration:none;box-shadow:none}.mec-calendar .mec-calendar-row dt.mec-has-event.mec-selected-day a,.mec-calendar .mec-calendar-row dt.mec-has-event:hover a{color:#fff}.mec-calendar .mec-has-event:after{background-color:#40d9f1;border-radius:50%;display:block;content:'';width:8px;height:8px;bottom:14px;left:50%;margin:-4px 0 0 -4px;position:absolute;transition:all .25s ease}.mec-calendar .mec-calendar-row dt.mec-has-event:hover:after{background-color:#fff}.mec-calendar .mec-has-event.mec-selected-day:after{display:none}.mec-calendar .mec-event-article{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease}.mec-calendar .mec-event-article:hover{background-color:#fafafa}.mec-calendar .mec-event-article .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-calendar .mec-event-article .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-calendar .mec-event-article .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-calendar .mec-event-article .mec-event-title a:hover{color:#40d9f1}.mec-calendar .mec-event-article .mec-event-image,.mec-calendar .mec-event-list-classic .mec-event-image img{width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-calendar .mec-event-article .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-calendar .mec-calendar-side .mec-next-month,.mec-calendar .mec-calendar-side .mec-previous-month{cursor:pointer;position:absolute;top:0;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;color:#a9a9a9;font-size:12px;letter-spacing:1px;text-transform:uppercase;padding-left:10px;padding-right:10px;border:1px solid #efefef;border-top:none;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease}.mec-calendar .mec-calendar-side .mec-next-month i,.mec-calendar .mec-calendar-side .mec-previous-month i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-calendar .mec-calendar-side .mec-next-month:hover,.mec-calendar .mec-calendar-side .mec-previous-month:hover{background-color:#f9f9f9;color:#40d9f1}.mec-calendar .mec-calendar-side .mec-previous-month{left:0;border-bottom-right-radius:6px;border-left:none}.mec-calendar .mec-calendar-side .mec-next-month{right:0;border-bottom-left-radius:6px;border-right:none}@media only screen and (min-width:961px){.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-side{width:370px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) .mec-calendar-header{position:relative;width:350px;margin-top:30px;margin-bottom:20px;padding-top:20px}.mec-wrap.mec-sm959 .mec-calendar:not(.mec-event-calendar-classic):not(.mec-calendar-weekly) dt{width:50px;height:50px;line-height:50px}.mec-wrap.mec-sm959 .mec-calendar.mec-event-calendar-classic dl dt{height:110px}}@media only screen and (max-width:1200px){.mec-calendar .mec-has-event:after{width:6px;height:6px;bottom:6px}.mec-calendar .mec-calendar-side{width:370px}.mec-calendar .mec-calendar-header{position:relative;width:350px;margin-top:30px}.mec-calendar dt{width:50px;height:50px;line-height:50px}}@media only screen and (max-width:767px){.mec-calendar .mec-calendar-header h2{font-size:18px}.mec-calendar .mec-calendar-topsec{width:100%}.mec-calendar .mec-calendar-side{width:100%;display:block;padding:30px}.mec-calendar .mec-calendar-header{width:auto}.mec-calendar .mec-calendar-events-side{width:100%;display:block;height:100%;border-left:none;border-top:1px solid #efefef;padding:20px}.mec-calendar dl{width:100%}.mec-calendar dt{width:14%;height:60px;line-height:60px;border-radius:50px}}@media only screen and (max-width:479px){.mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-calendar .mec-calendar-header h2{font-size:16px;margin-top:33px}.mec-calendar dt{height:38px;line-height:38px}.mec-calendar .mec-event-list-classic .mec-event-detail,.mec-calendar .mec-event-list-classic .mec-event-title{font-size:12px}.mec-calendar .mec-event-list-classic .mec-event-time{font-size:10px}}.mec-box-calendar.mec-calendar .mec-has-event a,.mec-box-calendar.mec-calendar dt{border-radius:0}.mec-box-calendar.mec-calendar .mec-calendar-header{margin-top:2px;margin-bottom:30px}.mec-box-calendar.mec-calendar dt{border-bottom:1px solid #eaeaea;border-left:1px solid #eaeaea}.mec-box-calendar.mec-calendar dl dt:last-child{border-right:1px solid #eaeaea}.mec-box-calendar.mec-calendar .mec-calendar-table-head dt{border-top:1px solid #eaeaea;background-color:#f8f8f8}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{background-color:#f4f4f4}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{border-radius:2px;top:40px;border:1px solid #eee;height:30px;line-height:30px;z-index:1}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:60px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:60px}.mec-box-calendar.mec-calendar .mec-calendar-side{box-shadow:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side{border:none}.mec-box-calendar.mec-calendar .mec-calendar-events-side .mec-table-side-day{border-radius:2px}.mec-box-calendar.mec-calendar h4.mec-month-label{position:relative;width:560px;margin-top:2px;margin-bottom:30px;text-transform:uppercase;font-size:22px;font-weight:700;color:#333}.mec-widget .mec-box-calendar.mec-calendar h4.mec-month-label{width:100%;margin-top:8px;font-size:13px}@media only screen and (max-width:1200px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:42px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:42px}.mec-calendar .mec-calendar-header h2{font-size:17px;margin-top:7px}}@media only screen and (max-width:767px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:28px;font-size:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:30px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:30px}.mec-calendar .mec-calendar-header h2{font-size:15px}}@media only screen and (max-width:479px){.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{top:16px;font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{left:10px}.mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month{right:10px}.mec-box-calendar.mec-calendar .mec-calendar-header h2{font-size:12px;margin-top:15px}.mec-box-calendar.mec-calendar .mec-event-image{margin-right:12px}}.mec-calendar.mec-event-calendar-classic,.mec-calendar.mec-event-calendar-classic .mec-calendar-side{border:none;padding:0;width:100%;height:100%;box-shadow:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-side{display:block}.mec-calendar.mec-event-calendar-classic .mec-calendar-header,.mec-calendar.mec-event-calendar-classic dl{width:100%}.mec-calendar.mec-event-calendar-classic dl dt{width:15%;height:136px;line-height:1.2;text-align:left;padding:5px 7px;position:relative}.mec-calendar.mec-event-calendar-classic .mec-calendar-table-head dt{height:30px!important}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month,.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{top:0}.mec-calendar.mec-event-calendar-classic .mec-has-event:after{bottom:auto;top:24px;left:7px;margin:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-previous-month{left:0}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-side .mec-next-month{right:0}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{text-align:left;background:#fafafa;border:1px solid #eaeaea;border-top:none;padding:10px 20px}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{display:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-event-article:hover{background-color:#fcfcfc}.mec-calendar.mec-event-calendar-classic .mec-selected-day,.mec-calendar.mec-event-calendar-classic dt.mec-selected-day:hover{color:#40d9f1;font-weight:700;background:#fafafa;border-bottom:none}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day,.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{display:inline-block;margin:0;margin-bottom:15px;font-weight:700}.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-day{margin-left:4px}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event a{color:#4d4d4d}.mec-calendar.mec-event-calendar-classic .mec-calendar-row dt.mec-has-event:not(.mec-selected-day):hover a{color:#fff}@media only screen and (max-width:1200px){.mec-calendar.mec-event-calendar-classic dl dt{height:100px}}@media only screen and (max-width:767px){.mec-calendar.mec-event-calendar-classic dl dt{height:40px}}@media only screen and (max-width:479px){.mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec{padding:10px}.mec-box-calendar.mec-calendar.mec-event-calendar-classic .mec-calendar-header h2{font-size:13px;margin-top:8px}}.mec-calendar .mec-event-article.mec-single-event-novel{padding:4px 8px;min-height:25px;margin:0 -4px;border-radius:0}.mec-calendar .mec-event-article.mec-single-event-novel h4{margin:0;font-size:10px;line-height:18px}.mec-calendar.mec-event-container-novel dl dt{padding:3px}.mec-calendar.mec-event-calendar-classic .mec-calendar-novel-selected-day{display:inline-block;padding:4px;margin-left:1px}.mec-calendar.mec-event-calendar-classic .mec-selected-day .mec-calendar-novel-selected-day{color:#fff}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-selected-day,.mec-calendar.mec-event-calendar-classic.mec-event-container-novel dt.mec-selected-day:hover{border-bottom:1px solid #eaeaea}.mec-calendar.mec-event-calendar-classic.mec-event-container-novel .mec-calendar-side .mec-calendar-table{min-height:auto}.mec-single-event-novel.light h4{color:#000!important}.mec-single-event-novel.dark h4{color:#fff!important}@media only screen and (max-width:768px){.mec-calendar .mec-event-article.mec-single-event-novel{padding:0;min-height:5px}.mec-calendar .mec-event-article.mec-single-event-novel h4{display:block;font-size:9px}}.mec-event-container-simple .event-single-content-simple{display:none}.mec-event-calendar-classic.mec-event-container-simple .mec-calendar-side .mec-calendar-table{min-height:unset}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:13px;font-weight:500;margin:0;color:#444}.mec-event-container-simple .mec-monthly-tooltip h4:hover{text-decoration:underline;color:#111}.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple{border-bottom:1px dashed #e3e3e3;padding:10px 2px;display:block}.mec-calendar.mec-event-container-simple dl dt.mec-calendar-day{font-size:30px;color:#000}.mec-calendar.mec-event-container-simple .mec-calendar-row dt:hover{background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-row dt,.mec-calendar.mec-event-container-simple .mec-calendar-row dt:last-child,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt,.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt:last-child{border-width:2px}.mec-calendar.mec-event-container-simple dl dt.mec-selected-day,.mec-calendar.mec-event-container-simple dl dt.mec-selected-day:hover{border-bottom:2px solid #40d9f1;background:unset}.mec-calendar.mec-event-container-simple .mec-calendar-table-head dt{line-height:36px}@media (max-width:768px){.mec-calendar.mec-event-container-simple{overflow-x:scroll}.mec-calendar.mec-event-container-simple .mec-calendar-side{min-width:700px}.mec-event-container-simple .mec-monthly-tooltip h4{font-size:12px}}.mec-wrap.colorskin-custom .mec-calendar.mec-event-container-simple .mec-selected-day:hover{background:#f4f4f4}.mec-event-container-simple .mec-calendar-day .mec-monthly-tooltip.event-single-link-simple:last-of-type{border:none}.mec-tooltip-event-title{font-size:16px;font-weight:700;color:#000;margin-bottom:2px}.mec-tooltip-event-time{font-size:12px;color:#888;margin-bottom:8px;margin-top:5px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-content{padding:17px}.mec-tooltip-event-content{clear:both}.mec-tooltip-event-featured{float:left;margin-right:13px;margin-bottom:1px}.mec-tooltip-event-featured img{max-width:120px}.mec-tooltip-event-desc{font-size:14px;color:#444;line-height:18px}.mec-tooltip-event-desc p{font-size:13px;line-height:1.4;margin-bottom:10px}.tooltipster-sidetip.tooltipster-shadow .tooltipster-box{border-radius:3px!important;border:1px solid #e2e3e4!important;background:#fff!important;box-shadow:0 -1px 30px -2px rgba(0,0,0,.15)!important}.tooltipster-sidetip .tooltipster-arrow{overflow:visible!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border{border-width:12px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border{border-right-color:#e2e3e4!important}.tooltipster-sidetip .tooltipster-arrow-border{left:-12px!important;z-index:9999999999!important}.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background{display:block!important}.tooltipster-sidetip .tooltipster-arrow-background{border-width:11px!important;z-index:99999999999!important}.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background{left:-9px!important;top:1px!important;border-right-color:#fff!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background{border-top-color:#fff!important;left:0!important;top:-1px!important}.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border{left:-1px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border{border-top-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{left:-1px!important;top:-11px!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border{border-bottom-color:#e2e3e4!important}.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background{top:-9px!important;border-bottom-color:#fff!important}.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background{border-left-color:#fff!important;left:-2px!important;top:0!important}.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border{border-left-color:#e2e3e4!important;left:-1px!important;top:-1px!important}@media (max-width:780px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{word-break:break-all;font-size:13px}}@media (max-width:320px){.mec-event-container-simple .mec-monthly-tooltip.event-single-link-simple h4{font-size:10px}}.mec-calendar.mec-calendar-daily .mec-calendar-day-events .mec-event-article{padding-left:15px;padding-right:15px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month{text-align:center;background-color:#fff;border-bottom:2px solid #f4f4f4;position:relative}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{color:#444;font-size:18px;line-height:1.2;padding:15px 0 11px;margin:0;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-top{text-align:center;padding:10px 0;position:relative;background-color:#fafafa}.mec-calendar.mec-calendar-daily .mec-next-month,.mec-calendar.mec-calendar-daily .mec-previous-month{position:absolute;top:50%;left:50%;margin-top:-25px;min-width:50px;height:50px;line-height:50px;text-align:center;background:#fff;border:1px solid #e2e2e2;border-radius:50px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month i,.mec-calendar.mec-calendar-daily .mec-previous-month i{font-size:14px;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-next-month:hover,.mec-calendar.mec-calendar-daily .mec-previous-month:hover{border-color:#d0d0d0;color:#444;box-shadow:0 2px 5px 0 rgba(0,0,0,.075)}.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-150px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:100px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-next-month,.mec-calendar.mec-calendar-daily .mec-calendar-a-month .mec-previous-month{min-height:28px;height:28px;line-height:28px;width:28px;margin-top:-14px;border-radius:3px}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2,.mec-calendar.mec-calendar-daily .mec-calendar-d-top h3{margin-top:9px;color:#b9b9b9;font-family:Roboto,sans-serif;font-size:30px;font-weight:100;text-transform:uppercase;margin-bottom:12px;line-height:1}.mec-calendar.mec-calendar-daily .mec-calendar-d-top h2{font-size:81px;color:#444;margin-bottom:10px;line-height:1.1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table{overflow:hidden;background:#fff;min-height:60px;border-top:1px solid #e6e6e6;border-bottom:2px solid #f3f3f3;padding:0 50px;position:relative}@media only screen and (min-width:479px){.mec-calendar.mec-calendar-daily .mec-calendar-d-table{padding:0 55px}}.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl{width:1310px;display:block}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{display:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl.mec-weekly-view-week-active{display:block}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt{display:block;background:#fff;width:42px;height:60px;line-height:60px;text-align:center;float:left;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6;border-radius:0}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day:hover,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt:hover{background:#fafafa;box-shadow:0 2px 5px 0 rgba(0,0,0,.065) inset;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day{cursor:default;background:#fff;color:#c1c1c1;line-height:59px;text-align:center;border-right:1px solid #e6e6e6;border-bottom:1px solid #e6e6e6}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-has-event{cursor:pointer;font-weight:700;color:#4a4a4a}.mec-calendar.mec-calendar-daily .mec-calendar-d-table .mec-daily-view-day.mec-daily-view-day-active,.mec-calendar.mec-calendar-daily .mec-calendar-d-table dl dt.mec-table-d-current{font-size:18px;font-weight:700;background:#fafafa;color:#40d9f1}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-prev{float:none;font-size:14px;width:55px;position:absolute;top:0;left:0;cursor:pointer}.mec-calendar.mec-calendar-daily .mec-calendar-d-table a.mec-table-d-next{left:auto;right:0;border-left:1px solid #e6e6e6;border-right:none}.mec-calendar.mec-calendar-daily .mec-today-container .mec-today-count{font-size:12px;color:#888;text-align:center}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}}.widget .mec-calendar.mec-calendar-daily .mec-calendar-a-month h4{font-size:14px;letter-spacing:0}.widget .mec-calendar.mec-calendar-daily .mec-previous-month{margin-left:-130px}.widget .mec-calendar.mec-calendar-daily .mec-next-month{margin-left:80px}.mec-util-hidden{display:none}.mec-daily-view-date-events,.mec-weekly-view-date-events{list-style:none;margin:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table{padding:0}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl{width:calc(100% - 1px)}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt{width:14.286%;height:70px;line-height:normal;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:hover{background:#fff;cursor:default}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt:last-child{border-right:none}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:12px;font-weight:700;text-transform:uppercase;display:block;margin:15px 0 6px}.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-next,.mec-calendar.mec-calendar-weekly .mec-calendar-d-table a.mec-table-d-prev{display:none}ul.mec-weekly-view-dates-events,ul.mec-weekly-view-dates-events li{padding:0;margin:0;line-height:initial}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-previous-month{margin-left:0;left:12px}.mec-calendar.mec-calendar-weekly .mec-calendar-a-month .mec-next-month{margin-left:0;left:auto;right:12px}@media only screen and (max-width:479px){.mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}}.widget .mec-calendar.mec-calendar-weekly .mec-calendar-d-table dl dt span{font-size:9px;letter-spacing:0}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date{width:100%;height:36px;margin-bottom:12px;line-height:1;font-size:10px;margin-right:5px;text-align:left}.widget .mec-calendar.mec-calendar-weekly .mec-event-list-weekly-date span{font-size:18px;margin-bottom:5px}.mec-week-events-container .mec-weekly-view-dates-events li.mec-no-event-found{list-style:none!important}li.mec-no-event-found .mec-event-title{text-align:center}.mec-widget .mec-calendar{max-width:100%}.mec-widget .mec-calendar dl dt,.mec-wrap.mec-sm959.mec-widget .mec-calendar.mec-event-calendar-classic dl dt{height:40px}.mec-widget .mec-calendar .mec-calendar-events-sec{padding:10px}.mec-widget .mec-calendar .mec-calendar-header h2{font-size:13px;margin-top:8px}.mec-widget .mec-calendar .mec-event-list-classic .mec-event-image{margin-right:12px}.mec-widget .mec-calendar .mec-has-event:after{width:4px;height:4px}.mec-widget .mec-calendar.mec-event-calendar-classic .mec-calendar-events-sec .mec-table-side-title{font-size:14px}.mec-widget .mec-calendar .mec-event-article .mec-event-image{margin-right:11px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-header{margin-bottom:20px}.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-next-month,.mec-widget .mec-box-calendar.mec-calendar .mec-calendar-side .mec-previous-month{font-size:0;padding:4px 0;text-align:center;min-width:33px}.mec-widget .mec-event-calendar-classic .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-widget .mec-event-list-classic{margin-bottom:8px;padding:8px 0}.mec-widget .mec-event-list-classic .mec-event-article{margin-bottom:0;padding:10px 0;position:relative;min-height:86px;padding-left:80px}.mec-widget .mec-event-list-classic .mec-event-date{font-size:10px;line-height:14px;text-transform:uppercase}.mec-widget .mec-event-list-classic .mec-event-title{font-size:13px}.mec-widget .mec-event-list-classic .mec-event-detail{font-size:11px}.mec-widget .mec-event-list-classic .mec-event-image{width:68px;position:absolute;left:0}.mec-event-list-classic .mec-event-image img{width:100%}.mec-widget .mec-event-list-classic .mec-event-detail{overflow:visible}.event-color{width:14px;display:inline-block;height:14px;margin-left:5px;border-radius:50%}.mec-map-lightbox-wp{width:580px;padding:15px 15px 0;background-color:#fff}.mec-map-view-event-detail.mec-event-detail{width:580px;background-color:#e9e9e9;padding:8px 15px}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-article{padding:0 0 15px;margin:0}.mec-map-lightbox-wp.mec-event-list-classic .mec-event-image{width:70px;margin-right:15px}.mec-marker-infowindow-wp{padding:10px}.mec-marker-infowindow-wp .mec-marker-infowindow-count{width:60px;height:60px;display:block;text-align:center;line-height:60px;border:1px solid #40d9f1;border-radius:50%;font-size:32px;color:#40d9f1;float:left;margin-right:11px}.mec-marker-infowindow-wp .mec-marker-infowindow-content{overflow:hidden;padding-top:6px}.mec-marker-infowindow-wp .mec-marker-infowindow-content span{display:block;color:#222}.mec-marker-infowindow-wp .mec-marker-infowindow-content span:first-child{font-size:15px;font-weight:700}.mec-marker-wrap{display:inline-block;width:35px;height:35px;margin:15px 0 0 4px;border-radius:50% 50% 50% 0;background:#00cae9;animation-name:mec-map-bounce;animation-fill-mode:both;animation-duration:1s;border:3px solid #fff;cursor:pointer}.mec-marker-wrap .mec-marker{margin-top:5px;display:block;-webkit-transform:rotate(45deg);transform:rotate(45deg);text-align:center;color:#fff;font-size:17px}.mec-marker-wrap .mec-marker-pulse-wrap{-webkit-transform:rotate(45deg);transform:rotate(45deg);display:inline-block;margin-left:-11px;margin-top:0}.mec-marker-wrap .mec-marker-pulse{display:inline-block;background:#c5c5c5;border-radius:50%;height:14px;width:14px;-webkit-transform:rotateX(55deg);transform:rotateX(55deg);z-index:-2}.mec-marker-wrap .mec-marker-pulse:after{content:"";border-radius:50%;height:40px;width:40px;position:absolute;margin:-13px 0 0 -13px;animation:pulsate 1s ease-out;animation-iteration-count:infinite;opacity:0;box-shadow:0 0 1px 2px #00cae9;animation-delay:1.1s}@keyframes pulsate{0%{transform:scale(.1,.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2,1.2);opacity:0}}@keyframes mec-map-bounce{0%{opacity:0;transform:translateY(-2000px) rotate(-45deg)}60%{opacity:1;transform:translateY(30px) rotate(-45deg)}80%{transform:translateY(-10px) rotate(-45deg)}100%{transform:translateY(0) rotate(-45deg)}}.mec-skin-grid-container .mec-skin-map-container,.mec-skin-list-container .mec-skin-map-container{margin-bottom:20px}.mec-single-event{margin-top:10px}.mec-single-event .mec-events-meta-group-countdown{color:#c9c9c9;text-align:center;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-events-meta-group-countdown .countdown-w{text-align:center;font-size:36px;margin:0 auto;padding:40px 0 0;position:relative;display:table;table-layout:fixed}.mec-events-meta-group-countdown .countdown-w .icon-w{font-size:24px}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:15px;font-weight:300;letter-spacing:1px;text-transform:uppercase;position:relative}.mec-events-meta-group-countdown .countdown-w .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px;width:190px;font-size:72px;transition:all .3s ease-in-out;line-height:1.2}.mec-events-meta-group-countdown .countdown-w .block-w.done-w{border:0 none}.mec-events-meta-group-countdown .countdown-w .block-w li{font-size:50px}.mec-events-meta-group-countdown .countdown-w span{padding:24px 0 20px}.mec-events-meta-group-countdown .countdown-w .div-d{display:none}.mec-events-meta-group-countdown .countdown-w .countdown-message{display:none}.mec-events-meta-group-countdown .countdown-w .block-w i{display:none}#countdown{list-style:none;margin-bottom:0;margin-top:0;margin-left:0;padding-left:0}.mec-events-meta-group-countdown .mec-end-counts h3{display:inherit;text-align:center;font-size:16px;right:50%}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:23px}@media (min-width:481px) and (max-width:768px){.mec-events-meta-group-countdown .countdown-w{padding:0}.mec-events-meta-group-countdown .countdown-w .label-w{font-size:12px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:34px}}@media (min-width:320px) and (max-width:480px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:10px}.mec-events-meta-group-countdown .countdown-w span{font-size:28px}.mec-countdown-details .countdown-w .clockdiv li p{margin-top:16px}}@media (max-width:320px){.mec-events-meta-group-countdown .countdown-w .label-w{font-size:9px;letter-spacing:0}.mec-events-meta-group-countdown .countdown-w span{font-size:22px}}.info-msg,.mec-error,.mec-success,.warning-msg{margin:10px 0;padding:10px;border-radius:3px 3px 3px 3px;font-size:13px}.info-msg{color:#059;background-color:#bef}.mec-success{color:#0dbf52;background-color:#cef7ce}.warning-msg{color:#9f6000;background-color:#feefb3}.mec-error{color:#d8000c;background-color:#ffbaba}.mec-fes-form,.mec-fes-list{background:#f8feff;padding:30px 3%;color:#798f96;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-list .mec-fes-list-top-actions,.mec-fes-list ul{margin:0 auto 15px;max-width:960px;list-style:none}.mec-fes-form-cntt .dashicons-editor-help{display:none}.mec-fes-list ul li *{text-decoration:none!important}.mec-fes-list ul li{padding:20px 15px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal}.mec-fes-list ul li a{box-shadow:none;color:#181818}.mec-fes-list ul li a:hover{color:#40d9f1}.mec-fes-list ul li .mec-event-title{font-size:17px;font-weight:600;width:calc(100% - 250px);display:inline-block}@media (max-width:600px){.mec-fes-list ul li .mec-event-title{font-size:13px}}.mec-fes-list .mec-event-status{color:#fff!important;border-color:transparent!important}.mec-fes-form .mec-book-confirmed,.mec-fes-list .mec-book-confirmed{background:#50d477!important}.mec-fes-form .mec-book-pending,.mec-fes-list .mec-book-pending{background:#fcbe69!important}.mec-fes-form .mec-book-rejected,.mec-fes-list .mec-book-rejected{background:#fe686a!important}.mec-fes-form .mec-book-other,.mec-fes-list .mec-book-other{background:#40d9f1!important}.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view{font-size:11px;padding:0;border:0;background:#f7f8f9;float:right;margin-left:5px;border-radius:2px;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{padding:4px 8px;display:inline-block;border:1px solid #e7e8e9;border-radius:2px;color:#789;position:relative}@media (max-width:600px){.mec-fes-list ul li .mec-fes-event-export a,.mec-fes-list ul li .mec-fes-event-remove,.mec-fes-list ul li .mec-fes-event-view a{font-size:10px}}.mec-fes-list ul li .mec-fes-event-remove:hover{cursor:pointer;background:#f96f8a;border-color:#f96f8a;color:#fff}.mec-fes-list ul li .mec-fes-event-export a:hover,.mec-fes-list ul li .mec-fes-event-view a:hover{background:#40d9f1;color:#fff;border-color:#40d9f1}.mec-fes-form-top-actions a,.mec-fes-list-top-actions a{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-bottom:20px!important;margin-right:10px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;text-decoration:unset}.mec-fes-form-top-actions a:hover,.mec-fes-list-top-actions a:hover{background:#222;color:#fff}.mec-fes-list-top-actions a{font-weight:600;text-transform:capitalize}.mec-fes-form-top-actions a:before{content:"";border:solid #fff;border-width:0 2px 2px 0;display:inline-block;padding:6px;margin-right:5px;vertical-align:sub;transform:rotate(135deg);-webkit-transform:rotate(135deg)}.mec-fes-form .mec-form-row,.mec-fes-list .mec-form-row{margin-bottom:10px;clear:both}.mec-fes-form label{font-size:13px;display:block;color:#798f96;font-weight:400;padding:0 0 4px 2px}.mec-fes-form input+label{padding-top:8px;padding-left:3px;margin:0;display:inline-block;vertical-align:top}.mec-fes-form .post-status{float:right!important;margin:0 5px;color:#fff;padding:0 10px;border-radius:12px;font-style:italic;font-size:18px}.mec-fes-form input[type=email],.mec-fes-form input[type=number],.mec-fes-form input[type=password],.mec-fes-form input[type=tel],.mec-fes-form input[type=text],.mec-fes-form select,.mec-fes-form textarea{min-width:inherit;width:auto;display:inline;min-height:30px;font-size:13px;padding:10px;margin-bottom:20px;clear:both;background:#fff;border:1px solid #cfeff5;box-shadow:0 2px 5px rgba(207,239,245,.38) inset;border-radius:3px;height:40px;max-width:280px;color:#798f96;font-family:inherit}.mec-fes-form input{background:#fff!important;border-radius:3px!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-fes-form textarea{height:80px}.mec-fes-form input::-webkit-input-placeholder{color:#798f96}.mec-fes-form input::-moz-placeholder{color:#798f96}.mec-fes-form input:-ms-input-placeholder{color:#798f96}.mec-fes-form input:-moz-placeholder{color:#798f96}#mec_more_info_target{width:100%}@media only screen and (min-width:961px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%;display:inline-block}}@media only screen and (max-width:768px){.mec-fes-form input[type=email],.mec-fes-form input[type=password],.mec-fes-form input[type=text],.mec-fes-form textarea{width:100%}}.mec-fes-form input[type=text]#mec_fes_title{padding:5px 10px;min-height:32px;height:50px;background:#fff!important;max-width:100%;font-size:19px;font-weight:400}.mec-fes-form input[type=checkbox],.mec-fes-form input[type=radio]{display:inline!important;float:left;margin:5px 5px 0 0}.mec-fes-form input[type=email]:focus,.mec-fes-form input[type=number]:focus,.mec-fes-form input[type=password]:focus,.mec-fes-form input[type=tel]:focus,.mec-fes-form input[type=text]:focus,.mec-fes-form select:focus,.mec-fes-form textarea:focus{border:1px solid #aaa;color:#444;background:#fff;-moz-box-shadow:0 0 3px rgba(0,0,0,.2);-webkit-box-shadow:0 0 3px rgba(0,0,0,.2);box-shadow:0 0 3px rgba(0,0,0,.2);outline:0}.mec-form-row .mec-color{cursor:pointer}.mec-form-row.mec-available-color-row span{margin:10px;width:14px;height:14px;display:inline-block;margin-right:6px;border-radius:20px 20px 20px 20px;vertical-align:middle}.mec-form-row.mec-available-color-row span:first-of-type{margin-left:0}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline}.mec-fes-form-cntt .dashicons-editor-help{display:block}.mec-fes-form .mec-tooltip:hover:after,.mec-fes-form .mec-tooltip:hover:before{display:none}.mec-fes-form.mec-fes-form .mec-tooltip{display:inline-flex;bottom:7px}.mec-fes-form .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-fes-form .mec-tooltip .box p,.mec-fes-form .mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-fes-form .mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-fes-form .mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-fes-form .mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-fes-form .mec-tooltip .box p a,.mec-fes-form .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-fes-form .mec-tooltip .box a:hover{color:#f90}.mec-fes-form .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-fes-form .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-fes-form .mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-fes-form .mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-fes-form .mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-fes-form .mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-fes-form .mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-fes-form .mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-fes-form .mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}.mec-fes-form .mec-tooltip{display:inline-block;position:relative;margin-right:10px;cursor:help;bottom:5px;left:3px}.mec-fes-form .mec-tooltip:last-child{margin-right:0}.mec-fes-form .mec-tooltip:hover:after{background:#313130;border-radius:5px;bottom:24px;color:#fff;content:attr(title);left:-75px;padding:10px;position:absolute;z-index:98;width:240px}.mec-fes-form .mec-tooltip:hover:before{border:solid;border-color:#313130 transparent;border-width:6px 6px 0;bottom:18px;content:"";left:30%;position:absolute;z-index:99}.mec-fes-form .mec-tooltip .dashicons-before:before{font-size:24px;color:#008aff;line-height:37px}.mec-fes-form .mec-tooltip a:focus{box-shadow:none}.mec-form-row .bootstrap_unvalid{display:block;border:2px solid red;position:relative;display:inline-block;border-bottom:1px dotted #000}.mec-fes-form .mec-tooltiptext{visibility:hidden;width:120px;background-color:red;color:#fff;text-align:center;border-radius:6px;padding:5px 0;position:absolute;z-index:1}.mec-fes-form .mec-tooltip .content p a{display:none}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt,.mec-fes-form .mec-fes-form-sdbr{width:68%;float:left;padding-right:20px}.mec-fes-form .mec-fes-form-sdbr{width:32%;padding-right:0;padding-left:20px}.mec-fes-submit-mobile{display:none}}.mec-fes-form .mec-meta-box-fields{padding:0 20px 20px;border:1px solid #cfeff5;margin-bottom:20px!important;box-shadow:0 2px 6px -3px #cfeff5;border-radius:3px;background:#fff}.mec-fes-form .mec-meta-box-fields h4{margin:0 -20px;font-size:15px;font-weight:600;letter-spacing:0;color:#40d9f1;text-transform:capitalize;padding:15px 20px;background:#ecfcff;margin-bottom:20px;border-radius:3px}.mec-fes-sub-button{width:100%}.mec-available-color-row span.color-selected{border:3px solid #fff;box-sizing:content-box;box-shadow:0 0 0 2px #40d9f1,0 2px 8px -1px #40d9f1}.mec-fes-loading:before{content:url(../img/ajax-loader.gif);background:0 0;border-style:none;display:block;margin-left:47%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:190px;margin-right:1.4%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-1,.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-2{width:120px;margin-right:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].widefat{width:100%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row{border-bottom:none;padding-bottom:10px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text].mec-col-6{width:39%}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button{margin-right:0;padding:9px 26px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row button.mec-add-hourly-schedule-button{font-size:12px;height:30px;line-height:25px}.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row .description{display:inline-block;border-left:1px dashed #bfcacc;margin-left:12px;line-height:28px;padding-left:12px;margin-top:5px;font-style:italic}@media only screen and (max-width:768px){.mec-fes-form #mec_meta_box_hourly_schedule_days .mec-form-row input[type=text]{width:100%!important}}#mec_fes_form_message{max-width:838px;margin:10px auto;display:block!important;text-align:center}.mec-wrap .mec-totalcal-box{position:relative;border:1px solid #efefef;padding:20px 5px;margin:0 0 20px;background:#fafafa;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012);min-height:78px}.mec-wrap .mec-totalcal-box i{float:left;margin:0;width:36px;height:36px;background:#fff;border:1px solid #efefef;text-align:center;padding:10px 0;font-size:15px;color:#888}.mec-wrap .mec-totalcal-box .mec-totalcal-view span,.mec-wrap .mec-totalcal-box input,.mec-wrap .mec-totalcal-box select{width:auto;min-height:36px;height:36px;line-height:36px;background:#fff;font-size:13px;color:#777;border:1px solid #efefef;margin:0 0 0 -1px;float:left;padding:0 5px;font-family:Roboto,Helvetica,Arial,sans-serif}.mec-wrap .mec-totalcal-box input[type=submit]{cursor:pointer;padding:0 16px;text-transform:uppercase;font-size:11px;font-family:Montserrat,Helvetica,Arial,sans-serif;transition:all .21s ease}.mec-wrap .mec-totalcal-box input[type=submit]:hover{background:#222;color:#fff}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{display:inline-block;text-transform:uppercase;font-family:Montserrat,Helvetica,Arial,sans-serif;font-size:11px;padding:0 12px;cursor:pointer}.mec-wrap .mec-totalcal-box .mec-totalcal-view span:hover{color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected{color:#fff;background:#40d9f1;border-color:#40d9f1}.mec-wrap .mec-totalcal-box .mec-totalcal-view{text-align:right;float:right}.mec-wrap .mec-totalcal-box input[type=search]{width:calc(100% - 36px)}@media only screen and (min-width:961px) and (max-width:1200px){.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-3,.mec-wrap .mec-totalcal-box .col-md-4,.mec-wrap .mec-totalcal-box .col-md-5{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}}@media only screen and (min-width:768px) and (max-width:960px){.mec-wrap .mec-totalcal-box .col-md-4{position:relative;right:10px;top:20px;width:initial}.mec-wrap .mec-totalcal-box .col-md-5{padding-bottom:0}.mec-wrap .mec-totalcal-box{padding:37px 5px}}@media only screen and (max-width:767px){.mec-wrap .mec-totalcal-box .mec-totalcal-view{float:none}.mec-wrap .mec-totalcal-box .col-md-4{padding-bottom:0}}@media only screen and (max-width:479px){.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 8px;font-size:10px}.mec-wrap .mec-totalcal-box input[type=submit]{padding:0 10px;font-size:10px}}@media only screen and (min-width:961px){.mec-wrap .mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5,.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-3{width:100%;float:none;padding-bottom:20px;clear:both;overflow:hidden}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-4{position:absolute;right:10px;top:20px;width:initial}.mec-wrap.mec-sm959 .mec-totalcal-box .col-md-5{padding-bottom:0;width:100%}}@media (min-width:961px) and (max-width:1200px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:20px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{min-width:calc(30% - 10px)}.mec-full-calendar-wrap .mec-totalcal-box .col-md-3:last-child select{min-width:calc(50% - 19px)}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}}@media (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box{padding:20px 20px}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:50%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2,.mec-full-calendar-wrap .mec-totalcal-box .col-md-3,.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{padding-bottom:10px!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2 select{min-width:calc(100% - 36px);margin-bottom:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view{margin-right:10px}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{font-size:10px;text-align:center}.mec-full-calendar-wrap .mec-totalcal-box .col-md-2{width:100%}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media (min-width:780px) and (max-width:960px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:absolute;top:20px}}@media(max-width:780px){.mec-full-calendar-wrap .mec-totalcal-box .col-md-3 select{width:calc(50% - 18px)!important}.mec-full-calendar-wrap .mec-totalcal-box .col-md-4{position:unset;padding-right:0}.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}.mec-wrap .mec-totalcal-box .mec-totalcal-view span{padding:0 7px;margin-top:20px}}@media(max-width:480px){.mec-full-calendar-wrap .mec-totalcal-box .mec-totalcal-view span{min-width:20%;text-align:center;font-size:10px}}.mec-search-form{padding:20px 10px}.mec-search-form .mec-dropdown-wrap{display:table;width:100%}.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{padding:0 10px;float:left;min-height:55px}.mec-search-form .mec-date-search,.mec-search-form .mec-text-input-search{width:50%;min-height:36px;display:block}.mec-full-calendar-wrap .mec-search-form .mec-date-search,.mec-full-calendar-wrap .mec-search-form .mec-text-input-search{width:100%}.mec-full-calendar-wrap .mec-search-form .col-md-3,.mec-full-calendar-wrap .mec-search-form .col-md-5,.mec-full-calendar-wrap .mec-search-form .col-md-6,.mec-full-calendar-wrap .mec-search-form .col-md-8{padding:0}.mec-widget .mec-search-form .mec-date-search,.mec-widget .mec-search-form .mec-text-input-search{width:100%}.mec-widget .mec-search-form .mec-text-input-search{margin-top:10px}.mec-search-form .mec-date-search{clear:left}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:table-cell;float:none}.mec-widget .mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block}.mec-wrap .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{width:calc(100% - 36px);margin-bottom:20px}.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 106px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}@media only screen and (max-width:767px){.mec-search-form .mec-date-search,.mec-search-form .mec-dropdown-search,.mec-search-form .mec-text-input-search{width:100%;float:none}.mec-search-form .mec-date-search{min-height:55px}.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:50%;float:left}}@media only screen and (max-width:960px){.mec-wrap .mec-search-form .mec-date-search select{width:calc(100% - 124px)}.mec-wrap .mec-search-form .mec-date-search select:last-child{width:70px}}@media only screen and (max-width:479px){.mec-search-form .mec-dropdown-wrap .mec-dropdown-search{display:block;width:100%;float:none}}.ui-datepicker{background-color:#fff;border:1px solid #66afe9;border-radius:4px;box-shadow:0 0 8px rgba(102,175,233,.6);display:none;margin-top:4px;padding:10px;width:240px}.ui-datepicker a,.ui-datepicker a:hover{text-decoration:none;cursor:pointer}.ui-datepicker a:hover,.ui-datepicker td:hover a{color:#2c6396;-webkit-transition:color .1s ease-in-out;-moz-transition:color .1s ease-in-out;-o-transition:color .1s ease-in-out;transition:color .1s ease-in-out}.ui-datepicker .ui-datepicker-header{margin-bottom:4px;text-align:center}.ui-datepicker .ui-datepicker-title{font-weight:700}.ui-datepicker .ui-datepicker-next,.ui-datepicker .ui-datepicker-prev{cursor:default;font-family:dashicons;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;height:20px;line-height:1.4;margin-top:2px;width:20px}.ui-datepicker .ui-datepicker-prev{float:left;text-align:left}.ui-datepicker .ui-datepicker-next{float:right;text-align:center}.ui-datepicker .ui-datepicker-prev:before{content:"\f341"}.ui-datepicker .ui-datepicker-next:before{content:"\f345"}.ui-datepicker .ui-icon{display:none}.ui-datepicker .ui-datepicker-calendar{table-layout:fixed;width:100%}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker .ui-datepicker-calendar th{text-align:center;padding:4px 0}.ui-datepicker .ui-datepicker-calendar td{border-radius:4px;-webkit-transition:background-color .1s ease-in-out,color .1s ease-in-out;-moz-transition:background-color .1s ease-in-out,color .1s ease-in-out;-o-transition:background-color .1s ease-in-out,color .1s ease-in-out;transition:background-color .1s ease-in-out,color .1s ease-in-out}.ui-datepicker .ui-datepicker-calendar td:hover{background-color:#eee;cursor:pointer}.ui-datepicker .ui-datepicker-calendar td a{text-decoration:none}.ui-datepicker .ui-datepicker-current-day{background-color:#4289cc}.ui-datepicker .ui-datepicker-current-day a{color:#fff}.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover{background-color:#fff;cursor:default}.mec-owl-theme .owl-dots .owl-dot{border:none}.event-carousel-type1-head .mec-event-image{position:relative;min-height:150px}.event-carousel-type1-head .mec-event-image img{width:100%}.mec-event-carousel-content .mec-event-carousel-title a{transition:all .2s ease}.event-carousel-type1-head .mec-event-date-carousel{position:absolute;top:25px;left:1px;font-size:41px;width:160px;color:#fff;font-weight:500;background-color:#40d9f1;padding-left:21px;height:97px;line-height:2.3;padding-right:85px}.event-carousel-type1-head .mec-event-date-carousel:after{content:"";position:absolute;display:inline-block;z-index:-1;bottom:-13px;left:5px;width:0;border-width:13px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.event-carousel-type1-head .mec-event-date-info{font-size:12px;font-weight:300;position:absolute;top:27px;left:75px}.event-carousel-type1-head .mec-event-date-info-year{font-size:12px;font-weight:300;position:absolute;top:45px;left:75px}.mec-event-carousel-content{border:1px solid #e8e8e8;border-top:none;margin-top:-5px;padding:34px 9px 11px 37px}.mec-event-carousel-content .mec-event-carousel-title a{font-size:23px;font-weight:500;color:#000;letter-spacing:-1px}.mec-event-carousel-content p{font-size:14px;color:#7a7272;font-weight:300}.mec-owl-crousel-skin-type1 .owl-item .mec-event-article{padding:0 19px}.mec-event-carousel-type1 .owl-page.active span{background-color:#00aeef;height:14px;width:14px}.mec-event-carousel-type1 .mec-event-carousel-content{margin-bottom:15px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:all .27s ease}.mec-event-carousel-type1 .mec-event-carousel-content:hover{box-shadow:0 0 35px rgba(0,0,0,.07)}@media only screen and (min-width:768px) and (max-width:1000px),(min-width:270px) and (max-width:448px){.event-carousel-type1-head .mec-event-date-carousel{font-size:25px;line-height:2.5;padding-right:70px;height:64px;width:120px}.event-carousel-type1-head .mec-event-date-carousel:after{left:7px}.event-carousel-type1-head .mec-event-date-info{font-size:10px;top:13px;left:55px}.event-carousel-type1-head .mec-event-date-info-year{font-size:10px;top:25px;left:55px}.event-carousel-type1-head .mec-event-date-carousel:after{top:48px}}.event-carousel-type2-head{background:#fff;border:1px solid #e6e6e6}.event-carousel-type2-head .mec-event-carousel-content-type2{margin-top:15px;min-height:182px}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-date-info{font-size:15px;color:#9a9a9a;font-weight:300}.event-carousel-type2-head .mec-event-carousel-content-type2 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-carousel-content-type2 .mec-event-carousel-title a{color:inherit}.mec-event-carousel-type2 .event-carousel-type2-head .mec-event-carousel-content-type2 p{font-size:16px;font-weight:300;color:#444}.event-carousel-type2-head .mec-event-footer-carousel-type2{margin-top:33px;position:relative}.mec-event-carousel-type2 .mec-event-footer-carousel-type2 .mec-event-sharing-wrap{left:0}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-event-sharing-wrap>li{border:none;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button{border:1px solid #e4e4e4;float:right;padding:7px 23px 7px;font-size:12px;text-transform:uppercase;color:#707070;font-weight:500;-webkit-transition:all .25s ease;transition:all .25s ease}.event-carousel-type2-head .mec-event-footer-carousel-type2 .mec-booking-button:hover{color:#fff}.mec-event-article .event-carousel-type2-head{padding:10%;margin-right:-1px}.mec-event-carousel-type2 .mec-owl-carousel .owl-wrapper-outer{border-right:1px solid #e6e6e6}.mec-wrap .mec-event-carousel-type2 .owl-next,.mec-wrap .mec-event-carousel-type2 .owl-prev,.mec-wrap .mec-event-carousel-type3 .owl-next,.mec-wrap .mec-event-carousel-type3 .owl-prev,.mec-wrap .mec-event-carousel-type4 .owl-next,.mec-wrap .mec-event-carousel-type4 .owl-prev{transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:47%;background-color:transparent!important}.mec-event-carousel-type2 .owl-next{right:-60px}.mec-event-carousel-type2 .owl-prev{left:-60px}.mec-event-carousel-type2 .owl-next i,.mec-event-carousel-type2 .owl-prev i,.mec-event-carousel-type3 .owl-next i,.mec-event-carousel-type3 .owl-prev i,.mec-event-carousel-type4 .owl-next i,.mec-event-carousel-type4 .owl-prev i{font-size:40px;color:#282828}.mec-event-carousel-type2 .owl-next i:hover,.mec-event-carousel-type2 .owl-prev i:hover,.mec-event-carousel-type3 .owl-next i:hover,.mec-event-carousel-type3 .owl-prev i:hover{color:#000;cursor:pointer}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type2 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}@media only screen and (min-width:320px) and (max-width:768px){.mec-event-carousel-type2 .owl-next,.mec-event-carousel-type2 .owl-prev,.mec-event-carousel-type3 .owl-next,.mec-event-carousel-type3 .owl-prev,.mec-event-carousel-type4 .owl-next,.mec-event-carousel-type4 .owl-prev{position:initial;top:100%}}.mec-event-carousel-type3 .mec-event-article{margin:0 10px}.event-carousel-type3-head .mec-event-image,.event-carousel-type3-head .mec-event-image img{width:100%;height:auto}.event-carousel-type3-head .mec-event-footer-carousel-type3{background:#fff;display:inline-block;width:calc(100% - 40px);margin-top:-74px;position:relative;margin-left:20px;margin-right:20px;margin-bottom:6px;padding:8% 11%;box-shadow:0 2px 10px -2px rgba(0,0,0,.2)}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button{border:1px solid #e4e4e4;text-transform:uppercase;float:right;padding:7px 23px 7px;font-size:12px;color:#707070;font-weight:500}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-booking-button:hover{color:#fff}.mec-event-footer-carousel-type3 span{font-size:15px;color:#9a9a9a;font-weight:300;display:block;margin-top:30px}.mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:29px;font-weight:700}.event-carousel-type3-head .mec-event-footer-carousel-type3 .mec-event-carousel-title{font-size:26px;font-weight:700;color:#1c1d21;margin-top:15px;letter-spacing:-1px}.mec-event-footer-carousel-type3 .mec-event-carousel-title a{color:inherit}.event-carousel-type3-head .mec-event-footer-carousel-type3 p{font-size:16px;font-weight:300;color:#444!important;margin-bottom:36px}.mec-event-carousel-type3 .owl-next{right:-70px}.mec-event-carousel-type3 .owl-prev{left:-70px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap{left:11%}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing{top:auto;bottom:60px}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after,.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:before{top:auto;bottom:-19px;border-color:#e2e2e2 transparent transparent transparent}.mec-event-footer-carousel-type3 .mec-event-sharing-wrap .mec-event-sharing:after{bottom:-18px;border-color:#fff transparent transparent transparent}.event-carousel-type3-head .mec-end-date-label{display:inline;margin-left:2px}.event-carousel-type4-head.clearfix{position:relative;overflow:hidden;background:#fff}.event-carousel-type4-head .mec-event-overlay{position:absolute;left:0;right:0;bottom:0;top:0;width:auto;height:auto;background-color:rgba(36,36,36,.4);transition:all .33s ease-in-out}.mec-event-hover-carousel-type4{font-size:15px;color:#fff;position:absolute;bottom:0;padding:50px 35px;transition:all .33s ease-in-out;opacity:0;visibility:hidden}.mec-event-carousel-type4 .mec-event-article{margin:0 10px}.mec-event-carousel-type4 .mec-event-article:hover .mec-event-hover-carousel-type4{opacity:1;visibility:visible}.mec-event-hover-carousel-type4 .mec-event-icon{font-size:18px;float:left;margin-right:14px;color:#fff;padding:13px}.mec-event-hover-carousel-type4 .mec-event-date{font-size:11px;text-transform:uppercase;font-weight:400;line-height:1.6}.mec-event-hover-carousel-type4 .mec-event-date span{display:block;font-weight:700;font-size:14px}.mec-event-hover-carousel-type4 .mec-event-title{color:#fff;margin:20px 0 38px;font-size:16px;font-weight:700;text-transform:uppercase;font-style:normal}.mec-event-hover-carousel-type4 .mec-btn-wrapper{text-align:left}.mec-event-hover-carousel-type4 .mec-event-button{color:#fff;background-color:#191919;border:2px #191919 solid;padding:10px 14px;letter-spacing:1.5px;font-size:11px;font-weight:700;font-style:normal;transition:all .22s ease;text-decoration:none}.mec-event-hover-carousel-type4 .mec-event-button:hover{color:#191919;background-color:#fff;border-color:#fff;border-radius:1px}.mec-event-carousel-type4 .owl-next{right:-70px}.mec-event-carousel-type4 .owl-prev{left:-70px}.mec-carousel-type4-head{margin-bottom:25px}.mec-carousel-type4-head-title{padding:0 11px;text-align:left;font-weight:700;font-size:20px;color:#000}.mec-carousel-type4-head-link{text-align:right;padding:0 11px}.mec-carousel-type4-head-link a{background:#222;color:#fff;padding:10px 38px;transition:all .3s ease}.mec-carousel-type4-head-link a:hover,.mec-carousel-type4-head-link a:visited{color:#fff}@media (max-width:960px){.mec-event-carousel-type4 .owl-stage{left:-50px}}.mec-wrap .mec-event-countdown-style1{color:#fff;padding:0!important;display:table;background:#437df9}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1{z-index:5;padding:50px 1% 50px 4%;display:table-cell;float:none;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2{background-color:rgba(0,0,0,.05);height:100%;padding-top:0;display:table-cell;float:none;position:relative;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{background-color:#f8f8f8;display:table-cell;float:none;text-align:center;vertical-align:middle}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style1 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style1 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{content:"";position:absolute;display:inline-block;z-index:1;top:50%;margin-top:-11px;right:-24px;width:0;border-width:12px;border-style:solid;border-color:transparent transparent transparent #4077ed}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style1 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style1 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto}.mec-event-countdown-style1 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style1 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (min-width:1200px){.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap.mec-sm959 .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%}}@media (max-width:960px){.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part3{width:100%;display:block;padding-top:50px;padding-bottom:50px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown-part2:after{border-color:#4077ed transparent transparent transparent;top:auto;margin-top:0;bottom:-24px;margin-left:-11px;left:50%;transform:rotate(90deg)}}@media (max-width:480px){.mec-event-countdown-style1 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li{padding:10px 5px;min-width:50px;margin:3px 1px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style1 .mec-event-countdown li .label-w{font-size:8px}.mec-event-countdown-style1 .mec-event-countdown-part2 .mec-event-date-place{display:inline}}.mec-wrap .mec-event-countdown-style2{color:#fff;padding:30px 0;background:#437df9;max-width:600px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2,.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part3{width:100%;float:none;vertical-align:middle;padding:50px 10% 50px 10%}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2{padding-top:12%;padding-bottom:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-title{color:#fff;font-size:15px;margin-top:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming{font-size:36px;font-weight:700;line-height:1;margin-top:0}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style2 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style2 .mec-event-countdown-part1 .mec-event-upcoming span{display:block}.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date-place{text-align:left;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style2 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 8px}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#222;background:#fff;transition:all .24s ease}.mec-event-countdown-style2 .mec-event-countdown-part3 .mec-event-button:hover{background:#222;color:#fff}.mec-event-countdown-style2 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0}.mec-event-countdown-style2 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style2 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{background-color:rgba(0,0,0,.1);margin:5px;padding:20px 0;min-width:94px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:12px;color:#fff;margin:8px 0 0;line-height:1}@media only screen and (max-width:767px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:80px;padding:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:26px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:11px}}@media only screen and (max-width:479px){.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{min-width:40px;padding:15px 10px;margin:2px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:20px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:9px}}@media (max-width:380px){.mec-event-countdown-style2 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li{padding:10px 4px;margin:4px 1px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style2 .mec-event-countdown li .label-w{font-size:7px}}.mec-wrap .mec-event-countdown-style3{color:#fff;padding:0;background:#282828;display:table;width:100%}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1{width:68%;padding:50px 1% 50px 4%;vertical-align:middle;display:table-cell;position:relative}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:32%;display:table-cell;position:relative;padding-bottom:0;padding-top:0}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 img{width:100%;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{font-weight:300;display:block}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{color:#fff;font-size:36px;letter-spacing:-2px;font-weight:700;line-height:1;margin-top:-10px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-countdown>div{display:inline-block}.mec-event-countdown-style3 .mec-events-meta-group-countdown{color:#c9c9c9;margin-bottom:30px;padding:20px 30px;background:#fff;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.016)}.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date-place{text-align:center;padding-bottom:8px}.mec-event-countdown-part2 .mec-event-place,.mec-event-countdown-style3 .mec-event-countdown-part2 .mec-event-date{display:inline;font-size:14px;padding:0 5px;text-align:center}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button{display:inline-block;padding:14px 30px;vertical-align:middle;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:#fff;background:#4077ed;transition:all .24s ease}.mec-event-countdown-style3 .mec-event-countdown-part3 .mec-event-button:hover{background:#222}.mec-event-countdown-style3 .mec-event-countdown{text-align:center;display:table;table-layout:fixed;margin:0 auto;position:absolute;top:40px;right:20px}.mec-event-countdown-style3 .mec-event-countdown .label-w{letter-spacing:1px;text-transform:uppercase;position:relative}.mec-event-countdown-style3 .mec-event-countdown .block-w{display:table-cell;margin:0 20px 10px;position:relative;height:70px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:30px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:11px;color:#888;margin:8px 0 0;line-height:1}.mec-event-countdown-style3 .mec-event-date{width:176px;height:96px;background:#40d9f1;color:#fff;font-size:13px;position:absolute;left:-27px;top:146px}.mec-event-countdown-style3 .mec-event-date:after{content:"";position:absolute;display:inline-block;z-index:1;bottom:-18px;left:8px;width:0;border-width:19px;border-style:solid;border-color:transparent transparent #40d9f1 transparent;transform:rotate(45deg)}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:50px;position:absolute;top:36px;left:12px;letter-spacing:-3px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:80px;top:26px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:80px;top:45px}.mec-event-countdown-style3 .mec-event-countdown-part-details{padding-top:35px;margin-bottom:50px;min-height:100px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-title{font-size:17px;color:#fff;line-height:1.4;padding-right:20px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link{color:#fff;font-size:12px;position:relative;padding-left:22px}.mec-event-countdown-style3 .mec-event-countdown-part-details .mec-event-link:before{content:"";display:inline-block;width:18px;border-top:1px solid #fff;position:absolute;left:0;top:8px}.mec-event-countdown-style3 .mec-event-title-link{position:absolute;left:190px;top:152px}.event-carousel-type1-head .mec-event-date-carousel:before,.mec-event-countdown-style3 .mec-event-date:before{content:'';position:absolute;left:0;bottom:0;z-index:2;width:100%;height:96px;background:0 0;display:inline-block;box-shadow:0 5px 5px rgba(0,0,0,.12)}@media only screen and (min-width:960px){.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown li{padding:10px}.mec-wrap.mec-sm959 .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:31px}}@media (max-width:959px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1,.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part2{width:100%;display:block}.mec-event-countdown-style3 .mec-event-title-link{top:190px}.mec-event-countdown-style3 .mec-event-countdown{top:96px}.mec-event-countdown-style3 .mec-event-date{left:0;top:190px}.mec-event-countdown-style3 .mec-event-date:after{display:none}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-countdown-part-title span{display:inline}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:150px}}@media (max-width:767px){.mec-wrap .mec-event-countdown-style3 .mec-event-countdown-part1 .mec-event-upcoming{font-size:26px;letter-spacing:-1px}.mec-event-countdown-style3 .mec-event-title-link{left:130px}.mec-event-countdown-style3 .mec-event-date{width:120px;font-size:10px;height:63px}.mec-event-countdown-style3 .mec-event-date .mec-date1{font-size:36px;top:20px;left:4px;letter-spacing:-2px}.mec-event-countdown-style3 .mec-event-date .mec-date2{position:absolute;left:52px;top:12px}.mec-event-countdown-style3 .mec-event-date .mec-date3{position:absolute;left:52px;top:28px}}@media (max-width:380px){.mec-event-countdown-style3 .mec-event-title-link{left:10px;top:260px}.mec-event-countdown-style3 .mec-event-countdown-part-details{min-height:300px}.mec-event-countdown-style3 .mec-event-countdown .block-w{margin:3px;height:auto}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li{padding:10px 5px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li span{font-size:15px}.mec-wrap .mec-event-countdown-style3 .mec-event-countdown li .label-w{font-size:8px}}.mec-slider-t1-wrap{width:100%;padding:60px 90px;background:#f7f7f7;min-height:560px;position:relative}.mec-slider-t1{height:500px;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t1 .mec-event-article{position:relative;height:500px}.mec-slider-t1 .mec-slider-t1-img{position:relative;background-size:cover!important;background-position:center!important;width:50%;height:100%;float:right;margin:0;overflow:hidden}.mec-slider-t1 .mec-slider-t1-content{width:50%;float:left;height:100%;background:#fff;padding:6%}.mec-slider-t1-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t1-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t1-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:54px;height:54px;line-height:48px;border-radius:0;text-align:center;background:#fff;box-shadow:0 2px 11px 0 rgba(0,0,0,.045);transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-27px;cursor:pointer}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 29px 0 rgba(0,0,0,.095)}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:-100px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:12px;color:#282828;transition:all .21s ease}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{font-size:13px;color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t1{margin:0 auto;max-width:900px}}@media only screen and (max-width:960px){.mec-slider-t1 .mec-slider-t1-content,.mec-slider-t1 .mec-slider-t1-img{width:100%;float:none}.mec-slider-t1 .mec-slider-t1-img{height:300px}.mec-slider-t1,.mec-slider-t1 .mec-event-article{height:auto}}@media only screen and (max-width:768px){.mec-slider-t1-wrap{padding:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-next{left:auto;right:10px}.mec-slider-t1-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}}@media only screen and (max-width:479px){.mec-slider-t1-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t2-wrap{width:100%;padding:0;background:#fff;min-height:600px;position:relative}.mec-slider-t2 .mec-event-article{height:600px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t2 .mec-slider-t2-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:70%;height:100%;margin:0;overflow:hidden}.mec-slider-t2 .mec-slider-t2-content{width:50%;position:absolute;right:0;top:60px;bottom:60px;padding:5%}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern *{color:#fff}.mec-slider-t2 .mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-content,.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t2-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t2-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:84px;cursor:pointer}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}.mec-wrap.colorskin-custom .mec-slider-t2 .mec-event-article .mec-event-date.mec-color{color:#fff}@media only screen and (min-width:961px){.mec-slider-t2{margin:0 auto;max-width:1200px}}@media only screen and (max-width:960px){.mec-slider-t2 .mec-slider-t2-content,.mec-slider-t2 .mec-slider-t2-img{width:100%;float:none;position:static}.mec-slider-t2 .mec-slider-t2-img{height:300px}.mec-slider-t2 .mec-event-article{height:auto}.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t2-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px}}@media only screen and (max-width:479px){.mec-slider-t2-content.mec-event-grid-modern .mec-event-title{font-size:22px}}.mec-slider-t3-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t3 .mec-event-article{height:700px;position:relative;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t3 .mec-slider-t3-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;opacity:.68;z-index:1}.mec-slider-t3 .mec-slider-t3-content{width:50%;height:auto;vertical-align:middle;display:table;position:absolute;left:0;top:0;bottom:0;padding:0 2% 0 7%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t3 .mec-slider-t3-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-content,.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t3-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t3-content.mec-event-grid-modern .mec-slider-t3-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t3-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t3-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover{border-color:#40d9f1}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:38px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:50%;margin-top:-22px;cursor:pointer}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next{right:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{right:auto;left:10px}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (min-width:961px){.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:50px;font-weight:300}.mec-slider-t3-content.mec-event-grid-modern .mec-event-description{font-size:19px}}@media only screen and (max-width:767px){.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t3-wrap .mec-owl-theme .owl-nav .owl-prev{top:40px;margin-top:0}}@media only screen and (max-width:479px){.mec-slider-t3 .mec-slider-t3-content{width:100%}.mec-slider-t3-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t4-wrap{width:100%;padding:0;background:#161616;min-height:700px;position:relative}.mec-slider-t4 .mec-event-article{height:700px;border:none;padding:0;margin:0;box-shadow:none;background:0 0}.mec-slider-t4 .mec-slider-t4-img{position:absolute;left:0;top:0;background-size:cover!important;background-position:center!important;width:100%;height:100%;margin:0;overflow:hidden;z-index:1}.mec-slider-t4 .mec-slider-t4-content{width:auto;max-width:700px;background:rgba(37,37,37,.94)!important;height:auto;vertical-align:middle;display:table;position:absolute;left:8%;top:19%;padding:3%;margin:auto 0;background:0 0;z-index:2}.mec-slider-t4 .mec-slider-t4-content.mec-event-grid-modern :not(.mec-color){color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-content,.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{background:0 0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:13px;padding:0 42px;line-height:49px;height:50px}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#40d9f1}.mec-slider-t4-content.mec-event-grid-modern .mec-slider-t4-footer{text-align:left;padding:15px 15px 10px}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button{display:inline-block;border:1px solid;font-weight:500;letter-spacing:1px;text-transform:uppercase;font-size:13px;padding:0 42px;line-height:49px;height:50px;transition:all .21s ease}.mec-slider-t4-content.mec-event-grid-modern .mec-booking-button:hover{background:#fff;color:#000;border-color:#fff}.mec-slider-t4-content.mec-event-grid-modern .mec-event-footer .mec-booking-button:hover,.mec-slider-t4-content.mec-event-grid-modern .mec-event-title a:hover{color:#111}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next{right:60px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev{right:112px}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t4-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:767px){.mec-slider-t4 .mec-slider-t4-content{width:100%;left:0;top:auto;bottom:0}.mec-slider-t4-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-slider-t1-content.mec-event-grid-modern .event-grid-modern-head .mec-event-day{font-size:25px}}.mec-slider-t5-wrap{width:auto;max-width:570px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-slider-t5{height:auto;box-shadow:0 5px 35px 0 rgba(0,0,0,.13)}.mec-slider-t5 .mec-event-article{position:relative;height:auto}.mec-slider-t5 .mec-slider-t5-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:300px;float:none;margin:0;overflow:hidden}.mec-slider-t5 .mec-slider-t5-content{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-slider-t5 .mec-events-content p{margin-bottom:20px}.mec-slider-t5-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-slider-t5-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-slider-t5 .mec-slider-t5-col6{width:50%;float:left;height:100%}.mec-slider-t5 .mec-slider-t5-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-slider-t5 .mec-slider-t5-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-slider-t5 .mec-slider-t5-col6 address{font-size:12px;margin-bottom:0}.mec-slider-t5-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-slider-t5-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{opacity:1;width:44px;height:44px;line-height:40px;border-radius:0;text-align:center;background:0 0;border:1px solid #fff;transition:all .25s ease;-webkit-transition:all .25s ease;position:absolute;top:34px;cursor:pointer}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover{box-shadow:0 4px 16px 0 rgba(0,0,0,.075);background:#fff}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next{right:30px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev{right:82px}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev i{font-size:14px;color:#fff;opacity:1;transition:all .25s ease}.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-next:hover i,.mec-slider-t5-wrap .mec-owl-theme .owl-nav .owl-prev:hover i{color:#000;cursor:pointer}@media only screen and (max-width:768px){.mec-slider-t5 .mec-slider-t5-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-slider-t5-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-single-modern .mec-events-event-image{text-align:center}.mec-single-modern .mec-events-event-image img{width:100%}.mec-single-modern .mec-single-event-bar{background-color:#f7f7f7;margin:20px 0 0;padding:15px;display:table;width:100%}.mec-single-modern .mec-single-event-bar>div{display:table-cell}.mec-single-modern .mec-single-event-bar>div i{font-size:20px;vertical-align:middle}.mec-single-modern .mec-single-event-bar>div .mec-time-comment{font-size:12px;color:#999}.mec-single-modern .mec-single-event-bar>div h3{text-transform:uppercase;font-size:16px;font-weight:700;padding-bottom:5px;display:inline;color:#000;padding-left:10px}.mec-single-modern .mec-single-event-bar>div dd{font-size:14px;color:#8d8d8d;padding-left:34px;margin-bottom:0}.mec-single-modern .col-md-4 .mec-frontbox{margin-top:-50px;margin-bottom:70px;padding:20px;border:none;background:#f7f7f7;box-shadow:none}.mec-next-occurrence li{list-style:none}@media only screen and (min-width:960px){.mec-single-modern .col-md-4 .mec-frontbox{margin-left:20px}}@media only screen and (max-width:960px){.mec-single-modern .mec-single-event-bar>div{display:block}}.lity-content>div{overflow:auto}.mec-next-event-details li{list-style:none;margin-top:20px}.mec-next-event-details h6{text-transform:uppercase;font-size:13px;padding-bottom:5px;display:inline;color:#222;padding-left:0}.mec-next-event-details abbr{display:block;padding-left:12px;color:#8d8d8d}.mec-next-event-details i{margin-right:10px;margin-left:12px}.mec-next-event-details i:before{color:#40d9f1}.mec-next-event-details a{text-align:center;display:block;background:#fff;padding:6px 0;font-size:11px;font-weight:400;letter-spacing:0;border:1px solid #e3e3e3;transition:.3s}.mec-single-modal.mec-single-modern .mec-single-title{text-align:center;padding:15px 10px 0}.admin-bar .mec-single-modal.mec-single-modern .mec-single-title{padding-top:40px}.mec-single-modal.mec-single-modern .mec-single-event-bar{padding:5px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div dd{font-size:13px}.mec-single-modal.mec-single-modern .mec-single-event-bar>div h3{font-size:15px}@media only screen and (min-width:960px){.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-left:0}}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox{margin-top:10px;margin-bottom:10px}.mec-single-modal.mec-single-modern .col-md-4 .mec-frontbox.mec-event-meta{padding:0}.mec-single-modal .mec-event-meta dd.mec-organizer-email a,.mec-single-modal .mec-event-meta dd.mec-organizer-url a{font-size:12px;display:block}.mec-modal-wrap{max-width:60vw;max-height:90vh!important;background:#fff;box-shadow:0 1px 55px rgba(0,0,0,.5);overflow-x:hidden!important}@media(max-width:1023px){.mec-modal-wrap{max-width:80vw}}.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li,.mec-single-modal .mec-event-export-module.mec-frontbox .mec-event-exporting .mec-export-details ul li a.mec-events-button{display:block;text-align:center}body .featherlight .featherlight-content{background:0 0;overflow:unset;z-index:9999}body .featherlight .featherlight-close-icon{position:fixed;top:40px;right:40px;background:0 0;color:#fff;border:1px solid #fff;border-radius:0}body .featherlight .featherlight-close-icon:hover{background:#fff;color:#000;border:1px solid #000}@media (max-width:320px){.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{padding:15px 12%}}@media (max-width:414px){.mec-wrap span.flip-clock-divider{width:30px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 7%}}@media (max-width:480px){.mec-wrap span.flip-clock-divider{width:7px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 1%}}@media(max-width:1366px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 15px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:48px}}@media(max-width:1280px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:14px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 10px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:38px}}@media(min-width:961px) and (max-width:1024px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:7px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:15px 5px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul{width:14px}body .mec-modal-wrap .mec-single-modal .flip-clock-wrapper ul li a div{font-size:30px}}@media(max-width:640px){body .mec-modal-wrap .mec-single-modal.featherlight-close-icon{top:14px;right:14px}}@media(max-width:480px){.featherlight .featherlight-content,body .mec-modal-wrap{max-width:100%}body .mec-modal-wrap.flip-clock-divider .flip-clock-label{display:block}}@media (max-width:414px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 65px}body .featherlight-content .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 2px 20px 2px!important}body .featherlight-content .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:3px!important}}@media (max-width:375px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:50px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 45px}}@media (max-width:320px){body .mec-modal-wrap .mec-single-modal .flip-clock-divider:not(:first-child){width:20px!important}body .mec-modal-wrap .mec-single-modal .mec-events-meta-group-countdown{padding:20px 5px 20px 40px}}.mec-events-toggle{max-width:960px;margin-left:auto;margin-right:auto}.mec-events-toggle .mec-toggle-item{border:1px solid #e4e4e4;margin-bottom:15px;box-shadow:0 10px 15px #f3f3f3}.mec-events-toggle .mec-toggle-item-inner{cursor:pointer;position:relative;padding:30px 60px 30px 15px;background:#fff;transition:all .3s ease;min-height:100px;display:table;width:100%;border-collapse:separate}.mec-events-toggle .mec-toggle-item-inner:hover{background:#fbfbfb}.mec-toggle-item-col{width:200px;border-right:1px solid #e3e3e3;margin-right:15px;display:table-cell;padding-right:5px}.mec-toggle-item-col .mec-event-date{font-size:38px;line-height:40px;float:left;margin-right:8px}.mec-toggle-item-col .mec-event-month,.mec-toggle-item-col .mec-time-details{text-transform:uppercase;font-size:12px;line-height:14px;padding-top:4px;font-weight:700}.mec-toggle-item-col .mec-event-detail{font-size:10px}.mec-toggle-item-col .mec-event-day{margin-top:9px;color:silver;font-family:Roboto,sans-serif;font-size:35px;font-weight:100;text-transform:uppercase;letter-spacing:-1px}.mec-events-toggle .mec-toggle-title{color:#000;font-size:23px;font-weight:600;margin-bottom:0;transition:all .3s ease;display:table-cell;text-align:left;max-width:calc(100% - 200px);padding-left:15px;vertical-align:middle}.mec-events-toggle .mec-toggle-item-inner span.event-color{width:5px;height:100%;position:absolute;left:-1px;top:0;bottom:0;border-radius:0;margin:0}.mec-events-toggle .mec-toggle-item-inner i{position:absolute;font-size:30px;right:25px;top:50%;transform:translate(0,-50%);cursor:pointer}.mec-events-toggle .mec-toggle-item.is-open i.mec-sl-plus:before{content:"\e615"}.mec-events-toggle .mec-toggle-item.is-open .mec-toggle-title{background:#f8f8f8;cursor:pointer}.mec-events-toggle .mec-toggle-content{border-top:1px solid #e4e4e4}.mec-events-toggle .mec-toggle-content .mec-modal-wrap{margin:0;max-width:100%;box-shadow:none}.mec-events-toggle .mec-toggle-content .mec-modal-wrap .mec-single-event{margin:0}.mec-events-toggle .mec-toggle-content .mec-single-event-bar,.mec-events-toggle .mec-toggle-content h1.mec-single-title{display:none}.mec-events-toggle .media-links a{margin-bottom:0}.mec-events-toggle .mec-toggle-content .mec-toggle-meta{margin-bottom:14px}.mec-events-toggle #mec_speakers_details.mec-frontbox{padding:0;margin:0}.mec-events-toggle .mec-toggle-item h3.mec-speakers{border:none;text-align:left}.mec-events-toggle .mec-toggle-item h3.mec-speakers:before{content:"\e063";font-family:simple-line-icons;border:none;position:relative;display:inline-block;left:unset;bottom:unset;font-size:22px;font-weight:400;padding:0 11px 0 28px;vertical-align:middle}@media only screen and (max-width:767px){.mec-toggle-item-inner .mec-toggle-item-col{float:none;width:100%;border-right:none;margin-bottom:5px;display:block;max-width:100%;padding-left:15px}.mec-events-toggle .mec-toggle-title{display:block;width:100%;max-width:100%}}.mec-events-agenda-wrap{margin:10px 0;border:1px solid #e9e9e9;padding-left:20px;box-shadow:0 2px 2px rgba(0,0,0,.03)}.mec-events-agenda{padding:0;border-bottom:1px solid #e9e9e9;overflow:hidden}.mec-agenda-date-wrap{width:210px;padding-top:15px;float:left;font-size:13px}.mec-agenda-date-wrap i,.mec-agenda-event i{font-size:11px;color:#aaa;margin-right:4px;margin-left:1px}.mec-agenda-event i{vertical-align:middle;margin-right:1px}.mec-agenda-events-wrap{float:left;width:calc(100% - 210px);background:#f9f9f9;padding:15px}.mec-agenda-time{font-size:11px;color:#707070;padding-right:10px;width:138px;display:inline-block}.mec-agenda-event-title{position:relative;padding-left:14px}.mec-agenda-event-title a{font-family:Roboto,Montserrat,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;color:#333}.mec-agenda-event-title span.event-color{width:9px;height:9px;position:absolute;left:0;top:4px;margin:0}.mec-agenda-date-wrap span.mec-agenda-day{color:#aaa;font-size:12px}@media only screen and (max-width:767px){.mec-agenda-date-wrap,.mec-agenda-events-wrap{float:none;width:100%}.mec-events-agenda span.mec-agenda-event-title{display:block;width:100%}.mec-agenda-event-title span.event-color{top:7px}.mec-agenda-event-title a{font-size:13px}}.mec-yearly-view-wrap{margin:0 0 15px;border:1px solid #e6e6e6;box-shadow:0 2px 4px rgba(0,0,0,.04);border-bottom-width:4px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{max-width:100%;width:232px;padding:10px;background:#fff;margin:10px;display:inline-block}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{transition:none;height:30px;width:30px;line-height:30px;border-radius:0;font-size:12px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-calendar-events-sec{padding:10px}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar .mec-has-event:after{width:4px;height:4px;bottom:3px;margin-left:-2px}.mec-yearly-view-wrap .mec-calendar-side .mec-calendar-table{min-height:200px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-head dl dt{background:#f9f9f9;font-size:13px}.mec-calendar.mec-yearly-calendar .mec-calendar-table-title{text-align:center;font-size:15px;font-weight:700;color:#222;margin-top:-5px;padding-bottom:5px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{min-height:200px;width:538px;overflow:hidden;float:left;background:#f8f8f8;padding:15px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{min-height:200px;width:calc(100% - 538px);float:left;padding:0 0 0 20px;overflow:hidden}.mec-yearly-view-wrap .mec-yearly-title-sec{position:relative;padding:15px;text-align:center;border-bottom:1px solid #e6e6e6;box-shadow:0 1px 3px rgba(0,0,0,.02)}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:30px;line-height:40px;color:#333;margin:0;font-weight:700}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{position:absolute;top:50%;margin-top:-15px;min-width:30px;height:30px;line-height:30px;padding:0 8px;text-align:center;background:#fff;color:#666;font-size:14px;border:1px solid #eee;border-radius:2px;box-shadow:0 2px 0 0 rgba(0,0,0,.015);transition:all .33s ease;cursor:pointer}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year{right:auto;left:20px;padding-right:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year{left:auto;right:20px;padding-left:14px}.mec-yearly-view-wrap .mec-yearly-title-sec .mec-next-year i,.mec-yearly-view-wrap .mec-yearly-title-sec .mec-previous-year i{font-size:12px;color:#40d9f1;cursor:pointer}.mec-yearly-view-wrap .mec-events-agenda.mec-selected{box-shadow:-10px 0 0 0 #fffcf2,0 -1px 0 #fbebb6;background:#fffcf2;border-color:#fbebb6;color:#f9af29}@media only screen and (max-width:959px){.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:268px;padding:10px 5px}.mec-yearly-view-wrap .mec-yearly-agenda-sec{width:calc(100% - 268px);padding:0 0 0 10px}}@media only screen and (max-width:767px){.mec-yearly-view-wrap .mec-yearly-agenda-sec,.mec-yearly-view-wrap .mec-yearly-calendar-sec{width:100%;float:none}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar{width:auto}.mec-yearly-view-wrap .mec-calendar.mec-yearly-calendar dl dt{width:14.2%}.mec-yearly-view-wrap .mec-yearly-title-sec h2{font-size:25px}}.mec-yearly-view-wrap .mec-agenda-event i,.mec-yearly-view-wrap .mec-agenda-time{display:none}@media only screen and (min-width:768px){.mec-yearly-view-wrap .mec-events-agenda-wrap{margin-top:0;border:none;padding-left:0;box-shadow:none}.mec-yearly-view-wrap .mec-agenda-date-wrap{width:174px;font-size:11px;padding-top:10px}.mec-yearly-view-wrap .mec-agenda-events-wrap{width:calc(100% - 174px);padding:10px}.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:13px}.mec-yearly-view-wrap .mec-agenda-event-title span.event-color{width:8px;height:8px}.mec-yearly-view-wrap .mec-agenda-date-wrap span.mec-agenda-day{font-size:11px}.mec-yearly-view-wrap .mec-yearly-calendar-sec{box-shadow:-2px 0 5px rgba(0,0,0,.03) inset}}@media only screen and (max-width:1200px){.mec-yearly-view-wrap .mec-agenda-event-title a{font-size:12px;padding-right:6px}}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table{padding-bottom:10px;border-bottom:none}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt:hover{cursor:pointer}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event,.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-has-no-event:hover{color:#bbb;cursor:default}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active{background:#40d9f1;color:#fff;position:relative}.mec-calendar.mec-calendar-timetable .mec-calendar-d-table dl dt.mec-timetable-day-active:after{content:'';position:absolute;display:block;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#40d9f1 transparent transparent transparent}.mec-timetable-events-list{padding:10px 20px;border:none;margin:0}.mec-timetable-events-list .mec-timetable-event{padding:10px 0;border-bottom:1px dashed #ddd}.mec-timetable-events-list .mec-timetable-event:last-child{border:none}.mec-timetable-event .mec-timetable-event-span{font-size:12px;color:#444;padding-right:30px;line-height:22px}.mec-timetable-events-list .mec-timetable-event i{font-size:13px;color:#aaa;margin-right:3px;vertical-align:baseline}.mec-timetable-event .mec-timetable-event-span a{color:#333}.mec-timetable-event .mec-timetable-event-time{font-size:11px}.mec-timetable-event .mec-timetable-event-time i{vertical-align:text-bottom}.mec-timetable-event .mec-timetable-event-title{font-size:13px}.mec-timetable-event .mec-timetable-event-title .event-color{width:10px;height:10px}.mec-timetable-events-list .mec-timetable-event.mec-util-hidden{display:none}.mec-timetable-events-list.mec-util-hidden{display:none}@media only screen and (min-width:768px){.mec-timetable-events-list{display:table;width:100%;margin:10px 0 20px}.mec-timetable-events-list .mec-timetable-event{display:table-row;padding:0;border:none;background:#fff}.mec-timetable-events-list .mec-timetable-event:hover{background:#fafafa}.mec-timetable-event .mec-timetable-event-span{display:table-cell;padding:10px 15px;border-bottom:1px solid #ebebeb}.mec-timetable-events-list .mec-timetable-event:last-child .mec-timetable-event-span{border-bottom:none}}@media only screen and (max-width:767px){.mec-timetable-event .mec-timetable-event-title{display:block;width:100%;padding:5px 0 10px;font-weight:700}}.mec-timetable-t2-wrap{border:1px solid #e6e6e6;background:#fafafa;padding:0 15px 15px;overflow:hidden;box-shadow:0 3px 2px 0 rgba(0,0,0,.012)}.mec-timetable-t2-col{width:20%;float:left;min-height:20px;padding-right:1px;background:0 0}.mec-ttt2-title{background:#fafafa;color:#333;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:1px;text-align:center;padding:25px 10px 10px;margin-bottom:1px}.mec-timetable-t2-col .mec-event-article{position:relative}.mec-timetable-t2-col .mec-event-article .event-color{position:absolute;width:auto;height:auto;left:0;right:0;top:0;bottom:0;margin:0;z-index:1;border-radius:2px}.mec-timetable-t2-content{position:relative;z-index:2;color:#fff;padding:15px 15px 20px;text-align:left;height:130px;margin-bottom:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title{line-height:22px;margin-bottom:13px;white-space:nowrap;padding-right:1px;overflow:hidden}.mec-timetable-t2-content .mec-event-title a{color:#fff;font-size:15px;font-weight:600;white-space:nowrap;overflow:hidden}.mec-timetable-t2-content div{color:#fff;font-size:11px;font-weight:400;line-height:19px;white-space:nowrap}.mec-timetable-t2-content div i{font-size:12px;margin-right:4px}@media only screen and (max-width:960px){.mec-timetable-t2-col{width:100%;float:none}}@media(min-width:961px){.mec-timetable-col-7{width:14.28%}.mec-timetable-col-6{width:16.6666%}}.mec-timetable-t3-wrap td{position:relative;padding:0}.mec-timetable-t3-wrap td a{width:100%;display:block;min-height:110px}.mec-weather-box{padding:15px 0}.mec-weather-head{min-height:90px;padding:5px 0;clear:both;overflow:hidden;margin-bottom:25px;border-radius:10px;background:#238af5;position:relative}.mec-weather-icon-box{float:left;width:80px;height:80px;border-radius:10px;overflow:hidden;background:#238af5}.mec-weather-icon{width:80px;height:80px;display:inline-block;border-radius:10px}.mec-weather-summary{float:left;width:calc(100% - 80px);padding-left:10px;margin:10px 0;height:60px}.mec-weather-summary-report{font-size:15px;color:rgba(255,255,255,.68);margin-bottom:6px}.mec-weather-summary-temp{font-family:Roboto,Sans-serif;font-weight:300;color:#fff;font-size:29px;line-height:1}.degrees-mode{background:rgba(0,0,0,.2);cursor:pointer;font-weight:300;font-size:18px;padding:4px 5px;line-height:1;color:#fff;position:absolute;border-radius:8px;bottom:16px;left:16px}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras{width:auto;padding:10px 15px 0 15px;float:right;min-height:80px;color:#fff;font-size:13px;line-height:1}.mec-weather-extras div{line-height:20px;height:20px}.mec-weather-extras span{color:rgba(255,255,255,.68);font-size:12px;text-transform:uppercase}.mec-weather-extras var{font-size:11px;letter-spacing:.4px}.mec-weather-icon.clear-day,.mec-weather-icon.clear-night{background-image:url(../img/mec-weather-icon-01.png)}.mec-weather-icon.partly-sunny-day,.mec-weather-icon.partly-sunny-night{background-image:url(../img/mec-weather-icon-02.png)}.mec-weather-icon.partly-cloudy-day,.mec-weather-icon.partly-cloudy-night{background-image:url(../img/mec-weather-icon-03.png)}.mec-weather-icon.cloudy,.mec-weather-icon.fog,.mec-weather-icon.wind{background-image:url(../img/mec-weather-icon-04.png)}.mec-weather-icon.thunderstorm{background-image:url(../img/mec-weather-icon-05.png)}.mec-weather-icon.rain{background-image:url(../img/mec-weather-icon-06.png)}.mec-weather-icon.hail,.mec-weather-icon.sleet,.mec-weather-icon.snow{background-image:url(../img/mec-weather-icon-07.png)}.mec-av-spot-wrap{width:auto;max-width:1200px;padding:0;margin:0 auto 25px;background:#f7f7f7;min-height:480px;position:relative}.mec-av-spot{height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-av-spot .mec-event-article{position:relative;height:auto}.mec-av-spot .mec-av-spot-img{position:relative;background-size:cover!important;background-position:center!important;width:100%;height:330px;float:none;margin:0;overflow:hidden}.mec-av-spot .mec-av-spot-content,.mec-av-spot .mec-av-spot-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-av-spot .mec-av-spot-head{background:#222;color:#fff;min-height:80px}.mec-av-spot .mec-av-spot-head .mec-av-spot-box{padding-top:25px;font-size:13px;color:#ddd}.mec-av-spot .mec-av-spot-head .mec-av-spot-box span{color:#40d9f1;font-size:40px;font-weight:700;font-style:italic}.mec-av-spot .mec-av-spot-head .mec-event-countdown{text-align:center;padding-top:10px;display:table;table-layout:fixed;margin:0 auto;float:right}.mec-av-spot .mec-av-spot-head .mec-event-countdown li{display:table-cell;padding:10px 20px;position:relative;height:60px}.mec-av-spot .mec-av-spot-head .mec-event-countdown p{margin-bottom:0}.mec-av-spot .mec-events-content p{margin-bottom:20px}.mec-av-spot-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-av-spot-wrap .mec-event-grid-modern .event-grid-modern-head{margin-bottom:10px;padding:14px 34px;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:29px}.mec-av-spot .mec-av-spot-col6{width:50%;float:left;height:100%}.mec-av-spot .mec-av-spot-col6 i{font-size:42px;float:left;margin-right:7px;height:58px}.mec-av-spot .mec-av-spot-col6 h6{text-transform:uppercase;font-size:17px;padding:4px 0;display:inline;color:#444}.mec-av-spot .mec-av-spot-col6 address{font-size:12px;margin-bottom:0}.mec-av-spot-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-av-spot-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:768px){.mec-av-spot .mec-av-spot-col6{width:100%;margin:10px 0}}@media only screen and (max-width:479px){.mec-av-spot-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.mec-events-masonry-wrap{display:block;width:auto}.mec-masonry-item-wrap{width:calc(33.33% - 30px);padding:0;margin:0 15px 30px;min-height:10px;position:relative}.isotope-item{z-index:2}.isotope-hidden.isotope-item{pointer-events:none;z-index:1}.isotope,.isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.mec-events-masonry-cats{padding:10px;margin-bottom:25px;text-align:center;clear:both;list-style:none outside none}.mec-events-masonry-cats a{border-radius:2px;padding:6px 12px;font-size:13px;line-height:1.2;color:#333;font-weight:400;margin-top:0!important;text-align:center;display:inline-block;width:auto;border:2px solid transparent;transition:all .2s ease}.mec-events-masonry-cats a:hover{border-color:#40d9f1;color:#333}.mec-events-masonry-cats a.mec-masonry-cat-selected{border:2px solid #40d9f1;color:#40d9f1}.mec-masonry{background:#f7f7f7;height:auto;border:1px solid #eee;box-shadow:0 6px 12px -4px rgba(0,0,0,.05)}.mec-masonry .mec-event-article{position:relative;height:auto}.mec-masonry .mec-masonry-img{position:relative;width:100%;height:auto;float:none;margin:0;overflow:hidden}.mec-masonry .mec-masonry-img img{width:100%}.mec-masonry .mec-masonry-content,.mec-masonry .mec-masonry-head{width:100%;float:none;height:100%;background:#fff;padding:0 20px 20px;margin-bottom:0}.mec-masonry .mec-events-content p{margin-bottom:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-article{border:none;padding:0;margin:0;box-shadow:none}.mec-masonry-item-wrap .mec-event-grid-modern .event-grid-modern-head{min-height:79px;margin-bottom:10px;padding:14px 5%;margin-left:-20px;margin-right:-20px;text-align:left;background:#f9f9f9;border-bottom:1px solid #eee}.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:22px}.mec-masonry-content.mec-event-grid-modern .mec-event-content{padding-top:20px}.mec-masonry-content.mec-event-grid-modern .mec-event-footer{height:auto}.mec-masonry .mec-masonry-col6 .mec-event-date{font-size:52px;letter-spacing:-2px;line-height:41px;vertical-align:top}.mec-masonry .mec-masonry-col6{width:50%;float:left;height:100%}.mec-masonry .mec-masonry-col6 i{font-size:24px;float:left;margin-right:7px;height:50px}.mec-masonry .mec-masonry-col6 .mec-event-month,.mec-masonry .mec-masonry-col6 h6{text-transform:capitalize;font-size:15px;padding:4px 0;display:inline;color:#444}.mec-masonry .mec-masonry-col6 .mec-event-detail,.mec-masonry .mec-masonry-col6 address{font-size:11px;margin-bottom:0}.mec-masonry-content.mec-event-grid-modern .mec-event-title a:hover{text-decoration:underline}.mec-masonry-content.mec-event-grid-modern .mec-event-footer .mec-booking-button{font-size:12px;padding:0 31px;line-height:49px;height:50px;top:0;box-shadow:0 5px 11px -3px rgba(0,0,0,.05)}@media only screen and (max-width:960px){.mec-masonry-item-wrap{width:calc(50% - 30px)}}@media only screen and (max-width:768px){.mec-masonry .mec-masonry-col6{width:100%;margin:10px 0}.mec-masonry-item-wrap{width:calc(100% - 30px)}}@media only screen and (max-width:479px){.mec-masonry-content.mec-event-grid-modern .mec-event-title{font-size:24px}}.btn-wrapper{text-align:center}.countdown-wrapper .btn-wrapper{padding-top:10px;padding-right:0}.countdown-wrapper h5.countdown-message{letter-spacing:5px;font-weight:500;font-size:18px}.blox.dar .countdown-wrapper p,.countdown-wrapper p{color:#888}.countdown-wrapper a.button.black{float:right;margin-right:0}.mec-wrap .threedaydigits .days .flip-clock-label{right:-100px}@media only screen and (min-width:320px) and (max-width:767px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{left:0;font-weight:300}.mec-wrap span.flip-clock-divider{width:12px}}@media only screen and (min-width:320px) and (max-width:480px){.mec-wrap .flip-clock-wrapper ul{width:29px!important}.mec-wrap .flip-clock-wrapper ul li a div div.inn{font-size:25px!important}.mec-wrap .flip-clock-divider .flip-clock-label{display:none}.mec-wrap span.flip-clock-divider:first-child{width:0}.mec-wrap span.flip-clock-divider{width:20px}.mec-single-event .mec-events-meta-group-countdown{margin-left:0;padding:15px 18%}}@media screen and (min-width:960px) and (max-width:1200px){.mec-wrap .threedaydigits ul{height:50px;width:47px}}@media screen and (min-width:480px) and (max-width:768px){.mec-wrap .threedaydigits ul{height:48px;width:26px!important}.mec-wrap .threedaydigits .flip-clock-label{font-size:8px;left:-8px}}@media screen and (min-width:320px) and (max-width:480px){.mec-wrap .threedaydigits ul{height:48px;width:22px!important}}.mec-wrap .flip-clock-wrapper *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.mec-wrap .flip-clock-wrapper a{cursor:pointer;text-decoration:none;color:#ccc}.mec-wrap .flip-clock-wrapper a:hover{color:#fff}.mec-wrap .flip-clock-wrapper ul{list-style:none}.flip-clock-wrapper.clearfix:after,.mec-wrap .flip-clock-wrapper.clearfix:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper.clearfix:after{clear:both}.mec-wrap .flip-clock-wrapper{font:normal 11px "helvetica neue",helvetica,sans-serif;-webkit-user-select:none}.mec-wrap .flip-clock-meridium{background:0 0!important;box-shadow:0 0 0!important;font-size:36px!important}.mec-wrap .flip-clock-meridium a{color:#313333}.mec-wrap .flip-clock-wrapper{text-align:center;position:relative;display:inline-block;padding-bottom:10px}.flip-clock-wrapper:after,.mec-wrap .flip-clock-wrapper:before{content:" ";display:table}.mec-wrap .flip-clock-wrapper:after{clear:both}.mec-wrap .flip-clock-wrapper ul{position:relative;float:left;margin:2px;width:50px;height:50px;font-size:80px;font-weight:700;line-height:87px;border-radius:3px;background:rgba(0,0,0,.21)}.mec-wrap .flip-clock-wrapper ul li{z-index:1;position:absolute;left:0;top:0;width:100%;height:100%;line-height:54px;text-decoration:none!important}.mec-wrap .flip-clock-wrapper ul li:first-child{z-index:2}.mec-wrap .flip-clock-wrapper ul li a{display:block;height:100%;-webkit-perspective:200px;-moz-perspective:200px;perspective:200px;margin:0!important;overflow:visible!important;cursor:default!important}.mec-wrap .flip-clock-wrapper ul li a div{z-index:1;position:absolute;left:0;width:100%;height:50%;font-size:80px;overflow:hidden;outline:1px solid transparent}.mec-wrap .flip-clock-wrapper ul li a div .shadow{position:absolute;width:100%;height:100%;z-index:2}.mec-wrap .flip-clock-wrapper ul li a div.up{-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;top:0}.mec-wrap .flip-clock-wrapper ul li a div.up:after{content:"";position:absolute;top:24px;left:0;z-index:5;width:100%;height:3px;background-color:rgba(0,0,0,.12)}.mec-wrap .flip-clock-wrapper ul li a div.down{-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0;bottom:0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.mec-wrap .flip-clock-wrapper ul li a div div.inn{position:absolute;left:0;z-index:1;width:100%;height:200%;color:#fff;text-shadow:0 0 2px rgba(0,0,0,.25);text-align:center;background-color:#40d9f1;border-radius:3px;font-size:48px}.mec-wrap .flip-clock-wrapper ul li a div.up div.inn{top:0}.mec-wrap .flip-clock-wrapper ul li a div.down div.inn{bottom:0}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-before{z-index:3}.mec-wrap .flip-clock-wrapper .flip{box-shadow:0 2px 5px rgba(0,0,0,.17)}.mec-wrap .flip-clock-wrapper ul.play li.flip-clock-active{-webkit-animation:asd .5s .5s linear both;-moz-animation:asd .5s .5s linear both;animation:asd .5s .5s linear both;z-index:5}.mec-wrap .flip-clock-divider{float:left;display:inline-block;position:relative;width:18px;height:62px}.mec-wrap .flip-clock-divider:first-child{width:0}.mec-wrap .flip-clock-dot{display:none;background:#323434;width:10px;height:10px;position:absolute;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.5);left:5px}.mec-wrap .flip-clock-divider .flip-clock-label{position:absolute;bottom:-1.5em;right:-71px;color:#101010;font-weight:700;text-shadow:none;text-transform:uppercase}.mec-wrap .blox.dark .flip-clock-divider .flip-clock-label{color:#8a8a8a}.mec-wrap .flip-clock-divider.seconds .flip-clock-label{right:-82px}.mec-wrap .flip-clock-dot.top{top:30px}.mec-wrap .flip-clock-dot.bottom{bottom:30px}@-webkit-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-moz-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@-o-keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}@keyframes asd{0%{z-index:2}20%{z-index:4}100%{z-index:4}}.flip-clock-wrapper ul.play li.flip-clock-active .down{z-index:2;-webkit-animation:turn .5s .5s linear both;-moz-animation:turn .5s .5s linear both;animation:turn .5s .5s linear both}@-webkit-keyframes turn{0%{-webkit-transform:rotatex(90deg)}100%{-webkit-transform:rotatex(0)}}@-moz-keyframes turn{0%{-moz-transform:rotatex(90deg)}100%{-moz-transform:rotatex(0)}}@-o-keyframes turn{0%{-o-transform:rotatex(90deg)}100%{-o-transform:rotatex(0)}}@keyframes turn{0%{transform:rotatex(90deg)}100%{transform:rotatex(0)}}.flip-clock-wrapper ul.play li.flip-clock-before .up{z-index:2;-webkit-animation:turn2 .5s linear both;-moz-animation:turn2 .5s linear both;animation:turn2 .5s linear both}@-webkit-keyframes turn2{0%{-webkit-transform:rotatex(0)}100%{-webkit-transform:rotatex(-90deg)}}@-moz-keyframes turn2{0%{-moz-transform:rotatex(0)}100%{-moz-transform:rotatex(-90deg)}}@-o-keyframes turn2{0%{-o-transform:rotatex(0)}100%{-o-transform:rotatex(-90deg)}}@keyframes turn2{0%{transform:rotatex(0)}100%{transform:rotatex(-90deg)}}.flip-clock-wrapper ul li.flip-clock-active{z-index:3}.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow{background:-moz-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,rgba(64,64,64,.68)));background:linear,top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;background:-o-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:-ms-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%);background:linear,to bottom,rgba(0,0,0,.1) 0,rgba(64,64,64,.68) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .3s linear both}.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:show .5s linear both;-moz-animation:show .5s linear both;animation:show .5s linear both}.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow{background:-moz-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(64,64,64,.68)),color-stop(100%,rgba(0,0,0,.1)));background:linear,top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;background:-o-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:-ms-linear-gradient(top,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%);background:linear,to bottom,rgba(64,64,64,.68) 0,rgba(0,0,0,.1) 100%;-webkit-animation:hide .5s .3s linear both;-moz-animation:hide .5s .3s linear both;animation:hide .5s .2s linear both}@-webkit-keyframes show{0%{opacity:0}100%{opacity:1}}@-moz-keyframes show{0%{opacity:0}100%{opacity:1}}@-o-keyframes show{0%{opacity:0}100%{opacity:1}}@keyframes show{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes hide{0%{opacity:1}100%{opacity:0}}@-moz-keyframes hide{0%{opacity:1}100%{opacity:0}}@-o-keyframes hide{0%{opacity:1}100%{opacity:0}}@keyframes hide{0%{opacity:1}100%{opacity:0}}@font-face{font-family:simple-line-icons;src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1);src:url(../fonts/Simple-Line-Icons.eot?v=2.3.1#iefix) format('embedded-opentype'),url(../fonts/Simple-Line-Icons.woff2?v=2.3.1) format('woff2'),url(../fonts/Simple-Line-Icons.woff?v=2.3.1) format('woff'),url(../fonts/Simple-Line-Icons.ttf?v=2.3.1) format('truetype'),url(../fonts/Simple-Line-Icons.svg?v=2.3.1#simple-line-icons) format('svg');font-weight:400;font-style:normal}[class*=mec-sl-]{font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mec-sl-facebook:before{content:"\e00b"}.mec-sl-twitter:before{content:"\e009"}.mec-sl-google-plus:before{content:"\e60d"}.mec-sl-angle-left:before{content:"\e605"}.mec-sl-angle-right:before{content:"\e606"}.mec-sl-calendar:before{content:"\e075"}.mec-sl-clock-o:before{content:"\e081"}.mec-sl-home:before{content:"\e069"}.mec-sl-phone:before{content:"\e600"}.mec-sl-envelope:before{content:"\e086"}.mec-sl-sitemap:before{content:"\e037"}.mec-sl-map-marker:before{content:"\e096"}.mec-sl-floder:before{content:"\e089"}.mec-sl-wallet:before{content:"\e02a"}.mec-color,.mec-color-before :before,.mec-color-hover:hover,.mec-wrap .mec-color,.mec-wrap .mec-color-before :before,.mec-wrap .mec-color-hover:hover{color:#40d9f1}.mec-bg-color,.mec-bg-color-hover:hover,.mec-wrap .mec-bg-color,.mec-wrap .mec-bg-color-hover:hover{background-color:#40d9f1}.mec-border-color,.mec-border-color-hover:hover,.mec-wrap .mec-border-color,.mec-wrap .mec-border-color-hover:hover{border-color:#40d9f1}.mec-toggle-month-divider.mec-skin-list-events-container{border:1px solid #e8e8e8;margin-bottom:30px;background:#f8f8f8;box-shadow:0 2px 18px -1px rgba(0,0,0,.1);border-radius:2px}.mec-toggle-month-divider .mec-month-divider{margin:0;text-align:left;background:#fff;position:relative;cursor:pointer;border-top:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider span{padding:20px;border-bottom:1px solid #e8e8e8}.mec-toggle-month-divider .mec-month-divider i{position:absolute;right:20px;top:24px;font-size:20px;cursor:pointer}.mec-toggle-month-divider .mec-month-divider span:before{display:none}.mec-toggle-month-divider .mec-month-divider+article{margin-top:20px}.mec-toggle-month-divider .mec-wrap .mec-month-divider:first-of-type{border-top:none}.mec-toggle-month-divider .mec-event-list-accordion .mec-month-divider:not(:first-of-type)~article{display:none}.mec-skin-list-events-container:not(.mec-toggle-month-divider) .mec-month-divider i{display:none}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-month{display:inline-block;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-date{font-size:14px;line-height:14px;float:none;display:inline-block;margin-right:0;font-weight:700}.mec-events-toggle .mec-toogle-inner-month-divider.mec-toggle-item-inner{padding:20px 60px 30px 15px}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{float:left;clear:right;width:100px;margin-right:20px;margin-left:10px}.mec-toogle-inner-month-divider .mec-toggle-item-col .mec-event-detail{margin-top:-6px}.mec-toogle-inner-month-divider .mec-toggle-item-col{float:none;width:100%;margin-top:10px;display:block;border:none}.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:19px;display:block;padding-top:10px}@media only screen and (max-width:768px){.mec-events-toggle .mec-toogle-inner-month-divider .mec-toggle-title{font-size:14px;padding-top:0}.mec-toogle-inner-month-divider .mec-toggle-item-col{margin-top:0}.mec-toogle-inner-month-divider .mec-toggle-month-inner-image{width:70px}}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured:before{z-index:1;position:absolute;top:25px;right:-37px;font-size:11px;letter-spacing:1px;text-transform:uppercase;background:#04de78;padding:2px 40px;color:#fff;-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:.5s cubic-bezier(.25,.5,.06,.85);transition:.5s cubic-bezier(.25,.5,.06,.85);content:attr(data-style)}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled,.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-featured{overflow:hidden;position:relative}.mec-wrap article:not([class^=mec-event-countdown]):not([class^=mec-event-cover-]).mec-label-canceled:before{background:#de0404}.mec-daily-view-date-events article:before,ul.mec-weekly-view-dates-events article:before{padding:7px 40px!important;top:27px!important}.mec-event-grid-classic article .mec-fc-style,.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style,.mec-timetable-wrap article .mec-fc-style,.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article.mec-event-cover-modern .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{font-size:9px;letter-spacing:.5px;text-transform:uppercase;background:#04de78;padding:2px 7px;color:#fff;position:relative;margin-left:5px;border-radius:2px}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-modern.mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-minimal article .mec-fc-style:before,.mec-event-grid-simple article .mec-fc-style:before,.mec-timetable-wrap article .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article .mec-fc-style:before,.mec-wrap .mec-event-list-modern article .mec-fc-style:before,.mec-wrap .mec-events-agenda .mec-agenda-event .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style:before{width:0;height:0;border-top:4px solid transparent!important;border-right:5px solid;border-bottom:4px solid transparent;margin:0;top:50%;left:-4px;transform:translateY(-4.5px);position:absolute;content:'';color:#04de78}.mec-wrap .mec-events-agenda .mec-agenda-event.mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-event-grid-classic article.mec-label-canceled:before,.mec-event-grid-classic article.mec-label-featured:before,.mec-event-grid-minimal article.mec-label-canceled:before,.mec-event-grid-minimal article.mec-label-featured:before,.mec-event-grid-simple article.mec-label-canceled:before,.mec-event-grid-simple article.mec-label-featured:before,.mec-timetable-wrap article.mec-label-canceled:before,.mec-timetable-wrap article.mec-label-featured:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled:before,.mec-wrap .mec-event-list-accordion article.mec-label-featured:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled:before,.mec-wrap .mec-event-list-modern article.mec-label-featured:before{display:none}.mec-wrap .mec-event-list-accordion article .mec-fc-style,.mec-wrap .mec-event-list-modern article .mec-fc-style,.mec-wrap article.mec-event-cover-classic .mec-fc-style,.mec-wrap article.mec-event-cover-clean .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-] .mec-fc-style{top:-3px;font-size:11px;margin-left:10px}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style{background:#de0404}.mec-event-grid-classic article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-minimal article.mec-label-canceled .mec-fc-style:before,.mec-event-grid-simple article.mec-label-canceled .mec-fc-style:before,.mec-timetable-wrap article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-accordion article.mec-label-canceled .mec-fc-style:before,.mec-wrap .mec-event-list-modern article.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-classic.mec-label-canceled .mec-fc-style:before,.mec-wrap article.mec-event-cover-clean.mec-label-canceled .mec-fc-style:before,.mec-wrap article[class^=mec-event-countdown-].mec-label-canceled .mec-fc-style:before{color:#de0404}.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-canceled:before,.mec-wrap .mec-slider-t5 article:not([class^=mec-event-countdown]).mec-label-featured:before{-ms-transform:none;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none;top:271px;right:0}.mec-timetable-wrap article .mec-fc-style{top:-2px;font-size:10px}.mec-wrap article.mec-event-cover-modern .mec-fc-style{padding:5px 9px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:24px;display:inline-block;border-radius:2px}.mec-skin-grid-events-container .mec-wrap .mec-event-grid-clean .mec-event-article:before{-ms-transform:none;-webkit-transform:none;transform:none!important;-webkit-transition:none;transition:none;top:22px!important;right:22px!important;padding:0 10px!important}.mec-event-grid-minimal article .mec-fc-style,.mec-event-grid-simple article .mec-fc-style{top:-4px;font-size:10px;margin-left:10px}.mec-event-grid-classic article .mec-fc-style{padding:5px 20px;font-size:12px;margin-top:8px;display:inline-block}.mec-hourly-schedule-speaker-info{background:#fff;padding:30px;border:1px solid #e6e6e6;max-width:740px;width:740px;margin-left:-110px}.mec-hourly-schedule-speaker-thumbnail{float:left;max-width:30%;width:30%}.mec-hourly-schedule-speaker-name{font-weight:700;font-size:26px;line-height:1.2;color:#333;text-transform:uppercase}.mec-hourly-schedule-speaker-details{float:left;width:69%;padding-left:25px}.mec-hourly-schedule-speaker-job-title{font-size:16px;line-height:1.3;margin-bottom:4px}.mec-hourly-schedule-speaker-description{font-size:14px;font-weight:400;color:#6d7683;line-height:1.7;text-align:left}.mec-hourly-schedule-speaker-contact-information a i{color:#6b6b6b;background:#ebebeb;line-height:29px;margin:9px 7px 9px 0;width:30px;height:30px;display:inline-block;text-align:center;transition:all .2s ease;font-size:15px;cursor:pointer;border-radius:3px}.mec-hourly-schedule-speaker-contact-information a i:hover{background:#222;color:#fff}@media only screen and (max-width:479px){.mec-hourly-schedule-speaker-thumbnail{float:none;max-width:none;margin-right:0;margin-bottom:15px;width:100%}.mec-hourly-schedule-speaker-thumbnail img{width:100%}.mec-hourly-schedule-speaker-details{padding-left:0}.mec-hourly-schedule-speaker-info{width:90%;margin:0 auto}}.mec-profile .mec-profile-bookings{border:2px solid #e6e6e6;text-align:center}.mec-profile .mec-profile-bookings tbody tr:first-child{background:#f7f7f7;font-weight:700;text-transform:capitalize}.mec-profile .mec-profile-bookings tbody tr{border-bottom:1px solid #e6e6e6;font-size:14px}.mec-profile .mec-profile-bookings tbody tr td{border:1px solid #e6e6e6;padding:10px;text-align:center;word-break:initial}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:53%;text-align:left}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:7%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8) i{color:#fe686a}.mec-profile .mec-event-status{padding:5px 10px;color:#fff;border-radius:2px;font-size:12px;line-height:12px;letter-spacing:.4px}.mec-profile .mec-event-status.mec-book-confirmed{background:#50d477}.mec-profile .mec-event-status.mec-book-pending{background:#fcbe69}.mec-profile .mec-event-status.mec-book-rejected{background:#fe686a}.mec-profile .mec-event-date{font-size:12px;color:#888}.mec-event-date,.mec-event-status{text-align:center}.mec-event-date .mec-tooltip,.mec-event-status .mec-tooltip{position:relative;width:fit-content;margin:auto}.mec-profile i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{min-width:250px;max-width:300px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;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 #535a61;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal;opacity:0;visibility:hidden;display:none}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;letter-spacing:1.1px;font-weight:500}.mec-event-date .mec-tooltip:hover .box:after,.mec-event-status .mec-tooltip:hover .box:after{content:'';position:absolute;width:12px;height:12px;left:calc(50% - 12px);bottom:-12px;transform:translate(50%,-50%) rotate(-45deg);background-color:#000;box-shadow:0 8px 9px -4px #535a61}.mec-event-status .mec-tooltip .box{min-width:100px}.mec-event-status.mec-book-confirmed .mec-tooltip .box,.mec-event-status.mec-book-confirmed .mec-tooltip:hover .box:after{background-color:#50d477}.mec-event-status.mec-book-rejected .mec-tooltip .box,.mec-event-status.mec-book-rejected .mec-tooltip:hover .box:after{background-color:#fe686a}.mec-event-status.mec-book-pending .mec-tooltip .box,.mec-event-status.mec-book-pending .mec-tooltip:hover .box:after{background-color:#fcbe69}.mec-event-date .mec-tooltip:hover .box,.mec-event-status .mec-tooltip:hover .box{opacity:1;visibility:visible;display:block}.mec-profile .mec-event-status{padding:0}.mec-profile .mec-booking-number-of-attendees{font-size:13px;color:#888}.mec-profile .mec-booking-number-of-attendees i,.mec-profile .mec-profile-bookings-view-invoice i{font-size:15px;color:#008aff;vertical-align:text-bottom;margin-right:4px}.mec-booking-attendees{background:#fff;padding:10px}.mec-booking-attendees{width:850px;text-align:center}.mec-booking-attendees-wrapper{border:2px solid #e6e6e6;font-size:14px}.mec-booking-attendees-head{display:table;width:100%;background:#f7f7f7;border-bottom:1px solid #e6e6e6;font-weight:700}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{vertical-align:middle;display:table-cell;padding:7px;border-right:1px solid #e6e6e6;font-size:12px}.mec-booking-attendees-head-content{display:table;width:100%;border-bottom:1px solid #e6e6e6}.mec-booking-attendees-wrapper .mec-booking-attendees-head-content:last-child{border:none}.mec-booking-attendees-head span:nth-child(1),.mec-booking-attendees-head-content>span:nth-child(1){width:4%}.mec-booking-attendees-head span:nth-child(2),.mec-booking-attendees-head-content>span:nth-child(2){width:20%}.mec-booking-attendees-head span:nth-child(3),.mec-booking-attendees-head-content>span:nth-child(3){width:24%}.mec-booking-attendees-head span:nth-child(4),.mec-booking-attendees-head-content>span:nth-child(4){width:26%}.mec-booking-attendees-head span:nth-child(5),.mec-booking-attendees-head-content>span:nth-child(5){width:26%}@media only screen and (max-width:759px){.mec-booking-attendees{width:470px}.mec-booking-attendees-head span,.mec-booking-attendees-head-content>span{word-break:break-all}}@media(max-width:1366px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:6%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:40%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:8%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:8%}}@media(max-width:1024px){.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:30%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:15%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:10%}}@media(max-width:780px){.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:12px}.mec-event-date .mec-tooltip .box{min-width:200px}.mec-event-status .mec-tooltip .box{min-width:90px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}.mec-profile .mec-profile-bookings tbody tr{font-size:12px}}@media(max-width:480px){.mec-profile .mec-booking-number-of-attendees,.mec-profile .mec-profile-bookings tbody tr,.mec-profile i{font-size:8px!important}.mec-profile .mec-profile-bookings tbody tr td{padding:3px}.mec-profile .mec-profile-bookings tbody tr td:nth-child(1){width:5%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(2){width:19%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(3){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(4){width:12%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(5){width:18%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(6){width:13%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(7){width:10%}.mec-profile .mec-profile-bookings tbody tr td:nth-child(8){width:13%}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{font-size:8px}.mec-event-date .mec-tooltip .box{min-width:75px}.mec-event-status .mec-tooltip .box{min-width:70px}.mec-event-date .mec-tooltip .box,.mec-event-status .mec-tooltip .box{padding:4px 5px!important}}.mec-woo-booking-checkout{position:relative;border:none;border-radius:0;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;line-height:1.5;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-bottom:21px;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;border-radius:0;margin-bottom:6px;min-width:170px;margin-top:5px;text-align:center}.mec-woo-booking-checkout:hover{background:#222;color:#fff}.mec-woo-booking-checkout:focus,.mec-woo-booking-checkout:visited{color:#fff}.single-mec-events .lity-container{max-width:480px;width:480px}.lity-content .mec-events-meta-group-booking{width:100%;padding:20px 50px;background:#fff}.lity-content .mec-events-meta-group-booking .mec-booking form>h4{text-transform:uppercase;font-size:15px;font-weight:700;color:#313131;border-bottom:4px solid #ebebeb;width:100%;display:block;padding-bottom:10px;position:relative;text-align:center;line-height:1.2;margin-bottom:10px}.lity-content .mec-events-meta-group-booking .mec-booking form>h4:before{padding:1px 35px;border-bottom:4px solid #40d9f1;font-size:6px;content:"";text-align:center;position:absolute;bottom:-4px;margin-left:-35px;left:50%}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available,.lity-content .mec-events-meta-group-booking .mec-event-ticket-name,.lity-content .mec-events-meta-group-booking .mec-event-ticket-price,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-name,.lity-content .mec-events-meta-group-booking .mec-ticket-variation-price,.lity-content .mec-events-meta-group-booking label{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:3px 0;clear:none;padding:5px 1em 3px 0;display:inline-block}.lity-content .mec-events-meta-group-booking .mec-event-ticket-available{margin-bottom:12px}.lity-content .mec-events-meta-group-booking select{display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content .mec-events-meta-group-booking input[type=email]{color:#888;border:1px solid #e1e1e1;font-size:14px;display:block;width:100%;outline:0}.lity-content .mec-events-meta-group-booking input{margin-bottom:10px!important}.lity-content .mec-book-ticket-variation h5{color:#424242;font-size:12px;font-weight:300;letter-spacing:0;margin:0;clear:none;padding:5px 1em 3px 0;display:inline-block;text-transform:capitalize;font-family:Montserrat,Helvetica,Arial,sans-serif}.lity-content ul.mec-book-tickets-container{padding:0}.lity-content .mec-events-meta-group-booking input[type=email],.lity-content .mec-events-meta-group-booking input[type=number],.lity-content .mec-events-meta-group-booking input[type=text]{outline:0;font-family:Montserrat,Helvetica,Arial,sans-serif;display:block;background:#fcfcfc;min-height:42px;min-width:180px;font-size:13px;border:1px solid #e0e0e0;padding:13px 10px;width:100%;margin-bottom:20px;box-shadow:inset 0 2px 4px rgba(0,0,0,.051);clear:both;margin-bottom:2px!important}.lity-content button[type=submit]{position:relative;border:none;color:#fff;display:inline-block;font-size:12px;letter-spacing:1px;text-transform:uppercase;font-weight:600;text-decoration:none;cursor:pointer;margin-right:10px;line-height:1;padding:18px 20px 16px;background:#39c36e;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;min-width:170px;margin-top:5px;border-radius:0;margin-bottom:6px}.lity-content button[type=submit]:hover{background:#222}.lity-content .mec-book-tickets-container li{list-style:none}.lity-content .mec-events-meta-group-booking #mec_book_payment_form h4,.lity-content .mec-events-meta-group-booking li h4{font-size:19px;font-weight:700}.lity-content .mec-events-meta-group-booking .mec-book-price-total{display:inline-block;margin-bottom:10px;font-size:26px;color:#39c36e;font-weight:700;padding:10px 0}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li{width:50%}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li:nth-child(even){border:none}.lity-content .mec-events-meta-group-booking ul.mec-book-price-details li span{display:block}.lity-content .mec-events-meta-group-booking button[type=submit]:after{display:none;font-family:simple-line-icons;content:"\e098";margin-left:4px;-webkit-animation:rotating 1.2s linear infinite;-moz-animation:rotating 1.2s linear infinite;-ms-animation:rotating 1.2s linear infinite;-o-animation:rotating 1.2s linear infinite;animation:rotating 1.2s linear infinite}.lity-content .mec-events-meta-group-booking button[type=submit].loading:after{display:inline-block}@media only screen and (max-width:480px){.lity-content .mec-events-meta-group-booking{padding:20px;width:340px;margin:0 auto}}.mec-events-meta-group-booking{position:relative}.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}@-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-google-recaptcha{margin:0 0 20px 16px}.mec-wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap :after,.mec-wrap :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mec-wrap .clearfix:after,.mec-wrap .clearfix:before{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.mec-wrap .clearfix:after{clear:both}.mec-wrap .clearfix{zoom:1}.mec-wrap .clear,.mec-wrap .clr{clear:both;display:block;overflow:hidden;visibility:hidden}.mec-wrap .clr{visibility:visible;overflow:visible}.mec-container [class*=col-] img{max-width:100%}.mec-container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.mec-container:after,.mec-container:before{content:" ";display:table}.mec-container:after{clear:both}@media only screen and (max-width:479px){.mec-container{width:300px}}@media only screen and (min-width:480px) and (max-width:767px){.mec-container{width:420px}}@media only screen and (min-width:768px) and (max-width:960px){.mec-container{width:768px}}@media only screen and (min-width:961px){.mec-container{width:960px}}@media only screen and (min-width:1200px){.mec-container{width:1196px;padding-left:15px;padding-right:15px}}@media only screen and (min-width:1921px){.mec-container{max-width:1690px}}.mec-wrap .row{margin-left:-10px;margin-right:-10px}.mec-wrap .row:after,.mec-wrap .row:before{content:" ";display:table}.mec-wrap .row:after{clear:both}.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{position:relative;min-height:1px;padding-left:10px;padding-right:10px}@media only screen and (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9,.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9,.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9,.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{padding-left:15px;padding-right:15px}.mec-wrap .row{margin-left:-15px;margin-right:-15px}}.mec-container [class*=col-].alpha{padding-left:0}.mec-container [class*=col-].omega{padding-right:0}.mec-wrap .col-xs-1,.mec-wrap .col-xs-10,.mec-wrap .col-xs-11,.mec-wrap .col-xs-12,.mec-wrap .col-xs-2,.mec-wrap .col-xs-3,.mec-wrap .col-xs-4,.mec-wrap .col-xs-5,.mec-wrap .col-xs-6,.mec-wrap .col-xs-7,.mec-wrap .col-xs-8,.mec-wrap .col-xs-9{float:left}.mec-wrap .col-xs-12{width:100%}.mec-wrap .col-xs-11{width:91.66666666666666%}.mec-wrap .col-xs-10{width:83.33333333333334%}.mec-wrap .col-xs-9{width:75%}.mec-wrap .col-xs-8{width:66.66666666666666%}.mec-wrap .col-xs-7{width:58.333333333333336%}.mec-wrap .col-xs-6{width:50%}.mec-wrap .col-xs-5{width:41.66666666666667%}.mec-wrap .col-xs-4{width:33.33333333333333%}.mec-wrap .col-xs-3{width:25%}.mec-wrap .col-xs-2{width:16.666666666666664%}.mec-wrap .col-xs-1{width:8.333333333333332%}@media (min-width:768px){.mec-wrap .col-sm-1,.mec-wrap .col-sm-10,.mec-wrap .col-sm-11,.mec-wrap .col-sm-12,.mec-wrap .col-sm-2,.mec-wrap .col-sm-3,.mec-wrap .col-sm-4,.mec-wrap .col-sm-5,.mec-wrap .col-sm-6,.mec-wrap .col-sm-7,.mec-wrap .col-sm-8,.mec-wrap .col-sm-9{float:left}.mec-wrap .col-sm-12{width:100%}.mec-wrap .col-sm-11{width:91.66666666666666%}.mec-wrap .col-sm-10{width:83.33333333333334%}.mec-wrap .col-sm-9{width:75%}.mec-wrap .col-sm-8{width:66.66666666666666%}.mec-wrap .col-sm-7{width:58.333333333333336%}.mec-wrap .col-sm-6{width:50%}.mec-wrap .col-sm-5{width:41.66666666666667%}.mec-wrap .col-sm-4{width:33.33333333333333%}.mec-wrap .col-sm-3{width:25%}.mec-wrap .col-sm-2{width:16.666666666666664%}.mec-wrap .col-sm-1{width:8.333333333333332%}}@media (min-width:961px){.mec-wrap .col-md-1,.mec-wrap .col-md-10,.mec-wrap .col-md-11,.mec-wrap .col-md-12,.mec-wrap .col-md-2,.mec-wrap .col-md-3,.mec-wrap .col-md-4,.mec-wrap .col-md-5,.mec-wrap .col-md-6,.mec-wrap .col-md-7,.mec-wrap .col-md-8,.mec-wrap .col-md-9{float:left}.mec-wrap .col-md-12{width:100%}.mec-wrap .col-md-11{width:91.66666666666666%}.mec-wrap .col-md-10{width:83.33333333333334%}.mec-wrap .col-md-9{width:75%}.mec-wrap .col-md-8{width:66.66666666666666%}.mec-wrap .col-md-7{width:58.333333333333336%}.mec-wrap .col-md-6{width:50%}.mec-wrap .col-md-5{width:41.66666666666667%}.mec-wrap .col-md-4{width:33.33333333333333%}.mec-wrap .col-md-3{width:25%}.mec-wrap .col-md-2{width:16.666666666666664%}.mec-wrap .col-md-1{width:8.333333333333332%}}@media (min-width:1200px){.mec-wrap .col-lg-1,.mec-wrap .col-lg-10,.mec-wrap .col-lg-11,.mec-wrap .col-lg-12,.mec-wrap .col-lg-2,.mec-wrap .col-lg-3,.mec-wrap .col-lg-4,.mec-wrap .col-lg-5,.mec-wrap .col-lg-6,.mec-wrap .col-lg-7,.mec-wrap .col-lg-8,.mec-wrap .col-lg-9{float:left}.mec-wrap .col-lg-12{width:100%}.mec-wrap .col-lg-11{width:91.66666666666666%}.mec-wrap .col-lg-10{width:83.33333333333334%}.mec-wrap .col-lg-9{width:75%}.mec-wrap .col-lg-8{width:66.66666666666666%}.mec-wrap .col-lg-7{width:58.333333333333336%}.mec-wrap .col-lg-6{width:50%}.mec-wrap .col-lg-5{width:41.66666666666667%}.mec-wrap .col-lg-4{width:33.33333333333333%}.mec-wrap .col-lg-3{width:25%}.mec-wrap .col-lg-2{width:16.666666666666664%}.mec-wrap .col-lg-1{width:8.333333333333332%}}#mec_woo_add_to_cart_btn{min-width:170px;margin-top:5px;text-align:center}.mec-breadcrumbs{border-radius:2px;padding:9px 15px 6px;font-size:11px;color:#8d8d8d;letter-spacing:0;text-transform:none;font-weight:500;margin:auto 15px 33px 15px;border:1px solid #e6e6e6;box-shadow:0 2px 0 0 rgba(0,0,0,.025)}.mec-breadcrumbs-modern{margin:auto 0 33px 0}.mec-breadcrumbs a{color:#000;padding-left:4px}.mec-breadcrumbs a:hover{text-decoration:underline}.mec-breadcrumbs i{font-size:8px;margin:0 0 0 4px}.mec-breadcrumbs .container{padding-left:20px}.mec-content-notification a{margin-left:5px}.mec-content-notification{background:#f7f7f7;padding:10px 10px 10px;border:1px solid #e8e8e8}.mec-content-notification p{margin-bottom:0}.mec-fes-form #mec-advanced-wraper div:first-child>ul{border:1px solid #cfeff5;width:auto;box-shadow:0 1px 4px -2px #cfeff5;display:block;margin:5px 0 10px;padding:5px 0;border-radius:2px}.mec-fes-form #mec-advanced-wraper div:first-child>ul:last-of-type{margin-bottom:35px}#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 #cfeff5}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li.mec-active,.mec-fes-form #mec-advanced-wraper div:first-child>ul>ul>li:hover{background:#40d9f1!important;box-shadow:0 1px 9px -3px #40d9f1;color:#fff!important}.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:83%}.mec-search-bar-wrap .mec-search-form .mec-ajax-search-result .mec-text-input-search{width:100%;float:none}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 84%);margin-left:11px;background:#40d9f1;Color:#fff;font-weight:400}.mec-text-input-search+input#mec-search-bar-input{margin-left:-3px}.mec-search-bar-wrap input#mec-search-bar-input:hover{background:#000}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box input{float:none}@media(max-width:768px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{display:inline-block}}@media(max-width:480px){.mec-search-bar-wrap .mec-search-form .mec-text-input-search{width:64%}.mec-search-bar-wrap input#mec-search-bar-input{width:calc(100% - 67%)}}.mec-wrap.mec-search-bar-wrap .mec-totalcal-box{overflow:visible}.mec-ajax-search-result{position:relative}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]{width:calc(100% - 36px)}.mec-search-bar-wrap.mec-wrap .mec-totalcal-box input[type=text]:focus{border-color:#efefef}div#mec-ajax-search-result-wrap{position:absolute;top:100%;opacity:0;visibility:hidden;width:calc(100% - 2px);min-height:50px;left:0;right:0;padding:0 10px;z-index:9999;transition:all .3s ease}.mec-ajax-search-result-events{background:#fff;padding:10px 20px;border:1px solid #efefef;border-top:none}.mec-ajax-search-result-events article:first-of-type{border:none}article.mec-search-bar-result{text-align:left;margin-bottom:0;padding-bottom:25px;padding-top:26px;border-top:1px solid #efefef;transition:all .33s ease;clear:both}.mec-search-bar-result .mec-event-list-search-bar-date{width:64px;height:64px;margin-right:10px;font-size:11px;text-transform:uppercase;float:left;text-align:center;padding-top:2px}.mec-search-bar-result .mec-event-list-search-bar-date span{font-size:40px;line-height:30px;font-weight:700;display:block;margin-bottom:6px;letter-spacing:1px}.mec-search-bar-result .mec-event-image{float:left;margin-right:20px;width:65px;height:auto}.mec-search-bar-result .mec-event-time{font-size:11px;line-height:1.1;margin:0}.mec-search-bar-result .mec-event-time i{color:#40d9f1;float:none;width:unset;height:unset;font-size:inherit;margin-right:3px;border:none;padding:0}.mec-search-bar-result .mec-event-title{font-size:13px;padding:0;margin:10px 0 8px;font-weight:700;text-transform:uppercase}.mec-search-bar-result .mec-event-title a{text-decoration:none;color:#494949;transition:color .3s ease}.mec-search-bar-result .mec-event-detail{font-size:13px;line-height:1.3;font-family:Roboto,sans-serif;color:#9a9a9a;margin-bottom:0}.mec-wrap.mec-modern-search-bar .mec-totalcal-box{background:rgba(255,255,255,.87);border:none;padding:35px;border-radius:3px;box-shadow:0 3px 13px rgba(0,0,0,.4);position:relative}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=search],.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=text]{height:58px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;width:100%;padding-left:45px;padding-right:13px;font-size:16px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box .mec-text-input-search i{position:absolute;background:0 0;border:none;font-size:21px;left:15px;top:calc(50% - 19px);color:#40d9f1}.mec-wrap.mec-modern-search-bar .mec-text-input-search{position:relative;height:58px}.mec-wrap.mec-modern-search-bar .mec-totalcal-box input[type=submit]{height:58px;border:none;border-radius:2px;background:#fc4a1a;font-size:17px;font-weight:700!important}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap .mec-dropdown-search select{height:45px;background:rgba(255,255,255,.99);border-radius:2px;box-shadow:0 4px 8px rgba(0,0,0,.1) inset;border:1px solid #ccc;padding-right:13px;font-size:16px;border-left:0}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap i{height:45px;background:#ffff;border-radius:2px 0 0 2px;box-shadow:none;border:1px solid #ccc;font-size:15px;padding-top:14px;border-right:0;color:#40d9f1;margin-right:-1px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-dropdown-wrap{min-height:64px}@media(max-width:768px){.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:70%}.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:calc(100% - 72%)}}@media(max-width:480px){.mec-wrap.mec-modern-search-bar input#mec-search-bar-input{width:92%;padding:0 10px;position:relative;display:block;margin-left:11px}.mec-wrap.mec-modern-search-bar .mec-search-form .mec-text-input-search{width:100%;margin-bottom:20px}.mec-wrap.mec-modern-search-bar .mec-text-input-search+input#mec-search-bar-input{margin-left:10px}}.mec-related-events-wrap{margin-top:50px}.mec-related-events-wrap h3.mec-rec-events-title:before{content:"";background:#2c2f34;width:46px;height:4px;position:absolute;top:59px;left:0}.mec-related-events-wrap h3.mec-rec-events-title{font-size:21px;font-weight:600;padding:17px 0;margin-bottom:28px;text-transform:uppercase;border-bottom:1px solid #e8e8e8;position:relative}.mec-related-event-post figure{margin:0}.mec-related-event-post figure img{width:100%}.mec-related-event-content{background-color:#fff;margin:-27px 30px 15px;position:relative;max-width:90%;padding:13px 21px 16px 19px}.mec-related-event-content h5 a{font-size:16px;color:#121212;font-weight:600;transition:all .3s ease}.mec-fes-form-cntt #mec-organizer-payments ul{list-style:none;background:0 0;margin:0}.mec-fes-form-cntt #mec-organizer-payments ul li h4{background:0 0;letter-spacing:.2px;display:inline-block;padding-left:0!important;padding-bottom:10px!important;margin:0;margin-bottom:1px;letter-spacing:1px;text-transform:capitalize;padding-top:1px}.mec-fes-form-cntt #mec-organizer-payments ul>li{width:100%;display:inline-block;vertical-align:top;padding:0;margin:0}#mec-login-form.mec-login-form{width:100%;background:#fff;padding:20px;margin:0 auto;text-align:center;position:relative}#mec-login-form.mec-login-form .mec-login-input{display:block;width:286px;margin:0 auto;margin-bottom:12px}#mec-login-form.mec-login-form .mec-login-forgotpassword{display:inline-block}.mec-login-forgotpassword a{color:#000}#mec-login-form.mec-login-form .mec-login-submit{float:right;text-align:right;width:49%;padding-right:2px}#mec-login-form.mec-login-form .mec-login-input input{border:none;box-shadow:none;background:#fff;color:#ccc;border-left:1px solid #e6e6e6;padding:0;height:100%;background-image:none!important;padding-left:10px;padding-right:0;width:222px;margin-left:0;clear:none;float:left}#mec-login-form.mec-login-form .mec-login-input label{border:1px solid #e6e6e6;height:52px;display:inline-block;padding:0;border-radius:3px;overflow:hidden;box-shadow:0 2px 4px rgba(0,0,0,.04)}#mec-login-form.mec-login-form .mec-login-input label i{padding:15px 13px 17px 16px;vertical-align:middle;font-size:20px;width:50px;color:#c5cad0;background:#fafafa;margin-right:0;float:left}#mec-login-form.mec-login-form .mec-login-forgotpassword{float:left;width:49%;text-align:left;padding-top:10px;font-size:13px;padding-left:2px}#mec-login-form.mec-login-form button{width:120px;height:44px;border:none;color:#fff;border-radius:3px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;transition:all .22s ease;margin:0;min-width:unset}.mec-login-form button{box-shadow:0 4px 22px -7px #40d9f1;background-color:#40d9f1}#mec-login-form.mec-login-form button:hover{background:#222;box-shadow:0 3px 14px -4px #333}#mec-login-form.mec-login-form .mec-login-form-footer{width:286px;margin:0 auto;margin-top:20px;clear:both;position:relative;display:block;min-height:50px}#mec-login-form.mec-login-form .mec-ajax-login-loading{position:absolute;background:#ffffffc2;left:0;right:0;top:0;bottom:0}#mec-login-form.mec-login-form .lds-ripple{position:absolute;width:64px;height:64px;top:calc(50% - 23px);left:calc(50% - 23px)}#mec-login-form.mec-login-form .lds-ripple div{position:absolute;border:4px solid #40d9f1;opacity:1;border-radius:50%;animation:lds-ripple 1.2s cubic-bezier(0,.2,.1,.8) infinite}#mec-login-form.mec-login-form .lds-ripple div:nth-child(2){animation-delay:-.5s}#mec-login-form.mec-login-form .mec-ajax-login-loading-text{position:absolute;min-width:200px;top:calc(50% - 18px);left:calc(50% - 124px);color:#fff;padding:10px 22px;border-radius:3px;background:#fff;height:47px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong{color:#3fcc60}#mec-login-form.mec-login-form .mec-ajax-login-loading-text strong:before{content:"";position:absolute;top:8px;left:1px;border-right:2px solid #3fcc60;border-bottom:2px solid #3acb5c;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:8px;height:14px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:after{content:"";position:absolute;top:14px;left:5px;border-bottom:2px solid #ff5d39;transform:rotate(45deg);transform-origin:0 100%;color:#000;animation:checkbox-check 130ms 140ms cubic-bezier(.4,0,.23,1) forwards;width:14px;height:4px}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong{color:#ff5d39}#mec-login-form.mec-login-form .mec-ajax-login-loading-text.error strong:before{border-color:#ff5d39;border-bottom:none}@keyframes lds-ripple{0%{top:28px;left:28px;width:0;height:0;opacity:1}100%{top:-1px;left:-1px;width:58px;height:58px;opacity:0}}.mec-book-form-gateway-checkout [id*=mec_do_transaction_stripe_] .mec-form-row:first-child{margin-bottom:20px}.mec-events-meta-group-booking .StripeElement{box-sizing:border-box;height:40px;padding:10px 12px;border:1px solid transparent;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]{box-sizing:border-box;height:40px;padding:10px 12px;border:0!important;border-radius:4px;background-color:#fff;box-shadow:0 1px 3px 0 #e6ebf1!important;-webkit-transition:box-shadow 150ms ease;transition:box-shadow 150ms ease;margin-bottom:20px;background:#fff!important}.mec-book-form-gateways [id*=mec_book_form_gateway_checkout] input[type=text]:focus{outline:0}.mec-events-meta-group-booking .StripeElement--focus{box-shadow:0 1px 3px 0 #cfd7df}.mec-events-meta-group-booking .StripeElement--invalid{border-color:#fa755a}.mec-events-meta-group-booking .StripeElement--webkit-autofill{background-color:#fefde5!important}.mec-booking-tab-content .button,.mec-booking-tab-content .mec-reg-field-add-option,.mec-fes-form .mec-form-row .button:not(.wp-color-result),.mec-fes-form input[type=file],ul#mec_reg_form_fields li .mec_reg_field_remove{height:40px;margin-top:1px;text-decoration:none;font-size:14px;line-height:34px!important;margin:0;padding:0 15px 1px!important;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;background:#fff;border-radius:3px;margin-right:8px;border:2px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5}.mec-booking-tab-content .button:hover,.mec-booking-tab-content .mec-reg-field-add-option:hover,.mec-fes-form .mec-form-row .button:not(.wp-color-result):hover{background:#40d9f1;color:#fff;border-color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1}.mec-fes-form .mec-form-row input+button.button{vertical-align:top}.mec-fes-form .mec-form-row .quicktags-toolbar input.button.button-small{border-width:1px;padding:0 7px;color:#80c6d2;font-weight:400;margin:1px;transform:none}.mec-fes-form input[type=file]{max-width:166px;text-align:center;height:44px;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3}.mec-fes-form input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}.mec-fes-form input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}.mec-fes-form .mec-meta-box-fields>label{padding:0}#mec_reg_form_fields li{list-style:none}ul#mec_reg_form_fields{padding:0;margin:0}ul#mec_reg_form_fields li{background:#f8feff;margin:6px -20px;padding:15px 25px 10px;width:auto;font-size:13px;border-top:1px solid #e8fafd;border-bottom:1px solid #e8fafd;position:relative}ul#mec_reg_form_fields li .mec_reg_field_remove{position:absolute;right:10px;top:10px;margin:0;padding:6px 8px!important;font-size:11px;line-height:12px!important;min-height:10px;height:auto;display:block;cursor:pointer;color:#ea6485;border-color:#ffd2dd;letter-spacing:.4px}ul#mec_reg_form_fields li .mec_reg_field_remove:hover{background:#ea6485;color:#fff;border-color:#ea6485;box-shadow:0 2px 6px -3px #ea6485}#mec_reg_form_fields input[type=checkbox],#mec_reg_form_fields input[type=radio],.mec-form-row input[type=checkbox],.mec-form-row input[type=radio]{background-color:#fff;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;padding:9px;border-radius:3px;min-width:24px;min-height:24px;display:inline-block!important;vertical-align:middle;float:none;transition:all .18s ease;outline:0;margin:1px 4px 4px 0;text-align:left;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}#mec_reg_form_fields input[type=checkbox]:focus,#mec_reg_form_fields input[type=radio]:focus,.mec-form-row input[type=checkbox]:focus,.mec-form-row input[type=radio]:focus{outline:0}#mec_reg_form_fields input[type=radio],.mec-form-row input[type=radio]{-webkit-appearance:none;border-radius:20px!important;min-width:20px;min-height:20px;margin:0 0 4px 0;vertical-align:middle}#mec_reg_form_fields input[type=checkbox]:hover,#mec_reg_form_fields input[type=radio]:hover,.mec-form-row input[type=checkbox]:hover,.mec-form-row input[type=radio]:hover{border-color:#40d9f1}#mec_reg_form_fields input[type=checkbox]:checked,#mec_reg_form_fields input[type=radio]:checked,.mec-fes-form .mec-form-row input[type=checkbox]:checked,.mec-fes-form .mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1;border-color:#40d9f1;background:#40d9f1!important;border-radius:2px;position:relative}.mec-form-row input[type=radio]:checked{box-shadow:0 1px 6px -2px #40d9f1,inset 0 0 0 3px #fff!important}#mec_reg_form_fields input[type=checkbox]:checked::before,.mec-form-row input[type=checkbox]:checked:before{content:"";font:normal;position:absolute;top:12px;left:5px;margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);transform-origin:0 100%;color:#fff;transition:all .2s ease;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:6px;height:0;transform:translate3d(0,0,0) rotate(45deg)}100%{width:6px;height:12px;border-color:#fff;transform:translate3d(0,-12px,0) rotate(45deg)}}#mec_reg_form_field_types .button{position:relative;outline:0;border-radius:50px;padding:2px 21px 2px 31px!important;line-height:1;font-size:11px;font-weight:600;color:#40d9f1;letter-spacing:2px;height:auto;cursor:pointer;margin-top:5px;text-transform:uppercase;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_fes_location_remove_image_button,#mec_fes_organizer_remove_image_button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button,#mec_meta_box_tickets_form [id^=mec_ticket_row] button,#mec_reg_form_field_types .button.red{color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_reg_form_field_types .button.red:hover{background:#ea6485;color:#fff}#mec_reg_form_field_types .button:before{position:absolute;left:12px;color:#40d9f1;content:"\e095";font-family:simple-line-icons;font-size:13px;display:inline-block}#mec_reg_form_field_types .button.red:before{color:#ea6485}#mec_reg_form_field_types .button.red:hover:before,#mec_reg_form_field_types .button:hover:before{color:#fff}#mec_fes_location_remove_image_button:hover,#mec_fes_organizer_remove_image_button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-col-1 .button:hover,#mec_meta_box_hourly_schedule_days [id^=mec_meta_box_hourly_schedule_day_] .mec-form-row.mec-box .button:hover,#mec_meta_box_tickets_form [id^=mec_ticket_row] button:hover,#mec_price_per_dates_container .button:hover,#mec_reg_form_field_types .button.red:hover{color:#fff;border:2px solid #ea6485}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button],#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]{color:#ea6485;border-color:#ffd2dd}#mec_taxes_fees_container_toggle [id^=mec_remove_fee_button]:hover,#mec_ticket_variations_list [id^=mec_remove_ticket_variation_button]:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_fees_list [id^=mec_remove_fee_button],#mec_meta_box_ticket_variations_form .mec-form-row [id^=mec_remove_ticket_variation_button]{margin-left:14px!important}#mec_meta_box_hourly_schedule_days .mec-add-hourly-schedule-button{line-height:10px!important}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button{color:#40d9f1;box-shadow:0 2px 6px -3px #40d9f1;border:2px solid #cfeff5}#mec_meta_box_tickets_form [id^=mec_ticket_row] .mec_add_price_date_button:hover,#mec_reg_form_field_types .button:hover{color:#fff;border:2px solid #40d9f1;background:#40d9f1}.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 input:disabled{opacity:.6;background:#f6f6f6}.mec-form-row p{font-size:12px!important;line-height:18px!important;color:#97b2bb!important}.mec-form-row p.description{font-style:italic}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif}table.ui-datepicker-calendar{margin-bottom:0}.ui-datepicker-calendar th{font-weight:700;color:#4a4b4c}.ui-datepicker-calendar td,.ui-datepicker-calendar th,.ui-datepicker-calendar tr{border:none}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;display:inline-block;border-radius:2px;padding:2px 10px;margin:5px 3px;width:auto;min-height:20px;height:26px;border:1px solid #e3e3e3;box-shadow:inset 0 1px 3px rgba(0,0,0,.04)}.ui-datepicker.ui-widget table{border-spacing:2px;border:none}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#9a9b9c;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-fes-form .mec-tooltip .dashicons-before:before{color:#40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;border-radius:3px;background:#40d9f1;color:#fff;height:54px;font-size:17px;font-weight:700;box-shadow:0 2px 8px -4px #40d9f1;display:block;transition:all .28s ease;text-transform:uppercase;margin:20px 0 0;padding:14px 20px;border:0;cursor:pointer;text-align:center;letter-spacing:.1em;line-height:1}.mec-fes-form button[type=submit].mec-fes-sub-button:hover{box-shadow:0 2px 12px -2px #40d9f1}.mec-fes-form button[type=submit].mec-fes-sub-button:focus{margin-bottom:-2px;background:#1dc2dc}.mec-fes-form .mec-title span.mec-dashicons{color:#40d9f1;float:left;margin-right:5px}.mec-fes-form .mec-tooltip .box h5{padding:14px 2px}#mec_fes_form,.mec-fes-form-top-actions{max-width:838px;margin:0 auto}@media only screen and (min-width:961px){.mec-fes-form .mec-fes-form-cntt{width:calc(100% - 300px);float:left;padding-right:20px;max-width:538px;display:block}.mec-fes-form .mec-fes-form-sdbr{width:300px}}.mec-fes-form .quicktags-toolbar,.mec-fes-form div.mce-toolbar-grp{background:#ecfcff;border-bottom:1px solid #cfeff5;box-shadow:0 1px 0 1px #cfeff5}.mec-fes-form .quicktags-toolbar{margin-right:-1px;border-top:1px solid #cfeff5}.mec-fes-form div.mce-statusbar{border-top-color:#cfeff5}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-listbox{border:1px solid #cfeff5;border-radius:3px}.mec-fes-form .mce-tinymce.mce-container.mce-panel{border:1px solid #cfeff5;box-shadow:0 2px 6px -3px #cfeff5;border-radius:2px 0 2px 2px}.mec-fes-form .wp-editor-tools .wp-media-buttons{transform:translateY(-6px);margin-top:-6px}.mec-fes-form .wp-editor-tabs{padding-right:0;margin-right:-2px}.mec-fes-form .wp-editor-tabs .wp-switch-editor{border-radius:3px 3px 0 0;border-color:#cfeff5;background:#fff;color:#96b8bd;border-bottom:1px solid #ecfcff}.mec-fes-form .html-active .switch-html,.mec-fes-form .tmce-active .switch-tmce,.mec-fes-form .wp-editor-tabs .wp-switch-editor:active{background:#ecfcff;color:#40d9f1}.mec-fes-form .wp-editor-container,.mec-fes-form div.mce-edit-area.mce-panel{border:none;box-shadow:none}.mec-fes-form .wp-editor-container textarea.wp-editor-area{max-width:100%}.mec-fes-form .mce-toolbar .mce-listbox button{font-size:12px;line-height:22px;color:#798f96}.mec-fes-form .mce-toolbar .mce-ico{color:#627f88}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active,.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn:active,.mec-fes-form .qt-dfw.active{background:#fff;border-color:#40d9f1;box-shadow:inset 0 2px 6px -3px rgba(106,231,255,.7)}.mec-fes-form .mce-toolbar .mce-btn-group .mce-btn.mce-active .mce-ico{color:#40d9f1}body .mce-menu .mce-menu-item.mce-active.mce-menu-item-normal,body .mce-menu .mce-menu-item.mce-selected,body .mce-menu .mce-menu-item:focus,body .mce-menu .mce-menu-item:hover,body.mce-menu .mce-menu-item.mce-active.mce-menu-item-preview{background:#40d9f1;color:#fff}.mec-fes-form .mec-not-in-days-day{display:inline-block;padding:4px 32px 4px 15px;border-radius:33px;border:1px solid #cfeff5;box-shadow:0 1px 3px -1px #cfeff5;background:#fbfeff;color:#40d9f1;vertical-align:top}.mec-fes-form .mec-not-in-days-remove{display:inline-block;padding:0 1px 0 0;margin-left:-30px;vertical-align:sub;background:#ff918a;color:#fff;font-family:cursive;width:21px;height:21px;line-height:17px;text-align:center;border-radius:20px;cursor:pointer}.mec-fes-list ul li .mec-event-status{float:left;margin-right:10px;margin-left:0;font-size:11px;font-weight:400;letter-spacing:.3px;border-radius:3px;padding:4px 8px}.mec-fes-form .post-status.mec-book-confirmed:before,.mec-fes-list ul li .mec-event-status.mec-book-confirmed:before{content:"";margin:0;vertical-align:middle;line-height:1;border-right:2px solid #fff!important;border-bottom:2px solid #fff!important;transform:rotate(45deg);color:#fff;width:6px;height:12px;float:left;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before,.mec-fes-list ul li .mec-fes-event-remove:before,.mec-fes-list ul li .mec-fes-event-view a:before,.mec-fes-list-top-actions a:before{content:"\e054";font-family:simple-line-icons;font-size:13px;vertical-align:middle}.mec-fes-list ul li .mec-fes-event-view a:before{content:"\e087"}.mec-fes-list-top-actions a:before{content:"\e095";font-weight:400;margin-right:6px}.mec-fes-list ul li .mec-fes-event-export a:before{content:"\e083"}.mec-fes-form .post-status{border-radius:20px}.mec-fes-form .post-status.mec-book-confirmed:before{height:20px;width:9px;margin:3px 10px}.ui-datepicker .ui-datepicker-calendar td,.ui-datepicker-calendar th{height:auto;padding:0}.ui-datepicker .ui-datepicker-calendar td a,.ui-datepicker-calendar th{font-size:14px;line-height:30px}.mec-fes-form .description{font-size:16px}.mec-fes-form input[type=file]{text-align:left}.mec-fes-export-wrapper{width:640px;background:#f8feff;padding:40px 25px}.mec-fes-export-wrapper .mec-fes-btn-date{font-size:16px;line-height:44px;overflow:hidden}.mec-fes-export-wrapper .date-messgae{font-family:sans-serif;padding:2px 18px}.mec-fes-list ul li .mec-event-export-csv,.mec-fes-list ul li .mec-event-export-excel{font-size:12px;border:1px solid #40d9f1;padding:1px 4px;background:rgba(141,229,243,.18);border-radius:4px;color:#40d9f1;font-family:sans-serif;cursor:pointer;display:inline-block;height:26px;line-height:22px}.mec-export-badge{font-size:11px;color:#40d9f1;width:auto;height:24px;line-height:25px;display:inline-block;padding:0 8px;text-align:center;border-radius:3px;background:#ecfcff;transition:all .2s ease}.mec-fes-list ul li .mec-fes-event-export{font-size:11px;background:#f7f7f7;float:right;margin-left:5px}.mec-fes-list ul li .mec-fes-event-export:hover{cursor:pointer;background:#90f0e0;border-color:#4dc8cc}.mec-fes-export-wrapper ul{padding:0;width:100%;text-align:center}.mec-fes-export-wrapper ul li{list-style:none;display:inline-block;width:30%;padding:10px 15px 10px 32px;border-radius:3px;margin-bottom:15px;border:1px solid #cfeff5;box-shadow:0 2px 6px -4px #cfeff5;background:#fff;line-height:normal;margin-right:10px;position:relative;cursor:pointer;font-size:13px;line-height:1;transition:all .2s ease}.mec-fes-export-wrapper ul li:nth-child(3n+0){margin-right:0}.mec-fes-export-wrapper ul li:hover{box-shadow:0 2px 16px -1px #c6e8ef}.mec-fes-export-wrapper ul li:before{content:"";position:absolute;display:inline-block;background:#fff;width:15px;height:15px;margin:-1px 0 0 5px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%;left:9px;top:calc(50% - 7px)}.mec-fes-export-wrapper ul li.fes-export-date-active{color:#40d9f1}.mec-fes-export-wrapper ul li.fes-export-date-active:before{width:15px;height:15px;border:6px solid #40d9f1;background:#fff;box-shadow:0 3px 16px -3px #40d9f1}.mec-fes-btn-export{margin-left:15px;margin-top:12px}.mec-fes-btn-export span{position:relative;border:none;border-radius:3px;color:#fff!important;display:inline-block;font-size:13px;line-height:1;text-transform:none;font-weight:400;text-decoration:none;cursor:pointer;margin-right:4px;line-height:1;letter-spacing:0;padding:15px 22px;background:#39c36e;box-shadow:0 1px 7px -3px #39c36e!important;-webkit-transition:all .21s ease;-moz-transition:all .21s ease;transition:all .21s ease;cursor:pointer;margin-left:6px}.mec-fes-btn-export span:hover{background:#222}.mec-event-export-excel:before,span.mec-event-export-csv:before{content:"\e083";font-family:simple-line-icons;font-size:13px;vertical-align:middle;margin-right:7px;margin-top:-1px;display:inline-block}.mec-fes-list .wn-p-t-right{min-width:170px;max-width:200px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#000;color:#fff;font-weight:400;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 #535a61;visibility:hidden;opacity:0;transition:opacity .23s;padding:5px 10px 6px;border-radius:8px;text-align:center;font-style:normal}.mec-fes-list .mec-fes-event-export:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-remove:hover .wn-p-t-right,.mec-fes-list .mec-fes-event-view:hover .wn-p-t-right{visibility:visible;opacity:1}.mec-fes-list .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)}.mec-fes-list .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:#000;box-shadow:0 8px 9px -4px #535a61}.mec-fes-form .select2-container{min-height:38px;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-fes-form .select2-selection{border:none;background:0 0;padding-top:2px;width:100%;height:100%}.mec-fes-form .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-fes-form .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.select2-results{font-size:14px}.mec-fes-category-children,.mec-fes-category-children .mec-fes-category-children{padding-left:24px}.mec-wrap .mec-timeline-events-container a,.mec-wrap .mec-timeline-events-container div,.mec-wrap .mec-timeline-events-container h4,.mec-wrap .mec-timeline-events-container p,.mec-wrap .mec-timeline-events-container span{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important}.mec-timeline-events-container{margin-left:19px;padding-top:20px;padding-bottom:9px}.mec-events-timeline-wrap{position:relative;display:block;overflow:visible;padding-left:95px}.mec-events-timeline-wrap:before{width:1px;content:'';height:100%;position:absolute;background:#dedede;left:95px}.mec-timeline-month-divider+.mec-timeline-events-container{padding-top:110px}.mec-timeline-right-content{float:right;width:300px}.mec-timeline-left-content{float:left;width:calc(100% - 300px);padding-left:15px;padding-right:15px}.mec-timeline-month-divider{position:absolute;display:block;background:#fff;right:calc(100% - 95px);left:0;width:190px;text-align:center;border:1px solid #dedede;border-radius:50px;font-size:15px;padding:12px 27px}.mec-timeline-event-date{position:relative}.mec-timeline-events-container .mec-timeline-event-date:before{content:'';width:10px;height:10px;position:absolute;background:#40d9f1;border-radius:50px;top:8px;left:-23px;z-index:99}.mec-timeline-events-container .mec-timeline-event-date:after{content:'';width:20px;height:20px;position:absolute;background:rgba(64,217,241,.3);border-radius:50px;top:3px;left:-28px}.mec-timeline-event-date{float:left;width:17%;margin-top:27px}.mec-timeline-event-content{float:left;width:82%;background:#fff;box-shadow:0 10px 30px 0 rgba(0,0,0,.1);border-radius:10px;overflow:visible;position:relative}.mec-timeline-main-content{padding:23px 30px}.mec-timeline-main-content h4{margin-bottom:15px}.mec-timeline-main-content h4 a{font-size:25px;font-weight:700;color:#000;line-height:33px;text-decoration:none}.mec-timeline-main-content p{font-size:15px;color:#515151;line-height:24px;margin-bottom:36px}a.mec-timeline-readmore{width:100%;display:block;text-align:center;color:#fff;text-decoration:none;line-height:52px;font-size:17px;font-weight:700;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:0 0 10px 10px}a.mec-timeline-readmore:hover{background:#222;color:#fff}.mec-timeline-event-time .mec-time-details{display:inline-block;margin-left:7px;font-size:13px;line-height:13px;font-weight:500}.mec-timeline-event-time i{vertical-align:middle}.mec-timeline-event-time{background:rgba(64,217,241,.11);display:inline-block;padding:4px 20px 8px;border-radius:50px}.mec-timeline-event-location address{font-style:normal;margin-bottom:0}.mec-timeline-event-location address span{font-size:13px;font-weight:500;vertical-align:middle;margin-left:6px}.mec-timeline-event-location address i{font-size:17px;vertical-align:middle}.mec-timeline-event-location{background:rgba(64,217,241,.11);display:inline-block;padding:7px 20px 11px;border-radius:20px;line-height:1.24}.mec-timeline-event-details+.mec-timeline-event-details{margin-top:12px}.mec-timeline-event-content .col-md-4{padding:0}.mec-timeline-event-content:after{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-timeline-event-content:after{top:30px;border-color:transparent #fff transparent transparent;left:-10px}.mec-timeline-event-image img{border-radius:0 10px 0 0;width:100%}.mec-timeline-event-image a{display:block;line-height:0}a.mec-timeline-readmore i{vertical-align:middle;margin-left:10px;font-size:9px}.mec-wrap .mec-timeline-event-content a.mec-timeline-readmore:hover{background:#444}@media(min-width:1024px){.mec-past-event.mec-timeline-event{margin:50px 0}}@media(max-width:1023px){.mec-past-event.mec-timeline-event{margin:25px 0}.mec-events-timeline-wrap{padding-left:20px}.mec-events-timeline-wrap:before{left:20px}}@media (max-width:1200px) and (min-width:992px){.mec-timeline-event-content{width:81%}.mec-timeline-event-date{width:18%}}@media (max-width:992px){.mec-timeline-left-content,.mec-timeline-right-content{float:none;width:100%;text-align:center}.mec-timeline-right-content .mec-timeline-event-image{text-align:center}.mec-timeline-right-content .mec-timeline-event-image img{max-width:300px;border-radius:10px;margin-top:35px}}@media (max-width:440px){.mec-timeline-right-content .mec-timeline-event-image img{margin-top:0}}@media (max-width:320px){.mec-timeline-event-content,.mec-timeline-event-date{float:none;width:100%}.mec-timeline-event-date{margin-bottom:8px}.mec-timeline-event-content:after{display:none}.mec-timeline-main-content{padding:23px 0}.mec-timeline-main-content p{font-size:13px}.mec-timeline-main-content h4 a{font-size:23px;line-height:24px}.mec-time-details span{font-size:11px}.mec-timeline-event-location address span{font-size:12px}a.mec-timeline-readmore{line-height:44px;font-size:14px}}.mec-event-tile-view article.mec-tile-item{height:400px;margin:15px 0;border-radius:22px;padding:35px 25px;position:relative;color:#fff;background-size:cover!important;background-position:center!important;box-shadow:0 2px 9px rgba(0,0,0,.25);transition:all .22s ease}.mec-event-tile-view article.mec-tile-item:hover{box-shadow:0 4px 19px rgba(0,0,0,.5)}.mec-event-tile-view article.mec-tile-item div{position:relative;z-index:3}.mec-event-tile-view article.mec-tile-item:after,.mec-event-tile-view article.mec-tile-item:before{position:absolute;background:-moz-linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:-webkit-gradient(left top,right top,color-stop(0,rgba(0,0,0,.35)),color-stop(65%,rgba(0,0,0,.48)),color-stop(100%,rgba(0,0,0,.72)));background:-webkit-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);background:linear-gradient(180deg,rgba(0,0,0,.35) 0,rgba(0,0,0,.48) 65%,rgba(0,0,0,.72) 100%);content:"";left:0;right:0;bottom:0;top:0;width:100%;width:calc(100% + 1px);height:100%;border-radius:22px;z-index:1}.mec-event-tile-view article.mec-tile-item:after{background-color:inherit;background-image:none;top:35px;bottom:auto;height:40px;border-radius:0 3px 3px 0;width:97px;z-index:2;box-shadow:2px 1px 7px rgba(0,0,0,.1)}.mec-event-tile-view article.mec-tile-item .event-tile-view-head{padding:8px 3px;font-size:16px;font-weight:700;margin-bottom:50px;text-transform:uppercase}.mec-event-tile-view article.mec-tile-item .mec-event-time{color:#d6d6d6;font-size:15px;font-weight:400;line-height:1;padding-top:4px;position:absolute;right:1px;top:10px}.mec-event-tile-view article.mec-tile-item .mec-event-time i{vertical-align:baseline;font-size:14px;float:left}.mec-event-tile-view article.mec-tile-item i{margin-right:5px}.mec-event-tile-view article.mec-tile-item .mec-event-title{color:#fff;font-weight:700;font-size:23px;padding-top:12px}.mec-event-tile-view article.mec-tile-item .mec-event-title a{color:#fff}.mec-event-tile-view article.mec-tile-item .mec-event-title a:hover{text-decoration:underline}.mec-event-tile-view article.mec-tile-item .mec-event-content{position:absolute;bottom:25px;left:25px;right:25px}.mec-skin-tile-month-navigator-container{position:relative;text-align:center;font-size:12px;height:80px;background:#f7f7f7;padding:28px;border-radius:11px;margin-bottom:20px}.mec-skin-tile-month-navigator-container:after,.mec-skin-tile-month-navigator-container:before{content:'';display:block;position:absolute;left:50%;margin-left:-10px;width:0;height:0;border-style:solid;border-width:10px}.mec-skin-tile-month-navigator-container:after{bottom:-20px;border-color:#f7f7f7 transparent transparent transparent}.mec-skin-tile-month-navigator-container:before{bottom:-21px;border-color:#fff transparent transparent transparent}@media only screen and (max-width:480px){.mec-skin-tile-month-navigator-container{height:110px;padding-top:68px}}.mec-skin-tile-month-navigator-container h2{font-size:23px;font-weight:700}.mec-skin-tile-month-navigator-container .mec-next-month,.mec-skin-tile-month-navigator-container .mec-previous-month{position:absolute;top:28px;left:20px;cursor:pointer;padding:3px 12px;line-height:23px;background:#fff;border-radius:32px;box-shadow:0 1px 3px rgba(0,0,0,.02);transition:all .22s ease}.mec-skin-tile-month-navigator-container .mec-next-month{left:auto;right:20px}.mec-skin-tile-month-navigator-container .mec-next-month:hover,.mec-skin-tile-month-navigator-container .mec-previous-month:hover{box-shadow:0 2px 5px rgba(0,0,0,.1);color:#000}.mec-wrap .mec-event-tile-view article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view article.mec-label-featured:before{position:absolute;bottom:auto;text-align:center;right:auto;font-size:10px}.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-3 article.mec-label-featured:before{top:12px;left:103px}.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-4 article.mec-label-featured:before{top:18px;left:125px}.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-canceled:before,.mec-wrap .mec-event-tile-view .col-md-6 article.mec-label-featured:before{top:20px;left:200px}
assets/js/frontend.js CHANGED
@@ -485,10 +485,18 @@ var mecSingleEventDisplayer = {
485
  var mec_month_select = $('#mec_sf_month_' + settings.id);
486
  var mec_year_select = $('#mec_sf_year_' + settings.id);
487
 
 
 
 
 
 
 
 
 
 
488
  if(skin == 'list')
489
  {
490
- var mec_filter_none = '<option class="mec-none-item" value="none" selected="selected">' + $('#mec-filter-none').val() + '</option>';
491
-
492
  if(mec_month_select.find('.mec-none-item').length == 0) mec_month_select.prepend(mec_filter_none);
493
  if(mec_year_select.find('.mec-none-item').length == 0) mec_year_select.prepend(mec_filter_none);
494
  }
@@ -524,7 +532,7 @@ var mecSingleEventDisplayer = {
524
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
525
 
526
  // Focus First Active Day
527
- mecFocusDay(settings.id);
528
 
529
  // Focus First Active Week
530
  mec_focus_week(settings.id);
@@ -550,7 +558,7 @@ var mecSingleEventDisplayer = {
550
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
551
 
552
  // Focus First Active Day
553
- mecFocusDay(settings.id);
554
 
555
  // Focus First Active Week
556
  mec_focus_week(settings.id);
@@ -1364,7 +1372,7 @@ var mecSingleEventDisplayer = {
1364
  initDaysSlider(settings.month_id);
1365
 
1366
  // Slider first event day focus when page load.
1367
- mecFocusDay(settings.id);
1368
 
1369
  // Search Widget
1370
  if (settings.sf.container !== '') {
@@ -1517,7 +1525,7 @@ var mecSingleEventDisplayer = {
1517
  setToday('' + active_year + active_month + active_day);
1518
 
1519
  // Focus First Active Day
1520
- mecFocusDay(settings.id);
1521
  },
1522
  error: function () {}
1523
  });
@@ -1591,7 +1599,7 @@ var mecSingleEventDisplayer = {
1591
  initDaysSlider(month_id, day_id);
1592
 
1593
  // Focus First Active Day
1594
- mecFocusDay(settings.id);
1595
  }
1596
 
1597
  function sed() {
@@ -2025,6 +2033,7 @@ var mecSingleEventDisplayer = {
2025
 
2026
  function initMasonry() {
2027
  var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
 
2028
  var $grid = $container.isotope({
2029
  filter: '*',
2030
  itemSelector: '.mec-masonry-item-wrap',
@@ -2032,6 +2041,7 @@ var mecSingleEventDisplayer = {
2032
  date: '[data-sort-masonry]',
2033
  },
2034
  sortBy: 'date',
 
2035
  animationOptions: {
2036
  duration: 750,
2037
  easing: 'linear',
@@ -2040,13 +2050,15 @@ var mecSingleEventDisplayer = {
2040
  });
2041
 
2042
  if (settings.fit_to_row == 1) $grid.isotope({
2043
- layoutMode: 'fitRows'
 
2044
  });
2045
 
2046
  // Fix Elementor tab
2047
  $('.elementor-tabs').find('.elementor-tab-title').click(function () {
2048
  $grid.isotope({
2049
- sortBy: 'date'
 
2050
  });
2051
  });
2052
 
@@ -2059,6 +2071,7 @@ var mecSingleEventDisplayer = {
2059
  date: '[data-sort-masonry]',
2060
  },
2061
  sortBy: 'date',
 
2062
  animationOptions: {
2063
  duration: 750,
2064
  easing: 'linear',
@@ -2066,7 +2079,8 @@ var mecSingleEventDisplayer = {
2066
  },
2067
  });
2068
  if (settings.masonry_like_grid == 1) $grid_cat.isotope({
2069
- sortBy: 'date'
 
2070
  });
2071
  return false;
2072
  });
@@ -2123,7 +2137,8 @@ var mecSingleEventDisplayer = {
2123
  function loadMore() {
2124
  // Add loading Class
2125
  $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2126
- var mec_filter_value = $('#mec_skin_' + settings.id).find('.mec-masonry-cat-selected').data('filter').replace('.mec-t', '');
 
2127
  var mec_filter_by = $('#mec_skin_' + settings.id).data('filterby');
2128
 
2129
  $.ajax({
@@ -2254,12 +2269,18 @@ var mecSingleEventDisplayer = {
2254
  });
2255
  }
2256
 
2257
- function toggleLoadmore() {
2258
- $('#mec_skin_' + settings.id + ' .mec-month-divider:not(.active)').each(function () {
 
 
 
2259
  var month = $(this).data('toggle-divider');
2260
  $('#mec_skin_' + settings.id + ' .' + month).slideUp('fast');
2261
  });
2262
 
 
 
 
2263
  // Register Listeners
2264
  toggle();
2265
  }
@@ -3613,17 +3634,46 @@ function get_parameter_by_name(name, url) {
3613
  // Focus events day
3614
  var mec_g_month_id = null;
3615
 
3616
- function mecFocusDay(id) {
3617
- setTimeout(function () {
3618
- var owl_go = jQuery("#mec-owl-calendar-d-table-" + id + "-" + mec_g_month_id);
3619
- owl_go.find('.owl-stage > div').each(function (index) {
3620
- if (parseInt(jQuery(this).children('div').data("events-count")) > 0) {
3621
- var index_plus = index + 1;
3622
- jQuery('#mec_daily_view_day' + id + '_' + mec_g_month_id + (index < 10 ? '0' + index_plus : index_plus)).trigger('click');
3623
- owl_go.trigger('to.owl.carousel', index_plus);
3624
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3625
  }
3626
  });
 
 
 
 
 
 
3627
  }, 1000);
3628
  }
3629
 
485
  var mec_month_select = $('#mec_sf_month_' + settings.id);
486
  var mec_year_select = $('#mec_sf_year_' + settings.id);
487
 
488
+ if(mec_year_select.val() == 'none')
489
+ {
490
+ mec_year_select.find('option').each(function()
491
+ {
492
+ var option_val = $(this).val();
493
+ if(option_val == mecdata.current_year) mec_year_select.val(option_val);
494
+ });
495
+ }
496
+
497
  if(skin == 'list')
498
  {
499
+ var mec_filter_none = '<option class="mec-none-item" value="none">' + $('#mec-filter-none').val() + '</option>';
 
500
  if(mec_month_select.find('.mec-none-item').length == 0) mec_month_select.prepend(mec_filter_none);
501
  if(mec_year_select.find('.mec-none-item').length == 0) mec_year_select.prepend(mec_filter_none);
502
  }
532
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
533
 
534
  // Focus First Active Day
535
+ mecFocusDay(settings);
536
 
537
  // Focus First Active Week
538
  mec_focus_week(settings.id);
558
  $('.mec-modal-result').removeClass("mec-month-navigator-loading");
559
 
560
  // Focus First Active Day
561
+ mecFocusDay(settings);
562
 
563
  // Focus First Active Week
564
  mec_focus_week(settings.id);
1372
  initDaysSlider(settings.month_id);
1373
 
1374
  // Slider first event day focus when page load.
1375
+ mecFocusDay(settings);
1376
 
1377
  // Search Widget
1378
  if (settings.sf.container !== '') {
1525
  setToday('' + active_year + active_month + active_day);
1526
 
1527
  // Focus First Active Day
1528
+ mecFocusDay(settings);
1529
  },
1530
  error: function () {}
1531
  });
1599
  initDaysSlider(month_id, day_id);
1600
 
1601
  // Focus First Active Day
1602
+ mecFocusDay(settings);
1603
  }
1604
 
1605
  function sed() {
2033
 
2034
  function initMasonry() {
2035
  var $container = $("#mec_skin_" + settings.id + " .mec-event-masonry");
2036
+ var data_sortAscending = $("#mec_skin_" + settings.id).data('sortascending');
2037
  var $grid = $container.isotope({
2038
  filter: '*',
2039
  itemSelector: '.mec-masonry-item-wrap',
2041
  date: '[data-sort-masonry]',
2042
  },
2043
  sortBy: 'date',
2044
+ sortAscending: data_sortAscending,
2045
  animationOptions: {
2046
  duration: 750,
2047
  easing: 'linear',
2050
  });
2051
 
2052
  if (settings.fit_to_row == 1) $grid.isotope({
2053
+ layoutMode: 'fitRows',
2054
+ sortAscending: data_sortAscending,
2055
  });
2056
 
2057
  // Fix Elementor tab
2058
  $('.elementor-tabs').find('.elementor-tab-title').click(function () {
2059
  $grid.isotope({
2060
+ sortBy: 'date',
2061
+ sortAscending: data_sortAscending,
2062
  });
2063
  });
2064
 
2071
  date: '[data-sort-masonry]',
2072
  },
2073
  sortBy: 'date',
2074
+ sortAscending: data_sortAscending,
2075
  animationOptions: {
2076
  duration: 750,
2077
  easing: 'linear',
2079
  },
2080
  });
2081
  if (settings.masonry_like_grid == 1) $grid_cat.isotope({
2082
+ sortBy: 'date',
2083
+ sortAscending: data_sortAscending,
2084
  });
2085
  return false;
2086
  });
2137
  function loadMore() {
2138
  // Add loading Class
2139
  $("#mec_skin_" + settings.id + " .mec-load-more-button").addClass("mec-load-more-loading");
2140
+ var mec_cat_elem = $('#mec_skin_' + settings.id).find('.mec-masonry-cat-selected');
2141
+ var mec_filter_value = (mec_cat_elem && mec_cat_elem.data('filter') != undefined) ? mec_cat_elem.data('filter').replace('.mec-t', '') : '';
2142
  var mec_filter_by = $('#mec_skin_' + settings.id).data('filterby');
2143
 
2144
  $.ajax({
2269
  });
2270
  }
2271
 
2272
+ function toggleLoadmore()
2273
+ {
2274
+ $('#mec_skin_' + settings.id + ' .mec-month-divider:not(:last)').each(function ()
2275
+ {
2276
+ if($(this).hasClass('active')) $(this).removeClass('active');
2277
  var month = $(this).data('toggle-divider');
2278
  $('#mec_skin_' + settings.id + ' .' + month).slideUp('fast');
2279
  });
2280
 
2281
+ // Set Active Class For Last Article
2282
+ $('#mec_skin_' + settings.id + ' .mec-month-divider:last').addClass('active');
2283
+
2284
  // Register Listeners
2285
  toggle();
2286
  }
3634
  // Focus events day
3635
  var mec_g_month_id = null;
3636
 
3637
+ function mecFocusDay(settings)
3638
+ {
3639
+ setTimeout(function()
3640
+ {
3641
+ var id = settings.id,
3642
+ date = new Date(),
3643
+ mec_owl_year = mec_g_month_id.substr(0, 4),
3644
+ mec_current_year = date.getFullYear(),
3645
+ mec_owl_month = mec_g_month_id.substr(4, 6),
3646
+ mec_current_month = date.getMonth() + 1,
3647
+ mec_current_day = date.getDate(),
3648
+ mec_owl_go = jQuery("#mec-owl-calendar-d-table-" + id + "-" + mec_g_month_id),
3649
+ mec_day_exist = false;
3650
+ mec_owl_go.find('.owl-stage > div').each(function (index)
3651
+ {
3652
+ if(parseInt(jQuery(this).children('div').data("events-count")) > 0)
3653
+ {
3654
+ if((((mec_owl_year != mec_current_year) && (mec_owl_month != mec_current_month)) || (mec_owl_year == mec_current_year) && (mec_owl_month != mec_current_month)) || parseInt(jQuery(this).children('div').text()) > mec_current_day)
3655
+ {
3656
+ var index_plus = index + 1;
3657
+ jQuery('#mec_daily_view_day' + id + '_' + mec_g_month_id + (index < 10 ? '0' + index_plus : index_plus)).trigger('click');
3658
+ mec_owl_go.trigger('to.owl.carousel', index_plus);
3659
+ mec_day_exist = true;
3660
+ return false;
3661
+ }
3662
+ else
3663
+ {
3664
+ jQuery('#mec_daily_view_day' + id + '_' + mec_g_month_id + mec_current_day).trigger('click');
3665
+ mec_owl_go.trigger('to.owl.carousel', mec_current_day);
3666
+ mec_day_exist = true;
3667
+ return false;
3668
+ }
3669
  }
3670
  });
3671
+
3672
+ if(!mec_day_exist && ((mec_owl_year == mec_current_year) && (mec_owl_month == mec_current_month)))
3673
+ {
3674
+ jQuery('#mec_daily_view_day' + id + '_' + mec_g_month_id + mec_current_day).trigger('click');
3675
+ mec_owl_go.trigger('to.owl.carousel', mec_current_day);
3676
+ }
3677
  }, 1000);
3678
  }
3679
 
changelog.txt CHANGED
@@ -1,4 +1,20 @@
1
- v 5.0.2 - 22 January 2020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: An ability to add users as recipients in notifications (pro)
3
  - Added: An ability to add user roles as recipient in notifications (pro)
4
  - Added: LinkedIn to speakers
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
5
+ - Fixed: When event time is hidden
6
+ - Fixed: WooCommerce gateway (pro)
7
+ - Fixed: Booking edit (pro)
8
+ - Fixed: Apostrophe in booking success message (pro)
9
+ - Fixed: Day focus of daily skin
10
+ - Fixed: Accordion month toggle
11
+ - Fixed: Sort event in masonry skin (pro)
12
+ - Fixed: Current year in search module
13
+ - Fixed: Advanced repeat
14
+ - Fixed: Pay button position when cart is invalid (pro)
15
+ - Fixed: Simple monthly calendar style
16
+
17
+ v 5.0.2 - 22 January 2020
18
  - Added: An ability to add users as recipients in notifications (pro)
19
  - Added: An ability to add user roles as recipient in notifications (pro)
20
  - Added: LinkedIn to speakers
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-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:48+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -67,7 +67,7 @@ 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:135 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í"
@@ -268,7 +268,7 @@ msgid "MEC Activation"
268
  msgstr "Aktivace MEC"
269
 
270
  #: app/features/events.php:157 app/features/ix/export.php:34
271
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
272
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
273
  #: app/skins/yearly_view/tpl.php:68
274
  msgid "Events"
@@ -288,7 +288,7 @@ msgstr "Událost"
288
  msgid "Add Event"
289
  msgstr "Přidat událost"
290
 
291
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
292
  msgid "Add New Event"
293
  msgstr "Přidat novou událost"
294
 
@@ -327,7 +327,7 @@ msgstr "V koši nebyly nalezeny žádné události!"
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:5278
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
@@ -337,7 +337,7 @@ 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:5277
341
  msgid "Categories"
342
  msgstr "Kategorie"
343
 
@@ -461,7 +461,7 @@ msgstr "Odkaz"
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:5284 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 +469,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:5311
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
@@ -518,7 +518,7 @@ msgstr "Datum a čas"
518
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -556,7 +556,7 @@ msgstr "odp."
556
  #: app/features/events.php:3555 app/features/fes/form.php:287
557
  #: app/features/fes/form.php:291 app/features/ix.php:3510
558
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
559
- #: app/features/mec/dashboard.php:401
560
  msgid "End Date"
561
  msgstr "Konečný den"
562
 
@@ -677,7 +677,7 @@ msgid "Repeats"
677
  msgstr "Opakování"
678
 
679
  #: app/features/events.php:743 app/features/fes/form.php:349
680
- #: app/features/mec/dashboard.php:403
681
  #: app/skins/default_full_calendar/tpl.php:69
682
  #: app/skins/full_calendar/tpl.php:110
683
  msgid "Daily"
@@ -702,14 +702,14 @@ msgid "Weekly"
702
  msgstr "Týdně"
703
 
704
  #: app/features/events.php:778 app/features/fes/form.php:354
705
- #: app/features/mec/dashboard.php:404
706
  #: app/skins/default_full_calendar/tpl.php:67
707
  #: app/skins/full_calendar/tpl.php:108
708
  msgid "Monthly"
709
  msgstr "Měsíčně"
710
 
711
  #: app/features/events.php:785 app/features/fes/form.php:355
712
- #: app/features/mec/dashboard.php:405
713
  #: app/skins/default_full_calendar/tpl.php:66
714
  #: app/skins/full_calendar/tpl.php:107
715
  msgid "Yearly"
@@ -830,7 +830,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:5310
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Cena události"
@@ -863,7 +863,7 @@ msgstr ""
863
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
864
  "vícedenních výskytů."
865
 
866
- #: app/features/events.php:1264 app/libraries/render.php:466
867
  msgid "Day 1"
868
  msgstr "Den 1"
869
 
@@ -937,7 +937,7 @@ msgstr "Popis"
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:5285
941
  #: app/modules/speakers/details.php:18
942
  msgid "Speakers"
943
  msgstr "Řečníci"
@@ -952,7 +952,7 @@ 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:5308
956
  msgid "Event Link"
957
  msgstr "Odkaz na událost"
958
 
@@ -976,7 +976,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:5309
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
@@ -1045,7 +1045,7 @@ msgid "12"
1045
  msgstr "12"
1046
 
1047
  #: app/features/events.php:1653 app/libraries/book.php:60
1048
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1049
  msgid "Tickets"
1050
  msgstr "Vstupenky"
1051
 
@@ -1403,7 +1403,7 @@ msgstr "Limit účastníků"
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:5282 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
@@ -1468,7 +1468,7 @@ 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:5312
1472
  msgid "Ticket"
1473
  msgstr "Vstupenka"
1474
 
@@ -1644,7 +1644,7 @@ 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:5279
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
@@ -2065,7 +2065,7 @@ msgstr "Import z Facebook kalendáře"
2065
  msgid "Import all of your Facebook events into MEC."
2066
  msgstr "Importujte všechny své události na Facebooku do MEC."
2067
 
2068
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2069
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2070
  msgid "Documentation"
2071
  msgstr "Dokumentace"
@@ -2418,7 +2418,7 @@ msgid "Featured"
2418
  msgstr "Ztvárněná"
2419
 
2420
  #: app/features/labels.php:118 app/features/labels.php:143
2421
- #: app/libraries/main.php:5528 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
@@ -2454,8 +2454,8 @@ 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:270 app/features/mec/meta_boxes/filter.php:96
2458
- #: app/libraries/main.php:5281
2459
  msgid "Locations"
2460
  msgstr "Umístění"
2461
 
@@ -2565,7 +2565,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:5315
2569
  msgid "Other Locations"
2570
  msgstr "Další místa"
2571
 
@@ -2621,14 +2621,14 @@ msgstr "MEC - podpora"
2621
  msgid "Support"
2622
  msgstr "Podpora"
2623
 
2624
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2625
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2626
- #: app/libraries/main.php:5283
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:263
2632
  msgid "Shortcodes"
2633
  msgstr "Zkrácené kódy"
2634
 
@@ -2986,7 +2986,7 @@ msgstr "Nastavení uložena!"
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:5527
2990
  msgid "Verified"
2991
  msgstr "Ověřeno"
2992
 
@@ -3010,7 +3010,7 @@ msgstr "%s - Nejvýkonnější a snadno použitelný systém pro správu událos
3010
  msgid "Modern Events Calendar (Lite)"
3011
  msgstr "Modern Events Calendar (Lite)"
3012
 
3013
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3014
  msgctxt "plugin rate"
3015
  msgid "Rate the plugin ★★★★★"
3016
  msgstr "Ohodnoťe doplněk ★★★★★"
@@ -3019,7 +3019,7 @@ msgstr "Ohodnoťe doplněk ★★★★★"
3019
  msgid "Update"
3020
  msgstr "Aktualizovat"
3021
 
3022
- #: app/features/mec/dashboard.php:92
3023
  #, php-format
3024
  msgid ""
3025
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3030,15 +3030,15 @@ 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:92
3034
  msgid "lite"
3035
  msgstr " omezenou"
3036
 
3037
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3038
  msgid "GO PREMIUM"
3039
  msgstr "PŘEJÍT NA PREMIUM"
3040
 
3041
- #: app/features/mec/dashboard.php:98
3042
  #, php-format
3043
  msgid ""
3044
  "Easily get a discount coupon by rating us on %s or following and reposting "
@@ -3047,19 +3047,19 @@ 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:98
3051
  msgid "WordPress"
3052
  msgstr "WordPress"
3053
 
3054
- #: app/features/mec/dashboard.php:98
3055
  msgid "Copouns!"
3056
  msgstr "Kupóny!"
3057
 
3058
- #: app/features/mec/dashboard.php:127
3059
  msgid "Getting started with Modern Events Calendar"
3060
  msgstr "Začínáme s Modern Events Calendar"
3061
 
3062
- #: app/features/mec/dashboard.php:128
3063
  msgid ""
3064
  "In this short video, you can learn how to make an event and put a calendar "
3065
  "on your website. Please watch this 2 minutes video to the end."
@@ -3067,19 +3067,19 @@ msgstr ""
3067
  "V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
3068
  "svoje stránky. Sledujte prosím toto 2minutové video až do konce."
3069
 
3070
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3071
  msgid "MEC Activate"
3072
  msgstr "MEC aktivace"
3073
 
3074
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3075
  msgid "Activate Addons"
3076
  msgstr "Aktivovat doplňky"
3077
 
3078
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3079
  msgid "You cannot access this section."
3080
  msgstr "Nemáte přístup do této části."
3081
 
3082
- #: app/features/mec/dashboard.php:174
3083
  msgid ""
3084
  "In order to use all plugin features and options, please enter your purchase "
3085
  "code."
@@ -3087,52 +3087,52 @@ 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:288 app/features/mec/settings.php:395
3091
  msgid "Upcoming Events"
3092
  msgstr "Nadcházející události"
3093
 
3094
- #: app/features/mec/dashboard.php:312
3095
  msgid "Popular Gateways"
3096
  msgstr "Oblíbené platební brány"
3097
 
3098
- #: app/features/mec/dashboard.php:366
3099
  msgid "Total Bookings"
3100
  msgstr "Celkový počet rezervací"
3101
 
3102
- #: app/features/mec/dashboard.php:393
3103
  msgid "This Month"
3104
  msgstr "Tento měsíc"
3105
 
3106
- #: app/features/mec/dashboard.php:394
3107
  msgid "Last Month"
3108
  msgstr "Minulý měsíc"
3109
 
3110
- #: app/features/mec/dashboard.php:395
3111
  msgid "This Year"
3112
  msgstr "Tento rok"
3113
 
3114
- #: app/features/mec/dashboard.php:396
3115
  msgid "Last Year"
3116
  msgstr "Minulý rok"
3117
 
3118
- #: app/features/mec/dashboard.php:408
3119
  msgid "Bar"
3120
  msgstr "Pruh"
3121
 
3122
- #: app/features/mec/dashboard.php:409
3123
  msgid "Line"
3124
  msgstr "Čára"
3125
 
3126
- #: app/features/mec/dashboard.php:411
3127
  msgid "Filter"
3128
  msgstr "Filtr"
3129
 
3130
- #: app/features/mec/dashboard.php:427
3131
  #, php-format
3132
  msgid "Total Sells (%s)"
3133
  msgstr "Celkový prodej %s"
3134
 
3135
- #: app/features/mec/dashboard.php:448
3136
  msgid "Change Log"
3137
  msgstr "Změna logu"
3138
 
@@ -4114,7 +4114,7 @@ msgstr "Zakázaný"
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:5286
4118
  #: app/libraries/skins.php:936
4119
  msgid "Speaker"
4120
  msgstr "Řečník"
@@ -5088,7 +5088,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:5290
5092
  msgid "Weekdays"
5093
  msgstr "Pracovní dny"
5094
 
@@ -6314,7 +6314,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:5314
6318
  #: app/skins/single.php:862
6319
  msgid "Other Organizers"
6320
  msgstr "Další organizátoři"
@@ -6371,7 +6371,7 @@ 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:5280
6375
  msgid "label"
6376
  msgstr "štítek"
6377
 
@@ -6396,7 +6396,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:448
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
@@ -6489,70 +6489,70 @@ msgstr "Sleva"
6489
  msgid "Download Invoice"
6490
  msgstr "Stáhnout fakturu"
6491
 
6492
- #: app/libraries/factory.php:156
6493
  msgid "M.E. Calendar"
6494
  msgstr "M.E. Kalendář"
6495
 
6496
- #: app/libraries/factory.php:195
6497
  msgctxt "plugin link"
6498
  msgid "Upgrade to Pro Version"
6499
  msgstr "Upgrade na verzi PRO"
6500
 
6501
- #: app/libraries/factory.php:213
6502
  msgctxt "plugin link"
6503
  msgid "Settings"
6504
  msgstr "Nastavení"
6505
 
6506
- #: app/libraries/factory.php:218
6507
  msgctxt "plugin link"
6508
  msgid "Upgrade"
6509
  msgstr "Upgrade"
6510
 
6511
- #: app/libraries/factory.php:361
6512
  msgid "day"
6513
  msgstr "den"
6514
 
6515
- #: app/libraries/factory.php:362 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:363
6522
  msgid "hour"
6523
  msgstr "hodina"
6524
 
6525
- #: app/libraries/factory.php:364 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:365
6532
  msgid "minute"
6533
  msgstr "minuta"
6534
 
6535
- #: app/libraries/factory.php:366 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:367
6542
  msgid "second"
6543
  msgstr "vteřina"
6544
 
6545
- #: app/libraries/factory.php:368 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:415
6552
  msgid "MEC Single Sidebar"
6553
  msgstr "MEC Postranní panel"
6554
 
6555
- #: app/libraries/factory.php:416
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
 
@@ -6628,31 +6628,31 @@ msgstr "Zobrazení rozvrhu"
6628
  msgid "Tile View"
6629
  msgstr "Zobrazení rozvrhu"
6630
 
6631
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6632
  msgid "SU"
6633
  msgstr "NE"
6634
 
6635
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6636
  msgid "MO"
6637
  msgstr "PO"
6638
 
6639
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6640
  msgid "TU"
6641
  msgstr "ÚT"
6642
 
6643
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6644
  msgid "WE"
6645
  msgstr "ST"
6646
 
6647
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6648
  msgid "TH"
6649
  msgstr "ČT"
6650
 
6651
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6652
  msgid "FR"
6653
  msgstr "PÁ"
6654
 
6655
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6656
  msgid "SA"
6657
  msgstr "SO"
6658
 
@@ -6976,7 +6976,7 @@ msgstr "Vložte štítek pro tuto možnost"
6976
  msgid "Free"
6977
  msgstr "Zdarma"
6978
 
6979
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
6980
  msgid "M.E. Calender"
6981
  msgstr "M.E. Kalendář"
6982
 
@@ -6985,98 +6985,98 @@ msgstr "M.E. Kalendář"
6985
  msgid "Copy of %s"
6986
  msgstr "Kopie %s"
6987
 
6988
- #: app/libraries/main.php:4669
6989
  msgid "Booked an event."
6990
  msgstr "Událost byla rezervována."
6991
 
6992
- #: app/libraries/main.php:4710
6993
  #, php-format
6994
  msgid "%s booked %s event."
6995
  msgstr "%s zarezervoval %s událost."
6996
 
6997
- #: app/libraries/main.php:5275
6998
  msgid "Taxonomies"
6999
  msgstr "Taxonomie"
7000
 
7001
  # Mrknout na kontext
7002
- #: app/libraries/main.php:5277
7003
  msgid "Category Plural Label"
7004
  msgstr "Štítek množné kategorie"
7005
 
7006
  # Mrknout na kontext
7007
- #: app/libraries/main.php:5278
7008
  msgid "Category Singular Label"
7009
  msgstr "Štítek jednotné kategorie"
7010
 
7011
- #: app/libraries/main.php:5279
7012
  msgid "Label Plural Label"
7013
  msgstr "Štítek množného štítku"
7014
 
7015
- #: app/libraries/main.php:5280
7016
  msgid "Label Singular Label"
7017
  msgstr "Štítek jednotného štítku"
7018
 
7019
- #: app/libraries/main.php:5281
7020
  msgid "Location Plural Label"
7021
  msgstr "Štítek množného umístění"
7022
 
7023
- #: app/libraries/main.php:5282
7024
  msgid "Location Singular Label"
7025
  msgstr "Štítek jednotného umístění"
7026
 
7027
- #: app/libraries/main.php:5283
7028
  msgid "Organizer Plural Label"
7029
  msgstr "Štítek množného organizátora"
7030
 
7031
- #: app/libraries/main.php:5284
7032
  msgid "Organizer Singular Label"
7033
  msgstr "Štítek jednotného organizátora"
7034
 
7035
- #: app/libraries/main.php:5285
7036
  msgid "Speaker Plural Label"
7037
  msgstr "Štítek množného řečníka"
7038
 
7039
- #: app/libraries/main.php:5286
7040
  msgid "Speaker Singular Label"
7041
  msgstr "Štítek jednotného řečníka"
7042
 
7043
- #: app/libraries/main.php:5292
7044
  msgid "Sunday abbreviation"
7045
  msgstr "Neděle zkratka"
7046
 
7047
- #: app/libraries/main.php:5293
7048
  msgid "Monday abbreviation"
7049
  msgstr "Pondělí zkratka"
7050
 
7051
- #: app/libraries/main.php:5294
7052
  msgid "Tuesday abbreviation"
7053
  msgstr "Úterý zkratka"
7054
 
7055
- #: app/libraries/main.php:5295
7056
  msgid "Wednesday abbreviation"
7057
  msgstr "Středa zkratka"
7058
 
7059
- #: app/libraries/main.php:5296
7060
  msgid "Thursday abbreviation"
7061
  msgstr "Čtvrtek zkratka"
7062
 
7063
- #: app/libraries/main.php:5297
7064
  msgid "Friday abbreviation"
7065
  msgstr "Pátek zkratka"
7066
 
7067
- #: app/libraries/main.php:5298
7068
  msgid "Saturday abbreviation"
7069
  msgstr "Sobota zkratka"
7070
 
7071
- #: app/libraries/main.php:5302
7072
  msgid "Others"
7073
  msgstr "Další"
7074
 
7075
- #: app/libraries/main.php:5304
7076
  msgid "Booking Success Message"
7077
  msgstr "Zpráva o úspěchu rezervace"
7078
 
7079
- #: app/libraries/main.php:5304
7080
  msgid ""
7081
  "Thanks for your booking. Your tickets booked, booking verification might be "
7082
  "needed, please check your email."
@@ -7084,11 +7084,11 @@ 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:5305 app/widgets/single.php:131
7088
  msgid "Register Button"
7089
  msgstr "Registrační tlačítko"
7090
 
7091
- #: app/libraries/main.php:5305 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
@@ -7105,11 +7105,11 @@ msgstr "Registrační tlačítko"
7105
  msgid "REGISTER"
7106
  msgstr "REGISTROVAT"
7107
 
7108
- #: app/libraries/main.php:5306
7109
  msgid "View Detail Button"
7110
  msgstr "Tlačítko Zobrazit detail"
7111
 
7112
- #: app/libraries/main.php:5306 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
@@ -7120,85 +7120,86 @@ msgstr "Tlačítko Zobrazit detail"
7120
  msgid "View Detail"
7121
  msgstr "Zobrazit detail"
7122
 
7123
- #: app/libraries/main.php:5307
7124
  msgid "Event Detail Button"
7125
  msgstr "Tlačítko Detail události"
7126
 
7127
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7128
  msgid "Event Detail"
7129
  msgstr "Zobrazit událost"
7130
 
7131
- #: app/libraries/main.php:5309
7132
  msgid "More Info Link"
7133
  msgstr "Odkaz na více informací"
7134
 
7135
- #: app/libraries/main.php:5312
7136
  msgid "Ticket (Singular)"
7137
  msgstr "Vstupenka (Jednotné)"
7138
 
7139
- #: app/libraries/main.php:5313
7140
  msgid "Tickets (Plural)"
7141
  msgstr "Vstupenky (Množné)"
7142
 
7143
- #: app/libraries/main.php:5399
7144
  msgid "EventON"
7145
  msgstr "EventON"
7146
 
7147
- #: app/libraries/main.php:5400
7148
  msgid "The Events Calendar"
7149
  msgstr "The Events Calendar"
7150
 
7151
- #: app/libraries/main.php:5401
7152
  msgid "Events Schedule WP Plugin"
7153
  msgstr "Events Schedule WP Plugin"
7154
 
7155
- #: app/libraries/main.php:5402
7156
  msgid "Calendarize It"
7157
  msgstr "Calendarize It"
7158
 
7159
- #: app/libraries/main.php:5403
7160
  #, fuzzy
7161
  #| msgid "Event Speakers"
7162
  msgid "Event Espresso"
7163
  msgstr "Řečník události"
7164
 
7165
- #: app/libraries/main.php:5404
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:5405
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:5479 app/libraries/main.php:5499
7178
  msgid "Confirmed"
7179
  msgstr "Potvrzeno"
7180
 
7181
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7182
  msgid "Rejected"
7183
  msgstr "Odmítnuto"
7184
 
7185
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7186
  msgid "Pending"
7187
  msgstr "Nevyřízený"
7188
 
7189
- #: app/libraries/main.php:5529
7190
  msgid "Waiting"
7191
  msgstr "Čekající"
7192
 
7193
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7194
  msgid "Skin controller does not exist."
7195
  msgstr "Ovladač vzhledu neexistuje."
7196
 
7197
- #: app/libraries/main.php:5848
7198
  msgid "Sold Out"
7199
  msgstr "Vyprodáno"
7200
 
7201
- #: app/libraries/main.php:5856
7202
  #, fuzzy
7203
  #| msgid "Ticket"
7204
  msgid "Last Few Tickets"
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"
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í"
268
  msgstr "Aktivace MEC"
269
 
270
  #: app/features/events.php:157 app/features/ix/export.php:34
271
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
272
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
273
  #: app/skins/yearly_view/tpl.php:68
274
  msgid "Events"
288
  msgid "Add Event"
289
  msgstr "Přidat událost"
290
 
291
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
292
  msgid "Add New Event"
293
  msgstr "Přidat novou událost"
294
 
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
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
 
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
  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
518
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
556
  #: app/features/events.php:3555 app/features/fes/form.php:287
557
  #: app/features/fes/form.php:291 app/features/ix.php:3510
558
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
559
+ #: app/features/mec/dashboard.php:402
560
  msgid "End Date"
561
  msgstr "Konečný den"
562
 
677
  msgstr "Opakování"
678
 
679
  #: app/features/events.php:743 app/features/fes/form.php:349
680
+ #: app/features/mec/dashboard.php:404
681
  #: app/skins/default_full_calendar/tpl.php:69
682
  #: app/skins/full_calendar/tpl.php:110
683
  msgid "Daily"
702
  msgstr "Týdně"
703
 
704
  #: app/features/events.php:778 app/features/fes/form.php:354
705
+ #: app/features/mec/dashboard.php:405
706
  #: app/skins/default_full_calendar/tpl.php:67
707
  #: app/skins/full_calendar/tpl.php:108
708
  msgid "Monthly"
709
  msgstr "Měsíčně"
710
 
711
  #: app/features/events.php:785 app/features/fes/form.php:355
712
+ #: app/features/mec/dashboard.php:406
713
  #: app/skins/default_full_calendar/tpl.php:66
714
  #: app/skins/full_calendar/tpl.php:107
715
  msgid "Yearly"
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"
863
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
864
  "vícedenních výskytů."
865
 
866
+ #: app/features/events.php:1264 app/libraries/render.php:506
867
  msgid "Day 1"
868
  msgstr "Den 1"
869
 
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"
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
  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
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
 
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
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
 
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
2065
  msgid "Import all of your Facebook events into MEC."
2066
  msgstr "Importujte všechny své události na Facebooku do MEC."
2067
 
2068
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2069
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2070
  msgid "Documentation"
2071
  msgstr "Dokumentace"
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
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
 
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
 
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
 
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
 
3010
  msgid "Modern Events Calendar (Lite)"
3011
  msgstr "Modern Events Calendar (Lite)"
3012
 
3013
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3014
  msgctxt "plugin rate"
3015
  msgid "Rate the plugin ★★★★★"
3016
  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
  "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
  "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
 
3058
+ #: app/features/mec/dashboard.php:131
3059
  msgid "Getting started with Modern Events Calendar"
3060
  msgstr "Začínáme s Modern Events Calendar"
3061
 
3062
+ #: app/features/mec/dashboard.php:132
3063
  msgid ""
3064
  "In this short video, you can learn how to make an event and put a calendar "
3065
  "on your website. Please watch this 2 minutes video to the end."
3067
  "V tomto krátkém videu se dozvíte, jak vytvořit událost a umístit kalendář na "
3068
  "svoje stránky. Sledujte prosím toto 2minutové video až do konce."
3069
 
3070
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3071
  msgid "MEC Activate"
3072
  msgstr "MEC aktivace"
3073
 
3074
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3075
  msgid "Activate Addons"
3076
  msgstr "Aktivovat doplňky"
3077
 
3078
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3079
  msgid "You cannot access this section."
3080
  msgstr "Nemáte přístup do této části."
3081
 
3082
+ #: app/features/mec/dashboard.php:178
3083
  msgid ""
3084
  "In order to use all plugin features and options, please enter your purchase "
3085
  "code."
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
 
3094
+ #: app/features/mec/dashboard.php:313
3095
  msgid "Popular Gateways"
3096
  msgstr "Oblíbené platební brány"
3097
 
3098
+ #: app/features/mec/dashboard.php:367
3099
  msgid "Total Bookings"
3100
  msgstr "Celkový počet rezervací"
3101
 
3102
+ #: app/features/mec/dashboard.php:394
3103
  msgid "This Month"
3104
  msgstr "Tento měsíc"
3105
 
3106
+ #: app/features/mec/dashboard.php:395
3107
  msgid "Last Month"
3108
  msgstr "Minulý měsíc"
3109
 
3110
+ #: app/features/mec/dashboard.php:396
3111
  msgid "This Year"
3112
  msgstr "Tento rok"
3113
 
3114
+ #: app/features/mec/dashboard.php:397
3115
  msgid "Last Year"
3116
  msgstr "Minulý rok"
3117
 
3118
+ #: app/features/mec/dashboard.php:409
3119
  msgid "Bar"
3120
  msgstr "Pruh"
3121
 
3122
+ #: app/features/mec/dashboard.php:410
3123
  msgid "Line"
3124
  msgstr "Čára"
3125
 
3126
+ #: app/features/mec/dashboard.php:412
3127
  msgid "Filter"
3128
  msgstr "Filtr"
3129
 
3130
+ #: app/features/mec/dashboard.php:428
3131
  #, php-format
3132
  msgid "Total Sells (%s)"
3133
  msgstr "Celkový prodej %s"
3134
 
3135
+ #: app/features/mec/dashboard.php:449
3136
  msgid "Change Log"
3137
  msgstr "Změna logu"
3138
 
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"
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
 
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"
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
 
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
6489
  msgid "Download Invoice"
6490
  msgstr "Stáhnout fakturu"
6491
 
6492
+ #: app/libraries/factory.php:159
6493
  msgid "M.E. Calendar"
6494
  msgstr "M.E. Kalendář"
6495
 
6496
+ #: app/libraries/factory.php:198
6497
  msgctxt "plugin link"
6498
  msgid "Upgrade to Pro Version"
6499
  msgstr "Upgrade na verzi PRO"
6500
 
6501
+ #: app/libraries/factory.php:216
6502
  msgctxt "plugin link"
6503
  msgid "Settings"
6504
  msgstr "Nastavení"
6505
 
6506
+ #: app/libraries/factory.php:221
6507
  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
 
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
 
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
 
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
  "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
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
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"
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-22 10:47+0330\n"
6
- "PO-Revision-Date: 2020-01-22 10:48+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -73,7 +73,7 @@ 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:135 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"
@@ -273,7 +273,7 @@ msgid "MEC Activation"
273
  msgstr "MEC Aktivierung"
274
 
275
  #: app/features/events.php:157 app/features/ix/export.php:34
276
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
278
  #: app/skins/yearly_view/tpl.php:68
279
  msgid "Events"
@@ -293,7 +293,7 @@ msgstr "Veranstaltung"
293
  msgid "Add Event"
294
  msgstr "Veranstaltung hinzufügen"
295
 
296
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
297
  msgid "Add New Event"
298
  msgstr "Neue Veranstaltung hinzufügen"
299
 
@@ -332,7 +332,7 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
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:5278
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
@@ -342,7 +342,7 @@ 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:5277
346
  msgid "Categories"
347
  msgstr "Kategorien"
348
 
@@ -466,7 +466,7 @@ msgstr "Link"
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:5284 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 +474,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:5311
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
@@ -523,7 +523,7 @@ msgstr "Datum und Uhrzeit"
523
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -561,7 +561,7 @@ msgstr "PM"
561
  #: app/features/events.php:3555 app/features/fes/form.php:287
562
  #: app/features/fes/form.php:291 app/features/ix.php:3510
563
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
564
- #: app/features/mec/dashboard.php:401
565
  msgid "End Date"
566
  msgstr "Ende Datum"
567
 
@@ -690,7 +690,7 @@ msgid "Repeats"
690
  msgstr "Wiederholend"
691
 
692
  #: app/features/events.php:743 app/features/fes/form.php:349
693
- #: app/features/mec/dashboard.php:403
694
  #: app/skins/default_full_calendar/tpl.php:69
695
  #: app/skins/full_calendar/tpl.php:110
696
  msgid "Daily"
@@ -715,14 +715,14 @@ msgid "Weekly"
715
  msgstr "Wöchentlich"
716
 
717
  #: app/features/events.php:778 app/features/fes/form.php:354
718
- #: app/features/mec/dashboard.php:404
719
  #: app/skins/default_full_calendar/tpl.php:67
720
  #: app/skins/full_calendar/tpl.php:108
721
  msgid "Monthly"
722
  msgstr "Monatlich"
723
 
724
  #: app/features/events.php:785 app/features/fes/form.php:355
725
- #: app/features/mec/dashboard.php:405
726
  #: app/skins/default_full_calendar/tpl.php:66
727
  #: app/skins/full_calendar/tpl.php:107
728
  msgid "Yearly"
@@ -853,7 +853,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:5310
857
  #: app/widgets/single.php:103
858
  msgid "Event Cost"
859
  msgstr ""
@@ -886,7 +886,7 @@ msgid ""
886
  "multiple day occurrences."
887
  msgstr ""
888
 
889
- #: app/features/events.php:1264 app/libraries/render.php:466
890
  msgid "Day 1"
891
  msgstr ""
892
 
@@ -958,7 +958,7 @@ msgstr "Beschreibung"
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:5285
962
  #: app/modules/speakers/details.php:18
963
  msgid "Speakers"
964
  msgstr ""
@@ -975,7 +975,7 @@ 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:5308
979
  msgid "Event Link"
980
  msgstr "Veranstaltungslink"
981
 
@@ -1003,7 +1003,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:5309
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
@@ -1077,7 +1077,7 @@ msgid "12"
1077
  msgstr ""
1078
 
1079
  #: app/features/events.php:1653 app/libraries/book.php:60
1080
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1081
  msgid "Tickets"
1082
  msgstr "Tickets"
1083
 
@@ -1442,7 +1442,7 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
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:5282 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
@@ -1507,7 +1507,7 @@ 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:5312
1511
  msgid "Ticket"
1512
  msgstr "Ticket"
1513
 
@@ -1691,7 +1691,7 @@ 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:5279
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
@@ -2126,7 +2126,7 @@ msgstr "Vom Facebook Kalender Importieren"
2126
  msgid "Import all of your Facebook events into MEC."
2127
  msgstr "Importiere alle Deine Facebook Events zum MEC"
2128
 
2129
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2130
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2131
  msgid "Documentation"
2132
  msgstr "Dokumentation"
@@ -2514,7 +2514,7 @@ msgid "Featured"
2514
  msgstr "Ausgewähltes Bild"
2515
 
2516
  #: app/features/labels.php:118 app/features/labels.php:143
2517
- #: app/libraries/main.php:5528 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
@@ -2549,8 +2549,8 @@ 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:270 app/features/mec/meta_boxes/filter.php:96
2553
- #: app/libraries/main.php:5281
2554
  msgid "Locations"
2555
  msgstr "Orte"
2556
 
@@ -2662,7 +2662,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:5315
2666
  #, fuzzy
2667
  #| msgid "Locations"
2668
  msgid "Other Locations"
@@ -2726,14 +2726,14 @@ msgstr "Support"
2726
  msgid "Support"
2727
  msgstr "Support"
2728
 
2729
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2730
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2731
- #: app/libraries/main.php:5283
2732
  msgid "Organizers"
2733
  msgstr "Veranstalter"
2734
 
2735
  #: app/features/mec.php:413 app/features/mec.php:437
2736
- #: app/features/mec/dashboard.php:263
2737
  msgid "Shortcodes"
2738
  msgstr "Shortcodes"
2739
 
@@ -3094,7 +3094,7 @@ msgstr ""
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:5527
3098
  msgid "Verified"
3099
  msgstr "Verifiziert"
3100
 
@@ -3120,7 +3120,7 @@ msgstr ""
3120
  msgid "Modern Events Calendar (Lite)"
3121
  msgstr "Moderner Event Kalender "
3122
 
3123
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3124
  msgctxt "plugin rate"
3125
  msgid "Rate the plugin ★★★★★"
3126
  msgstr ""
@@ -3131,7 +3131,7 @@ msgstr ""
3131
  msgid "Update"
3132
  msgstr "Update %s"
3133
 
3134
- #: app/features/mec/dashboard.php:92
3135
  #, php-format
3136
  msgid ""
3137
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3139,111 +3139,111 @@ msgid ""
3139
  "Spots, etc you should upgrade to the Pro version."
3140
  msgstr ""
3141
 
3142
- #: app/features/mec/dashboard.php:92
3143
  msgid "lite"
3144
  msgstr ""
3145
 
3146
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3147
  msgid "GO PREMIUM"
3148
  msgstr ""
3149
 
3150
- #: app/features/mec/dashboard.php:98
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:98
3158
  #, fuzzy
3159
  #| msgid "Address"
3160
  msgid "WordPress"
3161
  msgstr "Adresse"
3162
 
3163
- #: app/features/mec/dashboard.php:98
3164
  msgid "Copouns!"
3165
  msgstr ""
3166
 
3167
- #: app/features/mec/dashboard.php:127
3168
  #, fuzzy
3169
  #| msgid "Modern Events Calendar"
3170
  msgid "Getting started with Modern Events Calendar"
3171
  msgstr "Moderner Event Kalender "
3172
 
3173
- #: app/features/mec/dashboard.php:128
3174
  msgid ""
3175
  "In this short video, you can learn how to make an event and put a calendar "
3176
  "on your website. Please watch this 2 minutes video to the end."
3177
  msgstr ""
3178
 
3179
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3180
  #, fuzzy
3181
  #| msgid "MEC Activation"
3182
  msgid "MEC Activate"
3183
  msgstr "MEC Aktivierung"
3184
 
3185
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3186
  #, fuzzy
3187
  #| msgid "MEC Activation"
3188
  msgid "Activate Addons"
3189
  msgstr "MEC Aktivierung"
3190
 
3191
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3192
  msgid "You cannot access this section."
3193
  msgstr ""
3194
 
3195
- #: app/features/mec/dashboard.php:174
3196
  msgid ""
3197
  "In order to use all plugin features and options, please enter your purchase "
3198
  "code."
3199
  msgstr ""
3200
 
3201
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3202
  msgid "Upcoming Events"
3203
  msgstr "Bevorstehende Events"
3204
 
3205
- #: app/features/mec/dashboard.php:312
3206
  msgid "Popular Gateways"
3207
  msgstr "Beliebte Zahlungsgateways"
3208
 
3209
- #: app/features/mec/dashboard.php:366
3210
  msgid "Total Bookings"
3211
  msgstr "Gesamte Buchungen"
3212
 
3213
- #: app/features/mec/dashboard.php:393
3214
  msgid "This Month"
3215
  msgstr "Diesen Monat"
3216
 
3217
- #: app/features/mec/dashboard.php:394
3218
  msgid "Last Month"
3219
  msgstr "Letzten Monat"
3220
 
3221
- #: app/features/mec/dashboard.php:395
3222
  msgid "This Year"
3223
  msgstr "Diese Jahr"
3224
 
3225
- #: app/features/mec/dashboard.php:396
3226
  msgid "Last Year"
3227
  msgstr "Letztes Jahr"
3228
 
3229
- #: app/features/mec/dashboard.php:408
3230
  msgid "Bar"
3231
  msgstr "Bar"
3232
 
3233
- #: app/features/mec/dashboard.php:409
3234
  msgid "Line"
3235
  msgstr "Linie"
3236
 
3237
- #: app/features/mec/dashboard.php:411
3238
  msgid "Filter"
3239
  msgstr "Filter"
3240
 
3241
- #: app/features/mec/dashboard.php:427
3242
  #, php-format
3243
  msgid "Total Sells (%s)"
3244
  msgstr "Alle Verkäufe (%s)"
3245
 
3246
- #: app/features/mec/dashboard.php:448
3247
  msgid "Change Log"
3248
  msgstr "Änderungsprotokoll"
3249
 
@@ -4246,7 +4246,7 @@ msgstr "Deaktiviert"
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:5286
4250
  #: app/libraries/skins.php:936
4251
  msgid "Speaker"
4252
  msgstr ""
@@ -5272,7 +5272,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:5290
5276
  msgid "Weekdays"
5277
  msgstr "Wochentage"
5278
 
@@ -6565,7 +6565,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:5314
6569
  #: app/skins/single.php:862
6570
  msgid "Other Organizers"
6571
  msgstr "Andere Veranstalter"
@@ -6630,7 +6630,7 @@ msgstr ""
6630
  msgid "No bookings found!"
6631
  msgstr "Keine Buchungen gefunden"
6632
 
6633
- #: app/features/search.php:87 app/libraries/main.php:5280
6634
  msgid "label"
6635
  msgstr "label"
6636
 
@@ -6657,7 +6657,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:448
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
@@ -6764,72 +6764,72 @@ msgstr "Rabatt"
6764
  msgid "Download Invoice"
6765
  msgstr "Download Rechnung"
6766
 
6767
- #: app/libraries/factory.php:156
6768
  msgid "M.E. Calendar"
6769
  msgstr "M.E. Calender"
6770
 
6771
- #: app/libraries/factory.php:195
6772
  msgctxt "plugin link"
6773
  msgid "Upgrade to Pro Version"
6774
  msgstr ""
6775
 
6776
- #: app/libraries/factory.php:213
6777
  #, fuzzy
6778
  #| msgid "Settings"
6779
  msgctxt "plugin link"
6780
  msgid "Settings"
6781
  msgstr "Einstellungen"
6782
 
6783
- #: app/libraries/factory.php:218
6784
  msgctxt "plugin link"
6785
  msgid "Upgrade"
6786
  msgstr ""
6787
 
6788
- #: app/libraries/factory.php:361
6789
  msgid "day"
6790
  msgstr "Tag"
6791
 
6792
- #: app/libraries/factory.php:362 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:363
6799
  msgid "hour"
6800
  msgstr "Stunde"
6801
 
6802
- #: app/libraries/factory.php:364 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:365
6809
  msgid "minute"
6810
  msgstr "Minute"
6811
 
6812
- #: app/libraries/factory.php:366 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:367
6819
  msgid "second"
6820
  msgstr "Sekunde"
6821
 
6822
- #: app/libraries/factory.php:368 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:415
6829
  msgid "MEC Single Sidebar"
6830
  msgstr "MEC Single Sidebar"
6831
 
6832
- #: app/libraries/factory.php:416
6833
  msgid "Custom sidebar for single and modal page of MEC."
6834
  msgstr "Custom sidebar for single and modal page of MEC."
6835
 
@@ -6906,31 +6906,31 @@ msgstr "Stundenplan"
6906
  msgid "Tile View"
6907
  msgstr "Stundenplan"
6908
 
6909
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6910
  msgid "SU"
6911
  msgstr "SO"
6912
 
6913
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6914
  msgid "MO"
6915
  msgstr "MO"
6916
 
6917
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6918
  msgid "TU"
6919
  msgstr "DI"
6920
 
6921
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6922
  msgid "WE"
6923
  msgstr "MI"
6924
 
6925
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6926
  msgid "TH"
6927
  msgstr "DO"
6928
 
6929
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6930
  msgid "FR"
6931
  msgstr "FR"
6932
 
6933
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6934
  msgid "SA"
6935
  msgstr "SA"
6936
 
@@ -7261,7 +7261,7 @@ msgstr "Ein neues Label für diese Option einfügen"
7261
  msgid "Free"
7262
  msgstr "kostenfrei"
7263
 
7264
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7265
  #, fuzzy
7266
  #| msgid "M.E. Calendar"
7267
  msgid "M.E. Calender"
@@ -7272,100 +7272,100 @@ msgstr "M.E. Calender"
7272
  msgid "Copy of %s"
7273
  msgstr "Kopie von %s"
7274
 
7275
- #: app/libraries/main.php:4669
7276
  msgid "Booked an event."
7277
  msgstr "Eine Veranstaltung wurde gebucht."
7278
 
7279
- #: app/libraries/main.php:4710
7280
  #, php-format
7281
  msgid "%s booked %s event."
7282
  msgstr "%s gebuchtes %s Event"
7283
 
7284
- #: app/libraries/main.php:5275
7285
  msgid "Taxonomies"
7286
  msgstr "Klassifizierung "
7287
 
7288
- #: app/libraries/main.php:5277
7289
  msgid "Category Plural Label"
7290
  msgstr "Kategorien"
7291
 
7292
- #: app/libraries/main.php:5278
7293
  msgid "Category Singular Label"
7294
  msgstr "Kategorie"
7295
 
7296
- #: app/libraries/main.php:5279
7297
  msgid "Label Plural Label"
7298
  msgstr "Labels"
7299
 
7300
- #: app/libraries/main.php:5280
7301
  msgid "Label Singular Label"
7302
  msgstr "Label"
7303
 
7304
- #: app/libraries/main.php:5281
7305
  msgid "Location Plural Label"
7306
  msgstr "Veranstaltungsorte"
7307
 
7308
- #: app/libraries/main.php:5282
7309
  msgid "Location Singular Label"
7310
  msgstr "Veranstaltungsort"
7311
 
7312
- #: app/libraries/main.php:5283
7313
  msgid "Organizer Plural Label"
7314
  msgstr "Veranstalter"
7315
 
7316
- #: app/libraries/main.php:5284
7317
  msgid "Organizer Singular Label"
7318
  msgstr "Veranstalter"
7319
 
7320
- #: app/libraries/main.php:5285
7321
  #, fuzzy
7322
  #| msgid "Label Plural Label"
7323
  msgid "Speaker Plural Label"
7324
  msgstr "Labels"
7325
 
7326
- #: app/libraries/main.php:5286
7327
  #, fuzzy
7328
  #| msgid "Label Singular Label"
7329
  msgid "Speaker Singular Label"
7330
  msgstr "Label"
7331
 
7332
- #: app/libraries/main.php:5292
7333
  msgid "Sunday abbreviation"
7334
  msgstr "Sonntag Abkürzung"
7335
 
7336
- #: app/libraries/main.php:5293
7337
  msgid "Monday abbreviation"
7338
  msgstr "Montag Abkürzung"
7339
 
7340
- #: app/libraries/main.php:5294
7341
  msgid "Tuesday abbreviation"
7342
  msgstr "Dienstag Abkürzung"
7343
 
7344
- #: app/libraries/main.php:5295
7345
  msgid "Wednesday abbreviation"
7346
  msgstr "Mittwoch Abkürzung"
7347
 
7348
- #: app/libraries/main.php:5296
7349
  msgid "Thursday abbreviation"
7350
  msgstr "Donnerstag Abkürzung"
7351
 
7352
- #: app/libraries/main.php:5297
7353
  msgid "Friday abbreviation"
7354
  msgstr "Freitag Abkürzung"
7355
 
7356
- #: app/libraries/main.php:5298
7357
  msgid "Saturday abbreviation"
7358
  msgstr "Samstag Abkürzung "
7359
 
7360
- #: app/libraries/main.php:5302
7361
  msgid "Others"
7362
  msgstr "Andere"
7363
 
7364
- #: app/libraries/main.php:5304
7365
  msgid "Booking Success Message"
7366
  msgstr "Buchung erfolgreich Mitteilung"
7367
 
7368
- #: app/libraries/main.php:5304
7369
  msgid ""
7370
  "Thanks for your booking. Your tickets booked, booking verification might be "
7371
  "needed, please check your email."
@@ -7373,11 +7373,11 @@ 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:5305 app/widgets/single.php:131
7377
  msgid "Register Button"
7378
  msgstr "Register Button"
7379
 
7380
- #: app/libraries/main.php:5305 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
@@ -7394,11 +7394,11 @@ msgstr "Register Button"
7394
  msgid "REGISTER"
7395
  msgstr "ANMELDEN"
7396
 
7397
- #: app/libraries/main.php:5306
7398
  msgid "View Detail Button"
7399
  msgstr "Ansicht Detail Button"
7400
 
7401
- #: app/libraries/main.php:5306 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
@@ -7409,87 +7409,88 @@ msgstr "Ansicht Detail Button"
7409
  msgid "View Detail"
7410
  msgstr "Details "
7411
 
7412
- #: app/libraries/main.php:5307
7413
  msgid "Event Detail Button"
7414
  msgstr "Event Detail Button"
7415
 
7416
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7417
  msgid "Event Detail"
7418
  msgstr "Veranstaltungsdetails"
7419
 
7420
- #: app/libraries/main.php:5309
7421
  msgid "More Info Link"
7422
  msgstr "Link Mehr Informationen"
7423
 
7424
- #: app/libraries/main.php:5312
7425
  msgid "Ticket (Singular)"
7426
  msgstr "Ticket"
7427
 
7428
- #: app/libraries/main.php:5313
7429
  msgid "Tickets (Plural)"
7430
  msgstr "Tickets"
7431
 
7432
- #: app/libraries/main.php:5399
7433
  msgid "EventON"
7434
  msgstr "EventON"
7435
 
7436
- #: app/libraries/main.php:5400
7437
  msgid "The Events Calendar"
7438
  msgstr "The Events Calendar"
7439
 
7440
- #: app/libraries/main.php:5401
7441
  msgid "Events Schedule WP Plugin"
7442
  msgstr "Event Zeitplan WP-Plugin"
7443
 
7444
- #: app/libraries/main.php:5402
7445
  msgid "Calendarize It"
7446
  msgstr ""
7447
 
7448
- #: app/libraries/main.php:5403
7449
  #, fuzzy
7450
  #| msgid "No Search Options"
7451
  msgid "Event Espresso"
7452
  msgstr "Keine Suchoptionen"
7453
 
7454
- #: app/libraries/main.php:5404
7455
  #, fuzzy
7456
  #| msgid "Event Repeating"
7457
  msgid "Events Manager (Recurring)"
7458
  msgstr "Wiederholende Veranstaltung"
7459
 
7460
- #: app/libraries/main.php:5405
7461
  #, fuzzy
7462
  #| msgid "Modern Events Calendar"
7463
  msgid "Events Manager (Single)"
7464
  msgstr "Moderner Event Kalender "
7465
 
7466
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7467
  msgid "Confirmed"
7468
  msgstr "Bestätigt"
7469
 
7470
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7471
  msgid "Rejected"
7472
  msgstr "Abgelehnt"
7473
 
7474
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7475
  msgid "Pending"
7476
  msgstr "Ausstehend"
7477
 
7478
- #: app/libraries/main.php:5529
7479
  msgid "Waiting"
7480
  msgstr "in Bearbeitung"
7481
 
7482
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7483
  msgid "Skin controller does not exist."
7484
  msgstr "Skin contoller existiert nicht."
7485
 
7486
- #: app/libraries/main.php:5848
7487
  #, fuzzy
7488
  #| msgid "Sold out!"
7489
  msgid "Sold Out"
7490
  msgstr "Ausverkauft!"
7491
 
7492
- #: app/libraries/main.php:5856
7493
  #, fuzzy
7494
  #| msgid "Ticket"
7495
  msgid "Last Few Tickets"
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"
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"
273
  msgstr "MEC Aktivierung"
274
 
275
  #: app/features/events.php:157 app/features/ix/export.php:34
276
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
278
  #: app/skins/yearly_view/tpl.php:68
279
  msgid "Events"
293
  msgid "Add Event"
294
  msgstr "Veranstaltung hinzufügen"
295
 
296
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
297
  msgid "Add New Event"
298
  msgstr "Neue Veranstaltung hinzufügen"
299
 
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
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
 
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
  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
523
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
561
  #: app/features/events.php:3555 app/features/fes/form.php:287
562
  #: app/features/fes/form.php:291 app/features/ix.php:3510
563
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
564
+ #: app/features/mec/dashboard.php:402
565
  msgid "End Date"
566
  msgstr "Ende Datum"
567
 
690
  msgstr "Wiederholend"
691
 
692
  #: app/features/events.php:743 app/features/fes/form.php:349
693
+ #: app/features/mec/dashboard.php:404
694
  #: app/skins/default_full_calendar/tpl.php:69
695
  #: app/skins/full_calendar/tpl.php:110
696
  msgid "Daily"
715
  msgstr "Wöchentlich"
716
 
717
  #: app/features/events.php:778 app/features/fes/form.php:354
718
+ #: app/features/mec/dashboard.php:405
719
  #: app/skins/default_full_calendar/tpl.php:67
720
  #: app/skins/full_calendar/tpl.php:108
721
  msgid "Monthly"
722
  msgstr "Monatlich"
723
 
724
  #: app/features/events.php:785 app/features/fes/form.php:355
725
+ #: app/features/mec/dashboard.php:406
726
  #: app/skins/default_full_calendar/tpl.php:66
727
  #: app/skins/full_calendar/tpl.php:107
728
  msgid "Yearly"
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 ""
886
  "multiple day occurrences."
887
  msgstr ""
888
 
889
+ #: app/features/events.php:1264 app/libraries/render.php:506
890
  msgid "Day 1"
891
  msgstr ""
892
 
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 ""
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
  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
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
 
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
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
 
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
2126
  msgid "Import all of your Facebook events into MEC."
2127
  msgstr "Importiere alle Deine Facebook Events zum MEC"
2128
 
2129
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2130
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2131
  msgid "Documentation"
2132
  msgstr "Dokumentation"
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
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
 
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"
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
 
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
 
3120
  msgid "Modern Events Calendar (Lite)"
3121
  msgstr "Moderner Event Kalender "
3122
 
3123
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3124
  msgctxt "plugin rate"
3125
  msgid "Rate the plugin ★★★★★"
3126
  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
  "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
 
3167
+ #: app/features/mec/dashboard.php:131
3168
  #, fuzzy
3169
  #| msgid "Modern Events Calendar"
3170
  msgid "Getting started with Modern Events Calendar"
3171
  msgstr "Moderner Event Kalender "
3172
 
3173
+ #: app/features/mec/dashboard.php:132
3174
  msgid ""
3175
  "In this short video, you can learn how to make an event and put a calendar "
3176
  "on your website. Please watch this 2 minutes video to the end."
3177
  msgstr ""
3178
 
3179
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3180
  #, fuzzy
3181
  #| msgid "MEC Activation"
3182
  msgid "MEC Activate"
3183
  msgstr "MEC Aktivierung"
3184
 
3185
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3186
  #, fuzzy
3187
  #| msgid "MEC Activation"
3188
  msgid "Activate Addons"
3189
  msgstr "MEC Aktivierung"
3190
 
3191
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3192
  msgid "You cannot access this section."
3193
  msgstr ""
3194
 
3195
+ #: app/features/mec/dashboard.php:178
3196
  msgid ""
3197
  "In order to use all plugin features and options, please enter your purchase "
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
 
3205
+ #: app/features/mec/dashboard.php:313
3206
  msgid "Popular Gateways"
3207
  msgstr "Beliebte Zahlungsgateways"
3208
 
3209
+ #: app/features/mec/dashboard.php:367
3210
  msgid "Total Bookings"
3211
  msgstr "Gesamte Buchungen"
3212
 
3213
+ #: app/features/mec/dashboard.php:394
3214
  msgid "This Month"
3215
  msgstr "Diesen Monat"
3216
 
3217
+ #: app/features/mec/dashboard.php:395
3218
  msgid "Last Month"
3219
  msgstr "Letzten Monat"
3220
 
3221
+ #: app/features/mec/dashboard.php:396
3222
  msgid "This Year"
3223
  msgstr "Diese Jahr"
3224
 
3225
+ #: app/features/mec/dashboard.php:397
3226
  msgid "Last Year"
3227
  msgstr "Letztes Jahr"
3228
 
3229
+ #: app/features/mec/dashboard.php:409
3230
  msgid "Bar"
3231
  msgstr "Bar"
3232
 
3233
+ #: app/features/mec/dashboard.php:410
3234
  msgid "Line"
3235
  msgstr "Linie"
3236
 
3237
+ #: app/features/mec/dashboard.php:412
3238
  msgid "Filter"
3239
  msgstr "Filter"
3240
 
3241
+ #: app/features/mec/dashboard.php:428
3242
  #, php-format
3243
  msgid "Total Sells (%s)"
3244
  msgstr "Alle Verkäufe (%s)"
3245
 
3246
+ #: app/features/mec/dashboard.php:449
3247
  msgid "Change Log"
3248
  msgstr "Änderungsprotokoll"
3249
 
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 ""
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
 
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"
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
 
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
6764
  msgid "Download Invoice"
6765
  msgstr "Download Rechnung"
6766
 
6767
+ #: app/libraries/factory.php:159
6768
  msgid "M.E. Calendar"
6769
  msgstr "M.E. Calender"
6770
 
6771
+ #: app/libraries/factory.php:198
6772
  msgctxt "plugin link"
6773
  msgid "Upgrade to Pro Version"
6774
  msgstr ""
6775
 
6776
+ #: app/libraries/factory.php:216
6777
  #, fuzzy
6778
  #| msgid "Settings"
6779
  msgctxt "plugin link"
6780
  msgid "Settings"
6781
  msgstr "Einstellungen"
6782
 
6783
+ #: app/libraries/factory.php:221
6784
  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
 
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
 
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"
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
  "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
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
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"
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-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:48+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -61,7 +61,7 @@ msgid "Event Color"
61
  msgstr ""
62
 
63
  #: app/features/contextual.php:55 app/features/mec.php:414
64
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
65
  #: app/features/mec/support.php:20 app/libraries/main.php:594
66
  msgid "Settings"
67
  msgstr ""
@@ -237,7 +237,7 @@ msgid "MEC Activation"
237
  msgstr ""
238
 
239
  #: app/features/events.php:157 app/features/ix/export.php:34
240
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
241
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
242
  #: app/skins/yearly_view/tpl.php:68
243
  msgid "Events"
@@ -257,7 +257,7 @@ msgstr ""
257
  msgid "Add Event"
258
  msgstr ""
259
 
260
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
261
  msgid "Add New Event"
262
  msgstr ""
263
 
@@ -296,7 +296,7 @@ msgstr ""
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:5278
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
@@ -306,7 +306,7 @@ 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:5277
310
  msgid "Categories"
311
  msgstr ""
312
 
@@ -422,7 +422,7 @@ msgstr ""
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:5284 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 +430,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:5311
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
@@ -479,7 +479,7 @@ msgstr ""
479
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -517,7 +517,7 @@ msgstr ""
517
  #: app/features/events.php:3555 app/features/fes/form.php:287
518
  #: app/features/fes/form.php:291 app/features/ix.php:3510
519
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
520
- #: app/features/mec/dashboard.php:401
521
  msgid "End Date"
522
  msgstr ""
523
 
@@ -636,7 +636,7 @@ msgid "Repeats"
636
  msgstr ""
637
 
638
  #: app/features/events.php:743 app/features/fes/form.php:349
639
- #: app/features/mec/dashboard.php:403
640
  #: app/skins/default_full_calendar/tpl.php:69
641
  #: app/skins/full_calendar/tpl.php:110
642
  msgid "Daily"
@@ -661,14 +661,14 @@ msgid "Weekly"
661
  msgstr ""
662
 
663
  #: app/features/events.php:778 app/features/fes/form.php:354
664
- #: app/features/mec/dashboard.php:404
665
  #: app/skins/default_full_calendar/tpl.php:67
666
  #: app/skins/full_calendar/tpl.php:108
667
  msgid "Monthly"
668
  msgstr ""
669
 
670
  #: app/features/events.php:785 app/features/fes/form.php:355
671
- #: app/features/mec/dashboard.php:405
672
  #: app/skins/default_full_calendar/tpl.php:66
673
  #: app/skins/full_calendar/tpl.php:107
674
  msgid "Yearly"
@@ -781,7 +781,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:5310
785
  #: app/widgets/single.php:103
786
  msgid "Event Cost"
787
  msgstr ""
@@ -811,7 +811,7 @@ msgid ""
811
  "multiple day occurrences."
812
  msgstr ""
813
 
814
- #: app/features/events.php:1264 app/libraries/render.php:466
815
  msgid "Day 1"
816
  msgstr ""
817
 
@@ -883,7 +883,7 @@ msgstr ""
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:5285
887
  #: app/modules/speakers/details.php:18
888
  msgid "Speakers"
889
  msgstr ""
@@ -898,7 +898,7 @@ 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:5308
902
  msgid "Event Link"
903
  msgstr ""
904
 
@@ -919,7 +919,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:5309
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
@@ -984,7 +984,7 @@ msgid "12"
984
  msgstr ""
985
 
986
  #: app/features/events.php:1653 app/libraries/book.php:60
987
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
988
  msgid "Tickets"
989
  msgstr ""
990
 
@@ -1327,7 +1327,7 @@ msgstr ""
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:5282 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
@@ -1392,7 +1392,7 @@ 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:5312
1396
  msgid "Ticket"
1397
  msgstr ""
1398
 
@@ -1560,7 +1560,7 @@ 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:5279
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
@@ -1962,7 +1962,7 @@ msgstr ""
1962
  msgid "Import all of your Facebook events into MEC."
1963
  msgstr ""
1964
 
1965
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1966
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1967
  msgid "Documentation"
1968
  msgstr ""
@@ -2286,7 +2286,7 @@ msgid "Featured"
2286
  msgstr ""
2287
 
2288
  #: app/features/labels.php:118 app/features/labels.php:143
2289
- #: app/libraries/main.php:5528 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
@@ -2321,8 +2321,8 @@ msgid "Event %s"
2321
  msgstr ""
2322
 
2323
  #: app/features/locations.php:59 app/features/mec.php:404
2324
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2325
- #: app/libraries/main.php:5281
2326
  msgid "Locations"
2327
  msgstr ""
2328
 
@@ -2427,7 +2427,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:5315
2431
  msgid "Other Locations"
2432
  msgstr ""
2433
 
@@ -2478,14 +2478,14 @@ msgstr ""
2478
  msgid "Support"
2479
  msgstr ""
2480
 
2481
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2482
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2483
- #: app/libraries/main.php:5283
2484
  msgid "Organizers"
2485
  msgstr ""
2486
 
2487
  #: app/features/mec.php:413 app/features/mec.php:437
2488
- #: app/features/mec/dashboard.php:263
2489
  msgid "Shortcodes"
2490
  msgstr ""
2491
 
@@ -2818,7 +2818,7 @@ msgstr ""
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:5527
2822
  msgid "Verified"
2823
  msgstr ""
2824
 
@@ -2842,7 +2842,7 @@ msgstr ""
2842
  msgid "Modern Events Calendar (Lite)"
2843
  msgstr ""
2844
 
2845
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
2846
  msgctxt "plugin rate"
2847
  msgid "Rate the plugin ★★★★★"
2848
  msgstr ""
@@ -2851,7 +2851,7 @@ msgstr ""
2851
  msgid "Update"
2852
  msgstr ""
2853
 
2854
- #: app/features/mec/dashboard.php:92
2855
  #, php-format
2856
  msgid ""
2857
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2859,103 +2859,103 @@ msgid ""
2859
  "Spots, etc you should upgrade to the Pro version."
2860
  msgstr ""
2861
 
2862
- #: app/features/mec/dashboard.php:92
2863
  msgid "lite"
2864
  msgstr ""
2865
 
2866
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2867
  msgid "GO PREMIUM"
2868
  msgstr ""
2869
 
2870
- #: app/features/mec/dashboard.php:98
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:98
2878
  msgid "WordPress"
2879
  msgstr ""
2880
 
2881
- #: app/features/mec/dashboard.php:98
2882
  msgid "Copouns!"
2883
  msgstr ""
2884
 
2885
- #: app/features/mec/dashboard.php:127
2886
  msgid "Getting started with Modern Events Calendar"
2887
  msgstr ""
2888
 
2889
- #: app/features/mec/dashboard.php:128
2890
  msgid ""
2891
  "In this short video, you can learn how to make an event and put a calendar "
2892
  "on your website. Please watch this 2 minutes video to the end."
2893
  msgstr ""
2894
 
2895
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
2896
  msgid "MEC Activate"
2897
  msgstr ""
2898
 
2899
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
2900
  msgid "Activate Addons"
2901
  msgstr ""
2902
 
2903
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
2904
  msgid "You cannot access this section."
2905
  msgstr ""
2906
 
2907
- #: app/features/mec/dashboard.php:174
2908
  msgid ""
2909
  "In order to use all plugin features and options, please enter your purchase "
2910
  "code."
2911
  msgstr ""
2912
 
2913
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
2914
  msgid "Upcoming Events"
2915
  msgstr ""
2916
 
2917
- #: app/features/mec/dashboard.php:312
2918
  msgid "Popular Gateways"
2919
  msgstr ""
2920
 
2921
- #: app/features/mec/dashboard.php:366
2922
  msgid "Total Bookings"
2923
  msgstr ""
2924
 
2925
- #: app/features/mec/dashboard.php:393
2926
  msgid "This Month"
2927
  msgstr ""
2928
 
2929
- #: app/features/mec/dashboard.php:394
2930
  msgid "Last Month"
2931
  msgstr ""
2932
 
2933
- #: app/features/mec/dashboard.php:395
2934
  msgid "This Year"
2935
  msgstr ""
2936
 
2937
- #: app/features/mec/dashboard.php:396
2938
  msgid "Last Year"
2939
  msgstr ""
2940
 
2941
- #: app/features/mec/dashboard.php:408
2942
  msgid "Bar"
2943
  msgstr ""
2944
 
2945
- #: app/features/mec/dashboard.php:409
2946
  msgid "Line"
2947
  msgstr ""
2948
 
2949
- #: app/features/mec/dashboard.php:411
2950
  msgid "Filter"
2951
  msgstr ""
2952
 
2953
- #: app/features/mec/dashboard.php:427
2954
  #, php-format
2955
  msgid "Total Sells (%s)"
2956
  msgstr ""
2957
 
2958
- #: app/features/mec/dashboard.php:448
2959
  msgid "Change Log"
2960
  msgstr ""
2961
 
@@ -3913,7 +3913,7 @@ msgstr ""
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:5286
3917
  #: app/libraries/skins.php:936
3918
  msgid "Speaker"
3919
  msgstr ""
@@ -4834,7 +4834,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:5290
4838
  msgid "Weekdays"
4839
  msgstr ""
4840
 
@@ -5936,7 +5936,7 @@ msgstr ""
5936
  msgid "eg. https://webnus.net"
5937
  msgstr ""
5938
 
5939
- #: app/features/organizers.php:312 app/libraries/main.php:5314
5940
  #: app/skins/single.php:862
5941
  msgid "Other Organizers"
5942
  msgstr ""
@@ -5992,7 +5992,7 @@ msgstr ""
5992
  msgid "No bookings found!"
5993
  msgstr ""
5994
 
5995
- #: app/features/search.php:87 app/libraries/main.php:5280
5996
  msgid "label"
5997
  msgstr ""
5998
 
@@ -6017,7 +6017,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:448
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
@@ -6102,70 +6102,70 @@ msgstr ""
6102
  msgid "Download Invoice"
6103
  msgstr ""
6104
 
6105
- #: app/libraries/factory.php:156
6106
  msgid "M.E. Calendar"
6107
  msgstr ""
6108
 
6109
- #: app/libraries/factory.php:195
6110
  msgctxt "plugin link"
6111
  msgid "Upgrade to Pro Version"
6112
  msgstr ""
6113
 
6114
- #: app/libraries/factory.php:213
6115
  msgctxt "plugin link"
6116
  msgid "Settings"
6117
  msgstr ""
6118
 
6119
- #: app/libraries/factory.php:218
6120
  msgctxt "plugin link"
6121
  msgid "Upgrade"
6122
  msgstr ""
6123
 
6124
- #: app/libraries/factory.php:361
6125
  msgid "day"
6126
  msgstr ""
6127
 
6128
- #: app/libraries/factory.php:362 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:363
6135
  msgid "hour"
6136
  msgstr ""
6137
 
6138
- #: app/libraries/factory.php:364 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:365
6145
  msgid "minute"
6146
  msgstr ""
6147
 
6148
- #: app/libraries/factory.php:366 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:367
6155
  msgid "second"
6156
  msgstr ""
6157
 
6158
- #: app/libraries/factory.php:368 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:415
6165
  msgid "MEC Single Sidebar"
6166
  msgstr ""
6167
 
6168
- #: app/libraries/factory.php:416
6169
  msgid "Custom sidebar for single and modal page of MEC."
6170
  msgstr ""
6171
 
@@ -6236,31 +6236,31 @@ msgstr ""
6236
  msgid "Tile View"
6237
  msgstr ""
6238
 
6239
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6240
  msgid "SU"
6241
  msgstr ""
6242
 
6243
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6244
  msgid "MO"
6245
  msgstr ""
6246
 
6247
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6248
  msgid "TU"
6249
  msgstr ""
6250
 
6251
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6252
  msgid "WE"
6253
  msgstr ""
6254
 
6255
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6256
  msgid "TH"
6257
  msgstr ""
6258
 
6259
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6260
  msgid "FR"
6261
  msgstr ""
6262
 
6263
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6264
  msgid "SA"
6265
  msgstr ""
6266
 
@@ -6559,7 +6559,7 @@ msgstr ""
6559
  msgid "Free"
6560
  msgstr ""
6561
 
6562
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
6563
  msgid "M.E. Calender"
6564
  msgstr ""
6565
 
@@ -6568,106 +6568,106 @@ msgstr ""
6568
  msgid "Copy of %s"
6569
  msgstr ""
6570
 
6571
- #: app/libraries/main.php:4669
6572
  msgid "Booked an event."
6573
  msgstr ""
6574
 
6575
- #: app/libraries/main.php:4710
6576
  #, php-format
6577
  msgid "%s booked %s event."
6578
  msgstr ""
6579
 
6580
- #: app/libraries/main.php:5275
6581
  msgid "Taxonomies"
6582
  msgstr ""
6583
 
6584
- #: app/libraries/main.php:5277
6585
  msgid "Category Plural Label"
6586
  msgstr ""
6587
 
6588
- #: app/libraries/main.php:5278
6589
  msgid "Category Singular Label"
6590
  msgstr ""
6591
 
6592
- #: app/libraries/main.php:5279
6593
  msgid "Label Plural Label"
6594
  msgstr ""
6595
 
6596
- #: app/libraries/main.php:5280
6597
  msgid "Label Singular Label"
6598
  msgstr ""
6599
 
6600
- #: app/libraries/main.php:5281
6601
  msgid "Location Plural Label"
6602
  msgstr ""
6603
 
6604
- #: app/libraries/main.php:5282
6605
  msgid "Location Singular Label"
6606
  msgstr ""
6607
 
6608
- #: app/libraries/main.php:5283
6609
  msgid "Organizer Plural Label"
6610
  msgstr ""
6611
 
6612
- #: app/libraries/main.php:5284
6613
  msgid "Organizer Singular Label"
6614
  msgstr ""
6615
 
6616
- #: app/libraries/main.php:5285
6617
  msgid "Speaker Plural Label"
6618
  msgstr ""
6619
 
6620
- #: app/libraries/main.php:5286
6621
  msgid "Speaker Singular Label"
6622
  msgstr ""
6623
 
6624
- #: app/libraries/main.php:5292
6625
  msgid "Sunday abbreviation"
6626
  msgstr ""
6627
 
6628
- #: app/libraries/main.php:5293
6629
  msgid "Monday abbreviation"
6630
  msgstr ""
6631
 
6632
- #: app/libraries/main.php:5294
6633
  msgid "Tuesday abbreviation"
6634
  msgstr ""
6635
 
6636
- #: app/libraries/main.php:5295
6637
  msgid "Wednesday abbreviation"
6638
  msgstr ""
6639
 
6640
- #: app/libraries/main.php:5296
6641
  msgid "Thursday abbreviation"
6642
  msgstr ""
6643
 
6644
- #: app/libraries/main.php:5297
6645
  msgid "Friday abbreviation"
6646
  msgstr ""
6647
 
6648
- #: app/libraries/main.php:5298
6649
  msgid "Saturday abbreviation"
6650
  msgstr ""
6651
 
6652
- #: app/libraries/main.php:5302
6653
  msgid "Others"
6654
  msgstr ""
6655
 
6656
- #: app/libraries/main.php:5304
6657
  msgid "Booking Success Message"
6658
  msgstr ""
6659
 
6660
- #: app/libraries/main.php:5304
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:5305 app/widgets/single.php:131
6667
  msgid "Register Button"
6668
  msgstr ""
6669
 
6670
- #: app/libraries/main.php:5305 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
@@ -6684,11 +6684,11 @@ msgstr ""
6684
  msgid "REGISTER"
6685
  msgstr ""
6686
 
6687
- #: app/libraries/main.php:5306
6688
  msgid "View Detail Button"
6689
  msgstr ""
6690
 
6691
- #: app/libraries/main.php:5306 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
@@ -6699,79 +6699,80 @@ msgstr ""
6699
  msgid "View Detail"
6700
  msgstr ""
6701
 
6702
- #: app/libraries/main.php:5307
6703
  msgid "Event Detail Button"
6704
  msgstr ""
6705
 
6706
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
6707
  msgid "Event Detail"
6708
  msgstr ""
6709
 
6710
- #: app/libraries/main.php:5309
6711
  msgid "More Info Link"
6712
  msgstr ""
6713
 
6714
- #: app/libraries/main.php:5312
6715
  msgid "Ticket (Singular)"
6716
  msgstr ""
6717
 
6718
- #: app/libraries/main.php:5313
6719
  msgid "Tickets (Plural)"
6720
  msgstr ""
6721
 
6722
- #: app/libraries/main.php:5399
6723
  msgid "EventON"
6724
  msgstr ""
6725
 
6726
- #: app/libraries/main.php:5400
6727
  msgid "The Events Calendar"
6728
  msgstr ""
6729
 
6730
- #: app/libraries/main.php:5401
6731
  msgid "Events Schedule WP Plugin"
6732
  msgstr ""
6733
 
6734
- #: app/libraries/main.php:5402
6735
  msgid "Calendarize It"
6736
  msgstr ""
6737
 
6738
- #: app/libraries/main.php:5403
6739
  msgid "Event Espresso"
6740
  msgstr ""
6741
 
6742
- #: app/libraries/main.php:5404
6743
  msgid "Events Manager (Recurring)"
6744
  msgstr ""
6745
 
6746
- #: app/libraries/main.php:5405
6747
  msgid "Events Manager (Single)"
6748
  msgstr ""
6749
 
6750
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
6751
  msgid "Confirmed"
6752
  msgstr ""
6753
 
6754
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
6755
  msgid "Rejected"
6756
  msgstr ""
6757
 
6758
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
6759
  msgid "Pending"
6760
  msgstr ""
6761
 
6762
- #: app/libraries/main.php:5529
6763
  msgid "Waiting"
6764
  msgstr ""
6765
 
6766
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
6767
  msgid "Skin controller does not exist."
6768
  msgstr ""
6769
 
6770
- #: app/libraries/main.php:5848
6771
  msgid "Sold Out"
6772
  msgstr ""
6773
 
6774
- #: app/libraries/main.php:5856
6775
  msgid "Last Few Tickets"
6776
  msgstr ""
6777
 
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"
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 ""
237
  msgstr ""
238
 
239
  #: app/features/events.php:157 app/features/ix/export.php:34
240
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
241
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
242
  #: app/skins/yearly_view/tpl.php:68
243
  msgid "Events"
257
  msgid "Add Event"
258
  msgstr ""
259
 
260
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
261
  msgid "Add New Event"
262
  msgstr ""
263
 
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
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
 
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
  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
479
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
517
  #: app/features/events.php:3555 app/features/fes/form.php:287
518
  #: app/features/fes/form.php:291 app/features/ix.php:3510
519
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
520
+ #: app/features/mec/dashboard.php:402
521
  msgid "End Date"
522
  msgstr ""
523
 
636
  msgstr ""
637
 
638
  #: app/features/events.php:743 app/features/fes/form.php:349
639
+ #: app/features/mec/dashboard.php:404
640
  #: app/skins/default_full_calendar/tpl.php:69
641
  #: app/skins/full_calendar/tpl.php:110
642
  msgid "Daily"
661
  msgstr ""
662
 
663
  #: app/features/events.php:778 app/features/fes/form.php:354
664
+ #: app/features/mec/dashboard.php:405
665
  #: app/skins/default_full_calendar/tpl.php:67
666
  #: app/skins/full_calendar/tpl.php:108
667
  msgid "Monthly"
668
  msgstr ""
669
 
670
  #: app/features/events.php:785 app/features/fes/form.php:355
671
+ #: app/features/mec/dashboard.php:406
672
  #: app/skins/default_full_calendar/tpl.php:66
673
  #: app/skins/full_calendar/tpl.php:107
674
  msgid "Yearly"
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 ""
811
  "multiple day occurrences."
812
  msgstr ""
813
 
814
+ #: app/features/events.php:1264 app/libraries/render.php:506
815
  msgid "Day 1"
816
  msgstr ""
817
 
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 ""
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
  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
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
 
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
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
 
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
1962
  msgid "Import all of your Facebook events into MEC."
1963
  msgstr ""
1964
 
1965
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
1966
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1967
  msgid "Documentation"
1968
  msgstr ""
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
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
 
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
 
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
 
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
 
2842
  msgid "Modern Events Calendar (Lite)"
2843
  msgstr ""
2844
 
2845
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
2846
  msgctxt "plugin rate"
2847
  msgid "Rate the plugin ★★★★★"
2848
  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
  "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
 
2885
+ #: app/features/mec/dashboard.php:131
2886
  msgid "Getting started with Modern Events Calendar"
2887
  msgstr ""
2888
 
2889
+ #: app/features/mec/dashboard.php:132
2890
  msgid ""
2891
  "In this short video, you can learn how to make an event and put a calendar "
2892
  "on your website. Please watch this 2 minutes video to the end."
2893
  msgstr ""
2894
 
2895
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
2896
  msgid "MEC Activate"
2897
  msgstr ""
2898
 
2899
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
2900
  msgid "Activate Addons"
2901
  msgstr ""
2902
 
2903
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
2904
  msgid "You cannot access this section."
2905
  msgstr ""
2906
 
2907
+ #: app/features/mec/dashboard.php:178
2908
  msgid ""
2909
  "In order to use all plugin features and options, please enter your purchase "
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
 
2917
+ #: app/features/mec/dashboard.php:313
2918
  msgid "Popular Gateways"
2919
  msgstr ""
2920
 
2921
+ #: app/features/mec/dashboard.php:367
2922
  msgid "Total Bookings"
2923
  msgstr ""
2924
 
2925
+ #: app/features/mec/dashboard.php:394
2926
  msgid "This Month"
2927
  msgstr ""
2928
 
2929
+ #: app/features/mec/dashboard.php:395
2930
  msgid "Last Month"
2931
  msgstr ""
2932
 
2933
+ #: app/features/mec/dashboard.php:396
2934
  msgid "This Year"
2935
  msgstr ""
2936
 
2937
+ #: app/features/mec/dashboard.php:397
2938
  msgid "Last Year"
2939
  msgstr ""
2940
 
2941
+ #: app/features/mec/dashboard.php:409
2942
  msgid "Bar"
2943
  msgstr ""
2944
 
2945
+ #: app/features/mec/dashboard.php:410
2946
  msgid "Line"
2947
  msgstr ""
2948
 
2949
+ #: app/features/mec/dashboard.php:412
2950
  msgid "Filter"
2951
  msgstr ""
2952
 
2953
+ #: app/features/mec/dashboard.php:428
2954
  #, php-format
2955
  msgid "Total Sells (%s)"
2956
  msgstr ""
2957
 
2958
+ #: app/features/mec/dashboard.php:449
2959
  msgid "Change Log"
2960
  msgstr ""
2961
 
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 ""
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
 
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 ""
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
 
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
6102
  msgid "Download Invoice"
6103
  msgstr ""
6104
 
6105
+ #: app/libraries/factory.php:159
6106
  msgid "M.E. Calendar"
6107
  msgstr ""
6108
 
6109
+ #: app/libraries/factory.php:198
6110
  msgctxt "plugin link"
6111
  msgid "Upgrade to Pro Version"
6112
  msgstr ""
6113
 
6114
+ #: app/libraries/factory.php:216
6115
  msgctxt "plugin link"
6116
  msgid "Settings"
6117
  msgstr ""
6118
 
6119
+ #: app/libraries/factory.php:221
6120
  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
 
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
 
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
 
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
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
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
 
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-22 10:47+0330\n"
8
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -65,7 +65,7 @@ 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:135 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"
@@ -266,7 +266,7 @@ msgid "MEC Activation"
266
  msgstr "Activación MEC"
267
 
268
  #: app/features/events.php:157 app/features/ix/export.php:34
269
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
270
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
271
  #: app/skins/yearly_view/tpl.php:68
272
  msgid "Events"
@@ -286,7 +286,7 @@ msgstr "Evento"
286
  msgid "Add Event"
287
  msgstr "Nuevo evento"
288
 
289
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
290
  msgid "Add New Event"
291
  msgstr "Añadir nuevo evento"
292
 
@@ -325,7 +325,7 @@ msgstr "No hay eventos en la papelera"
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:5278
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
@@ -335,7 +335,7 @@ 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:5277
339
  msgid "Categories"
340
  msgstr "Categorías"
341
 
@@ -459,7 +459,7 @@ msgstr "Enlace"
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:5284 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 +467,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:5311
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
@@ -516,7 +516,7 @@ msgstr "Día y hora"
516
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -554,7 +554,7 @@ msgstr "PM"
554
  #: app/features/events.php:3555 app/features/fes/form.php:287
555
  #: app/features/fes/form.php:291 app/features/ix.php:3510
556
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
557
- #: app/features/mec/dashboard.php:401
558
  msgid "End Date"
559
  msgstr "Día final"
560
 
@@ -683,7 +683,7 @@ msgid "Repeats"
683
  msgstr "Repeticiones"
684
 
685
  #: app/features/events.php:743 app/features/fes/form.php:349
686
- #: app/features/mec/dashboard.php:403
687
  #: app/skins/default_full_calendar/tpl.php:69
688
  #: app/skins/full_calendar/tpl.php:110
689
  msgid "Daily"
@@ -708,14 +708,14 @@ msgid "Weekly"
708
  msgstr "Semanal"
709
 
710
  #: app/features/events.php:778 app/features/fes/form.php:354
711
- #: app/features/mec/dashboard.php:404
712
  #: app/skins/default_full_calendar/tpl.php:67
713
  #: app/skins/full_calendar/tpl.php:108
714
  msgid "Monthly"
715
  msgstr "Mensual"
716
 
717
  #: app/features/events.php:785 app/features/fes/form.php:355
718
- #: app/features/mec/dashboard.php:405
719
  #: app/skins/default_full_calendar/tpl.php:66
720
  #: app/skins/full_calendar/tpl.php:107
721
  msgid "Yearly"
@@ -844,7 +844,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:5310
848
  #: app/widgets/single.php:103
849
  msgid "Event Cost"
850
  msgstr "Coste del evento"
@@ -876,7 +876,7 @@ msgid ""
876
  "multiple day occurrences."
877
  msgstr ""
878
 
879
- #: app/features/events.php:1264 app/libraries/render.php:466
880
  msgid "Day 1"
881
  msgstr ""
882
 
@@ -948,7 +948,7 @@ msgstr "Descripción"
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:5285
952
  #: app/modules/speakers/details.php:18
953
  msgid "Speakers"
954
  msgstr ""
@@ -965,7 +965,7 @@ 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:5308
969
  msgid "Event Link"
970
  msgstr "Enlace del evento"
971
 
@@ -992,7 +992,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:5309
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
@@ -1061,7 +1061,7 @@ msgid "12"
1061
  msgstr ""
1062
 
1063
  #: app/features/events.php:1653 app/libraries/book.php:60
1064
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1065
  msgid "Tickets"
1066
  msgstr "Tickets"
1067
 
@@ -1422,7 +1422,7 @@ msgstr "Límite de asistentes"
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:5282 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
@@ -1487,7 +1487,7 @@ 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:5312
1491
  msgid "Ticket"
1492
  msgstr "Ticket"
1493
 
@@ -1669,7 +1669,7 @@ 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:5279
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
@@ -2093,7 +2093,7 @@ msgstr "Importar desde Facebook Calendar"
2093
  msgid "Import all of your Facebook events into MEC."
2094
  msgstr "Importar todos tus eventos de Facebook a MEC."
2095
 
2096
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2097
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2098
  msgid "Documentation"
2099
  msgstr "Documentación"
@@ -2443,7 +2443,7 @@ msgid "Featured"
2443
  msgstr ""
2444
 
2445
  #: app/features/labels.php:118 app/features/labels.php:143
2446
- #: app/libraries/main.php:5528 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
@@ -2478,8 +2478,8 @@ 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:270 app/features/mec/meta_boxes/filter.php:96
2482
- #: app/libraries/main.php:5281
2483
  msgid "Locations"
2484
  msgstr "Lugar"
2485
 
@@ -2586,7 +2586,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:5315
2590
  #, fuzzy
2591
  #| msgid "Locations"
2592
  msgid "Other Locations"
@@ -2646,14 +2646,14 @@ msgstr "Soporte"
2646
  msgid "Support"
2647
  msgstr "Soporte"
2648
 
2649
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2650
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2651
- #: app/libraries/main.php:5283
2652
  msgid "Organizers"
2653
  msgstr "Organizadores"
2654
 
2655
  #: app/features/mec.php:413 app/features/mec.php:437
2656
- #: app/features/mec/dashboard.php:263
2657
  msgid "Shortcodes"
2658
  msgstr "Shortcodes"
2659
 
@@ -3012,7 +3012,7 @@ msgstr "¡Ajustes guardados!"
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:5527
3016
  msgid "Verified"
3017
  msgstr "Verificado"
3018
 
@@ -3036,7 +3036,7 @@ msgstr "%s - El sistema gestor de eventos más potente y fácil de usar"
3036
  msgid "Modern Events Calendar (Lite)"
3037
  msgstr "Modern Events Calendar (Lite)"
3038
 
3039
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3040
  msgctxt "plugin rate"
3041
  msgid "Rate the plugin ★★★★★"
3042
  msgstr ""
@@ -3047,7 +3047,7 @@ msgstr ""
3047
  msgid "Update"
3048
  msgstr "Actualizar %s"
3049
 
3050
- #: app/features/mec/dashboard.php:92
3051
  #, fuzzy, php-format
3052
  #| msgid ""
3053
  #| "You're using %s version of Modern Events Calendar. To use advanced "
@@ -3062,111 +3062,111 @@ 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:92
3066
  msgid "lite"
3067
  msgstr "lite"
3068
 
3069
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3070
  msgid "GO PREMIUM"
3071
  msgstr "IR A PREMIUM"
3072
 
3073
- #: app/features/mec/dashboard.php:98
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:98
3081
  #, fuzzy
3082
  #| msgid "Address"
3083
  msgid "WordPress"
3084
  msgstr "Dirección"
3085
 
3086
- #: app/features/mec/dashboard.php:98
3087
  msgid "Copouns!"
3088
  msgstr ""
3089
 
3090
- #: app/features/mec/dashboard.php:127
3091
  #, fuzzy
3092
  #| msgid "Modern Events Calendar"
3093
  msgid "Getting started with Modern Events Calendar"
3094
  msgstr "Modern Events Calendar"
3095
 
3096
- #: app/features/mec/dashboard.php:128
3097
  msgid ""
3098
  "In this short video, you can learn how to make an event and put a calendar "
3099
  "on your website. Please watch this 2 minutes video to the end."
3100
  msgstr ""
3101
 
3102
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3103
  #, fuzzy
3104
  #| msgid "MEC Activation"
3105
  msgid "MEC Activate"
3106
  msgstr "Activación MEC"
3107
 
3108
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3109
  #, fuzzy
3110
  #| msgid "MEC Activation"
3111
  msgid "Activate Addons"
3112
  msgstr "Activación MEC"
3113
 
3114
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3115
  msgid "You cannot access this section."
3116
  msgstr ""
3117
 
3118
- #: app/features/mec/dashboard.php:174
3119
  msgid ""
3120
  "In order to use all plugin features and options, please enter your purchase "
3121
  "code."
3122
  msgstr ""
3123
 
3124
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3125
  msgid "Upcoming Events"
3126
  msgstr "Próximos Eventos"
3127
 
3128
- #: app/features/mec/dashboard.php:312
3129
  msgid "Popular Gateways"
3130
  msgstr "Pasarelas de pago populares"
3131
 
3132
- #: app/features/mec/dashboard.php:366
3133
  msgid "Total Bookings"
3134
  msgstr "Total reservas"
3135
 
3136
- #: app/features/mec/dashboard.php:393
3137
  msgid "This Month"
3138
  msgstr "Este mes"
3139
 
3140
- #: app/features/mec/dashboard.php:394
3141
  msgid "Last Month"
3142
  msgstr "Último mes"
3143
 
3144
- #: app/features/mec/dashboard.php:395
3145
  msgid "This Year"
3146
  msgstr "Este año"
3147
 
3148
- #: app/features/mec/dashboard.php:396
3149
  msgid "Last Year"
3150
  msgstr "Año pasado"
3151
 
3152
- #: app/features/mec/dashboard.php:408
3153
  msgid "Bar"
3154
  msgstr "Barra"
3155
 
3156
- #: app/features/mec/dashboard.php:409
3157
  msgid "Line"
3158
  msgstr "Línea"
3159
 
3160
- #: app/features/mec/dashboard.php:411
3161
  msgid "Filter"
3162
  msgstr "Filtrar"
3163
 
3164
- #: app/features/mec/dashboard.php:427
3165
  #, php-format
3166
  msgid "Total Sells (%s)"
3167
  msgstr "Ventas Totales (%s)"
3168
 
3169
- #: app/features/mec/dashboard.php:448
3170
  msgid "Change Log"
3171
  msgstr "Historial de cambios"
3172
 
@@ -4159,7 +4159,7 @@ msgstr "Desactivado"
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:5286
4163
  #: app/libraries/skins.php:936
4164
  msgid "Speaker"
4165
  msgstr ""
@@ -5161,7 +5161,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:5290
5165
  msgid "Weekdays"
5166
  msgstr "Días de la semana"
5167
 
@@ -6429,7 +6429,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:5314
6433
  #: app/skins/single.php:862
6434
  msgid "Other Organizers"
6435
  msgstr "En común"
@@ -6489,7 +6489,7 @@ msgstr ""
6489
  msgid "No bookings found!"
6490
  msgstr ""
6491
 
6492
- #: app/features/search.php:87 app/libraries/main.php:5280
6493
  msgid "label"
6494
  msgstr "etiqueta"
6495
 
@@ -6516,7 +6516,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:448
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
@@ -6603,70 +6603,70 @@ msgstr "Descuento"
6603
  msgid "Download Invoice"
6604
  msgstr "Descargar factura"
6605
 
6606
- #: app/libraries/factory.php:156
6607
  msgid "M.E. Calendar"
6608
  msgstr "M.E. Calendario"
6609
 
6610
- #: app/libraries/factory.php:195
6611
  msgctxt "plugin link"
6612
  msgid "Upgrade to Pro Version"
6613
  msgstr "Actualizar a Versión a Pro"
6614
 
6615
- #: app/libraries/factory.php:213
6616
  msgctxt "plugin link"
6617
  msgid "Settings"
6618
  msgstr "Ajustes"
6619
 
6620
- #: app/libraries/factory.php:218
6621
  msgctxt "plugin link"
6622
  msgid "Upgrade"
6623
  msgstr "Actualizar"
6624
 
6625
- #: app/libraries/factory.php:361
6626
  msgid "day"
6627
  msgstr "día "
6628
 
6629
- #: app/libraries/factory.php:362 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:363
6636
  msgid "hour"
6637
  msgstr "hora"
6638
 
6639
- #: app/libraries/factory.php:364 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:365
6646
  msgid "minute"
6647
  msgstr "minuto"
6648
 
6649
- #: app/libraries/factory.php:366 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:367
6656
  msgid "second"
6657
  msgstr "segundo"
6658
 
6659
- #: app/libraries/factory.php:368 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:415
6666
  msgid "MEC Single Sidebar"
6667
  msgstr "barra lateral MEC"
6668
 
6669
- #: app/libraries/factory.php:416
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
 
@@ -6741,31 +6741,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:5292
6745
  msgid "SU"
6746
  msgstr "DO"
6747
 
6748
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6749
  msgid "MO"
6750
  msgstr "LU"
6751
 
6752
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6753
  msgid "TU"
6754
  msgstr "MA"
6755
 
6756
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6757
  msgid "WE"
6758
  msgstr "MI"
6759
 
6760
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6761
  msgid "TH"
6762
  msgstr "JU"
6763
 
6764
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6765
  msgid "FR"
6766
  msgstr "VI"
6767
 
6768
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6769
  msgid "SA"
6770
  msgstr "SA"
6771
 
@@ -7098,7 +7098,7 @@ msgstr "Introduce una etiqueta para esta opción"
7098
  msgid "Free"
7099
  msgstr "Gratis"
7100
 
7101
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7102
  #, fuzzy
7103
  #| msgid "M.E. Calendar"
7104
  msgid "M.E. Calender"
@@ -7109,96 +7109,96 @@ msgstr "M.E. Calendario"
7109
  msgid "Copy of %s"
7110
  msgstr "Copia de %s"
7111
 
7112
- #: app/libraries/main.php:4669
7113
  msgid "Booked an event."
7114
  msgstr "Has reservado para un evento."
7115
 
7116
- #: app/libraries/main.php:4710
7117
  #, php-format
7118
  msgid "%s booked %s event."
7119
  msgstr "%s reservado %s evento."
7120
 
7121
- #: app/libraries/main.php:5275
7122
  msgid "Taxonomies"
7123
  msgstr "Taxonomías"
7124
 
7125
- #: app/libraries/main.php:5277
7126
  msgid "Category Plural Label"
7127
  msgstr "Categoría Etiqueta plural"
7128
 
7129
- #: app/libraries/main.php:5278
7130
  msgid "Category Singular Label"
7131
  msgstr "Categoría Etiqueta Singular"
7132
 
7133
- #: app/libraries/main.php:5279
7134
  msgid "Label Plural Label"
7135
  msgstr "Etiqueta plural"
7136
 
7137
- #: app/libraries/main.php:5280
7138
  msgid "Label Singular Label"
7139
  msgstr "Etiqueta singular de la etiqueta"
7140
 
7141
- #: app/libraries/main.php:5281
7142
  msgid "Location Plural Label"
7143
  msgstr "Ubicación Etiqueta plural"
7144
 
7145
- #: app/libraries/main.php:5282
7146
  msgid "Location Singular Label"
7147
  msgstr "Etiqueta de ubicación en singular"
7148
 
7149
- #: app/libraries/main.php:5283
7150
  msgid "Organizer Plural Label"
7151
  msgstr "Etiqueta del organizador en plural"
7152
 
7153
- #: app/libraries/main.php:5284
7154
  msgid "Organizer Singular Label"
7155
  msgstr "Etiqueta Singular del Organizador"
7156
 
7157
- #: app/libraries/main.php:5285
7158
  msgid "Speaker Plural Label"
7159
  msgstr ""
7160
 
7161
- #: app/libraries/main.php:5286
7162
  msgid "Speaker Singular Label"
7163
  msgstr ""
7164
 
7165
- #: app/libraries/main.php:5292
7166
  msgid "Sunday abbreviation"
7167
  msgstr "Abreviatura de Domingo"
7168
 
7169
- #: app/libraries/main.php:5293
7170
  msgid "Monday abbreviation"
7171
  msgstr "Abreviatura de Lunes"
7172
 
7173
- #: app/libraries/main.php:5294
7174
  msgid "Tuesday abbreviation"
7175
  msgstr "Abreviatura de Martes"
7176
 
7177
- #: app/libraries/main.php:5295
7178
  msgid "Wednesday abbreviation"
7179
  msgstr "Abreviatura de Miércoles "
7180
 
7181
- #: app/libraries/main.php:5296
7182
  msgid "Thursday abbreviation"
7183
  msgstr "Abreviatura de Jueves"
7184
 
7185
- #: app/libraries/main.php:5297
7186
  msgid "Friday abbreviation"
7187
  msgstr "Abreviatura de Viernes"
7188
 
7189
- #: app/libraries/main.php:5298
7190
  msgid "Saturday abbreviation"
7191
  msgstr "Abreviatura de Sábado "
7192
 
7193
- #: app/libraries/main.php:5302
7194
  msgid "Others"
7195
  msgstr "Otros"
7196
 
7197
- #: app/libraries/main.php:5304
7198
  msgid "Booking Success Message"
7199
  msgstr "Mensaje de reserva correcta"
7200
 
7201
- #: app/libraries/main.php:5304
7202
  msgid ""
7203
  "Thanks for your booking. Your tickets booked, booking verification might be "
7204
  "needed, please check your email."
@@ -7206,11 +7206,11 @@ 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:5305 app/widgets/single.php:131
7210
  msgid "Register Button"
7211
  msgstr "Botón de registro"
7212
 
7213
- #: app/libraries/main.php:5305 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
@@ -7227,11 +7227,11 @@ msgstr "Botón de registro"
7227
  msgid "REGISTER"
7228
  msgstr "REGISTRO"
7229
 
7230
- #: app/libraries/main.php:5306
7231
  msgid "View Detail Button"
7232
  msgstr "Ver detalle del botón"
7233
 
7234
- #: app/libraries/main.php:5306 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
@@ -7242,87 +7242,88 @@ msgstr "Ver detalle del botón"
7242
  msgid "View Detail"
7243
  msgstr "Ver detalle"
7244
 
7245
- #: app/libraries/main.php:5307
7246
  msgid "Event Detail Button"
7247
  msgstr "Botón de detalle del evento"
7248
 
7249
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7250
  msgid "Event Detail"
7251
  msgstr "Detalle del evento"
7252
 
7253
- #: app/libraries/main.php:5309
7254
  msgid "More Info Link"
7255
  msgstr "Enlace a Más Información"
7256
 
7257
- #: app/libraries/main.php:5312
7258
  msgid "Ticket (Singular)"
7259
  msgstr "Entrada (Singular)"
7260
 
7261
- #: app/libraries/main.php:5313
7262
  msgid "Tickets (Plural)"
7263
  msgstr "Entradas (Plural)"
7264
 
7265
- #: app/libraries/main.php:5399
7266
  msgid "EventON"
7267
  msgstr "EventON"
7268
 
7269
- #: app/libraries/main.php:5400
7270
  msgid "The Events Calendar"
7271
  msgstr "The Events Calendar"
7272
 
7273
- #: app/libraries/main.php:5401
7274
  msgid "Events Schedule WP Plugin"
7275
  msgstr "Events Schedule WP Plugin"
7276
 
7277
- #: app/libraries/main.php:5402
7278
  msgid "Calendarize It"
7279
  msgstr "Ponlo al calendario"
7280
 
7281
- #: app/libraries/main.php:5403
7282
  #, fuzzy
7283
  #| msgid "Event %s"
7284
  msgid "Event Espresso"
7285
  msgstr "Evento %s"
7286
 
7287
- #: app/libraries/main.php:5404
7288
  #, fuzzy
7289
  #| msgid "Event Repeating"
7290
  msgid "Events Manager (Recurring)"
7291
  msgstr "Repetir el evento"
7292
 
7293
- #: app/libraries/main.php:5405
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:5479 app/libraries/main.php:5499
7300
  msgid "Confirmed"
7301
  msgstr ""
7302
 
7303
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7304
  msgid "Rejected"
7305
  msgstr ""
7306
 
7307
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7308
  msgid "Pending"
7309
  msgstr ""
7310
 
7311
- #: app/libraries/main.php:5529
7312
  msgid "Waiting"
7313
  msgstr ""
7314
 
7315
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7316
  msgid "Skin controller does not exist."
7317
  msgstr "No existe skin controller."
7318
 
7319
- #: app/libraries/main.php:5848
7320
  #, fuzzy
7321
  #| msgid "Sold out!"
7322
  msgid "Sold Out"
7323
  msgstr "¡Agotado!"
7324
 
7325
- #: app/libraries/main.php:5856
7326
  #, fuzzy
7327
  #| msgid "Ticket"
7328
  msgid "Last Few Tickets"
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"
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"
266
  msgstr "Activación MEC"
267
 
268
  #: app/features/events.php:157 app/features/ix/export.php:34
269
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
270
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
271
  #: app/skins/yearly_view/tpl.php:68
272
  msgid "Events"
286
  msgid "Add Event"
287
  msgstr "Nuevo evento"
288
 
289
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
290
  msgid "Add New Event"
291
  msgstr "Añadir nuevo evento"
292
 
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
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
 
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
  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
516
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
554
  #: app/features/events.php:3555 app/features/fes/form.php:287
555
  #: app/features/fes/form.php:291 app/features/ix.php:3510
556
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
557
+ #: app/features/mec/dashboard.php:402
558
  msgid "End Date"
559
  msgstr "Día final"
560
 
683
  msgstr "Repeticiones"
684
 
685
  #: app/features/events.php:743 app/features/fes/form.php:349
686
+ #: app/features/mec/dashboard.php:404
687
  #: app/skins/default_full_calendar/tpl.php:69
688
  #: app/skins/full_calendar/tpl.php:110
689
  msgid "Daily"
708
  msgstr "Semanal"
709
 
710
  #: app/features/events.php:778 app/features/fes/form.php:354
711
+ #: app/features/mec/dashboard.php:405
712
  #: app/skins/default_full_calendar/tpl.php:67
713
  #: app/skins/full_calendar/tpl.php:108
714
  msgid "Monthly"
715
  msgstr "Mensual"
716
 
717
  #: app/features/events.php:785 app/features/fes/form.php:355
718
+ #: app/features/mec/dashboard.php:406
719
  #: app/skins/default_full_calendar/tpl.php:66
720
  #: app/skins/full_calendar/tpl.php:107
721
  msgid "Yearly"
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"
876
  "multiple day occurrences."
877
  msgstr ""
878
 
879
+ #: app/features/events.php:1264 app/libraries/render.php:506
880
  msgid "Day 1"
881
  msgstr ""
882
 
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 ""
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
  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
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
 
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
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
 
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
2093
  msgid "Import all of your Facebook events into MEC."
2094
  msgstr "Importar todos tus eventos de Facebook a MEC."
2095
 
2096
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2097
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2098
  msgid "Documentation"
2099
  msgstr "Documentación"
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
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
 
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"
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
 
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
 
3036
  msgid "Modern Events Calendar (Lite)"
3037
  msgstr "Modern Events Calendar (Lite)"
3038
 
3039
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3040
  msgctxt "plugin rate"
3041
  msgid "Rate the plugin ★★★★★"
3042
  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
  "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
 
3090
+ #: app/features/mec/dashboard.php:131
3091
  #, fuzzy
3092
  #| msgid "Modern Events Calendar"
3093
  msgid "Getting started with Modern Events Calendar"
3094
  msgstr "Modern Events Calendar"
3095
 
3096
+ #: app/features/mec/dashboard.php:132
3097
  msgid ""
3098
  "In this short video, you can learn how to make an event and put a calendar "
3099
  "on your website. Please watch this 2 minutes video to the end."
3100
  msgstr ""
3101
 
3102
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3103
  #, fuzzy
3104
  #| msgid "MEC Activation"
3105
  msgid "MEC Activate"
3106
  msgstr "Activación MEC"
3107
 
3108
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3109
  #, fuzzy
3110
  #| msgid "MEC Activation"
3111
  msgid "Activate Addons"
3112
  msgstr "Activación MEC"
3113
 
3114
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3115
  msgid "You cannot access this section."
3116
  msgstr ""
3117
 
3118
+ #: app/features/mec/dashboard.php:178
3119
  msgid ""
3120
  "In order to use all plugin features and options, please enter your purchase "
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
 
3128
+ #: app/features/mec/dashboard.php:313
3129
  msgid "Popular Gateways"
3130
  msgstr "Pasarelas de pago populares"
3131
 
3132
+ #: app/features/mec/dashboard.php:367
3133
  msgid "Total Bookings"
3134
  msgstr "Total reservas"
3135
 
3136
+ #: app/features/mec/dashboard.php:394
3137
  msgid "This Month"
3138
  msgstr "Este mes"
3139
 
3140
+ #: app/features/mec/dashboard.php:395
3141
  msgid "Last Month"
3142
  msgstr "Último mes"
3143
 
3144
+ #: app/features/mec/dashboard.php:396
3145
  msgid "This Year"
3146
  msgstr "Este año"
3147
 
3148
+ #: app/features/mec/dashboard.php:397
3149
  msgid "Last Year"
3150
  msgstr "Año pasado"
3151
 
3152
+ #: app/features/mec/dashboard.php:409
3153
  msgid "Bar"
3154
  msgstr "Barra"
3155
 
3156
+ #: app/features/mec/dashboard.php:410
3157
  msgid "Line"
3158
  msgstr "Línea"
3159
 
3160
+ #: app/features/mec/dashboard.php:412
3161
  msgid "Filter"
3162
  msgstr "Filtrar"
3163
 
3164
+ #: app/features/mec/dashboard.php:428
3165
  #, php-format
3166
  msgid "Total Sells (%s)"
3167
  msgstr "Ventas Totales (%s)"
3168
 
3169
+ #: app/features/mec/dashboard.php:449
3170
  msgid "Change Log"
3171
  msgstr "Historial de cambios"
3172
 
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 ""
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
 
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"
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
 
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
6603
  msgid "Download Invoice"
6604
  msgstr "Descargar factura"
6605
 
6606
+ #: app/libraries/factory.php:159
6607
  msgid "M.E. Calendar"
6608
  msgstr "M.E. Calendario"
6609
 
6610
+ #: app/libraries/factory.php:198
6611
  msgctxt "plugin link"
6612
  msgid "Upgrade to Pro Version"
6613
  msgstr "Actualizar a Versión a Pro"
6614
 
6615
+ #: app/libraries/factory.php:216
6616
  msgctxt "plugin link"
6617
  msgid "Settings"
6618
  msgstr "Ajustes"
6619
 
6620
+ #: app/libraries/factory.php:221
6621
  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
 
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
 
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"
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
  "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
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
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"
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-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -76,7 +76,7 @@ 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:135 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"
@@ -252,7 +252,7 @@ msgid "MEC Activation"
252
  msgstr "Activation de l'extension"
253
 
254
  #: app/features/events.php:157 app/features/ix/export.php:34
255
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
257
  #: app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
@@ -272,7 +272,7 @@ msgstr "Événement"
272
  msgid "Add Event"
273
  msgstr "Ajouter un événement"
274
 
275
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
276
  msgid "Add New Event"
277
  msgstr "Ajouter un nouvel événement"
278
 
@@ -311,7 +311,7 @@ msgstr "Aucun événement trouvé dans la corbeille !"
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:5278
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
@@ -321,7 +321,7 @@ 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:5277
325
  msgid "Categories"
326
  msgstr "Catégories"
327
 
@@ -445,7 +445,7 @@ msgstr "Lien"
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:5284 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 +453,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:5311
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
@@ -502,7 +502,7 @@ msgstr "Date et heure"
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -540,7 +540,7 @@ msgstr "de l'après midi"
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
  #: app/features/fes/form.php:291 app/features/ix.php:3510
542
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
- #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Date de fin"
546
 
@@ -669,7 +669,7 @@ msgid "Repeats"
669
  msgstr "Récurrence"
670
 
671
  #: app/features/events.php:743 app/features/fes/form.php:349
672
- #: app/features/mec/dashboard.php:403
673
  #: app/skins/default_full_calendar/tpl.php:69
674
  #: app/skins/full_calendar/tpl.php:110
675
  msgid "Daily"
@@ -694,14 +694,14 @@ msgid "Weekly"
694
  msgstr "Hebdomadaire"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
- #: app/features/mec/dashboard.php:404
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Mensuelle"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
- #: app/features/mec/dashboard.php:405
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
@@ -831,7 +831,7 @@ msgstr "Prochaine Occurrence de l'événement à venir"
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:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Tarif de l'événement"
@@ -863,7 +863,7 @@ msgid ""
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
- #: app/features/events.php:1264 app/libraries/render.php:466
867
  msgid "Day 1"
868
  msgstr ""
869
 
@@ -935,7 +935,7 @@ msgstr "Description"
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:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ 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:5308
956
  msgid "Event Link"
957
  msgstr "Lien de l'événement"
958
 
@@ -977,7 +977,7 @@ 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:5309
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
@@ -1046,7 +1046,7 @@ msgid "12"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Billets"
1052
 
@@ -1411,7 +1411,7 @@ msgstr "Limite de Participants"
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:5282 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
@@ -1476,7 +1476,7 @@ 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:5312
1480
  msgid "Ticket"
1481
  msgstr "Billets"
1482
 
@@ -1652,7 +1652,7 @@ 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:5279
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
@@ -2088,7 +2088,7 @@ msgstr "Importer depuis Calendrier Facebook"
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:136
2092
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2093
  msgid "Documentation"
2094
  msgstr "Documentation"
@@ -2462,7 +2462,7 @@ msgid "Featured"
2462
  msgstr "Image Principale"
2463
 
2464
  #: app/features/labels.php:118 app/features/labels.php:143
2465
- #: app/libraries/main.php:5528 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
@@ -2497,8 +2497,8 @@ 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:270 app/features/mec/meta_boxes/filter.php:96
2501
- #: app/libraries/main.php:5281
2502
  msgid "Locations"
2503
  msgstr "Lieux"
2504
 
@@ -2605,7 +2605,7 @@ 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:5315
2609
  #, fuzzy
2610
  #| msgid "Search Locations"
2611
  msgid "Other Locations"
@@ -2669,14 +2669,14 @@ msgstr "Aide"
2669
  msgid "Support"
2670
  msgstr "Aide"
2671
 
2672
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2673
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2674
- #: app/libraries/main.php:5283
2675
  msgid "Organizers"
2676
  msgstr "Organisateurs"
2677
 
2678
  #: app/features/mec.php:413 app/features/mec.php:437
2679
- #: app/features/mec/dashboard.php:263
2680
  msgid "Shortcodes"
2681
  msgstr "Shortcodes"
2682
 
@@ -3036,7 +3036,7 @@ msgstr ""
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:5527
3040
  msgid "Verified"
3041
  msgstr "Vérifié"
3042
 
@@ -3065,7 +3065,7 @@ msgstr "Calendrier des événements"
3065
  msgid "Modern Events Calendar (Lite)"
3066
  msgstr "Modern Events Calendar"
3067
 
3068
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3069
  msgctxt "plugin rate"
3070
  msgid "Rate the plugin ★★★★★"
3071
  msgstr ""
@@ -3076,7 +3076,7 @@ msgstr ""
3076
  msgid "Update"
3077
  msgstr "Mettre à jour %s"
3078
 
3079
- #: app/features/mec/dashboard.php:92
3080
  #, php-format
3081
  msgid ""
3082
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3084,111 +3084,111 @@ msgid ""
3084
  "Spots, etc you should upgrade to the Pro version."
3085
  msgstr ""
3086
 
3087
- #: app/features/mec/dashboard.php:92
3088
  msgid "lite"
3089
  msgstr ""
3090
 
3091
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3092
  msgid "GO PREMIUM"
3093
  msgstr ""
3094
 
3095
- #: app/features/mec/dashboard.php:98
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:98
3103
  #, fuzzy
3104
  #| msgid "Address"
3105
  msgid "WordPress"
3106
  msgstr "Adresse"
3107
 
3108
- #: app/features/mec/dashboard.php:98
3109
  msgid "Copouns!"
3110
  msgstr ""
3111
 
3112
- #: app/features/mec/dashboard.php:127
3113
  #, fuzzy
3114
  #| msgid "Modern Events Calendar"
3115
  msgid "Getting started with Modern Events Calendar"
3116
  msgstr "Modern Events Calendar"
3117
 
3118
- #: app/features/mec/dashboard.php:128
3119
  msgid ""
3120
  "In this short video, you can learn how to make an event and put a calendar "
3121
  "on your website. Please watch this 2 minutes video to the end."
3122
  msgstr ""
3123
 
3124
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3125
  #, fuzzy
3126
  #| msgid "MEC Activation"
3127
  msgid "MEC Activate"
3128
  msgstr "Activation de l'extension"
3129
 
3130
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3131
  #, fuzzy
3132
  #| msgid "MEC Activation"
3133
  msgid "Activate Addons"
3134
  msgstr "Activation de l'extension"
3135
 
3136
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3137
  msgid "You cannot access this section."
3138
  msgstr ""
3139
 
3140
- #: app/features/mec/dashboard.php:174
3141
  msgid ""
3142
  "In order to use all plugin features and options, please enter your purchase "
3143
  "code."
3144
  msgstr ""
3145
 
3146
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3147
  msgid "Upcoming Events"
3148
  msgstr "Prochains évenements"
3149
 
3150
- #: app/features/mec/dashboard.php:312
3151
  msgid "Popular Gateways"
3152
  msgstr "Passerelle populaire"
3153
 
3154
- #: app/features/mec/dashboard.php:366
3155
  msgid "Total Bookings"
3156
  msgstr "Total de réservation"
3157
 
3158
- #: app/features/mec/dashboard.php:393
3159
  msgid "This Month"
3160
  msgstr "Ce mois"
3161
 
3162
- #: app/features/mec/dashboard.php:394
3163
  msgid "Last Month"
3164
  msgstr "Le mois dernier"
3165
 
3166
- #: app/features/mec/dashboard.php:395
3167
  msgid "This Year"
3168
  msgstr "Cette année"
3169
 
3170
- #: app/features/mec/dashboard.php:396
3171
  msgid "Last Year"
3172
  msgstr "L'année dernière"
3173
 
3174
- #: app/features/mec/dashboard.php:408
3175
  msgid "Bar"
3176
  msgstr "Barre"
3177
 
3178
- #: app/features/mec/dashboard.php:409
3179
  msgid "Line"
3180
  msgstr "Ligne"
3181
 
3182
- #: app/features/mec/dashboard.php:411
3183
  msgid "Filter"
3184
  msgstr "Filtre"
3185
 
3186
- #: app/features/mec/dashboard.php:427
3187
  #, php-format
3188
  msgid "Total Sells (%s)"
3189
  msgstr "Ventes totales (%s)"
3190
 
3191
- #: app/features/mec/dashboard.php:448
3192
  msgid "Change Log"
3193
  msgstr "Journal des modifications"
3194
 
@@ -4187,7 +4187,7 @@ msgstr "Désactivé"
4187
  #: app/features/mec/meta_boxes/search_form.php:693
4188
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4189
  #: app/features/search.php:79 app/features/speakers.php:61
4190
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4191
  #: app/libraries/skins.php:936
4192
  msgid "Speaker"
4193
  msgstr ""
@@ -5200,7 +5200,7 @@ msgid "You can enable/disable Schema scripts"
5200
  msgstr ""
5201
 
5202
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5203
- #: app/libraries/main.php:5290
5204
  msgid "Weekdays"
5205
  msgstr "Jours de la Semaine"
5206
 
@@ -6485,7 +6485,7 @@ msgstr "ex : votre@surnom.com"
6485
  msgid "eg. https://webnus.net"
6486
  msgstr "eg. https://webnus.net"
6487
 
6488
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6489
  #: app/skins/single.php:862
6490
  msgid "Other Organizers"
6491
  msgstr "Autres organisateurs"
@@ -6550,7 +6550,7 @@ msgstr ""
6550
  msgid "No bookings found!"
6551
  msgstr "Aucune réservation trouvée !"
6552
 
6553
- #: app/features/search.php:87 app/libraries/main.php:5280
6554
  msgid "label"
6555
  msgstr "texte"
6556
 
@@ -6576,7 +6576,7 @@ msgid "No search result."
6576
  msgstr ""
6577
 
6578
  #: app/features/search_bar/search_result.php:11
6579
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6580
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6581
  #: app/skins/single.php:160 app/skins/single.php:753
6582
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6683,70 +6683,70 @@ msgstr "Réduction"
6683
  msgid "Download Invoice"
6684
  msgstr ""
6685
 
6686
- #: app/libraries/factory.php:156
6687
  msgid "M.E. Calendar"
6688
  msgstr "M.E Calendrier"
6689
 
6690
- #: app/libraries/factory.php:195
6691
  msgctxt "plugin link"
6692
  msgid "Upgrade to Pro Version"
6693
  msgstr ""
6694
 
6695
- #: app/libraries/factory.php:213
6696
  msgctxt "plugin link"
6697
  msgid "Settings"
6698
  msgstr "Paramètres"
6699
 
6700
- #: app/libraries/factory.php:218
6701
  msgctxt "plugin link"
6702
  msgid "Upgrade"
6703
  msgstr ""
6704
 
6705
- #: app/libraries/factory.php:361
6706
  msgid "day"
6707
  msgstr "jour"
6708
 
6709
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6710
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6711
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6712
  msgid "days"
6713
  msgstr "jours"
6714
 
6715
- #: app/libraries/factory.php:363
6716
  msgid "hour"
6717
  msgstr "heure"
6718
 
6719
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6720
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6721
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6722
  msgid "hours"
6723
  msgstr "heures"
6724
 
6725
- #: app/libraries/factory.php:365
6726
  msgid "minute"
6727
  msgstr "minute"
6728
 
6729
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6730
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6731
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6732
  msgid "minutes"
6733
  msgstr "minutes"
6734
 
6735
- #: app/libraries/factory.php:367
6736
  msgid "second"
6737
  msgstr "seconde"
6738
 
6739
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6740
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6741
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6742
  msgid "seconds"
6743
  msgstr "secondes"
6744
 
6745
- #: app/libraries/factory.php:415
6746
  msgid "MEC Single Sidebar"
6747
  msgstr "Barre latérale M.E.C."
6748
 
6749
- #: app/libraries/factory.php:416
6750
  msgid "Custom sidebar for single and modal page of MEC."
6751
  msgstr ""
6752
  "Barre latérale personnalisée pour les pages d'événement et les pop-ups "
@@ -6823,31 +6823,31 @@ msgstr "Vue sur Slider"
6823
  msgid "Tile View"
6824
  msgstr "Vue sur Slider"
6825
 
6826
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6827
  msgid "SU"
6828
  msgstr "DIM."
6829
 
6830
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6831
  msgid "MO"
6832
  msgstr "LUN."
6833
 
6834
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6835
  msgid "TU"
6836
  msgstr "MAR."
6837
 
6838
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6839
  msgid "WE"
6840
  msgstr "MER."
6841
 
6842
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6843
  msgid "TH"
6844
  msgstr "JEU."
6845
 
6846
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6847
  msgid "FR"
6848
  msgstr "VEN."
6849
 
6850
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6851
  msgid "SA"
6852
  msgstr "SAM."
6853
 
@@ -7176,7 +7176,7 @@ msgstr "Insérez une étiquette pour cette option"
7176
  msgid "Free"
7177
  msgstr "Gratuite"
7178
 
7179
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7180
  #, fuzzy
7181
  #| msgid "M.E. Calendar"
7182
  msgid "M.E. Calender"
@@ -7187,100 +7187,100 @@ msgstr "M.E Calendrier"
7187
  msgid "Copy of %s"
7188
  msgstr "Copie de %s"
7189
 
7190
- #: app/libraries/main.php:4669
7191
  msgid "Booked an event."
7192
  msgstr "Réserver un événement"
7193
 
7194
- #: app/libraries/main.php:4710
7195
  #, php-format
7196
  msgid "%s booked %s event."
7197
  msgstr "%s réservé %s événement"
7198
 
7199
- #: app/libraries/main.php:5275
7200
  msgid "Taxonomies"
7201
  msgstr "Taxonomies"
7202
 
7203
- #: app/libraries/main.php:5277
7204
  msgid "Category Plural Label"
7205
  msgstr "Catégorie au pluriel"
7206
 
7207
- #: app/libraries/main.php:5278
7208
  msgid "Category Singular Label"
7209
  msgstr "Catégorie au singulier"
7210
 
7211
- #: app/libraries/main.php:5279
7212
  msgid "Label Plural Label"
7213
  msgstr "Étiquettes au pluriel"
7214
 
7215
- #: app/libraries/main.php:5280
7216
  msgid "Label Singular Label"
7217
  msgstr "Étiquettes au singulier"
7218
 
7219
- #: app/libraries/main.php:5281
7220
  msgid "Location Plural Label"
7221
  msgstr "Lieu au pluriel"
7222
 
7223
- #: app/libraries/main.php:5282
7224
  msgid "Location Singular Label"
7225
  msgstr "Lieu au singulier"
7226
 
7227
- #: app/libraries/main.php:5283
7228
  msgid "Organizer Plural Label"
7229
  msgstr "Organisateur au pluriel"
7230
 
7231
- #: app/libraries/main.php:5284
7232
  msgid "Organizer Singular Label"
7233
  msgstr "Organisateur au singulier"
7234
 
7235
- #: app/libraries/main.php:5285
7236
  #, fuzzy
7237
  #| msgid "Label Plural Label"
7238
  msgid "Speaker Plural Label"
7239
  msgstr "Étiquettes au pluriel"
7240
 
7241
- #: app/libraries/main.php:5286
7242
  #, fuzzy
7243
  #| msgid "Label Singular Label"
7244
  msgid "Speaker Singular Label"
7245
  msgstr "Étiquettes au singulier"
7246
 
7247
- #: app/libraries/main.php:5292
7248
  msgid "Sunday abbreviation"
7249
  msgstr "Abréviation de Dimanche"
7250
 
7251
- #: app/libraries/main.php:5293
7252
  msgid "Monday abbreviation"
7253
  msgstr "Abréviation de Lundi"
7254
 
7255
- #: app/libraries/main.php:5294
7256
  msgid "Tuesday abbreviation"
7257
  msgstr "Abréviation de Mardi"
7258
 
7259
- #: app/libraries/main.php:5295
7260
  msgid "Wednesday abbreviation"
7261
  msgstr "Abréviation de Mercredi"
7262
 
7263
- #: app/libraries/main.php:5296
7264
  msgid "Thursday abbreviation"
7265
  msgstr "Abréviation de Jeudi"
7266
 
7267
- #: app/libraries/main.php:5297
7268
  msgid "Friday abbreviation"
7269
  msgstr "Abréviation de Vendredi"
7270
 
7271
- #: app/libraries/main.php:5298
7272
  msgid "Saturday abbreviation"
7273
  msgstr "Abréviation de Samedi"
7274
 
7275
- #: app/libraries/main.php:5302
7276
  msgid "Others"
7277
  msgstr "Autres"
7278
 
7279
- #: app/libraries/main.php:5304
7280
  msgid "Booking Success Message"
7281
  msgstr "Message de succès de réservation"
7282
 
7283
- #: app/libraries/main.php:5304
7284
  msgid ""
7285
  "Thanks for your booking. Your tickets booked, booking verification might be "
7286
  "needed, please check your email."
@@ -7288,11 +7288,11 @@ msgstr ""
7288
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
7289
  "vérification peut être nécessaires, contrôlez votre boite mail."
7290
 
7291
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7292
  msgid "Register Button"
7293
  msgstr "Boutons d'inscription"
7294
 
7295
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7296
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7297
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7298
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7309,11 +7309,11 @@ msgstr "Boutons d'inscription"
7309
  msgid "REGISTER"
7310
  msgstr "S'INSCRIRE"
7311
 
7312
- #: app/libraries/main.php:5306
7313
  msgid "View Detail Button"
7314
  msgstr "Afficher le boutons de détail"
7315
 
7316
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7317
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7318
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7319
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7324,87 +7324,88 @@ msgstr "Afficher le boutons de détail"
7324
  msgid "View Detail"
7325
  msgstr "En savoir plus"
7326
 
7327
- #: app/libraries/main.php:5307
7328
  msgid "Event Detail Button"
7329
  msgstr "Bouton de détail de l'événement"
7330
 
7331
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7332
  msgid "Event Detail"
7333
  msgstr "Détails"
7334
 
7335
- #: app/libraries/main.php:5309
7336
  msgid "More Info Link"
7337
  msgstr "Plus de lien d'info"
7338
 
7339
- #: app/libraries/main.php:5312
7340
  msgid "Ticket (Singular)"
7341
  msgstr ""
7342
 
7343
- #: app/libraries/main.php:5313
7344
  msgid "Tickets (Plural)"
7345
  msgstr ""
7346
 
7347
- #: app/libraries/main.php:5399
7348
  msgid "EventON"
7349
  msgstr ""
7350
 
7351
- #: app/libraries/main.php:5400
7352
  msgid "The Events Calendar"
7353
  msgstr ""
7354
 
7355
- #: app/libraries/main.php:5401
7356
  msgid "Events Schedule WP Plugin"
7357
  msgstr ""
7358
 
7359
- #: app/libraries/main.php:5402
7360
  msgid "Calendarize It"
7361
  msgstr ""
7362
 
7363
- #: app/libraries/main.php:5403
7364
  #, fuzzy
7365
  #| msgid "Event Labels"
7366
  msgid "Event Espresso"
7367
  msgstr "Labels d'événement"
7368
 
7369
- #: app/libraries/main.php:5404
7370
  #, fuzzy
7371
  #| msgid "Event Repeating"
7372
  msgid "Events Manager (Recurring)"
7373
  msgstr "Événement récurrent"
7374
 
7375
- #: app/libraries/main.php:5405
7376
  #, fuzzy
7377
  #| msgid "Modern Events Calendar"
7378
  msgid "Events Manager (Single)"
7379
  msgstr "Modern Events Calendar"
7380
 
7381
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7382
  msgid "Confirmed"
7383
  msgstr "Confirmé"
7384
 
7385
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7386
  msgid "Rejected"
7387
  msgstr "Rejeté"
7388
 
7389
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7390
  msgid "Pending"
7391
  msgstr "En attente"
7392
 
7393
- #: app/libraries/main.php:5529
7394
  msgid "Waiting"
7395
  msgstr "En attente"
7396
 
7397
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7398
  msgid "Skin controller does not exist."
7399
  msgstr "Le contrôleur de Skin n'existe pas."
7400
 
7401
- #: app/libraries/main.php:5848
7402
  #, fuzzy
7403
  #| msgid "Sold out!"
7404
  msgid "Sold Out"
7405
  msgstr "Épuisé !"
7406
 
7407
- #: app/libraries/main.php:5856
7408
  #, fuzzy
7409
  #| msgid "Ticket"
7410
  msgid "Last Few Tickets"
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"
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"
252
  msgstr "Activation de l'extension"
253
 
254
  #: app/features/events.php:157 app/features/ix/export.php:34
255
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
257
  #: app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
272
  msgid "Add Event"
273
  msgstr "Ajouter un événement"
274
 
275
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
276
  msgid "Add New Event"
277
  msgstr "Ajouter un nouvel événement"
278
 
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
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
 
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
  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
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
  #: app/features/fes/form.php:291 app/features/ix.php:3510
542
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
+ #: app/features/mec/dashboard.php:402
544
  msgid "End Date"
545
  msgstr "Date de fin"
546
 
669
  msgstr "Récurrence"
670
 
671
  #: app/features/events.php:743 app/features/fes/form.php:349
672
+ #: app/features/mec/dashboard.php:404
673
  #: app/skins/default_full_calendar/tpl.php:69
674
  #: app/skins/full_calendar/tpl.php:110
675
  msgid "Daily"
694
  msgstr "Hebdomadaire"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
+ #: app/features/mec/dashboard.php:405
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Mensuelle"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
+ #: app/features/mec/dashboard.php:406
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
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"
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
+ #: app/features/events.php:1264 app/libraries/render.php:506
867
  msgid "Day 1"
868
  msgstr ""
869
 
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 ""
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
 
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
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
 
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
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
 
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
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
2093
  msgid "Documentation"
2094
  msgstr "Documentation"
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
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
 
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"
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
 
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
 
3065
  msgid "Modern Events Calendar (Lite)"
3066
  msgstr "Modern Events Calendar"
3067
 
3068
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3069
  msgctxt "plugin rate"
3070
  msgid "Rate the plugin ★★★★★"
3071
  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
  "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
 
3112
+ #: app/features/mec/dashboard.php:131
3113
  #, fuzzy
3114
  #| msgid "Modern Events Calendar"
3115
  msgid "Getting started with Modern Events Calendar"
3116
  msgstr "Modern Events Calendar"
3117
 
3118
+ #: app/features/mec/dashboard.php:132
3119
  msgid ""
3120
  "In this short video, you can learn how to make an event and put a calendar "
3121
  "on your website. Please watch this 2 minutes video to the end."
3122
  msgstr ""
3123
 
3124
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3125
  #, fuzzy
3126
  #| msgid "MEC Activation"
3127
  msgid "MEC Activate"
3128
  msgstr "Activation de l'extension"
3129
 
3130
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3131
  #, fuzzy
3132
  #| msgid "MEC Activation"
3133
  msgid "Activate Addons"
3134
  msgstr "Activation de l'extension"
3135
 
3136
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3137
  msgid "You cannot access this section."
3138
  msgstr ""
3139
 
3140
+ #: app/features/mec/dashboard.php:178
3141
  msgid ""
3142
  "In order to use all plugin features and options, please enter your purchase "
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
 
3150
+ #: app/features/mec/dashboard.php:313
3151
  msgid "Popular Gateways"
3152
  msgstr "Passerelle populaire"
3153
 
3154
+ #: app/features/mec/dashboard.php:367
3155
  msgid "Total Bookings"
3156
  msgstr "Total de réservation"
3157
 
3158
+ #: app/features/mec/dashboard.php:394
3159
  msgid "This Month"
3160
  msgstr "Ce mois"
3161
 
3162
+ #: app/features/mec/dashboard.php:395
3163
  msgid "Last Month"
3164
  msgstr "Le mois dernier"
3165
 
3166
+ #: app/features/mec/dashboard.php:396
3167
  msgid "This Year"
3168
  msgstr "Cette année"
3169
 
3170
+ #: app/features/mec/dashboard.php:397
3171
  msgid "Last Year"
3172
  msgstr "L'année dernière"
3173
 
3174
+ #: app/features/mec/dashboard.php:409
3175
  msgid "Bar"
3176
  msgstr "Barre"
3177
 
3178
+ #: app/features/mec/dashboard.php:410
3179
  msgid "Line"
3180
  msgstr "Ligne"
3181
 
3182
+ #: app/features/mec/dashboard.php:412
3183
  msgid "Filter"
3184
  msgstr "Filtre"
3185
 
3186
+ #: app/features/mec/dashboard.php:428
3187
  #, php-format
3188
  msgid "Total Sells (%s)"
3189
  msgstr "Ventes totales (%s)"
3190
 
3191
+ #: app/features/mec/dashboard.php:449
3192
  msgid "Change Log"
3193
  msgstr "Journal des modifications"
3194
 
4187
  #: app/features/mec/meta_boxes/search_form.php:693
4188
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4189
  #: app/features/search.php:79 app/features/speakers.php:61
4190
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4191
  #: app/libraries/skins.php:936
4192
  msgid "Speaker"
4193
  msgstr ""
5200
  msgstr ""
5201
 
5202
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5203
+ #: app/libraries/main.php:5293
5204
  msgid "Weekdays"
5205
  msgstr "Jours de la Semaine"
5206
 
6485
  msgid "eg. https://webnus.net"
6486
  msgstr "eg. https://webnus.net"
6487
 
6488
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6489
  #: app/skins/single.php:862
6490
  msgid "Other Organizers"
6491
  msgstr "Autres organisateurs"
6550
  msgid "No bookings found!"
6551
  msgstr "Aucune réservation trouvée !"
6552
 
6553
+ #: app/features/search.php:87 app/libraries/main.php:5283
6554
  msgid "label"
6555
  msgstr "texte"
6556
 
6576
  msgstr ""
6577
 
6578
  #: app/features/search_bar/search_result.php:11
6579
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6580
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6581
  #: app/skins/single.php:160 app/skins/single.php:753
6582
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6683
  msgid "Download Invoice"
6684
  msgstr ""
6685
 
6686
+ #: app/libraries/factory.php:159
6687
  msgid "M.E. Calendar"
6688
  msgstr "M.E Calendrier"
6689
 
6690
+ #: app/libraries/factory.php:198
6691
  msgctxt "plugin link"
6692
  msgid "Upgrade to Pro Version"
6693
  msgstr ""
6694
 
6695
+ #: app/libraries/factory.php:216
6696
  msgctxt "plugin link"
6697
  msgid "Settings"
6698
  msgstr "Paramètres"
6699
 
6700
+ #: app/libraries/factory.php:221
6701
  msgctxt "plugin link"
6702
  msgid "Upgrade"
6703
  msgstr ""
6704
 
6705
+ #: app/libraries/factory.php:356
6706
  msgid "day"
6707
  msgstr "jour"
6708
 
6709
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6710
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6711
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6712
  msgid "days"
6713
  msgstr "jours"
6714
 
6715
+ #: app/libraries/factory.php:358
6716
  msgid "hour"
6717
  msgstr "heure"
6718
 
6719
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6720
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6721
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6722
  msgid "hours"
6723
  msgstr "heures"
6724
 
6725
+ #: app/libraries/factory.php:360
6726
  msgid "minute"
6727
  msgstr "minute"
6728
 
6729
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6730
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6731
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6732
  msgid "minutes"
6733
  msgstr "minutes"
6734
 
6735
+ #: app/libraries/factory.php:362
6736
  msgid "second"
6737
  msgstr "seconde"
6738
 
6739
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6740
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6741
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6742
  msgid "seconds"
6743
  msgstr "secondes"
6744
 
6745
+ #: app/libraries/factory.php:411
6746
  msgid "MEC Single Sidebar"
6747
  msgstr "Barre latérale M.E.C."
6748
 
6749
+ #: app/libraries/factory.php:412
6750
  msgid "Custom sidebar for single and modal page of MEC."
6751
  msgstr ""
6752
  "Barre latérale personnalisée pour les pages d'événement et les pop-ups "
6823
  msgid "Tile View"
6824
  msgstr "Vue sur Slider"
6825
 
6826
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6827
  msgid "SU"
6828
  msgstr "DIM."
6829
 
6830
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6831
  msgid "MO"
6832
  msgstr "LUN."
6833
 
6834
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6835
  msgid "TU"
6836
  msgstr "MAR."
6837
 
6838
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6839
  msgid "WE"
6840
  msgstr "MER."
6841
 
6842
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6843
  msgid "TH"
6844
  msgstr "JEU."
6845
 
6846
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6847
  msgid "FR"
6848
  msgstr "VEN."
6849
 
6850
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6851
  msgid "SA"
6852
  msgstr "SAM."
6853
 
7176
  msgid "Free"
7177
  msgstr "Gratuite"
7178
 
7179
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7180
  #, fuzzy
7181
  #| msgid "M.E. Calendar"
7182
  msgid "M.E. Calender"
7187
  msgid "Copy of %s"
7188
  msgstr "Copie de %s"
7189
 
7190
+ #: app/libraries/main.php:4672
7191
  msgid "Booked an event."
7192
  msgstr "Réserver un événement"
7193
 
7194
+ #: app/libraries/main.php:4713
7195
  #, php-format
7196
  msgid "%s booked %s event."
7197
  msgstr "%s réservé %s événement"
7198
 
7199
+ #: app/libraries/main.php:5278
7200
  msgid "Taxonomies"
7201
  msgstr "Taxonomies"
7202
 
7203
+ #: app/libraries/main.php:5280
7204
  msgid "Category Plural Label"
7205
  msgstr "Catégorie au pluriel"
7206
 
7207
+ #: app/libraries/main.php:5281
7208
  msgid "Category Singular Label"
7209
  msgstr "Catégorie au singulier"
7210
 
7211
+ #: app/libraries/main.php:5282
7212
  msgid "Label Plural Label"
7213
  msgstr "Étiquettes au pluriel"
7214
 
7215
+ #: app/libraries/main.php:5283
7216
  msgid "Label Singular Label"
7217
  msgstr "Étiquettes au singulier"
7218
 
7219
+ #: app/libraries/main.php:5284
7220
  msgid "Location Plural Label"
7221
  msgstr "Lieu au pluriel"
7222
 
7223
+ #: app/libraries/main.php:5285
7224
  msgid "Location Singular Label"
7225
  msgstr "Lieu au singulier"
7226
 
7227
+ #: app/libraries/main.php:5286
7228
  msgid "Organizer Plural Label"
7229
  msgstr "Organisateur au pluriel"
7230
 
7231
+ #: app/libraries/main.php:5287
7232
  msgid "Organizer Singular Label"
7233
  msgstr "Organisateur au singulier"
7234
 
7235
+ #: app/libraries/main.php:5288
7236
  #, fuzzy
7237
  #| msgid "Label Plural Label"
7238
  msgid "Speaker Plural Label"
7239
  msgstr "Étiquettes au pluriel"
7240
 
7241
+ #: app/libraries/main.php:5289
7242
  #, fuzzy
7243
  #| msgid "Label Singular Label"
7244
  msgid "Speaker Singular Label"
7245
  msgstr "Étiquettes au singulier"
7246
 
7247
+ #: app/libraries/main.php:5295
7248
  msgid "Sunday abbreviation"
7249
  msgstr "Abréviation de Dimanche"
7250
 
7251
+ #: app/libraries/main.php:5296
7252
  msgid "Monday abbreviation"
7253
  msgstr "Abréviation de Lundi"
7254
 
7255
+ #: app/libraries/main.php:5297
7256
  msgid "Tuesday abbreviation"
7257
  msgstr "Abréviation de Mardi"
7258
 
7259
+ #: app/libraries/main.php:5298
7260
  msgid "Wednesday abbreviation"
7261
  msgstr "Abréviation de Mercredi"
7262
 
7263
+ #: app/libraries/main.php:5299
7264
  msgid "Thursday abbreviation"
7265
  msgstr "Abréviation de Jeudi"
7266
 
7267
+ #: app/libraries/main.php:5300
7268
  msgid "Friday abbreviation"
7269
  msgstr "Abréviation de Vendredi"
7270
 
7271
+ #: app/libraries/main.php:5301
7272
  msgid "Saturday abbreviation"
7273
  msgstr "Abréviation de Samedi"
7274
 
7275
+ #: app/libraries/main.php:5305
7276
  msgid "Others"
7277
  msgstr "Autres"
7278
 
7279
+ #: app/libraries/main.php:5307
7280
  msgid "Booking Success Message"
7281
  msgstr "Message de succès de réservation"
7282
 
7283
+ #: app/libraries/main.php:5307
7284
  msgid ""
7285
  "Thanks for your booking. Your tickets booked, booking verification might be "
7286
  "needed, please check your email."
7288
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
7289
  "vérification peut être nécessaires, contrôlez votre boite mail."
7290
 
7291
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7292
  msgid "Register Button"
7293
  msgstr "Boutons d'inscription"
7294
 
7295
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7296
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7297
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7298
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7309
  msgid "REGISTER"
7310
  msgstr "S'INSCRIRE"
7311
 
7312
+ #: app/libraries/main.php:5309
7313
  msgid "View Detail Button"
7314
  msgstr "Afficher le boutons de détail"
7315
 
7316
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7317
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7318
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7319
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7324
  msgid "View Detail"
7325
  msgstr "En savoir plus"
7326
 
7327
+ #: app/libraries/main.php:5310
7328
  msgid "Event Detail Button"
7329
  msgstr "Bouton de détail de l'événement"
7330
 
7331
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7332
  msgid "Event Detail"
7333
  msgstr "Détails"
7334
 
7335
+ #: app/libraries/main.php:5312
7336
  msgid "More Info Link"
7337
  msgstr "Plus de lien d'info"
7338
 
7339
+ #: app/libraries/main.php:5315
7340
  msgid "Ticket (Singular)"
7341
  msgstr ""
7342
 
7343
+ #: app/libraries/main.php:5316
7344
  msgid "Tickets (Plural)"
7345
  msgstr ""
7346
 
7347
+ #: app/libraries/main.php:5402
7348
  msgid "EventON"
7349
  msgstr ""
7350
 
7351
+ #: app/libraries/main.php:5403
7352
  msgid "The Events Calendar"
7353
  msgstr ""
7354
 
7355
+ #: app/libraries/main.php:5404
7356
  msgid "Events Schedule WP Plugin"
7357
  msgstr ""
7358
 
7359
+ #: app/libraries/main.php:5405
7360
  msgid "Calendarize It"
7361
  msgstr ""
7362
 
7363
+ #: app/libraries/main.php:5406
7364
  #, fuzzy
7365
  #| msgid "Event Labels"
7366
  msgid "Event Espresso"
7367
  msgstr "Labels d'événement"
7368
 
7369
+ #: app/libraries/main.php:5407
7370
  #, fuzzy
7371
  #| msgid "Event Repeating"
7372
  msgid "Events Manager (Recurring)"
7373
  msgstr "Événement récurrent"
7374
 
7375
+ #: app/libraries/main.php:5408
7376
  #, fuzzy
7377
  #| msgid "Modern Events Calendar"
7378
  msgid "Events Manager (Single)"
7379
  msgstr "Modern Events Calendar"
7380
 
7381
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7382
  msgid "Confirmed"
7383
  msgstr "Confirmé"
7384
 
7385
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7386
  msgid "Rejected"
7387
  msgstr "Rejeté"
7388
 
7389
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7390
  msgid "Pending"
7391
  msgstr "En attente"
7392
 
7393
+ #: app/libraries/main.php:5532
7394
  msgid "Waiting"
7395
  msgstr "En attente"
7396
 
7397
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7398
+ #: app/libraries/render.php:418
7399
  msgid "Skin controller does not exist."
7400
  msgstr "Le contrôleur de Skin n'existe pas."
7401
 
7402
+ #: app/libraries/main.php:5851
7403
  #, fuzzy
7404
  #| msgid "Sold out!"
7405
  msgid "Sold Out"
7406
  msgstr "Épuisé !"
7407
 
7408
+ #: app/libraries/main.php:5859
7409
  #, fuzzy
7410
  #| msgid "Ticket"
7411
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-hu_HU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -66,7 +66,7 @@ msgid "Event Color"
66
  msgstr ""
67
 
68
  #: app/features/contextual.php:55 app/features/mec.php:414
69
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
70
  #: app/features/mec/support.php:20 app/libraries/main.php:594
71
  msgid "Settings"
72
  msgstr ""
@@ -242,7 +242,7 @@ msgid "MEC Activation"
242
  msgstr ""
243
 
244
  #: app/features/events.php:157 app/features/ix/export.php:34
245
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
246
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
247
  #: app/skins/yearly_view/tpl.php:68
248
  msgid "Events"
@@ -262,7 +262,7 @@ msgstr ""
262
  msgid "Add Event"
263
  msgstr ""
264
 
265
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
266
  msgid "Add New Event"
267
  msgstr ""
268
 
@@ -301,7 +301,7 @@ msgstr ""
301
  #: app/features/mec/meta_boxes/search_form.php:575
302
  #: app/features/mec/meta_boxes/search_form.php:672
303
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
304
- #: app/features/search.php:67 app/libraries/main.php:5278
305
  #: app/libraries/skins.php:858 app/skins/single.php:566
306
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
307
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -311,7 +311,7 @@ msgstr "kategória"
311
 
312
  #: app/features/events.php:183 app/features/events.php:3275
313
  #: app/features/fes/form.php:757 app/features/mec.php:402
314
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
315
  msgid "Categories"
316
  msgstr ""
317
 
@@ -429,7 +429,7 @@ msgstr ""
429
  #: app/features/organizers.php:58 app/features/organizers.php:204
430
  #: app/features/organizers.php:260 app/features/organizers.php:262
431
  #: app/features/organizers.php:271 app/features/search.php:75
432
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
433
  #: app/skins/single.php:812 app/skins/single/default.php:217
434
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
435
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -437,7 +437,7 @@ msgid "Organizer"
437
  msgstr "Szervező"
438
 
439
  #: app/features/events.php:337 app/features/events.php:1172
440
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
441
  #: app/skins/single.php:589 app/skins/single/default.php:126
442
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
443
  #: app/skins/single/modern.php:208
@@ -486,7 +486,7 @@ msgstr ""
486
  #: app/features/events.php:3555 app/features/fes/form.php:247
487
  #: app/features/fes/form.php:251 app/features/ix.php:3510
488
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
489
- #: app/features/mec/dashboard.php:400
490
  #: app/features/mec/meta_boxes/display_options.php:48
491
  #: app/features/mec/meta_boxes/display_options.php:228
492
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -524,7 +524,7 @@ msgstr ""
524
  #: app/features/events.php:3555 app/features/fes/form.php:287
525
  #: app/features/fes/form.php:291 app/features/ix.php:3510
526
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
527
- #: app/features/mec/dashboard.php:401
528
  msgid "End Date"
529
  msgstr ""
530
 
@@ -643,7 +643,7 @@ msgid "Repeats"
643
  msgstr ""
644
 
645
  #: app/features/events.php:743 app/features/fes/form.php:349
646
- #: app/features/mec/dashboard.php:403
647
  #: app/skins/default_full_calendar/tpl.php:69
648
  #: app/skins/full_calendar/tpl.php:110
649
  msgid "Daily"
@@ -668,14 +668,14 @@ msgid "Weekly"
668
  msgstr ""
669
 
670
  #: app/features/events.php:778 app/features/fes/form.php:354
671
- #: app/features/mec/dashboard.php:404
672
  #: app/skins/default_full_calendar/tpl.php:67
673
  #: app/skins/full_calendar/tpl.php:108
674
  msgid "Monthly"
675
  msgstr ""
676
 
677
  #: app/features/events.php:785 app/features/fes/form.php:355
678
- #: app/features/mec/dashboard.php:405
679
  #: app/skins/default_full_calendar/tpl.php:66
680
  #: app/skins/full_calendar/tpl.php:107
681
  msgid "Yearly"
@@ -794,7 +794,7 @@ msgstr ""
794
  #: app/features/events.php:1168 app/features/events.php:3513
795
  #: app/features/events.php:3555 app/features/fes/form.php:727
796
  #: app/features/ix.php:3510 app/features/ix.php:3551
797
- #: app/features/mec/settings.php:656 app/libraries/main.php:5310
798
  #: app/widgets/single.php:103
799
  msgid "Event Cost"
800
  msgstr ""
@@ -824,7 +824,7 @@ msgid ""
824
  "multiple day occurrences."
825
  msgstr ""
826
 
827
- #: app/features/events.php:1264 app/libraries/render.php:466
828
  msgid "Day 1"
829
  msgstr ""
830
 
@@ -896,7 +896,7 @@ msgstr ""
896
  #: app/features/events.php:1445 app/features/fes/form.php:851
897
  #: app/features/mec.php:410 app/features/mec/modules.php:52
898
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
899
- #: app/libraries/main.php:565 app/libraries/main.php:5285
900
  #: app/modules/speakers/details.php:18
901
  msgid "Speakers"
902
  msgstr ""
@@ -911,7 +911,7 @@ msgid "Event Links"
911
  msgstr ""
912
 
913
  #: app/features/events.php:1479 app/features/events.php:1485
914
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
915
  msgid "Event Link"
916
  msgstr ""
917
 
@@ -932,7 +932,7 @@ msgid "URL Shortener"
932
  msgstr ""
933
 
934
  #: app/features/events.php:1495 app/features/events.php:1508
935
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
936
  #: app/skins/single.php:673 app/skins/single/default.php:140
937
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
938
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -997,7 +997,7 @@ msgid "12"
997
  msgstr ""
998
 
999
  #: app/features/events.php:1653 app/libraries/book.php:60
1000
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1001
  msgid "Tickets"
1002
  msgstr ""
1003
 
@@ -1346,7 +1346,7 @@ msgstr "Jelentkezési lap"
1346
  #: app/features/mec/meta_boxes/search_form.php:679
1347
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1348
  #: app/features/search.php:71 app/libraries/main.php:2236
1349
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1350
  #: app/skins/single.php:493 app/skins/single.php:924
1351
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1352
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1411,7 +1411,7 @@ msgstr ""
1411
 
1412
  #: app/features/events.php:3808 app/features/fes.php:223
1413
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1414
- #: app/libraries/main.php:5312
1415
  msgid "Ticket"
1416
  msgstr ""
1417
 
@@ -1583,7 +1583,7 @@ msgstr ""
1583
 
1584
  #: app/features/fes/form.php:783 app/features/labels.php:61
1585
  #: app/features/labels.php:221 app/features/mec.php:403
1586
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1587
  #: app/skins/single.php:702 app/skins/single/default.php:155
1588
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1589
  #: app/skins/single/modern.php:223
@@ -1987,7 +1987,7 @@ msgstr ""
1987
  msgid "Import all of your Facebook events into MEC."
1988
  msgstr ""
1989
 
1990
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1991
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1992
  msgid "Documentation"
1993
  msgstr ""
@@ -2315,7 +2315,7 @@ msgid "Featured"
2315
  msgstr ""
2316
 
2317
  #: app/features/labels.php:118 app/features/labels.php:143
2318
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2319
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2320
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2321
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2350,8 +2350,8 @@ msgid "Event %s"
2350
  msgstr ""
2351
 
2352
  #: app/features/locations.php:59 app/features/mec.php:404
2353
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2354
- #: app/libraries/main.php:5281
2355
  msgid "Locations"
2356
  msgstr ""
2357
 
@@ -2456,7 +2456,7 @@ msgstr ""
2456
  msgid "Don't show map in single event page"
2457
  msgstr ""
2458
 
2459
- #: app/features/locations.php:356 app/libraries/main.php:5315
2460
  #, fuzzy
2461
  #| msgid "Location"
2462
  msgid "Other Locations"
@@ -2509,14 +2509,14 @@ msgstr ""
2509
  msgid "Support"
2510
  msgstr ""
2511
 
2512
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2513
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2514
- #: app/libraries/main.php:5283
2515
  msgid "Organizers"
2516
  msgstr ""
2517
 
2518
  #: app/features/mec.php:413 app/features/mec.php:437
2519
- #: app/features/mec/dashboard.php:263
2520
  msgid "Shortcodes"
2521
  msgstr ""
2522
 
@@ -2855,7 +2855,7 @@ msgstr ""
2855
  #: app/features/mec/notifications.php:905
2856
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2857
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2858
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
2859
  msgid "Verified"
2860
  msgstr ""
2861
 
@@ -2879,7 +2879,7 @@ msgstr ""
2879
  msgid "Modern Events Calendar (Lite)"
2880
  msgstr ""
2881
 
2882
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
2883
  msgctxt "plugin rate"
2884
  msgid "Rate the plugin ★★★★★"
2885
  msgstr ""
@@ -2888,7 +2888,7 @@ msgstr ""
2888
  msgid "Update"
2889
  msgstr ""
2890
 
2891
- #: app/features/mec/dashboard.php:92
2892
  #, php-format
2893
  msgid ""
2894
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2896,103 +2896,103 @@ msgid ""
2896
  "Spots, etc you should upgrade to the Pro version."
2897
  msgstr ""
2898
 
2899
- #: app/features/mec/dashboard.php:92
2900
  msgid "lite"
2901
  msgstr ""
2902
 
2903
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2904
  msgid "GO PREMIUM"
2905
  msgstr ""
2906
 
2907
- #: app/features/mec/dashboard.php:98
2908
  #, php-format
2909
  msgid ""
2910
  "Easily get a discount coupon by rating us on %s or following and reposting "
2911
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2912
  msgstr ""
2913
 
2914
- #: app/features/mec/dashboard.php:98
2915
  msgid "WordPress"
2916
  msgstr ""
2917
 
2918
- #: app/features/mec/dashboard.php:98
2919
  msgid "Copouns!"
2920
  msgstr ""
2921
 
2922
- #: app/features/mec/dashboard.php:127
2923
  msgid "Getting started with Modern Events Calendar"
2924
  msgstr ""
2925
 
2926
- #: app/features/mec/dashboard.php:128
2927
  msgid ""
2928
  "In this short video, you can learn how to make an event and put a calendar "
2929
  "on your website. Please watch this 2 minutes video to the end."
2930
  msgstr ""
2931
 
2932
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
2933
  msgid "MEC Activate"
2934
  msgstr ""
2935
 
2936
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
2937
  msgid "Activate Addons"
2938
  msgstr ""
2939
 
2940
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
2941
  msgid "You cannot access this section."
2942
  msgstr ""
2943
 
2944
- #: app/features/mec/dashboard.php:174
2945
  msgid ""
2946
  "In order to use all plugin features and options, please enter your purchase "
2947
  "code."
2948
  msgstr ""
2949
 
2950
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
2951
  msgid "Upcoming Events"
2952
  msgstr ""
2953
 
2954
- #: app/features/mec/dashboard.php:312
2955
  msgid "Popular Gateways"
2956
  msgstr ""
2957
 
2958
- #: app/features/mec/dashboard.php:366
2959
  msgid "Total Bookings"
2960
  msgstr ""
2961
 
2962
- #: app/features/mec/dashboard.php:393
2963
  msgid "This Month"
2964
  msgstr ""
2965
 
2966
- #: app/features/mec/dashboard.php:394
2967
  msgid "Last Month"
2968
  msgstr ""
2969
 
2970
- #: app/features/mec/dashboard.php:395
2971
  msgid "This Year"
2972
  msgstr ""
2973
 
2974
- #: app/features/mec/dashboard.php:396
2975
  msgid "Last Year"
2976
  msgstr ""
2977
 
2978
- #: app/features/mec/dashboard.php:408
2979
  msgid "Bar"
2980
  msgstr ""
2981
 
2982
- #: app/features/mec/dashboard.php:409
2983
  msgid "Line"
2984
  msgstr ""
2985
 
2986
- #: app/features/mec/dashboard.php:411
2987
  msgid "Filter"
2988
  msgstr ""
2989
 
2990
- #: app/features/mec/dashboard.php:427
2991
  #, php-format
2992
  msgid "Total Sells (%s)"
2993
  msgstr ""
2994
 
2995
- #: app/features/mec/dashboard.php:448
2996
  msgid "Change Log"
2997
  msgstr ""
2998
 
@@ -3950,7 +3950,7 @@ msgstr ""
3950
  #: app/features/mec/meta_boxes/search_form.php:693
3951
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3952
  #: app/features/search.php:79 app/features/speakers.php:61
3953
- #: app/features/speakers.php:269 app/libraries/main.php:5286
3954
  #: app/libraries/skins.php:936
3955
  msgid "Speaker"
3956
  msgstr ""
@@ -4885,7 +4885,7 @@ msgid "You can enable/disable Schema scripts"
4885
  msgstr ""
4886
 
4887
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4888
- #: app/libraries/main.php:5290
4889
  msgid "Weekdays"
4890
  msgstr ""
4891
 
@@ -5995,7 +5995,7 @@ msgstr "például john@smith.com"
5995
  msgid "eg. https://webnus.net"
5996
  msgstr ""
5997
 
5998
- #: app/features/organizers.php:312 app/libraries/main.php:5314
5999
  #: app/skins/single.php:862
6000
  msgid "Other Organizers"
6001
  msgstr ""
@@ -6053,7 +6053,7 @@ msgstr ""
6053
  msgid "No bookings found!"
6054
  msgstr ""
6055
 
6056
- #: app/features/search.php:87 app/libraries/main.php:5280
6057
  msgid "label"
6058
  msgstr ""
6059
 
@@ -6078,7 +6078,7 @@ msgid "No search result."
6078
  msgstr ""
6079
 
6080
  #: app/features/search_bar/search_result.php:11
6081
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6082
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6083
  #: app/skins/single.php:160 app/skins/single.php:753
6084
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6165,70 +6165,70 @@ msgstr ""
6165
  msgid "Download Invoice"
6166
  msgstr ""
6167
 
6168
- #: app/libraries/factory.php:156
6169
  msgid "M.E. Calendar"
6170
  msgstr ""
6171
 
6172
- #: app/libraries/factory.php:195
6173
  msgctxt "plugin link"
6174
  msgid "Upgrade to Pro Version"
6175
  msgstr ""
6176
 
6177
- #: app/libraries/factory.php:213
6178
  msgctxt "plugin link"
6179
  msgid "Settings"
6180
  msgstr ""
6181
 
6182
- #: app/libraries/factory.php:218
6183
  msgctxt "plugin link"
6184
  msgid "Upgrade"
6185
  msgstr ""
6186
 
6187
- #: app/libraries/factory.php:361
6188
  msgid "day"
6189
  msgstr ""
6190
 
6191
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6192
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6193
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6194
  msgid "days"
6195
  msgstr "Nap"
6196
 
6197
- #: app/libraries/factory.php:363
6198
  msgid "hour"
6199
  msgstr ""
6200
 
6201
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6202
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6203
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6204
  msgid "hours"
6205
  msgstr "óra"
6206
 
6207
- #: app/libraries/factory.php:365
6208
  msgid "minute"
6209
  msgstr ""
6210
 
6211
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6212
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6213
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6214
  msgid "minutes"
6215
  msgstr "perc"
6216
 
6217
- #: app/libraries/factory.php:367
6218
  msgid "second"
6219
  msgstr ""
6220
 
6221
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6222
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6223
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6224
  msgid "seconds"
6225
  msgstr "másodperc"
6226
 
6227
- #: app/libraries/factory.php:415
6228
  msgid "MEC Single Sidebar"
6229
  msgstr ""
6230
 
6231
- #: app/libraries/factory.php:416
6232
  msgid "Custom sidebar for single and modal page of MEC."
6233
  msgstr ""
6234
 
@@ -6299,31 +6299,31 @@ msgstr ""
6299
  msgid "Tile View"
6300
  msgstr ""
6301
 
6302
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6303
  msgid "SU"
6304
  msgstr ""
6305
 
6306
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6307
  msgid "MO"
6308
  msgstr ""
6309
 
6310
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6311
  msgid "TU"
6312
  msgstr ""
6313
 
6314
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6315
  msgid "WE"
6316
  msgstr ""
6317
 
6318
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6319
  msgid "TH"
6320
  msgstr ""
6321
 
6322
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6323
  msgid "FR"
6324
  msgstr ""
6325
 
6326
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6327
  msgid "SA"
6328
  msgstr ""
6329
 
@@ -6628,7 +6628,7 @@ msgstr ""
6628
  msgid "Free"
6629
  msgstr "Ingyenes"
6630
 
6631
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
6632
  msgid "M.E. Calender"
6633
  msgstr ""
6634
 
@@ -6637,96 +6637,96 @@ msgstr ""
6637
  msgid "Copy of %s"
6638
  msgstr ""
6639
 
6640
- #: app/libraries/main.php:4669
6641
  msgid "Booked an event."
6642
  msgstr ""
6643
 
6644
- #: app/libraries/main.php:4710
6645
  #, php-format
6646
  msgid "%s booked %s event."
6647
  msgstr ""
6648
 
6649
- #: app/libraries/main.php:5275
6650
  msgid "Taxonomies"
6651
  msgstr ""
6652
 
6653
- #: app/libraries/main.php:5277
6654
  msgid "Category Plural Label"
6655
  msgstr ""
6656
 
6657
- #: app/libraries/main.php:5278
6658
  msgid "Category Singular Label"
6659
  msgstr ""
6660
 
6661
- #: app/libraries/main.php:5279
6662
  msgid "Label Plural Label"
6663
  msgstr ""
6664
 
6665
- #: app/libraries/main.php:5280
6666
  msgid "Label Singular Label"
6667
  msgstr ""
6668
 
6669
- #: app/libraries/main.php:5281
6670
  msgid "Location Plural Label"
6671
  msgstr ""
6672
 
6673
- #: app/libraries/main.php:5282
6674
  msgid "Location Singular Label"
6675
  msgstr ""
6676
 
6677
- #: app/libraries/main.php:5283
6678
  msgid "Organizer Plural Label"
6679
  msgstr ""
6680
 
6681
- #: app/libraries/main.php:5284
6682
  msgid "Organizer Singular Label"
6683
  msgstr ""
6684
 
6685
- #: app/libraries/main.php:5285
6686
  msgid "Speaker Plural Label"
6687
  msgstr ""
6688
 
6689
- #: app/libraries/main.php:5286
6690
  msgid "Speaker Singular Label"
6691
  msgstr ""
6692
 
6693
- #: app/libraries/main.php:5292
6694
  msgid "Sunday abbreviation"
6695
  msgstr ""
6696
 
6697
- #: app/libraries/main.php:5293
6698
  msgid "Monday abbreviation"
6699
  msgstr ""
6700
 
6701
- #: app/libraries/main.php:5294
6702
  msgid "Tuesday abbreviation"
6703
  msgstr ""
6704
 
6705
- #: app/libraries/main.php:5295
6706
  msgid "Wednesday abbreviation"
6707
  msgstr ""
6708
 
6709
- #: app/libraries/main.php:5296
6710
  msgid "Thursday abbreviation"
6711
  msgstr ""
6712
 
6713
- #: app/libraries/main.php:5297
6714
  msgid "Friday abbreviation"
6715
  msgstr ""
6716
 
6717
- #: app/libraries/main.php:5298
6718
  msgid "Saturday abbreviation"
6719
  msgstr ""
6720
 
6721
- #: app/libraries/main.php:5302
6722
  msgid "Others"
6723
  msgstr ""
6724
 
6725
- #: app/libraries/main.php:5304
6726
  msgid "Booking Success Message"
6727
  msgstr ""
6728
 
6729
- #: app/libraries/main.php:5304
6730
  msgid ""
6731
  "Thanks for your booking. Your tickets booked, booking verification might be "
6732
  "needed, please check your email."
@@ -6734,11 +6734,11 @@ msgstr ""
6734
  "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
6735
  "jóváhagyásra lesz szükség!"
6736
 
6737
- #: app/libraries/main.php:5305 app/widgets/single.php:131
6738
  msgid "Register Button"
6739
  msgstr ""
6740
 
6741
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
6742
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6743
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6744
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -6755,11 +6755,11 @@ msgstr ""
6755
  msgid "REGISTER"
6756
  msgstr "REGISZTRÁCIÓ"
6757
 
6758
- #: app/libraries/main.php:5306
6759
  msgid "View Detail Button"
6760
  msgstr ""
6761
 
6762
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
6763
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6764
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6765
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -6770,79 +6770,80 @@ msgstr ""
6770
  msgid "View Detail"
6771
  msgstr ""
6772
 
6773
- #: app/libraries/main.php:5307
6774
  msgid "Event Detail Button"
6775
  msgstr ""
6776
 
6777
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
6778
  msgid "Event Detail"
6779
  msgstr ""
6780
 
6781
- #: app/libraries/main.php:5309
6782
  msgid "More Info Link"
6783
  msgstr ""
6784
 
6785
- #: app/libraries/main.php:5312
6786
  msgid "Ticket (Singular)"
6787
  msgstr ""
6788
 
6789
- #: app/libraries/main.php:5313
6790
  msgid "Tickets (Plural)"
6791
  msgstr ""
6792
 
6793
- #: app/libraries/main.php:5399
6794
  msgid "EventON"
6795
  msgstr ""
6796
 
6797
- #: app/libraries/main.php:5400
6798
  msgid "The Events Calendar"
6799
  msgstr ""
6800
 
6801
- #: app/libraries/main.php:5401
6802
  msgid "Events Schedule WP Plugin"
6803
  msgstr ""
6804
 
6805
- #: app/libraries/main.php:5402
6806
  msgid "Calendarize It"
6807
  msgstr ""
6808
 
6809
- #: app/libraries/main.php:5403
6810
  msgid "Event Espresso"
6811
  msgstr ""
6812
 
6813
- #: app/libraries/main.php:5404
6814
  msgid "Events Manager (Recurring)"
6815
  msgstr ""
6816
 
6817
- #: app/libraries/main.php:5405
6818
  msgid "Events Manager (Single)"
6819
  msgstr ""
6820
 
6821
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
6822
  msgid "Confirmed"
6823
  msgstr ""
6824
 
6825
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
6826
  msgid "Rejected"
6827
  msgstr ""
6828
 
6829
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
6830
  msgid "Pending"
6831
  msgstr ""
6832
 
6833
- #: app/libraries/main.php:5529
6834
  msgid "Waiting"
6835
  msgstr ""
6836
 
6837
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
6838
  msgid "Skin controller does not exist."
6839
  msgstr ""
6840
 
6841
- #: app/libraries/main.php:5848
6842
  msgid "Sold Out"
6843
  msgstr ""
6844
 
6845
- #: app/libraries/main.php:5856
6846
  #, fuzzy
6847
  #| msgid "First name"
6848
  msgid "Last Few Tickets"
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: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
66
  msgstr ""
67
 
68
  #: app/features/contextual.php:55 app/features/mec.php:414
69
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
70
  #: app/features/mec/support.php:20 app/libraries/main.php:594
71
  msgid "Settings"
72
  msgstr ""
242
  msgstr ""
243
 
244
  #: app/features/events.php:157 app/features/ix/export.php:34
245
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
246
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
247
  #: app/skins/yearly_view/tpl.php:68
248
  msgid "Events"
262
  msgid "Add Event"
263
  msgstr ""
264
 
265
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
266
  msgid "Add New Event"
267
  msgstr ""
268
 
301
  #: app/features/mec/meta_boxes/search_form.php:575
302
  #: app/features/mec/meta_boxes/search_form.php:672
303
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
304
+ #: app/features/search.php:67 app/libraries/main.php:5281
305
  #: app/libraries/skins.php:858 app/skins/single.php:566
306
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
307
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
311
 
312
  #: app/features/events.php:183 app/features/events.php:3275
313
  #: app/features/fes/form.php:757 app/features/mec.php:402
314
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
315
  msgid "Categories"
316
  msgstr ""
317
 
429
  #: app/features/organizers.php:58 app/features/organizers.php:204
430
  #: app/features/organizers.php:260 app/features/organizers.php:262
431
  #: app/features/organizers.php:271 app/features/search.php:75
432
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
433
  #: app/skins/single.php:812 app/skins/single/default.php:217
434
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
435
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
437
  msgstr "Szervező"
438
 
439
  #: app/features/events.php:337 app/features/events.php:1172
440
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
441
  #: app/skins/single.php:589 app/skins/single/default.php:126
442
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
443
  #: app/skins/single/modern.php:208
486
  #: app/features/events.php:3555 app/features/fes/form.php:247
487
  #: app/features/fes/form.php:251 app/features/ix.php:3510
488
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
489
+ #: app/features/mec/dashboard.php:401
490
  #: app/features/mec/meta_boxes/display_options.php:48
491
  #: app/features/mec/meta_boxes/display_options.php:228
492
  #: app/features/mec/meta_boxes/display_options.php:406
524
  #: app/features/events.php:3555 app/features/fes/form.php:287
525
  #: app/features/fes/form.php:291 app/features/ix.php:3510
526
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
527
+ #: app/features/mec/dashboard.php:402
528
  msgid "End Date"
529
  msgstr ""
530
 
643
  msgstr ""
644
 
645
  #: app/features/events.php:743 app/features/fes/form.php:349
646
+ #: app/features/mec/dashboard.php:404
647
  #: app/skins/default_full_calendar/tpl.php:69
648
  #: app/skins/full_calendar/tpl.php:110
649
  msgid "Daily"
668
  msgstr ""
669
 
670
  #: app/features/events.php:778 app/features/fes/form.php:354
671
+ #: app/features/mec/dashboard.php:405
672
  #: app/skins/default_full_calendar/tpl.php:67
673
  #: app/skins/full_calendar/tpl.php:108
674
  msgid "Monthly"
675
  msgstr ""
676
 
677
  #: app/features/events.php:785 app/features/fes/form.php:355
678
+ #: app/features/mec/dashboard.php:406
679
  #: app/skins/default_full_calendar/tpl.php:66
680
  #: app/skins/full_calendar/tpl.php:107
681
  msgid "Yearly"
794
  #: app/features/events.php:1168 app/features/events.php:3513
795
  #: app/features/events.php:3555 app/features/fes/form.php:727
796
  #: app/features/ix.php:3510 app/features/ix.php:3551
797
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5313
798
  #: app/widgets/single.php:103
799
  msgid "Event Cost"
800
  msgstr ""
824
  "multiple day occurrences."
825
  msgstr ""
826
 
827
+ #: app/features/events.php:1264 app/libraries/render.php:506
828
  msgid "Day 1"
829
  msgstr ""
830
 
896
  #: app/features/events.php:1445 app/features/fes/form.php:851
897
  #: app/features/mec.php:410 app/features/mec/modules.php:52
898
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
899
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
900
  #: app/modules/speakers/details.php:18
901
  msgid "Speakers"
902
  msgstr ""
911
  msgstr ""
912
 
913
  #: app/features/events.php:1479 app/features/events.php:1485
914
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
915
  msgid "Event Link"
916
  msgstr ""
917
 
932
  msgstr ""
933
 
934
  #: app/features/events.php:1495 app/features/events.php:1508
935
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
936
  #: app/skins/single.php:673 app/skins/single/default.php:140
937
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
938
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
997
  msgstr ""
998
 
999
  #: app/features/events.php:1653 app/libraries/book.php:60
1000
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1001
  msgid "Tickets"
1002
  msgstr ""
1003
 
1346
  #: app/features/mec/meta_boxes/search_form.php:679
1347
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1348
  #: app/features/search.php:71 app/libraries/main.php:2236
1349
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1350
  #: app/skins/single.php:493 app/skins/single.php:924
1351
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1352
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1411
 
1412
  #: app/features/events.php:3808 app/features/fes.php:223
1413
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1414
+ #: app/libraries/main.php:5315
1415
  msgid "Ticket"
1416
  msgstr ""
1417
 
1583
 
1584
  #: app/features/fes/form.php:783 app/features/labels.php:61
1585
  #: app/features/labels.php:221 app/features/mec.php:403
1586
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1587
  #: app/skins/single.php:702 app/skins/single/default.php:155
1588
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1589
  #: app/skins/single/modern.php:223
1987
  msgid "Import all of your Facebook events into MEC."
1988
  msgstr ""
1989
 
1990
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
1991
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1992
  msgid "Documentation"
1993
  msgstr ""
2315
  msgstr ""
2316
 
2317
  #: app/features/labels.php:118 app/features/labels.php:143
2318
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2319
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2320
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2321
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2350
  msgstr ""
2351
 
2352
  #: app/features/locations.php:59 app/features/mec.php:404
2353
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2354
+ #: app/libraries/main.php:5284
2355
  msgid "Locations"
2356
  msgstr ""
2357
 
2456
  msgid "Don't show map in single event page"
2457
  msgstr ""
2458
 
2459
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2460
  #, fuzzy
2461
  #| msgid "Location"
2462
  msgid "Other Locations"
2509
  msgid "Support"
2510
  msgstr ""
2511
 
2512
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2513
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2514
+ #: app/libraries/main.php:5286
2515
  msgid "Organizers"
2516
  msgstr ""
2517
 
2518
  #: app/features/mec.php:413 app/features/mec.php:437
2519
+ #: app/features/mec/dashboard.php:264
2520
  msgid "Shortcodes"
2521
  msgstr ""
2522
 
2855
  #: app/features/mec/notifications.php:905
2856
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2857
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2858
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
2859
  msgid "Verified"
2860
  msgstr ""
2861
 
2879
  msgid "Modern Events Calendar (Lite)"
2880
  msgstr ""
2881
 
2882
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
2883
  msgctxt "plugin rate"
2884
  msgid "Rate the plugin ★★★★★"
2885
  msgstr ""
2888
  msgid "Update"
2889
  msgstr ""
2890
 
2891
+ #: app/features/mec/dashboard.php:96
2892
  #, php-format
2893
  msgid ""
2894
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2896
  "Spots, etc you should upgrade to the Pro version."
2897
  msgstr ""
2898
 
2899
+ #: app/features/mec/dashboard.php:96
2900
  msgid "lite"
2901
  msgstr ""
2902
 
2903
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
2904
  msgid "GO PREMIUM"
2905
  msgstr ""
2906
 
2907
+ #: app/features/mec/dashboard.php:102
2908
  #, php-format
2909
  msgid ""
2910
  "Easily get a discount coupon by rating us on %s or following and reposting "
2911
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2912
  msgstr ""
2913
 
2914
+ #: app/features/mec/dashboard.php:102
2915
  msgid "WordPress"
2916
  msgstr ""
2917
 
2918
+ #: app/features/mec/dashboard.php:102
2919
  msgid "Copouns!"
2920
  msgstr ""
2921
 
2922
+ #: app/features/mec/dashboard.php:131
2923
  msgid "Getting started with Modern Events Calendar"
2924
  msgstr ""
2925
 
2926
+ #: app/features/mec/dashboard.php:132
2927
  msgid ""
2928
  "In this short video, you can learn how to make an event and put a calendar "
2929
  "on your website. Please watch this 2 minutes video to the end."
2930
  msgstr ""
2931
 
2932
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
2933
  msgid "MEC Activate"
2934
  msgstr ""
2935
 
2936
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
2937
  msgid "Activate Addons"
2938
  msgstr ""
2939
 
2940
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
2941
  msgid "You cannot access this section."
2942
  msgstr ""
2943
 
2944
+ #: app/features/mec/dashboard.php:178
2945
  msgid ""
2946
  "In order to use all plugin features and options, please enter your purchase "
2947
  "code."
2948
  msgstr ""
2949
 
2950
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
2951
  msgid "Upcoming Events"
2952
  msgstr ""
2953
 
2954
+ #: app/features/mec/dashboard.php:313
2955
  msgid "Popular Gateways"
2956
  msgstr ""
2957
 
2958
+ #: app/features/mec/dashboard.php:367
2959
  msgid "Total Bookings"
2960
  msgstr ""
2961
 
2962
+ #: app/features/mec/dashboard.php:394
2963
  msgid "This Month"
2964
  msgstr ""
2965
 
2966
+ #: app/features/mec/dashboard.php:395
2967
  msgid "Last Month"
2968
  msgstr ""
2969
 
2970
+ #: app/features/mec/dashboard.php:396
2971
  msgid "This Year"
2972
  msgstr ""
2973
 
2974
+ #: app/features/mec/dashboard.php:397
2975
  msgid "Last Year"
2976
  msgstr ""
2977
 
2978
+ #: app/features/mec/dashboard.php:409
2979
  msgid "Bar"
2980
  msgstr ""
2981
 
2982
+ #: app/features/mec/dashboard.php:410
2983
  msgid "Line"
2984
  msgstr ""
2985
 
2986
+ #: app/features/mec/dashboard.php:412
2987
  msgid "Filter"
2988
  msgstr ""
2989
 
2990
+ #: app/features/mec/dashboard.php:428
2991
  #, php-format
2992
  msgid "Total Sells (%s)"
2993
  msgstr ""
2994
 
2995
+ #: app/features/mec/dashboard.php:449
2996
  msgid "Change Log"
2997
  msgstr ""
2998
 
3950
  #: app/features/mec/meta_boxes/search_form.php:693
3951
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3952
  #: app/features/search.php:79 app/features/speakers.php:61
3953
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
3954
  #: app/libraries/skins.php:936
3955
  msgid "Speaker"
3956
  msgstr ""
4885
  msgstr ""
4886
 
4887
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4888
+ #: app/libraries/main.php:5293
4889
  msgid "Weekdays"
4890
  msgstr ""
4891
 
5995
  msgid "eg. https://webnus.net"
5996
  msgstr ""
5997
 
5998
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
5999
  #: app/skins/single.php:862
6000
  msgid "Other Organizers"
6001
  msgstr ""
6053
  msgid "No bookings found!"
6054
  msgstr ""
6055
 
6056
+ #: app/features/search.php:87 app/libraries/main.php:5283
6057
  msgid "label"
6058
  msgstr ""
6059
 
6078
  msgstr ""
6079
 
6080
  #: app/features/search_bar/search_result.php:11
6081
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6082
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6083
  #: app/skins/single.php:160 app/skins/single.php:753
6084
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6165
  msgid "Download Invoice"
6166
  msgstr ""
6167
 
6168
+ #: app/libraries/factory.php:159
6169
  msgid "M.E. Calendar"
6170
  msgstr ""
6171
 
6172
+ #: app/libraries/factory.php:198
6173
  msgctxt "plugin link"
6174
  msgid "Upgrade to Pro Version"
6175
  msgstr ""
6176
 
6177
+ #: app/libraries/factory.php:216
6178
  msgctxt "plugin link"
6179
  msgid "Settings"
6180
  msgstr ""
6181
 
6182
+ #: app/libraries/factory.php:221
6183
  msgctxt "plugin link"
6184
  msgid "Upgrade"
6185
  msgstr ""
6186
 
6187
+ #: app/libraries/factory.php:356
6188
  msgid "day"
6189
  msgstr ""
6190
 
6191
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6192
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6193
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6194
  msgid "days"
6195
  msgstr "Nap"
6196
 
6197
+ #: app/libraries/factory.php:358
6198
  msgid "hour"
6199
  msgstr ""
6200
 
6201
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6202
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6203
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6204
  msgid "hours"
6205
  msgstr "óra"
6206
 
6207
+ #: app/libraries/factory.php:360
6208
  msgid "minute"
6209
  msgstr ""
6210
 
6211
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6212
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6213
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6214
  msgid "minutes"
6215
  msgstr "perc"
6216
 
6217
+ #: app/libraries/factory.php:362
6218
  msgid "second"
6219
  msgstr ""
6220
 
6221
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6222
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6223
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6224
  msgid "seconds"
6225
  msgstr "másodperc"
6226
 
6227
+ #: app/libraries/factory.php:411
6228
  msgid "MEC Single Sidebar"
6229
  msgstr ""
6230
 
6231
+ #: app/libraries/factory.php:412
6232
  msgid "Custom sidebar for single and modal page of MEC."
6233
  msgstr ""
6234
 
6299
  msgid "Tile View"
6300
  msgstr ""
6301
 
6302
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6303
  msgid "SU"
6304
  msgstr ""
6305
 
6306
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6307
  msgid "MO"
6308
  msgstr ""
6309
 
6310
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6311
  msgid "TU"
6312
  msgstr ""
6313
 
6314
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6315
  msgid "WE"
6316
  msgstr ""
6317
 
6318
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6319
  msgid "TH"
6320
  msgstr ""
6321
 
6322
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6323
  msgid "FR"
6324
  msgstr ""
6325
 
6326
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6327
  msgid "SA"
6328
  msgstr ""
6329
 
6628
  msgid "Free"
6629
  msgstr "Ingyenes"
6630
 
6631
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
6632
  msgid "M.E. Calender"
6633
  msgstr ""
6634
 
6637
  msgid "Copy of %s"
6638
  msgstr ""
6639
 
6640
+ #: app/libraries/main.php:4672
6641
  msgid "Booked an event."
6642
  msgstr ""
6643
 
6644
+ #: app/libraries/main.php:4713
6645
  #, php-format
6646
  msgid "%s booked %s event."
6647
  msgstr ""
6648
 
6649
+ #: app/libraries/main.php:5278
6650
  msgid "Taxonomies"
6651
  msgstr ""
6652
 
6653
+ #: app/libraries/main.php:5280
6654
  msgid "Category Plural Label"
6655
  msgstr ""
6656
 
6657
+ #: app/libraries/main.php:5281
6658
  msgid "Category Singular Label"
6659
  msgstr ""
6660
 
6661
+ #: app/libraries/main.php:5282
6662
  msgid "Label Plural Label"
6663
  msgstr ""
6664
 
6665
+ #: app/libraries/main.php:5283
6666
  msgid "Label Singular Label"
6667
  msgstr ""
6668
 
6669
+ #: app/libraries/main.php:5284
6670
  msgid "Location Plural Label"
6671
  msgstr ""
6672
 
6673
+ #: app/libraries/main.php:5285
6674
  msgid "Location Singular Label"
6675
  msgstr ""
6676
 
6677
+ #: app/libraries/main.php:5286
6678
  msgid "Organizer Plural Label"
6679
  msgstr ""
6680
 
6681
+ #: app/libraries/main.php:5287
6682
  msgid "Organizer Singular Label"
6683
  msgstr ""
6684
 
6685
+ #: app/libraries/main.php:5288
6686
  msgid "Speaker Plural Label"
6687
  msgstr ""
6688
 
6689
+ #: app/libraries/main.php:5289
6690
  msgid "Speaker Singular Label"
6691
  msgstr ""
6692
 
6693
+ #: app/libraries/main.php:5295
6694
  msgid "Sunday abbreviation"
6695
  msgstr ""
6696
 
6697
+ #: app/libraries/main.php:5296
6698
  msgid "Monday abbreviation"
6699
  msgstr ""
6700
 
6701
+ #: app/libraries/main.php:5297
6702
  msgid "Tuesday abbreviation"
6703
  msgstr ""
6704
 
6705
+ #: app/libraries/main.php:5298
6706
  msgid "Wednesday abbreviation"
6707
  msgstr ""
6708
 
6709
+ #: app/libraries/main.php:5299
6710
  msgid "Thursday abbreviation"
6711
  msgstr ""
6712
 
6713
+ #: app/libraries/main.php:5300
6714
  msgid "Friday abbreviation"
6715
  msgstr ""
6716
 
6717
+ #: app/libraries/main.php:5301
6718
  msgid "Saturday abbreviation"
6719
  msgstr ""
6720
 
6721
+ #: app/libraries/main.php:5305
6722
  msgid "Others"
6723
  msgstr ""
6724
 
6725
+ #: app/libraries/main.php:5307
6726
  msgid "Booking Success Message"
6727
  msgstr ""
6728
 
6729
+ #: app/libraries/main.php:5307
6730
  msgid ""
6731
  "Thanks for your booking. Your tickets booked, booking verification might be "
6732
  "needed, please check your email."
6734
  "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
6735
  "jóváhagyásra lesz szükség!"
6736
 
6737
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
6738
  msgid "Register Button"
6739
  msgstr ""
6740
 
6741
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
6742
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6743
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6744
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6755
  msgid "REGISTER"
6756
  msgstr "REGISZTRÁCIÓ"
6757
 
6758
+ #: app/libraries/main.php:5309
6759
  msgid "View Detail Button"
6760
  msgstr ""
6761
 
6762
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
6763
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6764
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6765
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
6770
  msgid "View Detail"
6771
  msgstr ""
6772
 
6773
+ #: app/libraries/main.php:5310
6774
  msgid "Event Detail Button"
6775
  msgstr ""
6776
 
6777
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
6778
  msgid "Event Detail"
6779
  msgstr ""
6780
 
6781
+ #: app/libraries/main.php:5312
6782
  msgid "More Info Link"
6783
  msgstr ""
6784
 
6785
+ #: app/libraries/main.php:5315
6786
  msgid "Ticket (Singular)"
6787
  msgstr ""
6788
 
6789
+ #: app/libraries/main.php:5316
6790
  msgid "Tickets (Plural)"
6791
  msgstr ""
6792
 
6793
+ #: app/libraries/main.php:5402
6794
  msgid "EventON"
6795
  msgstr ""
6796
 
6797
+ #: app/libraries/main.php:5403
6798
  msgid "The Events Calendar"
6799
  msgstr ""
6800
 
6801
+ #: app/libraries/main.php:5404
6802
  msgid "Events Schedule WP Plugin"
6803
  msgstr ""
6804
 
6805
+ #: app/libraries/main.php:5405
6806
  msgid "Calendarize It"
6807
  msgstr ""
6808
 
6809
+ #: app/libraries/main.php:5406
6810
  msgid "Event Espresso"
6811
  msgstr ""
6812
 
6813
+ #: app/libraries/main.php:5407
6814
  msgid "Events Manager (Recurring)"
6815
  msgstr ""
6816
 
6817
+ #: app/libraries/main.php:5408
6818
  msgid "Events Manager (Single)"
6819
  msgstr ""
6820
 
6821
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
6822
  msgid "Confirmed"
6823
  msgstr ""
6824
 
6825
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
6826
  msgid "Rejected"
6827
  msgstr ""
6828
 
6829
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
6830
  msgid "Pending"
6831
  msgstr ""
6832
 
6833
+ #: app/libraries/main.php:5532
6834
  msgid "Waiting"
6835
  msgstr ""
6836
 
6837
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
6838
+ #: app/libraries/render.php:418
6839
  msgid "Skin controller does not exist."
6840
  msgstr ""
6841
 
6842
+ #: app/libraries/main.php:5851
6843
  msgid "Sold Out"
6844
  msgstr ""
6845
 
6846
+ #: app/libraries/main.php:5859
6847
  #, fuzzy
6848
  #| msgid "First name"
6849
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-it_IT.mo CHANGED
Binary file
languages/modern-events-calendar-lite-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -76,7 +76,7 @@ msgid "Event Color"
76
  msgstr "Colore Evento"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:414
79
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
80
  #: app/features/mec/support.php:20 app/libraries/main.php:594
81
  msgid "Settings"
82
  msgstr "Impostazioni"
@@ -252,7 +252,7 @@ msgid "MEC Activation"
252
  msgstr "Attivazione"
253
 
254
  #: app/features/events.php:157 app/features/ix/export.php:34
255
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
257
  #: app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
@@ -272,7 +272,7 @@ msgstr "Evento"
272
  msgid "Add Event"
273
  msgstr "Aggiungi Evento"
274
 
275
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
276
  msgid "Add New Event"
277
  msgstr "Aggiungi nuovo Evento"
278
 
@@ -311,7 +311,7 @@ msgstr "Nessun evento trovato nel cestino!"
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:5278
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
@@ -321,7 +321,7 @@ msgstr "Categoria"
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:5277
325
  msgid "Categories"
326
  msgstr "Categorie"
327
 
@@ -445,7 +445,7 @@ msgstr "Link"
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:5284 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 +453,7 @@ msgid "Organizer"
453
  msgstr "Organizzatore"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
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
@@ -502,7 +502,7 @@ msgstr "Data e Ora"
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -540,7 +540,7 @@ msgstr "PM"
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
  #: app/features/fes/form.php:291 app/features/ix.php:3510
542
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
- #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Data di fine"
546
 
@@ -669,7 +669,7 @@ msgid "Repeats"
669
  msgstr "Ripeti"
670
 
671
  #: app/features/events.php:743 app/features/fes/form.php:349
672
- #: app/features/mec/dashboard.php:403
673
  #: app/skins/default_full_calendar/tpl.php:69
674
  #: app/skins/full_calendar/tpl.php:110
675
  msgid "Daily"
@@ -694,14 +694,14 @@ msgid "Weekly"
694
  msgstr "Settimanale"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
- #: app/features/mec/dashboard.php:404
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Mensile"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
- #: app/features/mec/dashboard.php:405
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
@@ -830,7 +830,7 @@ msgstr "Il prossimo evento degli altri eventi"
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:5310
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Costo Evento"
@@ -862,7 +862,7 @@ msgid ""
862
  "multiple day occurrences."
863
  msgstr ""
864
 
865
- #: app/features/events.php:1264 app/libraries/render.php:466
866
  msgid "Day 1"
867
  msgstr ""
868
 
@@ -934,7 +934,7 @@ msgstr "Descrizione"
934
  #: app/features/events.php:1445 app/features/fes/form.php:851
935
  #: app/features/mec.php:410 app/features/mec/modules.php:52
936
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
937
- #: app/libraries/main.php:565 app/libraries/main.php:5285
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
@@ -951,7 +951,7 @@ msgid "Event Links"
951
  msgstr "Link dell'evento"
952
 
953
  #: app/features/events.php:1479 app/features/events.php:1485
954
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
955
  msgid "Event Link"
956
  msgstr "Link dell'evento"
957
 
@@ -978,7 +978,7 @@ msgid "URL Shortener"
978
  msgstr ""
979
 
980
  #: app/features/events.php:1495 app/features/events.php:1508
981
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
982
  #: app/skins/single.php:673 app/skins/single/default.php:140
983
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
984
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1050,7 +1050,7 @@ msgid "12"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Biglietto/ticket"
1056
 
@@ -1415,7 +1415,7 @@ msgstr "Limite partecipanti"
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1419
  #: app/skins/single.php:493 app/skins/single.php:924
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1480,7 +1480,7 @@ msgstr ""
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
- #: app/libraries/main.php:5312
1484
  msgid "Ticket"
1485
  msgstr "Ticket"
1486
 
@@ -1658,7 +1658,7 @@ msgstr "Rimuovi immagine"
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1662
  #: app/skins/single.php:702 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
@@ -2094,7 +2094,7 @@ msgstr "Importa dal calendario Facebook"
2094
  msgid "Import all of your Facebook events into MEC."
2095
  msgstr "Importa tutti gli eventi dal tuo Facebook in MEC."
2096
 
2097
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2098
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2099
  msgid "Documentation"
2100
  msgstr "Documentazione"
@@ -2466,7 +2466,7 @@ msgid "Featured"
2466
  msgstr "Immagine in evidenza"
2467
 
2468
  #: app/features/labels.php:118 app/features/labels.php:143
2469
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2470
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2471
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2472
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2501,8 +2501,8 @@ msgid "Event %s"
2501
  msgstr ""
2502
 
2503
  #: app/features/locations.php:59 app/features/mec.php:404
2504
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2505
- #: app/libraries/main.php:5281
2506
  msgid "Locations"
2507
  msgstr "Luoghi"
2508
 
@@ -2609,7 +2609,7 @@ msgstr "Seleziona immagine"
2609
  msgid "Don't show map in single event page"
2610
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2611
 
2612
- #: app/features/locations.php:356 app/libraries/main.php:5315
2613
  #, fuzzy
2614
  #| msgid "Search Locations"
2615
  msgid "Other Locations"
@@ -2668,14 +2668,14 @@ msgstr "Supporto"
2668
  msgid "Support"
2669
  msgstr "Supporto"
2670
 
2671
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2672
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2673
- #: app/libraries/main.php:5283
2674
  msgid "Organizers"
2675
  msgstr "Organizzatori"
2676
 
2677
  #: app/features/mec.php:413 app/features/mec.php:437
2678
- #: app/features/mec/dashboard.php:263
2679
  msgid "Shortcodes"
2680
  msgstr "Shortcode"
2681
 
@@ -3036,7 +3036,7 @@ msgstr ""
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:5527
3040
  msgid "Verified"
3041
  msgstr "Verificato"
3042
 
@@ -3062,7 +3062,7 @@ msgstr ""
3062
  msgid "Modern Events Calendar (Lite)"
3063
  msgstr "Calendario moderno degli eventi"
3064
 
3065
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3066
  msgctxt "plugin rate"
3067
  msgid "Rate the plugin ★★★★★"
3068
  msgstr ""
@@ -3073,7 +3073,7 @@ msgstr ""
3073
  msgid "Update"
3074
  msgstr "Aggiorna Etichetta"
3075
 
3076
- #: app/features/mec/dashboard.php:92
3077
  #, php-format
3078
  msgid ""
3079
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3081,111 +3081,111 @@ msgid ""
3081
  "Spots, etc you should upgrade to the Pro version."
3082
  msgstr ""
3083
 
3084
- #: app/features/mec/dashboard.php:92
3085
  msgid "lite"
3086
  msgstr ""
3087
 
3088
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3089
  msgid "GO PREMIUM"
3090
  msgstr ""
3091
 
3092
- #: app/features/mec/dashboard.php:98
3093
  #, php-format
3094
  msgid ""
3095
  "Easily get a discount coupon by rating us on %s or following and reposting "
3096
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3097
  msgstr ""
3098
 
3099
- #: app/features/mec/dashboard.php:98
3100
  #, fuzzy
3101
  #| msgid "Address"
3102
  msgid "WordPress"
3103
  msgstr "Indirizzo"
3104
 
3105
- #: app/features/mec/dashboard.php:98
3106
  msgid "Copouns!"
3107
  msgstr ""
3108
 
3109
- #: app/features/mec/dashboard.php:127
3110
  #, fuzzy
3111
  #| msgid "Modern Events Calendar"
3112
  msgid "Getting started with Modern Events Calendar"
3113
  msgstr "Calendario moderno degli eventi"
3114
 
3115
- #: app/features/mec/dashboard.php:128
3116
  msgid ""
3117
  "In this short video, you can learn how to make an event and put a calendar "
3118
  "on your website. Please watch this 2 minutes video to the end."
3119
  msgstr ""
3120
 
3121
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3122
  #, fuzzy
3123
  #| msgid "MEC Activation"
3124
  msgid "MEC Activate"
3125
  msgstr "Attivazione"
3126
 
3127
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3128
  #, fuzzy
3129
  #| msgid "MEC Activation"
3130
  msgid "Activate Addons"
3131
  msgstr "Attivazione"
3132
 
3133
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3134
  msgid "You cannot access this section."
3135
  msgstr ""
3136
 
3137
- #: app/features/mec/dashboard.php:174
3138
  msgid ""
3139
  "In order to use all plugin features and options, please enter your purchase "
3140
  "code."
3141
  msgstr ""
3142
 
3143
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3144
  msgid "Upcoming Events"
3145
  msgstr ""
3146
 
3147
- #: app/features/mec/dashboard.php:312
3148
  msgid "Popular Gateways"
3149
  msgstr ""
3150
 
3151
- #: app/features/mec/dashboard.php:366
3152
  msgid "Total Bookings"
3153
  msgstr ""
3154
 
3155
- #: app/features/mec/dashboard.php:393
3156
  msgid "This Month"
3157
  msgstr ""
3158
 
3159
- #: app/features/mec/dashboard.php:394
3160
  msgid "Last Month"
3161
  msgstr ""
3162
 
3163
- #: app/features/mec/dashboard.php:395
3164
  msgid "This Year"
3165
  msgstr ""
3166
 
3167
- #: app/features/mec/dashboard.php:396
3168
  msgid "Last Year"
3169
  msgstr ""
3170
 
3171
- #: app/features/mec/dashboard.php:408
3172
  msgid "Bar"
3173
  msgstr ""
3174
 
3175
- #: app/features/mec/dashboard.php:409
3176
  msgid "Line"
3177
  msgstr ""
3178
 
3179
- #: app/features/mec/dashboard.php:411
3180
  msgid "Filter"
3181
  msgstr ""
3182
 
3183
- #: app/features/mec/dashboard.php:427
3184
  #, php-format
3185
  msgid "Total Sells (%s)"
3186
  msgstr ""
3187
 
3188
- #: app/features/mec/dashboard.php:448
3189
  msgid "Change Log"
3190
  msgstr "Log modifiche"
3191
 
@@ -4175,7 +4175,7 @@ msgstr "Disattivato"
4175
  #: app/features/mec/meta_boxes/search_form.php:693
4176
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4177
  #: app/features/search.php:79 app/features/speakers.php:61
4178
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4179
  #: app/libraries/skins.php:936
4180
  msgid "Speaker"
4181
  msgstr ""
@@ -5173,7 +5173,7 @@ msgid "You can enable/disable Schema scripts"
5173
  msgstr ""
5174
 
5175
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5176
- #: app/libraries/main.php:5290
5177
  msgid "Weekdays"
5178
  msgstr "Settimanali"
5179
 
@@ -6444,7 +6444,7 @@ msgstr "es. mario@rossi.it"
6444
  msgid "eg. https://webnus.net"
6445
  msgstr "http://webnus.biz"
6446
 
6447
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6448
  #: app/skins/single.php:862
6449
  msgid "Other Organizers"
6450
  msgstr ""
@@ -6505,7 +6505,7 @@ msgstr ""
6505
  msgid "No bookings found!"
6506
  msgstr "Nessuna prenotazione trovata!"
6507
 
6508
- #: app/features/search.php:87 app/libraries/main.php:5280
6509
  msgid "label"
6510
  msgstr ""
6511
 
@@ -6532,7 +6532,7 @@ msgid "No search result."
6532
  msgstr ""
6533
 
6534
  #: app/features/search_bar/search_result.php:11
6535
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6536
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6537
  #: app/skins/single.php:160 app/skins/single.php:753
6538
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6639,70 +6639,70 @@ msgstr "Sconto"
6639
  msgid "Download Invoice"
6640
  msgstr ""
6641
 
6642
- #: app/libraries/factory.php:156
6643
  msgid "M.E. Calendar"
6644
  msgstr "Calendario"
6645
 
6646
- #: app/libraries/factory.php:195
6647
  msgctxt "plugin link"
6648
  msgid "Upgrade to Pro Version"
6649
  msgstr ""
6650
 
6651
- #: app/libraries/factory.php:213
6652
  msgctxt "plugin link"
6653
  msgid "Settings"
6654
  msgstr "Impostazioni"
6655
 
6656
- #: app/libraries/factory.php:218
6657
  msgctxt "plugin link"
6658
  msgid "Upgrade"
6659
  msgstr ""
6660
 
6661
- #: app/libraries/factory.php:361
6662
  msgid "day"
6663
  msgstr "giorno"
6664
 
6665
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6666
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6667
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6668
  msgid "days"
6669
  msgstr "giorni"
6670
 
6671
- #: app/libraries/factory.php:363
6672
  msgid "hour"
6673
  msgstr "ora"
6674
 
6675
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6676
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6677
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6678
  msgid "hours"
6679
  msgstr "ore"
6680
 
6681
- #: app/libraries/factory.php:365
6682
  msgid "minute"
6683
  msgstr "minuto"
6684
 
6685
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6686
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6687
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6688
  msgid "minutes"
6689
  msgstr "minuti"
6690
 
6691
- #: app/libraries/factory.php:367
6692
  msgid "second"
6693
  msgstr "secondo"
6694
 
6695
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6696
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6697
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6698
  msgid "seconds"
6699
  msgstr "secondi"
6700
 
6701
- #: app/libraries/factory.php:415
6702
  msgid "MEC Single Sidebar"
6703
  msgstr ""
6704
 
6705
- #: app/libraries/factory.php:416
6706
  msgid "Custom sidebar for single and modal page of MEC."
6707
  msgstr ""
6708
 
@@ -6777,31 +6777,31 @@ msgstr "Visualizza slider"
6777
  msgid "Tile View"
6778
  msgstr "Visualizza slider"
6779
 
6780
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6781
  msgid "SU"
6782
  msgstr "D"
6783
 
6784
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6785
  msgid "MO"
6786
  msgstr "L"
6787
 
6788
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6789
  msgid "TU"
6790
  msgstr "M"
6791
 
6792
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6793
  msgid "WE"
6794
  msgstr "M"
6795
 
6796
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6797
  msgid "TH"
6798
  msgstr "G"
6799
 
6800
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6801
  msgid "FR"
6802
  msgstr "V"
6803
 
6804
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6805
  msgid "SA"
6806
  msgstr "S"
6807
 
@@ -7130,7 +7130,7 @@ msgstr "Inserisci una etichetta per questa opzione"
7130
  msgid "Free"
7131
  msgstr "Gratuito"
7132
 
7133
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7134
  #, fuzzy
7135
  #| msgid "M.E. Calendar"
7136
  msgid "M.E. Calender"
@@ -7141,100 +7141,100 @@ msgstr "Calendario"
7141
  msgid "Copy of %s"
7142
  msgstr "Copia di %s"
7143
 
7144
- #: app/libraries/main.php:4669
7145
  msgid "Booked an event."
7146
  msgstr "Prenotato un evento."
7147
 
7148
- #: app/libraries/main.php:4710
7149
  #, php-format
7150
  msgid "%s booked %s event."
7151
  msgstr "%s ha prenotato l'evento %s."
7152
 
7153
- #: app/libraries/main.php:5275
7154
  msgid "Taxonomies"
7155
  msgstr ""
7156
 
7157
- #: app/libraries/main.php:5277
7158
  msgid "Category Plural Label"
7159
  msgstr ""
7160
 
7161
- #: app/libraries/main.php:5278
7162
  msgid "Category Singular Label"
7163
  msgstr ""
7164
 
7165
- #: app/libraries/main.php:5279
7166
  msgid "Label Plural Label"
7167
  msgstr ""
7168
 
7169
- #: app/libraries/main.php:5280
7170
  msgid "Label Singular Label"
7171
  msgstr ""
7172
 
7173
- #: app/libraries/main.php:5281
7174
  msgid "Location Plural Label"
7175
  msgstr ""
7176
 
7177
- #: app/libraries/main.php:5282
7178
  msgid "Location Singular Label"
7179
  msgstr ""
7180
 
7181
- #: app/libraries/main.php:5283
7182
  msgid "Organizer Plural Label"
7183
  msgstr ""
7184
 
7185
- #: app/libraries/main.php:5284
7186
  msgid "Organizer Singular Label"
7187
  msgstr ""
7188
 
7189
- #: app/libraries/main.php:5285
7190
  #, fuzzy
7191
  #| msgid "Search Labels"
7192
  msgid "Speaker Plural Label"
7193
  msgstr "Cerca etichette"
7194
 
7195
- #: app/libraries/main.php:5286
7196
  #, fuzzy
7197
  #| msgid "Popular Labels"
7198
  msgid "Speaker Singular Label"
7199
  msgstr "Etichette frequenti"
7200
 
7201
- #: app/libraries/main.php:5292
7202
  msgid "Sunday abbreviation"
7203
  msgstr ""
7204
 
7205
- #: app/libraries/main.php:5293
7206
  msgid "Monday abbreviation"
7207
  msgstr ""
7208
 
7209
- #: app/libraries/main.php:5294
7210
  msgid "Tuesday abbreviation"
7211
  msgstr ""
7212
 
7213
- #: app/libraries/main.php:5295
7214
  msgid "Wednesday abbreviation"
7215
  msgstr ""
7216
 
7217
- #: app/libraries/main.php:5296
7218
  msgid "Thursday abbreviation"
7219
  msgstr ""
7220
 
7221
- #: app/libraries/main.php:5297
7222
  msgid "Friday abbreviation"
7223
  msgstr ""
7224
 
7225
- #: app/libraries/main.php:5298
7226
  msgid "Saturday abbreviation"
7227
  msgstr ""
7228
 
7229
- #: app/libraries/main.php:5302
7230
  msgid "Others"
7231
  msgstr ""
7232
 
7233
- #: app/libraries/main.php:5304
7234
  msgid "Booking Success Message"
7235
  msgstr ""
7236
 
7237
- #: app/libraries/main.php:5304
7238
  msgid ""
7239
  "Thanks for your booking. Your tickets booked, booking verification might be "
7240
  "needed, please check your email."
@@ -7243,11 +7243,11 @@ msgstr ""
7243
  "essere necessario la verifica della prenotazione, si prega di controllare la "
7244
  "posta elettronica."
7245
 
7246
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7247
  msgid "Register Button"
7248
  msgstr ""
7249
 
7250
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7251
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7252
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7253
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7264,11 +7264,11 @@ msgstr ""
7264
  msgid "REGISTER"
7265
  msgstr "REGISTRA"
7266
 
7267
- #: app/libraries/main.php:5306
7268
  msgid "View Detail Button"
7269
  msgstr ""
7270
 
7271
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7272
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7273
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7274
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7279,85 +7279,86 @@ msgstr ""
7279
  msgid "View Detail"
7280
  msgstr "Visualizza dettaglio"
7281
 
7282
- #: app/libraries/main.php:5307
7283
  msgid "Event Detail Button"
7284
  msgstr ""
7285
 
7286
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7287
  msgid "Event Detail"
7288
  msgstr "Dettaglio evento"
7289
 
7290
- #: app/libraries/main.php:5309
7291
  msgid "More Info Link"
7292
  msgstr ""
7293
 
7294
- #: app/libraries/main.php:5312
7295
  msgid "Ticket (Singular)"
7296
  msgstr ""
7297
 
7298
- #: app/libraries/main.php:5313
7299
  msgid "Tickets (Plural)"
7300
  msgstr ""
7301
 
7302
- #: app/libraries/main.php:5399
7303
  msgid "EventON"
7304
  msgstr ""
7305
 
7306
- #: app/libraries/main.php:5400
7307
  msgid "The Events Calendar"
7308
  msgstr ""
7309
 
7310
- #: app/libraries/main.php:5401
7311
  msgid "Events Schedule WP Plugin"
7312
  msgstr ""
7313
 
7314
- #: app/libraries/main.php:5402
7315
  msgid "Calendarize It"
7316
  msgstr ""
7317
 
7318
- #: app/libraries/main.php:5403
7319
  #, fuzzy
7320
  #| msgid "No Search Options"
7321
  msgid "Event Espresso"
7322
  msgstr "Nessuna opzione di ricerca"
7323
 
7324
- #: app/libraries/main.php:5404
7325
  #, fuzzy
7326
  #| msgid "Event Repeating"
7327
  msgid "Events Manager (Recurring)"
7328
  msgstr "Ripetizione dell'evento"
7329
 
7330
- #: app/libraries/main.php:5405
7331
  #, fuzzy
7332
  #| msgid "Modern Events Calendar"
7333
  msgid "Events Manager (Single)"
7334
  msgstr "Calendario moderno degli eventi"
7335
 
7336
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7337
  msgid "Confirmed"
7338
  msgstr "Confermato"
7339
 
7340
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7341
  msgid "Rejected"
7342
  msgstr "Rifiutato"
7343
 
7344
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7345
  msgid "Pending"
7346
  msgstr "In attesa"
7347
 
7348
- #: app/libraries/main.php:5529
7349
  msgid "Waiting"
7350
  msgstr "In attesa"
7351
 
7352
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7353
  msgid "Skin controller does not exist."
7354
  msgstr "Non esiste il controllo dello stile."
7355
 
7356
- #: app/libraries/main.php:5848
7357
  msgid "Sold Out"
7358
  msgstr ""
7359
 
7360
- #: app/libraries/main.php:5856
7361
  #, fuzzy
7362
  #| msgid "Ticket"
7363
  msgid "Last Few Tickets"
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: it_IT\n"
76
  msgstr "Colore Evento"
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 "Impostazioni"
252
  msgstr "Attivazione"
253
 
254
  #: app/features/events.php:157 app/features/ix/export.php:34
255
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
257
  #: app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
272
  msgid "Add Event"
273
  msgstr "Aggiungi Evento"
274
 
275
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
276
  msgid "Add New Event"
277
  msgstr "Aggiungi nuovo Evento"
278
 
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
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 "Categorie"
327
 
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
  msgstr "Organizzatore"
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
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
  #: app/features/fes/form.php:291 app/features/ix.php:3510
542
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
+ #: app/features/mec/dashboard.php:402
544
  msgid "End Date"
545
  msgstr "Data di fine"
546
 
669
  msgstr "Ripeti"
670
 
671
  #: app/features/events.php:743 app/features/fes/form.php:349
672
+ #: app/features/mec/dashboard.php:404
673
  #: app/skins/default_full_calendar/tpl.php:69
674
  #: app/skins/full_calendar/tpl.php:110
675
  msgid "Daily"
694
  msgstr "Settimanale"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
+ #: app/features/mec/dashboard.php:405
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Mensile"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
+ #: app/features/mec/dashboard.php:406
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
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 "Costo Evento"
862
  "multiple day occurrences."
863
  msgstr ""
864
 
865
+ #: app/features/events.php:1264 app/libraries/render.php:506
866
  msgid "Day 1"
867
  msgstr ""
868
 
934
  #: app/features/events.php:1445 app/features/fes/form.php:851
935
  #: app/features/mec.php:410 app/features/mec/modules.php:52
936
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
937
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
951
  msgstr "Link dell'evento"
952
 
953
  #: app/features/events.php:1479 app/features/events.php:1485
954
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
955
  msgid "Event Link"
956
  msgstr "Link dell'evento"
957
 
978
  msgstr ""
979
 
980
  #: app/features/events.php:1495 app/features/events.php:1508
981
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
982
  #: app/skins/single.php:673 app/skins/single/default.php:140
983
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
984
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Biglietto/ticket"
1056
 
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1419
  #: app/skins/single.php:493 app/skins/single.php:924
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
+ #: app/libraries/main.php:5315
1484
  msgid "Ticket"
1485
  msgstr "Ticket"
1486
 
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1662
  #: app/skins/single.php:702 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
2094
  msgid "Import all of your Facebook events into MEC."
2095
  msgstr "Importa tutti gli eventi dal tuo Facebook in MEC."
2096
 
2097
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2098
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2099
  msgid "Documentation"
2100
  msgstr "Documentazione"
2466
  msgstr "Immagine in evidenza"
2467
 
2468
  #: app/features/labels.php:118 app/features/labels.php:143
2469
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2470
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2471
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2472
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2501
  msgstr ""
2502
 
2503
  #: app/features/locations.php:59 app/features/mec.php:404
2504
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2505
+ #: app/libraries/main.php:5284
2506
  msgid "Locations"
2507
  msgstr "Luoghi"
2508
 
2609
  msgid "Don't show map in single event page"
2610
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2611
 
2612
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2613
  #, fuzzy
2614
  #| msgid "Search Locations"
2615
  msgid "Other Locations"
2668
  msgid "Support"
2669
  msgstr "Supporto"
2670
 
2671
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2672
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2673
+ #: app/libraries/main.php:5286
2674
  msgid "Organizers"
2675
  msgstr "Organizzatori"
2676
 
2677
  #: app/features/mec.php:413 app/features/mec.php:437
2678
+ #: app/features/mec/dashboard.php:264
2679
  msgid "Shortcodes"
2680
  msgstr "Shortcode"
2681
 
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 "Verificato"
3042
 
3062
  msgid "Modern Events Calendar (Lite)"
3063
  msgstr "Calendario moderno degli eventi"
3064
 
3065
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3066
  msgctxt "plugin rate"
3067
  msgid "Rate the plugin ★★★★★"
3068
  msgstr ""
3073
  msgid "Update"
3074
  msgstr "Aggiorna Etichetta"
3075
 
3076
+ #: app/features/mec/dashboard.php:96
3077
  #, php-format
3078
  msgid ""
3079
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3081
  "Spots, etc you should upgrade to the Pro version."
3082
  msgstr ""
3083
 
3084
+ #: app/features/mec/dashboard.php:96
3085
  msgid "lite"
3086
  msgstr ""
3087
 
3088
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3089
  msgid "GO PREMIUM"
3090
  msgstr ""
3091
 
3092
+ #: app/features/mec/dashboard.php:102
3093
  #, php-format
3094
  msgid ""
3095
  "Easily get a discount coupon by rating us on %s or following and reposting "
3096
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3097
  msgstr ""
3098
 
3099
+ #: app/features/mec/dashboard.php:102
3100
  #, fuzzy
3101
  #| msgid "Address"
3102
  msgid "WordPress"
3103
  msgstr "Indirizzo"
3104
 
3105
+ #: app/features/mec/dashboard.php:102
3106
  msgid "Copouns!"
3107
  msgstr ""
3108
 
3109
+ #: app/features/mec/dashboard.php:131
3110
  #, fuzzy
3111
  #| msgid "Modern Events Calendar"
3112
  msgid "Getting started with Modern Events Calendar"
3113
  msgstr "Calendario moderno degli eventi"
3114
 
3115
+ #: app/features/mec/dashboard.php:132
3116
  msgid ""
3117
  "In this short video, you can learn how to make an event and put a calendar "
3118
  "on your website. Please watch this 2 minutes video to the end."
3119
  msgstr ""
3120
 
3121
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3122
  #, fuzzy
3123
  #| msgid "MEC Activation"
3124
  msgid "MEC Activate"
3125
  msgstr "Attivazione"
3126
 
3127
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3128
  #, fuzzy
3129
  #| msgid "MEC Activation"
3130
  msgid "Activate Addons"
3131
  msgstr "Attivazione"
3132
 
3133
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3134
  msgid "You cannot access this section."
3135
  msgstr ""
3136
 
3137
+ #: app/features/mec/dashboard.php:178
3138
  msgid ""
3139
  "In order to use all plugin features and options, please enter your purchase "
3140
  "code."
3141
  msgstr ""
3142
 
3143
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3144
  msgid "Upcoming Events"
3145
  msgstr ""
3146
 
3147
+ #: app/features/mec/dashboard.php:313
3148
  msgid "Popular Gateways"
3149
  msgstr ""
3150
 
3151
+ #: app/features/mec/dashboard.php:367
3152
  msgid "Total Bookings"
3153
  msgstr ""
3154
 
3155
+ #: app/features/mec/dashboard.php:394
3156
  msgid "This Month"
3157
  msgstr ""
3158
 
3159
+ #: app/features/mec/dashboard.php:395
3160
  msgid "Last Month"
3161
  msgstr ""
3162
 
3163
+ #: app/features/mec/dashboard.php:396
3164
  msgid "This Year"
3165
  msgstr ""
3166
 
3167
+ #: app/features/mec/dashboard.php:397
3168
  msgid "Last Year"
3169
  msgstr ""
3170
 
3171
+ #: app/features/mec/dashboard.php:409
3172
  msgid "Bar"
3173
  msgstr ""
3174
 
3175
+ #: app/features/mec/dashboard.php:410
3176
  msgid "Line"
3177
  msgstr ""
3178
 
3179
+ #: app/features/mec/dashboard.php:412
3180
  msgid "Filter"
3181
  msgstr ""
3182
 
3183
+ #: app/features/mec/dashboard.php:428
3184
  #, php-format
3185
  msgid "Total Sells (%s)"
3186
  msgstr ""
3187
 
3188
+ #: app/features/mec/dashboard.php:449
3189
  msgid "Change Log"
3190
  msgstr "Log modifiche"
3191
 
4175
  #: app/features/mec/meta_boxes/search_form.php:693
4176
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4177
  #: app/features/search.php:79 app/features/speakers.php:61
4178
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4179
  #: app/libraries/skins.php:936
4180
  msgid "Speaker"
4181
  msgstr ""
5173
  msgstr ""
5174
 
5175
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5176
+ #: app/libraries/main.php:5293
5177
  msgid "Weekdays"
5178
  msgstr "Settimanali"
5179
 
6444
  msgid "eg. https://webnus.net"
6445
  msgstr "http://webnus.biz"
6446
 
6447
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6448
  #: app/skins/single.php:862
6449
  msgid "Other Organizers"
6450
  msgstr ""
6505
  msgid "No bookings found!"
6506
  msgstr "Nessuna prenotazione trovata!"
6507
 
6508
+ #: app/features/search.php:87 app/libraries/main.php:5283
6509
  msgid "label"
6510
  msgstr ""
6511
 
6532
  msgstr ""
6533
 
6534
  #: app/features/search_bar/search_result.php:11
6535
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6536
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6537
  #: app/skins/single.php:160 app/skins/single.php:753
6538
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6639
  msgid "Download Invoice"
6640
  msgstr ""
6641
 
6642
+ #: app/libraries/factory.php:159
6643
  msgid "M.E. Calendar"
6644
  msgstr "Calendario"
6645
 
6646
+ #: app/libraries/factory.php:198
6647
  msgctxt "plugin link"
6648
  msgid "Upgrade to Pro Version"
6649
  msgstr ""
6650
 
6651
+ #: app/libraries/factory.php:216
6652
  msgctxt "plugin link"
6653
  msgid "Settings"
6654
  msgstr "Impostazioni"
6655
 
6656
+ #: app/libraries/factory.php:221
6657
  msgctxt "plugin link"
6658
  msgid "Upgrade"
6659
  msgstr ""
6660
 
6661
+ #: app/libraries/factory.php:356
6662
  msgid "day"
6663
  msgstr "giorno"
6664
 
6665
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6666
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6667
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6668
  msgid "days"
6669
  msgstr "giorni"
6670
 
6671
+ #: app/libraries/factory.php:358
6672
  msgid "hour"
6673
  msgstr "ora"
6674
 
6675
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6676
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6677
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6678
  msgid "hours"
6679
  msgstr "ore"
6680
 
6681
+ #: app/libraries/factory.php:360
6682
  msgid "minute"
6683
  msgstr "minuto"
6684
 
6685
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6686
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6687
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6688
  msgid "minutes"
6689
  msgstr "minuti"
6690
 
6691
+ #: app/libraries/factory.php:362
6692
  msgid "second"
6693
  msgstr "secondo"
6694
 
6695
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6696
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6697
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6698
  msgid "seconds"
6699
  msgstr "secondi"
6700
 
6701
+ #: app/libraries/factory.php:411
6702
  msgid "MEC Single Sidebar"
6703
  msgstr ""
6704
 
6705
+ #: app/libraries/factory.php:412
6706
  msgid "Custom sidebar for single and modal page of MEC."
6707
  msgstr ""
6708
 
6777
  msgid "Tile View"
6778
  msgstr "Visualizza slider"
6779
 
6780
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6781
  msgid "SU"
6782
  msgstr "D"
6783
 
6784
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6785
  msgid "MO"
6786
  msgstr "L"
6787
 
6788
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6789
  msgid "TU"
6790
  msgstr "M"
6791
 
6792
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6793
  msgid "WE"
6794
  msgstr "M"
6795
 
6796
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6797
  msgid "TH"
6798
  msgstr "G"
6799
 
6800
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6801
  msgid "FR"
6802
  msgstr "V"
6803
 
6804
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6805
  msgid "SA"
6806
  msgstr "S"
6807
 
7130
  msgid "Free"
7131
  msgstr "Gratuito"
7132
 
7133
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7134
  #, fuzzy
7135
  #| msgid "M.E. Calendar"
7136
  msgid "M.E. Calender"
7141
  msgid "Copy of %s"
7142
  msgstr "Copia di %s"
7143
 
7144
+ #: app/libraries/main.php:4672
7145
  msgid "Booked an event."
7146
  msgstr "Prenotato un evento."
7147
 
7148
+ #: app/libraries/main.php:4713
7149
  #, php-format
7150
  msgid "%s booked %s event."
7151
  msgstr "%s ha prenotato l'evento %s."
7152
 
7153
+ #: app/libraries/main.php:5278
7154
  msgid "Taxonomies"
7155
  msgstr ""
7156
 
7157
+ #: app/libraries/main.php:5280
7158
  msgid "Category Plural Label"
7159
  msgstr ""
7160
 
7161
+ #: app/libraries/main.php:5281
7162
  msgid "Category Singular Label"
7163
  msgstr ""
7164
 
7165
+ #: app/libraries/main.php:5282
7166
  msgid "Label Plural Label"
7167
  msgstr ""
7168
 
7169
+ #: app/libraries/main.php:5283
7170
  msgid "Label Singular Label"
7171
  msgstr ""
7172
 
7173
+ #: app/libraries/main.php:5284
7174
  msgid "Location Plural Label"
7175
  msgstr ""
7176
 
7177
+ #: app/libraries/main.php:5285
7178
  msgid "Location Singular Label"
7179
  msgstr ""
7180
 
7181
+ #: app/libraries/main.php:5286
7182
  msgid "Organizer Plural Label"
7183
  msgstr ""
7184
 
7185
+ #: app/libraries/main.php:5287
7186
  msgid "Organizer Singular Label"
7187
  msgstr ""
7188
 
7189
+ #: app/libraries/main.php:5288
7190
  #, fuzzy
7191
  #| msgid "Search Labels"
7192
  msgid "Speaker Plural Label"
7193
  msgstr "Cerca etichette"
7194
 
7195
+ #: app/libraries/main.php:5289
7196
  #, fuzzy
7197
  #| msgid "Popular Labels"
7198
  msgid "Speaker Singular Label"
7199
  msgstr "Etichette frequenti"
7200
 
7201
+ #: app/libraries/main.php:5295
7202
  msgid "Sunday abbreviation"
7203
  msgstr ""
7204
 
7205
+ #: app/libraries/main.php:5296
7206
  msgid "Monday abbreviation"
7207
  msgstr ""
7208
 
7209
+ #: app/libraries/main.php:5297
7210
  msgid "Tuesday abbreviation"
7211
  msgstr ""
7212
 
7213
+ #: app/libraries/main.php:5298
7214
  msgid "Wednesday abbreviation"
7215
  msgstr ""
7216
 
7217
+ #: app/libraries/main.php:5299
7218
  msgid "Thursday abbreviation"
7219
  msgstr ""
7220
 
7221
+ #: app/libraries/main.php:5300
7222
  msgid "Friday abbreviation"
7223
  msgstr ""
7224
 
7225
+ #: app/libraries/main.php:5301
7226
  msgid "Saturday abbreviation"
7227
  msgstr ""
7228
 
7229
+ #: app/libraries/main.php:5305
7230
  msgid "Others"
7231
  msgstr ""
7232
 
7233
+ #: app/libraries/main.php:5307
7234
  msgid "Booking Success Message"
7235
  msgstr ""
7236
 
7237
+ #: app/libraries/main.php:5307
7238
  msgid ""
7239
  "Thanks for your booking. Your tickets booked, booking verification might be "
7240
  "needed, please check your email."
7243
  "essere necessario la verifica della prenotazione, si prega di controllare la "
7244
  "posta elettronica."
7245
 
7246
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7247
  msgid "Register Button"
7248
  msgstr ""
7249
 
7250
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7251
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7252
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7253
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7264
  msgid "REGISTER"
7265
  msgstr "REGISTRA"
7266
 
7267
+ #: app/libraries/main.php:5309
7268
  msgid "View Detail Button"
7269
  msgstr ""
7270
 
7271
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7272
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7273
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7274
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7279
  msgid "View Detail"
7280
  msgstr "Visualizza dettaglio"
7281
 
7282
+ #: app/libraries/main.php:5310
7283
  msgid "Event Detail Button"
7284
  msgstr ""
7285
 
7286
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7287
  msgid "Event Detail"
7288
  msgstr "Dettaglio evento"
7289
 
7290
+ #: app/libraries/main.php:5312
7291
  msgid "More Info Link"
7292
  msgstr ""
7293
 
7294
+ #: app/libraries/main.php:5315
7295
  msgid "Ticket (Singular)"
7296
  msgstr ""
7297
 
7298
+ #: app/libraries/main.php:5316
7299
  msgid "Tickets (Plural)"
7300
  msgstr ""
7301
 
7302
+ #: app/libraries/main.php:5402
7303
  msgid "EventON"
7304
  msgstr ""
7305
 
7306
+ #: app/libraries/main.php:5403
7307
  msgid "The Events Calendar"
7308
  msgstr ""
7309
 
7310
+ #: app/libraries/main.php:5404
7311
  msgid "Events Schedule WP Plugin"
7312
  msgstr ""
7313
 
7314
+ #: app/libraries/main.php:5405
7315
  msgid "Calendarize It"
7316
  msgstr ""
7317
 
7318
+ #: app/libraries/main.php:5406
7319
  #, fuzzy
7320
  #| msgid "No Search Options"
7321
  msgid "Event Espresso"
7322
  msgstr "Nessuna opzione di ricerca"
7323
 
7324
+ #: app/libraries/main.php:5407
7325
  #, fuzzy
7326
  #| msgid "Event Repeating"
7327
  msgid "Events Manager (Recurring)"
7328
  msgstr "Ripetizione dell'evento"
7329
 
7330
+ #: app/libraries/main.php:5408
7331
  #, fuzzy
7332
  #| msgid "Modern Events Calendar"
7333
  msgid "Events Manager (Single)"
7334
  msgstr "Calendario moderno degli eventi"
7335
 
7336
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7337
  msgid "Confirmed"
7338
  msgstr "Confermato"
7339
 
7340
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7341
  msgid "Rejected"
7342
  msgstr "Rifiutato"
7343
 
7344
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7345
  msgid "Pending"
7346
  msgstr "In attesa"
7347
 
7348
+ #: app/libraries/main.php:5532
7349
  msgid "Waiting"
7350
  msgstr "In attesa"
7351
 
7352
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7353
+ #: app/libraries/render.php:418
7354
  msgid "Skin controller does not exist."
7355
  msgstr "Non esiste il controllo dello stile."
7356
 
7357
+ #: app/libraries/main.php:5851
7358
  msgid "Sold Out"
7359
  msgstr ""
7360
 
7361
+ #: app/libraries/main.php:5859
7362
  #, fuzzy
7363
  #| msgid "Ticket"
7364
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-nb_NO.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nb_NO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
@@ -70,7 +70,7 @@ msgid "Event Color"
70
  msgstr "Arrangementsfarge"
71
 
72
  #: app/features/contextual.php:55 app/features/mec.php:414
73
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
74
  #: app/features/mec/support.php:20 app/libraries/main.php:594
75
  msgid "Settings"
76
  msgstr "Innstillinger"
@@ -270,7 +270,7 @@ msgid "MEC Activation"
270
  msgstr "MEC Aktivisering"
271
 
272
  #: app/features/events.php:157 app/features/ix/export.php:34
273
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
275
  #: app/skins/yearly_view/tpl.php:68
276
  msgid "Events"
@@ -290,7 +290,7 @@ msgstr "Arrangement"
290
  msgid "Add Event"
291
  msgstr "Legg til Arrangement"
292
 
293
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
294
  msgid "Add New Event"
295
  msgstr "Legg til nytt arrangement"
296
 
@@ -329,7 +329,7 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
329
  #: app/features/mec/meta_boxes/search_form.php:575
330
  #: app/features/mec/meta_boxes/search_form.php:672
331
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
332
- #: app/features/search.php:67 app/libraries/main.php:5278
333
  #: app/libraries/skins.php:858 app/skins/single.php:566
334
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
335
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -339,7 +339,7 @@ msgstr "Kategori"
339
 
340
  #: app/features/events.php:183 app/features/events.php:3275
341
  #: app/features/fes/form.php:757 app/features/mec.php:402
342
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
343
  msgid "Categories"
344
  msgstr "Kategorier"
345
 
@@ -463,7 +463,7 @@ msgstr "Lenke"
463
  #: app/features/organizers.php:58 app/features/organizers.php:204
464
  #: app/features/organizers.php:260 app/features/organizers.php:262
465
  #: app/features/organizers.php:271 app/features/search.php:75
466
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
467
  #: app/skins/single.php:812 app/skins/single/default.php:217
468
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
469
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -471,7 +471,7 @@ msgid "Organizer"
471
  msgstr "Arrangør"
472
 
473
  #: app/features/events.php:337 app/features/events.php:1172
474
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
475
  #: app/skins/single.php:589 app/skins/single/default.php:126
476
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
477
  #: app/skins/single/modern.php:208
@@ -520,7 +520,7 @@ msgstr "Dato og klokkeslett"
520
  #: app/features/events.php:3555 app/features/fes/form.php:247
521
  #: app/features/fes/form.php:251 app/features/ix.php:3510
522
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
523
- #: app/features/mec/dashboard.php:400
524
  #: app/features/mec/meta_boxes/display_options.php:48
525
  #: app/features/mec/meta_boxes/display_options.php:228
526
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -558,7 +558,7 @@ msgstr "PM"
558
  #: app/features/events.php:3555 app/features/fes/form.php:287
559
  #: app/features/fes/form.php:291 app/features/ix.php:3510
560
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
561
- #: app/features/mec/dashboard.php:401
562
  msgid "End Date"
563
  msgstr "Sluttdato"
564
 
@@ -687,7 +687,7 @@ msgid "Repeats"
687
  msgstr "Gjentakelser"
688
 
689
  #: app/features/events.php:743 app/features/fes/form.php:349
690
- #: app/features/mec/dashboard.php:403
691
  #: app/skins/default_full_calendar/tpl.php:69
692
  #: app/skins/full_calendar/tpl.php:110
693
  msgid "Daily"
@@ -712,14 +712,14 @@ msgid "Weekly"
712
  msgstr "Ukentlig"
713
 
714
  #: app/features/events.php:778 app/features/fes/form.php:354
715
- #: app/features/mec/dashboard.php:404
716
  #: app/skins/default_full_calendar/tpl.php:67
717
  #: app/skins/full_calendar/tpl.php:108
718
  msgid "Monthly"
719
  msgstr "Månedlig"
720
 
721
  #: app/features/events.php:785 app/features/fes/form.php:355
722
- #: app/features/mec/dashboard.php:405
723
  #: app/skins/default_full_calendar/tpl.php:66
724
  #: app/skins/full_calendar/tpl.php:107
725
  msgid "Yearly"
@@ -848,7 +848,7 @@ msgstr "Neste forekomst av Andre Arrangement"
848
  #: app/features/events.php:1168 app/features/events.php:3513
849
  #: app/features/events.php:3555 app/features/fes/form.php:727
850
  #: app/features/ix.php:3510 app/features/ix.php:3551
851
- #: app/features/mec/settings.php:656 app/libraries/main.php:5310
852
  #: app/widgets/single.php:103
853
  msgid "Event Cost"
854
  msgstr "Kostnad for arrangementet"
@@ -880,7 +880,7 @@ msgid ""
880
  "multiple day occurrences."
881
  msgstr ""
882
 
883
- #: app/features/events.php:1264 app/libraries/render.php:466
884
  msgid "Day 1"
885
  msgstr "Dag 1"
886
 
@@ -954,7 +954,7 @@ msgstr "Beskrivelse"
954
  #: app/features/events.php:1445 app/features/fes/form.php:851
955
  #: app/features/mec.php:410 app/features/mec/modules.php:52
956
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
957
- #: app/libraries/main.php:565 app/libraries/main.php:5285
958
  #: app/modules/speakers/details.php:18
959
  msgid "Speakers"
960
  msgstr "Foredragsholdere"
@@ -971,7 +971,7 @@ msgid "Event Links"
971
  msgstr "Arrangemenslenker"
972
 
973
  #: app/features/events.php:1479 app/features/events.php:1485
974
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
975
  msgid "Event Link"
976
  msgstr "Arrangemenslenke"
977
 
@@ -998,7 +998,7 @@ msgid "URL Shortener"
998
  msgstr ""
999
 
1000
  #: app/features/events.php:1495 app/features/events.php:1508
1001
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
1002
  #: app/skins/single.php:673 app/skins/single/default.php:140
1003
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1004
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1069,7 +1069,7 @@ msgid "12"
1069
  msgstr ""
1070
 
1071
  #: app/features/events.php:1653 app/libraries/book.php:60
1072
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1073
  msgid "Tickets"
1074
  msgstr "Billetter"
1075
 
@@ -1432,7 +1432,7 @@ msgstr "Deltagerbegrensning"
1432
  #: app/features/mec/meta_boxes/search_form.php:679
1433
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1434
  #: app/features/search.php:71 app/libraries/main.php:2236
1435
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1436
  #: app/skins/single.php:493 app/skins/single.php:924
1437
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1438
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1497,7 +1497,7 @@ msgstr "%s E-post"
1497
 
1498
  #: app/features/events.php:3808 app/features/fes.php:223
1499
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1500
- #: app/libraries/main.php:5312
1501
  msgid "Ticket"
1502
  msgstr "Billett"
1503
 
@@ -1673,7 +1673,7 @@ msgstr "Fjern bilde"
1673
 
1674
  #: app/features/fes/form.php:783 app/features/labels.php:61
1675
  #: app/features/labels.php:221 app/features/mec.php:403
1676
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1677
  #: app/skins/single.php:702 app/skins/single/default.php:155
1678
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1679
  #: app/skins/single/modern.php:223
@@ -2095,7 +2095,7 @@ msgstr "Importer fra Facebook Kalender"
2095
  msgid "Import all of your Facebook events into MEC."
2096
  msgstr "Importer alle dine Facebook-hendelser i MEC."
2097
 
2098
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2099
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2100
  msgid "Documentation"
2101
  msgstr "Dokumentasjon"
@@ -2450,7 +2450,7 @@ msgid "Featured"
2450
  msgstr "Fremhevet"
2451
 
2452
  #: app/features/labels.php:118 app/features/labels.php:143
2453
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2454
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2455
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2456
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2485,8 +2485,8 @@ msgid "Event %s"
2485
  msgstr "Arrangement %s"
2486
 
2487
  #: app/features/locations.php:59 app/features/mec.php:404
2488
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2489
- #: app/libraries/main.php:5281
2490
  msgid "Locations"
2491
  msgstr "Steder"
2492
 
@@ -2593,7 +2593,7 @@ msgstr "Velg bilde"
2593
  msgid "Don't show map in single event page"
2594
  msgstr "Ikke vis kart i enkelt arrangement visning"
2595
 
2596
- #: app/features/locations.php:356 app/libraries/main.php:5315
2597
  #, fuzzy
2598
  #| msgid "Locations"
2599
  msgid "Other Locations"
@@ -2654,14 +2654,14 @@ msgstr "MEC-støtte"
2654
  msgid "Support"
2655
  msgstr "Support"
2656
 
2657
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2658
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2659
- #: app/libraries/main.php:5283
2660
  msgid "Organizers"
2661
  msgstr "Arrangører"
2662
 
2663
  #: app/features/mec.php:413 app/features/mec.php:437
2664
- #: app/features/mec/dashboard.php:263
2665
  msgid "Shortcodes"
2666
  msgstr "Shortcodes"
2667
 
@@ -3018,7 +3018,7 @@ msgstr "Innstillinger Lagret!"
3018
  #: app/features/mec/notifications.php:905
3019
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3020
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3021
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
3022
  msgid "Verified"
3023
  msgstr "Verifisert"
3024
 
@@ -3042,7 +3042,7 @@ msgstr "%s-mektig & enkelt å bruke Events Management System"
3042
  msgid "Modern Events Calendar (Lite)"
3043
  msgstr "Kalender for moderne arrangementer (lite)"
3044
 
3045
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3046
  msgctxt "plugin rate"
3047
  msgid "Rate the plugin ★★★★★"
3048
  msgstr "Ranger plugin ★ ★ ★ ★ ★"
@@ -3053,7 +3053,7 @@ msgstr "Ranger plugin ★ ★ ★ ★ ★"
3053
  msgid "Update"
3054
  msgstr "Oppdatere %s"
3055
 
3056
- #: app/features/mec/dashboard.php:92
3057
  #, fuzzy, php-format
3058
  #| msgid ""
3059
  #| "You're using %s version of Modern Events Calendar. To use advanced "
@@ -3068,58 +3068,58 @@ msgstr ""
3068
  "bruke avanserte booking system, moderne skins som agenda, tidsplan, murverk, "
3069
  "årlig visning, tilgjengelige spots, etc bør du %s til Pro-versjonen."
3070
 
3071
- #: app/features/mec/dashboard.php:92
3072
  msgid "lite"
3073
  msgstr "lett"
3074
 
3075
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3076
  msgid "GO PREMIUM"
3077
  msgstr "GO PREMIUM"
3078
 
3079
- #: app/features/mec/dashboard.php:98
3080
  #, php-format
3081
  msgid ""
3082
  "Easily get a discount coupon by rating us on %s or following and reposting "
3083
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3084
  msgstr ""
3085
 
3086
- #: app/features/mec/dashboard.php:98
3087
  #, fuzzy
3088
  #| msgid "Address"
3089
  msgid "WordPress"
3090
  msgstr "Adresse"
3091
 
3092
- #: app/features/mec/dashboard.php:98
3093
  msgid "Copouns!"
3094
  msgstr ""
3095
 
3096
- #: app/features/mec/dashboard.php:127
3097
  #, fuzzy
3098
  #| msgid "Modern Events Calendar"
3099
  msgid "Getting started with Modern Events Calendar"
3100
  msgstr "Modern Events Calendar"
3101
 
3102
- #: app/features/mec/dashboard.php:128
3103
  msgid ""
3104
  "In this short video, you can learn how to make an event and put a calendar "
3105
  "on your website. Please watch this 2 minutes video to the end."
3106
  msgstr ""
3107
 
3108
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3109
  msgid "MEC Activate"
3110
  msgstr "MEC Aktivisering"
3111
 
3112
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3113
  #, fuzzy
3114
  #| msgid "Activate License"
3115
  msgid "Activate Addons"
3116
  msgstr "Aktiver Lisens"
3117
 
3118
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3119
  msgid "You cannot access this section."
3120
  msgstr ""
3121
 
3122
- #: app/features/mec/dashboard.php:174
3123
  msgid ""
3124
  "In order to use all plugin features and options, please enter your purchase "
3125
  "code."
@@ -3127,52 +3127,52 @@ msgstr ""
3127
  "For å bruke alle plugin funksjoner og alternativer, vennligst skriv inn din "
3128
  "kjøpskode."
3129
 
3130
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3131
  msgid "Upcoming Events"
3132
  msgstr "Kommende arrangementer"
3133
 
3134
- #: app/features/mec/dashboard.php:312
3135
  msgid "Popular Gateways"
3136
  msgstr "Populære Gatewayer"
3137
 
3138
- #: app/features/mec/dashboard.php:366
3139
  msgid "Total Bookings"
3140
  msgstr "Totalt Antall Bestillinger"
3141
 
3142
- #: app/features/mec/dashboard.php:393
3143
  msgid "This Month"
3144
  msgstr "Denne måneden"
3145
 
3146
- #: app/features/mec/dashboard.php:394
3147
  msgid "Last Month"
3148
  msgstr "Siste måned"
3149
 
3150
- #: app/features/mec/dashboard.php:395
3151
  msgid "This Year"
3152
  msgstr "Dette Året"
3153
 
3154
- #: app/features/mec/dashboard.php:396
3155
  msgid "Last Year"
3156
  msgstr "Siste År"
3157
 
3158
- #: app/features/mec/dashboard.php:408
3159
  msgid "Bar"
3160
  msgstr "Stolpe"
3161
 
3162
- #: app/features/mec/dashboard.php:409
3163
  msgid "Line"
3164
  msgstr "Linje"
3165
 
3166
- #: app/features/mec/dashboard.php:411
3167
  msgid "Filter"
3168
  msgstr "Filter"
3169
 
3170
- #: app/features/mec/dashboard.php:427
3171
  #, php-format
3172
  msgid "Total Sells (%s)"
3173
  msgstr "Totalt salg (% s)"
3174
 
3175
- #: app/features/mec/dashboard.php:448
3176
  msgid "Change Log"
3177
  msgstr "Endringslogg"
3178
 
@@ -4161,7 +4161,7 @@ msgstr "Deaktivert"
4161
  #: app/features/mec/meta_boxes/search_form.php:693
4162
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4163
  #: app/features/search.php:79 app/features/speakers.php:61
4164
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4165
  #: app/libraries/skins.php:936
4166
  msgid "Speaker"
4167
  msgstr "Foredragsholder"
@@ -5161,7 +5161,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:5290
5165
  msgid "Weekdays"
5166
  msgstr "Ukedager"
5167
 
@@ -6418,7 +6418,7 @@ msgstr "f.eks. Ola Nordmann"
6418
  msgid "eg. https://webnus.net"
6419
  msgstr "F.eks. https://webnus.net"
6420
 
6421
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6422
  #: app/skins/single.php:862
6423
  msgid "Other Organizers"
6424
  msgstr "Andre Arrangører"
@@ -6479,7 +6479,7 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
6479
  msgid "No bookings found!"
6480
  msgstr "Ingen bestillinger funnet!"
6481
 
6482
- #: app/features/search.php:87 app/libraries/main.php:5280
6483
  msgid "label"
6484
  msgstr "etikett"
6485
 
@@ -6506,7 +6506,7 @@ msgid "No search result."
6506
  msgstr ""
6507
 
6508
  #: app/features/search_bar/search_result.php:11
6509
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6510
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6511
  #: app/skins/single.php:160 app/skins/single.php:753
6512
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6599,70 +6599,70 @@ msgstr "Rabatt"
6599
  msgid "Download Invoice"
6600
  msgstr "Last ned Faktura"
6601
 
6602
- #: app/libraries/factory.php:156
6603
  msgid "M.E. Calendar"
6604
  msgstr "ME Kalender"
6605
 
6606
- #: app/libraries/factory.php:195
6607
  msgctxt "plugin link"
6608
  msgid "Upgrade to Pro Version"
6609
  msgstr "Oppgrader til Pro versjon"
6610
 
6611
- #: app/libraries/factory.php:213
6612
  msgctxt "plugin link"
6613
  msgid "Settings"
6614
  msgstr "Innstillinger"
6615
 
6616
- #: app/libraries/factory.php:218
6617
  msgctxt "plugin link"
6618
  msgid "Upgrade"
6619
  msgstr "Oppgrader"
6620
 
6621
- #: app/libraries/factory.php:361
6622
  msgid "day"
6623
  msgstr "dag"
6624
 
6625
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6626
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6627
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6628
  msgid "days"
6629
  msgstr "dager"
6630
 
6631
- #: app/libraries/factory.php:363
6632
  msgid "hour"
6633
  msgstr "time"
6634
 
6635
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6636
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6637
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6638
  msgid "hours"
6639
  msgstr "timer"
6640
 
6641
- #: app/libraries/factory.php:365
6642
  msgid "minute"
6643
  msgstr "minutt"
6644
 
6645
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6646
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6647
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6648
  msgid "minutes"
6649
  msgstr "minutter"
6650
 
6651
- #: app/libraries/factory.php:367
6652
  msgid "second"
6653
  msgstr "sekund"
6654
 
6655
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6656
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6657
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6658
  msgid "seconds"
6659
  msgstr "sekunder"
6660
 
6661
- #: app/libraries/factory.php:415
6662
  msgid "MEC Single Sidebar"
6663
  msgstr "MEC Singel Sidebar"
6664
 
6665
- #: app/libraries/factory.php:416
6666
  msgid "Custom sidebar for single and modal page of MEC."
6667
  msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
6668
 
@@ -6737,31 +6737,31 @@ msgstr "Tidstabell Visning"
6737
  msgid "Tile View"
6738
  msgstr "Tidstabell Visning"
6739
 
6740
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6741
  msgid "SU"
6742
  msgstr "SØN"
6743
 
6744
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6745
  msgid "MO"
6746
  msgstr "MAN"
6747
 
6748
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6749
  msgid "TU"
6750
  msgstr "TIRS"
6751
 
6752
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6753
  msgid "WE"
6754
  msgstr "ONS"
6755
 
6756
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6757
  msgid "TH"
6758
  msgstr "TORS"
6759
 
6760
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6761
  msgid "FR"
6762
  msgstr "FRE"
6763
 
6764
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6765
  msgid "SA"
6766
  msgstr "LØR"
6767
 
@@ -7088,7 +7088,7 @@ msgstr "Sett inn en etikett for dette alternativet"
7088
  msgid "Free"
7089
  msgstr "Gratis"
7090
 
7091
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7092
  #, fuzzy
7093
  #| msgid "M.E. Calendar"
7094
  msgid "M.E. Calender"
@@ -7099,96 +7099,96 @@ msgstr "ME Kalender"
7099
  msgid "Copy of %s"
7100
  msgstr "Kopi av %s"
7101
 
7102
- #: app/libraries/main.php:4669
7103
  msgid "Booked an event."
7104
  msgstr "Bestilte ett arrangement."
7105
 
7106
- #: app/libraries/main.php:4710
7107
  #, php-format
7108
  msgid "%s booked %s event."
7109
  msgstr "%s bestilt %s arrangement."
7110
 
7111
- #: app/libraries/main.php:5275
7112
  msgid "Taxonomies"
7113
  msgstr "Taxonomies"
7114
 
7115
- #: app/libraries/main.php:5277
7116
  msgid "Category Plural Label"
7117
  msgstr "Kategori Fler Etikett"
7118
 
7119
- #: app/libraries/main.php:5278
7120
  msgid "Category Singular Label"
7121
  msgstr "Kategori Singel Tittel"
7122
 
7123
- #: app/libraries/main.php:5279
7124
  msgid "Label Plural Label"
7125
  msgstr "Etiketter Flertall"
7126
 
7127
- #: app/libraries/main.php:5280
7128
  msgid "Label Singular Label"
7129
  msgstr "Etiketter Entall"
7130
 
7131
- #: app/libraries/main.php:5281
7132
  msgid "Location Plural Label"
7133
  msgstr "Lokasjon Flertall Etiketter"
7134
 
7135
- #: app/libraries/main.php:5282
7136
  msgid "Location Singular Label"
7137
  msgstr "Plasseringen Entall Etikett"
7138
 
7139
- #: app/libraries/main.php:5283
7140
  msgid "Organizer Plural Label"
7141
  msgstr "Arrangør Flertall etikett"
7142
 
7143
- #: app/libraries/main.php:5284
7144
  msgid "Organizer Singular Label"
7145
  msgstr "Arrangør Enkel Etikett"
7146
 
7147
- #: app/libraries/main.php:5285
7148
  msgid "Speaker Plural Label"
7149
  msgstr "Instruktør/Foredragsholder flere etiketter"
7150
 
7151
- #: app/libraries/main.php:5286
7152
  msgid "Speaker Singular Label"
7153
  msgstr "Instruktør/Foredragsholder enkelt etikett"
7154
 
7155
- #: app/libraries/main.php:5292
7156
  msgid "Sunday abbreviation"
7157
  msgstr "Forkortelser på søndager"
7158
 
7159
- #: app/libraries/main.php:5293
7160
  msgid "Monday abbreviation"
7161
  msgstr "Mandag forkortelse"
7162
 
7163
- #: app/libraries/main.php:5294
7164
  msgid "Tuesday abbreviation"
7165
  msgstr "Tirsdag forkortelse"
7166
 
7167
- #: app/libraries/main.php:5295
7168
  msgid "Wednesday abbreviation"
7169
  msgstr "Onsdag forkortelse"
7170
 
7171
- #: app/libraries/main.php:5296
7172
  msgid "Thursday abbreviation"
7173
  msgstr "Torsdag forkortelse"
7174
 
7175
- #: app/libraries/main.php:5297
7176
  msgid "Friday abbreviation"
7177
  msgstr "Fredag forkortelse"
7178
 
7179
- #: app/libraries/main.php:5298
7180
  msgid "Saturday abbreviation"
7181
  msgstr "Lørdag forkortelse"
7182
 
7183
- #: app/libraries/main.php:5302
7184
  msgid "Others"
7185
  msgstr "Øvrige"
7186
 
7187
- #: app/libraries/main.php:5304
7188
  msgid "Booking Success Message"
7189
  msgstr "Melding ved vellykket bestilling"
7190
 
7191
- #: app/libraries/main.php:5304
7192
  msgid ""
7193
  "Thanks for your booking. Your tickets booked, booking verification might be "
7194
  "needed, please check your email."
@@ -7196,11 +7196,11 @@ msgstr ""
7196
  "Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
7197
  "bekreftelse. Vennligst sjekk din epost."
7198
 
7199
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7200
  msgid "Register Button"
7201
  msgstr "Registreringsknapp"
7202
 
7203
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7204
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7205
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7206
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7217,11 +7217,11 @@ msgstr "Registreringsknapp"
7217
  msgid "REGISTER"
7218
  msgstr "Registrere"
7219
 
7220
- #: app/libraries/main.php:5306
7221
  msgid "View Detail Button"
7222
  msgstr "Se Detalj Knapp"
7223
 
7224
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7225
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7226
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7227
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7232,87 +7232,88 @@ msgstr "Se Detalj Knapp"
7232
  msgid "View Detail"
7233
  msgstr "Se detaljer"
7234
 
7235
- #: app/libraries/main.php:5307
7236
  msgid "Event Detail Button"
7237
  msgstr "Knapp for arrangementsdetaljer"
7238
 
7239
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7240
  msgid "Event Detail"
7241
  msgstr "Arrangement Detaljer"
7242
 
7243
- #: app/libraries/main.php:5309
7244
  msgid "More Info Link"
7245
  msgstr "Mer Info Lenke"
7246
 
7247
- #: app/libraries/main.php:5312
7248
  msgid "Ticket (Singular)"
7249
  msgstr "Billett (Singel)"
7250
 
7251
- #: app/libraries/main.php:5313
7252
  msgid "Tickets (Plural)"
7253
  msgstr "Billetter (Flertall)"
7254
 
7255
- #: app/libraries/main.php:5399
7256
  msgid "EventON"
7257
  msgstr "EventON"
7258
 
7259
- #: app/libraries/main.php:5400
7260
  msgid "The Events Calendar"
7261
  msgstr "Aktivitetskalenderen"
7262
 
7263
- #: app/libraries/main.php:5401
7264
  msgid "Events Schedule WP Plugin"
7265
  msgstr "Arrangement Planlegging WP Plugin"
7266
 
7267
- #: app/libraries/main.php:5402
7268
  msgid "Calendarize It"
7269
  msgstr "HOP Kalender"
7270
 
7271
- #: app/libraries/main.php:5403
7272
  #, fuzzy
7273
  #| msgid "Event Speakers"
7274
  msgid "Event Espresso"
7275
  msgstr "Event høyttalere"
7276
 
7277
- #: app/libraries/main.php:5404
7278
  #, fuzzy
7279
  #| msgid "Event Repeating"
7280
  msgid "Events Manager (Recurring)"
7281
  msgstr "Gjentakende arrangement"
7282
 
7283
- #: app/libraries/main.php:5405
7284
  #, fuzzy
7285
  #| msgid "Modern Events Calendar (Lite)"
7286
  msgid "Events Manager (Single)"
7287
  msgstr "Kalender for moderne arrangementer (lite)"
7288
 
7289
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7290
  msgid "Confirmed"
7291
  msgstr "Bekreftet"
7292
 
7293
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7294
  msgid "Rejected"
7295
  msgstr "Avvist"
7296
 
7297
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7298
  msgid "Pending"
7299
  msgstr "Venter"
7300
 
7301
- #: app/libraries/main.php:5529
7302
  msgid "Waiting"
7303
  msgstr "Ventende"
7304
 
7305
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7306
  msgid "Skin controller does not exist."
7307
  msgstr "Skin kontroller eksisterer ikke."
7308
 
7309
- #: app/libraries/main.php:5848
7310
  #, fuzzy
7311
  #| msgid "Sold out!"
7312
  msgid "Sold Out"
7313
  msgstr "Utsolgt!"
7314
 
7315
- #: app/libraries/main.php:5856
7316
  #, fuzzy
7317
  #| msgid "Ticket"
7318
  msgid "Last Few Tickets"
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:49+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
70
  msgstr "Arrangementsfarge"
71
 
72
  #: app/features/contextual.php:55 app/features/mec.php:414
73
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
74
  #: app/features/mec/support.php:20 app/libraries/main.php:594
75
  msgid "Settings"
76
  msgstr "Innstillinger"
270
  msgstr "MEC Aktivisering"
271
 
272
  #: app/features/events.php:157 app/features/ix/export.php:34
273
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
275
  #: app/skins/yearly_view/tpl.php:68
276
  msgid "Events"
290
  msgid "Add Event"
291
  msgstr "Legg til Arrangement"
292
 
293
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
294
  msgid "Add New Event"
295
  msgstr "Legg til nytt arrangement"
296
 
329
  #: app/features/mec/meta_boxes/search_form.php:575
330
  #: app/features/mec/meta_boxes/search_form.php:672
331
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
332
+ #: app/features/search.php:67 app/libraries/main.php:5281
333
  #: app/libraries/skins.php:858 app/skins/single.php:566
334
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
335
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
339
 
340
  #: app/features/events.php:183 app/features/events.php:3275
341
  #: app/features/fes/form.php:757 app/features/mec.php:402
342
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
343
  msgid "Categories"
344
  msgstr "Kategorier"
345
 
463
  #: app/features/organizers.php:58 app/features/organizers.php:204
464
  #: app/features/organizers.php:260 app/features/organizers.php:262
465
  #: app/features/organizers.php:271 app/features/search.php:75
466
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
467
  #: app/skins/single.php:812 app/skins/single/default.php:217
468
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
469
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
471
  msgstr "Arrangør"
472
 
473
  #: app/features/events.php:337 app/features/events.php:1172
474
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
475
  #: app/skins/single.php:589 app/skins/single/default.php:126
476
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
477
  #: app/skins/single/modern.php:208
520
  #: app/features/events.php:3555 app/features/fes/form.php:247
521
  #: app/features/fes/form.php:251 app/features/ix.php:3510
522
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
523
+ #: app/features/mec/dashboard.php:401
524
  #: app/features/mec/meta_boxes/display_options.php:48
525
  #: app/features/mec/meta_boxes/display_options.php:228
526
  #: app/features/mec/meta_boxes/display_options.php:406
558
  #: app/features/events.php:3555 app/features/fes/form.php:287
559
  #: app/features/fes/form.php:291 app/features/ix.php:3510
560
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
561
+ #: app/features/mec/dashboard.php:402
562
  msgid "End Date"
563
  msgstr "Sluttdato"
564
 
687
  msgstr "Gjentakelser"
688
 
689
  #: app/features/events.php:743 app/features/fes/form.php:349
690
+ #: app/features/mec/dashboard.php:404
691
  #: app/skins/default_full_calendar/tpl.php:69
692
  #: app/skins/full_calendar/tpl.php:110
693
  msgid "Daily"
712
  msgstr "Ukentlig"
713
 
714
  #: app/features/events.php:778 app/features/fes/form.php:354
715
+ #: app/features/mec/dashboard.php:405
716
  #: app/skins/default_full_calendar/tpl.php:67
717
  #: app/skins/full_calendar/tpl.php:108
718
  msgid "Monthly"
719
  msgstr "Månedlig"
720
 
721
  #: app/features/events.php:785 app/features/fes/form.php:355
722
+ #: app/features/mec/dashboard.php:406
723
  #: app/skins/default_full_calendar/tpl.php:66
724
  #: app/skins/full_calendar/tpl.php:107
725
  msgid "Yearly"
848
  #: app/features/events.php:1168 app/features/events.php:3513
849
  #: app/features/events.php:3555 app/features/fes/form.php:727
850
  #: app/features/ix.php:3510 app/features/ix.php:3551
851
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5313
852
  #: app/widgets/single.php:103
853
  msgid "Event Cost"
854
  msgstr "Kostnad for arrangementet"
880
  "multiple day occurrences."
881
  msgstr ""
882
 
883
+ #: app/features/events.php:1264 app/libraries/render.php:506
884
  msgid "Day 1"
885
  msgstr "Dag 1"
886
 
954
  #: app/features/events.php:1445 app/features/fes/form.php:851
955
  #: app/features/mec.php:410 app/features/mec/modules.php:52
956
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
957
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
958
  #: app/modules/speakers/details.php:18
959
  msgid "Speakers"
960
  msgstr "Foredragsholdere"
971
  msgstr "Arrangemenslenker"
972
 
973
  #: app/features/events.php:1479 app/features/events.php:1485
974
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
975
  msgid "Event Link"
976
  msgstr "Arrangemenslenke"
977
 
998
  msgstr ""
999
 
1000
  #: app/features/events.php:1495 app/features/events.php:1508
1001
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
1002
  #: app/skins/single.php:673 app/skins/single/default.php:140
1003
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1004
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1069
  msgstr ""
1070
 
1071
  #: app/features/events.php:1653 app/libraries/book.php:60
1072
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1073
  msgid "Tickets"
1074
  msgstr "Billetter"
1075
 
1432
  #: app/features/mec/meta_boxes/search_form.php:679
1433
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1434
  #: app/features/search.php:71 app/libraries/main.php:2236
1435
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1436
  #: app/skins/single.php:493 app/skins/single.php:924
1437
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1438
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1497
 
1498
  #: app/features/events.php:3808 app/features/fes.php:223
1499
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1500
+ #: app/libraries/main.php:5315
1501
  msgid "Ticket"
1502
  msgstr "Billett"
1503
 
1673
 
1674
  #: app/features/fes/form.php:783 app/features/labels.php:61
1675
  #: app/features/labels.php:221 app/features/mec.php:403
1676
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1677
  #: app/skins/single.php:702 app/skins/single/default.php:155
1678
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1679
  #: app/skins/single/modern.php:223
2095
  msgid "Import all of your Facebook events into MEC."
2096
  msgstr "Importer alle dine Facebook-hendelser i MEC."
2097
 
2098
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2099
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2100
  msgid "Documentation"
2101
  msgstr "Dokumentasjon"
2450
  msgstr "Fremhevet"
2451
 
2452
  #: app/features/labels.php:118 app/features/labels.php:143
2453
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2454
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2455
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2456
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2485
  msgstr "Arrangement %s"
2486
 
2487
  #: app/features/locations.php:59 app/features/mec.php:404
2488
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2489
+ #: app/libraries/main.php:5284
2490
  msgid "Locations"
2491
  msgstr "Steder"
2492
 
2593
  msgid "Don't show map in single event page"
2594
  msgstr "Ikke vis kart i enkelt arrangement visning"
2595
 
2596
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2597
  #, fuzzy
2598
  #| msgid "Locations"
2599
  msgid "Other Locations"
2654
  msgid "Support"
2655
  msgstr "Support"
2656
 
2657
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2658
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2659
+ #: app/libraries/main.php:5286
2660
  msgid "Organizers"
2661
  msgstr "Arrangører"
2662
 
2663
  #: app/features/mec.php:413 app/features/mec.php:437
2664
+ #: app/features/mec/dashboard.php:264
2665
  msgid "Shortcodes"
2666
  msgstr "Shortcodes"
2667
 
3018
  #: app/features/mec/notifications.php:905
3019
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3020
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3021
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
3022
  msgid "Verified"
3023
  msgstr "Verifisert"
3024
 
3042
  msgid "Modern Events Calendar (Lite)"
3043
  msgstr "Kalender for moderne arrangementer (lite)"
3044
 
3045
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3046
  msgctxt "plugin rate"
3047
  msgid "Rate the plugin ★★★★★"
3048
  msgstr "Ranger plugin ★ ★ ★ ★ ★"
3053
  msgid "Update"
3054
  msgstr "Oppdatere %s"
3055
 
3056
+ #: app/features/mec/dashboard.php:96
3057
  #, fuzzy, php-format
3058
  #| msgid ""
3059
  #| "You're using %s version of Modern Events Calendar. To use advanced "
3068
  "bruke avanserte booking system, moderne skins som agenda, tidsplan, murverk, "
3069
  "årlig visning, tilgjengelige spots, etc bør du %s til Pro-versjonen."
3070
 
3071
+ #: app/features/mec/dashboard.php:96
3072
  msgid "lite"
3073
  msgstr "lett"
3074
 
3075
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3076
  msgid "GO PREMIUM"
3077
  msgstr "GO PREMIUM"
3078
 
3079
+ #: app/features/mec/dashboard.php:102
3080
  #, php-format
3081
  msgid ""
3082
  "Easily get a discount coupon by rating us on %s or following and reposting "
3083
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3084
  msgstr ""
3085
 
3086
+ #: app/features/mec/dashboard.php:102
3087
  #, fuzzy
3088
  #| msgid "Address"
3089
  msgid "WordPress"
3090
  msgstr "Adresse"
3091
 
3092
+ #: app/features/mec/dashboard.php:102
3093
  msgid "Copouns!"
3094
  msgstr ""
3095
 
3096
+ #: app/features/mec/dashboard.php:131
3097
  #, fuzzy
3098
  #| msgid "Modern Events Calendar"
3099
  msgid "Getting started with Modern Events Calendar"
3100
  msgstr "Modern Events Calendar"
3101
 
3102
+ #: app/features/mec/dashboard.php:132
3103
  msgid ""
3104
  "In this short video, you can learn how to make an event and put a calendar "
3105
  "on your website. Please watch this 2 minutes video to the end."
3106
  msgstr ""
3107
 
3108
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3109
  msgid "MEC Activate"
3110
  msgstr "MEC Aktivisering"
3111
 
3112
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3113
  #, fuzzy
3114
  #| msgid "Activate License"
3115
  msgid "Activate Addons"
3116
  msgstr "Aktiver Lisens"
3117
 
3118
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3119
  msgid "You cannot access this section."
3120
  msgstr ""
3121
 
3122
+ #: app/features/mec/dashboard.php:178
3123
  msgid ""
3124
  "In order to use all plugin features and options, please enter your purchase "
3125
  "code."
3127
  "For å bruke alle plugin funksjoner og alternativer, vennligst skriv inn din "
3128
  "kjøpskode."
3129
 
3130
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3131
  msgid "Upcoming Events"
3132
  msgstr "Kommende arrangementer"
3133
 
3134
+ #: app/features/mec/dashboard.php:313
3135
  msgid "Popular Gateways"
3136
  msgstr "Populære Gatewayer"
3137
 
3138
+ #: app/features/mec/dashboard.php:367
3139
  msgid "Total Bookings"
3140
  msgstr "Totalt Antall Bestillinger"
3141
 
3142
+ #: app/features/mec/dashboard.php:394
3143
  msgid "This Month"
3144
  msgstr "Denne måneden"
3145
 
3146
+ #: app/features/mec/dashboard.php:395
3147
  msgid "Last Month"
3148
  msgstr "Siste måned"
3149
 
3150
+ #: app/features/mec/dashboard.php:396
3151
  msgid "This Year"
3152
  msgstr "Dette Året"
3153
 
3154
+ #: app/features/mec/dashboard.php:397
3155
  msgid "Last Year"
3156
  msgstr "Siste År"
3157
 
3158
+ #: app/features/mec/dashboard.php:409
3159
  msgid "Bar"
3160
  msgstr "Stolpe"
3161
 
3162
+ #: app/features/mec/dashboard.php:410
3163
  msgid "Line"
3164
  msgstr "Linje"
3165
 
3166
+ #: app/features/mec/dashboard.php:412
3167
  msgid "Filter"
3168
  msgstr "Filter"
3169
 
3170
+ #: app/features/mec/dashboard.php:428
3171
  #, php-format
3172
  msgid "Total Sells (%s)"
3173
  msgstr "Totalt salg (% s)"
3174
 
3175
+ #: app/features/mec/dashboard.php:449
3176
  msgid "Change Log"
3177
  msgstr "Endringslogg"
3178
 
4161
  #: app/features/mec/meta_boxes/search_form.php:693
4162
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4163
  #: app/features/search.php:79 app/features/speakers.php:61
4164
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4165
  #: app/libraries/skins.php:936
4166
  msgid "Speaker"
4167
  msgstr "Foredragsholder"
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 "Ukedager"
5167
 
6418
  msgid "eg. https://webnus.net"
6419
  msgstr "F.eks. https://webnus.net"
6420
 
6421
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6422
  #: app/skins/single.php:862
6423
  msgid "Other Organizers"
6424
  msgstr "Andre Arrangører"
6479
  msgid "No bookings found!"
6480
  msgstr "Ingen bestillinger funnet!"
6481
 
6482
+ #: app/features/search.php:87 app/libraries/main.php:5283
6483
  msgid "label"
6484
  msgstr "etikett"
6485
 
6506
  msgstr ""
6507
 
6508
  #: app/features/search_bar/search_result.php:11
6509
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6510
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6511
  #: app/skins/single.php:160 app/skins/single.php:753
6512
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6599
  msgid "Download Invoice"
6600
  msgstr "Last ned Faktura"
6601
 
6602
+ #: app/libraries/factory.php:159
6603
  msgid "M.E. Calendar"
6604
  msgstr "ME Kalender"
6605
 
6606
+ #: app/libraries/factory.php:198
6607
  msgctxt "plugin link"
6608
  msgid "Upgrade to Pro Version"
6609
  msgstr "Oppgrader til Pro versjon"
6610
 
6611
+ #: app/libraries/factory.php:216
6612
  msgctxt "plugin link"
6613
  msgid "Settings"
6614
  msgstr "Innstillinger"
6615
 
6616
+ #: app/libraries/factory.php:221
6617
  msgctxt "plugin link"
6618
  msgid "Upgrade"
6619
  msgstr "Oppgrader"
6620
 
6621
+ #: app/libraries/factory.php:356
6622
  msgid "day"
6623
  msgstr "dag"
6624
 
6625
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6626
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6627
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6628
  msgid "days"
6629
  msgstr "dager"
6630
 
6631
+ #: app/libraries/factory.php:358
6632
  msgid "hour"
6633
  msgstr "time"
6634
 
6635
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6636
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6637
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6638
  msgid "hours"
6639
  msgstr "timer"
6640
 
6641
+ #: app/libraries/factory.php:360
6642
  msgid "minute"
6643
  msgstr "minutt"
6644
 
6645
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6646
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6647
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6648
  msgid "minutes"
6649
  msgstr "minutter"
6650
 
6651
+ #: app/libraries/factory.php:362
6652
  msgid "second"
6653
  msgstr "sekund"
6654
 
6655
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6656
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6657
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6658
  msgid "seconds"
6659
  msgstr "sekunder"
6660
 
6661
+ #: app/libraries/factory.php:411
6662
  msgid "MEC Single Sidebar"
6663
  msgstr "MEC Singel Sidebar"
6664
 
6665
+ #: app/libraries/factory.php:412
6666
  msgid "Custom sidebar for single and modal page of MEC."
6667
  msgstr "Tilpasset sidebar for enkle og modal sider av MEC."
6668
 
6737
  msgid "Tile View"
6738
  msgstr "Tidstabell Visning"
6739
 
6740
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6741
  msgid "SU"
6742
  msgstr "SØN"
6743
 
6744
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6745
  msgid "MO"
6746
  msgstr "MAN"
6747
 
6748
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6749
  msgid "TU"
6750
  msgstr "TIRS"
6751
 
6752
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6753
  msgid "WE"
6754
  msgstr "ONS"
6755
 
6756
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6757
  msgid "TH"
6758
  msgstr "TORS"
6759
 
6760
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6761
  msgid "FR"
6762
  msgstr "FRE"
6763
 
6764
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6765
  msgid "SA"
6766
  msgstr "LØR"
6767
 
7088
  msgid "Free"
7089
  msgstr "Gratis"
7090
 
7091
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7092
  #, fuzzy
7093
  #| msgid "M.E. Calendar"
7094
  msgid "M.E. Calender"
7099
  msgid "Copy of %s"
7100
  msgstr "Kopi av %s"
7101
 
7102
+ #: app/libraries/main.php:4672
7103
  msgid "Booked an event."
7104
  msgstr "Bestilte ett arrangement."
7105
 
7106
+ #: app/libraries/main.php:4713
7107
  #, php-format
7108
  msgid "%s booked %s event."
7109
  msgstr "%s bestilt %s arrangement."
7110
 
7111
+ #: app/libraries/main.php:5278
7112
  msgid "Taxonomies"
7113
  msgstr "Taxonomies"
7114
 
7115
+ #: app/libraries/main.php:5280
7116
  msgid "Category Plural Label"
7117
  msgstr "Kategori Fler Etikett"
7118
 
7119
+ #: app/libraries/main.php:5281
7120
  msgid "Category Singular Label"
7121
  msgstr "Kategori Singel Tittel"
7122
 
7123
+ #: app/libraries/main.php:5282
7124
  msgid "Label Plural Label"
7125
  msgstr "Etiketter Flertall"
7126
 
7127
+ #: app/libraries/main.php:5283
7128
  msgid "Label Singular Label"
7129
  msgstr "Etiketter Entall"
7130
 
7131
+ #: app/libraries/main.php:5284
7132
  msgid "Location Plural Label"
7133
  msgstr "Lokasjon Flertall Etiketter"
7134
 
7135
+ #: app/libraries/main.php:5285
7136
  msgid "Location Singular Label"
7137
  msgstr "Plasseringen Entall Etikett"
7138
 
7139
+ #: app/libraries/main.php:5286
7140
  msgid "Organizer Plural Label"
7141
  msgstr "Arrangør Flertall etikett"
7142
 
7143
+ #: app/libraries/main.php:5287
7144
  msgid "Organizer Singular Label"
7145
  msgstr "Arrangør Enkel Etikett"
7146
 
7147
+ #: app/libraries/main.php:5288
7148
  msgid "Speaker Plural Label"
7149
  msgstr "Instruktør/Foredragsholder flere etiketter"
7150
 
7151
+ #: app/libraries/main.php:5289
7152
  msgid "Speaker Singular Label"
7153
  msgstr "Instruktør/Foredragsholder enkelt etikett"
7154
 
7155
+ #: app/libraries/main.php:5295
7156
  msgid "Sunday abbreviation"
7157
  msgstr "Forkortelser på søndager"
7158
 
7159
+ #: app/libraries/main.php:5296
7160
  msgid "Monday abbreviation"
7161
  msgstr "Mandag forkortelse"
7162
 
7163
+ #: app/libraries/main.php:5297
7164
  msgid "Tuesday abbreviation"
7165
  msgstr "Tirsdag forkortelse"
7166
 
7167
+ #: app/libraries/main.php:5298
7168
  msgid "Wednesday abbreviation"
7169
  msgstr "Onsdag forkortelse"
7170
 
7171
+ #: app/libraries/main.php:5299
7172
  msgid "Thursday abbreviation"
7173
  msgstr "Torsdag forkortelse"
7174
 
7175
+ #: app/libraries/main.php:5300
7176
  msgid "Friday abbreviation"
7177
  msgstr "Fredag forkortelse"
7178
 
7179
+ #: app/libraries/main.php:5301
7180
  msgid "Saturday abbreviation"
7181
  msgstr "Lørdag forkortelse"
7182
 
7183
+ #: app/libraries/main.php:5305
7184
  msgid "Others"
7185
  msgstr "Øvrige"
7186
 
7187
+ #: app/libraries/main.php:5307
7188
  msgid "Booking Success Message"
7189
  msgstr "Melding ved vellykket bestilling"
7190
 
7191
+ #: app/libraries/main.php:5307
7192
  msgid ""
7193
  "Thanks for your booking. Your tickets booked, booking verification might be "
7194
  "needed, please check your email."
7196
  "Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
7197
  "bekreftelse. Vennligst sjekk din epost."
7198
 
7199
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7200
  msgid "Register Button"
7201
  msgstr "Registreringsknapp"
7202
 
7203
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7204
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7205
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7206
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7217
  msgid "REGISTER"
7218
  msgstr "Registrere"
7219
 
7220
+ #: app/libraries/main.php:5309
7221
  msgid "View Detail Button"
7222
  msgstr "Se Detalj Knapp"
7223
 
7224
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7225
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7226
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7227
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7232
  msgid "View Detail"
7233
  msgstr "Se detaljer"
7234
 
7235
+ #: app/libraries/main.php:5310
7236
  msgid "Event Detail Button"
7237
  msgstr "Knapp for arrangementsdetaljer"
7238
 
7239
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7240
  msgid "Event Detail"
7241
  msgstr "Arrangement Detaljer"
7242
 
7243
+ #: app/libraries/main.php:5312
7244
  msgid "More Info Link"
7245
  msgstr "Mer Info Lenke"
7246
 
7247
+ #: app/libraries/main.php:5315
7248
  msgid "Ticket (Singular)"
7249
  msgstr "Billett (Singel)"
7250
 
7251
+ #: app/libraries/main.php:5316
7252
  msgid "Tickets (Plural)"
7253
  msgstr "Billetter (Flertall)"
7254
 
7255
+ #: app/libraries/main.php:5402
7256
  msgid "EventON"
7257
  msgstr "EventON"
7258
 
7259
+ #: app/libraries/main.php:5403
7260
  msgid "The Events Calendar"
7261
  msgstr "Aktivitetskalenderen"
7262
 
7263
+ #: app/libraries/main.php:5404
7264
  msgid "Events Schedule WP Plugin"
7265
  msgstr "Arrangement Planlegging WP Plugin"
7266
 
7267
+ #: app/libraries/main.php:5405
7268
  msgid "Calendarize It"
7269
  msgstr "HOP Kalender"
7270
 
7271
+ #: app/libraries/main.php:5406
7272
  #, fuzzy
7273
  #| msgid "Event Speakers"
7274
  msgid "Event Espresso"
7275
  msgstr "Event høyttalere"
7276
 
7277
+ #: app/libraries/main.php:5407
7278
  #, fuzzy
7279
  #| msgid "Event Repeating"
7280
  msgid "Events Manager (Recurring)"
7281
  msgstr "Gjentakende arrangement"
7282
 
7283
+ #: app/libraries/main.php:5408
7284
  #, fuzzy
7285
  #| msgid "Modern Events Calendar (Lite)"
7286
  msgid "Events Manager (Single)"
7287
  msgstr "Kalender for moderne arrangementer (lite)"
7288
 
7289
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7290
  msgid "Confirmed"
7291
  msgstr "Bekreftet"
7292
 
7293
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7294
  msgid "Rejected"
7295
  msgstr "Avvist"
7296
 
7297
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7298
  msgid "Pending"
7299
  msgstr "Venter"
7300
 
7301
+ #: app/libraries/main.php:5532
7302
  msgid "Waiting"
7303
  msgstr "Ventende"
7304
 
7305
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7306
+ #: app/libraries/render.php:418
7307
  msgid "Skin controller does not exist."
7308
  msgstr "Skin kontroller eksisterer ikke."
7309
 
7310
+ #: app/libraries/main.php:5851
7311
  #, fuzzy
7312
  #| msgid "Sold out!"
7313
  msgid "Sold Out"
7314
  msgstr "Utsolgt!"
7315
 
7316
+ #: app/libraries/main.php:5859
7317
  #, fuzzy
7318
  #| msgid "Ticket"
7319
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-nl_NL.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -74,7 +74,7 @@ msgid "Event Color"
74
  msgstr "Evenement kleur"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:414
77
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
78
  #: app/features/mec/support.php:20 app/libraries/main.php:594
79
  msgid "Settings"
80
  msgstr "Instellingen"
@@ -251,7 +251,7 @@ msgid "MEC Activation"
251
  msgstr ""
252
 
253
  #: app/features/events.php:157 app/features/ix/export.php:34
254
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
256
  #: app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
@@ -271,7 +271,7 @@ msgstr "Evenement"
271
  msgid "Add Event"
272
  msgstr "Evenement toevoegen"
273
 
274
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
275
  msgid "Add New Event"
276
  msgstr "Voeg nieuw evenement toe"
277
 
@@ -310,7 +310,7 @@ msgstr "Geen evenementen gevonden in de prullenbak."
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
- #: app/features/search.php:67 app/libraries/main.php:5278
314
  #: app/libraries/skins.php:858 app/skins/single.php:566
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -320,7 +320,7 @@ msgstr "Categorie"
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
324
  msgid "Categories"
325
  msgstr "Categorieën"
326
 
@@ -443,7 +443,7 @@ msgstr "Evenement locatie"
443
  #: app/features/organizers.php:58 app/features/organizers.php:204
444
  #: app/features/organizers.php:260 app/features/organizers.php:262
445
  #: app/features/organizers.php:271 app/features/search.php:75
446
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
447
  #: app/skins/single.php:812 app/skins/single/default.php:217
448
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
449
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -451,7 +451,7 @@ msgid "Organizer"
451
  msgstr "Organisator"
452
 
453
  #: app/features/events.php:337 app/features/events.php:1172
454
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
455
  #: app/skins/single.php:589 app/skins/single/default.php:126
456
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
457
  #: app/skins/single/modern.php:208
@@ -500,7 +500,7 @@ msgstr "Datum en tijd"
500
  #: app/features/events.php:3555 app/features/fes/form.php:247
501
  #: app/features/fes/form.php:251 app/features/ix.php:3510
502
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
503
- #: app/features/mec/dashboard.php:400
504
  #: app/features/mec/meta_boxes/display_options.php:48
505
  #: app/features/mec/meta_boxes/display_options.php:228
506
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -538,7 +538,7 @@ msgstr "PM"
538
  #: app/features/events.php:3555 app/features/fes/form.php:287
539
  #: app/features/fes/form.php:291 app/features/ix.php:3510
540
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
541
- #: app/features/mec/dashboard.php:401
542
  msgid "End Date"
543
  msgstr "Einddatum"
544
 
@@ -668,7 +668,7 @@ msgid "Repeats"
668
  msgstr "Terugkerend"
669
 
670
  #: app/features/events.php:743 app/features/fes/form.php:349
671
- #: app/features/mec/dashboard.php:403
672
  #: app/skins/default_full_calendar/tpl.php:69
673
  #: app/skins/full_calendar/tpl.php:110
674
  msgid "Daily"
@@ -694,14 +694,14 @@ msgid "Weekly"
694
  msgstr "Wekelijks"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
- #: app/features/mec/dashboard.php:404
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Maandelijks"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
- #: app/features/mec/dashboard.php:405
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
@@ -828,7 +828,7 @@ msgstr ""
828
  #: app/features/events.php:1168 app/features/events.php:3513
829
  #: app/features/events.php:3555 app/features/fes/form.php:727
830
  #: app/features/ix.php:3510 app/features/ix.php:3551
831
- #: app/features/mec/settings.php:656 app/libraries/main.php:5310
832
  #: app/widgets/single.php:103
833
  msgid "Event Cost"
834
  msgstr "Evenements kosten"
@@ -860,7 +860,7 @@ msgid ""
860
  "multiple day occurrences."
861
  msgstr ""
862
 
863
- #: app/features/events.php:1264 app/libraries/render.php:466
864
  msgid "Day 1"
865
  msgstr ""
866
 
@@ -932,7 +932,7 @@ msgstr "Beschrijving"
932
  #: app/features/events.php:1445 app/features/fes/form.php:851
933
  #: app/features/mec.php:410 app/features/mec/modules.php:52
934
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
935
- #: app/libraries/main.php:565 app/libraries/main.php:5285
936
  #: app/modules/speakers/details.php:18
937
  msgid "Speakers"
938
  msgstr ""
@@ -949,7 +949,7 @@ msgid "Event Links"
949
  msgstr "Evenement locatie"
950
 
951
  #: app/features/events.php:1479 app/features/events.php:1485
952
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
953
  #, fuzzy
954
  msgid "Event Link"
955
  msgstr "Evenement locatie"
@@ -974,7 +974,7 @@ msgid "URL Shortener"
974
  msgstr ""
975
 
976
  #: app/features/events.php:1495 app/features/events.php:1508
977
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
978
  #: app/skins/single.php:673 app/skins/single/default.php:140
979
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
980
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1046,7 +1046,7 @@ msgid "12"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Tickets"
1052
 
@@ -1411,7 +1411,7 @@ msgstr "Aanwezige"
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:5282 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
@@ -1476,7 +1476,7 @@ msgstr ""
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:5312
1480
  msgid "Ticket"
1481
  msgstr "Ticket"
1482
 
@@ -1655,7 +1655,7 @@ msgstr "Verwijder afbeelding"
1655
 
1656
  #: app/features/fes/form.php:783 app/features/labels.php:61
1657
  #: app/features/labels.php:221 app/features/mec.php:403
1658
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1659
  #: app/skins/single.php:702 app/skins/single/default.php:155
1660
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1661
  #: app/skins/single/modern.php:223
@@ -2064,7 +2064,7 @@ msgstr ""
2064
  msgid "Import all of your Facebook events into MEC."
2065
  msgstr ""
2066
 
2067
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2068
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2069
  msgid "Documentation"
2070
  msgstr "Documentatie"
@@ -2401,7 +2401,7 @@ msgid "Featured"
2401
  msgstr "Uitgelichte afbeelding"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2436,8 +2436,8 @@ msgid "Event %s"
2436
  msgstr ""
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2440
- #: app/libraries/main.php:5281
2441
  msgid "Locations"
2442
  msgstr "Locaties"
2443
 
@@ -2544,7 +2544,7 @@ msgstr "Kies afbeelding"
2544
  msgid "Don't show map in single event page"
2545
  msgstr "Verberg de map op de pagina van het evenement"
2546
 
2547
- #: app/features/locations.php:356 app/libraries/main.php:5315
2548
  #, fuzzy
2549
  #| msgid "Search Locations"
2550
  msgid "Other Locations"
@@ -2603,14 +2603,14 @@ msgstr "Support"
2603
  msgid "Support"
2604
  msgstr "Support"
2605
 
2606
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2607
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2608
- #: app/libraries/main.php:5283
2609
  msgid "Organizers"
2610
  msgstr "Organisatoren"
2611
 
2612
  #: app/features/mec.php:413 app/features/mec.php:437
2613
- #: app/features/mec/dashboard.php:263
2614
  msgid "Shortcodes"
2615
  msgstr "Shortcodes"
2616
 
@@ -2970,7 +2970,7 @@ msgstr ""
2970
  #: app/features/mec/notifications.php:905
2971
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2972
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2973
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
2974
  msgid "Verified"
2975
  msgstr "Geverifieerd"
2976
 
@@ -2996,7 +2996,7 @@ msgstr ""
2996
  msgid "Modern Events Calendar (Lite)"
2997
  msgstr "Modern Events Calendar"
2998
 
2999
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3000
  msgctxt "plugin rate"
3001
  msgid "Rate the plugin ★★★★★"
3002
  msgstr ""
@@ -3007,7 +3007,7 @@ msgstr ""
3007
  msgid "Update"
3008
  msgstr "Update label"
3009
 
3010
- #: app/features/mec/dashboard.php:92
3011
  #, php-format
3012
  msgid ""
3013
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3015,107 +3015,107 @@ msgid ""
3015
  "Spots, etc you should upgrade to the Pro version."
3016
  msgstr ""
3017
 
3018
- #: app/features/mec/dashboard.php:92
3019
  msgid "lite"
3020
  msgstr ""
3021
 
3022
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3023
  msgid "GO PREMIUM"
3024
  msgstr ""
3025
 
3026
- #: app/features/mec/dashboard.php:98
3027
  #, php-format
3028
  msgid ""
3029
  "Easily get a discount coupon by rating us on %s or following and reposting "
3030
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3031
  msgstr ""
3032
 
3033
- #: app/features/mec/dashboard.php:98
3034
  #, fuzzy
3035
  #| msgid "Address"
3036
  msgid "WordPress"
3037
  msgstr "Adres"
3038
 
3039
- #: app/features/mec/dashboard.php:98
3040
  msgid "Copouns!"
3041
  msgstr ""
3042
 
3043
- #: app/features/mec/dashboard.php:127
3044
  #, fuzzy
3045
  #| msgid "Modern Events Calendar"
3046
  msgid "Getting started with Modern Events Calendar"
3047
  msgstr "Modern Events Calendar"
3048
 
3049
- #: app/features/mec/dashboard.php:128
3050
  msgid ""
3051
  "In this short video, you can learn how to make an event and put a calendar "
3052
  "on your website. Please watch this 2 minutes video to the end."
3053
  msgstr ""
3054
 
3055
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3056
  msgid "MEC Activate"
3057
  msgstr ""
3058
 
3059
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3060
  msgid "Activate Addons"
3061
  msgstr ""
3062
 
3063
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3064
  msgid "You cannot access this section."
3065
  msgstr ""
3066
 
3067
- #: app/features/mec/dashboard.php:174
3068
  msgid ""
3069
  "In order to use all plugin features and options, please enter your purchase "
3070
  "code."
3071
  msgstr ""
3072
 
3073
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3074
  msgid "Upcoming Events"
3075
  msgstr ""
3076
 
3077
- #: app/features/mec/dashboard.php:312
3078
  msgid "Popular Gateways"
3079
  msgstr ""
3080
 
3081
- #: app/features/mec/dashboard.php:366
3082
  msgid "Total Bookings"
3083
  msgstr ""
3084
 
3085
- #: app/features/mec/dashboard.php:393
3086
  msgid "This Month"
3087
  msgstr ""
3088
 
3089
- #: app/features/mec/dashboard.php:394
3090
  msgid "Last Month"
3091
  msgstr ""
3092
 
3093
- #: app/features/mec/dashboard.php:395
3094
  msgid "This Year"
3095
  msgstr ""
3096
 
3097
- #: app/features/mec/dashboard.php:396
3098
  msgid "Last Year"
3099
  msgstr ""
3100
 
3101
- #: app/features/mec/dashboard.php:408
3102
  msgid "Bar"
3103
  msgstr ""
3104
 
3105
- #: app/features/mec/dashboard.php:409
3106
  msgid "Line"
3107
  msgstr ""
3108
 
3109
- #: app/features/mec/dashboard.php:411
3110
  msgid "Filter"
3111
  msgstr ""
3112
 
3113
- #: app/features/mec/dashboard.php:427
3114
  #, php-format
3115
  msgid "Total Sells (%s)"
3116
  msgstr ""
3117
 
3118
- #: app/features/mec/dashboard.php:448
3119
  msgid "Change Log"
3120
  msgstr "Change log"
3121
 
@@ -4118,7 +4118,7 @@ msgstr "Uitgeschakeld"
4118
  #: app/features/mec/meta_boxes/search_form.php:693
4119
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4120
  #: app/features/search.php:79 app/features/speakers.php:61
4121
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4122
  #: app/libraries/skins.php:936
4123
  msgid "Speaker"
4124
  msgstr ""
@@ -5120,7 +5120,7 @@ msgid "You can enable/disable Schema scripts"
5120
  msgstr ""
5121
 
5122
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5123
- #: app/libraries/main.php:5290
5124
  msgid "Weekdays"
5125
  msgstr ""
5126
 
@@ -6333,7 +6333,7 @@ msgstr "bijv. john@smith.com"
6333
  msgid "eg. https://webnus.net"
6334
  msgstr ""
6335
 
6336
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6337
  #: app/skins/single.php:862
6338
  msgid "Other Organizers"
6339
  msgstr ""
@@ -6394,7 +6394,7 @@ msgstr ""
6394
  msgid "No bookings found!"
6395
  msgstr "Geen boekingen gevonden!"
6396
 
6397
- #: app/features/search.php:87 app/libraries/main.php:5280
6398
  msgid "label"
6399
  msgstr ""
6400
 
@@ -6420,7 +6420,7 @@ msgid "No search result."
6420
  msgstr ""
6421
 
6422
  #: app/features/search_bar/search_result.php:11
6423
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6424
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6425
  #: app/skins/single.php:160 app/skins/single.php:753
6426
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6525,70 +6525,70 @@ msgstr "Korting"
6525
  msgid "Download Invoice"
6526
  msgstr ""
6527
 
6528
- #: app/libraries/factory.php:156
6529
  msgid "M.E. Calendar"
6530
  msgstr "M.E. Calendar"
6531
 
6532
- #: app/libraries/factory.php:195
6533
  msgctxt "plugin link"
6534
  msgid "Upgrade to Pro Version"
6535
  msgstr ""
6536
 
6537
- #: app/libraries/factory.php:213
6538
  msgctxt "plugin link"
6539
  msgid "Settings"
6540
  msgstr "Instellingen"
6541
 
6542
- #: app/libraries/factory.php:218
6543
  msgctxt "plugin link"
6544
  msgid "Upgrade"
6545
  msgstr ""
6546
 
6547
- #: app/libraries/factory.php:361
6548
  msgid "day"
6549
  msgstr "dag"
6550
 
6551
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6552
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6553
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6554
  msgid "days"
6555
  msgstr "dagen"
6556
 
6557
- #: app/libraries/factory.php:363
6558
  msgid "hour"
6559
  msgstr "uur"
6560
 
6561
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6562
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6563
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6564
  msgid "hours"
6565
  msgstr "uren"
6566
 
6567
- #: app/libraries/factory.php:365
6568
  msgid "minute"
6569
  msgstr "minuut"
6570
 
6571
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6572
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6573
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6574
  msgid "minutes"
6575
  msgstr "minuten"
6576
 
6577
- #: app/libraries/factory.php:367
6578
  msgid "second"
6579
  msgstr "seconde"
6580
 
6581
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6582
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6583
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6584
  msgid "seconds"
6585
  msgstr "secondes"
6586
 
6587
- #: app/libraries/factory.php:415
6588
  msgid "MEC Single Sidebar"
6589
  msgstr ""
6590
 
6591
- #: app/libraries/factory.php:416
6592
  msgid "Custom sidebar for single and modal page of MEC."
6593
  msgstr ""
6594
 
@@ -6666,31 +6666,31 @@ msgstr "Dagweergave"
6666
  msgid "Tile View"
6667
  msgstr "Dagweergave"
6668
 
6669
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6670
  msgid "SU"
6671
  msgstr "ZO"
6672
 
6673
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6674
  msgid "MO"
6675
  msgstr "MA"
6676
 
6677
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6678
  msgid "TU"
6679
  msgstr "DI"
6680
 
6681
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6682
  msgid "WE"
6683
  msgstr "WO"
6684
 
6685
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6686
  msgid "TH"
6687
  msgstr "DO"
6688
 
6689
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6690
  msgid "FR"
6691
  msgstr "VR"
6692
 
6693
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6694
  msgid "SA"
6695
  msgstr "ZA"
6696
 
@@ -7019,7 +7019,7 @@ msgstr "Voer een label in voor deze optie"
7019
  msgid "Free"
7020
  msgstr "Gratis"
7021
 
7022
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7023
  #, fuzzy
7024
  #| msgid "M.E. Calendar"
7025
  msgid "M.E. Calender"
@@ -7030,100 +7030,100 @@ msgstr "M.E. Calendar"
7030
  msgid "Copy of %s"
7031
  msgstr ""
7032
 
7033
- #: app/libraries/main.php:4669
7034
  msgid "Booked an event."
7035
  msgstr ""
7036
 
7037
- #: app/libraries/main.php:4710
7038
  #, php-format
7039
  msgid "%s booked %s event."
7040
  msgstr ""
7041
 
7042
- #: app/libraries/main.php:5275
7043
  msgid "Taxonomies"
7044
  msgstr ""
7045
 
7046
- #: app/libraries/main.php:5277
7047
  msgid "Category Plural Label"
7048
  msgstr ""
7049
 
7050
- #: app/libraries/main.php:5278
7051
  msgid "Category Singular Label"
7052
  msgstr ""
7053
 
7054
- #: app/libraries/main.php:5279
7055
  msgid "Label Plural Label"
7056
  msgstr ""
7057
 
7058
- #: app/libraries/main.php:5280
7059
  msgid "Label Singular Label"
7060
  msgstr ""
7061
 
7062
- #: app/libraries/main.php:5281
7063
  msgid "Location Plural Label"
7064
  msgstr ""
7065
 
7066
- #: app/libraries/main.php:5282
7067
  msgid "Location Singular Label"
7068
  msgstr ""
7069
 
7070
- #: app/libraries/main.php:5283
7071
  msgid "Organizer Plural Label"
7072
  msgstr ""
7073
 
7074
- #: app/libraries/main.php:5284
7075
  msgid "Organizer Singular Label"
7076
  msgstr ""
7077
 
7078
- #: app/libraries/main.php:5285
7079
  #, fuzzy
7080
  #| msgid "Search Labels"
7081
  msgid "Speaker Plural Label"
7082
  msgstr "Zoek labels"
7083
 
7084
- #: app/libraries/main.php:5286
7085
  #, fuzzy
7086
  #| msgid "Popular Labels"
7087
  msgid "Speaker Singular Label"
7088
  msgstr "Populaire labels"
7089
 
7090
- #: app/libraries/main.php:5292
7091
  msgid "Sunday abbreviation"
7092
  msgstr ""
7093
 
7094
- #: app/libraries/main.php:5293
7095
  msgid "Monday abbreviation"
7096
  msgstr ""
7097
 
7098
- #: app/libraries/main.php:5294
7099
  msgid "Tuesday abbreviation"
7100
  msgstr ""
7101
 
7102
- #: app/libraries/main.php:5295
7103
  msgid "Wednesday abbreviation"
7104
  msgstr ""
7105
 
7106
- #: app/libraries/main.php:5296
7107
  msgid "Thursday abbreviation"
7108
  msgstr ""
7109
 
7110
- #: app/libraries/main.php:5297
7111
  msgid "Friday abbreviation"
7112
  msgstr ""
7113
 
7114
- #: app/libraries/main.php:5298
7115
  msgid "Saturday abbreviation"
7116
  msgstr ""
7117
 
7118
- #: app/libraries/main.php:5302
7119
  msgid "Others"
7120
  msgstr ""
7121
 
7122
- #: app/libraries/main.php:5304
7123
  msgid "Booking Success Message"
7124
  msgstr ""
7125
 
7126
- #: app/libraries/main.php:5304
7127
  msgid ""
7128
  "Thanks for your booking. Your tickets booked, booking verification might be "
7129
  "needed, please check your email."
@@ -7131,11 +7131,11 @@ msgstr ""
7131
  "Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
7132
  "nodig zijn, controleer uw email alstublieft."
7133
 
7134
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7135
  msgid "Register Button"
7136
  msgstr ""
7137
 
7138
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7139
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7140
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7141
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7152,11 +7152,11 @@ msgstr ""
7152
  msgid "REGISTER"
7153
  msgstr "REGISTREREN"
7154
 
7155
- #: app/libraries/main.php:5306
7156
  msgid "View Detail Button"
7157
  msgstr ""
7158
 
7159
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7160
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7161
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7162
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7167,85 +7167,86 @@ msgstr ""
7167
  msgid "View Detail"
7168
  msgstr "Bekijk detail"
7169
 
7170
- #: app/libraries/main.php:5307
7171
  msgid "Event Detail Button"
7172
  msgstr ""
7173
 
7174
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7175
  #, fuzzy
7176
  msgid "Event Detail"
7177
  msgstr "Evenement details"
7178
 
7179
- #: app/libraries/main.php:5309
7180
  msgid "More Info Link"
7181
  msgstr ""
7182
 
7183
- #: app/libraries/main.php:5312
7184
  msgid "Ticket (Singular)"
7185
  msgstr ""
7186
 
7187
- #: app/libraries/main.php:5313
7188
  msgid "Tickets (Plural)"
7189
  msgstr ""
7190
 
7191
- #: app/libraries/main.php:5399
7192
  msgid "EventON"
7193
  msgstr ""
7194
 
7195
- #: app/libraries/main.php:5400
7196
  msgid "The Events Calendar"
7197
  msgstr ""
7198
 
7199
- #: app/libraries/main.php:5401
7200
  msgid "Events Schedule WP Plugin"
7201
  msgstr ""
7202
 
7203
- #: app/libraries/main.php:5402
7204
  msgid "Calendarize It"
7205
  msgstr ""
7206
 
7207
- #: app/libraries/main.php:5403
7208
  #, fuzzy
7209
  msgid "Event Espresso"
7210
  msgstr "Zoek locaties"
7211
 
7212
- #: app/libraries/main.php:5404
7213
  #, fuzzy
7214
  #| msgid "Event Repeating"
7215
  msgid "Events Manager (Recurring)"
7216
  msgstr "Terugkerend evenement"
7217
 
7218
- #: app/libraries/main.php:5405
7219
  #, fuzzy
7220
  #| msgid "Modern Events Calendar"
7221
  msgid "Events Manager (Single)"
7222
  msgstr "Modern Events Calendar"
7223
 
7224
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7225
  msgid "Confirmed"
7226
  msgstr "Bevestigd"
7227
 
7228
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7229
  msgid "Rejected"
7230
  msgstr "Afgewezen"
7231
 
7232
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7233
  msgid "Pending"
7234
  msgstr "In afwachting"
7235
 
7236
- #: app/libraries/main.php:5529
7237
  msgid "Waiting"
7238
  msgstr "In afwachting"
7239
 
7240
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7241
  msgid "Skin controller does not exist."
7242
  msgstr "Skin controller bestaat niet."
7243
 
7244
- #: app/libraries/main.php:5848
7245
  msgid "Sold Out"
7246
  msgstr ""
7247
 
7248
- #: app/libraries/main.php:5856
7249
  #, fuzzy
7250
  #| msgid "Ticket"
7251
  msgid "Last Few Tickets"
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:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
74
  msgstr "Evenement kleur"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:414
77
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
78
  #: app/features/mec/support.php:20 app/libraries/main.php:594
79
  msgid "Settings"
80
  msgstr "Instellingen"
251
  msgstr ""
252
 
253
  #: app/features/events.php:157 app/features/ix/export.php:34
254
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
256
  #: app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
271
  msgid "Add Event"
272
  msgstr "Evenement toevoegen"
273
 
274
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
275
  msgid "Add New Event"
276
  msgstr "Voeg nieuw evenement toe"
277
 
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
+ #: app/features/search.php:67 app/libraries/main.php:5281
314
  #: app/libraries/skins.php:858 app/skins/single.php:566
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
324
  msgid "Categories"
325
  msgstr "Categorieën"
326
 
443
  #: app/features/organizers.php:58 app/features/organizers.php:204
444
  #: app/features/organizers.php:260 app/features/organizers.php:262
445
  #: app/features/organizers.php:271 app/features/search.php:75
446
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
447
  #: app/skins/single.php:812 app/skins/single/default.php:217
448
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
449
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
451
  msgstr "Organisator"
452
 
453
  #: app/features/events.php:337 app/features/events.php:1172
454
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
455
  #: app/skins/single.php:589 app/skins/single/default.php:126
456
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
457
  #: app/skins/single/modern.php:208
500
  #: app/features/events.php:3555 app/features/fes/form.php:247
501
  #: app/features/fes/form.php:251 app/features/ix.php:3510
502
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
503
+ #: app/features/mec/dashboard.php:401
504
  #: app/features/mec/meta_boxes/display_options.php:48
505
  #: app/features/mec/meta_boxes/display_options.php:228
506
  #: app/features/mec/meta_boxes/display_options.php:406
538
  #: app/features/events.php:3555 app/features/fes/form.php:287
539
  #: app/features/fes/form.php:291 app/features/ix.php:3510
540
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
541
+ #: app/features/mec/dashboard.php:402
542
  msgid "End Date"
543
  msgstr "Einddatum"
544
 
668
  msgstr "Terugkerend"
669
 
670
  #: app/features/events.php:743 app/features/fes/form.php:349
671
+ #: app/features/mec/dashboard.php:404
672
  #: app/skins/default_full_calendar/tpl.php:69
673
  #: app/skins/full_calendar/tpl.php:110
674
  msgid "Daily"
694
  msgstr "Wekelijks"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
+ #: app/features/mec/dashboard.php:405
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Maandelijks"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
+ #: app/features/mec/dashboard.php:406
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
828
  #: app/features/events.php:1168 app/features/events.php:3513
829
  #: app/features/events.php:3555 app/features/fes/form.php:727
830
  #: app/features/ix.php:3510 app/features/ix.php:3551
831
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5313
832
  #: app/widgets/single.php:103
833
  msgid "Event Cost"
834
  msgstr "Evenements kosten"
860
  "multiple day occurrences."
861
  msgstr ""
862
 
863
+ #: app/features/events.php:1264 app/libraries/render.php:506
864
  msgid "Day 1"
865
  msgstr ""
866
 
932
  #: app/features/events.php:1445 app/features/fes/form.php:851
933
  #: app/features/mec.php:410 app/features/mec/modules.php:52
934
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
935
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
936
  #: app/modules/speakers/details.php:18
937
  msgid "Speakers"
938
  msgstr ""
949
  msgstr "Evenement locatie"
950
 
951
  #: app/features/events.php:1479 app/features/events.php:1485
952
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
953
  #, fuzzy
954
  msgid "Event Link"
955
  msgstr "Evenement locatie"
974
  msgstr ""
975
 
976
  #: app/features/events.php:1495 app/features/events.php:1508
977
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
978
  #: app/skins/single.php:673 app/skins/single/default.php:140
979
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
980
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
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 "Tickets"
1052
 
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
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 "Ticket"
1482
 
1655
 
1656
  #: app/features/fes/form.php:783 app/features/labels.php:61
1657
  #: app/features/labels.php:221 app/features/mec.php:403
1658
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1659
  #: app/skins/single.php:702 app/skins/single/default.php:155
1660
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1661
  #: app/skins/single/modern.php:223
2064
  msgid "Import all of your Facebook events into MEC."
2065
  msgstr ""
2066
 
2067
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2068
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2069
  msgid "Documentation"
2070
  msgstr "Documentatie"
2401
  msgstr "Uitgelichte afbeelding"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2436
  msgstr ""
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2440
+ #: app/libraries/main.php:5284
2441
  msgid "Locations"
2442
  msgstr "Locaties"
2443
 
2544
  msgid "Don't show map in single event page"
2545
  msgstr "Verberg de map op de pagina van het evenement"
2546
 
2547
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2548
  #, fuzzy
2549
  #| msgid "Search Locations"
2550
  msgid "Other Locations"
2603
  msgid "Support"
2604
  msgstr "Support"
2605
 
2606
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2607
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2608
+ #: app/libraries/main.php:5286
2609
  msgid "Organizers"
2610
  msgstr "Organisatoren"
2611
 
2612
  #: app/features/mec.php:413 app/features/mec.php:437
2613
+ #: app/features/mec/dashboard.php:264
2614
  msgid "Shortcodes"
2615
  msgstr "Shortcodes"
2616
 
2970
  #: app/features/mec/notifications.php:905
2971
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2972
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2973
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
2974
  msgid "Verified"
2975
  msgstr "Geverifieerd"
2976
 
2996
  msgid "Modern Events Calendar (Lite)"
2997
  msgstr "Modern Events Calendar"
2998
 
2999
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3000
  msgctxt "plugin rate"
3001
  msgid "Rate the plugin ★★★★★"
3002
  msgstr ""
3007
  msgid "Update"
3008
  msgstr "Update label"
3009
 
3010
+ #: app/features/mec/dashboard.php:96
3011
  #, php-format
3012
  msgid ""
3013
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3015
  "Spots, etc you should upgrade to the Pro version."
3016
  msgstr ""
3017
 
3018
+ #: app/features/mec/dashboard.php:96
3019
  msgid "lite"
3020
  msgstr ""
3021
 
3022
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3023
  msgid "GO PREMIUM"
3024
  msgstr ""
3025
 
3026
+ #: app/features/mec/dashboard.php:102
3027
  #, php-format
3028
  msgid ""
3029
  "Easily get a discount coupon by rating us on %s or following and reposting "
3030
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3031
  msgstr ""
3032
 
3033
+ #: app/features/mec/dashboard.php:102
3034
  #, fuzzy
3035
  #| msgid "Address"
3036
  msgid "WordPress"
3037
  msgstr "Adres"
3038
 
3039
+ #: app/features/mec/dashboard.php:102
3040
  msgid "Copouns!"
3041
  msgstr ""
3042
 
3043
+ #: app/features/mec/dashboard.php:131
3044
  #, fuzzy
3045
  #| msgid "Modern Events Calendar"
3046
  msgid "Getting started with Modern Events Calendar"
3047
  msgstr "Modern Events Calendar"
3048
 
3049
+ #: app/features/mec/dashboard.php:132
3050
  msgid ""
3051
  "In this short video, you can learn how to make an event and put a calendar "
3052
  "on your website. Please watch this 2 minutes video to the end."
3053
  msgstr ""
3054
 
3055
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3056
  msgid "MEC Activate"
3057
  msgstr ""
3058
 
3059
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3060
  msgid "Activate Addons"
3061
  msgstr ""
3062
 
3063
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3064
  msgid "You cannot access this section."
3065
  msgstr ""
3066
 
3067
+ #: app/features/mec/dashboard.php:178
3068
  msgid ""
3069
  "In order to use all plugin features and options, please enter your purchase "
3070
  "code."
3071
  msgstr ""
3072
 
3073
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3074
  msgid "Upcoming Events"
3075
  msgstr ""
3076
 
3077
+ #: app/features/mec/dashboard.php:313
3078
  msgid "Popular Gateways"
3079
  msgstr ""
3080
 
3081
+ #: app/features/mec/dashboard.php:367
3082
  msgid "Total Bookings"
3083
  msgstr ""
3084
 
3085
+ #: app/features/mec/dashboard.php:394
3086
  msgid "This Month"
3087
  msgstr ""
3088
 
3089
+ #: app/features/mec/dashboard.php:395
3090
  msgid "Last Month"
3091
  msgstr ""
3092
 
3093
+ #: app/features/mec/dashboard.php:396
3094
  msgid "This Year"
3095
  msgstr ""
3096
 
3097
+ #: app/features/mec/dashboard.php:397
3098
  msgid "Last Year"
3099
  msgstr ""
3100
 
3101
+ #: app/features/mec/dashboard.php:409
3102
  msgid "Bar"
3103
  msgstr ""
3104
 
3105
+ #: app/features/mec/dashboard.php:410
3106
  msgid "Line"
3107
  msgstr ""
3108
 
3109
+ #: app/features/mec/dashboard.php:412
3110
  msgid "Filter"
3111
  msgstr ""
3112
 
3113
+ #: app/features/mec/dashboard.php:428
3114
  #, php-format
3115
  msgid "Total Sells (%s)"
3116
  msgstr ""
3117
 
3118
+ #: app/features/mec/dashboard.php:449
3119
  msgid "Change Log"
3120
  msgstr "Change log"
3121
 
4118
  #: app/features/mec/meta_boxes/search_form.php:693
4119
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4120
  #: app/features/search.php:79 app/features/speakers.php:61
4121
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4122
  #: app/libraries/skins.php:936
4123
  msgid "Speaker"
4124
  msgstr ""
5120
  msgstr ""
5121
 
5122
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5123
+ #: app/libraries/main.php:5293
5124
  msgid "Weekdays"
5125
  msgstr ""
5126
 
6333
  msgid "eg. https://webnus.net"
6334
  msgstr ""
6335
 
6336
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6337
  #: app/skins/single.php:862
6338
  msgid "Other Organizers"
6339
  msgstr ""
6394
  msgid "No bookings found!"
6395
  msgstr "Geen boekingen gevonden!"
6396
 
6397
+ #: app/features/search.php:87 app/libraries/main.php:5283
6398
  msgid "label"
6399
  msgstr ""
6400
 
6420
  msgstr ""
6421
 
6422
  #: app/features/search_bar/search_result.php:11
6423
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6424
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6425
  #: app/skins/single.php:160 app/skins/single.php:753
6426
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6525
  msgid "Download Invoice"
6526
  msgstr ""
6527
 
6528
+ #: app/libraries/factory.php:159
6529
  msgid "M.E. Calendar"
6530
  msgstr "M.E. Calendar"
6531
 
6532
+ #: app/libraries/factory.php:198
6533
  msgctxt "plugin link"
6534
  msgid "Upgrade to Pro Version"
6535
  msgstr ""
6536
 
6537
+ #: app/libraries/factory.php:216
6538
  msgctxt "plugin link"
6539
  msgid "Settings"
6540
  msgstr "Instellingen"
6541
 
6542
+ #: app/libraries/factory.php:221
6543
  msgctxt "plugin link"
6544
  msgid "Upgrade"
6545
  msgstr ""
6546
 
6547
+ #: app/libraries/factory.php:356
6548
  msgid "day"
6549
  msgstr "dag"
6550
 
6551
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6552
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6553
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6554
  msgid "days"
6555
  msgstr "dagen"
6556
 
6557
+ #: app/libraries/factory.php:358
6558
  msgid "hour"
6559
  msgstr "uur"
6560
 
6561
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6562
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6563
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6564
  msgid "hours"
6565
  msgstr "uren"
6566
 
6567
+ #: app/libraries/factory.php:360
6568
  msgid "minute"
6569
  msgstr "minuut"
6570
 
6571
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6572
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6573
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6574
  msgid "minutes"
6575
  msgstr "minuten"
6576
 
6577
+ #: app/libraries/factory.php:362
6578
  msgid "second"
6579
  msgstr "seconde"
6580
 
6581
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6582
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6583
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6584
  msgid "seconds"
6585
  msgstr "secondes"
6586
 
6587
+ #: app/libraries/factory.php:411
6588
  msgid "MEC Single Sidebar"
6589
  msgstr ""
6590
 
6591
+ #: app/libraries/factory.php:412
6592
  msgid "Custom sidebar for single and modal page of MEC."
6593
  msgstr ""
6594
 
6666
  msgid "Tile View"
6667
  msgstr "Dagweergave"
6668
 
6669
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6670
  msgid "SU"
6671
  msgstr "ZO"
6672
 
6673
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6674
  msgid "MO"
6675
  msgstr "MA"
6676
 
6677
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6678
  msgid "TU"
6679
  msgstr "DI"
6680
 
6681
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6682
  msgid "WE"
6683
  msgstr "WO"
6684
 
6685
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6686
  msgid "TH"
6687
  msgstr "DO"
6688
 
6689
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6690
  msgid "FR"
6691
  msgstr "VR"
6692
 
6693
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6694
  msgid "SA"
6695
  msgstr "ZA"
6696
 
7019
  msgid "Free"
7020
  msgstr "Gratis"
7021
 
7022
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7023
  #, fuzzy
7024
  #| msgid "M.E. Calendar"
7025
  msgid "M.E. Calender"
7030
  msgid "Copy of %s"
7031
  msgstr ""
7032
 
7033
+ #: app/libraries/main.php:4672
7034
  msgid "Booked an event."
7035
  msgstr ""
7036
 
7037
+ #: app/libraries/main.php:4713
7038
  #, php-format
7039
  msgid "%s booked %s event."
7040
  msgstr ""
7041
 
7042
+ #: app/libraries/main.php:5278
7043
  msgid "Taxonomies"
7044
  msgstr ""
7045
 
7046
+ #: app/libraries/main.php:5280
7047
  msgid "Category Plural Label"
7048
  msgstr ""
7049
 
7050
+ #: app/libraries/main.php:5281
7051
  msgid "Category Singular Label"
7052
  msgstr ""
7053
 
7054
+ #: app/libraries/main.php:5282
7055
  msgid "Label Plural Label"
7056
  msgstr ""
7057
 
7058
+ #: app/libraries/main.php:5283
7059
  msgid "Label Singular Label"
7060
  msgstr ""
7061
 
7062
+ #: app/libraries/main.php:5284
7063
  msgid "Location Plural Label"
7064
  msgstr ""
7065
 
7066
+ #: app/libraries/main.php:5285
7067
  msgid "Location Singular Label"
7068
  msgstr ""
7069
 
7070
+ #: app/libraries/main.php:5286
7071
  msgid "Organizer Plural Label"
7072
  msgstr ""
7073
 
7074
+ #: app/libraries/main.php:5287
7075
  msgid "Organizer Singular Label"
7076
  msgstr ""
7077
 
7078
+ #: app/libraries/main.php:5288
7079
  #, fuzzy
7080
  #| msgid "Search Labels"
7081
  msgid "Speaker Plural Label"
7082
  msgstr "Zoek labels"
7083
 
7084
+ #: app/libraries/main.php:5289
7085
  #, fuzzy
7086
  #| msgid "Popular Labels"
7087
  msgid "Speaker Singular Label"
7088
  msgstr "Populaire labels"
7089
 
7090
+ #: app/libraries/main.php:5295
7091
  msgid "Sunday abbreviation"
7092
  msgstr ""
7093
 
7094
+ #: app/libraries/main.php:5296
7095
  msgid "Monday abbreviation"
7096
  msgstr ""
7097
 
7098
+ #: app/libraries/main.php:5297
7099
  msgid "Tuesday abbreviation"
7100
  msgstr ""
7101
 
7102
+ #: app/libraries/main.php:5298
7103
  msgid "Wednesday abbreviation"
7104
  msgstr ""
7105
 
7106
+ #: app/libraries/main.php:5299
7107
  msgid "Thursday abbreviation"
7108
  msgstr ""
7109
 
7110
+ #: app/libraries/main.php:5300
7111
  msgid "Friday abbreviation"
7112
  msgstr ""
7113
 
7114
+ #: app/libraries/main.php:5301
7115
  msgid "Saturday abbreviation"
7116
  msgstr ""
7117
 
7118
+ #: app/libraries/main.php:5305
7119
  msgid "Others"
7120
  msgstr ""
7121
 
7122
+ #: app/libraries/main.php:5307
7123
  msgid "Booking Success Message"
7124
  msgstr ""
7125
 
7126
+ #: app/libraries/main.php:5307
7127
  msgid ""
7128
  "Thanks for your booking. Your tickets booked, booking verification might be "
7129
  "needed, please check your email."
7131
  "Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
7132
  "nodig zijn, controleer uw email alstublieft."
7133
 
7134
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7135
  msgid "Register Button"
7136
  msgstr ""
7137
 
7138
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7139
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7140
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7141
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7152
  msgid "REGISTER"
7153
  msgstr "REGISTREREN"
7154
 
7155
+ #: app/libraries/main.php:5309
7156
  msgid "View Detail Button"
7157
  msgstr ""
7158
 
7159
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7160
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7161
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7162
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7167
  msgid "View Detail"
7168
  msgstr "Bekijk detail"
7169
 
7170
+ #: app/libraries/main.php:5310
7171
  msgid "Event Detail Button"
7172
  msgstr ""
7173
 
7174
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7175
  #, fuzzy
7176
  msgid "Event Detail"
7177
  msgstr "Evenement details"
7178
 
7179
+ #: app/libraries/main.php:5312
7180
  msgid "More Info Link"
7181
  msgstr ""
7182
 
7183
+ #: app/libraries/main.php:5315
7184
  msgid "Ticket (Singular)"
7185
  msgstr ""
7186
 
7187
+ #: app/libraries/main.php:5316
7188
  msgid "Tickets (Plural)"
7189
  msgstr ""
7190
 
7191
+ #: app/libraries/main.php:5402
7192
  msgid "EventON"
7193
  msgstr ""
7194
 
7195
+ #: app/libraries/main.php:5403
7196
  msgid "The Events Calendar"
7197
  msgstr ""
7198
 
7199
+ #: app/libraries/main.php:5404
7200
  msgid "Events Schedule WP Plugin"
7201
  msgstr ""
7202
 
7203
+ #: app/libraries/main.php:5405
7204
  msgid "Calendarize It"
7205
  msgstr ""
7206
 
7207
+ #: app/libraries/main.php:5406
7208
  #, fuzzy
7209
  msgid "Event Espresso"
7210
  msgstr "Zoek locaties"
7211
 
7212
+ #: app/libraries/main.php:5407
7213
  #, fuzzy
7214
  #| msgid "Event Repeating"
7215
  msgid "Events Manager (Recurring)"
7216
  msgstr "Terugkerend evenement"
7217
 
7218
+ #: app/libraries/main.php:5408
7219
  #, fuzzy
7220
  #| msgid "Modern Events Calendar"
7221
  msgid "Events Manager (Single)"
7222
  msgstr "Modern Events Calendar"
7223
 
7224
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7225
  msgid "Confirmed"
7226
  msgstr "Bevestigd"
7227
 
7228
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7229
  msgid "Rejected"
7230
  msgstr "Afgewezen"
7231
 
7232
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7233
  msgid "Pending"
7234
  msgstr "In afwachting"
7235
 
7236
+ #: app/libraries/main.php:5532
7237
  msgid "Waiting"
7238
  msgstr "In afwachting"
7239
 
7240
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7241
+ #: app/libraries/render.php:418
7242
  msgid "Skin controller does not exist."
7243
  msgstr "Skin controller bestaat niet."
7244
 
7245
+ #: app/libraries/main.php:5851
7246
  msgid "Sold Out"
7247
  msgstr ""
7248
 
7249
+ #: app/libraries/main.php:5859
7250
  #, fuzzy
7251
  #| msgid "Ticket"
7252
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-pl_PL.mo CHANGED
Binary file
languages/modern-events-calendar-lite-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
@@ -77,7 +77,7 @@ msgid "Event Color"
77
  msgstr "Kolor wydarzenia"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:414
80
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
81
  #: app/features/mec/support.php:20 app/libraries/main.php:594
82
  msgid "Settings"
83
  msgstr "Ustawienia"
@@ -253,7 +253,7 @@ msgid "MEC Activation"
253
  msgstr "Aktywacja MEC"
254
 
255
  #: app/features/events.php:157 app/features/ix/export.php:34
256
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
258
  #: app/skins/yearly_view/tpl.php:68
259
  msgid "Events"
@@ -273,7 +273,7 @@ msgstr "Wydarzenie"
273
  msgid "Add Event"
274
  msgstr "Dodaj wydarzenie"
275
 
276
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
277
  msgid "Add New Event"
278
  msgstr "Dodaj nowe wydarzenie"
279
 
@@ -312,7 +312,7 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
- #: app/features/search.php:67 app/libraries/main.php:5278
316
  #: app/libraries/skins.php:858 app/skins/single.php:566
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -322,7 +322,7 @@ msgstr "Kategoria"
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
326
  msgid "Categories"
327
  msgstr "Kategorie"
328
 
@@ -446,7 +446,7 @@ msgstr "Link"
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
450
  #: app/skins/single.php:812 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -454,7 +454,7 @@ msgid "Organizer"
454
  msgstr "Organizator"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
458
  #: app/skins/single.php:589 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
@@ -503,7 +503,7 @@ msgstr "Data i godzina"
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
  #: app/features/fes/form.php:251 app/features/ix.php:3510
505
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
506
- #: app/features/mec/dashboard.php:400
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
509
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -541,7 +541,7 @@ msgstr "PM"
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
  #: app/features/fes/form.php:291 app/features/ix.php:3510
543
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
544
- #: app/features/mec/dashboard.php:401
545
  msgid "End Date"
546
  msgstr "Data zakończenia"
547
 
@@ -670,7 +670,7 @@ msgid "Repeats"
670
  msgstr "Powtórzenia"
671
 
672
  #: app/features/events.php:743 app/features/fes/form.php:349
673
- #: app/features/mec/dashboard.php:403
674
  #: app/skins/default_full_calendar/tpl.php:69
675
  #: app/skins/full_calendar/tpl.php:110
676
  msgid "Daily"
@@ -695,14 +695,14 @@ msgid "Weekly"
695
  msgstr "Co tydzień"
696
 
697
  #: app/features/events.php:778 app/features/fes/form.php:354
698
- #: app/features/mec/dashboard.php:404
699
  #: app/skins/default_full_calendar/tpl.php:67
700
  #: app/skins/full_calendar/tpl.php:108
701
  msgid "Monthly"
702
  msgstr "Co miesiąc"
703
 
704
  #: app/features/events.php:785 app/features/fes/form.php:355
705
- #: app/features/mec/dashboard.php:405
706
  #: app/skins/default_full_calendar/tpl.php:66
707
  #: app/skins/full_calendar/tpl.php:107
708
  msgid "Yearly"
@@ -831,7 +831,7 @@ msgstr "Kolejne wystąpienie innych wydarzeń"
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:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Koszt wydarzenia"
@@ -863,7 +863,7 @@ msgid ""
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
- #: app/features/events.php:1264 app/libraries/render.php:466
867
  msgid "Day 1"
868
  msgstr ""
869
 
@@ -935,7 +935,7 @@ msgstr "Opis"
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:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Linki wydarzenia"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Link strony www wydarzenia"
958
 
@@ -979,7 +979,7 @@ msgid "URL Shortener"
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
983
  #: app/skins/single.php:673 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1050,7 +1050,7 @@ msgid "12"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Bilety"
1056
 
@@ -1416,7 +1416,7 @@ msgstr "Limit uczestników"
1416
  #: app/features/mec/meta_boxes/search_form.php:679
1417
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1418
  #: app/features/search.php:71 app/libraries/main.php:2236
1419
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1420
  #: app/skins/single.php:493 app/skins/single.php:924
1421
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1422
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1481,7 +1481,7 @@ msgstr "%s Email"
1481
 
1482
  #: app/features/events.php:3808 app/features/fes.php:223
1483
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1484
- #: app/libraries/main.php:5312
1485
  msgid "Ticket"
1486
  msgstr "Zgłoszenie"
1487
 
@@ -1659,7 +1659,7 @@ msgstr "Usuń obraz"
1659
 
1660
  #: app/features/fes/form.php:783 app/features/labels.php:61
1661
  #: app/features/labels.php:221 app/features/mec.php:403
1662
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1663
  #: app/skins/single.php:702 app/skins/single/default.php:155
1664
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1665
  #: app/skins/single/modern.php:223
@@ -2091,7 +2091,7 @@ msgstr "Importuj z kalendarza Facebook"
2091
  msgid "Import all of your Facebook events into MEC."
2092
  msgstr "Importuj wszystkie wydarzenia Facebook do MEC."
2093
 
2094
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2095
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2096
  msgid "Documentation"
2097
  msgstr "Dokumentacja"
@@ -2460,7 +2460,7 @@ msgid "Featured"
2460
  msgstr "Obraz wyróżniający"
2461
 
2462
  #: app/features/labels.php:118 app/features/labels.php:143
2463
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2464
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2465
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2466
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2495,8 +2495,8 @@ msgid "Event %s"
2495
  msgstr "Wydarzenie %s"
2496
 
2497
  #: app/features/locations.php:59 app/features/mec.php:404
2498
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2499
- #: app/libraries/main.php:5281
2500
  msgid "Locations"
2501
  msgstr "Lokalizacje"
2502
 
@@ -2603,7 +2603,7 @@ msgstr "Wybierz obraz"
2603
  msgid "Don't show map in single event page"
2604
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
2605
 
2606
- #: app/features/locations.php:356 app/libraries/main.php:5315
2607
  #, fuzzy
2608
  #| msgid "Search Locations"
2609
  msgid "Other Locations"
@@ -2662,14 +2662,14 @@ msgstr "Wsparcie"
2662
  msgid "Support"
2663
  msgstr "Wsparcie"
2664
 
2665
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2666
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2667
- #: app/libraries/main.php:5283
2668
  msgid "Organizers"
2669
  msgstr "Organizatorzy"
2670
 
2671
  #: app/features/mec.php:413 app/features/mec.php:437
2672
- #: app/features/mec/dashboard.php:263
2673
  msgid "Shortcodes"
2674
  msgstr "Shortcodes"
2675
 
@@ -3030,7 +3030,7 @@ msgstr ""
3030
  #: app/features/mec/notifications.php:905
3031
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3032
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3033
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
3034
  msgid "Verified"
3035
  msgstr "Zweryfikowane"
3036
 
@@ -3056,7 +3056,7 @@ msgstr ""
3056
  msgid "Modern Events Calendar (Lite)"
3057
  msgstr "Nowoczesny Kalendarz Wydarzeń"
3058
 
3059
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3060
  msgctxt "plugin rate"
3061
  msgid "Rate the plugin ★★★★★"
3062
  msgstr ""
@@ -3067,7 +3067,7 @@ msgstr ""
3067
  msgid "Update"
3068
  msgstr "Zaktualizuj %s"
3069
 
3070
- #: app/features/mec/dashboard.php:92
3071
  #, php-format
3072
  msgid ""
3073
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3075,111 +3075,111 @@ msgid ""
3075
  "Spots, etc you should upgrade to the Pro version."
3076
  msgstr ""
3077
 
3078
- #: app/features/mec/dashboard.php:92
3079
  msgid "lite"
3080
  msgstr ""
3081
 
3082
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3083
  msgid "GO PREMIUM"
3084
  msgstr ""
3085
 
3086
- #: app/features/mec/dashboard.php:98
3087
  #, php-format
3088
  msgid ""
3089
  "Easily get a discount coupon by rating us on %s or following and reposting "
3090
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3091
  msgstr ""
3092
 
3093
- #: app/features/mec/dashboard.php:98
3094
  #, fuzzy
3095
  #| msgid "Address"
3096
  msgid "WordPress"
3097
  msgstr "Adres"
3098
 
3099
- #: app/features/mec/dashboard.php:98
3100
  msgid "Copouns!"
3101
  msgstr ""
3102
 
3103
- #: app/features/mec/dashboard.php:127
3104
  #, fuzzy
3105
  #| msgid "Modern Events Calendar"
3106
  msgid "Getting started with Modern Events Calendar"
3107
  msgstr "Nowoczesny Kalendarz Wydarzeń"
3108
 
3109
- #: app/features/mec/dashboard.php:128
3110
  msgid ""
3111
  "In this short video, you can learn how to make an event and put a calendar "
3112
  "on your website. Please watch this 2 minutes video to the end."
3113
  msgstr ""
3114
 
3115
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3116
  #, fuzzy
3117
  #| msgid "MEC Activation"
3118
  msgid "MEC Activate"
3119
  msgstr "Aktywacja MEC"
3120
 
3121
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3122
  #, fuzzy
3123
  #| msgid "MEC Activation"
3124
  msgid "Activate Addons"
3125
  msgstr "Aktywacja MEC"
3126
 
3127
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3128
  msgid "You cannot access this section."
3129
  msgstr ""
3130
 
3131
- #: app/features/mec/dashboard.php:174
3132
  msgid ""
3133
  "In order to use all plugin features and options, please enter your purchase "
3134
  "code."
3135
  msgstr ""
3136
 
3137
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3138
  msgid "Upcoming Events"
3139
  msgstr "Nadchodzące wydarzenia"
3140
 
3141
- #: app/features/mec/dashboard.php:312
3142
  msgid "Popular Gateways"
3143
  msgstr "Popularne bramki płatności"
3144
 
3145
- #: app/features/mec/dashboard.php:366
3146
  msgid "Total Bookings"
3147
  msgstr "Rezerwacje"
3148
 
3149
- #: app/features/mec/dashboard.php:393
3150
  msgid "This Month"
3151
  msgstr "Ten miesiąc"
3152
 
3153
- #: app/features/mec/dashboard.php:394
3154
  msgid "Last Month"
3155
  msgstr "Ostatni miesiąc"
3156
 
3157
- #: app/features/mec/dashboard.php:395
3158
  msgid "This Year"
3159
  msgstr "W tym roku"
3160
 
3161
- #: app/features/mec/dashboard.php:396
3162
  msgid "Last Year"
3163
  msgstr "W poprzednim roku"
3164
 
3165
- #: app/features/mec/dashboard.php:408
3166
  msgid "Bar"
3167
  msgstr "Pasek"
3168
 
3169
- #: app/features/mec/dashboard.php:409
3170
  msgid "Line"
3171
  msgstr "Linia"
3172
 
3173
- #: app/features/mec/dashboard.php:411
3174
  msgid "Filter"
3175
  msgstr "Filtr"
3176
 
3177
- #: app/features/mec/dashboard.php:427
3178
  #, php-format
3179
  msgid "Total Sells (%s)"
3180
  msgstr "Sprzedaż w sumie (%s)"
3181
 
3182
- #: app/features/mec/dashboard.php:448
3183
  msgid "Change Log"
3184
  msgstr "Dziennik Zmian"
3185
 
@@ -4173,7 +4173,7 @@ msgstr "Wyłączone"
4173
  #: app/features/mec/meta_boxes/search_form.php:693
4174
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4175
  #: app/features/search.php:79 app/features/speakers.php:61
4176
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4177
  #: app/libraries/skins.php:936
4178
  msgid "Speaker"
4179
  msgstr ""
@@ -5178,7 +5178,7 @@ msgid "You can enable/disable Schema scripts"
5178
  msgstr ""
5179
 
5180
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5181
- #: app/libraries/main.php:5290
5182
  msgid "Weekdays"
5183
  msgstr "Dni powszednie"
5184
 
@@ -6451,7 +6451,7 @@ msgstr "np. email@domena.pl"
6451
  msgid "eg. https://webnus.net"
6452
  msgstr "http://webnus.biz"
6453
 
6454
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6455
  #: app/skins/single.php:862
6456
  msgid "Other Organizers"
6457
  msgstr ""
@@ -6512,7 +6512,7 @@ msgstr ""
6512
  msgid "No bookings found!"
6513
  msgstr "Nie znaleziono rezerwacji!"
6514
 
6515
- #: app/features/search.php:87 app/libraries/main.php:5280
6516
  msgid "label"
6517
  msgstr "etykieta"
6518
 
@@ -6539,7 +6539,7 @@ msgid "No search result."
6539
  msgstr ""
6540
 
6541
  #: app/features/search_bar/search_result.php:11
6542
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6543
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6544
  #: app/skins/single.php:160 app/skins/single.php:753
6545
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6646,70 +6646,70 @@ msgstr "Zniżka"
6646
  msgid "Download Invoice"
6647
  msgstr ""
6648
 
6649
- #: app/libraries/factory.php:156
6650
  msgid "M.E. Calendar"
6651
  msgstr "Kalendarz"
6652
 
6653
- #: app/libraries/factory.php:195
6654
  msgctxt "plugin link"
6655
  msgid "Upgrade to Pro Version"
6656
  msgstr ""
6657
 
6658
- #: app/libraries/factory.php:213
6659
  msgctxt "plugin link"
6660
  msgid "Settings"
6661
  msgstr "Ustawienia"
6662
 
6663
- #: app/libraries/factory.php:218
6664
  msgctxt "plugin link"
6665
  msgid "Upgrade"
6666
  msgstr ""
6667
 
6668
- #: app/libraries/factory.php:361
6669
  msgid "day"
6670
  msgstr "dzień"
6671
 
6672
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6673
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6674
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6675
  msgid "days"
6676
  msgstr "dni"
6677
 
6678
- #: app/libraries/factory.php:363
6679
  msgid "hour"
6680
  msgstr "godzina"
6681
 
6682
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6683
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6684
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6685
  msgid "hours"
6686
  msgstr "godzin"
6687
 
6688
- #: app/libraries/factory.php:365
6689
  msgid "minute"
6690
  msgstr "minuta"
6691
 
6692
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6693
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6694
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6695
  msgid "minutes"
6696
  msgstr "minut"
6697
 
6698
- #: app/libraries/factory.php:367
6699
  msgid "second"
6700
  msgstr "sekunda"
6701
 
6702
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6703
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6704
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6705
  msgid "seconds"
6706
  msgstr "sekund"
6707
 
6708
- #: app/libraries/factory.php:415
6709
  msgid "MEC Single Sidebar"
6710
  msgstr "Pasek boczny wydarzenia"
6711
 
6712
- #: app/libraries/factory.php:416
6713
  msgid "Custom sidebar for single and modal page of MEC."
6714
  msgstr ""
6715
  "Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
@@ -6785,31 +6785,31 @@ msgstr "Widok suwaka"
6785
  msgid "Tile View"
6786
  msgstr "Widok suwaka"
6787
 
6788
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6789
  msgid "SU"
6790
  msgstr "NIE"
6791
 
6792
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6793
  msgid "MO"
6794
  msgstr "PN"
6795
 
6796
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6797
  msgid "TU"
6798
  msgstr "WT"
6799
 
6800
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6801
  msgid "WE"
6802
  msgstr "ŚR"
6803
 
6804
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6805
  msgid "TH"
6806
  msgstr "CZW"
6807
 
6808
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6809
  msgid "FR"
6810
  msgstr "PT"
6811
 
6812
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6813
  msgid "SA"
6814
  msgstr "SOB"
6815
 
@@ -7138,7 +7138,7 @@ msgstr "Podaj etykietę dla tej opcji"
7138
  msgid "Free"
7139
  msgstr "Darmowy"
7140
 
7141
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7142
  #, fuzzy
7143
  #| msgid "M.E. Calendar"
7144
  msgid "M.E. Calender"
@@ -7149,100 +7149,100 @@ msgstr "Kalendarz"
7149
  msgid "Copy of %s"
7150
  msgstr "Kopia %s"
7151
 
7152
- #: app/libraries/main.php:4669
7153
  msgid "Booked an event."
7154
  msgstr "Zarezerwowano wydarzenie."
7155
 
7156
- #: app/libraries/main.php:4710
7157
  #, php-format
7158
  msgid "%s booked %s event."
7159
  msgstr "%s zarezerwował %s wydarzenie."
7160
 
7161
- #: app/libraries/main.php:5275
7162
  msgid "Taxonomies"
7163
  msgstr "Taksonomie"
7164
 
7165
- #: app/libraries/main.php:5277
7166
  msgid "Category Plural Label"
7167
  msgstr "Etykieta dla kategorii - liczba mnoga"
7168
 
7169
- #: app/libraries/main.php:5278
7170
  msgid "Category Singular Label"
7171
  msgstr "Etykieta dla kategorii - liczba pojedyncza"
7172
 
7173
- #: app/libraries/main.php:5279
7174
  msgid "Label Plural Label"
7175
  msgstr "Etykieta - liczba mnoga"
7176
 
7177
- #: app/libraries/main.php:5280
7178
  msgid "Label Singular Label"
7179
  msgstr "Etykieta - liczba pojedyncza"
7180
 
7181
- #: app/libraries/main.php:5281
7182
  msgid "Location Plural Label"
7183
  msgstr "Etykieta dla lokalizacji - wersja mnoga"
7184
 
7185
- #: app/libraries/main.php:5282
7186
  msgid "Location Singular Label"
7187
  msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
7188
 
7189
- #: app/libraries/main.php:5283
7190
  msgid "Organizer Plural Label"
7191
  msgstr "Etykieta dla organizatora - wersja mnoga"
7192
 
7193
- #: app/libraries/main.php:5284
7194
  msgid "Organizer Singular Label"
7195
  msgstr "Etykieta dla organizatora - wersja pojedyncza"
7196
 
7197
- #: app/libraries/main.php:5285
7198
  #, fuzzy
7199
  #| msgid "Label Plural Label"
7200
  msgid "Speaker Plural Label"
7201
  msgstr "Etykieta - liczba mnoga"
7202
 
7203
- #: app/libraries/main.php:5286
7204
  #, fuzzy
7205
  #| msgid "Label Singular Label"
7206
  msgid "Speaker Singular Label"
7207
  msgstr "Etykieta - liczba pojedyncza"
7208
 
7209
- #: app/libraries/main.php:5292
7210
  msgid "Sunday abbreviation"
7211
  msgstr "Niedziela"
7212
 
7213
- #: app/libraries/main.php:5293
7214
  msgid "Monday abbreviation"
7215
  msgstr "Poniedziałek"
7216
 
7217
- #: app/libraries/main.php:5294
7218
  msgid "Tuesday abbreviation"
7219
  msgstr "Wtorek"
7220
 
7221
- #: app/libraries/main.php:5295
7222
  msgid "Wednesday abbreviation"
7223
  msgstr "Środa"
7224
 
7225
- #: app/libraries/main.php:5296
7226
  msgid "Thursday abbreviation"
7227
  msgstr "Czwartek"
7228
 
7229
- #: app/libraries/main.php:5297
7230
  msgid "Friday abbreviation"
7231
  msgstr "Piątek"
7232
 
7233
- #: app/libraries/main.php:5298
7234
  msgid "Saturday abbreviation"
7235
  msgstr "Sobota"
7236
 
7237
- #: app/libraries/main.php:5302
7238
  msgid "Others"
7239
  msgstr "Inne"
7240
 
7241
- #: app/libraries/main.php:5304
7242
  msgid "Booking Success Message"
7243
  msgstr "Wiadomość zakończenia rezerwacji"
7244
 
7245
- #: app/libraries/main.php:5304
7246
  msgid ""
7247
  "Thanks for your booking. Your tickets booked, booking verification might be "
7248
  "needed, please check your email."
@@ -7250,11 +7250,11 @@ msgstr ""
7250
  "Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
7251
  "rezerwacji może być konieczna, sprawdź swoją pocztę email."
7252
 
7253
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7254
  msgid "Register Button"
7255
  msgstr "Przycisk rejestracji"
7256
 
7257
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7258
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7259
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7260
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7271,11 +7271,11 @@ msgstr "Przycisk rejestracji"
7271
  msgid "REGISTER"
7272
  msgstr "REJESTRACJA"
7273
 
7274
- #: app/libraries/main.php:5306
7275
  msgid "View Detail Button"
7276
  msgstr "Pokaż szczegóły"
7277
 
7278
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7279
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7280
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7281
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7286,87 +7286,88 @@ msgstr "Pokaż szczegóły"
7286
  msgid "View Detail"
7287
  msgstr "Pokaż szczegóły"
7288
 
7289
- #: app/libraries/main.php:5307
7290
  msgid "Event Detail Button"
7291
  msgstr "Szczegóły wydarzenia"
7292
 
7293
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7294
  msgid "Event Detail"
7295
  msgstr "Szczegóły wydarzenia"
7296
 
7297
- #: app/libraries/main.php:5309
7298
  msgid "More Info Link"
7299
  msgstr "Więcej informacji"
7300
 
7301
- #: app/libraries/main.php:5312
7302
  msgid "Ticket (Singular)"
7303
  msgstr ""
7304
 
7305
- #: app/libraries/main.php:5313
7306
  msgid "Tickets (Plural)"
7307
  msgstr ""
7308
 
7309
- #: app/libraries/main.php:5399
7310
  msgid "EventON"
7311
  msgstr ""
7312
 
7313
- #: app/libraries/main.php:5400
7314
  msgid "The Events Calendar"
7315
  msgstr ""
7316
 
7317
- #: app/libraries/main.php:5401
7318
  msgid "Events Schedule WP Plugin"
7319
  msgstr ""
7320
 
7321
- #: app/libraries/main.php:5402
7322
  msgid "Calendarize It"
7323
  msgstr ""
7324
 
7325
- #: app/libraries/main.php:5403
7326
  #, fuzzy
7327
  #| msgid "No Search Options"
7328
  msgid "Event Espresso"
7329
  msgstr "Brak opcji wyszukiwania"
7330
 
7331
- #: app/libraries/main.php:5404
7332
  #, fuzzy
7333
  #| msgid "Event Repeating"
7334
  msgid "Events Manager (Recurring)"
7335
  msgstr "Wydarzenie powtarzalne"
7336
 
7337
- #: app/libraries/main.php:5405
7338
  #, fuzzy
7339
  #| msgid "Modern Events Calendar"
7340
  msgid "Events Manager (Single)"
7341
  msgstr "Nowoczesny Kalendarz Wydarzeń"
7342
 
7343
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7344
  msgid "Confirmed"
7345
  msgstr "Potwierdzone"
7346
 
7347
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7348
  msgid "Rejected"
7349
  msgstr "Odrzucone"
7350
 
7351
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7352
  msgid "Pending"
7353
  msgstr "Oczekuje"
7354
 
7355
- #: app/libraries/main.php:5529
7356
  msgid "Waiting"
7357
  msgstr "Oczekuje"
7358
 
7359
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7360
  msgid "Skin controller does not exist."
7361
  msgstr "Kontroler skórki nie iestnieje."
7362
 
7363
- #: app/libraries/main.php:5848
7364
  #, fuzzy
7365
  #| msgid "Sold out!"
7366
  msgid "Sold Out"
7367
  msgstr "Wyprzedane!"
7368
 
7369
- #: app/libraries/main.php:5856
7370
  #, fuzzy
7371
  #| msgid "Ticket"
7372
  msgid "Last Few Tickets"
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:49+0330\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
77
  msgstr "Kolor wydarzenia"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:414
80
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
81
  #: app/features/mec/support.php:20 app/libraries/main.php:594
82
  msgid "Settings"
83
  msgstr "Ustawienia"
253
  msgstr "Aktywacja MEC"
254
 
255
  #: app/features/events.php:157 app/features/ix/export.php:34
256
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
258
  #: app/skins/yearly_view/tpl.php:68
259
  msgid "Events"
273
  msgid "Add Event"
274
  msgstr "Dodaj wydarzenie"
275
 
276
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
277
  msgid "Add New Event"
278
  msgstr "Dodaj nowe wydarzenie"
279
 
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
+ #: app/features/search.php:67 app/libraries/main.php:5281
316
  #: app/libraries/skins.php:858 app/skins/single.php:566
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
326
  msgid "Categories"
327
  msgstr "Kategorie"
328
 
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
450
  #: app/skins/single.php:812 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
454
  msgstr "Organizator"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
458
  #: app/skins/single.php:589 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
  #: app/features/fes/form.php:251 app/features/ix.php:3510
505
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
506
+ #: app/features/mec/dashboard.php:401
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
509
  #: app/features/mec/meta_boxes/display_options.php:406
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
  #: app/features/fes/form.php:291 app/features/ix.php:3510
543
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
544
+ #: app/features/mec/dashboard.php:402
545
  msgid "End Date"
546
  msgstr "Data zakończenia"
547
 
670
  msgstr "Powtórzenia"
671
 
672
  #: app/features/events.php:743 app/features/fes/form.php:349
673
+ #: app/features/mec/dashboard.php:404
674
  #: app/skins/default_full_calendar/tpl.php:69
675
  #: app/skins/full_calendar/tpl.php:110
676
  msgid "Daily"
695
  msgstr "Co tydzień"
696
 
697
  #: app/features/events.php:778 app/features/fes/form.php:354
698
+ #: app/features/mec/dashboard.php:405
699
  #: app/skins/default_full_calendar/tpl.php:67
700
  #: app/skins/full_calendar/tpl.php:108
701
  msgid "Monthly"
702
  msgstr "Co miesiąc"
703
 
704
  #: app/features/events.php:785 app/features/fes/form.php:355
705
+ #: app/features/mec/dashboard.php:406
706
  #: app/skins/default_full_calendar/tpl.php:66
707
  #: app/skins/full_calendar/tpl.php:107
708
  msgid "Yearly"
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 "Koszt wydarzenia"
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
+ #: app/features/events.php:1264 app/libraries/render.php:506
867
  msgid "Day 1"
868
  msgstr ""
869
 
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 ""
952
  msgstr "Linki wydarzenia"
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 "Link strony www wydarzenia"
958
 
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
983
  #: app/skins/single.php:673 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Bilety"
1056
 
1416
  #: app/features/mec/meta_boxes/search_form.php:679
1417
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1418
  #: app/features/search.php:71 app/libraries/main.php:2236
1419
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1420
  #: app/skins/single.php:493 app/skins/single.php:924
1421
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1422
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1481
 
1482
  #: app/features/events.php:3808 app/features/fes.php:223
1483
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1484
+ #: app/libraries/main.php:5315
1485
  msgid "Ticket"
1486
  msgstr "Zgłoszenie"
1487
 
1659
 
1660
  #: app/features/fes/form.php:783 app/features/labels.php:61
1661
  #: app/features/labels.php:221 app/features/mec.php:403
1662
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1663
  #: app/skins/single.php:702 app/skins/single/default.php:155
1664
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1665
  #: app/skins/single/modern.php:223
2091
  msgid "Import all of your Facebook events into MEC."
2092
  msgstr "Importuj wszystkie wydarzenia Facebook do MEC."
2093
 
2094
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2095
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2096
  msgid "Documentation"
2097
  msgstr "Dokumentacja"
2460
  msgstr "Obraz wyróżniający"
2461
 
2462
  #: app/features/labels.php:118 app/features/labels.php:143
2463
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2464
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2465
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2466
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2495
  msgstr "Wydarzenie %s"
2496
 
2497
  #: app/features/locations.php:59 app/features/mec.php:404
2498
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2499
+ #: app/libraries/main.php:5284
2500
  msgid "Locations"
2501
  msgstr "Lokalizacje"
2502
 
2603
  msgid "Don't show map in single event page"
2604
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
2605
 
2606
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2607
  #, fuzzy
2608
  #| msgid "Search Locations"
2609
  msgid "Other Locations"
2662
  msgid "Support"
2663
  msgstr "Wsparcie"
2664
 
2665
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2666
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2667
+ #: app/libraries/main.php:5286
2668
  msgid "Organizers"
2669
  msgstr "Organizatorzy"
2670
 
2671
  #: app/features/mec.php:413 app/features/mec.php:437
2672
+ #: app/features/mec/dashboard.php:264
2673
  msgid "Shortcodes"
2674
  msgstr "Shortcodes"
2675
 
3030
  #: app/features/mec/notifications.php:905
3031
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3032
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3033
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
3034
  msgid "Verified"
3035
  msgstr "Zweryfikowane"
3036
 
3056
  msgid "Modern Events Calendar (Lite)"
3057
  msgstr "Nowoczesny Kalendarz Wydarzeń"
3058
 
3059
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3060
  msgctxt "plugin rate"
3061
  msgid "Rate the plugin ★★★★★"
3062
  msgstr ""
3067
  msgid "Update"
3068
  msgstr "Zaktualizuj %s"
3069
 
3070
+ #: app/features/mec/dashboard.php:96
3071
  #, php-format
3072
  msgid ""
3073
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3075
  "Spots, etc you should upgrade to the Pro version."
3076
  msgstr ""
3077
 
3078
+ #: app/features/mec/dashboard.php:96
3079
  msgid "lite"
3080
  msgstr ""
3081
 
3082
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3083
  msgid "GO PREMIUM"
3084
  msgstr ""
3085
 
3086
+ #: app/features/mec/dashboard.php:102
3087
  #, php-format
3088
  msgid ""
3089
  "Easily get a discount coupon by rating us on %s or following and reposting "
3090
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3091
  msgstr ""
3092
 
3093
+ #: app/features/mec/dashboard.php:102
3094
  #, fuzzy
3095
  #| msgid "Address"
3096
  msgid "WordPress"
3097
  msgstr "Adres"
3098
 
3099
+ #: app/features/mec/dashboard.php:102
3100
  msgid "Copouns!"
3101
  msgstr ""
3102
 
3103
+ #: app/features/mec/dashboard.php:131
3104
  #, fuzzy
3105
  #| msgid "Modern Events Calendar"
3106
  msgid "Getting started with Modern Events Calendar"
3107
  msgstr "Nowoczesny Kalendarz Wydarzeń"
3108
 
3109
+ #: app/features/mec/dashboard.php:132
3110
  msgid ""
3111
  "In this short video, you can learn how to make an event and put a calendar "
3112
  "on your website. Please watch this 2 minutes video to the end."
3113
  msgstr ""
3114
 
3115
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3116
  #, fuzzy
3117
  #| msgid "MEC Activation"
3118
  msgid "MEC Activate"
3119
  msgstr "Aktywacja MEC"
3120
 
3121
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3122
  #, fuzzy
3123
  #| msgid "MEC Activation"
3124
  msgid "Activate Addons"
3125
  msgstr "Aktywacja MEC"
3126
 
3127
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3128
  msgid "You cannot access this section."
3129
  msgstr ""
3130
 
3131
+ #: app/features/mec/dashboard.php:178
3132
  msgid ""
3133
  "In order to use all plugin features and options, please enter your purchase "
3134
  "code."
3135
  msgstr ""
3136
 
3137
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3138
  msgid "Upcoming Events"
3139
  msgstr "Nadchodzące wydarzenia"
3140
 
3141
+ #: app/features/mec/dashboard.php:313
3142
  msgid "Popular Gateways"
3143
  msgstr "Popularne bramki płatności"
3144
 
3145
+ #: app/features/mec/dashboard.php:367
3146
  msgid "Total Bookings"
3147
  msgstr "Rezerwacje"
3148
 
3149
+ #: app/features/mec/dashboard.php:394
3150
  msgid "This Month"
3151
  msgstr "Ten miesiąc"
3152
 
3153
+ #: app/features/mec/dashboard.php:395
3154
  msgid "Last Month"
3155
  msgstr "Ostatni miesiąc"
3156
 
3157
+ #: app/features/mec/dashboard.php:396
3158
  msgid "This Year"
3159
  msgstr "W tym roku"
3160
 
3161
+ #: app/features/mec/dashboard.php:397
3162
  msgid "Last Year"
3163
  msgstr "W poprzednim roku"
3164
 
3165
+ #: app/features/mec/dashboard.php:409
3166
  msgid "Bar"
3167
  msgstr "Pasek"
3168
 
3169
+ #: app/features/mec/dashboard.php:410
3170
  msgid "Line"
3171
  msgstr "Linia"
3172
 
3173
+ #: app/features/mec/dashboard.php:412
3174
  msgid "Filter"
3175
  msgstr "Filtr"
3176
 
3177
+ #: app/features/mec/dashboard.php:428
3178
  #, php-format
3179
  msgid "Total Sells (%s)"
3180
  msgstr "Sprzedaż w sumie (%s)"
3181
 
3182
+ #: app/features/mec/dashboard.php:449
3183
  msgid "Change Log"
3184
  msgstr "Dziennik Zmian"
3185
 
4173
  #: app/features/mec/meta_boxes/search_form.php:693
4174
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4175
  #: app/features/search.php:79 app/features/speakers.php:61
4176
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4177
  #: app/libraries/skins.php:936
4178
  msgid "Speaker"
4179
  msgstr ""
5178
  msgstr ""
5179
 
5180
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5181
+ #: app/libraries/main.php:5293
5182
  msgid "Weekdays"
5183
  msgstr "Dni powszednie"
5184
 
6451
  msgid "eg. https://webnus.net"
6452
  msgstr "http://webnus.biz"
6453
 
6454
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6455
  #: app/skins/single.php:862
6456
  msgid "Other Organizers"
6457
  msgstr ""
6512
  msgid "No bookings found!"
6513
  msgstr "Nie znaleziono rezerwacji!"
6514
 
6515
+ #: app/features/search.php:87 app/libraries/main.php:5283
6516
  msgid "label"
6517
  msgstr "etykieta"
6518
 
6539
  msgstr ""
6540
 
6541
  #: app/features/search_bar/search_result.php:11
6542
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6543
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6544
  #: app/skins/single.php:160 app/skins/single.php:753
6545
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6646
  msgid "Download Invoice"
6647
  msgstr ""
6648
 
6649
+ #: app/libraries/factory.php:159
6650
  msgid "M.E. Calendar"
6651
  msgstr "Kalendarz"
6652
 
6653
+ #: app/libraries/factory.php:198
6654
  msgctxt "plugin link"
6655
  msgid "Upgrade to Pro Version"
6656
  msgstr ""
6657
 
6658
+ #: app/libraries/factory.php:216
6659
  msgctxt "plugin link"
6660
  msgid "Settings"
6661
  msgstr "Ustawienia"
6662
 
6663
+ #: app/libraries/factory.php:221
6664
  msgctxt "plugin link"
6665
  msgid "Upgrade"
6666
  msgstr ""
6667
 
6668
+ #: app/libraries/factory.php:356
6669
  msgid "day"
6670
  msgstr "dzień"
6671
 
6672
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6673
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6674
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6675
  msgid "days"
6676
  msgstr "dni"
6677
 
6678
+ #: app/libraries/factory.php:358
6679
  msgid "hour"
6680
  msgstr "godzina"
6681
 
6682
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6683
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6684
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6685
  msgid "hours"
6686
  msgstr "godzin"
6687
 
6688
+ #: app/libraries/factory.php:360
6689
  msgid "minute"
6690
  msgstr "minuta"
6691
 
6692
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6693
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6694
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6695
  msgid "minutes"
6696
  msgstr "minut"
6697
 
6698
+ #: app/libraries/factory.php:362
6699
  msgid "second"
6700
  msgstr "sekunda"
6701
 
6702
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6703
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6704
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6705
  msgid "seconds"
6706
  msgstr "sekund"
6707
 
6708
+ #: app/libraries/factory.php:411
6709
  msgid "MEC Single Sidebar"
6710
  msgstr "Pasek boczny wydarzenia"
6711
 
6712
+ #: app/libraries/factory.php:412
6713
  msgid "Custom sidebar for single and modal page of MEC."
6714
  msgstr ""
6715
  "Indywidualny pasek dla strony wydarzenia oraz okna modalnego wydarzenia."
6785
  msgid "Tile View"
6786
  msgstr "Widok suwaka"
6787
 
6788
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6789
  msgid "SU"
6790
  msgstr "NIE"
6791
 
6792
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6793
  msgid "MO"
6794
  msgstr "PN"
6795
 
6796
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6797
  msgid "TU"
6798
  msgstr "WT"
6799
 
6800
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6801
  msgid "WE"
6802
  msgstr "ŚR"
6803
 
6804
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6805
  msgid "TH"
6806
  msgstr "CZW"
6807
 
6808
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6809
  msgid "FR"
6810
  msgstr "PT"
6811
 
6812
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6813
  msgid "SA"
6814
  msgstr "SOB"
6815
 
7138
  msgid "Free"
7139
  msgstr "Darmowy"
7140
 
7141
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7142
  #, fuzzy
7143
  #| msgid "M.E. Calendar"
7144
  msgid "M.E. Calender"
7149
  msgid "Copy of %s"
7150
  msgstr "Kopia %s"
7151
 
7152
+ #: app/libraries/main.php:4672
7153
  msgid "Booked an event."
7154
  msgstr "Zarezerwowano wydarzenie."
7155
 
7156
+ #: app/libraries/main.php:4713
7157
  #, php-format
7158
  msgid "%s booked %s event."
7159
  msgstr "%s zarezerwował %s wydarzenie."
7160
 
7161
+ #: app/libraries/main.php:5278
7162
  msgid "Taxonomies"
7163
  msgstr "Taksonomie"
7164
 
7165
+ #: app/libraries/main.php:5280
7166
  msgid "Category Plural Label"
7167
  msgstr "Etykieta dla kategorii - liczba mnoga"
7168
 
7169
+ #: app/libraries/main.php:5281
7170
  msgid "Category Singular Label"
7171
  msgstr "Etykieta dla kategorii - liczba pojedyncza"
7172
 
7173
+ #: app/libraries/main.php:5282
7174
  msgid "Label Plural Label"
7175
  msgstr "Etykieta - liczba mnoga"
7176
 
7177
+ #: app/libraries/main.php:5283
7178
  msgid "Label Singular Label"
7179
  msgstr "Etykieta - liczba pojedyncza"
7180
 
7181
+ #: app/libraries/main.php:5284
7182
  msgid "Location Plural Label"
7183
  msgstr "Etykieta dla lokalizacji - wersja mnoga"
7184
 
7185
+ #: app/libraries/main.php:5285
7186
  msgid "Location Singular Label"
7187
  msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
7188
 
7189
+ #: app/libraries/main.php:5286
7190
  msgid "Organizer Plural Label"
7191
  msgstr "Etykieta dla organizatora - wersja mnoga"
7192
 
7193
+ #: app/libraries/main.php:5287
7194
  msgid "Organizer Singular Label"
7195
  msgstr "Etykieta dla organizatora - wersja pojedyncza"
7196
 
7197
+ #: app/libraries/main.php:5288
7198
  #, fuzzy
7199
  #| msgid "Label Plural Label"
7200
  msgid "Speaker Plural Label"
7201
  msgstr "Etykieta - liczba mnoga"
7202
 
7203
+ #: app/libraries/main.php:5289
7204
  #, fuzzy
7205
  #| msgid "Label Singular Label"
7206
  msgid "Speaker Singular Label"
7207
  msgstr "Etykieta - liczba pojedyncza"
7208
 
7209
+ #: app/libraries/main.php:5295
7210
  msgid "Sunday abbreviation"
7211
  msgstr "Niedziela"
7212
 
7213
+ #: app/libraries/main.php:5296
7214
  msgid "Monday abbreviation"
7215
  msgstr "Poniedziałek"
7216
 
7217
+ #: app/libraries/main.php:5297
7218
  msgid "Tuesday abbreviation"
7219
  msgstr "Wtorek"
7220
 
7221
+ #: app/libraries/main.php:5298
7222
  msgid "Wednesday abbreviation"
7223
  msgstr "Środa"
7224
 
7225
+ #: app/libraries/main.php:5299
7226
  msgid "Thursday abbreviation"
7227
  msgstr "Czwartek"
7228
 
7229
+ #: app/libraries/main.php:5300
7230
  msgid "Friday abbreviation"
7231
  msgstr "Piątek"
7232
 
7233
+ #: app/libraries/main.php:5301
7234
  msgid "Saturday abbreviation"
7235
  msgstr "Sobota"
7236
 
7237
+ #: app/libraries/main.php:5305
7238
  msgid "Others"
7239
  msgstr "Inne"
7240
 
7241
+ #: app/libraries/main.php:5307
7242
  msgid "Booking Success Message"
7243
  msgstr "Wiadomość zakończenia rezerwacji"
7244
 
7245
+ #: app/libraries/main.php:5307
7246
  msgid ""
7247
  "Thanks for your booking. Your tickets booked, booking verification might be "
7248
  "needed, please check your email."
7250
  "Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
7251
  "rezerwacji może być konieczna, sprawdź swoją pocztę email."
7252
 
7253
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7254
  msgid "Register Button"
7255
  msgstr "Przycisk rejestracji"
7256
 
7257
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7258
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7259
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7260
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7271
  msgid "REGISTER"
7272
  msgstr "REJESTRACJA"
7273
 
7274
+ #: app/libraries/main.php:5309
7275
  msgid "View Detail Button"
7276
  msgstr "Pokaż szczegóły"
7277
 
7278
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7279
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7280
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7281
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7286
  msgid "View Detail"
7287
  msgstr "Pokaż szczegóły"
7288
 
7289
+ #: app/libraries/main.php:5310
7290
  msgid "Event Detail Button"
7291
  msgstr "Szczegóły wydarzenia"
7292
 
7293
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7294
  msgid "Event Detail"
7295
  msgstr "Szczegóły wydarzenia"
7296
 
7297
+ #: app/libraries/main.php:5312
7298
  msgid "More Info Link"
7299
  msgstr "Więcej informacji"
7300
 
7301
+ #: app/libraries/main.php:5315
7302
  msgid "Ticket (Singular)"
7303
  msgstr ""
7304
 
7305
+ #: app/libraries/main.php:5316
7306
  msgid "Tickets (Plural)"
7307
  msgstr ""
7308
 
7309
+ #: app/libraries/main.php:5402
7310
  msgid "EventON"
7311
  msgstr ""
7312
 
7313
+ #: app/libraries/main.php:5403
7314
  msgid "The Events Calendar"
7315
  msgstr ""
7316
 
7317
+ #: app/libraries/main.php:5404
7318
  msgid "Events Schedule WP Plugin"
7319
  msgstr ""
7320
 
7321
+ #: app/libraries/main.php:5405
7322
  msgid "Calendarize It"
7323
  msgstr ""
7324
 
7325
+ #: app/libraries/main.php:5406
7326
  #, fuzzy
7327
  #| msgid "No Search Options"
7328
  msgid "Event Espresso"
7329
  msgstr "Brak opcji wyszukiwania"
7330
 
7331
+ #: app/libraries/main.php:5407
7332
  #, fuzzy
7333
  #| msgid "Event Repeating"
7334
  msgid "Events Manager (Recurring)"
7335
  msgstr "Wydarzenie powtarzalne"
7336
 
7337
+ #: app/libraries/main.php:5408
7338
  #, fuzzy
7339
  #| msgid "Modern Events Calendar"
7340
  msgid "Events Manager (Single)"
7341
  msgstr "Nowoczesny Kalendarz Wydarzeń"
7342
 
7343
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7344
  msgid "Confirmed"
7345
  msgstr "Potwierdzone"
7346
 
7347
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7348
  msgid "Rejected"
7349
  msgstr "Odrzucone"
7350
 
7351
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7352
  msgid "Pending"
7353
  msgstr "Oczekuje"
7354
 
7355
+ #: app/libraries/main.php:5532
7356
  msgid "Waiting"
7357
  msgstr "Oczekuje"
7358
 
7359
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7360
+ #: app/libraries/render.php:418
7361
  msgid "Skin controller does not exist."
7362
  msgstr "Kontroler skórki nie iestnieje."
7363
 
7364
+ #: app/libraries/main.php:5851
7365
  #, fuzzy
7366
  #| msgid "Sold out!"
7367
  msgid "Sold Out"
7368
  msgstr "Wyprzedane!"
7369
 
7370
+ #: app/libraries/main.php:5859
7371
  #, fuzzy
7372
  #| msgid "Ticket"
7373
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-pt_BR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
6
- "PO-Revision-Date: 2020-01-22 10:50+0330\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
@@ -77,7 +77,7 @@ msgid "Event Color"
77
  msgstr "Cor do Evento"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:414
80
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
81
  #: app/features/mec/support.php:20 app/libraries/main.php:594
82
  msgid "Settings"
83
  msgstr "Configurações"
@@ -253,7 +253,7 @@ msgid "MEC Activation"
253
  msgstr "Ativação CEM"
254
 
255
  #: app/features/events.php:157 app/features/ix/export.php:34
256
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
258
  #: app/skins/yearly_view/tpl.php:68
259
  msgid "Events"
@@ -273,7 +273,7 @@ msgstr "Evento"
273
  msgid "Add Event"
274
  msgstr "Adicionar Evento"
275
 
276
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
277
  msgid "Add New Event"
278
  msgstr "Adicionar Novo Evento"
279
 
@@ -312,7 +312,7 @@ msgstr "Nenhum evento encontrado na Lixeira!"
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
- #: app/features/search.php:67 app/libraries/main.php:5278
316
  #: app/libraries/skins.php:858 app/skins/single.php:566
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -322,7 +322,7 @@ msgstr "Categoria"
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
326
  msgid "Categories"
327
  msgstr "Categorias"
328
 
@@ -446,7 +446,7 @@ msgstr "Link"
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
450
  #: app/skins/single.php:812 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -454,7 +454,7 @@ msgid "Organizer"
454
  msgstr "Organizador"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
458
  #: app/skins/single.php:589 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
@@ -503,7 +503,7 @@ msgstr "Data e Hora"
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
  #: app/features/fes/form.php:251 app/features/ix.php:3510
505
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
506
- #: app/features/mec/dashboard.php:400
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
509
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -541,7 +541,7 @@ msgstr "PM"
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
  #: app/features/fes/form.php:291 app/features/ix.php:3510
543
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
544
- #: app/features/mec/dashboard.php:401
545
  msgid "End Date"
546
  msgstr "Data de Término"
547
 
@@ -670,7 +670,7 @@ msgid "Repeats"
670
  msgstr "Repetições"
671
 
672
  #: app/features/events.php:743 app/features/fes/form.php:349
673
- #: app/features/mec/dashboard.php:403
674
  #: app/skins/default_full_calendar/tpl.php:69
675
  #: app/skins/full_calendar/tpl.php:110
676
  msgid "Daily"
@@ -695,14 +695,14 @@ msgid "Weekly"
695
  msgstr "Semanalmente"
696
 
697
  #: app/features/events.php:778 app/features/fes/form.php:354
698
- #: app/features/mec/dashboard.php:404
699
  #: app/skins/default_full_calendar/tpl.php:67
700
  #: app/skins/full_calendar/tpl.php:108
701
  msgid "Monthly"
702
  msgstr "Mensalmente"
703
 
704
  #: app/features/events.php:785 app/features/fes/form.php:355
705
- #: app/features/mec/dashboard.php:405
706
  #: app/skins/default_full_calendar/tpl.php:66
707
  #: app/skins/full_calendar/tpl.php:107
708
  msgid "Yearly"
@@ -831,7 +831,7 @@ msgstr "Próxima Ocorrência de Outros Eventos"
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:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Custo do Evento"
@@ -863,7 +863,7 @@ msgid ""
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
- #: app/features/events.php:1264 app/libraries/render.php:466
867
  msgid "Day 1"
868
  msgstr ""
869
 
@@ -935,7 +935,7 @@ msgstr "Descrição"
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:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Links do Evento"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Link do Evento"
958
 
@@ -979,7 +979,7 @@ msgid "URL Shortener"
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
983
  #: app/skins/single.php:673 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1050,7 +1050,7 @@ msgid "12"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Bilhetes"
1056
 
@@ -1415,7 +1415,7 @@ msgstr "Participante"
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1419
  #: app/skins/single.php:493 app/skins/single.php:924
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1480,7 +1480,7 @@ msgstr ""
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
- #: app/libraries/main.php:5312
1484
  msgid "Ticket"
1485
  msgstr "Bilhete"
1486
 
@@ -1658,7 +1658,7 @@ msgstr "Remover Imagem"
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1662
  #: app/skins/single.php:702 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
@@ -2095,7 +2095,7 @@ msgstr "Importar do Calendário do Facebook"
2095
  msgid "Import all of your Facebook events into MEC."
2096
  msgstr "Importe todos os seus eventos do facebook para o CEM."
2097
 
2098
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2099
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2100
  msgid "Documentation"
2101
  msgstr "Documentação"
@@ -2462,7 +2462,7 @@ msgid "Featured"
2462
  msgstr "Imagem Destacada"
2463
 
2464
  #: app/features/labels.php:118 app/features/labels.php:143
2465
- #: app/libraries/main.php:5528 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
@@ -2497,8 +2497,8 @@ msgid "Event %s"
2497
  msgstr ""
2498
 
2499
  #: app/features/locations.php:59 app/features/mec.php:404
2500
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2501
- #: app/libraries/main.php:5281
2502
  msgid "Locations"
2503
  msgstr "Localizações"
2504
 
@@ -2605,7 +2605,7 @@ msgstr "Escolha uma imagem"
2605
  msgid "Don't show map in single event page"
2606
  msgstr "Não mostrar mapa na página de evento individual"
2607
 
2608
- #: app/features/locations.php:356 app/libraries/main.php:5315
2609
  #, fuzzy
2610
  #| msgid "Search Locations"
2611
  msgid "Other Locations"
@@ -2664,14 +2664,14 @@ msgstr "Suporte"
2664
  msgid "Support"
2665
  msgstr "Suporte"
2666
 
2667
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2668
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2669
- #: app/libraries/main.php:5283
2670
  msgid "Organizers"
2671
  msgstr "Organizadores"
2672
 
2673
  #: app/features/mec.php:413 app/features/mec.php:437
2674
- #: app/features/mec/dashboard.php:263
2675
  msgid "Shortcodes"
2676
  msgstr "Códigos Curtos"
2677
 
@@ -3032,7 +3032,7 @@ msgstr ""
3032
  #: app/features/mec/notifications.php:905
3033
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3034
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3035
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
3036
  msgid "Verified"
3037
  msgstr "Verificado"
3038
 
@@ -3058,7 +3058,7 @@ msgstr ""
3058
  msgid "Modern Events Calendar (Lite)"
3059
  msgstr "Calendário de Eventos Moderno"
3060
 
3061
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3062
  msgctxt "plugin rate"
3063
  msgid "Rate the plugin ★★★★★"
3064
  msgstr ""
@@ -3069,7 +3069,7 @@ msgstr ""
3069
  msgid "Update"
3070
  msgstr "Atualizar Etiqueta"
3071
 
3072
- #: app/features/mec/dashboard.php:92
3073
  #, php-format
3074
  msgid ""
3075
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3077,111 +3077,111 @@ msgid ""
3077
  "Spots, etc you should upgrade to the Pro version."
3078
  msgstr ""
3079
 
3080
- #: app/features/mec/dashboard.php:92
3081
  msgid "lite"
3082
  msgstr ""
3083
 
3084
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3085
  msgid "GO PREMIUM"
3086
  msgstr ""
3087
 
3088
- #: app/features/mec/dashboard.php:98
3089
  #, php-format
3090
  msgid ""
3091
  "Easily get a discount coupon by rating us on %s or following and reposting "
3092
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3093
  msgstr ""
3094
 
3095
- #: app/features/mec/dashboard.php:98
3096
  #, fuzzy
3097
  #| msgid "Address"
3098
  msgid "WordPress"
3099
  msgstr "Endereço"
3100
 
3101
- #: app/features/mec/dashboard.php:98
3102
  msgid "Copouns!"
3103
  msgstr ""
3104
 
3105
- #: app/features/mec/dashboard.php:127
3106
  #, fuzzy
3107
  #| msgid "Modern Events Calendar"
3108
  msgid "Getting started with Modern Events Calendar"
3109
  msgstr "Calendário de Eventos Moderno"
3110
 
3111
- #: app/features/mec/dashboard.php:128
3112
  msgid ""
3113
  "In this short video, you can learn how to make an event and put a calendar "
3114
  "on your website. Please watch this 2 minutes video to the end."
3115
  msgstr ""
3116
 
3117
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3118
  #, fuzzy
3119
  #| msgid "MEC Activation"
3120
  msgid "MEC Activate"
3121
  msgstr "Ativação CEM"
3122
 
3123
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3124
  #, fuzzy
3125
  #| msgid "MEC Activation"
3126
  msgid "Activate Addons"
3127
  msgstr "Ativação CEM"
3128
 
3129
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3130
  msgid "You cannot access this section."
3131
  msgstr ""
3132
 
3133
- #: app/features/mec/dashboard.php:174
3134
  msgid ""
3135
  "In order to use all plugin features and options, please enter your purchase "
3136
  "code."
3137
  msgstr ""
3138
 
3139
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3140
  msgid "Upcoming Events"
3141
  msgstr ""
3142
 
3143
- #: app/features/mec/dashboard.php:312
3144
  msgid "Popular Gateways"
3145
  msgstr ""
3146
 
3147
- #: app/features/mec/dashboard.php:366
3148
  msgid "Total Bookings"
3149
  msgstr ""
3150
 
3151
- #: app/features/mec/dashboard.php:393
3152
  msgid "This Month"
3153
  msgstr ""
3154
 
3155
- #: app/features/mec/dashboard.php:394
3156
  msgid "Last Month"
3157
  msgstr ""
3158
 
3159
- #: app/features/mec/dashboard.php:395
3160
  msgid "This Year"
3161
  msgstr ""
3162
 
3163
- #: app/features/mec/dashboard.php:396
3164
  msgid "Last Year"
3165
  msgstr ""
3166
 
3167
- #: app/features/mec/dashboard.php:408
3168
  msgid "Bar"
3169
  msgstr ""
3170
 
3171
- #: app/features/mec/dashboard.php:409
3172
  msgid "Line"
3173
  msgstr ""
3174
 
3175
- #: app/features/mec/dashboard.php:411
3176
  msgid "Filter"
3177
  msgstr ""
3178
 
3179
- #: app/features/mec/dashboard.php:427
3180
  #, php-format
3181
  msgid "Total Sells (%s)"
3182
  msgstr ""
3183
 
3184
- #: app/features/mec/dashboard.php:448
3185
  msgid "Change Log"
3186
  msgstr "Registro de Alterações"
3187
 
@@ -4171,7 +4171,7 @@ msgstr "Desativado"
4171
  #: app/features/mec/meta_boxes/search_form.php:693
4172
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4173
  #: app/features/search.php:79 app/features/speakers.php:61
4174
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4175
  #: app/libraries/skins.php:936
4176
  msgid "Speaker"
4177
  msgstr ""
@@ -5176,7 +5176,7 @@ msgid "You can enable/disable Schema scripts"
5176
  msgstr ""
5177
 
5178
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5179
- #: app/libraries/main.php:5290
5180
  msgid "Weekdays"
5181
  msgstr "Dias da semana"
5182
 
@@ -6449,7 +6449,7 @@ msgstr "ex. john@smith.com"
6449
  msgid "eg. https://webnus.net"
6450
  msgstr "http://webnus.biz"
6451
 
6452
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6453
  #: app/skins/single.php:862
6454
  msgid "Other Organizers"
6455
  msgstr ""
@@ -6510,7 +6510,7 @@ msgstr ""
6510
  msgid "No bookings found!"
6511
  msgstr "Nenhuma reserva encontrada!"
6512
 
6513
- #: app/features/search.php:87 app/libraries/main.php:5280
6514
  msgid "label"
6515
  msgstr ""
6516
 
@@ -6537,7 +6537,7 @@ msgid "No search result."
6537
  msgstr ""
6538
 
6539
  #: app/features/search_bar/search_result.php:11
6540
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6541
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6542
  #: app/skins/single.php:160 app/skins/single.php:753
6543
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6644,70 +6644,70 @@ msgstr "Desconto"
6644
  msgid "Download Invoice"
6645
  msgstr ""
6646
 
6647
- #: app/libraries/factory.php:156
6648
  msgid "M.E. Calendar"
6649
  msgstr "Calendário E.M."
6650
 
6651
- #: app/libraries/factory.php:195
6652
  msgctxt "plugin link"
6653
  msgid "Upgrade to Pro Version"
6654
  msgstr ""
6655
 
6656
- #: app/libraries/factory.php:213
6657
  msgctxt "plugin link"
6658
  msgid "Settings"
6659
  msgstr "Configurações"
6660
 
6661
- #: app/libraries/factory.php:218
6662
  msgctxt "plugin link"
6663
  msgid "Upgrade"
6664
  msgstr ""
6665
 
6666
- #: app/libraries/factory.php:361
6667
  msgid "day"
6668
  msgstr "dia"
6669
 
6670
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6671
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6672
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6673
  msgid "days"
6674
  msgstr "dias"
6675
 
6676
- #: app/libraries/factory.php:363
6677
  msgid "hour"
6678
  msgstr "hora"
6679
 
6680
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6681
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6682
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6683
  msgid "hours"
6684
  msgstr "horas"
6685
 
6686
- #: app/libraries/factory.php:365
6687
  msgid "minute"
6688
  msgstr "minuto"
6689
 
6690
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6691
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6692
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6693
  msgid "minutes"
6694
  msgstr "minutos"
6695
 
6696
- #: app/libraries/factory.php:367
6697
  msgid "second"
6698
  msgstr "segundo"
6699
 
6700
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6701
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6702
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6703
  msgid "seconds"
6704
  msgstr "segundos"
6705
 
6706
- #: app/libraries/factory.php:415
6707
  msgid "MEC Single Sidebar"
6708
  msgstr ""
6709
 
6710
- #: app/libraries/factory.php:416
6711
  msgid "Custom sidebar for single and modal page of MEC."
6712
  msgstr ""
6713
 
@@ -6782,31 +6782,31 @@ msgstr "Visualização do Slider"
6782
  msgid "Tile View"
6783
  msgstr "Visualização do Slider"
6784
 
6785
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6786
  msgid "SU"
6787
  msgstr "DOM"
6788
 
6789
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6790
  msgid "MO"
6791
  msgstr "SEG"
6792
 
6793
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6794
  msgid "TU"
6795
  msgstr "TER"
6796
 
6797
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6798
  msgid "WE"
6799
  msgstr "QUA"
6800
 
6801
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6802
  msgid "TH"
6803
  msgstr "QUI"
6804
 
6805
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6806
  msgid "FR"
6807
  msgstr "SEX"
6808
 
6809
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6810
  msgid "SA"
6811
  msgstr "SAB"
6812
 
@@ -7135,7 +7135,7 @@ msgstr "Inserir uma etiqueta para esta opção"
7135
  msgid "Free"
7136
  msgstr "Grátis"
7137
 
7138
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7139
  #, fuzzy
7140
  #| msgid "M.E. Calendar"
7141
  msgid "M.E. Calender"
@@ -7146,100 +7146,100 @@ msgstr "Calendário E.M."
7146
  msgid "Copy of %s"
7147
  msgstr "Cópia de %s"
7148
 
7149
- #: app/libraries/main.php:4669
7150
  msgid "Booked an event."
7151
  msgstr "Um evento reservado."
7152
 
7153
- #: app/libraries/main.php:4710
7154
  #, php-format
7155
  msgid "%s booked %s event."
7156
  msgstr "Evento %s reservado %s."
7157
 
7158
- #: app/libraries/main.php:5275
7159
  msgid "Taxonomies"
7160
  msgstr ""
7161
 
7162
- #: app/libraries/main.php:5277
7163
  msgid "Category Plural Label"
7164
  msgstr ""
7165
 
7166
- #: app/libraries/main.php:5278
7167
  msgid "Category Singular Label"
7168
  msgstr ""
7169
 
7170
- #: app/libraries/main.php:5279
7171
  msgid "Label Plural Label"
7172
  msgstr ""
7173
 
7174
- #: app/libraries/main.php:5280
7175
  msgid "Label Singular Label"
7176
  msgstr ""
7177
 
7178
- #: app/libraries/main.php:5281
7179
  msgid "Location Plural Label"
7180
  msgstr ""
7181
 
7182
- #: app/libraries/main.php:5282
7183
  msgid "Location Singular Label"
7184
  msgstr ""
7185
 
7186
- #: app/libraries/main.php:5283
7187
  msgid "Organizer Plural Label"
7188
  msgstr ""
7189
 
7190
- #: app/libraries/main.php:5284
7191
  msgid "Organizer Singular Label"
7192
  msgstr ""
7193
 
7194
- #: app/libraries/main.php:5285
7195
  #, fuzzy
7196
  #| msgid "Search Labels"
7197
  msgid "Speaker Plural Label"
7198
  msgstr "Pesquisar Etiquetas"
7199
 
7200
- #: app/libraries/main.php:5286
7201
  #, fuzzy
7202
  #| msgid "Popular Labels"
7203
  msgid "Speaker Singular Label"
7204
  msgstr "Etiquetas Populares"
7205
 
7206
- #: app/libraries/main.php:5292
7207
  msgid "Sunday abbreviation"
7208
  msgstr ""
7209
 
7210
- #: app/libraries/main.php:5293
7211
  msgid "Monday abbreviation"
7212
  msgstr ""
7213
 
7214
- #: app/libraries/main.php:5294
7215
  msgid "Tuesday abbreviation"
7216
  msgstr ""
7217
 
7218
- #: app/libraries/main.php:5295
7219
  msgid "Wednesday abbreviation"
7220
  msgstr ""
7221
 
7222
- #: app/libraries/main.php:5296
7223
  msgid "Thursday abbreviation"
7224
  msgstr ""
7225
 
7226
- #: app/libraries/main.php:5297
7227
  msgid "Friday abbreviation"
7228
  msgstr ""
7229
 
7230
- #: app/libraries/main.php:5298
7231
  msgid "Saturday abbreviation"
7232
  msgstr ""
7233
 
7234
- #: app/libraries/main.php:5302
7235
  msgid "Others"
7236
  msgstr ""
7237
 
7238
- #: app/libraries/main.php:5304
7239
  msgid "Booking Success Message"
7240
  msgstr ""
7241
 
7242
- #: app/libraries/main.php:5304
7243
  msgid ""
7244
  "Thanks for your booking. Your tickets booked, booking verification might be "
7245
  "needed, please check your email."
@@ -7247,11 +7247,11 @@ msgstr ""
7247
  "Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
7248
  "reserva é necessária, por favor verifique seu e-mail."
7249
 
7250
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7251
  msgid "Register Button"
7252
  msgstr ""
7253
 
7254
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7255
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7256
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7257
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7268,11 +7268,11 @@ msgstr ""
7268
  msgid "REGISTER"
7269
  msgstr "REGISTRAR"
7270
 
7271
- #: app/libraries/main.php:5306
7272
  msgid "View Detail Button"
7273
  msgstr ""
7274
 
7275
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7276
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7277
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7278
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7283,85 +7283,86 @@ msgstr ""
7283
  msgid "View Detail"
7284
  msgstr "Ver Detalhes"
7285
 
7286
- #: app/libraries/main.php:5307
7287
  msgid "Event Detail Button"
7288
  msgstr ""
7289
 
7290
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7291
  msgid "Event Detail"
7292
  msgstr "Detalhes do Evento"
7293
 
7294
- #: app/libraries/main.php:5309
7295
  msgid "More Info Link"
7296
  msgstr ""
7297
 
7298
- #: app/libraries/main.php:5312
7299
  msgid "Ticket (Singular)"
7300
  msgstr ""
7301
 
7302
- #: app/libraries/main.php:5313
7303
  msgid "Tickets (Plural)"
7304
  msgstr ""
7305
 
7306
- #: app/libraries/main.php:5399
7307
  msgid "EventON"
7308
  msgstr ""
7309
 
7310
- #: app/libraries/main.php:5400
7311
  msgid "The Events Calendar"
7312
  msgstr ""
7313
 
7314
- #: app/libraries/main.php:5401
7315
  msgid "Events Schedule WP Plugin"
7316
  msgstr ""
7317
 
7318
- #: app/libraries/main.php:5402
7319
  msgid "Calendarize It"
7320
  msgstr ""
7321
 
7322
- #: app/libraries/main.php:5403
7323
  #, fuzzy
7324
  #| msgid "No Search Options"
7325
  msgid "Event Espresso"
7326
  msgstr "Sem Opções de Pesquisa"
7327
 
7328
- #: app/libraries/main.php:5404
7329
  #, fuzzy
7330
  #| msgid "Event Repeating"
7331
  msgid "Events Manager (Recurring)"
7332
  msgstr "Repetição de Eventos"
7333
 
7334
- #: app/libraries/main.php:5405
7335
  #, fuzzy
7336
  #| msgid "Modern Events Calendar"
7337
  msgid "Events Manager (Single)"
7338
  msgstr "Calendário de Eventos Moderno"
7339
 
7340
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7341
  msgid "Confirmed"
7342
  msgstr "Confirmado"
7343
 
7344
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7345
  msgid "Rejected"
7346
  msgstr "Recusado"
7347
 
7348
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7349
  msgid "Pending"
7350
  msgstr "Pendente"
7351
 
7352
- #: app/libraries/main.php:5529
7353
  msgid "Waiting"
7354
  msgstr "Aguardando"
7355
 
7356
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7357
  msgid "Skin controller does not exist."
7358
  msgstr "Controlador de pele não existe."
7359
 
7360
- #: app/libraries/main.php:5848
7361
  msgid "Sold Out"
7362
  msgstr ""
7363
 
7364
- #: app/libraries/main.php:5856
7365
  #, fuzzy
7366
  #| msgid "Ticket"
7367
  msgid "Last Few Tickets"
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\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:49+0330\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
77
  msgstr "Cor do Evento"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:414
80
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
81
  #: app/features/mec/support.php:20 app/libraries/main.php:594
82
  msgid "Settings"
83
  msgstr "Configurações"
253
  msgstr "Ativação CEM"
254
 
255
  #: app/features/events.php:157 app/features/ix/export.php:34
256
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
258
  #: app/skins/yearly_view/tpl.php:68
259
  msgid "Events"
273
  msgid "Add Event"
274
  msgstr "Adicionar Evento"
275
 
276
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
277
  msgid "Add New Event"
278
  msgstr "Adicionar Novo Evento"
279
 
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
+ #: app/features/search.php:67 app/libraries/main.php:5281
316
  #: app/libraries/skins.php:858 app/skins/single.php:566
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
326
  msgid "Categories"
327
  msgstr "Categorias"
328
 
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
450
  #: app/skins/single.php:812 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
454
  msgstr "Organizador"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
458
  #: app/skins/single.php:589 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
  #: app/features/fes/form.php:251 app/features/ix.php:3510
505
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
506
+ #: app/features/mec/dashboard.php:401
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
509
  #: app/features/mec/meta_boxes/display_options.php:406
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
  #: app/features/fes/form.php:291 app/features/ix.php:3510
543
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
544
+ #: app/features/mec/dashboard.php:402
545
  msgid "End Date"
546
  msgstr "Data de Término"
547
 
670
  msgstr "Repetições"
671
 
672
  #: app/features/events.php:743 app/features/fes/form.php:349
673
+ #: app/features/mec/dashboard.php:404
674
  #: app/skins/default_full_calendar/tpl.php:69
675
  #: app/skins/full_calendar/tpl.php:110
676
  msgid "Daily"
695
  msgstr "Semanalmente"
696
 
697
  #: app/features/events.php:778 app/features/fes/form.php:354
698
+ #: app/features/mec/dashboard.php:405
699
  #: app/skins/default_full_calendar/tpl.php:67
700
  #: app/skins/full_calendar/tpl.php:108
701
  msgid "Monthly"
702
  msgstr "Mensalmente"
703
 
704
  #: app/features/events.php:785 app/features/fes/form.php:355
705
+ #: app/features/mec/dashboard.php:406
706
  #: app/skins/default_full_calendar/tpl.php:66
707
  #: app/skins/full_calendar/tpl.php:107
708
  msgid "Yearly"
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 "Custo do Evento"
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
+ #: app/features/events.php:1264 app/libraries/render.php:506
867
  msgid "Day 1"
868
  msgstr ""
869
 
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 ""
952
  msgstr "Links do Evento"
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 "Link do Evento"
958
 
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
983
  #: app/skins/single.php:673 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Bilhetes"
1056
 
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1419
  #: app/skins/single.php:493 app/skins/single.php:924
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
+ #: app/libraries/main.php:5315
1484
  msgid "Ticket"
1485
  msgstr "Bilhete"
1486
 
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1662
  #: app/skins/single.php:702 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
2095
  msgid "Import all of your Facebook events into MEC."
2096
  msgstr "Importe todos os seus eventos do facebook para o CEM."
2097
 
2098
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2099
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2100
  msgid "Documentation"
2101
  msgstr "Documentação"
2462
  msgstr "Imagem Destacada"
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
2497
  msgstr ""
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 "Localizações"
2504
 
2605
  msgid "Don't show map in single event page"
2606
  msgstr "Não mostrar mapa na página de evento individual"
2607
 
2608
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2609
  #, fuzzy
2610
  #| msgid "Search Locations"
2611
  msgid "Other Locations"
2664
  msgid "Support"
2665
  msgstr "Suporte"
2666
 
2667
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2668
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2669
+ #: app/libraries/main.php:5286
2670
  msgid "Organizers"
2671
  msgstr "Organizadores"
2672
 
2673
  #: app/features/mec.php:413 app/features/mec.php:437
2674
+ #: app/features/mec/dashboard.php:264
2675
  msgid "Shortcodes"
2676
  msgstr "Códigos Curtos"
2677
 
3032
  #: app/features/mec/notifications.php:905
3033
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3034
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3035
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
3036
  msgid "Verified"
3037
  msgstr "Verificado"
3038
 
3058
  msgid "Modern Events Calendar (Lite)"
3059
  msgstr "Calendário de Eventos Moderno"
3060
 
3061
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3062
  msgctxt "plugin rate"
3063
  msgid "Rate the plugin ★★★★★"
3064
  msgstr ""
3069
  msgid "Update"
3070
  msgstr "Atualizar Etiqueta"
3071
 
3072
+ #: app/features/mec/dashboard.php:96
3073
  #, php-format
3074
  msgid ""
3075
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3077
  "Spots, etc you should upgrade to the Pro version."
3078
  msgstr ""
3079
 
3080
+ #: app/features/mec/dashboard.php:96
3081
  msgid "lite"
3082
  msgstr ""
3083
 
3084
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3085
  msgid "GO PREMIUM"
3086
  msgstr ""
3087
 
3088
+ #: app/features/mec/dashboard.php:102
3089
  #, php-format
3090
  msgid ""
3091
  "Easily get a discount coupon by rating us on %s or following and reposting "
3092
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3093
  msgstr ""
3094
 
3095
+ #: app/features/mec/dashboard.php:102
3096
  #, fuzzy
3097
  #| msgid "Address"
3098
  msgid "WordPress"
3099
  msgstr "Endereço"
3100
 
3101
+ #: app/features/mec/dashboard.php:102
3102
  msgid "Copouns!"
3103
  msgstr ""
3104
 
3105
+ #: app/features/mec/dashboard.php:131
3106
  #, fuzzy
3107
  #| msgid "Modern Events Calendar"
3108
  msgid "Getting started with Modern Events Calendar"
3109
  msgstr "Calendário de Eventos Moderno"
3110
 
3111
+ #: app/features/mec/dashboard.php:132
3112
  msgid ""
3113
  "In this short video, you can learn how to make an event and put a calendar "
3114
  "on your website. Please watch this 2 minutes video to the end."
3115
  msgstr ""
3116
 
3117
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3118
  #, fuzzy
3119
  #| msgid "MEC Activation"
3120
  msgid "MEC Activate"
3121
  msgstr "Ativação CEM"
3122
 
3123
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3124
  #, fuzzy
3125
  #| msgid "MEC Activation"
3126
  msgid "Activate Addons"
3127
  msgstr "Ativação CEM"
3128
 
3129
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3130
  msgid "You cannot access this section."
3131
  msgstr ""
3132
 
3133
+ #: app/features/mec/dashboard.php:178
3134
  msgid ""
3135
  "In order to use all plugin features and options, please enter your purchase "
3136
  "code."
3137
  msgstr ""
3138
 
3139
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3140
  msgid "Upcoming Events"
3141
  msgstr ""
3142
 
3143
+ #: app/features/mec/dashboard.php:313
3144
  msgid "Popular Gateways"
3145
  msgstr ""
3146
 
3147
+ #: app/features/mec/dashboard.php:367
3148
  msgid "Total Bookings"
3149
  msgstr ""
3150
 
3151
+ #: app/features/mec/dashboard.php:394
3152
  msgid "This Month"
3153
  msgstr ""
3154
 
3155
+ #: app/features/mec/dashboard.php:395
3156
  msgid "Last Month"
3157
  msgstr ""
3158
 
3159
+ #: app/features/mec/dashboard.php:396
3160
  msgid "This Year"
3161
  msgstr ""
3162
 
3163
+ #: app/features/mec/dashboard.php:397
3164
  msgid "Last Year"
3165
  msgstr ""
3166
 
3167
+ #: app/features/mec/dashboard.php:409
3168
  msgid "Bar"
3169
  msgstr ""
3170
 
3171
+ #: app/features/mec/dashboard.php:410
3172
  msgid "Line"
3173
  msgstr ""
3174
 
3175
+ #: app/features/mec/dashboard.php:412
3176
  msgid "Filter"
3177
  msgstr ""
3178
 
3179
+ #: app/features/mec/dashboard.php:428
3180
  #, php-format
3181
  msgid "Total Sells (%s)"
3182
  msgstr ""
3183
 
3184
+ #: app/features/mec/dashboard.php:449
3185
  msgid "Change Log"
3186
  msgstr "Registro de Alterações"
3187
 
4171
  #: app/features/mec/meta_boxes/search_form.php:693
4172
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4173
  #: app/features/search.php:79 app/features/speakers.php:61
4174
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4175
  #: app/libraries/skins.php:936
4176
  msgid "Speaker"
4177
  msgstr ""
5176
  msgstr ""
5177
 
5178
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5179
+ #: app/libraries/main.php:5293
5180
  msgid "Weekdays"
5181
  msgstr "Dias da semana"
5182
 
6449
  msgid "eg. https://webnus.net"
6450
  msgstr "http://webnus.biz"
6451
 
6452
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6453
  #: app/skins/single.php:862
6454
  msgid "Other Organizers"
6455
  msgstr ""
6510
  msgid "No bookings found!"
6511
  msgstr "Nenhuma reserva encontrada!"
6512
 
6513
+ #: app/features/search.php:87 app/libraries/main.php:5283
6514
  msgid "label"
6515
  msgstr ""
6516
 
6537
  msgstr ""
6538
 
6539
  #: app/features/search_bar/search_result.php:11
6540
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6541
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6542
  #: app/skins/single.php:160 app/skins/single.php:753
6543
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6644
  msgid "Download Invoice"
6645
  msgstr ""
6646
 
6647
+ #: app/libraries/factory.php:159
6648
  msgid "M.E. Calendar"
6649
  msgstr "Calendário E.M."
6650
 
6651
+ #: app/libraries/factory.php:198
6652
  msgctxt "plugin link"
6653
  msgid "Upgrade to Pro Version"
6654
  msgstr ""
6655
 
6656
+ #: app/libraries/factory.php:216
6657
  msgctxt "plugin link"
6658
  msgid "Settings"
6659
  msgstr "Configurações"
6660
 
6661
+ #: app/libraries/factory.php:221
6662
  msgctxt "plugin link"
6663
  msgid "Upgrade"
6664
  msgstr ""
6665
 
6666
+ #: app/libraries/factory.php:356
6667
  msgid "day"
6668
  msgstr "dia"
6669
 
6670
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6671
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6672
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6673
  msgid "days"
6674
  msgstr "dias"
6675
 
6676
+ #: app/libraries/factory.php:358
6677
  msgid "hour"
6678
  msgstr "hora"
6679
 
6680
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6681
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6682
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6683
  msgid "hours"
6684
  msgstr "horas"
6685
 
6686
+ #: app/libraries/factory.php:360
6687
  msgid "minute"
6688
  msgstr "minuto"
6689
 
6690
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6691
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6692
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6693
  msgid "minutes"
6694
  msgstr "minutos"
6695
 
6696
+ #: app/libraries/factory.php:362
6697
  msgid "second"
6698
  msgstr "segundo"
6699
 
6700
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6701
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6702
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6703
  msgid "seconds"
6704
  msgstr "segundos"
6705
 
6706
+ #: app/libraries/factory.php:411
6707
  msgid "MEC Single Sidebar"
6708
  msgstr ""
6709
 
6710
+ #: app/libraries/factory.php:412
6711
  msgid "Custom sidebar for single and modal page of MEC."
6712
  msgstr ""
6713
 
6782
  msgid "Tile View"
6783
  msgstr "Visualização do Slider"
6784
 
6785
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6786
  msgid "SU"
6787
  msgstr "DOM"
6788
 
6789
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6790
  msgid "MO"
6791
  msgstr "SEG"
6792
 
6793
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6794
  msgid "TU"
6795
  msgstr "TER"
6796
 
6797
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6798
  msgid "WE"
6799
  msgstr "QUA"
6800
 
6801
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6802
  msgid "TH"
6803
  msgstr "QUI"
6804
 
6805
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6806
  msgid "FR"
6807
  msgstr "SEX"
6808
 
6809
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6810
  msgid "SA"
6811
  msgstr "SAB"
6812
 
7135
  msgid "Free"
7136
  msgstr "Grátis"
7137
 
7138
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7139
  #, fuzzy
7140
  #| msgid "M.E. Calendar"
7141
  msgid "M.E. Calender"
7146
  msgid "Copy of %s"
7147
  msgstr "Cópia de %s"
7148
 
7149
+ #: app/libraries/main.php:4672
7150
  msgid "Booked an event."
7151
  msgstr "Um evento reservado."
7152
 
7153
+ #: app/libraries/main.php:4713
7154
  #, php-format
7155
  msgid "%s booked %s event."
7156
  msgstr "Evento %s reservado %s."
7157
 
7158
+ #: app/libraries/main.php:5278
7159
  msgid "Taxonomies"
7160
  msgstr ""
7161
 
7162
+ #: app/libraries/main.php:5280
7163
  msgid "Category Plural Label"
7164
  msgstr ""
7165
 
7166
+ #: app/libraries/main.php:5281
7167
  msgid "Category Singular Label"
7168
  msgstr ""
7169
 
7170
+ #: app/libraries/main.php:5282
7171
  msgid "Label Plural Label"
7172
  msgstr ""
7173
 
7174
+ #: app/libraries/main.php:5283
7175
  msgid "Label Singular Label"
7176
  msgstr ""
7177
 
7178
+ #: app/libraries/main.php:5284
7179
  msgid "Location Plural Label"
7180
  msgstr ""
7181
 
7182
+ #: app/libraries/main.php:5285
7183
  msgid "Location Singular Label"
7184
  msgstr ""
7185
 
7186
+ #: app/libraries/main.php:5286
7187
  msgid "Organizer Plural Label"
7188
  msgstr ""
7189
 
7190
+ #: app/libraries/main.php:5287
7191
  msgid "Organizer Singular Label"
7192
  msgstr ""
7193
 
7194
+ #: app/libraries/main.php:5288
7195
  #, fuzzy
7196
  #| msgid "Search Labels"
7197
  msgid "Speaker Plural Label"
7198
  msgstr "Pesquisar Etiquetas"
7199
 
7200
+ #: app/libraries/main.php:5289
7201
  #, fuzzy
7202
  #| msgid "Popular Labels"
7203
  msgid "Speaker Singular Label"
7204
  msgstr "Etiquetas Populares"
7205
 
7206
+ #: app/libraries/main.php:5295
7207
  msgid "Sunday abbreviation"
7208
  msgstr ""
7209
 
7210
+ #: app/libraries/main.php:5296
7211
  msgid "Monday abbreviation"
7212
  msgstr ""
7213
 
7214
+ #: app/libraries/main.php:5297
7215
  msgid "Tuesday abbreviation"
7216
  msgstr ""
7217
 
7218
+ #: app/libraries/main.php:5298
7219
  msgid "Wednesday abbreviation"
7220
  msgstr ""
7221
 
7222
+ #: app/libraries/main.php:5299
7223
  msgid "Thursday abbreviation"
7224
  msgstr ""
7225
 
7226
+ #: app/libraries/main.php:5300
7227
  msgid "Friday abbreviation"
7228
  msgstr ""
7229
 
7230
+ #: app/libraries/main.php:5301
7231
  msgid "Saturday abbreviation"
7232
  msgstr ""
7233
 
7234
+ #: app/libraries/main.php:5305
7235
  msgid "Others"
7236
  msgstr ""
7237
 
7238
+ #: app/libraries/main.php:5307
7239
  msgid "Booking Success Message"
7240
  msgstr ""
7241
 
7242
+ #: app/libraries/main.php:5307
7243
  msgid ""
7244
  "Thanks for your booking. Your tickets booked, booking verification might be "
7245
  "needed, please check your email."
7247
  "Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
7248
  "reserva é necessária, por favor verifique seu e-mail."
7249
 
7250
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7251
  msgid "Register Button"
7252
  msgstr ""
7253
 
7254
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7255
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7256
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7257
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7268
  msgid "REGISTER"
7269
  msgstr "REGISTRAR"
7270
 
7271
+ #: app/libraries/main.php:5309
7272
  msgid "View Detail Button"
7273
  msgstr ""
7274
 
7275
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7276
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7277
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7278
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7283
  msgid "View Detail"
7284
  msgstr "Ver Detalhes"
7285
 
7286
+ #: app/libraries/main.php:5310
7287
  msgid "Event Detail Button"
7288
  msgstr ""
7289
 
7290
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7291
  msgid "Event Detail"
7292
  msgstr "Detalhes do Evento"
7293
 
7294
+ #: app/libraries/main.php:5312
7295
  msgid "More Info Link"
7296
  msgstr ""
7297
 
7298
+ #: app/libraries/main.php:5315
7299
  msgid "Ticket (Singular)"
7300
  msgstr ""
7301
 
7302
+ #: app/libraries/main.php:5316
7303
  msgid "Tickets (Plural)"
7304
  msgstr ""
7305
 
7306
+ #: app/libraries/main.php:5402
7307
  msgid "EventON"
7308
  msgstr ""
7309
 
7310
+ #: app/libraries/main.php:5403
7311
  msgid "The Events Calendar"
7312
  msgstr ""
7313
 
7314
+ #: app/libraries/main.php:5404
7315
  msgid "Events Schedule WP Plugin"
7316
  msgstr ""
7317
 
7318
+ #: app/libraries/main.php:5405
7319
  msgid "Calendarize It"
7320
  msgstr ""
7321
 
7322
+ #: app/libraries/main.php:5406
7323
  #, fuzzy
7324
  #| msgid "No Search Options"
7325
  msgid "Event Espresso"
7326
  msgstr "Sem Opções de Pesquisa"
7327
 
7328
+ #: app/libraries/main.php:5407
7329
  #, fuzzy
7330
  #| msgid "Event Repeating"
7331
  msgid "Events Manager (Recurring)"
7332
  msgstr "Repetição de Eventos"
7333
 
7334
+ #: app/libraries/main.php:5408
7335
  #, fuzzy
7336
  #| msgid "Modern Events Calendar"
7337
  msgid "Events Manager (Single)"
7338
  msgstr "Calendário de Eventos Moderno"
7339
 
7340
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7341
  msgid "Confirmed"
7342
  msgstr "Confirmado"
7343
 
7344
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7345
  msgid "Rejected"
7346
  msgstr "Recusado"
7347
 
7348
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7349
  msgid "Pending"
7350
  msgstr "Pendente"
7351
 
7352
+ #: app/libraries/main.php:5532
7353
  msgid "Waiting"
7354
  msgstr "Aguardando"
7355
 
7356
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7357
+ #: app/libraries/render.php:418
7358
  msgid "Skin controller does not exist."
7359
  msgstr "Controlador de pele não existe."
7360
 
7361
+ #: app/libraries/main.php:5851
7362
  msgid "Sold Out"
7363
  msgstr ""
7364
 
7365
+ #: app/libraries/main.php:5859
7366
  #, fuzzy
7367
  #| msgid "Ticket"
7368
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-ru_RU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:50+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
@@ -75,7 +75,7 @@ msgid "Event Color"
75
  msgstr "Цвет события"
76
 
77
  #: app/features/contextual.php:55 app/features/mec.php:414
78
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
79
  #: app/features/mec/support.php:20 app/libraries/main.php:594
80
  msgid "Settings"
81
  msgstr "Настройки"
@@ -251,7 +251,7 @@ msgid "MEC Activation"
251
  msgstr "Активация Календаря Событий"
252
 
253
  #: app/features/events.php:157 app/features/ix/export.php:34
254
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
256
  #: app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
@@ -271,7 +271,7 @@ msgstr "Событие"
271
  msgid "Add Event"
272
  msgstr "Добавить событие"
273
 
274
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
275
  msgid "Add New Event"
276
  msgstr "Добавить новое событие"
277
 
@@ -310,7 +310,7 @@ msgstr "Событий в корзине не найдено!"
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
- #: app/features/search.php:67 app/libraries/main.php:5278
314
  #: app/libraries/skins.php:858 app/skins/single.php:566
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -320,7 +320,7 @@ msgstr "Категория"
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
324
  msgid "Categories"
325
  msgstr "Категории"
326
 
@@ -444,7 +444,7 @@ msgstr "Ссылки события"
444
  #: app/features/organizers.php:58 app/features/organizers.php:204
445
  #: app/features/organizers.php:260 app/features/organizers.php:262
446
  #: app/features/organizers.php:271 app/features/search.php:75
447
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
448
  #: app/skins/single.php:812 app/skins/single/default.php:217
449
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
450
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -452,7 +452,7 @@ msgid "Organizer"
452
  msgstr "Организатор"
453
 
454
  #: app/features/events.php:337 app/features/events.php:1172
455
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
456
  #: app/skins/single.php:589 app/skins/single/default.php:126
457
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
458
  #: app/skins/single/modern.php:208
@@ -501,7 +501,7 @@ msgstr "Дата и время"
501
  #: app/features/events.php:3555 app/features/fes/form.php:247
502
  #: app/features/fes/form.php:251 app/features/ix.php:3510
503
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
504
- #: app/features/mec/dashboard.php:400
505
  #: app/features/mec/meta_boxes/display_options.php:48
506
  #: app/features/mec/meta_boxes/display_options.php:228
507
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -539,7 +539,7 @@ msgstr "PM"
539
  #: app/features/events.php:3555 app/features/fes/form.php:287
540
  #: app/features/fes/form.php:291 app/features/ix.php:3510
541
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
542
- #: app/features/mec/dashboard.php:401
543
  msgid "End Date"
544
  msgstr "Дата окончания"
545
 
@@ -668,7 +668,7 @@ msgid "Repeats"
668
  msgstr "Повторения"
669
 
670
  #: app/features/events.php:743 app/features/fes/form.php:349
671
- #: app/features/mec/dashboard.php:403
672
  #: app/skins/default_full_calendar/tpl.php:69
673
  #: app/skins/full_calendar/tpl.php:110
674
  msgid "Daily"
@@ -693,14 +693,14 @@ msgid "Weekly"
693
  msgstr "Еженедельно"
694
 
695
  #: app/features/events.php:778 app/features/fes/form.php:354
696
- #: app/features/mec/dashboard.php:404
697
  #: app/skins/default_full_calendar/tpl.php:67
698
  #: app/skins/full_calendar/tpl.php:108
699
  msgid "Monthly"
700
  msgstr "Каждый месяц"
701
 
702
  #: app/features/events.php:785 app/features/fes/form.php:355
703
- #: app/features/mec/dashboard.php:405
704
  #: app/skins/default_full_calendar/tpl.php:66
705
  #: app/skins/full_calendar/tpl.php:107
706
  msgid "Yearly"
@@ -825,7 +825,7 @@ msgstr ""
825
  #: app/features/events.php:1168 app/features/events.php:3513
826
  #: app/features/events.php:3555 app/features/fes/form.php:727
827
  #: app/features/ix.php:3510 app/features/ix.php:3551
828
- #: app/features/mec/settings.php:656 app/libraries/main.php:5310
829
  #: app/widgets/single.php:103
830
  msgid "Event Cost"
831
  msgstr "Цена события"
@@ -857,7 +857,7 @@ msgid ""
857
  "multiple day occurrences."
858
  msgstr ""
859
 
860
- #: app/features/events.php:1264 app/libraries/render.php:466
861
  msgid "Day 1"
862
  msgstr ""
863
 
@@ -929,7 +929,7 @@ msgstr "Описание"
929
  #: app/features/events.php:1445 app/features/fes/form.php:851
930
  #: app/features/mec.php:410 app/features/mec/modules.php:52
931
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
932
- #: app/libraries/main.php:565 app/libraries/main.php:5285
933
  #: app/modules/speakers/details.php:18
934
  msgid "Speakers"
935
  msgstr ""
@@ -946,7 +946,7 @@ msgid "Event Links"
946
  msgstr "Ссылки события"
947
 
948
  #: app/features/events.php:1479 app/features/events.php:1485
949
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
950
  msgid "Event Link"
951
  msgstr "Ссылка события"
952
 
@@ -973,7 +973,7 @@ msgid "URL Shortener"
973
  msgstr ""
974
 
975
  #: app/features/events.php:1495 app/features/events.php:1508
976
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
977
  #: app/skins/single.php:673 app/skins/single/default.php:140
978
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
979
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1044,7 +1044,7 @@ msgid "12"
1044
  msgstr ""
1045
 
1046
  #: app/features/events.php:1653 app/libraries/book.php:60
1047
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1048
  msgid "Tickets"
1049
  msgstr "Билеты"
1050
 
@@ -1409,7 +1409,7 @@ msgstr "Участник"
1409
  #: app/features/mec/meta_boxes/search_form.php:679
1410
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1411
  #: app/features/search.php:71 app/libraries/main.php:2236
1412
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1413
  #: app/skins/single.php:493 app/skins/single.php:924
1414
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1415
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1474,7 +1474,7 @@ msgstr ""
1474
 
1475
  #: app/features/events.php:3808 app/features/fes.php:223
1476
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1477
- #: app/libraries/main.php:5312
1478
  msgid "Ticket"
1479
  msgstr "Билет"
1480
 
@@ -1652,7 +1652,7 @@ msgstr "Удалить изображение"
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:5279
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
@@ -2062,7 +2062,7 @@ msgstr ""
2062
  msgid "Import all of your Facebook events into MEC."
2063
  msgstr ""
2064
 
2065
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2066
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2067
  msgid "Documentation"
2068
  msgstr "Руководство пользователя"
@@ -2401,7 +2401,7 @@ msgid "Featured"
2401
  msgstr "Избранное изображение"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2436,8 +2436,8 @@ msgid "Event %s"
2436
  msgstr ""
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2440
- #: app/libraries/main.php:5281
2441
  msgid "Locations"
2442
  msgstr "Места"
2443
 
@@ -2544,7 +2544,7 @@ msgstr "Выберите изображение"
2544
  msgid "Don't show map in single event page"
2545
  msgstr "Не отображать карту на странице одиночного события"
2546
 
2547
- #: app/features/locations.php:356 app/libraries/main.php:5315
2548
  #, fuzzy
2549
  #| msgid "Search Locations"
2550
  msgid "Other Locations"
@@ -2603,14 +2603,14 @@ msgstr "Поддержка"
2603
  msgid "Support"
2604
  msgstr "Поддержка"
2605
 
2606
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2607
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2608
- #: app/libraries/main.php:5283
2609
  msgid "Organizers"
2610
  msgstr "Оранизаторы"
2611
 
2612
  #: app/features/mec.php:413 app/features/mec.php:437
2613
- #: app/features/mec/dashboard.php:263
2614
  msgid "Shortcodes"
2615
  msgstr "Шорткоды"
2616
 
@@ -2967,7 +2967,7 @@ msgstr ""
2967
  #: app/features/mec/notifications.php:905
2968
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2969
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2970
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
2971
  msgid "Verified"
2972
  msgstr "Проверено"
2973
 
@@ -2993,7 +2993,7 @@ msgstr ""
2993
  msgid "Modern Events Calendar (Lite)"
2994
  msgstr "Календарь событий"
2995
 
2996
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
2997
  msgctxt "plugin rate"
2998
  msgid "Rate the plugin ★★★★★"
2999
  msgstr ""
@@ -3004,7 +3004,7 @@ msgstr ""
3004
  msgid "Update"
3005
  msgstr "Обновить метку"
3006
 
3007
- #: app/features/mec/dashboard.php:92
3008
  #, php-format
3009
  msgid ""
3010
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3012,111 +3012,111 @@ msgid ""
3012
  "Spots, etc you should upgrade to the Pro version."
3013
  msgstr ""
3014
 
3015
- #: app/features/mec/dashboard.php:92
3016
  msgid "lite"
3017
  msgstr ""
3018
 
3019
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3020
  msgid "GO PREMIUM"
3021
  msgstr ""
3022
 
3023
- #: app/features/mec/dashboard.php:98
3024
  #, php-format
3025
  msgid ""
3026
  "Easily get a discount coupon by rating us on %s or following and reposting "
3027
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3028
  msgstr ""
3029
 
3030
- #: app/features/mec/dashboard.php:98
3031
  #, fuzzy
3032
  #| msgid "Address"
3033
  msgid "WordPress"
3034
  msgstr "Адрес"
3035
 
3036
- #: app/features/mec/dashboard.php:98
3037
  msgid "Copouns!"
3038
  msgstr ""
3039
 
3040
- #: app/features/mec/dashboard.php:127
3041
  #, fuzzy
3042
  #| msgid "Modern Events Calendar"
3043
  msgid "Getting started with Modern Events Calendar"
3044
  msgstr "Календарь событий"
3045
 
3046
- #: app/features/mec/dashboard.php:128
3047
  msgid ""
3048
  "In this short video, you can learn how to make an event and put a calendar "
3049
  "on your website. Please watch this 2 minutes video to the end."
3050
  msgstr ""
3051
 
3052
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3053
  #, fuzzy
3054
  #| msgid "MEC Activation"
3055
  msgid "MEC Activate"
3056
  msgstr "Активация Календаря Событий"
3057
 
3058
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3059
  #, fuzzy
3060
  #| msgid "MEC Activation"
3061
  msgid "Activate Addons"
3062
  msgstr "Активация Календаря Событий"
3063
 
3064
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3065
  msgid "You cannot access this section."
3066
  msgstr ""
3067
 
3068
- #: app/features/mec/dashboard.php:174
3069
  msgid ""
3070
  "In order to use all plugin features and options, please enter your purchase "
3071
  "code."
3072
  msgstr ""
3073
 
3074
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3075
  msgid "Upcoming Events"
3076
  msgstr ""
3077
 
3078
- #: app/features/mec/dashboard.php:312
3079
  msgid "Popular Gateways"
3080
  msgstr ""
3081
 
3082
- #: app/features/mec/dashboard.php:366
3083
  msgid "Total Bookings"
3084
  msgstr ""
3085
 
3086
- #: app/features/mec/dashboard.php:393
3087
  msgid "This Month"
3088
  msgstr ""
3089
 
3090
- #: app/features/mec/dashboard.php:394
3091
  msgid "Last Month"
3092
  msgstr ""
3093
 
3094
- #: app/features/mec/dashboard.php:395
3095
  msgid "This Year"
3096
  msgstr ""
3097
 
3098
- #: app/features/mec/dashboard.php:396
3099
  msgid "Last Year"
3100
  msgstr ""
3101
 
3102
- #: app/features/mec/dashboard.php:408
3103
  msgid "Bar"
3104
  msgstr ""
3105
 
3106
- #: app/features/mec/dashboard.php:409
3107
  msgid "Line"
3108
  msgstr ""
3109
 
3110
- #: app/features/mec/dashboard.php:411
3111
  msgid "Filter"
3112
  msgstr ""
3113
 
3114
- #: app/features/mec/dashboard.php:427
3115
  #, php-format
3116
  msgid "Total Sells (%s)"
3117
  msgstr ""
3118
 
3119
- #: app/features/mec/dashboard.php:448
3120
  msgid "Change Log"
3121
  msgstr "История изменений"
3122
 
@@ -4106,7 +4106,7 @@ msgstr "Выключено"
4106
  #: app/features/mec/meta_boxes/search_form.php:693
4107
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4108
  #: app/features/search.php:79 app/features/speakers.php:61
4109
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4110
  #: app/libraries/skins.php:936
4111
  msgid "Speaker"
4112
  msgstr ""
@@ -5099,7 +5099,7 @@ msgid "You can enable/disable Schema scripts"
5099
  msgstr ""
5100
 
5101
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5102
- #: app/libraries/main.php:5290
5103
  msgid "Weekdays"
5104
  msgstr ""
5105
 
@@ -6339,7 +6339,7 @@ msgstr "напр. veselyj@chelovec.com"
6339
  msgid "eg. https://webnus.net"
6340
  msgstr ""
6341
 
6342
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6343
  #: app/skins/single.php:862
6344
  msgid "Other Organizers"
6345
  msgstr ""
@@ -6400,7 +6400,7 @@ msgstr ""
6400
  msgid "No bookings found!"
6401
  msgstr "Бронирования не найдены!"
6402
 
6403
- #: app/features/search.php:87 app/libraries/main.php:5280
6404
  msgid "label"
6405
  msgstr ""
6406
 
@@ -6427,7 +6427,7 @@ msgid "No search result."
6427
  msgstr ""
6428
 
6429
  #: app/features/search_bar/search_result.php:11
6430
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6431
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6432
  #: app/skins/single.php:160 app/skins/single.php:753
6433
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6532,70 +6532,70 @@ msgstr "Скидка"
6532
  msgid "Download Invoice"
6533
  msgstr ""
6534
 
6535
- #: app/libraries/factory.php:156
6536
  msgid "M.E. Calendar"
6537
  msgstr "Календарь событий"
6538
 
6539
- #: app/libraries/factory.php:195
6540
  msgctxt "plugin link"
6541
  msgid "Upgrade to Pro Version"
6542
  msgstr ""
6543
 
6544
- #: app/libraries/factory.php:213
6545
  msgctxt "plugin link"
6546
  msgid "Settings"
6547
  msgstr "Настройки"
6548
 
6549
- #: app/libraries/factory.php:218
6550
  msgctxt "plugin link"
6551
  msgid "Upgrade"
6552
  msgstr ""
6553
 
6554
- #: app/libraries/factory.php:361
6555
  msgid "day"
6556
  msgstr "день"
6557
 
6558
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6559
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6560
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6561
  msgid "days"
6562
  msgstr "дни"
6563
 
6564
- #: app/libraries/factory.php:363
6565
  msgid "hour"
6566
  msgstr "час"
6567
 
6568
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6569
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6570
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6571
  msgid "hours"
6572
  msgstr "часы"
6573
 
6574
- #: app/libraries/factory.php:365
6575
  msgid "minute"
6576
  msgstr "минута"
6577
 
6578
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6579
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6580
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6581
  msgid "minutes"
6582
  msgstr "минуты"
6583
 
6584
- #: app/libraries/factory.php:367
6585
  msgid "second"
6586
  msgstr "секунда"
6587
 
6588
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6589
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6590
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6591
  msgid "seconds"
6592
  msgstr "секунды"
6593
 
6594
- #: app/libraries/factory.php:415
6595
  msgid "MEC Single Sidebar"
6596
  msgstr ""
6597
 
6598
- #: app/libraries/factory.php:416
6599
  msgid "Custom sidebar for single and modal page of MEC."
6600
  msgstr ""
6601
 
@@ -6670,31 +6670,31 @@ msgstr "По дням"
6670
  msgid "Tile View"
6671
  msgstr "По дням"
6672
 
6673
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6674
  msgid "SU"
6675
  msgstr "Вс"
6676
 
6677
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6678
  msgid "MO"
6679
  msgstr "Пн"
6680
 
6681
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6682
  msgid "TU"
6683
  msgstr "Вт"
6684
 
6685
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6686
  msgid "WE"
6687
  msgstr "Ср"
6688
 
6689
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6690
  msgid "TH"
6691
  msgstr "Чт"
6692
 
6693
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6694
  msgid "FR"
6695
  msgstr "Пт"
6696
 
6697
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6698
  msgid "SA"
6699
  msgstr "Сб"
6700
 
@@ -7023,7 +7023,7 @@ msgstr "Вставьте метку для этой опции"
7023
  msgid "Free"
7024
  msgstr "Свободный вход"
7025
 
7026
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7027
  #, fuzzy
7028
  #| msgid "M.E. Calendar"
7029
  msgid "M.E. Calender"
@@ -7034,100 +7034,100 @@ msgstr "Календарь событий"
7034
  msgid "Copy of %s"
7035
  msgstr "Скопировано из %s"
7036
 
7037
- #: app/libraries/main.php:4669
7038
  msgid "Booked an event."
7039
  msgstr ""
7040
 
7041
- #: app/libraries/main.php:4710
7042
  #, php-format
7043
  msgid "%s booked %s event."
7044
  msgstr ""
7045
 
7046
- #: app/libraries/main.php:5275
7047
  msgid "Taxonomies"
7048
  msgstr ""
7049
 
7050
- #: app/libraries/main.php:5277
7051
  msgid "Category Plural Label"
7052
  msgstr ""
7053
 
7054
- #: app/libraries/main.php:5278
7055
  msgid "Category Singular Label"
7056
  msgstr ""
7057
 
7058
- #: app/libraries/main.php:5279
7059
  msgid "Label Plural Label"
7060
  msgstr ""
7061
 
7062
- #: app/libraries/main.php:5280
7063
  msgid "Label Singular Label"
7064
  msgstr ""
7065
 
7066
- #: app/libraries/main.php:5281
7067
  msgid "Location Plural Label"
7068
  msgstr ""
7069
 
7070
- #: app/libraries/main.php:5282
7071
  msgid "Location Singular Label"
7072
  msgstr ""
7073
 
7074
- #: app/libraries/main.php:5283
7075
  msgid "Organizer Plural Label"
7076
  msgstr ""
7077
 
7078
- #: app/libraries/main.php:5284
7079
  msgid "Organizer Singular Label"
7080
  msgstr ""
7081
 
7082
- #: app/libraries/main.php:5285
7083
  #, fuzzy
7084
  #| msgid "Search Labels"
7085
  msgid "Speaker Plural Label"
7086
  msgstr "Поиск метки"
7087
 
7088
- #: app/libraries/main.php:5286
7089
  #, fuzzy
7090
  #| msgid "Popular Labels"
7091
  msgid "Speaker Singular Label"
7092
  msgstr "Популярные метки"
7093
 
7094
- #: app/libraries/main.php:5292
7095
  msgid "Sunday abbreviation"
7096
  msgstr ""
7097
 
7098
- #: app/libraries/main.php:5293
7099
  msgid "Monday abbreviation"
7100
  msgstr ""
7101
 
7102
- #: app/libraries/main.php:5294
7103
  msgid "Tuesday abbreviation"
7104
  msgstr ""
7105
 
7106
- #: app/libraries/main.php:5295
7107
  msgid "Wednesday abbreviation"
7108
  msgstr ""
7109
 
7110
- #: app/libraries/main.php:5296
7111
  msgid "Thursday abbreviation"
7112
  msgstr ""
7113
 
7114
- #: app/libraries/main.php:5297
7115
  msgid "Friday abbreviation"
7116
  msgstr ""
7117
 
7118
- #: app/libraries/main.php:5298
7119
  msgid "Saturday abbreviation"
7120
  msgstr ""
7121
 
7122
- #: app/libraries/main.php:5302
7123
  msgid "Others"
7124
  msgstr ""
7125
 
7126
- #: app/libraries/main.php:5304
7127
  msgid "Booking Success Message"
7128
  msgstr ""
7129
 
7130
- #: app/libraries/main.php:5304
7131
  msgid ""
7132
  "Thanks for your booking. Your tickets booked, booking verification might be "
7133
  "needed, please check your email."
@@ -7135,11 +7135,11 @@ msgstr ""
7135
  "Благодарим за бронирование. Возможно потребуется дополнительная верификация "
7136
  "ваших билетов. Пожалуйста проверьте вашу электронную почту."
7137
 
7138
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7139
  msgid "Register Button"
7140
  msgstr ""
7141
 
7142
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7143
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7144
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7145
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7156,11 +7156,11 @@ msgstr ""
7156
  msgid "REGISTER"
7157
  msgstr "РЕГИСТРАЦИЯ"
7158
 
7159
- #: app/libraries/main.php:5306
7160
  msgid "View Detail Button"
7161
  msgstr ""
7162
 
7163
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7164
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7165
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7166
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7171,85 +7171,86 @@ msgstr ""
7171
  msgid "View Detail"
7172
  msgstr "Подробнее"
7173
 
7174
- #: app/libraries/main.php:5307
7175
  msgid "Event Detail Button"
7176
  msgstr ""
7177
 
7178
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7179
  msgid "Event Detail"
7180
  msgstr "Детали события"
7181
 
7182
- #: app/libraries/main.php:5309
7183
  msgid "More Info Link"
7184
  msgstr ""
7185
 
7186
- #: app/libraries/main.php:5312
7187
  msgid "Ticket (Singular)"
7188
  msgstr ""
7189
 
7190
- #: app/libraries/main.php:5313
7191
  msgid "Tickets (Plural)"
7192
  msgstr ""
7193
 
7194
- #: app/libraries/main.php:5399
7195
  msgid "EventON"
7196
  msgstr ""
7197
 
7198
- #: app/libraries/main.php:5400
7199
  msgid "The Events Calendar"
7200
  msgstr ""
7201
 
7202
- #: app/libraries/main.php:5401
7203
  msgid "Events Schedule WP Plugin"
7204
  msgstr ""
7205
 
7206
- #: app/libraries/main.php:5402
7207
  msgid "Calendarize It"
7208
  msgstr ""
7209
 
7210
- #: app/libraries/main.php:5403
7211
  #, fuzzy
7212
  #| msgid "No Search Options"
7213
  msgid "Event Espresso"
7214
  msgstr "Опции поиска отсутствуют"
7215
 
7216
- #: app/libraries/main.php:5404
7217
  #, fuzzy
7218
  #| msgid "Event Repeating"
7219
  msgid "Events Manager (Recurring)"
7220
  msgstr "Повторяющееся событие"
7221
 
7222
- #: app/libraries/main.php:5405
7223
  #, fuzzy
7224
  #| msgid "Modern Events Calendar"
7225
  msgid "Events Manager (Single)"
7226
  msgstr "Календарь событий"
7227
 
7228
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7229
  msgid "Confirmed"
7230
  msgstr "Подтверждено"
7231
 
7232
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7233
  msgid "Rejected"
7234
  msgstr "Отклонено"
7235
 
7236
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7237
  msgid "Pending"
7238
  msgstr "В очереди"
7239
 
7240
- #: app/libraries/main.php:5529
7241
  msgid "Waiting"
7242
  msgstr "Ожидает"
7243
 
7244
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7245
  msgid "Skin controller does not exist."
7246
  msgstr "Контроллер скина не существует."
7247
 
7248
- #: app/libraries/main.php:5848
7249
  msgid "Sold Out"
7250
  msgstr ""
7251
 
7252
- #: app/libraries/main.php:5856
7253
  #, fuzzy
7254
  #| msgid "Ticket"
7255
  msgid "Last Few Tickets"
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:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
75
  msgstr "Цвет события"
76
 
77
  #: app/features/contextual.php:55 app/features/mec.php:414
78
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
79
  #: app/features/mec/support.php:20 app/libraries/main.php:594
80
  msgid "Settings"
81
  msgstr "Настройки"
251
  msgstr "Активация Календаря Событий"
252
 
253
  #: app/features/events.php:157 app/features/ix/export.php:34
254
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
256
  #: app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
271
  msgid "Add Event"
272
  msgstr "Добавить событие"
273
 
274
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
275
  msgid "Add New Event"
276
  msgstr "Добавить новое событие"
277
 
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
+ #: app/features/search.php:67 app/libraries/main.php:5281
314
  #: app/libraries/skins.php:858 app/skins/single.php:566
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
324
  msgid "Categories"
325
  msgstr "Категории"
326
 
444
  #: app/features/organizers.php:58 app/features/organizers.php:204
445
  #: app/features/organizers.php:260 app/features/organizers.php:262
446
  #: app/features/organizers.php:271 app/features/search.php:75
447
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
448
  #: app/skins/single.php:812 app/skins/single/default.php:217
449
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
450
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
452
  msgstr "Организатор"
453
 
454
  #: app/features/events.php:337 app/features/events.php:1172
455
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
456
  #: app/skins/single.php:589 app/skins/single/default.php:126
457
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
458
  #: app/skins/single/modern.php:208
501
  #: app/features/events.php:3555 app/features/fes/form.php:247
502
  #: app/features/fes/form.php:251 app/features/ix.php:3510
503
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
504
+ #: app/features/mec/dashboard.php:401
505
  #: app/features/mec/meta_boxes/display_options.php:48
506
  #: app/features/mec/meta_boxes/display_options.php:228
507
  #: app/features/mec/meta_boxes/display_options.php:406
539
  #: app/features/events.php:3555 app/features/fes/form.php:287
540
  #: app/features/fes/form.php:291 app/features/ix.php:3510
541
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
542
+ #: app/features/mec/dashboard.php:402
543
  msgid "End Date"
544
  msgstr "Дата окончания"
545
 
668
  msgstr "Повторения"
669
 
670
  #: app/features/events.php:743 app/features/fes/form.php:349
671
+ #: app/features/mec/dashboard.php:404
672
  #: app/skins/default_full_calendar/tpl.php:69
673
  #: app/skins/full_calendar/tpl.php:110
674
  msgid "Daily"
693
  msgstr "Еженедельно"
694
 
695
  #: app/features/events.php:778 app/features/fes/form.php:354
696
+ #: app/features/mec/dashboard.php:405
697
  #: app/skins/default_full_calendar/tpl.php:67
698
  #: app/skins/full_calendar/tpl.php:108
699
  msgid "Monthly"
700
  msgstr "Каждый месяц"
701
 
702
  #: app/features/events.php:785 app/features/fes/form.php:355
703
+ #: app/features/mec/dashboard.php:406
704
  #: app/skins/default_full_calendar/tpl.php:66
705
  #: app/skins/full_calendar/tpl.php:107
706
  msgid "Yearly"
825
  #: app/features/events.php:1168 app/features/events.php:3513
826
  #: app/features/events.php:3555 app/features/fes/form.php:727
827
  #: app/features/ix.php:3510 app/features/ix.php:3551
828
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5313
829
  #: app/widgets/single.php:103
830
  msgid "Event Cost"
831
  msgstr "Цена события"
857
  "multiple day occurrences."
858
  msgstr ""
859
 
860
+ #: app/features/events.php:1264 app/libraries/render.php:506
861
  msgid "Day 1"
862
  msgstr ""
863
 
929
  #: app/features/events.php:1445 app/features/fes/form.php:851
930
  #: app/features/mec.php:410 app/features/mec/modules.php:52
931
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
932
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
933
  #: app/modules/speakers/details.php:18
934
  msgid "Speakers"
935
  msgstr ""
946
  msgstr "Ссылки события"
947
 
948
  #: app/features/events.php:1479 app/features/events.php:1485
949
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
950
  msgid "Event Link"
951
  msgstr "Ссылка события"
952
 
973
  msgstr ""
974
 
975
  #: app/features/events.php:1495 app/features/events.php:1508
976
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
977
  #: app/skins/single.php:673 app/skins/single/default.php:140
978
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
979
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1044
  msgstr ""
1045
 
1046
  #: app/features/events.php:1653 app/libraries/book.php:60
1047
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1048
  msgid "Tickets"
1049
  msgstr "Билеты"
1050
 
1409
  #: app/features/mec/meta_boxes/search_form.php:679
1410
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1411
  #: app/features/search.php:71 app/libraries/main.php:2236
1412
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1413
  #: app/skins/single.php:493 app/skins/single.php:924
1414
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1415
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1474
 
1475
  #: app/features/events.php:3808 app/features/fes.php:223
1476
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1477
+ #: app/libraries/main.php:5315
1478
  msgid "Ticket"
1479
  msgstr "Билет"
1480
 
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
2062
  msgid "Import all of your Facebook events into MEC."
2063
  msgstr ""
2064
 
2065
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2066
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2067
  msgid "Documentation"
2068
  msgstr "Руководство пользователя"
2401
  msgstr "Избранное изображение"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2436
  msgstr ""
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2440
+ #: app/libraries/main.php:5284
2441
  msgid "Locations"
2442
  msgstr "Места"
2443
 
2544
  msgid "Don't show map in single event page"
2545
  msgstr "Не отображать карту на странице одиночного события"
2546
 
2547
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2548
  #, fuzzy
2549
  #| msgid "Search Locations"
2550
  msgid "Other Locations"
2603
  msgid "Support"
2604
  msgstr "Поддержка"
2605
 
2606
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2607
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2608
+ #: app/libraries/main.php:5286
2609
  msgid "Organizers"
2610
  msgstr "Оранизаторы"
2611
 
2612
  #: app/features/mec.php:413 app/features/mec.php:437
2613
+ #: app/features/mec/dashboard.php:264
2614
  msgid "Shortcodes"
2615
  msgstr "Шорткоды"
2616
 
2967
  #: app/features/mec/notifications.php:905
2968
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2969
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2970
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
2971
  msgid "Verified"
2972
  msgstr "Проверено"
2973
 
2993
  msgid "Modern Events Calendar (Lite)"
2994
  msgstr "Календарь событий"
2995
 
2996
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
2997
  msgctxt "plugin rate"
2998
  msgid "Rate the plugin ★★★★★"
2999
  msgstr ""
3004
  msgid "Update"
3005
  msgstr "Обновить метку"
3006
 
3007
+ #: app/features/mec/dashboard.php:96
3008
  #, php-format
3009
  msgid ""
3010
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3012
  "Spots, etc you should upgrade to the Pro version."
3013
  msgstr ""
3014
 
3015
+ #: app/features/mec/dashboard.php:96
3016
  msgid "lite"
3017
  msgstr ""
3018
 
3019
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3020
  msgid "GO PREMIUM"
3021
  msgstr ""
3022
 
3023
+ #: app/features/mec/dashboard.php:102
3024
  #, php-format
3025
  msgid ""
3026
  "Easily get a discount coupon by rating us on %s or following and reposting "
3027
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3028
  msgstr ""
3029
 
3030
+ #: app/features/mec/dashboard.php:102
3031
  #, fuzzy
3032
  #| msgid "Address"
3033
  msgid "WordPress"
3034
  msgstr "Адрес"
3035
 
3036
+ #: app/features/mec/dashboard.php:102
3037
  msgid "Copouns!"
3038
  msgstr ""
3039
 
3040
+ #: app/features/mec/dashboard.php:131
3041
  #, fuzzy
3042
  #| msgid "Modern Events Calendar"
3043
  msgid "Getting started with Modern Events Calendar"
3044
  msgstr "Календарь событий"
3045
 
3046
+ #: app/features/mec/dashboard.php:132
3047
  msgid ""
3048
  "In this short video, you can learn how to make an event and put a calendar "
3049
  "on your website. Please watch this 2 minutes video to the end."
3050
  msgstr ""
3051
 
3052
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3053
  #, fuzzy
3054
  #| msgid "MEC Activation"
3055
  msgid "MEC Activate"
3056
  msgstr "Активация Календаря Событий"
3057
 
3058
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3059
  #, fuzzy
3060
  #| msgid "MEC Activation"
3061
  msgid "Activate Addons"
3062
  msgstr "Активация Календаря Событий"
3063
 
3064
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3065
  msgid "You cannot access this section."
3066
  msgstr ""
3067
 
3068
+ #: app/features/mec/dashboard.php:178
3069
  msgid ""
3070
  "In order to use all plugin features and options, please enter your purchase "
3071
  "code."
3072
  msgstr ""
3073
 
3074
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3075
  msgid "Upcoming Events"
3076
  msgstr ""
3077
 
3078
+ #: app/features/mec/dashboard.php:313
3079
  msgid "Popular Gateways"
3080
  msgstr ""
3081
 
3082
+ #: app/features/mec/dashboard.php:367
3083
  msgid "Total Bookings"
3084
  msgstr ""
3085
 
3086
+ #: app/features/mec/dashboard.php:394
3087
  msgid "This Month"
3088
  msgstr ""
3089
 
3090
+ #: app/features/mec/dashboard.php:395
3091
  msgid "Last Month"
3092
  msgstr ""
3093
 
3094
+ #: app/features/mec/dashboard.php:396
3095
  msgid "This Year"
3096
  msgstr ""
3097
 
3098
+ #: app/features/mec/dashboard.php:397
3099
  msgid "Last Year"
3100
  msgstr ""
3101
 
3102
+ #: app/features/mec/dashboard.php:409
3103
  msgid "Bar"
3104
  msgstr ""
3105
 
3106
+ #: app/features/mec/dashboard.php:410
3107
  msgid "Line"
3108
  msgstr ""
3109
 
3110
+ #: app/features/mec/dashboard.php:412
3111
  msgid "Filter"
3112
  msgstr ""
3113
 
3114
+ #: app/features/mec/dashboard.php:428
3115
  #, php-format
3116
  msgid "Total Sells (%s)"
3117
  msgstr ""
3118
 
3119
+ #: app/features/mec/dashboard.php:449
3120
  msgid "Change Log"
3121
  msgstr "История изменений"
3122
 
4106
  #: app/features/mec/meta_boxes/search_form.php:693
4107
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4108
  #: app/features/search.php:79 app/features/speakers.php:61
4109
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4110
  #: app/libraries/skins.php:936
4111
  msgid "Speaker"
4112
  msgstr ""
5099
  msgstr ""
5100
 
5101
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5102
+ #: app/libraries/main.php:5293
5103
  msgid "Weekdays"
5104
  msgstr ""
5105
 
6339
  msgid "eg. https://webnus.net"
6340
  msgstr ""
6341
 
6342
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6343
  #: app/skins/single.php:862
6344
  msgid "Other Organizers"
6345
  msgstr ""
6400
  msgid "No bookings found!"
6401
  msgstr "Бронирования не найдены!"
6402
 
6403
+ #: app/features/search.php:87 app/libraries/main.php:5283
6404
  msgid "label"
6405
  msgstr ""
6406
 
6427
  msgstr ""
6428
 
6429
  #: app/features/search_bar/search_result.php:11
6430
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6431
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6432
  #: app/skins/single.php:160 app/skins/single.php:753
6433
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6532
  msgid "Download Invoice"
6533
  msgstr ""
6534
 
6535
+ #: app/libraries/factory.php:159
6536
  msgid "M.E. Calendar"
6537
  msgstr "Календарь событий"
6538
 
6539
+ #: app/libraries/factory.php:198
6540
  msgctxt "plugin link"
6541
  msgid "Upgrade to Pro Version"
6542
  msgstr ""
6543
 
6544
+ #: app/libraries/factory.php:216
6545
  msgctxt "plugin link"
6546
  msgid "Settings"
6547
  msgstr "Настройки"
6548
 
6549
+ #: app/libraries/factory.php:221
6550
  msgctxt "plugin link"
6551
  msgid "Upgrade"
6552
  msgstr ""
6553
 
6554
+ #: app/libraries/factory.php:356
6555
  msgid "day"
6556
  msgstr "день"
6557
 
6558
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6559
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6560
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6561
  msgid "days"
6562
  msgstr "дни"
6563
 
6564
+ #: app/libraries/factory.php:358
6565
  msgid "hour"
6566
  msgstr "час"
6567
 
6568
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6569
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6570
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6571
  msgid "hours"
6572
  msgstr "часы"
6573
 
6574
+ #: app/libraries/factory.php:360
6575
  msgid "minute"
6576
  msgstr "минута"
6577
 
6578
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6579
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6580
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6581
  msgid "minutes"
6582
  msgstr "минуты"
6583
 
6584
+ #: app/libraries/factory.php:362
6585
  msgid "second"
6586
  msgstr "секунда"
6587
 
6588
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6589
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6590
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6591
  msgid "seconds"
6592
  msgstr "секунды"
6593
 
6594
+ #: app/libraries/factory.php:411
6595
  msgid "MEC Single Sidebar"
6596
  msgstr ""
6597
 
6598
+ #: app/libraries/factory.php:412
6599
  msgid "Custom sidebar for single and modal page of MEC."
6600
  msgstr ""
6601
 
6670
  msgid "Tile View"
6671
  msgstr "По дням"
6672
 
6673
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6674
  msgid "SU"
6675
  msgstr "Вс"
6676
 
6677
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6678
  msgid "MO"
6679
  msgstr "Пн"
6680
 
6681
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6682
  msgid "TU"
6683
  msgstr "Вт"
6684
 
6685
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6686
  msgid "WE"
6687
  msgstr "Ср"
6688
 
6689
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6690
  msgid "TH"
6691
  msgstr "Чт"
6692
 
6693
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6694
  msgid "FR"
6695
  msgstr "Пт"
6696
 
6697
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6698
  msgid "SA"
6699
  msgstr "Сб"
6700
 
7023
  msgid "Free"
7024
  msgstr "Свободный вход"
7025
 
7026
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7027
  #, fuzzy
7028
  #| msgid "M.E. Calendar"
7029
  msgid "M.E. Calender"
7034
  msgid "Copy of %s"
7035
  msgstr "Скопировано из %s"
7036
 
7037
+ #: app/libraries/main.php:4672
7038
  msgid "Booked an event."
7039
  msgstr ""
7040
 
7041
+ #: app/libraries/main.php:4713
7042
  #, php-format
7043
  msgid "%s booked %s event."
7044
  msgstr ""
7045
 
7046
+ #: app/libraries/main.php:5278
7047
  msgid "Taxonomies"
7048
  msgstr ""
7049
 
7050
+ #: app/libraries/main.php:5280
7051
  msgid "Category Plural Label"
7052
  msgstr ""
7053
 
7054
+ #: app/libraries/main.php:5281
7055
  msgid "Category Singular Label"
7056
  msgstr ""
7057
 
7058
+ #: app/libraries/main.php:5282
7059
  msgid "Label Plural Label"
7060
  msgstr ""
7061
 
7062
+ #: app/libraries/main.php:5283
7063
  msgid "Label Singular Label"
7064
  msgstr ""
7065
 
7066
+ #: app/libraries/main.php:5284
7067
  msgid "Location Plural Label"
7068
  msgstr ""
7069
 
7070
+ #: app/libraries/main.php:5285
7071
  msgid "Location Singular Label"
7072
  msgstr ""
7073
 
7074
+ #: app/libraries/main.php:5286
7075
  msgid "Organizer Plural Label"
7076
  msgstr ""
7077
 
7078
+ #: app/libraries/main.php:5287
7079
  msgid "Organizer Singular Label"
7080
  msgstr ""
7081
 
7082
+ #: app/libraries/main.php:5288
7083
  #, fuzzy
7084
  #| msgid "Search Labels"
7085
  msgid "Speaker Plural Label"
7086
  msgstr "Поиск метки"
7087
 
7088
+ #: app/libraries/main.php:5289
7089
  #, fuzzy
7090
  #| msgid "Popular Labels"
7091
  msgid "Speaker Singular Label"
7092
  msgstr "Популярные метки"
7093
 
7094
+ #: app/libraries/main.php:5295
7095
  msgid "Sunday abbreviation"
7096
  msgstr ""
7097
 
7098
+ #: app/libraries/main.php:5296
7099
  msgid "Monday abbreviation"
7100
  msgstr ""
7101
 
7102
+ #: app/libraries/main.php:5297
7103
  msgid "Tuesday abbreviation"
7104
  msgstr ""
7105
 
7106
+ #: app/libraries/main.php:5298
7107
  msgid "Wednesday abbreviation"
7108
  msgstr ""
7109
 
7110
+ #: app/libraries/main.php:5299
7111
  msgid "Thursday abbreviation"
7112
  msgstr ""
7113
 
7114
+ #: app/libraries/main.php:5300
7115
  msgid "Friday abbreviation"
7116
  msgstr ""
7117
 
7118
+ #: app/libraries/main.php:5301
7119
  msgid "Saturday abbreviation"
7120
  msgstr ""
7121
 
7122
+ #: app/libraries/main.php:5305
7123
  msgid "Others"
7124
  msgstr ""
7125
 
7126
+ #: app/libraries/main.php:5307
7127
  msgid "Booking Success Message"
7128
  msgstr ""
7129
 
7130
+ #: app/libraries/main.php:5307
7131
  msgid ""
7132
  "Thanks for your booking. Your tickets booked, booking verification might be "
7133
  "needed, please check your email."
7135
  "Благодарим за бронирование. Возможно потребуется дополнительная верификация "
7136
  "ваших билетов. Пожалуйста проверьте вашу электронную почту."
7137
 
7138
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7139
  msgid "Register Button"
7140
  msgstr ""
7141
 
7142
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7143
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7144
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7145
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7156
  msgid "REGISTER"
7157
  msgstr "РЕГИСТРАЦИЯ"
7158
 
7159
+ #: app/libraries/main.php:5309
7160
  msgid "View Detail Button"
7161
  msgstr ""
7162
 
7163
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7164
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7165
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7166
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7171
  msgid "View Detail"
7172
  msgstr "Подробнее"
7173
 
7174
+ #: app/libraries/main.php:5310
7175
  msgid "Event Detail Button"
7176
  msgstr ""
7177
 
7178
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7179
  msgid "Event Detail"
7180
  msgstr "Детали события"
7181
 
7182
+ #: app/libraries/main.php:5312
7183
  msgid "More Info Link"
7184
  msgstr ""
7185
 
7186
+ #: app/libraries/main.php:5315
7187
  msgid "Ticket (Singular)"
7188
  msgstr ""
7189
 
7190
+ #: app/libraries/main.php:5316
7191
  msgid "Tickets (Plural)"
7192
  msgstr ""
7193
 
7194
+ #: app/libraries/main.php:5402
7195
  msgid "EventON"
7196
  msgstr ""
7197
 
7198
+ #: app/libraries/main.php:5403
7199
  msgid "The Events Calendar"
7200
  msgstr ""
7201
 
7202
+ #: app/libraries/main.php:5404
7203
  msgid "Events Schedule WP Plugin"
7204
  msgstr ""
7205
 
7206
+ #: app/libraries/main.php:5405
7207
  msgid "Calendarize It"
7208
  msgstr ""
7209
 
7210
+ #: app/libraries/main.php:5406
7211
  #, fuzzy
7212
  #| msgid "No Search Options"
7213
  msgid "Event Espresso"
7214
  msgstr "Опции поиска отсутствуют"
7215
 
7216
+ #: app/libraries/main.php:5407
7217
  #, fuzzy
7218
  #| msgid "Event Repeating"
7219
  msgid "Events Manager (Recurring)"
7220
  msgstr "Повторяющееся событие"
7221
 
7222
+ #: app/libraries/main.php:5408
7223
  #, fuzzy
7224
  #| msgid "Modern Events Calendar"
7225
  msgid "Events Manager (Single)"
7226
  msgstr "Календарь событий"
7227
 
7228
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7229
  msgid "Confirmed"
7230
  msgstr "Подтверждено"
7231
 
7232
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7233
  msgid "Rejected"
7234
  msgstr "Отклонено"
7235
 
7236
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7237
  msgid "Pending"
7238
  msgstr "В очереди"
7239
 
7240
+ #: app/libraries/main.php:5532
7241
  msgid "Waiting"
7242
  msgstr "Ожидает"
7243
 
7244
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7245
+ #: app/libraries/render.php:418
7246
  msgid "Skin controller does not exist."
7247
  msgstr "Контроллер скина не существует."
7248
 
7249
+ #: app/libraries/main.php:5851
7250
  msgid "Sold Out"
7251
  msgstr ""
7252
 
7253
+ #: app/libraries/main.php:5859
7254
  #, fuzzy
7255
  #| msgid "Ticket"
7256
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-sv_SE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-sv_SE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:50+0330\n"
6
  "Last-Translator: Mats Vallström <walle@mtre.se>\n"
7
  "Language-Team: Mats Vallström <walle@mtre.se>\n"
8
  "Language: sv_SE\n"
@@ -76,7 +76,7 @@ msgid "Event Color"
76
  msgstr "Evenemangs-färg"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:414
79
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
80
  #: app/features/mec/support.php:20 app/libraries/main.php:594
81
  msgid "Settings"
82
  msgstr "Inställningar"
@@ -252,7 +252,7 @@ msgid "MEC Activation"
252
  msgstr "MEC-aktivering"
253
 
254
  #: app/features/events.php:157 app/features/ix/export.php:34
255
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
257
  #: app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
@@ -272,7 +272,7 @@ msgstr "Evenemang"
272
  msgid "Add Event"
273
  msgstr "Lägg till evenemang"
274
 
275
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
276
  msgid "Add New Event"
277
  msgstr "Lägg till nytt evenemang"
278
 
@@ -311,7 +311,7 @@ msgstr "Inga raderade evenemang hittades!"
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:5278
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
@@ -321,7 +321,7 @@ msgstr "Kategori"
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:5277
325
  msgid "Categories"
326
  msgstr "Kategorier"
327
 
@@ -445,7 +445,7 @@ msgstr "Länk"
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:5284 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 +453,7 @@ msgid "Organizer"
453
  msgstr "Arrangör"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
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
@@ -502,7 +502,7 @@ msgstr "Datum och tid"
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
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
@@ -540,7 +540,7 @@ msgstr "PM"
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
  #: app/features/fes/form.php:291 app/features/ix.php:3510
542
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
- #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Slut-datum"
546
 
@@ -669,7 +669,7 @@ msgid "Repeats"
669
  msgstr "Upprepningar"
670
 
671
  #: app/features/events.php:743 app/features/fes/form.php:349
672
- #: app/features/mec/dashboard.php:403
673
  #: app/skins/default_full_calendar/tpl.php:69
674
  #: app/skins/full_calendar/tpl.php:110
675
  msgid "Daily"
@@ -694,14 +694,14 @@ msgid "Weekly"
694
  msgstr "Veckovis"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
- #: app/features/mec/dashboard.php:404
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Månadsvis"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
- #: app/features/mec/dashboard.php:405
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
@@ -830,7 +830,7 @@ msgstr "Nästa förekomst av andra evenemang"
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:5310
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Evenemangskostnader"
@@ -862,7 +862,7 @@ msgid ""
862
  "multiple day occurrences."
863
  msgstr ""
864
 
865
- #: app/features/events.php:1264 app/libraries/render.php:466
866
  msgid "Day 1"
867
  msgstr ""
868
 
@@ -934,7 +934,7 @@ msgstr "Beskrivning"
934
  #: app/features/events.php:1445 app/features/fes/form.php:851
935
  #: app/features/mec.php:410 app/features/mec/modules.php:52
936
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
937
- #: app/libraries/main.php:565 app/libraries/main.php:5285
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
@@ -951,7 +951,7 @@ msgid "Event Links"
951
  msgstr "Evenemangs-länkar"
952
 
953
  #: app/features/events.php:1479 app/features/events.php:1485
954
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
955
  msgid "Event Link"
956
  msgstr "Evenemangs-länk"
957
 
@@ -978,7 +978,7 @@ msgid "URL Shortener"
978
  msgstr ""
979
 
980
  #: app/features/events.php:1495 app/features/events.php:1508
981
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
982
  #: app/skins/single.php:673 app/skins/single/default.php:140
983
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
984
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -1049,7 +1049,7 @@ msgid "12"
1049
  msgstr ""
1050
 
1051
  #: app/features/events.php:1653 app/libraries/book.php:60
1052
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1053
  msgid "Tickets"
1054
  msgstr "Biljetter"
1055
 
@@ -1414,7 +1414,7 @@ msgstr "Begränsning av deltagare"
1414
  #: app/features/mec/meta_boxes/search_form.php:679
1415
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1416
  #: app/features/search.php:71 app/libraries/main.php:2236
1417
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1418
  #: app/skins/single.php:493 app/skins/single.php:924
1419
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1420
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1479,7 +1479,7 @@ msgstr "%s E-post"
1479
 
1480
  #: app/features/events.php:3808 app/features/fes.php:223
1481
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1482
- #: app/libraries/main.php:5312
1483
  msgid "Ticket"
1484
  msgstr "Biljett"
1485
 
@@ -1657,7 +1657,7 @@ msgstr "Ta bort bild"
1657
 
1658
  #: app/features/fes/form.php:783 app/features/labels.php:61
1659
  #: app/features/labels.php:221 app/features/mec.php:403
1660
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1661
  #: app/skins/single.php:702 app/skins/single/default.php:155
1662
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1663
  #: app/skins/single/modern.php:223
@@ -2085,7 +2085,7 @@ msgstr "Importera från Facebook Kalender"
2085
  msgid "Import all of your Facebook events into MEC."
2086
  msgstr "Importera alla dina Facebook-evenemang till MEC."
2087
 
2088
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2089
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2090
  msgid "Documentation"
2091
  msgstr "Dokumentation"
@@ -2448,7 +2448,7 @@ msgid "Featured"
2448
  msgstr "Utvald bild"
2449
 
2450
  #: app/features/labels.php:118 app/features/labels.php:143
2451
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2452
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2453
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2454
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2483,8 +2483,8 @@ msgid "Event %s"
2483
  msgstr "Evenemang %s"
2484
 
2485
  #: app/features/locations.php:59 app/features/mec.php:404
2486
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2487
- #: app/libraries/main.php:5281
2488
  msgid "Locations"
2489
  msgstr "Platser"
2490
 
@@ -2591,7 +2591,7 @@ msgstr "Välj bild"
2591
  msgid "Don't show map in single event page"
2592
  msgstr "Visa Inte karta på sidan för enstaka evenemang"
2593
 
2594
- #: app/features/locations.php:356 app/libraries/main.php:5315
2595
  #, fuzzy
2596
  #| msgid "Search Locations"
2597
  msgid "Other Locations"
@@ -2650,14 +2650,14 @@ msgstr "Support"
2650
  msgid "Support"
2651
  msgstr "Support"
2652
 
2653
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2654
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2655
- #: app/libraries/main.php:5283
2656
  msgid "Organizers"
2657
  msgstr "Arrangörer"
2658
 
2659
  #: app/features/mec.php:413 app/features/mec.php:437
2660
- #: app/features/mec/dashboard.php:263
2661
  msgid "Shortcodes"
2662
  msgstr "Shortcodes"
2663
 
@@ -3018,7 +3018,7 @@ msgstr ""
3018
  #: app/features/mec/notifications.php:905
3019
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3020
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3021
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
3022
  msgid "Verified"
3023
  msgstr "Verifierad"
3024
 
@@ -3044,7 +3044,7 @@ msgstr ""
3044
  msgid "Modern Events Calendar (Lite)"
3045
  msgstr "Modern Events Calendar"
3046
 
3047
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3048
  msgctxt "plugin rate"
3049
  msgid "Rate the plugin ★★★★★"
3050
  msgstr ""
@@ -3055,7 +3055,7 @@ msgstr ""
3055
  msgid "Update"
3056
  msgstr "Uppdatera %s"
3057
 
3058
- #: app/features/mec/dashboard.php:92
3059
  #, php-format
3060
  msgid ""
3061
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3063,111 +3063,111 @@ msgid ""
3063
  "Spots, etc you should upgrade to the Pro version."
3064
  msgstr ""
3065
 
3066
- #: app/features/mec/dashboard.php:92
3067
  msgid "lite"
3068
  msgstr ""
3069
 
3070
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3071
  msgid "GO PREMIUM"
3072
  msgstr ""
3073
 
3074
- #: app/features/mec/dashboard.php:98
3075
  #, php-format
3076
  msgid ""
3077
  "Easily get a discount coupon by rating us on %s or following and reposting "
3078
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3079
  msgstr ""
3080
 
3081
- #: app/features/mec/dashboard.php:98
3082
  #, fuzzy
3083
  #| msgid "Address"
3084
  msgid "WordPress"
3085
  msgstr "Adress"
3086
 
3087
- #: app/features/mec/dashboard.php:98
3088
  msgid "Copouns!"
3089
  msgstr ""
3090
 
3091
- #: app/features/mec/dashboard.php:127
3092
  #, fuzzy
3093
  #| msgid "Modern Events Calendar"
3094
  msgid "Getting started with Modern Events Calendar"
3095
  msgstr "Modern Events Calendar"
3096
 
3097
- #: app/features/mec/dashboard.php:128
3098
  msgid ""
3099
  "In this short video, you can learn how to make an event and put a calendar "
3100
  "on your website. Please watch this 2 minutes video to the end."
3101
  msgstr ""
3102
 
3103
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3104
  #, fuzzy
3105
  #| msgid "MEC Activation"
3106
  msgid "MEC Activate"
3107
  msgstr "MEC-aktivering"
3108
 
3109
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3110
  #, fuzzy
3111
  #| msgid "MEC Activation"
3112
  msgid "Activate Addons"
3113
  msgstr "MEC-aktivering"
3114
 
3115
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3116
  msgid "You cannot access this section."
3117
  msgstr ""
3118
 
3119
- #: app/features/mec/dashboard.php:174
3120
  msgid ""
3121
  "In order to use all plugin features and options, please enter your purchase "
3122
  "code."
3123
  msgstr ""
3124
 
3125
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3126
  msgid "Upcoming Events"
3127
  msgstr "Kommande evenemang"
3128
 
3129
- #: app/features/mec/dashboard.php:312
3130
  msgid "Popular Gateways"
3131
  msgstr "Populära Gateways"
3132
 
3133
- #: app/features/mec/dashboard.php:366
3134
  msgid "Total Bookings"
3135
  msgstr "Totalt antal bokningar"
3136
 
3137
- #: app/features/mec/dashboard.php:393
3138
  msgid "This Month"
3139
  msgstr "Denna månad"
3140
 
3141
- #: app/features/mec/dashboard.php:394
3142
  msgid "Last Month"
3143
  msgstr "Föregående månad"
3144
 
3145
- #: app/features/mec/dashboard.php:395
3146
  msgid "This Year"
3147
  msgstr "Det här året"
3148
 
3149
- #: app/features/mec/dashboard.php:396
3150
  msgid "Last Year"
3151
  msgstr "Föregående år"
3152
 
3153
- #: app/features/mec/dashboard.php:408
3154
  msgid "Bar"
3155
  msgstr ""
3156
 
3157
- #: app/features/mec/dashboard.php:409
3158
  msgid "Line"
3159
  msgstr "Linje"
3160
 
3161
- #: app/features/mec/dashboard.php:411
3162
  msgid "Filter"
3163
  msgstr "Filter"
3164
 
3165
- #: app/features/mec/dashboard.php:427
3166
  #, php-format
3167
  msgid "Total Sells (%s)"
3168
  msgstr "Totala försäljningar (%s)"
3169
 
3170
- #: app/features/mec/dashboard.php:448
3171
  msgid "Change Log"
3172
  msgstr "Ändringslogg"
3173
 
@@ -4164,7 +4164,7 @@ msgstr "Avaktiverad"
4164
  #: app/features/mec/meta_boxes/search_form.php:693
4165
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4166
  #: app/features/search.php:79 app/features/speakers.php:61
4167
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4168
  #: app/libraries/skins.php:936
4169
  msgid "Speaker"
4170
  msgstr ""
@@ -5170,7 +5170,7 @@ msgid "You can enable/disable Schema scripts"
5170
  msgstr ""
5171
 
5172
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5173
- #: app/libraries/main.php:5290
5174
  msgid "Weekdays"
5175
  msgstr "Veckodagar"
5176
 
@@ -6446,7 +6446,7 @@ msgstr "t.ex. tage@testlund.se"
6446
  msgid "eg. https://webnus.net"
6447
  msgstr "http://webnus.biz"
6448
 
6449
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6450
  #: app/skins/single.php:862
6451
  msgid "Other Organizers"
6452
  msgstr ""
@@ -6507,7 +6507,7 @@ msgstr ""
6507
  msgid "No bookings found!"
6508
  msgstr "Inga bokningar hittades!"
6509
 
6510
- #: app/features/search.php:87 app/libraries/main.php:5280
6511
  msgid "label"
6512
  msgstr "etikett"
6513
 
@@ -6534,7 +6534,7 @@ msgid "No search result."
6534
  msgstr ""
6535
 
6536
  #: app/features/search_bar/search_result.php:11
6537
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6538
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6539
  #: app/skins/single.php:160 app/skins/single.php:753
6540
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6641,70 +6641,70 @@ msgstr "Avdrag"
6641
  msgid "Download Invoice"
6642
  msgstr ""
6643
 
6644
- #: app/libraries/factory.php:156
6645
  msgid "M.E. Calendar"
6646
  msgstr "M.E. Calendar"
6647
 
6648
- #: app/libraries/factory.php:195
6649
  msgctxt "plugin link"
6650
  msgid "Upgrade to Pro Version"
6651
  msgstr ""
6652
 
6653
- #: app/libraries/factory.php:213
6654
  msgctxt "plugin link"
6655
  msgid "Settings"
6656
  msgstr "Inställningar"
6657
 
6658
- #: app/libraries/factory.php:218
6659
  msgctxt "plugin link"
6660
  msgid "Upgrade"
6661
  msgstr ""
6662
 
6663
- #: app/libraries/factory.php:361
6664
  msgid "day"
6665
  msgstr "dag"
6666
 
6667
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6668
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6669
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6670
  msgid "days"
6671
  msgstr "dagar"
6672
 
6673
- #: app/libraries/factory.php:363
6674
  msgid "hour"
6675
  msgstr "timme"
6676
 
6677
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6678
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6679
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6680
  msgid "hours"
6681
  msgstr "timmar"
6682
 
6683
- #: app/libraries/factory.php:365
6684
  msgid "minute"
6685
  msgstr "minut"
6686
 
6687
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6688
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6689
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6690
  msgid "minutes"
6691
  msgstr "minuter"
6692
 
6693
- #: app/libraries/factory.php:367
6694
  msgid "second"
6695
  msgstr "andra"
6696
 
6697
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6698
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6699
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6700
  msgid "seconds"
6701
  msgstr "sekunder"
6702
 
6703
- #: app/libraries/factory.php:415
6704
  msgid "MEC Single Sidebar"
6705
  msgstr ""
6706
 
6707
- #: app/libraries/factory.php:416
6708
  msgid "Custom sidebar for single and modal page of MEC."
6709
  msgstr ""
6710
 
@@ -6779,31 +6779,31 @@ msgstr "Bildspel"
6779
  msgid "Tile View"
6780
  msgstr "Bildspel"
6781
 
6782
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6783
  msgid "SU"
6784
  msgstr "Sön"
6785
 
6786
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6787
  msgid "MO"
6788
  msgstr "Mån"
6789
 
6790
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6791
  msgid "TU"
6792
  msgstr "Tis"
6793
 
6794
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6795
  msgid "WE"
6796
  msgstr "Ons"
6797
 
6798
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6799
  msgid "TH"
6800
  msgstr "Tor"
6801
 
6802
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6803
  msgid "FR"
6804
  msgstr "Fre"
6805
 
6806
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6807
  msgid "SA"
6808
  msgstr "Lör"
6809
 
@@ -7132,7 +7132,7 @@ msgstr "Fyll i en etikett för det här alternativet"
7132
  msgid "Free"
7133
  msgstr "Kostnadsfri"
7134
 
7135
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7136
  #, fuzzy
7137
  #| msgid "M.E. Calendar"
7138
  msgid "M.E. Calender"
@@ -7143,100 +7143,100 @@ msgstr "M.E. Calendar"
7143
  msgid "Copy of %s"
7144
  msgstr "Kopia av %s"
7145
 
7146
- #: app/libraries/main.php:4669
7147
  msgid "Booked an event."
7148
  msgstr "Bokade ett evenemang."
7149
 
7150
- #: app/libraries/main.php:4710
7151
  #, php-format
7152
  msgid "%s booked %s event."
7153
  msgstr "%s bokade %s evenemang."
7154
 
7155
- #: app/libraries/main.php:5275
7156
  msgid "Taxonomies"
7157
  msgstr "Taxonomier"
7158
 
7159
- #: app/libraries/main.php:5277
7160
  msgid "Category Plural Label"
7161
  msgstr "Kategori (plural etikett)"
7162
 
7163
- #: app/libraries/main.php:5278
7164
  msgid "Category Singular Label"
7165
  msgstr "Kategori (singular etikett)"
7166
 
7167
- #: app/libraries/main.php:5279
7168
  msgid "Label Plural Label"
7169
  msgstr "Etikett (plural etikett)"
7170
 
7171
- #: app/libraries/main.php:5280
7172
  msgid "Label Singular Label"
7173
  msgstr "Etikett (singular etikett)"
7174
 
7175
- #: app/libraries/main.php:5281
7176
  msgid "Location Plural Label"
7177
  msgstr "Plats (plural etikett)"
7178
 
7179
- #: app/libraries/main.php:5282
7180
  msgid "Location Singular Label"
7181
  msgstr "Plats (singular etikett)"
7182
 
7183
- #: app/libraries/main.php:5283
7184
  msgid "Organizer Plural Label"
7185
  msgstr "Arrangör (plural etikett)"
7186
 
7187
- #: app/libraries/main.php:5284
7188
  msgid "Organizer Singular Label"
7189
  msgstr "Arrangör (singular etikett)"
7190
 
7191
- #: app/libraries/main.php:5285
7192
  #, fuzzy
7193
  #| msgid "Label Plural Label"
7194
  msgid "Speaker Plural Label"
7195
  msgstr "Etikett (plural etikett)"
7196
 
7197
- #: app/libraries/main.php:5286
7198
  #, fuzzy
7199
  #| msgid "Label Singular Label"
7200
  msgid "Speaker Singular Label"
7201
  msgstr "Etikett (singular etikett)"
7202
 
7203
- #: app/libraries/main.php:5292
7204
  msgid "Sunday abbreviation"
7205
  msgstr "Söndag förkortning"
7206
 
7207
- #: app/libraries/main.php:5293
7208
  msgid "Monday abbreviation"
7209
  msgstr "Måndag förkortning"
7210
 
7211
- #: app/libraries/main.php:5294
7212
  msgid "Tuesday abbreviation"
7213
  msgstr "Tisdag förkortning"
7214
 
7215
- #: app/libraries/main.php:5295
7216
  msgid "Wednesday abbreviation"
7217
  msgstr "Onsdag förkortning"
7218
 
7219
- #: app/libraries/main.php:5296
7220
  msgid "Thursday abbreviation"
7221
  msgstr "Torsdag förkortning"
7222
 
7223
- #: app/libraries/main.php:5297
7224
  msgid "Friday abbreviation"
7225
  msgstr "Fredag ​​förkortning"
7226
 
7227
- #: app/libraries/main.php:5298
7228
  msgid "Saturday abbreviation"
7229
  msgstr "Lördag förkortning"
7230
 
7231
- #: app/libraries/main.php:5302
7232
  msgid "Others"
7233
  msgstr "Andra"
7234
 
7235
- #: app/libraries/main.php:5304
7236
  msgid "Booking Success Message"
7237
  msgstr "Meddelande om Framgångsrik bokning"
7238
 
7239
- #: app/libraries/main.php:5304
7240
  msgid ""
7241
  "Thanks for your booking. Your tickets booked, booking verification might be "
7242
  "needed, please check your email."
@@ -7244,11 +7244,11 @@ msgstr ""
7244
  "Tack för din bokning. Dina biljetter är bokade. Verifikation kan behövas, "
7245
  "kontrollera din e-post."
7246
 
7247
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7248
  msgid "Register Button"
7249
  msgstr "Knappen Registrera"
7250
 
7251
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7252
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7253
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7254
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7265,11 +7265,11 @@ msgstr "Knappen Registrera"
7265
  msgid "REGISTER"
7266
  msgstr "REGISTER"
7267
 
7268
- #: app/libraries/main.php:5306
7269
  msgid "View Detail Button"
7270
  msgstr "Knappen Visa detaljer"
7271
 
7272
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7273
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7274
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7275
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7280,87 +7280,88 @@ msgstr "Knappen Visa detaljer"
7280
  msgid "View Detail"
7281
  msgstr "Visa detaljer"
7282
 
7283
- #: app/libraries/main.php:5307
7284
  msgid "Event Detail Button"
7285
  msgstr "Knappen Evenemagsdetaljer"
7286
 
7287
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7288
  msgid "Event Detail"
7289
  msgstr "Evenemangsdetalj"
7290
 
7291
- #: app/libraries/main.php:5309
7292
  msgid "More Info Link"
7293
  msgstr "Länken ”Mer information”"
7294
 
7295
- #: app/libraries/main.php:5312
7296
  msgid "Ticket (Singular)"
7297
  msgstr ""
7298
 
7299
- #: app/libraries/main.php:5313
7300
  msgid "Tickets (Plural)"
7301
  msgstr ""
7302
 
7303
- #: app/libraries/main.php:5399
7304
  msgid "EventON"
7305
  msgstr ""
7306
 
7307
- #: app/libraries/main.php:5400
7308
  msgid "The Events Calendar"
7309
  msgstr ""
7310
 
7311
- #: app/libraries/main.php:5401
7312
  msgid "Events Schedule WP Plugin"
7313
  msgstr ""
7314
 
7315
- #: app/libraries/main.php:5402
7316
  msgid "Calendarize It"
7317
  msgstr ""
7318
 
7319
- #: app/libraries/main.php:5403
7320
  #, fuzzy
7321
  #| msgid "No Search Options"
7322
  msgid "Event Espresso"
7323
  msgstr "Ingen sökalternativ"
7324
 
7325
- #: app/libraries/main.php:5404
7326
  #, fuzzy
7327
  #| msgid "Event Repeating"
7328
  msgid "Events Manager (Recurring)"
7329
  msgstr "Upprepande evenemang"
7330
 
7331
- #: app/libraries/main.php:5405
7332
  #, fuzzy
7333
  #| msgid "Modern Events Calendar"
7334
  msgid "Events Manager (Single)"
7335
  msgstr "Modern Events Calendar"
7336
 
7337
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7338
  msgid "Confirmed"
7339
  msgstr "Bekräftad"
7340
 
7341
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7342
  msgid "Rejected"
7343
  msgstr "Avvisad"
7344
 
7345
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7346
  msgid "Pending"
7347
  msgstr "Väntande"
7348
 
7349
- #: app/libraries/main.php:5529
7350
  msgid "Waiting"
7351
  msgstr "Väntar"
7352
 
7353
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7354
  msgid "Skin controller does not exist."
7355
  msgstr "Tema-kontroll existerar inte."
7356
 
7357
- #: app/libraries/main.php:5848
7358
  #, fuzzy
7359
  #| msgid "Sold out!"
7360
  msgid "Sold Out"
7361
  msgstr "Slutsåld!"
7362
 
7363
- #: app/libraries/main.php:5856
7364
  #, fuzzy
7365
  #| msgid "Ticket"
7366
  msgid "Last Few Tickets"
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:49+0330\n"
6
  "Last-Translator: Mats Vallström <walle@mtre.se>\n"
7
  "Language-Team: Mats Vallström <walle@mtre.se>\n"
8
  "Language: sv_SE\n"
76
  msgstr "Evenemangs-färg"
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 "Inställningar"
252
  msgstr "MEC-aktivering"
253
 
254
  #: app/features/events.php:157 app/features/ix/export.php:34
255
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
257
  #: app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
272
  msgid "Add Event"
273
  msgstr "Lägg till evenemang"
274
 
275
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
276
  msgid "Add New Event"
277
  msgstr "Lägg till nytt evenemang"
278
 
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
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 "Kategorier"
327
 
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
  msgstr "Arrangör"
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
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
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
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
  #: app/features/fes/form.php:291 app/features/ix.php:3510
542
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
+ #: app/features/mec/dashboard.php:402
544
  msgid "End Date"
545
  msgstr "Slut-datum"
546
 
669
  msgstr "Upprepningar"
670
 
671
  #: app/features/events.php:743 app/features/fes/form.php:349
672
+ #: app/features/mec/dashboard.php:404
673
  #: app/skins/default_full_calendar/tpl.php:69
674
  #: app/skins/full_calendar/tpl.php:110
675
  msgid "Daily"
694
  msgstr "Veckovis"
695
 
696
  #: app/features/events.php:778 app/features/fes/form.php:354
697
+ #: app/features/mec/dashboard.php:405
698
  #: app/skins/default_full_calendar/tpl.php:67
699
  #: app/skins/full_calendar/tpl.php:108
700
  msgid "Monthly"
701
  msgstr "Månadsvis"
702
 
703
  #: app/features/events.php:785 app/features/fes/form.php:355
704
+ #: app/features/mec/dashboard.php:406
705
  #: app/skins/default_full_calendar/tpl.php:66
706
  #: app/skins/full_calendar/tpl.php:107
707
  msgid "Yearly"
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 "Evenemangskostnader"
862
  "multiple day occurrences."
863
  msgstr ""
864
 
865
+ #: app/features/events.php:1264 app/libraries/render.php:506
866
  msgid "Day 1"
867
  msgstr ""
868
 
934
  #: app/features/events.php:1445 app/features/fes/form.php:851
935
  #: app/features/mec.php:410 app/features/mec/modules.php:52
936
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
937
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
951
  msgstr "Evenemangs-länkar"
952
 
953
  #: app/features/events.php:1479 app/features/events.php:1485
954
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
955
  msgid "Event Link"
956
  msgstr "Evenemangs-länk"
957
 
978
  msgstr ""
979
 
980
  #: app/features/events.php:1495 app/features/events.php:1508
981
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
982
  #: app/skins/single.php:673 app/skins/single/default.php:140
983
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
984
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1049
  msgstr ""
1050
 
1051
  #: app/features/events.php:1653 app/libraries/book.php:60
1052
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
1053
  msgid "Tickets"
1054
  msgstr "Biljetter"
1055
 
1414
  #: app/features/mec/meta_boxes/search_form.php:679
1415
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1416
  #: app/features/search.php:71 app/libraries/main.php:2236
1417
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1418
  #: app/skins/single.php:493 app/skins/single.php:924
1419
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1420
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1479
 
1480
  #: app/features/events.php:3808 app/features/fes.php:223
1481
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1482
+ #: app/libraries/main.php:5315
1483
  msgid "Ticket"
1484
  msgstr "Biljett"
1485
 
1657
 
1658
  #: app/features/fes/form.php:783 app/features/labels.php:61
1659
  #: app/features/labels.php:221 app/features/mec.php:403
1660
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1661
  #: app/skins/single.php:702 app/skins/single/default.php:155
1662
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1663
  #: app/skins/single/modern.php:223
2085
  msgid "Import all of your Facebook events into MEC."
2086
  msgstr "Importera alla dina Facebook-evenemang till MEC."
2087
 
2088
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2089
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2090
  msgid "Documentation"
2091
  msgstr "Dokumentation"
2448
  msgstr "Utvald bild"
2449
 
2450
  #: app/features/labels.php:118 app/features/labels.php:143
2451
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2452
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2453
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2454
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2483
  msgstr "Evenemang %s"
2484
 
2485
  #: app/features/locations.php:59 app/features/mec.php:404
2486
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2487
+ #: app/libraries/main.php:5284
2488
  msgid "Locations"
2489
  msgstr "Platser"
2490
 
2591
  msgid "Don't show map in single event page"
2592
  msgstr "Visa Inte karta på sidan för enstaka evenemang"
2593
 
2594
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2595
  #, fuzzy
2596
  #| msgid "Search Locations"
2597
  msgid "Other Locations"
2650
  msgid "Support"
2651
  msgstr "Support"
2652
 
2653
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2654
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2655
+ #: app/libraries/main.php:5286
2656
  msgid "Organizers"
2657
  msgstr "Arrangörer"
2658
 
2659
  #: app/features/mec.php:413 app/features/mec.php:437
2660
+ #: app/features/mec/dashboard.php:264
2661
  msgid "Shortcodes"
2662
  msgstr "Shortcodes"
2663
 
3018
  #: app/features/mec/notifications.php:905
3019
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3020
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3021
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
3022
  msgid "Verified"
3023
  msgstr "Verifierad"
3024
 
3044
  msgid "Modern Events Calendar (Lite)"
3045
  msgstr "Modern Events Calendar"
3046
 
3047
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3048
  msgctxt "plugin rate"
3049
  msgid "Rate the plugin ★★★★★"
3050
  msgstr ""
3055
  msgid "Update"
3056
  msgstr "Uppdatera %s"
3057
 
3058
+ #: app/features/mec/dashboard.php:96
3059
  #, php-format
3060
  msgid ""
3061
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3063
  "Spots, etc you should upgrade to the Pro version."
3064
  msgstr ""
3065
 
3066
+ #: app/features/mec/dashboard.php:96
3067
  msgid "lite"
3068
  msgstr ""
3069
 
3070
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3071
  msgid "GO PREMIUM"
3072
  msgstr ""
3073
 
3074
+ #: app/features/mec/dashboard.php:102
3075
  #, php-format
3076
  msgid ""
3077
  "Easily get a discount coupon by rating us on %s or following and reposting "
3078
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3079
  msgstr ""
3080
 
3081
+ #: app/features/mec/dashboard.php:102
3082
  #, fuzzy
3083
  #| msgid "Address"
3084
  msgid "WordPress"
3085
  msgstr "Adress"
3086
 
3087
+ #: app/features/mec/dashboard.php:102
3088
  msgid "Copouns!"
3089
  msgstr ""
3090
 
3091
+ #: app/features/mec/dashboard.php:131
3092
  #, fuzzy
3093
  #| msgid "Modern Events Calendar"
3094
  msgid "Getting started with Modern Events Calendar"
3095
  msgstr "Modern Events Calendar"
3096
 
3097
+ #: app/features/mec/dashboard.php:132
3098
  msgid ""
3099
  "In this short video, you can learn how to make an event and put a calendar "
3100
  "on your website. Please watch this 2 minutes video to the end."
3101
  msgstr ""
3102
 
3103
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3104
  #, fuzzy
3105
  #| msgid "MEC Activation"
3106
  msgid "MEC Activate"
3107
  msgstr "MEC-aktivering"
3108
 
3109
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3110
  #, fuzzy
3111
  #| msgid "MEC Activation"
3112
  msgid "Activate Addons"
3113
  msgstr "MEC-aktivering"
3114
 
3115
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3116
  msgid "You cannot access this section."
3117
  msgstr ""
3118
 
3119
+ #: app/features/mec/dashboard.php:178
3120
  msgid ""
3121
  "In order to use all plugin features and options, please enter your purchase "
3122
  "code."
3123
  msgstr ""
3124
 
3125
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3126
  msgid "Upcoming Events"
3127
  msgstr "Kommande evenemang"
3128
 
3129
+ #: app/features/mec/dashboard.php:313
3130
  msgid "Popular Gateways"
3131
  msgstr "Populära Gateways"
3132
 
3133
+ #: app/features/mec/dashboard.php:367
3134
  msgid "Total Bookings"
3135
  msgstr "Totalt antal bokningar"
3136
 
3137
+ #: app/features/mec/dashboard.php:394
3138
  msgid "This Month"
3139
  msgstr "Denna månad"
3140
 
3141
+ #: app/features/mec/dashboard.php:395
3142
  msgid "Last Month"
3143
  msgstr "Föregående månad"
3144
 
3145
+ #: app/features/mec/dashboard.php:396
3146
  msgid "This Year"
3147
  msgstr "Det här året"
3148
 
3149
+ #: app/features/mec/dashboard.php:397
3150
  msgid "Last Year"
3151
  msgstr "Föregående år"
3152
 
3153
+ #: app/features/mec/dashboard.php:409
3154
  msgid "Bar"
3155
  msgstr ""
3156
 
3157
+ #: app/features/mec/dashboard.php:410
3158
  msgid "Line"
3159
  msgstr "Linje"
3160
 
3161
+ #: app/features/mec/dashboard.php:412
3162
  msgid "Filter"
3163
  msgstr "Filter"
3164
 
3165
+ #: app/features/mec/dashboard.php:428
3166
  #, php-format
3167
  msgid "Total Sells (%s)"
3168
  msgstr "Totala försäljningar (%s)"
3169
 
3170
+ #: app/features/mec/dashboard.php:449
3171
  msgid "Change Log"
3172
  msgstr "Ändringslogg"
3173
 
4164
  #: app/features/mec/meta_boxes/search_form.php:693
4165
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4166
  #: app/features/search.php:79 app/features/speakers.php:61
4167
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4168
  #: app/libraries/skins.php:936
4169
  msgid "Speaker"
4170
  msgstr ""
5170
  msgstr ""
5171
 
5172
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5173
+ #: app/libraries/main.php:5293
5174
  msgid "Weekdays"
5175
  msgstr "Veckodagar"
5176
 
6446
  msgid "eg. https://webnus.net"
6447
  msgstr "http://webnus.biz"
6448
 
6449
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6450
  #: app/skins/single.php:862
6451
  msgid "Other Organizers"
6452
  msgstr ""
6507
  msgid "No bookings found!"
6508
  msgstr "Inga bokningar hittades!"
6509
 
6510
+ #: app/features/search.php:87 app/libraries/main.php:5283
6511
  msgid "label"
6512
  msgstr "etikett"
6513
 
6534
  msgstr ""
6535
 
6536
  #: app/features/search_bar/search_result.php:11
6537
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6538
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6539
  #: app/skins/single.php:160 app/skins/single.php:753
6540
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6641
  msgid "Download Invoice"
6642
  msgstr ""
6643
 
6644
+ #: app/libraries/factory.php:159
6645
  msgid "M.E. Calendar"
6646
  msgstr "M.E. Calendar"
6647
 
6648
+ #: app/libraries/factory.php:198
6649
  msgctxt "plugin link"
6650
  msgid "Upgrade to Pro Version"
6651
  msgstr ""
6652
 
6653
+ #: app/libraries/factory.php:216
6654
  msgctxt "plugin link"
6655
  msgid "Settings"
6656
  msgstr "Inställningar"
6657
 
6658
+ #: app/libraries/factory.php:221
6659
  msgctxt "plugin link"
6660
  msgid "Upgrade"
6661
  msgstr ""
6662
 
6663
+ #: app/libraries/factory.php:356
6664
  msgid "day"
6665
  msgstr "dag"
6666
 
6667
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6668
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6669
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6670
  msgid "days"
6671
  msgstr "dagar"
6672
 
6673
+ #: app/libraries/factory.php:358
6674
  msgid "hour"
6675
  msgstr "timme"
6676
 
6677
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6678
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6679
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6680
  msgid "hours"
6681
  msgstr "timmar"
6682
 
6683
+ #: app/libraries/factory.php:360
6684
  msgid "minute"
6685
  msgstr "minut"
6686
 
6687
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6688
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6689
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6690
  msgid "minutes"
6691
  msgstr "minuter"
6692
 
6693
+ #: app/libraries/factory.php:362
6694
  msgid "second"
6695
  msgstr "andra"
6696
 
6697
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6698
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6699
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6700
  msgid "seconds"
6701
  msgstr "sekunder"
6702
 
6703
+ #: app/libraries/factory.php:411
6704
  msgid "MEC Single Sidebar"
6705
  msgstr ""
6706
 
6707
+ #: app/libraries/factory.php:412
6708
  msgid "Custom sidebar for single and modal page of MEC."
6709
  msgstr ""
6710
 
6779
  msgid "Tile View"
6780
  msgstr "Bildspel"
6781
 
6782
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6783
  msgid "SU"
6784
  msgstr "Sön"
6785
 
6786
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6787
  msgid "MO"
6788
  msgstr "Mån"
6789
 
6790
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6791
  msgid "TU"
6792
  msgstr "Tis"
6793
 
6794
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6795
  msgid "WE"
6796
  msgstr "Ons"
6797
 
6798
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6799
  msgid "TH"
6800
  msgstr "Tor"
6801
 
6802
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6803
  msgid "FR"
6804
  msgstr "Fre"
6805
 
6806
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6807
  msgid "SA"
6808
  msgstr "Lör"
6809
 
7132
  msgid "Free"
7133
  msgstr "Kostnadsfri"
7134
 
7135
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7136
  #, fuzzy
7137
  #| msgid "M.E. Calendar"
7138
  msgid "M.E. Calender"
7143
  msgid "Copy of %s"
7144
  msgstr "Kopia av %s"
7145
 
7146
+ #: app/libraries/main.php:4672
7147
  msgid "Booked an event."
7148
  msgstr "Bokade ett evenemang."
7149
 
7150
+ #: app/libraries/main.php:4713
7151
  #, php-format
7152
  msgid "%s booked %s event."
7153
  msgstr "%s bokade %s evenemang."
7154
 
7155
+ #: app/libraries/main.php:5278
7156
  msgid "Taxonomies"
7157
  msgstr "Taxonomier"
7158
 
7159
+ #: app/libraries/main.php:5280
7160
  msgid "Category Plural Label"
7161
  msgstr "Kategori (plural etikett)"
7162
 
7163
+ #: app/libraries/main.php:5281
7164
  msgid "Category Singular Label"
7165
  msgstr "Kategori (singular etikett)"
7166
 
7167
+ #: app/libraries/main.php:5282
7168
  msgid "Label Plural Label"
7169
  msgstr "Etikett (plural etikett)"
7170
 
7171
+ #: app/libraries/main.php:5283
7172
  msgid "Label Singular Label"
7173
  msgstr "Etikett (singular etikett)"
7174
 
7175
+ #: app/libraries/main.php:5284
7176
  msgid "Location Plural Label"
7177
  msgstr "Plats (plural etikett)"
7178
 
7179
+ #: app/libraries/main.php:5285
7180
  msgid "Location Singular Label"
7181
  msgstr "Plats (singular etikett)"
7182
 
7183
+ #: app/libraries/main.php:5286
7184
  msgid "Organizer Plural Label"
7185
  msgstr "Arrangör (plural etikett)"
7186
 
7187
+ #: app/libraries/main.php:5287
7188
  msgid "Organizer Singular Label"
7189
  msgstr "Arrangör (singular etikett)"
7190
 
7191
+ #: app/libraries/main.php:5288
7192
  #, fuzzy
7193
  #| msgid "Label Plural Label"
7194
  msgid "Speaker Plural Label"
7195
  msgstr "Etikett (plural etikett)"
7196
 
7197
+ #: app/libraries/main.php:5289
7198
  #, fuzzy
7199
  #| msgid "Label Singular Label"
7200
  msgid "Speaker Singular Label"
7201
  msgstr "Etikett (singular etikett)"
7202
 
7203
+ #: app/libraries/main.php:5295
7204
  msgid "Sunday abbreviation"
7205
  msgstr "Söndag förkortning"
7206
 
7207
+ #: app/libraries/main.php:5296
7208
  msgid "Monday abbreviation"
7209
  msgstr "Måndag förkortning"
7210
 
7211
+ #: app/libraries/main.php:5297
7212
  msgid "Tuesday abbreviation"
7213
  msgstr "Tisdag förkortning"
7214
 
7215
+ #: app/libraries/main.php:5298
7216
  msgid "Wednesday abbreviation"
7217
  msgstr "Onsdag förkortning"
7218
 
7219
+ #: app/libraries/main.php:5299
7220
  msgid "Thursday abbreviation"
7221
  msgstr "Torsdag förkortning"
7222
 
7223
+ #: app/libraries/main.php:5300
7224
  msgid "Friday abbreviation"
7225
  msgstr "Fredag ​​förkortning"
7226
 
7227
+ #: app/libraries/main.php:5301
7228
  msgid "Saturday abbreviation"
7229
  msgstr "Lördag förkortning"
7230
 
7231
+ #: app/libraries/main.php:5305
7232
  msgid "Others"
7233
  msgstr "Andra"
7234
 
7235
+ #: app/libraries/main.php:5307
7236
  msgid "Booking Success Message"
7237
  msgstr "Meddelande om Framgångsrik bokning"
7238
 
7239
+ #: app/libraries/main.php:5307
7240
  msgid ""
7241
  "Thanks for your booking. Your tickets booked, booking verification might be "
7242
  "needed, please check your email."
7244
  "Tack för din bokning. Dina biljetter är bokade. Verifikation kan behövas, "
7245
  "kontrollera din e-post."
7246
 
7247
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7248
  msgid "Register Button"
7249
  msgstr "Knappen Registrera"
7250
 
7251
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7252
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7253
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7254
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7265
  msgid "REGISTER"
7266
  msgstr "REGISTER"
7267
 
7268
+ #: app/libraries/main.php:5309
7269
  msgid "View Detail Button"
7270
  msgstr "Knappen Visa detaljer"
7271
 
7272
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7273
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7274
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7275
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7280
  msgid "View Detail"
7281
  msgstr "Visa detaljer"
7282
 
7283
+ #: app/libraries/main.php:5310
7284
  msgid "Event Detail Button"
7285
  msgstr "Knappen Evenemagsdetaljer"
7286
 
7287
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7288
  msgid "Event Detail"
7289
  msgstr "Evenemangsdetalj"
7290
 
7291
+ #: app/libraries/main.php:5312
7292
  msgid "More Info Link"
7293
  msgstr "Länken ”Mer information”"
7294
 
7295
+ #: app/libraries/main.php:5315
7296
  msgid "Ticket (Singular)"
7297
  msgstr ""
7298
 
7299
+ #: app/libraries/main.php:5316
7300
  msgid "Tickets (Plural)"
7301
  msgstr ""
7302
 
7303
+ #: app/libraries/main.php:5402
7304
  msgid "EventON"
7305
  msgstr ""
7306
 
7307
+ #: app/libraries/main.php:5403
7308
  msgid "The Events Calendar"
7309
  msgstr ""
7310
 
7311
+ #: app/libraries/main.php:5404
7312
  msgid "Events Schedule WP Plugin"
7313
  msgstr ""
7314
 
7315
+ #: app/libraries/main.php:5405
7316
  msgid "Calendarize It"
7317
  msgstr ""
7318
 
7319
+ #: app/libraries/main.php:5406
7320
  #, fuzzy
7321
  #| msgid "No Search Options"
7322
  msgid "Event Espresso"
7323
  msgstr "Ingen sökalternativ"
7324
 
7325
+ #: app/libraries/main.php:5407
7326
  #, fuzzy
7327
  #| msgid "Event Repeating"
7328
  msgid "Events Manager (Recurring)"
7329
  msgstr "Upprepande evenemang"
7330
 
7331
+ #: app/libraries/main.php:5408
7332
  #, fuzzy
7333
  #| msgid "Modern Events Calendar"
7334
  msgid "Events Manager (Single)"
7335
  msgstr "Modern Events Calendar"
7336
 
7337
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7338
  msgid "Confirmed"
7339
  msgstr "Bekräftad"
7340
 
7341
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7342
  msgid "Rejected"
7343
  msgstr "Avvisad"
7344
 
7345
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7346
  msgid "Pending"
7347
  msgstr "Väntande"
7348
 
7349
+ #: app/libraries/main.php:5532
7350
  msgid "Waiting"
7351
  msgstr "Väntar"
7352
 
7353
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7354
+ #: app/libraries/render.php:418
7355
  msgid "Skin controller does not exist."
7356
  msgstr "Tema-kontroll existerar inte."
7357
 
7358
+ #: app/libraries/main.php:5851
7359
  #, fuzzy
7360
  #| msgid "Sold out!"
7361
  msgid "Sold Out"
7362
  msgstr "Slutsåld!"
7363
 
7364
+ #: app/libraries/main.php:5859
7365
  #, fuzzy
7366
  #| msgid "Ticket"
7367
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite-tr_TR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
- "PO-Revision-Date: 2020-01-22 10:50+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: tr_TR\n"
@@ -74,7 +74,7 @@ msgid "Event Color"
74
  msgstr "Etkinlik Rengi"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:414
77
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
78
  #: app/features/mec/support.php:20 app/libraries/main.php:594
79
  msgid "Settings"
80
  msgstr "Ayarlar"
@@ -251,7 +251,7 @@ msgid "MEC Activation"
251
  msgstr "MEC Etkinleştirme"
252
 
253
  #: app/features/events.php:157 app/features/ix/export.php:34
254
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
256
  #: app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
@@ -277,7 +277,7 @@ msgstr ""
277
  msgid "Add Event"
278
  msgstr "Etkinlik Ekle"
279
 
280
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
281
  msgid "Add New Event"
282
  msgstr "Yeni Etkinlik Ekle"
283
 
@@ -316,7 +316,7 @@ msgstr "Çöp Kutusunda bir etkinlik bulunamadı!"
316
  #: app/features/mec/meta_boxes/search_form.php:575
317
  #: app/features/mec/meta_boxes/search_form.php:672
318
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
319
- #: app/features/search.php:67 app/libraries/main.php:5278
320
  #: app/libraries/skins.php:858 app/skins/single.php:566
321
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
322
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
@@ -326,7 +326,7 @@ msgstr "Kategori"
326
 
327
  #: app/features/events.php:183 app/features/events.php:3275
328
  #: app/features/fes/form.php:757 app/features/mec.php:402
329
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
330
  msgid "Categories"
331
  msgstr "Kategoriler"
332
 
@@ -450,7 +450,7 @@ msgstr "Etkinlik Bağlantıları"
450
  #: app/features/organizers.php:58 app/features/organizers.php:204
451
  #: app/features/organizers.php:260 app/features/organizers.php:262
452
  #: app/features/organizers.php:271 app/features/search.php:75
453
- #: app/libraries/main.php:5284 app/libraries/skins.php:910
454
  #: app/skins/single.php:812 app/skins/single/default.php:217
455
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
456
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
@@ -458,7 +458,7 @@ msgid "Organizer"
458
  msgstr "Organizatör"
459
 
460
  #: app/features/events.php:337 app/features/events.php:1172
461
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
462
  #: app/skins/single.php:589 app/skins/single/default.php:126
463
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
464
  #: app/skins/single/modern.php:208
@@ -507,7 +507,7 @@ msgstr "Tarih ve Saat"
507
  #: app/features/events.php:3555 app/features/fes/form.php:247
508
  #: app/features/fes/form.php:251 app/features/ix.php:3510
509
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
510
- #: app/features/mec/dashboard.php:400
511
  #: app/features/mec/meta_boxes/display_options.php:48
512
  #: app/features/mec/meta_boxes/display_options.php:228
513
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -545,7 +545,7 @@ msgstr "Öğleden Sonra"
545
  #: app/features/events.php:3555 app/features/fes/form.php:287
546
  #: app/features/fes/form.php:291 app/features/ix.php:3510
547
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
548
- #: app/features/mec/dashboard.php:401
549
  msgid "End Date"
550
  msgstr "Bitiş Tarihi"
551
 
@@ -674,7 +674,7 @@ msgid "Repeats"
674
  msgstr "Tekrarlar"
675
 
676
  #: app/features/events.php:743 app/features/fes/form.php:349
677
- #: app/features/mec/dashboard.php:403
678
  #: app/skins/default_full_calendar/tpl.php:69
679
  #: app/skins/full_calendar/tpl.php:110
680
  msgid "Daily"
@@ -699,14 +699,14 @@ msgid "Weekly"
699
  msgstr "Haftalık"
700
 
701
  #: app/features/events.php:778 app/features/fes/form.php:354
702
- #: app/features/mec/dashboard.php:404
703
  #: app/skins/default_full_calendar/tpl.php:67
704
  #: app/skins/full_calendar/tpl.php:108
705
  msgid "Monthly"
706
  msgstr "Aylık"
707
 
708
  #: app/features/events.php:785 app/features/fes/form.php:355
709
- #: app/features/mec/dashboard.php:405
710
  #: app/skins/default_full_calendar/tpl.php:66
711
  #: app/skins/full_calendar/tpl.php:107
712
  msgid "Yearly"
@@ -831,7 +831,7 @@ msgstr ""
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:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Etkinlik Maliyeti"
@@ -863,7 +863,7 @@ msgid ""
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
- #: app/features/events.php:1264 app/libraries/render.php:466
867
  msgid "Day 1"
868
  msgstr ""
869
 
@@ -935,7 +935,7 @@ msgstr "Açıklama"
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:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Etkinlik Bağlantıları"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Etkinlik Bağlantısı"
958
 
@@ -977,7 +977,7 @@ 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:5309
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
@@ -1046,7 +1046,7 @@ msgid "12"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Biletler"
1052
 
@@ -1411,7 +1411,7 @@ msgstr "Katılımcı"
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:5282 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
@@ -1476,7 +1476,7 @@ msgstr ""
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:5312
1480
  msgid "Ticket"
1481
  msgstr "Bilet"
1482
 
@@ -1652,7 +1652,7 @@ msgstr "Resmi Kaldır"
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:5279
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
@@ -2062,7 +2062,7 @@ msgstr ""
2062
  msgid "Import all of your Facebook events into MEC."
2063
  msgstr ""
2064
 
2065
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
2066
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2067
  msgid "Documentation"
2068
  msgstr "Belgeler"
@@ -2401,7 +2401,7 @@ msgid "Featured"
2401
  msgstr "Resim Seç"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2436,8 +2436,8 @@ msgid "Event %s"
2436
  msgstr ""
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2440
- #: app/libraries/main.php:5281
2441
  msgid "Locations"
2442
  msgstr "Konumlar"
2443
 
@@ -2545,7 +2545,7 @@ msgstr "Resim Seçin"
2545
  msgid "Don't show map in single event page"
2546
  msgstr "Haritayı tek bir etkinlik sayfasında gösterme"
2547
 
2548
- #: app/features/locations.php:356 app/libraries/main.php:5315
2549
  #, fuzzy
2550
  #| msgid "Search Locations"
2551
  msgid "Other Locations"
@@ -2604,14 +2604,14 @@ msgstr "Destek"
2604
  msgid "Support"
2605
  msgstr "Destek"
2606
 
2607
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2608
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2609
- #: app/libraries/main.php:5283
2610
  msgid "Organizers"
2611
  msgstr "Organizatörler"
2612
 
2613
  #: app/features/mec.php:413 app/features/mec.php:437
2614
- #: app/features/mec/dashboard.php:263
2615
  msgid "Shortcodes"
2616
  msgstr "Kısa Kodlar"
2617
 
@@ -2971,7 +2971,7 @@ msgstr ""
2971
  #: app/features/mec/notifications.php:905
2972
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2973
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2974
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
2975
  msgid "Verified"
2976
  msgstr "Doğrulanmış"
2977
 
@@ -2997,7 +2997,7 @@ msgstr ""
2997
  msgid "Modern Events Calendar (Lite)"
2998
  msgstr "Modern Etkinlik Takvimi"
2999
 
3000
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
3001
  msgctxt "plugin rate"
3002
  msgid "Rate the plugin ★★★★★"
3003
  msgstr ""
@@ -3008,7 +3008,7 @@ msgstr ""
3008
  msgid "Update"
3009
  msgstr "Etiketi Güncelle"
3010
 
3011
- #: app/features/mec/dashboard.php:92
3012
  #, php-format
3013
  msgid ""
3014
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -3016,111 +3016,111 @@ msgid ""
3016
  "Spots, etc you should upgrade to the Pro version."
3017
  msgstr ""
3018
 
3019
- #: app/features/mec/dashboard.php:92
3020
  msgid "lite"
3021
  msgstr ""
3022
 
3023
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
3024
  msgid "GO PREMIUM"
3025
  msgstr ""
3026
 
3027
- #: app/features/mec/dashboard.php:98
3028
  #, php-format
3029
  msgid ""
3030
  "Easily get a discount coupon by rating us on %s or following and reposting "
3031
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3032
  msgstr ""
3033
 
3034
- #: app/features/mec/dashboard.php:98
3035
  #, fuzzy
3036
  #| msgid "Address"
3037
  msgid "WordPress"
3038
  msgstr "Adres"
3039
 
3040
- #: app/features/mec/dashboard.php:98
3041
  msgid "Copouns!"
3042
  msgstr ""
3043
 
3044
- #: app/features/mec/dashboard.php:127
3045
  #, fuzzy
3046
  #| msgid "Modern Events Calendar"
3047
  msgid "Getting started with Modern Events Calendar"
3048
  msgstr "Modern Etkinlik Takvimi"
3049
 
3050
- #: app/features/mec/dashboard.php:128
3051
  msgid ""
3052
  "In this short video, you can learn how to make an event and put a calendar "
3053
  "on your website. Please watch this 2 minutes video to the end."
3054
  msgstr ""
3055
 
3056
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
3057
  #, fuzzy
3058
  #| msgid "MEC Activation"
3059
  msgid "MEC Activate"
3060
  msgstr "MEC Etkinleştirme"
3061
 
3062
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
3063
  #, fuzzy
3064
  #| msgid "MEC Activation"
3065
  msgid "Activate Addons"
3066
  msgstr "MEC Etkinleştirme"
3067
 
3068
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
3069
  msgid "You cannot access this section."
3070
  msgstr ""
3071
 
3072
- #: app/features/mec/dashboard.php:174
3073
  msgid ""
3074
  "In order to use all plugin features and options, please enter your purchase "
3075
  "code."
3076
  msgstr ""
3077
 
3078
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
3079
  msgid "Upcoming Events"
3080
  msgstr ""
3081
 
3082
- #: app/features/mec/dashboard.php:312
3083
  msgid "Popular Gateways"
3084
  msgstr ""
3085
 
3086
- #: app/features/mec/dashboard.php:366
3087
  msgid "Total Bookings"
3088
  msgstr ""
3089
 
3090
- #: app/features/mec/dashboard.php:393
3091
  msgid "This Month"
3092
  msgstr ""
3093
 
3094
- #: app/features/mec/dashboard.php:394
3095
  msgid "Last Month"
3096
  msgstr ""
3097
 
3098
- #: app/features/mec/dashboard.php:395
3099
  msgid "This Year"
3100
  msgstr ""
3101
 
3102
- #: app/features/mec/dashboard.php:396
3103
  msgid "Last Year"
3104
  msgstr ""
3105
 
3106
- #: app/features/mec/dashboard.php:408
3107
  msgid "Bar"
3108
  msgstr ""
3109
 
3110
- #: app/features/mec/dashboard.php:409
3111
  msgid "Line"
3112
  msgstr ""
3113
 
3114
- #: app/features/mec/dashboard.php:411
3115
  msgid "Filter"
3116
  msgstr ""
3117
 
3118
- #: app/features/mec/dashboard.php:427
3119
  #, php-format
3120
  msgid "Total Sells (%s)"
3121
  msgstr ""
3122
 
3123
- #: app/features/mec/dashboard.php:448
3124
  msgid "Change Log"
3125
  msgstr "Günlüğü Değiştir"
3126
 
@@ -4123,7 +4123,7 @@ msgstr "Devre Dışı Bırak"
4123
  #: app/features/mec/meta_boxes/search_form.php:693
4124
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4125
  #: app/features/search.php:79 app/features/speakers.php:61
4126
- #: app/features/speakers.php:269 app/libraries/main.php:5286
4127
  #: app/libraries/skins.php:936
4128
  msgid "Speaker"
4129
  msgstr ""
@@ -5119,7 +5119,7 @@ msgid "You can enable/disable Schema scripts"
5119
  msgstr ""
5120
 
5121
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5122
- #: app/libraries/main.php:5290
5123
  msgid "Weekdays"
5124
  msgstr ""
5125
 
@@ -6348,7 +6348,7 @@ msgstr "Örneğin. burhan@viseraturkiye.com"
6348
  msgid "eg. https://webnus.net"
6349
  msgstr "http://viseraturkiye.com"
6350
 
6351
- #: app/features/organizers.php:312 app/libraries/main.php:5314
6352
  #: app/skins/single.php:862
6353
  msgid "Other Organizers"
6354
  msgstr ""
@@ -6409,7 +6409,7 @@ msgstr ""
6409
  msgid "No bookings found!"
6410
  msgstr "Rezervasyon yok!"
6411
 
6412
- #: app/features/search.php:87 app/libraries/main.php:5280
6413
  msgid "label"
6414
  msgstr ""
6415
 
@@ -6436,7 +6436,7 @@ msgid "No search result."
6436
  msgstr ""
6437
 
6438
  #: app/features/search_bar/search_result.php:11
6439
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6440
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6441
  #: app/skins/single.php:160 app/skins/single.php:753
6442
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6541,70 +6541,70 @@ msgstr "İndirim"
6541
  msgid "Download Invoice"
6542
  msgstr ""
6543
 
6544
- #: app/libraries/factory.php:156
6545
  msgid "M.E. Calendar"
6546
  msgstr "M.E. Takvim"
6547
 
6548
- #: app/libraries/factory.php:195
6549
  msgctxt "plugin link"
6550
  msgid "Upgrade to Pro Version"
6551
  msgstr ""
6552
 
6553
- #: app/libraries/factory.php:213
6554
  msgctxt "plugin link"
6555
  msgid "Settings"
6556
  msgstr "Ayarlar"
6557
 
6558
- #: app/libraries/factory.php:218
6559
  msgctxt "plugin link"
6560
  msgid "Upgrade"
6561
  msgstr ""
6562
 
6563
- #: app/libraries/factory.php:361
6564
  msgid "day"
6565
  msgstr "gün"
6566
 
6567
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6568
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6569
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6570
  msgid "days"
6571
  msgstr "günler"
6572
 
6573
- #: app/libraries/factory.php:363
6574
  msgid "hour"
6575
  msgstr "saat"
6576
 
6577
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6578
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6579
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6580
  msgid "hours"
6581
  msgstr "saatler"
6582
 
6583
- #: app/libraries/factory.php:365
6584
  msgid "minute"
6585
  msgstr "dakika"
6586
 
6587
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6588
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6589
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6590
  msgid "minutes"
6591
  msgstr "dakikalar"
6592
 
6593
- #: app/libraries/factory.php:367
6594
  msgid "second"
6595
  msgstr "saniye"
6596
 
6597
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6598
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6599
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6600
  msgid "seconds"
6601
  msgstr "saniyeler"
6602
 
6603
- #: app/libraries/factory.php:415
6604
  msgid "MEC Single Sidebar"
6605
  msgstr ""
6606
 
6607
- #: app/libraries/factory.php:416
6608
  msgid "Custom sidebar for single and modal page of MEC."
6609
  msgstr ""
6610
 
@@ -6681,31 +6681,31 @@ msgstr "Günlük Görünüm"
6681
  msgid "Tile View"
6682
  msgstr "Günlük Görünüm"
6683
 
6684
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6685
  msgid "SU"
6686
  msgstr "Paz"
6687
 
6688
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6689
  msgid "MO"
6690
  msgstr "Pzt"
6691
 
6692
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6693
  msgid "TU"
6694
  msgstr "Sal"
6695
 
6696
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6697
  msgid "WE"
6698
  msgstr "Çar"
6699
 
6700
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6701
  msgid "TH"
6702
  msgstr "Per"
6703
 
6704
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6705
  msgid "FR"
6706
  msgstr "Cum"
6707
 
6708
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6709
  msgid "SA"
6710
  msgstr "Cmt"
6711
 
@@ -7034,7 +7034,7 @@ msgstr "Bu seçenek için bir etiket ekleyin"
7034
  msgid "Free"
7035
  msgstr "Ücretsiz"
7036
 
7037
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
7038
  #, fuzzy
7039
  #| msgid "M.E. Calendar"
7040
  msgid "M.E. Calender"
@@ -7045,100 +7045,100 @@ msgstr "M.E. Takvim"
7045
  msgid "Copy of %s"
7046
  msgstr "Kopyası %s"
7047
 
7048
- #: app/libraries/main.php:4669
7049
  msgid "Booked an event."
7050
  msgstr ""
7051
 
7052
- #: app/libraries/main.php:4710
7053
  #, php-format
7054
  msgid "%s booked %s event."
7055
  msgstr ""
7056
 
7057
- #: app/libraries/main.php:5275
7058
  msgid "Taxonomies"
7059
  msgstr ""
7060
 
7061
- #: app/libraries/main.php:5277
7062
  msgid "Category Plural Label"
7063
  msgstr ""
7064
 
7065
- #: app/libraries/main.php:5278
7066
  msgid "Category Singular Label"
7067
  msgstr ""
7068
 
7069
- #: app/libraries/main.php:5279
7070
  msgid "Label Plural Label"
7071
  msgstr ""
7072
 
7073
- #: app/libraries/main.php:5280
7074
  msgid "Label Singular Label"
7075
  msgstr ""
7076
 
7077
- #: app/libraries/main.php:5281
7078
  msgid "Location Plural Label"
7079
  msgstr ""
7080
 
7081
- #: app/libraries/main.php:5282
7082
  msgid "Location Singular Label"
7083
  msgstr ""
7084
 
7085
- #: app/libraries/main.php:5283
7086
  msgid "Organizer Plural Label"
7087
  msgstr ""
7088
 
7089
- #: app/libraries/main.php:5284
7090
  msgid "Organizer Singular Label"
7091
  msgstr ""
7092
 
7093
- #: app/libraries/main.php:5285
7094
  #, fuzzy
7095
  #| msgid "Search Labels"
7096
  msgid "Speaker Plural Label"
7097
  msgstr "Kupon Ara"
7098
 
7099
- #: app/libraries/main.php:5286
7100
  #, fuzzy
7101
  #| msgid "Popular Labels"
7102
  msgid "Speaker Singular Label"
7103
  msgstr "Popüler Kuponlar"
7104
 
7105
- #: app/libraries/main.php:5292
7106
  msgid "Sunday abbreviation"
7107
  msgstr ""
7108
 
7109
- #: app/libraries/main.php:5293
7110
  msgid "Monday abbreviation"
7111
  msgstr ""
7112
 
7113
- #: app/libraries/main.php:5294
7114
  msgid "Tuesday abbreviation"
7115
  msgstr ""
7116
 
7117
- #: app/libraries/main.php:5295
7118
  msgid "Wednesday abbreviation"
7119
  msgstr ""
7120
 
7121
- #: app/libraries/main.php:5296
7122
  msgid "Thursday abbreviation"
7123
  msgstr ""
7124
 
7125
- #: app/libraries/main.php:5297
7126
  msgid "Friday abbreviation"
7127
  msgstr ""
7128
 
7129
- #: app/libraries/main.php:5298
7130
  msgid "Saturday abbreviation"
7131
  msgstr ""
7132
 
7133
- #: app/libraries/main.php:5302
7134
  msgid "Others"
7135
  msgstr ""
7136
 
7137
- #: app/libraries/main.php:5304
7138
  msgid "Booking Success Message"
7139
  msgstr ""
7140
 
7141
- #: app/libraries/main.php:5304
7142
  msgid ""
7143
  "Thanks for your booking. Your tickets booked, booking verification might be "
7144
  "needed, please check your email."
@@ -7146,11 +7146,11 @@ msgstr ""
7146
  "Rezervasyon için teşekkür ederiz. Biletleriniz ayırtıldı, rezervasyon "
7147
  "doğrulama gerekiyor, lütfen e-postanızı kontrol edin."
7148
 
7149
- #: app/libraries/main.php:5305 app/widgets/single.php:131
7150
  msgid "Register Button"
7151
  msgstr ""
7152
 
7153
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7154
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7155
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7156
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -7167,11 +7167,11 @@ msgstr ""
7167
  msgid "REGISTER"
7168
  msgstr "KAYIT OL"
7169
 
7170
- #: app/libraries/main.php:5306
7171
  msgid "View Detail Button"
7172
  msgstr ""
7173
 
7174
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7175
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7176
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7177
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7182,86 +7182,87 @@ msgstr ""
7182
  msgid "View Detail"
7183
  msgstr "Ayrıntılara Bakın"
7184
 
7185
- #: app/libraries/main.php:5307
7186
  msgid "Event Detail Button"
7187
  msgstr ""
7188
 
7189
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7190
  #, fuzzy
7191
  msgid "Event Detail"
7192
  msgstr "Etkinlik Detayları"
7193
 
7194
- #: app/libraries/main.php:5309
7195
  msgid "More Info Link"
7196
  msgstr ""
7197
 
7198
- #: app/libraries/main.php:5312
7199
  msgid "Ticket (Singular)"
7200
  msgstr ""
7201
 
7202
- #: app/libraries/main.php:5313
7203
  msgid "Tickets (Plural)"
7204
  msgstr ""
7205
 
7206
- #: app/libraries/main.php:5399
7207
  msgid "EventON"
7208
  msgstr ""
7209
 
7210
- #: app/libraries/main.php:5400
7211
  msgid "The Events Calendar"
7212
  msgstr ""
7213
 
7214
- #: app/libraries/main.php:5401
7215
  msgid "Events Schedule WP Plugin"
7216
  msgstr ""
7217
 
7218
- #: app/libraries/main.php:5402
7219
  msgid "Calendarize It"
7220
  msgstr ""
7221
 
7222
- #: app/libraries/main.php:5403
7223
  #, fuzzy
7224
  #| msgid "No Search Options"
7225
  msgid "Event Espresso"
7226
  msgstr "Arama Seçenekleri Yok"
7227
 
7228
- #: app/libraries/main.php:5404
7229
  #, fuzzy
7230
  #| msgid "Event Repeating"
7231
  msgid "Events Manager (Recurring)"
7232
  msgstr "Etkinlik Tekrarı"
7233
 
7234
- #: app/libraries/main.php:5405
7235
  #, fuzzy
7236
  #| msgid "Modern Events Calendar"
7237
  msgid "Events Manager (Single)"
7238
  msgstr "Modern Etkinlik Takvimi"
7239
 
7240
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
7241
  msgid "Confirmed"
7242
  msgstr "Onaylandı"
7243
 
7244
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
7245
  msgid "Rejected"
7246
  msgstr "Reddedildi"
7247
 
7248
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
7249
  msgid "Pending"
7250
  msgstr "Beklemede"
7251
 
7252
- #: app/libraries/main.php:5529
7253
  msgid "Waiting"
7254
  msgstr "Bekliyor"
7255
 
7256
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
7257
  msgid "Skin controller does not exist."
7258
  msgstr "Tema kontrolü mevcut değil."
7259
 
7260
- #: app/libraries/main.php:5848
7261
  msgid "Sold Out"
7262
  msgstr ""
7263
 
7264
- #: app/libraries/main.php:5856
7265
  #, fuzzy
7266
  #| msgid "Ticket"
7267
  msgid "Last Few Tickets"
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:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: tr_TR\n"
74
  msgstr "Etkinlik Rengi"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:414
77
+ #: app/features/mec/dashboard.php:139 app/features/mec/support-page.php:197
78
  #: app/features/mec/support.php:20 app/libraries/main.php:594
79
  msgid "Settings"
80
  msgstr "Ayarlar"
251
  msgstr "MEC Etkinleştirme"
252
 
253
  #: app/features/events.php:157 app/features/ix/export.php:34
254
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
256
  #: app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
277
  msgid "Add Event"
278
  msgstr "Etkinlik Ekle"
279
 
280
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
281
  msgid "Add New Event"
282
  msgstr "Yeni Etkinlik Ekle"
283
 
316
  #: app/features/mec/meta_boxes/search_form.php:575
317
  #: app/features/mec/meta_boxes/search_form.php:672
318
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
319
+ #: app/features/search.php:67 app/libraries/main.php:5281
320
  #: app/libraries/skins.php:858 app/skins/single.php:566
321
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
322
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
326
 
327
  #: app/features/events.php:183 app/features/events.php:3275
328
  #: app/features/fes/form.php:757 app/features/mec.php:402
329
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
330
  msgid "Categories"
331
  msgstr "Kategoriler"
332
 
450
  #: app/features/organizers.php:58 app/features/organizers.php:204
451
  #: app/features/organizers.php:260 app/features/organizers.php:262
452
  #: app/features/organizers.php:271 app/features/search.php:75
453
+ #: app/libraries/main.php:5287 app/libraries/skins.php:910
454
  #: app/skins/single.php:812 app/skins/single/default.php:217
455
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
456
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
458
  msgstr "Organizatör"
459
 
460
  #: app/features/events.php:337 app/features/events.php:1172
461
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
462
  #: app/skins/single.php:589 app/skins/single/default.php:126
463
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
464
  #: app/skins/single/modern.php:208
507
  #: app/features/events.php:3555 app/features/fes/form.php:247
508
  #: app/features/fes/form.php:251 app/features/ix.php:3510
509
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
510
+ #: app/features/mec/dashboard.php:401
511
  #: app/features/mec/meta_boxes/display_options.php:48
512
  #: app/features/mec/meta_boxes/display_options.php:228
513
  #: app/features/mec/meta_boxes/display_options.php:406
545
  #: app/features/events.php:3555 app/features/fes/form.php:287
546
  #: app/features/fes/form.php:291 app/features/ix.php:3510
547
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
548
+ #: app/features/mec/dashboard.php:402
549
  msgid "End Date"
550
  msgstr "Bitiş Tarihi"
551
 
674
  msgstr "Tekrarlar"
675
 
676
  #: app/features/events.php:743 app/features/fes/form.php:349
677
+ #: app/features/mec/dashboard.php:404
678
  #: app/skins/default_full_calendar/tpl.php:69
679
  #: app/skins/full_calendar/tpl.php:110
680
  msgid "Daily"
699
  msgstr "Haftalık"
700
 
701
  #: app/features/events.php:778 app/features/fes/form.php:354
702
+ #: app/features/mec/dashboard.php:405
703
  #: app/skins/default_full_calendar/tpl.php:67
704
  #: app/skins/full_calendar/tpl.php:108
705
  msgid "Monthly"
706
  msgstr "Aylık"
707
 
708
  #: app/features/events.php:785 app/features/fes/form.php:355
709
+ #: app/features/mec/dashboard.php:406
710
  #: app/skins/default_full_calendar/tpl.php:66
711
  #: app/skins/full_calendar/tpl.php:107
712
  msgid "Yearly"
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 "Etkinlik Maliyeti"
863
  "multiple day occurrences."
864
  msgstr ""
865
 
866
+ #: app/features/events.php:1264 app/libraries/render.php:506
867
  msgid "Day 1"
868
  msgstr ""
869
 
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 ""
952
  msgstr "Etkinlik Bağlantıları"
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 "Etkinlik Bağlantısı"
958
 
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
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 "Biletler"
1052
 
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
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 "Bilet"
1482
 
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
2062
  msgid "Import all of your Facebook events into MEC."
2063
  msgstr ""
2064
 
2065
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
2066
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
2067
  msgid "Documentation"
2068
  msgstr "Belgeler"
2401
  msgstr "Resim Seç"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2436
  msgstr ""
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2440
+ #: app/libraries/main.php:5284
2441
  msgid "Locations"
2442
  msgstr "Konumlar"
2443
 
2545
  msgid "Don't show map in single event page"
2546
  msgstr "Haritayı tek bir etkinlik sayfasında gösterme"
2547
 
2548
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2549
  #, fuzzy
2550
  #| msgid "Search Locations"
2551
  msgid "Other Locations"
2604
  msgid "Support"
2605
  msgstr "Destek"
2606
 
2607
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2608
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2609
+ #: app/libraries/main.php:5286
2610
  msgid "Organizers"
2611
  msgstr "Organizatörler"
2612
 
2613
  #: app/features/mec.php:413 app/features/mec.php:437
2614
+ #: app/features/mec/dashboard.php:264
2615
  msgid "Shortcodes"
2616
  msgstr "Kısa Kodlar"
2617
 
2971
  #: app/features/mec/notifications.php:905
2972
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2973
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2974
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
2975
  msgid "Verified"
2976
  msgstr "Doğrulanmış"
2977
 
2997
  msgid "Modern Events Calendar (Lite)"
2998
  msgstr "Modern Etkinlik Takvimi"
2999
 
3000
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
3001
  msgctxt "plugin rate"
3002
  msgid "Rate the plugin ★★★★★"
3003
  msgstr ""
3008
  msgid "Update"
3009
  msgstr "Etiketi Güncelle"
3010
 
3011
+ #: app/features/mec/dashboard.php:96
3012
  #, php-format
3013
  msgid ""
3014
  "You're using %s version of Modern Events Calendar. To use advanced booking "
3016
  "Spots, etc you should upgrade to the Pro version."
3017
  msgstr ""
3018
 
3019
+ #: app/features/mec/dashboard.php:96
3020
  msgid "lite"
3021
  msgstr ""
3022
 
3023
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
3024
  msgid "GO PREMIUM"
3025
  msgstr ""
3026
 
3027
+ #: app/features/mec/dashboard.php:102
3028
  #, php-format
3029
  msgid ""
3030
  "Easily get a discount coupon by rating us on %s or following and reposting "
3031
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
3032
  msgstr ""
3033
 
3034
+ #: app/features/mec/dashboard.php:102
3035
  #, fuzzy
3036
  #| msgid "Address"
3037
  msgid "WordPress"
3038
  msgstr "Adres"
3039
 
3040
+ #: app/features/mec/dashboard.php:102
3041
  msgid "Copouns!"
3042
  msgstr ""
3043
 
3044
+ #: app/features/mec/dashboard.php:131
3045
  #, fuzzy
3046
  #| msgid "Modern Events Calendar"
3047
  msgid "Getting started with Modern Events Calendar"
3048
  msgstr "Modern Etkinlik Takvimi"
3049
 
3050
+ #: app/features/mec/dashboard.php:132
3051
  msgid ""
3052
  "In this short video, you can learn how to make an event and put a calendar "
3053
  "on your website. Please watch this 2 minutes video to the end."
3054
  msgstr ""
3055
 
3056
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
3057
  #, fuzzy
3058
  #| msgid "MEC Activation"
3059
  msgid "MEC Activate"
3060
  msgstr "MEC Etkinleştirme"
3061
 
3062
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
3063
  #, fuzzy
3064
  #| msgid "MEC Activation"
3065
  msgid "Activate Addons"
3066
  msgstr "MEC Etkinleştirme"
3067
 
3068
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
3069
  msgid "You cannot access this section."
3070
  msgstr ""
3071
 
3072
+ #: app/features/mec/dashboard.php:178
3073
  msgid ""
3074
  "In order to use all plugin features and options, please enter your purchase "
3075
  "code."
3076
  msgstr ""
3077
 
3078
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
3079
  msgid "Upcoming Events"
3080
  msgstr ""
3081
 
3082
+ #: app/features/mec/dashboard.php:313
3083
  msgid "Popular Gateways"
3084
  msgstr ""
3085
 
3086
+ #: app/features/mec/dashboard.php:367
3087
  msgid "Total Bookings"
3088
  msgstr ""
3089
 
3090
+ #: app/features/mec/dashboard.php:394
3091
  msgid "This Month"
3092
  msgstr ""
3093
 
3094
+ #: app/features/mec/dashboard.php:395
3095
  msgid "Last Month"
3096
  msgstr ""
3097
 
3098
+ #: app/features/mec/dashboard.php:396
3099
  msgid "This Year"
3100
  msgstr ""
3101
 
3102
+ #: app/features/mec/dashboard.php:397
3103
  msgid "Last Year"
3104
  msgstr ""
3105
 
3106
+ #: app/features/mec/dashboard.php:409
3107
  msgid "Bar"
3108
  msgstr ""
3109
 
3110
+ #: app/features/mec/dashboard.php:410
3111
  msgid "Line"
3112
  msgstr ""
3113
 
3114
+ #: app/features/mec/dashboard.php:412
3115
  msgid "Filter"
3116
  msgstr ""
3117
 
3118
+ #: app/features/mec/dashboard.php:428
3119
  #, php-format
3120
  msgid "Total Sells (%s)"
3121
  msgstr ""
3122
 
3123
+ #: app/features/mec/dashboard.php:449
3124
  msgid "Change Log"
3125
  msgstr "Günlüğü Değiştir"
3126
 
4123
  #: app/features/mec/meta_boxes/search_form.php:693
4124
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4125
  #: app/features/search.php:79 app/features/speakers.php:61
4126
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
4127
  #: app/libraries/skins.php:936
4128
  msgid "Speaker"
4129
  msgstr ""
5119
  msgstr ""
5120
 
5121
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5122
+ #: app/libraries/main.php:5293
5123
  msgid "Weekdays"
5124
  msgstr ""
5125
 
6348
  msgid "eg. https://webnus.net"
6349
  msgstr "http://viseraturkiye.com"
6350
 
6351
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
6352
  #: app/skins/single.php:862
6353
  msgid "Other Organizers"
6354
  msgstr ""
6409
  msgid "No bookings found!"
6410
  msgstr "Rezervasyon yok!"
6411
 
6412
+ #: app/features/search.php:87 app/libraries/main.php:5283
6413
  msgid "label"
6414
  msgstr ""
6415
 
6436
  msgstr ""
6437
 
6438
  #: app/features/search_bar/search_result.php:11
6439
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6440
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6441
  #: app/skins/single.php:160 app/skins/single.php:753
6442
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6541
  msgid "Download Invoice"
6542
  msgstr ""
6543
 
6544
+ #: app/libraries/factory.php:159
6545
  msgid "M.E. Calendar"
6546
  msgstr "M.E. Takvim"
6547
 
6548
+ #: app/libraries/factory.php:198
6549
  msgctxt "plugin link"
6550
  msgid "Upgrade to Pro Version"
6551
  msgstr ""
6552
 
6553
+ #: app/libraries/factory.php:216
6554
  msgctxt "plugin link"
6555
  msgid "Settings"
6556
  msgstr "Ayarlar"
6557
 
6558
+ #: app/libraries/factory.php:221
6559
  msgctxt "plugin link"
6560
  msgid "Upgrade"
6561
  msgstr ""
6562
 
6563
+ #: app/libraries/factory.php:356
6564
  msgid "day"
6565
  msgstr "gün"
6566
 
6567
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6568
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6569
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6570
  msgid "days"
6571
  msgstr "günler"
6572
 
6573
+ #: app/libraries/factory.php:358
6574
  msgid "hour"
6575
  msgstr "saat"
6576
 
6577
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6578
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6579
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6580
  msgid "hours"
6581
  msgstr "saatler"
6582
 
6583
+ #: app/libraries/factory.php:360
6584
  msgid "minute"
6585
  msgstr "dakika"
6586
 
6587
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6588
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6589
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6590
  msgid "minutes"
6591
  msgstr "dakikalar"
6592
 
6593
+ #: app/libraries/factory.php:362
6594
  msgid "second"
6595
  msgstr "saniye"
6596
 
6597
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6598
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6599
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6600
  msgid "seconds"
6601
  msgstr "saniyeler"
6602
 
6603
+ #: app/libraries/factory.php:411
6604
  msgid "MEC Single Sidebar"
6605
  msgstr ""
6606
 
6607
+ #: app/libraries/factory.php:412
6608
  msgid "Custom sidebar for single and modal page of MEC."
6609
  msgstr ""
6610
 
6681
  msgid "Tile View"
6682
  msgstr "Günlük Görünüm"
6683
 
6684
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6685
  msgid "SU"
6686
  msgstr "Paz"
6687
 
6688
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6689
  msgid "MO"
6690
  msgstr "Pzt"
6691
 
6692
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6693
  msgid "TU"
6694
  msgstr "Sal"
6695
 
6696
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6697
  msgid "WE"
6698
  msgstr "Çar"
6699
 
6700
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6701
  msgid "TH"
6702
  msgstr "Per"
6703
 
6704
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6705
  msgid "FR"
6706
  msgstr "Cum"
6707
 
6708
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6709
  msgid "SA"
6710
  msgstr "Cmt"
6711
 
7034
  msgid "Free"
7035
  msgstr "Ücretsiz"
7036
 
7037
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
7038
  #, fuzzy
7039
  #| msgid "M.E. Calendar"
7040
  msgid "M.E. Calender"
7045
  msgid "Copy of %s"
7046
  msgstr "Kopyası %s"
7047
 
7048
+ #: app/libraries/main.php:4672
7049
  msgid "Booked an event."
7050
  msgstr ""
7051
 
7052
+ #: app/libraries/main.php:4713
7053
  #, php-format
7054
  msgid "%s booked %s event."
7055
  msgstr ""
7056
 
7057
+ #: app/libraries/main.php:5278
7058
  msgid "Taxonomies"
7059
  msgstr ""
7060
 
7061
+ #: app/libraries/main.php:5280
7062
  msgid "Category Plural Label"
7063
  msgstr ""
7064
 
7065
+ #: app/libraries/main.php:5281
7066
  msgid "Category Singular Label"
7067
  msgstr ""
7068
 
7069
+ #: app/libraries/main.php:5282
7070
  msgid "Label Plural Label"
7071
  msgstr ""
7072
 
7073
+ #: app/libraries/main.php:5283
7074
  msgid "Label Singular Label"
7075
  msgstr ""
7076
 
7077
+ #: app/libraries/main.php:5284
7078
  msgid "Location Plural Label"
7079
  msgstr ""
7080
 
7081
+ #: app/libraries/main.php:5285
7082
  msgid "Location Singular Label"
7083
  msgstr ""
7084
 
7085
+ #: app/libraries/main.php:5286
7086
  msgid "Organizer Plural Label"
7087
  msgstr ""
7088
 
7089
+ #: app/libraries/main.php:5287
7090
  msgid "Organizer Singular Label"
7091
  msgstr ""
7092
 
7093
+ #: app/libraries/main.php:5288
7094
  #, fuzzy
7095
  #| msgid "Search Labels"
7096
  msgid "Speaker Plural Label"
7097
  msgstr "Kupon Ara"
7098
 
7099
+ #: app/libraries/main.php:5289
7100
  #, fuzzy
7101
  #| msgid "Popular Labels"
7102
  msgid "Speaker Singular Label"
7103
  msgstr "Popüler Kuponlar"
7104
 
7105
+ #: app/libraries/main.php:5295
7106
  msgid "Sunday abbreviation"
7107
  msgstr ""
7108
 
7109
+ #: app/libraries/main.php:5296
7110
  msgid "Monday abbreviation"
7111
  msgstr ""
7112
 
7113
+ #: app/libraries/main.php:5297
7114
  msgid "Tuesday abbreviation"
7115
  msgstr ""
7116
 
7117
+ #: app/libraries/main.php:5298
7118
  msgid "Wednesday abbreviation"
7119
  msgstr ""
7120
 
7121
+ #: app/libraries/main.php:5299
7122
  msgid "Thursday abbreviation"
7123
  msgstr ""
7124
 
7125
+ #: app/libraries/main.php:5300
7126
  msgid "Friday abbreviation"
7127
  msgstr ""
7128
 
7129
+ #: app/libraries/main.php:5301
7130
  msgid "Saturday abbreviation"
7131
  msgstr ""
7132
 
7133
+ #: app/libraries/main.php:5305
7134
  msgid "Others"
7135
  msgstr ""
7136
 
7137
+ #: app/libraries/main.php:5307
7138
  msgid "Booking Success Message"
7139
  msgstr ""
7140
 
7141
+ #: app/libraries/main.php:5307
7142
  msgid ""
7143
  "Thanks for your booking. Your tickets booked, booking verification might be "
7144
  "needed, please check your email."
7146
  "Rezervasyon için teşekkür ederiz. Biletleriniz ayırtıldı, rezervasyon "
7147
  "doğrulama gerekiyor, lütfen e-postanızı kontrol edin."
7148
 
7149
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
7150
  msgid "Register Button"
7151
  msgstr ""
7152
 
7153
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
7154
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7155
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7156
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7167
  msgid "REGISTER"
7168
  msgstr "KAYIT OL"
7169
 
7170
+ #: app/libraries/main.php:5309
7171
  msgid "View Detail Button"
7172
  msgstr ""
7173
 
7174
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
7175
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7176
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7177
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7182
  msgid "View Detail"
7183
  msgstr "Ayrıntılara Bakın"
7184
 
7185
+ #: app/libraries/main.php:5310
7186
  msgid "Event Detail Button"
7187
  msgstr ""
7188
 
7189
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
7190
  #, fuzzy
7191
  msgid "Event Detail"
7192
  msgstr "Etkinlik Detayları"
7193
 
7194
+ #: app/libraries/main.php:5312
7195
  msgid "More Info Link"
7196
  msgstr ""
7197
 
7198
+ #: app/libraries/main.php:5315
7199
  msgid "Ticket (Singular)"
7200
  msgstr ""
7201
 
7202
+ #: app/libraries/main.php:5316
7203
  msgid "Tickets (Plural)"
7204
  msgstr ""
7205
 
7206
+ #: app/libraries/main.php:5402
7207
  msgid "EventON"
7208
  msgstr ""
7209
 
7210
+ #: app/libraries/main.php:5403
7211
  msgid "The Events Calendar"
7212
  msgstr ""
7213
 
7214
+ #: app/libraries/main.php:5404
7215
  msgid "Events Schedule WP Plugin"
7216
  msgstr ""
7217
 
7218
+ #: app/libraries/main.php:5405
7219
  msgid "Calendarize It"
7220
  msgstr ""
7221
 
7222
+ #: app/libraries/main.php:5406
7223
  #, fuzzy
7224
  #| msgid "No Search Options"
7225
  msgid "Event Espresso"
7226
  msgstr "Arama Seçenekleri Yok"
7227
 
7228
+ #: app/libraries/main.php:5407
7229
  #, fuzzy
7230
  #| msgid "Event Repeating"
7231
  msgid "Events Manager (Recurring)"
7232
  msgstr "Etkinlik Tekrarı"
7233
 
7234
+ #: app/libraries/main.php:5408
7235
  #, fuzzy
7236
  #| msgid "Modern Events Calendar"
7237
  msgid "Events Manager (Single)"
7238
  msgstr "Modern Etkinlik Takvimi"
7239
 
7240
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
7241
  msgid "Confirmed"
7242
  msgstr "Onaylandı"
7243
 
7244
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
7245
  msgid "Rejected"
7246
  msgstr "Reddedildi"
7247
 
7248
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
7249
  msgid "Pending"
7250
  msgstr "Beklemede"
7251
 
7252
+ #: app/libraries/main.php:5532
7253
  msgid "Waiting"
7254
  msgstr "Bekliyor"
7255
 
7256
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
7257
+ #: app/libraries/render.php:418
7258
  msgid "Skin controller does not exist."
7259
  msgstr "Tema kontrolü mevcut değil."
7260
 
7261
+ #: app/libraries/main.php:5851
7262
  msgid "Sold Out"
7263
  msgstr ""
7264
 
7265
+ #: app/libraries/main.php:5859
7266
  #, fuzzy
7267
  #| msgid "Ticket"
7268
  msgid "Last Few Tickets"
languages/modern-events-calendar-lite.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Modern Events Calendar Lite\n"
6
- "POT-Creation-Date: 2020-01-22 10:47+0330\n"
7
  "PO-Revision-Date: 2020-01-14 10:00+0330\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -67,7 +67,7 @@ msgid "Event Color"
67
  msgstr ""
68
 
69
  #: app/features/contextual.php:55 app/features/mec.php:414
70
- #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:197
71
  #: app/features/mec/support.php:20 app/libraries/main.php:594
72
  msgid "Settings"
73
  msgstr ""
@@ -243,7 +243,7 @@ msgid "MEC Activation"
243
  msgstr ""
244
 
245
  #: app/features/events.php:157 app/features/ix/export.php:34
246
- #: app/features/mec/dashboard.php:256 app/skins/daily_view/tpl.php:79
247
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
248
  #: app/skins/yearly_view/tpl.php:68
249
  msgid "Events"
@@ -263,7 +263,7 @@ msgstr ""
263
  msgid "Add Event"
264
  msgstr ""
265
 
266
- #: app/features/events.php:160 app/features/mec/dashboard.php:134
267
  msgid "Add New Event"
268
  msgstr ""
269
 
@@ -302,7 +302,7 @@ msgstr ""
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:800 app/features/mec/single.php:204
305
- #: app/features/search.php:67 app/libraries/main.php:5278
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
@@ -312,7 +312,7 @@ msgstr ""
312
 
313
  #: app/features/events.php:183 app/features/events.php:3275
314
  #: app/features/fes/form.php:757 app/features/mec.php:402
315
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
316
  msgid "Categories"
317
  msgstr ""
318
 
@@ -428,7 +428,7 @@ msgstr ""
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:75
431
- #: app/libraries/main.php:5284 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,7 +436,7 @@ msgid "Organizer"
436
  msgstr ""
437
 
438
  #: app/features/events.php:337 app/features/events.php:1172
439
- #: app/features/fes/form.php:730 app/libraries/main.php:5311
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
@@ -485,7 +485,7 @@ msgstr ""
485
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:400
489
  #: app/features/mec/meta_boxes/display_options.php:48
490
  #: app/features/mec/meta_boxes/display_options.php:228
491
  #: app/features/mec/meta_boxes/display_options.php:406
@@ -523,7 +523,7 @@ msgstr ""
523
  #: app/features/events.php:3555 app/features/fes/form.php:287
524
  #: app/features/fes/form.php:291 app/features/ix.php:3510
525
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
526
- #: app/features/mec/dashboard.php:401
527
  msgid "End Date"
528
  msgstr ""
529
 
@@ -642,7 +642,7 @@ msgid "Repeats"
642
  msgstr ""
643
 
644
  #: app/features/events.php:743 app/features/fes/form.php:349
645
- #: app/features/mec/dashboard.php:403
646
  #: app/skins/default_full_calendar/tpl.php:69
647
  #: app/skins/full_calendar/tpl.php:110
648
  msgid "Daily"
@@ -667,14 +667,14 @@ msgid "Weekly"
667
  msgstr ""
668
 
669
  #: app/features/events.php:778 app/features/fes/form.php:354
670
- #: app/features/mec/dashboard.php:404
671
  #: app/skins/default_full_calendar/tpl.php:67
672
  #: app/skins/full_calendar/tpl.php:108
673
  msgid "Monthly"
674
  msgstr ""
675
 
676
  #: app/features/events.php:785 app/features/fes/form.php:355
677
- #: app/features/mec/dashboard.php:405
678
  #: app/skins/default_full_calendar/tpl.php:66
679
  #: app/skins/full_calendar/tpl.php:107
680
  msgid "Yearly"
@@ -787,7 +787,7 @@ msgstr ""
787
  #: app/features/events.php:1168 app/features/events.php:3513
788
  #: app/features/events.php:3555 app/features/fes/form.php:727
789
  #: app/features/ix.php:3510 app/features/ix.php:3551
790
- #: app/features/mec/settings.php:656 app/libraries/main.php:5310
791
  #: app/widgets/single.php:103
792
  msgid "Event Cost"
793
  msgstr ""
@@ -817,7 +817,7 @@ msgid ""
817
  "multiple day occurrences."
818
  msgstr ""
819
 
820
- #: app/features/events.php:1264 app/libraries/render.php:466
821
  msgid "Day 1"
822
  msgstr ""
823
 
@@ -889,7 +889,7 @@ msgstr ""
889
  #: app/features/events.php:1445 app/features/fes/form.php:851
890
  #: app/features/mec.php:410 app/features/mec/modules.php:52
891
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
892
- #: app/libraries/main.php:565 app/libraries/main.php:5285
893
  #: app/modules/speakers/details.php:18
894
  msgid "Speakers"
895
  msgstr ""
@@ -904,7 +904,7 @@ msgid "Event Links"
904
  msgstr ""
905
 
906
  #: app/features/events.php:1479 app/features/events.php:1485
907
- #: app/features/fes/form.php:706 app/libraries/main.php:5308
908
  msgid "Event Link"
909
  msgstr ""
910
 
@@ -925,7 +925,7 @@ msgid "URL Shortener"
925
  msgstr ""
926
 
927
  #: app/features/events.php:1495 app/features/events.php:1508
928
- #: app/features/fes/form.php:711 app/libraries/main.php:5309
929
  #: app/skins/single.php:673 app/skins/single/default.php:140
930
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
931
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
@@ -990,7 +990,7 @@ msgid "12"
990
  msgstr ""
991
 
992
  #: app/features/events.php:1653 app/libraries/book.php:60
993
- #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
994
  msgid "Tickets"
995
  msgstr ""
996
 
@@ -1333,7 +1333,7 @@ msgstr ""
1333
  #: app/features/mec/meta_boxes/search_form.php:679
1334
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1335
  #: app/features/search.php:71 app/libraries/main.php:2236
1336
- #: app/libraries/main.php:5282 app/libraries/skins.php:884
1337
  #: app/skins/single.php:493 app/skins/single.php:924
1338
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1339
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
@@ -1398,7 +1398,7 @@ msgstr ""
1398
 
1399
  #: app/features/events.php:3808 app/features/fes.php:223
1400
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1401
- #: app/libraries/main.php:5312
1402
  msgid "Ticket"
1403
  msgstr ""
1404
 
@@ -1566,7 +1566,7 @@ msgstr ""
1566
 
1567
  #: app/features/fes/form.php:783 app/features/labels.php:61
1568
  #: app/features/labels.php:221 app/features/mec.php:403
1569
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1570
  #: app/skins/single.php:702 app/skins/single/default.php:155
1571
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1572
  #: app/skins/single/modern.php:223
@@ -1968,7 +1968,7 @@ msgstr ""
1968
  msgid "Import all of your Facebook events into MEC."
1969
  msgstr ""
1970
 
1971
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1972
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1973
  msgid "Documentation"
1974
  msgstr ""
@@ -2292,7 +2292,7 @@ msgid "Featured"
2292
  msgstr ""
2293
 
2294
  #: app/features/labels.php:118 app/features/labels.php:143
2295
- #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2296
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2297
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2298
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2327,8 +2327,8 @@ msgid "Event %s"
2327
  msgstr ""
2328
 
2329
  #: app/features/locations.php:59 app/features/mec.php:404
2330
- #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2331
- #: app/libraries/main.php:5281
2332
  msgid "Locations"
2333
  msgstr ""
2334
 
@@ -2433,7 +2433,7 @@ msgstr ""
2433
  msgid "Don't show map in single event page"
2434
  msgstr ""
2435
 
2436
- #: app/features/locations.php:356 app/libraries/main.php:5315
2437
  msgid "Other Locations"
2438
  msgstr ""
2439
 
@@ -2484,14 +2484,14 @@ msgstr ""
2484
  msgid "Support"
2485
  msgstr ""
2486
 
2487
- #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2488
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2489
- #: app/libraries/main.php:5283
2490
  msgid "Organizers"
2491
  msgstr ""
2492
 
2493
  #: app/features/mec.php:413 app/features/mec.php:437
2494
- #: app/features/mec/dashboard.php:263
2495
  msgid "Shortcodes"
2496
  msgstr ""
2497
 
@@ -2824,7 +2824,7 @@ msgstr ""
2824
  #: app/features/mec/notifications.php:905
2825
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2826
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2827
- #: app/features/mec/single.php:289 app/libraries/main.php:5527
2828
  msgid "Verified"
2829
  msgstr ""
2830
 
@@ -2848,7 +2848,7 @@ msgstr ""
2848
  msgid "Modern Events Calendar (Lite)"
2849
  msgstr ""
2850
 
2851
- #: app/features/mec/dashboard.php:65 app/libraries/factory.php:196
2852
  msgctxt "plugin rate"
2853
  msgid "Rate the plugin ★★★★★"
2854
  msgstr ""
@@ -2857,7 +2857,7 @@ msgstr ""
2857
  msgid "Update"
2858
  msgstr ""
2859
 
2860
- #: app/features/mec/dashboard.php:92
2861
  #, php-format
2862
  msgid ""
2863
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2865,103 +2865,103 @@ msgid ""
2865
  "Spots, etc you should upgrade to the Pro version."
2866
  msgstr ""
2867
 
2868
- #: app/features/mec/dashboard.php:92
2869
  msgid "lite"
2870
  msgstr ""
2871
 
2872
- #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2873
  msgid "GO PREMIUM"
2874
  msgstr ""
2875
 
2876
- #: app/features/mec/dashboard.php:98
2877
  #, php-format
2878
  msgid ""
2879
  "Easily get a discount coupon by rating us on %s or following and reposting "
2880
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2881
  msgstr ""
2882
 
2883
- #: app/features/mec/dashboard.php:98
2884
  msgid "WordPress"
2885
  msgstr ""
2886
 
2887
- #: app/features/mec/dashboard.php:98
2888
  msgid "Copouns!"
2889
  msgstr ""
2890
 
2891
- #: app/features/mec/dashboard.php:127
2892
  msgid "Getting started with Modern Events Calendar"
2893
  msgstr ""
2894
 
2895
- #: app/features/mec/dashboard.php:128
2896
  msgid ""
2897
  "In this short video, you can learn how to make an event and put a calendar "
2898
  "on your website. Please watch this 2 minutes video to the end."
2899
  msgstr ""
2900
 
2901
- #: app/features/mec/dashboard.php:144 app/features/mec/dashboard.php:168
2902
  msgid "MEC Activate"
2903
  msgstr ""
2904
 
2905
- #: app/features/mec/dashboard.php:150 app/features/mec/dashboard.php:232
2906
  msgid "Activate Addons"
2907
  msgstr ""
2908
 
2909
- #: app/features/mec/dashboard.php:158 app/features/mec/dashboard.php:241
2910
  msgid "You cannot access this section."
2911
  msgstr ""
2912
 
2913
- #: app/features/mec/dashboard.php:174
2914
  msgid ""
2915
  "In order to use all plugin features and options, please enter your purchase "
2916
  "code."
2917
  msgstr ""
2918
 
2919
- #: app/features/mec/dashboard.php:288 app/features/mec/settings.php:395
2920
  msgid "Upcoming Events"
2921
  msgstr ""
2922
 
2923
- #: app/features/mec/dashboard.php:312
2924
  msgid "Popular Gateways"
2925
  msgstr ""
2926
 
2927
- #: app/features/mec/dashboard.php:366
2928
  msgid "Total Bookings"
2929
  msgstr ""
2930
 
2931
- #: app/features/mec/dashboard.php:393
2932
  msgid "This Month"
2933
  msgstr ""
2934
 
2935
- #: app/features/mec/dashboard.php:394
2936
  msgid "Last Month"
2937
  msgstr ""
2938
 
2939
- #: app/features/mec/dashboard.php:395
2940
  msgid "This Year"
2941
  msgstr ""
2942
 
2943
- #: app/features/mec/dashboard.php:396
2944
  msgid "Last Year"
2945
  msgstr ""
2946
 
2947
- #: app/features/mec/dashboard.php:408
2948
  msgid "Bar"
2949
  msgstr ""
2950
 
2951
- #: app/features/mec/dashboard.php:409
2952
  msgid "Line"
2953
  msgstr ""
2954
 
2955
- #: app/features/mec/dashboard.php:411
2956
  msgid "Filter"
2957
  msgstr ""
2958
 
2959
- #: app/features/mec/dashboard.php:427
2960
  #, php-format
2961
  msgid "Total Sells (%s)"
2962
  msgstr ""
2963
 
2964
- #: app/features/mec/dashboard.php:448
2965
  msgid "Change Log"
2966
  msgstr ""
2967
 
@@ -3919,7 +3919,7 @@ msgstr ""
3919
  #: app/features/mec/meta_boxes/search_form.php:693
3920
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3921
  #: app/features/search.php:79 app/features/speakers.php:61
3922
- #: app/features/speakers.php:269 app/libraries/main.php:5286
3923
  #: app/libraries/skins.php:936
3924
  msgid "Speaker"
3925
  msgstr ""
@@ -4840,7 +4840,7 @@ msgid "You can enable/disable Schema scripts"
4840
  msgstr ""
4841
 
4842
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4843
- #: app/libraries/main.php:5290
4844
  msgid "Weekdays"
4845
  msgstr ""
4846
 
@@ -5942,7 +5942,7 @@ msgstr ""
5942
  msgid "eg. https://webnus.net"
5943
  msgstr ""
5944
 
5945
- #: app/features/organizers.php:312 app/libraries/main.php:5314
5946
  #: app/skins/single.php:862
5947
  msgid "Other Organizers"
5948
  msgstr ""
@@ -5998,7 +5998,7 @@ msgstr ""
5998
  msgid "No bookings found!"
5999
  msgstr ""
6000
 
6001
- #: app/features/search.php:87 app/libraries/main.php:5280
6002
  msgid "label"
6003
  msgstr ""
6004
 
@@ -6023,7 +6023,7 @@ msgid "No search result."
6023
  msgstr ""
6024
 
6025
  #: app/features/search_bar/search_result.php:11
6026
- #: app/libraries/notifications.php:947 app/libraries/render.php:448
6027
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6028
  #: app/skins/single.php:160 app/skins/single.php:753
6029
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
@@ -6108,70 +6108,70 @@ msgstr ""
6108
  msgid "Download Invoice"
6109
  msgstr ""
6110
 
6111
- #: app/libraries/factory.php:156
6112
  msgid "M.E. Calendar"
6113
  msgstr ""
6114
 
6115
- #: app/libraries/factory.php:195
6116
  msgctxt "plugin link"
6117
  msgid "Upgrade to Pro Version"
6118
  msgstr ""
6119
 
6120
- #: app/libraries/factory.php:213
6121
  msgctxt "plugin link"
6122
  msgid "Settings"
6123
  msgstr ""
6124
 
6125
- #: app/libraries/factory.php:218
6126
  msgctxt "plugin link"
6127
  msgid "Upgrade"
6128
  msgstr ""
6129
 
6130
- #: app/libraries/factory.php:361
6131
  msgid "day"
6132
  msgstr ""
6133
 
6134
- #: app/libraries/factory.php:362 app/modules/countdown/details.php:132
6135
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6136
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6137
  msgid "days"
6138
  msgstr ""
6139
 
6140
- #: app/libraries/factory.php:363
6141
  msgid "hour"
6142
  msgstr ""
6143
 
6144
- #: app/libraries/factory.php:364 app/modules/countdown/details.php:139
6145
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6146
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6147
  msgid "hours"
6148
  msgstr ""
6149
 
6150
- #: app/libraries/factory.php:365
6151
  msgid "minute"
6152
  msgstr ""
6153
 
6154
- #: app/libraries/factory.php:366 app/modules/countdown/details.php:146
6155
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6156
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6157
  msgid "minutes"
6158
  msgstr ""
6159
 
6160
- #: app/libraries/factory.php:367
6161
  msgid "second"
6162
  msgstr ""
6163
 
6164
- #: app/libraries/factory.php:368 app/modules/countdown/details.php:153
6165
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6166
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6167
  msgid "seconds"
6168
  msgstr ""
6169
 
6170
- #: app/libraries/factory.php:415
6171
  msgid "MEC Single Sidebar"
6172
  msgstr ""
6173
 
6174
- #: app/libraries/factory.php:416
6175
  msgid "Custom sidebar for single and modal page of MEC."
6176
  msgstr ""
6177
 
@@ -6242,31 +6242,31 @@ msgstr ""
6242
  msgid "Tile View"
6243
  msgstr ""
6244
 
6245
- #: app/libraries/main.php:385 app/libraries/main.php:5292
6246
  msgid "SU"
6247
  msgstr ""
6248
 
6249
- #: app/libraries/main.php:386 app/libraries/main.php:5293
6250
  msgid "MO"
6251
  msgstr ""
6252
 
6253
- #: app/libraries/main.php:387 app/libraries/main.php:5294
6254
  msgid "TU"
6255
  msgstr ""
6256
 
6257
- #: app/libraries/main.php:388 app/libraries/main.php:5295
6258
  msgid "WE"
6259
  msgstr ""
6260
 
6261
- #: app/libraries/main.php:389 app/libraries/main.php:5296
6262
  msgid "TH"
6263
  msgstr ""
6264
 
6265
- #: app/libraries/main.php:390 app/libraries/main.php:5297
6266
  msgid "FR"
6267
  msgstr ""
6268
 
6269
- #: app/libraries/main.php:391 app/libraries/main.php:5298
6270
  msgid "SA"
6271
  msgstr ""
6272
 
@@ -6565,7 +6565,7 @@ msgstr ""
6565
  msgid "Free"
6566
  msgstr ""
6567
 
6568
- #: app/libraries/main.php:3799 app/libraries/main.php:5542
6569
  msgid "M.E. Calender"
6570
  msgstr ""
6571
 
@@ -6574,106 +6574,106 @@ msgstr ""
6574
  msgid "Copy of %s"
6575
  msgstr ""
6576
 
6577
- #: app/libraries/main.php:4669
6578
  msgid "Booked an event."
6579
  msgstr ""
6580
 
6581
- #: app/libraries/main.php:4710
6582
  #, php-format
6583
  msgid "%s booked %s event."
6584
  msgstr ""
6585
 
6586
- #: app/libraries/main.php:5275
6587
  msgid "Taxonomies"
6588
  msgstr ""
6589
 
6590
- #: app/libraries/main.php:5277
6591
  msgid "Category Plural Label"
6592
  msgstr ""
6593
 
6594
- #: app/libraries/main.php:5278
6595
  msgid "Category Singular Label"
6596
  msgstr ""
6597
 
6598
- #: app/libraries/main.php:5279
6599
  msgid "Label Plural Label"
6600
  msgstr ""
6601
 
6602
- #: app/libraries/main.php:5280
6603
  msgid "Label Singular Label"
6604
  msgstr ""
6605
 
6606
- #: app/libraries/main.php:5281
6607
  msgid "Location Plural Label"
6608
  msgstr ""
6609
 
6610
- #: app/libraries/main.php:5282
6611
  msgid "Location Singular Label"
6612
  msgstr ""
6613
 
6614
- #: app/libraries/main.php:5283
6615
  msgid "Organizer Plural Label"
6616
  msgstr ""
6617
 
6618
- #: app/libraries/main.php:5284
6619
  msgid "Organizer Singular Label"
6620
  msgstr ""
6621
 
6622
- #: app/libraries/main.php:5285
6623
  msgid "Speaker Plural Label"
6624
  msgstr ""
6625
 
6626
- #: app/libraries/main.php:5286
6627
  msgid "Speaker Singular Label"
6628
  msgstr ""
6629
 
6630
- #: app/libraries/main.php:5292
6631
  msgid "Sunday abbreviation"
6632
  msgstr ""
6633
 
6634
- #: app/libraries/main.php:5293
6635
  msgid "Monday abbreviation"
6636
  msgstr ""
6637
 
6638
- #: app/libraries/main.php:5294
6639
  msgid "Tuesday abbreviation"
6640
  msgstr ""
6641
 
6642
- #: app/libraries/main.php:5295
6643
  msgid "Wednesday abbreviation"
6644
  msgstr ""
6645
 
6646
- #: app/libraries/main.php:5296
6647
  msgid "Thursday abbreviation"
6648
  msgstr ""
6649
 
6650
- #: app/libraries/main.php:5297
6651
  msgid "Friday abbreviation"
6652
  msgstr ""
6653
 
6654
- #: app/libraries/main.php:5298
6655
  msgid "Saturday abbreviation"
6656
  msgstr ""
6657
 
6658
- #: app/libraries/main.php:5302
6659
  msgid "Others"
6660
  msgstr ""
6661
 
6662
- #: app/libraries/main.php:5304
6663
  msgid "Booking Success Message"
6664
  msgstr ""
6665
 
6666
- #: app/libraries/main.php:5304
6667
  msgid ""
6668
  "Thanks for your booking. Your tickets booked, booking verification might be "
6669
  "needed, please check your email."
6670
  msgstr ""
6671
 
6672
- #: app/libraries/main.php:5305 app/widgets/single.php:131
6673
  msgid "Register Button"
6674
  msgstr ""
6675
 
6676
- #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
6677
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6678
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6679
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
@@ -6690,11 +6690,11 @@ msgstr ""
6690
  msgid "REGISTER"
6691
  msgstr ""
6692
 
6693
- #: app/libraries/main.php:5306
6694
  msgid "View Detail Button"
6695
  msgstr ""
6696
 
6697
- #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
6698
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6699
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6700
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -6705,79 +6705,80 @@ msgstr ""
6705
  msgid "View Detail"
6706
  msgstr ""
6707
 
6708
- #: app/libraries/main.php:5307
6709
  msgid "Event Detail Button"
6710
  msgstr ""
6711
 
6712
- #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
6713
  msgid "Event Detail"
6714
  msgstr ""
6715
 
6716
- #: app/libraries/main.php:5309
6717
  msgid "More Info Link"
6718
  msgstr ""
6719
 
6720
- #: app/libraries/main.php:5312
6721
  msgid "Ticket (Singular)"
6722
  msgstr ""
6723
 
6724
- #: app/libraries/main.php:5313
6725
  msgid "Tickets (Plural)"
6726
  msgstr ""
6727
 
6728
- #: app/libraries/main.php:5399
6729
  msgid "EventON"
6730
  msgstr ""
6731
 
6732
- #: app/libraries/main.php:5400
6733
  msgid "The Events Calendar"
6734
  msgstr ""
6735
 
6736
- #: app/libraries/main.php:5401
6737
  msgid "Events Schedule WP Plugin"
6738
  msgstr ""
6739
 
6740
- #: app/libraries/main.php:5402
6741
  msgid "Calendarize It"
6742
  msgstr ""
6743
 
6744
- #: app/libraries/main.php:5403
6745
  msgid "Event Espresso"
6746
  msgstr ""
6747
 
6748
- #: app/libraries/main.php:5404
6749
  msgid "Events Manager (Recurring)"
6750
  msgstr ""
6751
 
6752
- #: app/libraries/main.php:5405
6753
  msgid "Events Manager (Single)"
6754
  msgstr ""
6755
 
6756
- #: app/libraries/main.php:5479 app/libraries/main.php:5499
6757
  msgid "Confirmed"
6758
  msgstr ""
6759
 
6760
- #: app/libraries/main.php:5480 app/libraries/main.php:5507
6761
  msgid "Rejected"
6762
  msgstr ""
6763
 
6764
- #: app/libraries/main.php:5481 app/libraries/main.php:5503
6765
  msgid "Pending"
6766
  msgstr ""
6767
 
6768
- #: app/libraries/main.php:5529
6769
  msgid "Waiting"
6770
  msgstr ""
6771
 
6772
- #: app/libraries/main.php:5734 app/libraries/render.php:378
 
6773
  msgid "Skin controller does not exist."
6774
  msgstr ""
6775
 
6776
- #: app/libraries/main.php:5848
6777
  msgid "Sold Out"
6778
  msgstr ""
6779
 
6780
- #: app/libraries/main.php:5856
6781
  msgid "Last Few Tickets"
6782
  msgstr ""
6783
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Modern Events Calendar Lite\n"
6
+ "POT-Creation-Date: 2020-01-29 15:47+0330\n"
7
  "PO-Revision-Date: 2020-01-14 10:00+0330\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
67
  msgstr ""
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 ""
243
  msgstr ""
244
 
245
  #: app/features/events.php:157 app/features/ix/export.php:34
246
+ #: app/features/mec/dashboard.php:257 app/skins/daily_view/tpl.php:79
247
  #: app/skins/monthly_view/tpl.php:70 app/skins/tile/tpl.php:69
248
  #: app/skins/yearly_view/tpl.php:68
249
  msgid "Events"
263
  msgid "Add Event"
264
  msgstr ""
265
 
266
+ #: app/features/events.php:160 app/features/mec/dashboard.php:138
267
  msgid "Add New Event"
268
  msgstr ""
269
 
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:800 app/features/mec/single.php:204
305
+ #: app/features/search.php:67 app/libraries/main.php:5281
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
312
 
313
  #: app/features/events.php:183 app/features/events.php:3275
314
  #: app/features/fes/form.php:757 app/features/mec.php:402
315
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5280
316
  msgid "Categories"
317
  msgstr ""
318
 
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:75
431
+ #: app/libraries/main.php:5287 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 ""
437
 
438
  #: app/features/events.php:337 app/features/events.php:1172
439
+ #: app/features/fes/form.php:730 app/libraries/main.php:5314
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
485
  #: app/features/events.php:3555 app/features/fes/form.php:247
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:48
490
  #: app/features/mec/meta_boxes/display_options.php:228
491
  #: app/features/mec/meta_boxes/display_options.php:406
523
  #: app/features/events.php:3555 app/features/fes/form.php:287
524
  #: app/features/fes/form.php:291 app/features/ix.php:3510
525
  #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
526
+ #: app/features/mec/dashboard.php:402
527
  msgid "End Date"
528
  msgstr ""
529
 
642
  msgstr ""
643
 
644
  #: app/features/events.php:743 app/features/fes/form.php:349
645
+ #: app/features/mec/dashboard.php:404
646
  #: app/skins/default_full_calendar/tpl.php:69
647
  #: app/skins/full_calendar/tpl.php:110
648
  msgid "Daily"
667
  msgstr ""
668
 
669
  #: app/features/events.php:778 app/features/fes/form.php:354
670
+ #: app/features/mec/dashboard.php:405
671
  #: app/skins/default_full_calendar/tpl.php:67
672
  #: app/skins/full_calendar/tpl.php:108
673
  msgid "Monthly"
674
  msgstr ""
675
 
676
  #: app/features/events.php:785 app/features/fes/form.php:355
677
+ #: app/features/mec/dashboard.php:406
678
  #: app/skins/default_full_calendar/tpl.php:66
679
  #: app/skins/full_calendar/tpl.php:107
680
  msgid "Yearly"
787
  #: app/features/events.php:1168 app/features/events.php:3513
788
  #: app/features/events.php:3555 app/features/fes/form.php:727
789
  #: app/features/ix.php:3510 app/features/ix.php:3551
790
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5313
791
  #: app/widgets/single.php:103
792
  msgid "Event Cost"
793
  msgstr ""
817
  "multiple day occurrences."
818
  msgstr ""
819
 
820
+ #: app/features/events.php:1264 app/libraries/render.php:506
821
  msgid "Day 1"
822
  msgstr ""
823
 
889
  #: app/features/events.php:1445 app/features/fes/form.php:851
890
  #: app/features/mec.php:410 app/features/mec/modules.php:52
891
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
892
+ #: app/libraries/main.php:565 app/libraries/main.php:5288
893
  #: app/modules/speakers/details.php:18
894
  msgid "Speakers"
895
  msgstr ""
904
  msgstr ""
905
 
906
  #: app/features/events.php:1479 app/features/events.php:1485
907
+ #: app/features/fes/form.php:706 app/libraries/main.php:5311
908
  msgid "Event Link"
909
  msgstr ""
910
 
925
  msgstr ""
926
 
927
  #: app/features/events.php:1495 app/features/events.php:1508
928
+ #: app/features/fes/form.php:711 app/libraries/main.php:5312
929
  #: app/skins/single.php:673 app/skins/single/default.php:140
930
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
931
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
990
  msgstr ""
991
 
992
  #: app/features/events.php:1653 app/libraries/book.php:60
993
+ #: app/libraries/main.php:5316 app/modules/booking/steps/tickets.php:40
994
  msgid "Tickets"
995
  msgstr ""
996
 
1333
  #: app/features/mec/meta_boxes/search_form.php:679
1334
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1335
  #: app/features/search.php:71 app/libraries/main.php:2236
1336
+ #: app/libraries/main.php:5285 app/libraries/skins.php:884
1337
  #: app/skins/single.php:493 app/skins/single.php:924
1338
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1339
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1398
 
1399
  #: app/features/events.php:3808 app/features/fes.php:223
1400
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1401
+ #: app/libraries/main.php:5315
1402
  msgid "Ticket"
1403
  msgstr ""
1404
 
1566
 
1567
  #: app/features/fes/form.php:783 app/features/labels.php:61
1568
  #: app/features/labels.php:221 app/features/mec.php:403
1569
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5282
1570
  #: app/skins/single.php:702 app/skins/single/default.php:155
1571
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1572
  #: app/skins/single/modern.php:223
1968
  msgid "Import all of your Facebook events into MEC."
1969
  msgstr ""
1970
 
1971
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:140
1972
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1973
  msgid "Documentation"
1974
  msgstr ""
2292
  msgstr ""
2293
 
2294
  #: app/features/labels.php:118 app/features/labels.php:143
2295
+ #: app/libraries/main.php:5531 app/skins/agenda/render.php:43
2296
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2297
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2298
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2327
  msgstr ""
2328
 
2329
  #: app/features/locations.php:59 app/features/mec.php:404
2330
+ #: app/features/mec/dashboard.php:271 app/features/mec/meta_boxes/filter.php:96
2331
+ #: app/libraries/main.php:5284
2332
  msgid "Locations"
2333
  msgstr ""
2334
 
2433
  msgid "Don't show map in single event page"
2434
  msgstr ""
2435
 
2436
+ #: app/features/locations.php:356 app/libraries/main.php:5318
2437
  msgid "Other Locations"
2438
  msgstr ""
2439
 
2484
  msgid "Support"
2485
  msgstr ""
2486
 
2487
+ #: app/features/mec.php:405 app/features/mec/dashboard.php:278
2488
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2489
+ #: app/libraries/main.php:5286
2490
  msgid "Organizers"
2491
  msgstr ""
2492
 
2493
  #: app/features/mec.php:413 app/features/mec.php:437
2494
+ #: app/features/mec/dashboard.php:264
2495
  msgid "Shortcodes"
2496
  msgstr ""
2497
 
2824
  #: app/features/mec/notifications.php:905
2825
  #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2826
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2827
+ #: app/features/mec/single.php:289 app/libraries/main.php:5530
2828
  msgid "Verified"
2829
  msgstr ""
2830
 
2848
  msgid "Modern Events Calendar (Lite)"
2849
  msgstr ""
2850
 
2851
+ #: app/features/mec/dashboard.php:65 app/libraries/factory.php:199
2852
  msgctxt "plugin rate"
2853
  msgid "Rate the plugin ★★★★★"
2854
  msgstr ""
2857
  msgid "Update"
2858
  msgstr ""
2859
 
2860
+ #: app/features/mec/dashboard.php:96
2861
  #, php-format
2862
  msgid ""
2863
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2865
  "Spots, etc you should upgrade to the Pro version."
2866
  msgstr ""
2867
 
2868
+ #: app/features/mec/dashboard.php:96
2869
  msgid "lite"
2870
  msgstr ""
2871
 
2872
+ #: app/features/mec/dashboard.php:99 app/features/mec/support.php:126
2873
  msgid "GO PREMIUM"
2874
  msgstr ""
2875
 
2876
+ #: app/features/mec/dashboard.php:102
2877
  #, php-format
2878
  msgid ""
2879
  "Easily get a discount coupon by rating us on %s or following and reposting "
2880
  "us on social media. Just send a screenshot to %s and you'll receive the %s"
2881
  msgstr ""
2882
 
2883
+ #: app/features/mec/dashboard.php:102
2884
  msgid "WordPress"
2885
  msgstr ""
2886
 
2887
+ #: app/features/mec/dashboard.php:102
2888
  msgid "Copouns!"
2889
  msgstr ""
2890
 
2891
+ #: app/features/mec/dashboard.php:131
2892
  msgid "Getting started with Modern Events Calendar"
2893
  msgstr ""
2894
 
2895
+ #: app/features/mec/dashboard.php:132
2896
  msgid ""
2897
  "In this short video, you can learn how to make an event and put a calendar "
2898
  "on your website. Please watch this 2 minutes video to the end."
2899
  msgstr ""
2900
 
2901
+ #: app/features/mec/dashboard.php:148 app/features/mec/dashboard.php:172
2902
  msgid "MEC Activate"
2903
  msgstr ""
2904
 
2905
+ #: app/features/mec/dashboard.php:154 app/features/mec/dashboard.php:236
2906
  msgid "Activate Addons"
2907
  msgstr ""
2908
 
2909
+ #: app/features/mec/dashboard.php:162 app/features/mec/dashboard.php:245
2910
  msgid "You cannot access this section."
2911
  msgstr ""
2912
 
2913
+ #: app/features/mec/dashboard.php:178
2914
  msgid ""
2915
  "In order to use all plugin features and options, please enter your purchase "
2916
  "code."
2917
  msgstr ""
2918
 
2919
+ #: app/features/mec/dashboard.php:289 app/features/mec/settings.php:395
2920
  msgid "Upcoming Events"
2921
  msgstr ""
2922
 
2923
+ #: app/features/mec/dashboard.php:313
2924
  msgid "Popular Gateways"
2925
  msgstr ""
2926
 
2927
+ #: app/features/mec/dashboard.php:367
2928
  msgid "Total Bookings"
2929
  msgstr ""
2930
 
2931
+ #: app/features/mec/dashboard.php:394
2932
  msgid "This Month"
2933
  msgstr ""
2934
 
2935
+ #: app/features/mec/dashboard.php:395
2936
  msgid "Last Month"
2937
  msgstr ""
2938
 
2939
+ #: app/features/mec/dashboard.php:396
2940
  msgid "This Year"
2941
  msgstr ""
2942
 
2943
+ #: app/features/mec/dashboard.php:397
2944
  msgid "Last Year"
2945
  msgstr ""
2946
 
2947
+ #: app/features/mec/dashboard.php:409
2948
  msgid "Bar"
2949
  msgstr ""
2950
 
2951
+ #: app/features/mec/dashboard.php:410
2952
  msgid "Line"
2953
  msgstr ""
2954
 
2955
+ #: app/features/mec/dashboard.php:412
2956
  msgid "Filter"
2957
  msgstr ""
2958
 
2959
+ #: app/features/mec/dashboard.php:428
2960
  #, php-format
2961
  msgid "Total Sells (%s)"
2962
  msgstr ""
2963
 
2964
+ #: app/features/mec/dashboard.php:449
2965
  msgid "Change Log"
2966
  msgstr ""
2967
 
3919
  #: app/features/mec/meta_boxes/search_form.php:693
3920
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3921
  #: app/features/search.php:79 app/features/speakers.php:61
3922
+ #: app/features/speakers.php:269 app/libraries/main.php:5289
3923
  #: app/libraries/skins.php:936
3924
  msgid "Speaker"
3925
  msgstr ""
4840
  msgstr ""
4841
 
4842
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4843
+ #: app/libraries/main.php:5293
4844
  msgid "Weekdays"
4845
  msgstr ""
4846
 
5942
  msgid "eg. https://webnus.net"
5943
  msgstr ""
5944
 
5945
+ #: app/features/organizers.php:312 app/libraries/main.php:5317
5946
  #: app/skins/single.php:862
5947
  msgid "Other Organizers"
5948
  msgstr ""
5998
  msgid "No bookings found!"
5999
  msgstr ""
6000
 
6001
+ #: app/features/search.php:87 app/libraries/main.php:5283
6002
  msgid "label"
6003
  msgstr ""
6004
 
6023
  msgstr ""
6024
 
6025
  #: app/features/search_bar/search_result.php:11
6026
+ #: app/libraries/notifications.php:947 app/libraries/render.php:488
6027
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6028
  #: app/skins/single.php:160 app/skins/single.php:753
6029
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6108
  msgid "Download Invoice"
6109
  msgstr ""
6110
 
6111
+ #: app/libraries/factory.php:159
6112
  msgid "M.E. Calendar"
6113
  msgstr ""
6114
 
6115
+ #: app/libraries/factory.php:198
6116
  msgctxt "plugin link"
6117
  msgid "Upgrade to Pro Version"
6118
  msgstr ""
6119
 
6120
+ #: app/libraries/factory.php:216
6121
  msgctxt "plugin link"
6122
  msgid "Settings"
6123
  msgstr ""
6124
 
6125
+ #: app/libraries/factory.php:221
6126
  msgctxt "plugin link"
6127
  msgid "Upgrade"
6128
  msgstr ""
6129
 
6130
+ #: app/libraries/factory.php:356
6131
  msgid "day"
6132
  msgstr ""
6133
 
6134
+ #: app/libraries/factory.php:357 app/modules/countdown/details.php:132
6135
  #: app/skins/available_spot/tpl.php:167 app/skins/countdown/tpl.php:158
6136
  #: app/skins/countdown/tpl.php:202 app/skins/countdown/tpl.php:251
6137
  msgid "days"
6138
  msgstr ""
6139
 
6140
+ #: app/libraries/factory.php:358
6141
  msgid "hour"
6142
  msgstr ""
6143
 
6144
+ #: app/libraries/factory.php:359 app/modules/countdown/details.php:139
6145
  #: app/skins/available_spot/tpl.php:171 app/skins/countdown/tpl.php:164
6146
  #: app/skins/countdown/tpl.php:208 app/skins/countdown/tpl.php:257
6147
  msgid "hours"
6148
  msgstr ""
6149
 
6150
+ #: app/libraries/factory.php:360
6151
  msgid "minute"
6152
  msgstr ""
6153
 
6154
+ #: app/libraries/factory.php:361 app/modules/countdown/details.php:146
6155
  #: app/skins/available_spot/tpl.php:175 app/skins/countdown/tpl.php:170
6156
  #: app/skins/countdown/tpl.php:214 app/skins/countdown/tpl.php:263
6157
  msgid "minutes"
6158
  msgstr ""
6159
 
6160
+ #: app/libraries/factory.php:362
6161
  msgid "second"
6162
  msgstr ""
6163
 
6164
+ #: app/libraries/factory.php:363 app/modules/countdown/details.php:153
6165
  #: app/skins/available_spot/tpl.php:179 app/skins/countdown/tpl.php:176
6166
  #: app/skins/countdown/tpl.php:220 app/skins/countdown/tpl.php:269
6167
  msgid "seconds"
6168
  msgstr ""
6169
 
6170
+ #: app/libraries/factory.php:411
6171
  msgid "MEC Single Sidebar"
6172
  msgstr ""
6173
 
6174
+ #: app/libraries/factory.php:412
6175
  msgid "Custom sidebar for single and modal page of MEC."
6176
  msgstr ""
6177
 
6242
  msgid "Tile View"
6243
  msgstr ""
6244
 
6245
+ #: app/libraries/main.php:385 app/libraries/main.php:5295
6246
  msgid "SU"
6247
  msgstr ""
6248
 
6249
+ #: app/libraries/main.php:386 app/libraries/main.php:5296
6250
  msgid "MO"
6251
  msgstr ""
6252
 
6253
+ #: app/libraries/main.php:387 app/libraries/main.php:5297
6254
  msgid "TU"
6255
  msgstr ""
6256
 
6257
+ #: app/libraries/main.php:388 app/libraries/main.php:5298
6258
  msgid "WE"
6259
  msgstr ""
6260
 
6261
+ #: app/libraries/main.php:389 app/libraries/main.php:5299
6262
  msgid "TH"
6263
  msgstr ""
6264
 
6265
+ #: app/libraries/main.php:390 app/libraries/main.php:5300
6266
  msgid "FR"
6267
  msgstr ""
6268
 
6269
+ #: app/libraries/main.php:391 app/libraries/main.php:5301
6270
  msgid "SA"
6271
  msgstr ""
6272
 
6565
  msgid "Free"
6566
  msgstr ""
6567
 
6568
+ #: app/libraries/main.php:3799 app/libraries/main.php:5545
6569
  msgid "M.E. Calender"
6570
  msgstr ""
6571
 
6574
  msgid "Copy of %s"
6575
  msgstr ""
6576
 
6577
+ #: app/libraries/main.php:4672
6578
  msgid "Booked an event."
6579
  msgstr ""
6580
 
6581
+ #: app/libraries/main.php:4713
6582
  #, php-format
6583
  msgid "%s booked %s event."
6584
  msgstr ""
6585
 
6586
+ #: app/libraries/main.php:5278
6587
  msgid "Taxonomies"
6588
  msgstr ""
6589
 
6590
+ #: app/libraries/main.php:5280
6591
  msgid "Category Plural Label"
6592
  msgstr ""
6593
 
6594
+ #: app/libraries/main.php:5281
6595
  msgid "Category Singular Label"
6596
  msgstr ""
6597
 
6598
+ #: app/libraries/main.php:5282
6599
  msgid "Label Plural Label"
6600
  msgstr ""
6601
 
6602
+ #: app/libraries/main.php:5283
6603
  msgid "Label Singular Label"
6604
  msgstr ""
6605
 
6606
+ #: app/libraries/main.php:5284
6607
  msgid "Location Plural Label"
6608
  msgstr ""
6609
 
6610
+ #: app/libraries/main.php:5285
6611
  msgid "Location Singular Label"
6612
  msgstr ""
6613
 
6614
+ #: app/libraries/main.php:5286
6615
  msgid "Organizer Plural Label"
6616
  msgstr ""
6617
 
6618
+ #: app/libraries/main.php:5287
6619
  msgid "Organizer Singular Label"
6620
  msgstr ""
6621
 
6622
+ #: app/libraries/main.php:5288
6623
  msgid "Speaker Plural Label"
6624
  msgstr ""
6625
 
6626
+ #: app/libraries/main.php:5289
6627
  msgid "Speaker Singular Label"
6628
  msgstr ""
6629
 
6630
+ #: app/libraries/main.php:5295
6631
  msgid "Sunday abbreviation"
6632
  msgstr ""
6633
 
6634
+ #: app/libraries/main.php:5296
6635
  msgid "Monday abbreviation"
6636
  msgstr ""
6637
 
6638
+ #: app/libraries/main.php:5297
6639
  msgid "Tuesday abbreviation"
6640
  msgstr ""
6641
 
6642
+ #: app/libraries/main.php:5298
6643
  msgid "Wednesday abbreviation"
6644
  msgstr ""
6645
 
6646
+ #: app/libraries/main.php:5299
6647
  msgid "Thursday abbreviation"
6648
  msgstr ""
6649
 
6650
+ #: app/libraries/main.php:5300
6651
  msgid "Friday abbreviation"
6652
  msgstr ""
6653
 
6654
+ #: app/libraries/main.php:5301
6655
  msgid "Saturday abbreviation"
6656
  msgstr ""
6657
 
6658
+ #: app/libraries/main.php:5305
6659
  msgid "Others"
6660
  msgstr ""
6661
 
6662
+ #: app/libraries/main.php:5307
6663
  msgid "Booking Success Message"
6664
  msgstr ""
6665
 
6666
+ #: app/libraries/main.php:5307
6667
  msgid ""
6668
  "Thanks for your booking. Your tickets booked, booking verification might be "
6669
  "needed, please check your email."
6670
  msgstr ""
6671
 
6672
+ #: app/libraries/main.php:5308 app/widgets/single.php:131
6673
  msgid "Register Button"
6674
  msgstr ""
6675
 
6676
+ #: app/libraries/main.php:5308 app/skins/available_spot/tpl.php:225
6677
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6678
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6679
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6690
  msgid "REGISTER"
6691
  msgstr ""
6692
 
6693
+ #: app/libraries/main.php:5309
6694
  msgid "View Detail Button"
6695
  msgstr ""
6696
 
6697
+ #: app/libraries/main.php:5309 app/skins/carousel/render.php:160
6698
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6699
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6700
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
6705
  msgid "View Detail"
6706
  msgstr ""
6707
 
6708
+ #: app/libraries/main.php:5310
6709
  msgid "Event Detail Button"
6710
  msgstr ""
6711
 
6712
+ #: app/libraries/main.php:5310 app/skins/countdown/tpl.php:244
6713
  msgid "Event Detail"
6714
  msgstr ""
6715
 
6716
+ #: app/libraries/main.php:5312
6717
  msgid "More Info Link"
6718
  msgstr ""
6719
 
6720
+ #: app/libraries/main.php:5315
6721
  msgid "Ticket (Singular)"
6722
  msgstr ""
6723
 
6724
+ #: app/libraries/main.php:5316
6725
  msgid "Tickets (Plural)"
6726
  msgstr ""
6727
 
6728
+ #: app/libraries/main.php:5402
6729
  msgid "EventON"
6730
  msgstr ""
6731
 
6732
+ #: app/libraries/main.php:5403
6733
  msgid "The Events Calendar"
6734
  msgstr ""
6735
 
6736
+ #: app/libraries/main.php:5404
6737
  msgid "Events Schedule WP Plugin"
6738
  msgstr ""
6739
 
6740
+ #: app/libraries/main.php:5405
6741
  msgid "Calendarize It"
6742
  msgstr ""
6743
 
6744
+ #: app/libraries/main.php:5406
6745
  msgid "Event Espresso"
6746
  msgstr ""
6747
 
6748
+ #: app/libraries/main.php:5407
6749
  msgid "Events Manager (Recurring)"
6750
  msgstr ""
6751
 
6752
+ #: app/libraries/main.php:5408
6753
  msgid "Events Manager (Single)"
6754
  msgstr ""
6755
 
6756
+ #: app/libraries/main.php:5482 app/libraries/main.php:5502
6757
  msgid "Confirmed"
6758
  msgstr ""
6759
 
6760
+ #: app/libraries/main.php:5483 app/libraries/main.php:5510
6761
  msgid "Rejected"
6762
  msgstr ""
6763
 
6764
+ #: app/libraries/main.php:5484 app/libraries/main.php:5506
6765
  msgid "Pending"
6766
  msgstr ""
6767
 
6768
+ #: app/libraries/main.php:5532
6769
  msgid "Waiting"
6770
  msgstr ""
6771
 
6772
+ #: app/libraries/main.php:5737 app/libraries/render.php:80
6773
+ #: app/libraries/render.php:418
6774
  msgid "Skin controller does not exist."
6775
  msgstr ""
6776
 
6777
+ #: app/libraries/main.php:5851
6778
  msgid "Sold Out"
6779
  msgstr ""
6780
 
6781
+ #: app/libraries/main.php:5859
6782
  msgid "Last Few Tickets"
6783
  msgstr ""
6784
 
modern-events-calendar-lite.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://webnus.net/modern-events-calendar/
5
  * Description: An awesome plugin for events calendar
6
  * Author: Webnus Team
7
- * Version: 5.0.2
8
  * Text Domain: modern-events-calendar-lite
9
  * Domain Path: /languages
10
  * Author URI: http://webnus.net
@@ -31,7 +31,7 @@ if(!defined('MECEXEC'))
31
  define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
32
 
33
  /** Plugin Version **/
34
- define('MEC_VERSION', '5.0.2');
35
 
36
  /** Include Webnus MEC class if not included before **/
37
  if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
4
  * Plugin URI: http://webnus.net/modern-events-calendar/
5
  * Description: An awesome plugin for events calendar
6
  * Author: Webnus Team
7
+ * Version: 5.0.5
8
  * Text Domain: modern-events-calendar-lite
9
  * Domain Path: /languages
10
  * Author URI: http://webnus.net
31
  define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
32
 
33
  /** Plugin Version **/
34
+ define('MEC_VERSION', '5.0.5');
35
 
36
  /** Include Webnus MEC class if not included before **/
37
  if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://webnus.net
4
  Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
5
  Requires at least: 4.0.0
6
  Tested up to: 5.3.2
7
- Stable tag: 5.0.2
8
  Requires PHP: 5.6
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -352,6 +352,22 @@ You can see [plugin documentation here](https://webnus.net/dox/modern-events-cal
352
  33. WordPress Event Calendar - Shortcode edit page
353
 
354
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  = 5.0.2 - 22 January 2020 =
356
  - Added: An ability to add users as recipients in notifications (pro)
357
  - Added: An ability to add user roles as recipient in notifications (pro)
4
  Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
5
  Requires at least: 4.0.0
6
  Tested up to: 5.3.2
7
+ Stable tag: 5.0.5
8
  Requires PHP: 5.6
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
352
  33. WordPress Event Calendar - Shortcode edit page
353
 
354
  == Changelog ==
355
+ = 5.0.5 - 29 January 2020 =
356
+ - Added: Versioning to asset files
357
+ - Added: A WordPress cron for booking reminder emails (pro)
358
+ - Fixed: All day events
359
+ - Fixed: When event time is hidden
360
+ - Fixed: WooCommerce gateway (pro)
361
+ - Fixed: Booking edit (pro)
362
+ - Fixed: Apostrophe in booking success message (pro)
363
+ - Fixed: Day focus of daily skin
364
+ - Fixed: Accordion month toggle
365
+ - Fixed: Sort event in masonry skin (pro)
366
+ - Fixed: Current year in search module
367
+ - Fixed: Advanced repeat
368
+ - Fixed: Pay button position when cart is invalid (pro)
369
+ - Fixed: Simple monthly calendar style
370
+
371
  = 5.0.2 - 22 January 2020 =
372
  - Added: An ability to add users as recipients in notifications (pro)
373
  - Added: An ability to add user roles as recipient in notifications (pro)