Modern Events Calendar Lite - Version 5.18.5

Version Description

21 April 2021 = - Added: A new feature to manage a load of MEC assets on pages - Added: Some new placeholders to notifications including categories, tags, cost, and labels (pro) - Added: An option to show expired events in event management of backend - Added: Date filter option to map skin (pro) - Added: An option to change the SEO title of occurrences - Added: An option to change currency and currency options per event - Added: An option to disable the Private Description field in frontend event submission (pro) - Added: An option to disable the display of organizers in Frontend Event Submission - Improved: The MS Excel export on event and bookings (pro) - Fixed: Unlimited booking limit (pro) - Fixed: Price of booking export - Fixed: Simple style of monthly skin when there are multiple repeats from the same event in one day - Fixed: Last Few Ticket Percentage (pro) - Fixed: Some issues in export module loaded in single event page (pro) - Fixed: An issue regarding multiline description for ics export - Fixed: Showing the wrong date for events - Fixed: Booking reminder notification (pro) - Fixed: some issues in PHP 8

Download this release

Release Info

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

Code changes from version 5.18.0 to 5.18.5

Files changed (45) hide show
  1. app/features/events.php +209 -168
  2. app/features/feed/rss2.php +1 -1
  3. app/features/fes.php +3 -1
  4. app/features/fes/form.php +67 -0
  5. app/features/ix.php +33 -12
  6. app/features/ix/export_g_calendar.php +8 -1
  7. app/features/ix/sync.php +12 -1
  8. app/features/mec.php +99 -6
  9. app/features/mec/booking.php +1 -1
  10. app/features/mec/meta_boxes/search_form.php +8 -0
  11. app/features/mec/notifications.php +50 -0
  12. app/features/mec/settings.php +48 -3
  13. app/features/mec/single.php +9 -0
  14. app/features/notifications.php +5 -0
  15. app/features/occurrences.php +4 -0
  16. app/features/organizers.php +7 -0
  17. app/libraries/book.php +24 -1
  18. app/libraries/factory.php +103 -74
  19. app/libraries/main.php +194 -48
  20. app/libraries/notifications.php +30 -3
  21. app/libraries/render.php +2 -2
  22. app/libraries/skins.php +1 -1
  23. app/modules/booking/steps/checkout.php +4 -4
  24. app/modules/booking/steps/form.php +1 -1
  25. app/modules/export/details.php +2 -1
  26. app/skins/daily_view/render.php +1 -1
  27. app/skins/grid/render.php +1 -1
  28. app/skins/list/render.php +1 -1
  29. app/skins/map.php +8 -3
  30. app/skins/monthly_view/calendar_clean.php +3 -3
  31. app/skins/monthly_view/calendar_novel.php +1 -1
  32. app/skins/monthly_view/calendar_simple.php +5 -3
  33. app/skins/single.php +1 -1
  34. app/skins/single/default.php +3 -4
  35. app/skins/single/m1.php +1 -1
  36. app/skins/single/modern.php +3 -1
  37. app/skins/tile/render.php +1 -1
  38. app/skins/weekly_view/render.php +1 -1
  39. assets/css/backend.css +43 -19
  40. assets/css/backend.min.css +1 -1
  41. changelog.txt +21 -1
  42. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  43. languages/modern-events-calendar-lite-cs_CZ.po +1909 -1758
  44. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  45. languages/modern-events-calendar-lite-de_DE.po +938 -855
app/features/events.php CHANGED
@@ -63,7 +63,8 @@ class MEC_feature_events extends MEC_base
63
 
64
  $this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
65
  $this->factory->action('restrict_manage_posts', array($this, 'add_filters'));
66
- $this->factory->action('pre_get_posts', array($this, 'sort'));
 
67
 
68
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_nonce'), 10);
69
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_dates'), 20);
@@ -1224,16 +1225,82 @@ class MEC_feature_events extends MEC_base
1224
  {
1225
  $cost = get_post_meta($post->ID, 'mec_cost', true);
1226
 
 
 
 
1227
  $type = ((isset($this->settings['single_cost_type']) and trim($this->settings['single_cost_type'])) ? $this->settings['single_cost_type'] : 'numeric');
 
 
 
 
1228
  ?>
1229
  <div class="mec-meta-box-fields mec-event-tab-content" id="mec-cost">
1230
  <h4><?php echo $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')); ?></h4>
1231
  <div id="mec_meta_box_cost_form">
1232
  <div class="mec-form-row">
1233
  <input type="<?php echo ($type === 'alphabetic' ? 'text' : 'number'); ?>" class="mec-col-3" name="mec[cost]" id="mec_cost"
1234
- value="<?php echo esc_attr($cost); ?>" placeholder="<?php _e('Cost', 'modern-events-calendar-lite'); ?>"/>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1235
  </div>
1236
  </div>
 
1237
  </div>
1238
  <?php
1239
  }
@@ -1498,7 +1565,7 @@ class MEC_feature_events extends MEC_base
1498
  $bookings_user_limit_unlimited = isset($booking_options['bookings_user_limit_unlimited']) ? $booking_options['bookings_user_limit_unlimited'] : true;
1499
  $bookings_all_occurrences = isset($booking_options['bookings_all_occurrences']) ? $booking_options['bookings_all_occurrences'] : 0;
1500
  $bookings_last_few_tickets_percentage_inherite = isset($booking_options['last_few_tickets_percentage_inherit']) ? $booking_options['last_few_tickets_percentage_inherit'] : 1;
1501
- $bookings_last_few_tickets_percentage = ((isset($booking_options['last_few_tickets_percentage']) and trim($booking_options['last_few_tickets_percentage']) != '') ? $booking_options['last_few_tickets_percentage'] : (isset($this->settings['booking_last_few_tickets_percentage']) ? $this->settings['booking_last_few_tickets_percentage'] : 15));
1502
 
1503
  $loggedin_discount = isset($booking_options['loggedin_discount']) ? $booking_options['loggedin_discount'] : '';
1504
 
@@ -1708,6 +1775,10 @@ class MEC_feature_events extends MEC_base
1708
  // This date format used for datepicker
1709
  $datepicker_format = (isset($this->settings['datepicker_format']) and trim($this->settings['datepicker_format'])) ? $this->settings['datepicker_format'] : 'Y-m-d';
1710
 
 
 
 
 
1711
  if(!is_array($tickets)) $tickets = array();
1712
  ?>
1713
  <div class="mec-meta-box-fields mec-booking-tab-content" id="mec-tickets">
@@ -1770,6 +1841,7 @@ class MEC_feature_events extends MEC_base
1770
  name="mec[tickets][<?php echo $key; ?>][description]"
1771
  placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"><?php echo(isset($ticket['description']) ? esc_textarea($ticket['description']) : ''); ?></textarea>
1772
  </div>
 
1773
  <div class="mec-form-row">
1774
  <textarea type="text" class="mec-col-12"
1775
  name="mec[tickets][<?php echo $key; ?>][private_description]"
@@ -1782,6 +1854,7 @@ class MEC_feature_events extends MEC_base
1782
  <i title="" class="dashicons-before dashicons-editor-help"></i>
1783
  </span>
1784
  </div>
 
1785
  <div class="mec-form-row">
1786
  <span class="mec-col-4">
1787
  <input type="text" name="mec[tickets][<?php echo $key; ?>][price]"
@@ -1968,6 +2041,7 @@ class MEC_feature_events extends MEC_base
1968
  <textarea class="mec-col-12" type="text" name="mec[tickets][:i:][description]"
1969
  placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"></textarea>
1970
  </div>
 
1971
  <div class="mec-form-row">
1972
  <textarea type="text" class="mec-col-12" name="mec[tickets][:i:][private_description]"
1973
  placeholder="<?php esc_attr_e('Private Description', 'modern-events-calendar-lite'); ?>"></textarea>
@@ -1979,6 +2053,7 @@ class MEC_feature_events extends MEC_base
1979
  <i title="" class="dashicons-before dashicons-editor-help"></i>
1980
  </span>
1981
  </div>
 
1982
  <div class="mec-form-row">
1983
  <span class="mec-col-4">
1984
  <input type="text" name="mec[tickets][:i:][price]"
@@ -2674,6 +2749,7 @@ class MEC_feature_events extends MEC_base
2674
  $more_info_title = isset($_mec['more_info_title']) ? sanitize_text_field($_mec['more_info_title']) : '';
2675
  $more_info_target = isset($_mec['more_info_target']) ? sanitize_text_field($_mec['more_info_target']) : '';
2676
  $cost = isset($_mec['cost']) ? sanitize_text_field($_mec['cost']) : '';
 
2677
 
2678
  update_post_meta($post_id, 'mec_location_id', $location_id);
2679
  update_post_meta($post_id, 'mec_dont_show_map', $dont_show_map);
@@ -2683,6 +2759,7 @@ class MEC_feature_events extends MEC_base
2683
  update_post_meta($post_id, 'mec_more_info_title', $more_info_title);
2684
  update_post_meta($post_id, 'mec_more_info_target', $more_info_target);
2685
  update_post_meta($post_id, 'mec_cost', $cost);
 
2686
 
2687
  do_action('update_custom_dev_post_meta', $_mec, $post_id);
2688
 
@@ -3405,6 +3482,15 @@ class MEC_feature_events extends MEC_base
3405
  return true;
3406
  }
3407
 
 
 
 
 
 
 
 
 
 
3408
  /**
3409
  * Add filter options in manage events page
3410
  *
@@ -3603,55 +3689,66 @@ class MEC_feature_events extends MEC_base
3603
  * @param object $query
3604
  * @return void
3605
  */
3606
- public function sort($query)
3607
  {
3608
- if (!is_admin() or $query->get('post_type') != $this->PT) {
3609
- return;
3610
- }
 
3611
 
3612
  $orderby = $query->get('orderby');
 
3613
 
3614
- if ($orderby == 'start_date') {
3615
- $query->set(
3616
- 'meta_query',
3617
- array(
3618
- 'mec_start_date' => array(
3619
- 'key' => 'mec_start_date',
3620
- ),
3621
- 'mec_start_day_seconds' => array(
3622
- 'key' => 'mec_start_day_seconds',
3623
- ),
3624
- )
3625
  );
3626
 
3627
- $query->set(
3628
- 'orderby',
3629
- array(
3630
- 'mec_start_date' => $query->get('order'),
3631
- 'mec_start_day_seconds' => $query->get('order'),
3632
- )
3633
  );
3634
- } elseif ($orderby == 'end_date') {
3635
- $query->set(
3636
- 'meta_query',
3637
- array(
3638
- 'mec_end_date' => array(
3639
- 'key' => 'mec_end_date',
3640
- ),
3641
- 'mec_end_day_seconds' => array(
3642
- 'key' => 'mec_end_day_seconds',
3643
- ),
3644
- )
 
3645
  );
3646
 
3647
- $query->set(
3648
- 'orderby',
3649
- array(
3650
- 'mec_end_date' => $query->get('order'),
3651
- 'mec_end_day_seconds' => $query->get('order'),
3652
- )
3653
  );
3654
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3655
  }
3656
 
3657
  public function add_bulk_actions()
@@ -3697,9 +3794,6 @@ class MEC_feature_events extends MEC_base
3697
 
3698
  check_admin_referer('bulk-posts');
3699
 
3700
- // MEC Render Library
3701
- $render = $this->getRender();
3702
-
3703
  switch($action)
3704
  {
3705
  case 'ical-export':
@@ -3718,67 +3812,22 @@ class MEC_feature_events extends MEC_base
3718
  exit;
3719
  break;
3720
 
3721
- case 'csv-export':
3722
  case 'ms-excel-export':
3723
 
3724
- header('Content-Type: text/csv; charset=utf-8');
3725
- header('Content-Disposition: attachment; filename=mec-events-' . md5(time() . mt_rand(100, 999)) . '.csv');
3726
-
3727
- $post_ids = $_GET['post'];
3728
- $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Description', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')), __('Address', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')), sprintf(__('%s Tel', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))), sprintf(__('%s Email', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')), __('Featured Image', 'modern-events-calendar-lite'));
3729
-
3730
- // Event Fields
3731
- $fields = $this->main->get_event_fields();
3732
- if(!is_array($fields)) $fields = array();
3733
 
3734
- foreach($fields as $f => $field)
3735
- {
3736
- if(!is_numeric($f)) continue;
3737
- if(!isset($field['label']) or (isset($field['label']) and trim($field['label']) == '')) continue;
3738
 
3739
- $columns[] = stripslashes($field['label']);
3740
- }
3741
 
3742
- $output = fopen('php://output', 'w');
3743
- fputcsv($output, $columns);
3744
 
3745
- foreach($post_ids as $post_id)
3746
- {
3747
- $post_id = (int)$post_id;
3748
-
3749
- $data = $render->data($post_id);
3750
-
3751
- $dates = $render->dates($post_id, $data);
3752
- $date = $dates[0];
3753
-
3754
- $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
3755
- $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
3756
-
3757
- $event = array(
3758
- $post_id,
3759
- $data->title,
3760
- html_entity_decode(strip_tags($data->content), ENT_QUOTES | ENT_HTML5),
3761
- $date['start']['date'],
3762
- $data->time['start'],
3763
- $date['end']['date'],
3764
- $data->time['end'],
3765
- $data->permalink,
3766
- (isset($location['name']) ? $location['name'] : ''),
3767
- (isset($location['address']) ? $location['address'] : ''),
3768
- (isset($organizer['name']) ? $organizer['name'] : ''),
3769
- (isset($organizer['tel']) ? $organizer['tel'] : ''),
3770
- (isset($organizer['email']) ? $organizer['email'] : ''),
3771
- (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']),
3772
- $this->main->get_post_thumbnail_url($post_id)
3773
- );
3774
-
3775
- if(isset($data->fields) and is_array($data->fields) and count($data->fields))
3776
- {
3777
- foreach($data->fields as $field) $event[] = $field['value'];
3778
- }
3779
 
3780
- fputcsv($output, $event);
3781
- }
3782
 
3783
  exit;
3784
  break;
@@ -3830,6 +3879,67 @@ class MEC_feature_events extends MEC_base
3830
  exit;
3831
  }
3832
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3833
  public function action_links($actions, $post)
3834
  {
3835
  if($post->post_type != $this->PT) return $actions;
@@ -3969,78 +4079,9 @@ class MEC_feature_events extends MEC_base
3969
  $tickets = get_post_meta($id, 'mec_tickets', true);
3970
  $ticket_variations = $this->main->ticket_variations($id);
3971
 
3972
- $date_query = array(
3973
- array(
3974
- 'year' => date('Y', $occurrence),
3975
- 'month'=> date('m', $occurrence),
3976
- 'day' => date('d', $occurrence),
3977
- 'hour' => date('H', $occurrence),
3978
- 'minute' => date('i', $occurrence),
3979
- ),
3980
- );
3981
-
3982
- $booking_options = get_post_meta($id, 'mec_booking', true);
3983
- $bookings_all_occurrences = isset($booking_options['bookings_all_occurrences']) ? $booking_options['bookings_all_occurrences'] : 0;
3984
- if($bookings_all_occurrences)
3985
- {
3986
- $date_query = array(
3987
- 'before' => date('Y-m-d', $occurrence).' 23:59:59',
3988
- );
3989
- }
3990
-
3991
- // Fetch Bookings
3992
- $bookings = get_posts(array(
3993
- 'posts_per_page' => -1,
3994
- 'post_type' => $this->main->get_book_post_type(),
3995
- 'post_status' => 'any',
3996
- 'meta_key' => 'mec_event_id',
3997
- 'meta_value' => $id,
3998
- 'meta_compare' => '=',
3999
- 'meta_query' => array
4000
- (
4001
- 'relation' => 'AND',
4002
- array(
4003
- 'key' => 'mec_verified',
4004
- 'value' => '1',
4005
- 'compare' => '=',
4006
- ),
4007
- array(
4008
- 'key' => 'mec_confirmed',
4009
- 'value' => '1',
4010
- 'compare' => '=',
4011
- ),
4012
- ),
4013
- 'date_query' => $date_query,
4014
- ));
4015
 
4016
  $html = '';
4017
-
4018
-
4019
- // Attendees
4020
- $attendees = array();
4021
- foreach($bookings as $booking)
4022
- {
4023
- $atts = get_post_meta($booking->ID, 'mec_attendees', true);
4024
- if(isset($atts['attachments'])) unset($atts['attachments']);
4025
-
4026
- foreach($atts as $key => $value)
4027
- {
4028
- if(!is_numeric($key)) continue;
4029
-
4030
- $atts[$key]['book_id'] = $booking->ID;
4031
- $atts[$key]['key'] = ($key + 1);
4032
- }
4033
-
4034
- $attendees = array_merge($attendees, $atts);
4035
- }
4036
-
4037
- $attendees = apply_filters('mec_attendees_list_data', $attendees, $id, $occurrence);
4038
-
4039
- usort($attendees, function($a, $b)
4040
- {
4041
- return strcmp($a['name'], $b['name']);
4042
- });
4043
-
4044
  if(count($attendees))
4045
  {
4046
  $html .= '<div class="w-clearfix mec-attendees-head">
63
 
64
  $this->factory->action('add_meta_boxes', array($this, 'register_meta_boxes'), 1);
65
  $this->factory->action('restrict_manage_posts', array($this, 'add_filters'));
66
+ $this->factory->action('manage_posts_extra_tablenav', array($this, 'add_buttons'));
67
+ $this->factory->action('pre_get_posts', array($this, 'filter'));
68
 
69
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_nonce'), 10);
70
  $this->factory->action('mec_metabox_details', array($this, 'meta_box_dates'), 20);
1225
  {
1226
  $cost = get_post_meta($post->ID, 'mec_cost', true);
1227
 
1228
+ $currency = get_post_meta($post->ID, 'mec_currency', true);
1229
+ if(!is_array($currency)) $currency = array();
1230
+
1231
  $type = ((isset($this->settings['single_cost_type']) and trim($this->settings['single_cost_type'])) ? $this->settings['single_cost_type'] : 'numeric');
1232
+ $currency_per_event = ((isset($this->settings['currency_per_event']) and trim($this->settings['currency_per_event'])) ? $this->settings['currency_per_event'] : 0);
1233
+
1234
+ $currencies = $this->main->get_currencies();
1235
+ $current_currency = (isset($currency['currency']) ? $currency['currency'] : $this->settings['currency']);
1236
  ?>
1237
  <div class="mec-meta-box-fields mec-event-tab-content" id="mec-cost">
1238
  <h4><?php echo $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')); ?></h4>
1239
  <div id="mec_meta_box_cost_form">
1240
  <div class="mec-form-row">
1241
  <input type="<?php echo ($type === 'alphabetic' ? 'text' : 'number'); ?>" class="mec-col-3" name="mec[cost]" id="mec_cost"
1242
+ value="<?php echo esc_attr($cost); ?>" title="<?php _e('Cost', 'modern-events-calendar-lite'); ?>" placeholder="<?php _e('Cost', 'modern-events-calendar-lite'); ?>"/>
1243
+ </div>
1244
+ </div>
1245
+
1246
+ <?php if($currency_per_event): ?>
1247
+ <h4><?php echo __('Currency Options', 'modern-events-calendar-lite'); ?></h4>
1248
+ <div class="mec-form-row">
1249
+ <label class="mec-col-2" for="mec_currency_currency"><?php _e('Currency', 'modern-events-calendar-lite'); ?></label>
1250
+ <div class="mec-col-4">
1251
+ <select name="mec[currency][currency]" id="mec_currency_currency">
1252
+ <?php foreach($currencies as $c=>$currency_name): ?>
1253
+ <option value="<?php echo $c; ?>" <?php echo (($current_currency == $c) ? 'selected="selected"' : ''); ?>><?php echo $currency_name; ?></option>
1254
+ <?php endforeach; ?>
1255
+ </select>
1256
+ </div>
1257
+ </div>
1258
+ <div class="mec-form-row">
1259
+ <label class="mec-col-2" for="mec_currency_currency_symptom"><?php _e('Currency Sign', 'modern-events-calendar-lite'); ?></label>
1260
+ <div class="mec-col-4">
1261
+ <input type="text" name="mec[currency][currency_symptom]" id="mec_currency_currency_symptom" value="<?php echo (isset($currency['currency_symptom']) ? $currency['currency_symptom'] : ''); ?>" />
1262
+ <span class="mec-tooltip">
1263
+ <div class="box left">
1264
+ <h5 class="title"><?php _e('Currency Sign', 'modern-events-calendar-lite'); ?></h5>
1265
+ <div class="content"><p><?php esc_attr_e("Default value will be \"currency\" if you leave it empty.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/currency-options/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
1266
+ </div>
1267
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
1268
+ </span>
1269
+ </div>
1270
+ </div>
1271
+ <div class="mec-form-row">
1272
+ <label class="mec-col-2" for="mec_currency_currency_sign"><?php _e('Currency Position', 'modern-events-calendar-lite'); ?></label>
1273
+ <div class="mec-col-4">
1274
+ <select name="mec[currency][currency_sign]" id="mec_currency_currency_sign">
1275
+ <option value="before" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'before') ? 'selected="selected"' : ''); ?>><?php _e('$10 (Before)', 'modern-events-calendar-lite'); ?></option>
1276
+ <option value="before_space" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'before_space') ? 'selected="selected"' : ''); ?>><?php _e('$ 10 (Before with Space)', 'modern-events-calendar-lite'); ?></option>
1277
+ <option value="after" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'after') ? 'selected="selected"' : ''); ?>><?php _e('10$ (After)', 'modern-events-calendar-lite'); ?></option>
1278
+ <option value="after_space" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'after_space') ? 'selected="selected"' : ''); ?>><?php _e('10 $ (After with Space)', 'modern-events-calendar-lite'); ?></option>
1279
+ </select>
1280
+ </div>
1281
+ </div>
1282
+ <div class="mec-form-row">
1283
+ <label class="mec-col-2" for="mec_currency_thousand_separator"><?php _e('Thousand Separator', 'modern-events-calendar-lite'); ?></label>
1284
+ <div class="mec-col-4">
1285
+ <input type="text" name="mec[currency][thousand_separator]" id="mec_currency_thousand_separator" value="<?php echo (isset($currency['thousand_separator']) ? $currency['thousand_separator'] : ','); ?>" />
1286
+ </div>
1287
+ </div>
1288
+ <div class="mec-form-row">
1289
+ <label class="mec-col-2" for="mec_currency_decimal_separator"><?php _e('Decimal Separator', 'modern-events-calendar-lite'); ?></label>
1290
+ <div class="mec-col-4">
1291
+ <input type="text" name="mec[currency][decimal_separator]" id="mec_currency_decimal_separator" value="<?php echo (isset($currency['decimal_separator']) ? $currency['decimal_separator'] : '.'); ?>" />
1292
+ </div>
1293
+ </div>
1294
+ <div class="mec-form-row">
1295
+ <div class="mec-col-12">
1296
+ <label for="mec_currency_decimal_separator_status">
1297
+ <input type="hidden" name="mec[currency][decimal_separator_status]" value="1" />
1298
+ <input type="checkbox" name="mec[currency][decimal_separator_status]" id="mec_currency_decimal_separator_status" <?php echo ((isset($currency['decimal_separator_status']) and $currency['decimal_separator_status'] == '0') ? 'checked="checked"' : ''); ?> value="0" />
1299
+ <?php _e('No decimal', 'modern-events-calendar-lite'); ?>
1300
+ </label>
1301
  </div>
1302
  </div>
1303
+ <?php endif; ?>
1304
  </div>
1305
  <?php
1306
  }
1565
  $bookings_user_limit_unlimited = isset($booking_options['bookings_user_limit_unlimited']) ? $booking_options['bookings_user_limit_unlimited'] : true;
1566
  $bookings_all_occurrences = isset($booking_options['bookings_all_occurrences']) ? $booking_options['bookings_all_occurrences'] : 0;
1567
  $bookings_last_few_tickets_percentage_inherite = isset($booking_options['last_few_tickets_percentage_inherit']) ? $booking_options['last_few_tickets_percentage_inherit'] : 1;
1568
+ $bookings_last_few_tickets_percentage = ((isset($booking_options['last_few_tickets_percentage']) and trim($booking_options['last_few_tickets_percentage']) != '') ? max(1, $booking_options['last_few_tickets_percentage']) : (isset($this->settings['booking_last_few_tickets_percentage']) ? max(1, $this->settings['booking_last_few_tickets_percentage']) : 15));
1569
 
1570
  $loggedin_discount = isset($booking_options['loggedin_discount']) ? $booking_options['loggedin_discount'] : '';
1571
 
1775
  // This date format used for datepicker
1776
  $datepicker_format = (isset($this->settings['datepicker_format']) and trim($this->settings['datepicker_format'])) ? $this->settings['datepicker_format'] : 'Y-m-d';
1777
 
1778
+ // Private Description
1779
+ $private_description_status = (!isset($this->settings['booking_private_description']) or (isset($this->settings['booking_private_description']) and $this->settings['booking_private_description'])) ? true : false;
1780
+ if(is_admin()) $private_description_status = true;
1781
+
1782
  if(!is_array($tickets)) $tickets = array();
1783
  ?>
1784
  <div class="mec-meta-box-fields mec-booking-tab-content" id="mec-tickets">
1841
  name="mec[tickets][<?php echo $key; ?>][description]"
1842
  placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"><?php echo(isset($ticket['description']) ? esc_textarea($ticket['description']) : ''); ?></textarea>
1843
  </div>
1844
+ <?php if($private_description_status): ?>
1845
  <div class="mec-form-row">
1846
  <textarea type="text" class="mec-col-12"
1847
  name="mec[tickets][<?php echo $key; ?>][private_description]"
1854
  <i title="" class="dashicons-before dashicons-editor-help"></i>
1855
  </span>
1856
  </div>
1857
+ <?php endif; ?>
1858
  <div class="mec-form-row">
1859
  <span class="mec-col-4">
1860
  <input type="text" name="mec[tickets][<?php echo $key; ?>][price]"
2041
  <textarea class="mec-col-12" type="text" name="mec[tickets][:i:][description]"
2042
  placeholder="<?php esc_attr_e('Description', 'modern-events-calendar-lite'); ?>"></textarea>
2043
  </div>
2044
+ <?php if($private_description_status): ?>
2045
  <div class="mec-form-row">
2046
  <textarea type="text" class="mec-col-12" name="mec[tickets][:i:][private_description]"
2047
  placeholder="<?php esc_attr_e('Private Description', 'modern-events-calendar-lite'); ?>"></textarea>
2053
  <i title="" class="dashicons-before dashicons-editor-help"></i>
2054
  </span>
2055
  </div>
2056
+ <?php endif; ?>
2057
  <div class="mec-form-row">
2058
  <span class="mec-col-4">
2059
  <input type="text" name="mec[tickets][:i:][price]"
2749
  $more_info_title = isset($_mec['more_info_title']) ? sanitize_text_field($_mec['more_info_title']) : '';
2750
  $more_info_target = isset($_mec['more_info_target']) ? sanitize_text_field($_mec['more_info_target']) : '';
2751
  $cost = isset($_mec['cost']) ? sanitize_text_field($_mec['cost']) : '';
2752
+ $currency_options = ((isset($_mec['currency']) and is_array($_mec['currency'])) ? $_mec['currency'] : array());
2753
 
2754
  update_post_meta($post_id, 'mec_location_id', $location_id);
2755
  update_post_meta($post_id, 'mec_dont_show_map', $dont_show_map);
2759
  update_post_meta($post_id, 'mec_more_info_title', $more_info_title);
2760
  update_post_meta($post_id, 'mec_more_info_target', $more_info_target);
2761
  update_post_meta($post_id, 'mec_cost', $cost);
2762
+ update_post_meta($post_id, 'mec_currency', $currency_options);
2763
 
2764
  do_action('update_custom_dev_post_meta', $_mec, $post_id);
2765
 
3482
  return true;
3483
  }
3484
 
3485
+ public function add_buttons($which)
3486
+ {
3487
+ $screen = get_current_screen();
3488
+ if($which === 'top' and $screen->post_type === $this->PT)
3489
+ {
3490
+ echo '<a href="'.admin_url('edit.php?post_type='.$this->PT.'&mec-expired=1').'" class="button">'.esc_html__('Expired Events', 'modern-events-calendar-lite').'</a>';
3491
+ }
3492
+ }
3493
+
3494
  /**
3495
  * Add filter options in manage events page
3496
  *
3689
  * @param object $query
3690
  * @return void
3691
  */
3692
+ public function filter($query)
3693
  {
3694
+ if(!is_admin() or $query->get('post_type') != $this->PT) return;
3695
+
3696
+ $meta_query = array();
3697
+ $order_query = array();
3698
 
3699
  $orderby = $query->get('orderby');
3700
+ $order = $query->get('order');
3701
 
3702
+ $expired = (isset($_REQUEST['mec-expired']) ? $_REQUEST['mec-expired'] : 0);
3703
+ if($expired)
3704
+ {
3705
+ $meta_query[] = array(
3706
+ 'key' => 'mec_repeat_status',
3707
+ 'value' => '0',
 
 
 
 
 
3708
  );
3709
 
3710
+ $meta_query[] = array(
3711
+ 'key' => 'mec_end_date',
3712
+ 'value' => current_time('Y-m-d'),
3713
+ 'compare' => '<',
3714
+ 'type' => 'DATE',
 
3715
  );
3716
+
3717
+ if(!trim($orderby)) $orderby = 'end_date';
3718
+ if(!trim($order)) $order = 'asc';
3719
+ }
3720
+
3721
+ if($orderby == 'start_date')
3722
+ {
3723
+ $meta_query['mec_start_date'] = array(
3724
+ 'key' => 'mec_start_date',
3725
+ );
3726
+ $meta_query['mec_start_day_seconds'] = array(
3727
+ 'key' => 'mec_start_day_seconds',
3728
  );
3729
 
3730
+ $order_query = array(
3731
+ 'mec_start_date' => $query->get('order'),
3732
+ 'mec_start_day_seconds' => $query->get('order'),
 
 
 
3733
  );
3734
  }
3735
+ elseif($orderby == 'end_date')
3736
+ {
3737
+ $meta_query['mec_end_date'] = array(
3738
+ 'key' => 'mec_end_date',
3739
+ );
3740
+ $meta_query['mec_end_day_seconds'] = array(
3741
+ 'key' => 'mec_end_day_seconds',
3742
+ );
3743
+
3744
+ $order_query = array(
3745
+ 'mec_end_date' => $order,
3746
+ 'mec_end_day_seconds' => $order,
3747
+ );
3748
+ }
3749
+
3750
+ if(count($meta_query)) $query->set('meta_query', $meta_query);
3751
+ if(count($order_query)) $query->set('orderby', $order_query);
3752
  }
3753
 
3754
  public function add_bulk_actions()
3794
 
3795
  check_admin_referer('bulk-posts');
3796
 
 
 
 
3797
  switch($action)
3798
  {
3799
  case 'ical-export':
3812
  exit;
3813
  break;
3814
 
 
3815
  case 'ms-excel-export':
3816
 
3817
+ header('Content-Type: application/vnd.ms-excel; charset=utf-8');
3818
+ header('Content-Disposition: attachment; filename=mec-events-' . md5(time() . mt_rand(100, 999)) . '.xls');
 
 
 
 
 
 
 
3819
 
3820
+ $this->csvexcel();
 
 
 
3821
 
3822
+ exit;
3823
+ break;
3824
 
3825
+ case 'csv-export':
 
3826
 
3827
+ header('Content-Type: text/csv; charset=utf-8');
3828
+ header('Content-Disposition: attachment; filename=mec-events-' . md5(time() . mt_rand(100, 999)) . '.csv');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3829
 
3830
+ $this->csvexcel();
 
3831
 
3832
  exit;
3833
  break;
3879
  exit;
3880
  }
3881
 
3882
+ public function csvexcel()
3883
+ {
3884
+ // MEC Render Library
3885
+ $render = $this->getRender();
3886
+
3887
+ $post_ids = $_GET['post'];
3888
+ $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Description', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')), __('Address', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')), sprintf(__('%s Tel', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))), sprintf(__('%s Email', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')), __('Featured Image', 'modern-events-calendar-lite'));
3889
+
3890
+ // Event Fields
3891
+ $fields = $this->main->get_event_fields();
3892
+ if(!is_array($fields)) $fields = array();
3893
+
3894
+ foreach($fields as $f => $field)
3895
+ {
3896
+ if(!is_numeric($f)) continue;
3897
+ if(!isset($field['label']) or (isset($field['label']) and trim($field['label']) == '')) continue;
3898
+
3899
+ $columns[] = stripslashes($field['label']);
3900
+ }
3901
+
3902
+ $output = fopen('php://output', 'w');
3903
+ fputcsv($output, $columns);
3904
+
3905
+ foreach($post_ids as $post_id)
3906
+ {
3907
+ $post_id = (int)$post_id;
3908
+
3909
+ $data = $render->data($post_id);
3910
+ $dates = $render->dates($post_id, $data);
3911
+ $date = $dates[0];
3912
+
3913
+ $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
3914
+ $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
3915
+
3916
+ $event = array(
3917
+ $post_id,
3918
+ $data->title,
3919
+ html_entity_decode(strip_tags($data->content), ENT_QUOTES | ENT_HTML5),
3920
+ $date['start']['date'],
3921
+ $data->time['start'],
3922
+ $date['end']['date'],
3923
+ $data->time['end'],
3924
+ $data->permalink,
3925
+ (isset($location['name']) ? $location['name'] : ''),
3926
+ (isset($location['address']) ? $location['address'] : ''),
3927
+ (isset($organizer['name']) ? $organizer['name'] : ''),
3928
+ (isset($organizer['tel']) ? $organizer['tel'] : ''),
3929
+ (isset($organizer['email']) ? $organizer['email'] : ''),
3930
+ (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost'], $post_id) : $data->meta['mec_cost']),
3931
+ $this->main->get_post_thumbnail_url($post_id)
3932
+ );
3933
+
3934
+ if(isset($data->fields) and is_array($data->fields) and count($data->fields))
3935
+ {
3936
+ foreach($data->fields as $field) $event[] = $field['value'];
3937
+ }
3938
+
3939
+ fputcsv($output, $event);
3940
+ }
3941
+ }
3942
+
3943
  public function action_links($actions, $post)
3944
  {
3945
  if($post->post_type != $this->PT) return $actions;
4079
  $tickets = get_post_meta($id, 'mec_tickets', true);
4080
  $ticket_variations = $this->main->ticket_variations($id);
4081
 
4082
+ $attendees = $this->main->get_event_attendees($id, $occurrence);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4083
 
4084
  $html = '';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4085
  if(count($attendees))
4086
  {
4087
  $html .= '<div class="w-clearfix mec-attendees-head">
app/features/feed/rss2.php CHANGED
@@ -67,7 +67,7 @@ do_action('rss_tag_pre', 'rss2');
67
  <?php if(isset($event->data) and isset($event->data->meta) and isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']])): ?><mec:location><?php echo $event->data->locations[$event->data->meta['mec_location_id']]['address']; ?></mec:location><?php endif; ?>
68
 
69
  <?php if(isset($event->data->meta) and isset($event->data->meta['mec_cost']) and trim($event->data->meta['mec_cost'])): ?>
70
- <mec:cost><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></mec:cost>
71
  <?php endif; ?>
72
 
73
  <?php if(isset($event->data->categories) and is_array($event->data->categories) and count($event->data->categories)): ?>
67
  <?php if(isset($event->data) and isset($event->data->meta) and isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']])): ?><mec:location><?php echo $event->data->locations[$event->data->meta['mec_location_id']]['address']; ?></mec:location><?php endif; ?>
68
 
69
  <?php if(isset($event->data->meta) and isset($event->data->meta['mec_cost']) and trim($event->data->meta['mec_cost'])): ?>
70
+ <mec:cost><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></mec:cost>
71
  <?php endif; ?>
72
 
73
  <?php if(isset($event->data->categories) and is_array($event->data->categories) and count($event->data->categories)): ?>
app/features/fes.php CHANGED
@@ -314,7 +314,7 @@ class MEC_feature_fes extends MEC_base
314
  }
315
 
316
  $ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
317
- $booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), $order_time, (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0)), $gateway_label, (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : @$booker->user_email), trim($ticket_variations_output, ', '), $confirmed, $verified);
318
  $booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
319
 
320
  $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
@@ -510,6 +510,7 @@ class MEC_feature_fes extends MEC_base
510
  $more_info_title = isset($mec['more_info_title']) ? sanitize_text_field($mec['more_info_title']) : '';
511
  $more_info_target = isset($mec['more_info_target']) ? sanitize_text_field($mec['more_info_target']) : '';
512
  $cost = isset($mec['cost']) ? sanitize_text_field($mec['cost']) : '';
 
513
  $note = isset($mec['note']) ? sanitize_text_field($mec['note']) : '';
514
 
515
  update_post_meta($post_id, 'mec_read_more', $read_more);
@@ -517,6 +518,7 @@ class MEC_feature_fes extends MEC_base
517
  update_post_meta($post_id, 'mec_more_info_title', $more_info_title);
518
  update_post_meta($post_id, 'mec_more_info_target', $more_info_target);
519
  update_post_meta($post_id, 'mec_cost', $cost);
 
520
  update_post_meta($post_id, 'mec_note', $note);
521
 
522
  // Guest Name and Email
314
  }
315
 
316
  $ticket_id = isset($attendee['id']) ? $attendee['id'] : get_post_meta($post_id, 'mec_ticket_id', true);
317
+ $booking = array($post_id, get_the_title($event_id), get_the_date('', $post_id), $order_time, (isset($tickets[$ticket_id]['name']) ? $tickets[$ticket_id]['name'] : __('Unknown', 'modern-events-calendar-lite')), $transaction_id, $this->main->render_price(($price ? $price : 0), $post_id), $gateway_label, (isset($attendee['name']) ? $attendee['name'] : (isset($booker->first_name) ? trim($booker->first_name.' '.$booker->last_name) : '')), (isset($attendee['email']) ? $attendee['email'] : @$booker->user_email), trim($ticket_variations_output, ', '), $confirmed, $verified);
318
  $booking = apply_filters('mec_csv_export_booking', $booking, $post_id, $event_id);
319
 
320
  $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
510
  $more_info_title = isset($mec['more_info_title']) ? sanitize_text_field($mec['more_info_title']) : '';
511
  $more_info_target = isset($mec['more_info_target']) ? sanitize_text_field($mec['more_info_target']) : '';
512
  $cost = isset($mec['cost']) ? sanitize_text_field($mec['cost']) : '';
513
+ $currency_options = ((isset($mec['currency']) and is_array($mec['currency'])) ? $mec['currency'] : array());
514
  $note = isset($mec['note']) ? sanitize_text_field($mec['note']) : '';
515
 
516
  update_post_meta($post_id, 'mec_read_more', $read_more);
518
  update_post_meta($post_id, 'mec_more_info_title', $more_info_title);
519
  update_post_meta($post_id, 'mec_more_info_target', $more_info_target);
520
  update_post_meta($post_id, 'mec_cost', $cost);
521
+ update_post_meta($post_id, 'mec_currency', $currency_options);
522
  update_post_meta($post_id, 'mec_note', $note);
523
 
524
  // Guest Name and Email
app/features/fes/form.php CHANGED
@@ -848,6 +848,14 @@ $this->factory->params('footer', $javascript);
848
  <?php
849
  $cost = get_post_meta($post_id, 'mec_cost', true);
850
  $cost_type = ((isset($this->settings['single_cost_type']) and trim($this->settings['single_cost_type'])) ? $this->settings['single_cost_type'] : 'numeric');
 
 
 
 
 
 
 
 
851
  ?>
852
  <div class="mec-meta-box-fields" id="mec-event-cost">
853
  <h4><?php echo $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')); ?> <?php echo ((isset($this->settings['fes_required_cost']) and $this->settings['fes_required_cost']) ? '<span class="mec-required">*</span>' : ''); ?></h4>
@@ -856,6 +864,65 @@ $this->factory->params('footer', $javascript);
856
  <input type="<?php echo ($cost_type === 'alphabetic' ? 'text' : 'number'); ?>" class="mec-col-3" name="mec[cost]" id="mec_cost" value="<?php echo esc_attr($cost); ?>" placeholder="<?php _e('Cost', 'modern-events-calendar-lite'); ?>" <?php echo ((isset($this->settings['fes_required_cost']) and $this->settings['fes_required_cost']) ? 'required' : ''); ?> />
857
  </div>
858
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
859
  </div>
860
  <?php endif; ?>
861
 
848
  <?php
849
  $cost = get_post_meta($post_id, 'mec_cost', true);
850
  $cost_type = ((isset($this->settings['single_cost_type']) and trim($this->settings['single_cost_type'])) ? $this->settings['single_cost_type'] : 'numeric');
851
+
852
+ $currency = get_post_meta($post_id, 'mec_currency', true);
853
+ if(!is_array($currency)) $currency = array();
854
+
855
+ $currency_per_event = ((isset($this->settings['currency_per_event']) and trim($this->settings['currency_per_event'])) ? $this->settings['currency_per_event'] : 0);
856
+
857
+ $currencies = $this->main->get_currencies();
858
+ $current_currency = (isset($currency['currency']) ? $currency['currency'] : $this->settings['currency']);
859
  ?>
860
  <div class="mec-meta-box-fields" id="mec-event-cost">
861
  <h4><?php echo $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')); ?> <?php echo ((isset($this->settings['fes_required_cost']) and $this->settings['fes_required_cost']) ? '<span class="mec-required">*</span>' : ''); ?></h4>
864
  <input type="<?php echo ($cost_type === 'alphabetic' ? 'text' : 'number'); ?>" class="mec-col-3" name="mec[cost]" id="mec_cost" value="<?php echo esc_attr($cost); ?>" placeholder="<?php _e('Cost', 'modern-events-calendar-lite'); ?>" <?php echo ((isset($this->settings['fes_required_cost']) and $this->settings['fes_required_cost']) ? 'required' : ''); ?> />
865
  </div>
866
  </div>
867
+
868
+ <?php if($currency_per_event): ?>
869
+ <h4><?php echo __('Currency Options', 'modern-events-calendar-lite'); ?></h4>
870
+ <div class="mec-form-row">
871
+ <label class="mec-col-2" for="mec_currency_currency"><?php _e('Currency', 'modern-events-calendar-lite'); ?></label>
872
+ <div class="mec-col-4">
873
+ <select name="mec[currency][currency]" id="mec_currency_currency">
874
+ <?php foreach($currencies as $c=>$currency_name): ?>
875
+ <option value="<?php echo $c; ?>" <?php echo (($current_currency == $c) ? 'selected="selected"' : ''); ?>><?php echo $currency_name; ?></option>
876
+ <?php endforeach; ?>
877
+ </select>
878
+ </div>
879
+ </div>
880
+ <div class="mec-form-row">
881
+ <label class="mec-col-2" for="mec_currency_currency_symptom"><?php _e('Currency Sign', 'modern-events-calendar-lite'); ?></label>
882
+ <div class="mec-col-4">
883
+ <input type="text" name="mec[currency][currency_symptom]" id="mec_currency_currency_symptom" value="<?php echo (isset($currency['currency_symptom']) ? $currency['currency_symptom'] : ''); ?>" />
884
+ <span class="mec-tooltip">
885
+ <div class="box left">
886
+ <h5 class="title"><?php _e('Currency Sign', 'modern-events-calendar-lite'); ?></h5>
887
+ <div class="content"><p><?php esc_attr_e("Default value will be \"currency\" if you leave it empty.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/currency-options/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
888
+ </div>
889
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
890
+ </span>
891
+ </div>
892
+ </div>
893
+ <div class="mec-form-row">
894
+ <label class="mec-col-2" for="mec_currency_currency_sign"><?php _e('Currency Position', 'modern-events-calendar-lite'); ?></label>
895
+ <div class="mec-col-4">
896
+ <select name="mec[currency][currency_sign]" id="mec_currency_currency_sign">
897
+ <option value="before" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'before') ? 'selected="selected"' : ''); ?>><?php _e('$10 (Before)', 'modern-events-calendar-lite'); ?></option>
898
+ <option value="before_space" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'before_space') ? 'selected="selected"' : ''); ?>><?php _e('$ 10 (Before with Space)', 'modern-events-calendar-lite'); ?></option>
899
+ <option value="after" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'after') ? 'selected="selected"' : ''); ?>><?php _e('10$ (After)', 'modern-events-calendar-lite'); ?></option>
900
+ <option value="after_space" <?php echo ((isset($currency['currency_sign']) and $currency['currency_sign'] == 'after_space') ? 'selected="selected"' : ''); ?>><?php _e('10 $ (After with Space)', 'modern-events-calendar-lite'); ?></option>
901
+ </select>
902
+ </div>
903
+ </div>
904
+ <div class="mec-form-row">
905
+ <label class="mec-col-2" for="mec_currency_thousand_separator"><?php _e('Thousand Separator', 'modern-events-calendar-lite'); ?></label>
906
+ <div class="mec-col-4">
907
+ <input type="text" name="mec[currency][thousand_separator]" id="mec_currency_thousand_separator" value="<?php echo (isset($currency['thousand_separator']) ? $currency['thousand_separator'] : ','); ?>" />
908
+ </div>
909
+ </div>
910
+ <div class="mec-form-row">
911
+ <label class="mec-col-2" for="mec_currency_decimal_separator"><?php _e('Decimal Separator', 'modern-events-calendar-lite'); ?></label>
912
+ <div class="mec-col-4">
913
+ <input type="text" name="mec[currency][decimal_separator]" id="mec_currency_decimal_separator" value="<?php echo (isset($currency['decimal_separator']) ? $currency['decimal_separator'] : '.'); ?>" />
914
+ </div>
915
+ </div>
916
+ <div class="mec-form-row">
917
+ <div class="mec-col-12">
918
+ <label for="mec_currency_decimal_separator_status">
919
+ <input type="hidden" name="mec[currency][decimal_separator_status]" value="1" />
920
+ <input type="checkbox" name="mec[currency][decimal_separator_status]" id="mec_currency_decimal_separator_status" <?php echo ((isset($currency['decimal_separator_status']) and $currency['decimal_separator_status'] == '0') ? 'checked="checked"' : ''); ?> value="0" />
921
+ <?php _e('No decimal', 'modern-events-calendar-lite'); ?>
922
+ </label>
923
+ </div>
924
+ </div>
925
+ <?php endif; ?>
926
  </div>
927
  <?php endif; ?>
928
 
app/features/ix.php CHANGED
@@ -159,6 +159,7 @@ class MEC_feature_ix extends MEC_base
159
  'sync_g_import_auto'=>isset($this->ix['sync_g_import_auto']) ? $this->ix['sync_g_import_auto'] : 0,
160
  'sync_g_export'=>isset($this->ix['sync_g_export']) ? $this->ix['sync_g_export'] : 0,
161
  'sync_g_export_auto'=>isset($this->ix['sync_g_export_auto']) ? $this->ix['sync_g_export_auto'] : 0,
 
162
  'sync_f_import'=>isset($this->ix['sync_f_import']) ? $this->ix['sync_f_import'] : 0,
163
  'sync_meetup_import'=>isset($this->ix['sync_meetup_import']) ? $this->ix['sync_meetup_import'] : 0,
164
  'sync_meetup_import_auto'=>isset($this->ix['sync_meetup_import_auto']) ? $this->ix['sync_meetup_import_auto'] : 0,
@@ -3187,7 +3188,7 @@ class MEC_feature_ix extends MEC_base
3187
  {
3188
  // Current Action
3189
  $this->action = isset($_POST['mec-ix-action']) ? sanitize_text_field($_POST['mec-ix-action']) : (isset($_GET['mec-ix-action']) ? sanitize_text_field($_GET['mec-ix-action']) : '');
3190
-
3191
  $path = MEC::import('app.features.ix.export_g_calendar', true, true);
3192
 
3193
  ob_start();
@@ -4092,16 +4093,17 @@ class MEC_feature_ix extends MEC_base
4092
 
4093
  foreach($events as $event)
4094
  {
4095
- $data = $render->data($event->ID);
 
4096
 
4097
- $dates = $render->dates($event->ID, $data);
4098
  $date = $dates[0];
4099
 
4100
  $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
4101
  $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
4102
 
4103
  $event = array(
4104
- $event->ID,
4105
  html_entity_decode($data->title),
4106
  $date['start']['date'],
4107
  $data->time['start'],
@@ -4113,7 +4115,7 @@ class MEC_feature_ix extends MEC_base
4113
  (isset($organizer['name']) ? html_entity_decode($organizer['name']) : ''),
4114
  (isset($organizer['tel']) ? $organizer['tel'] : ''),
4115
  (isset($organizer['email']) ? $organizer['email'] : ''),
4116
- (isset($data->meta['mec_cost']) ? (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']) : '')
4117
  );
4118
 
4119
  fputcsv($output, $event);
@@ -4125,7 +4127,7 @@ class MEC_feature_ix extends MEC_base
4125
  case 'ms-excel':
4126
 
4127
  header('Content-Type: application/vnd.ms-excel; charset=utf-8');
4128
- header('Content-Disposition: attachment; filename="mec-events-'.md5(time().mt_rand(100, 999)).'.csv"');
4129
 
4130
  $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')), __('Address', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')), __('Organizer Tel', 'modern-events-calendar-lite'), __('Organizer Email', 'modern-events-calendar-lite'), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')));
4131
 
@@ -4135,16 +4137,17 @@ class MEC_feature_ix extends MEC_base
4135
 
4136
  foreach($events as $event)
4137
  {
4138
- $data = $render->data($event->ID);
 
4139
 
4140
- $dates = $render->dates($event->ID, $data);
4141
  $date = $dates[0];
4142
 
4143
  $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
4144
  $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
4145
 
4146
  $event = array(
4147
- $event->ID,
4148
  html_entity_decode($data->title),
4149
  $date['start']['date'],
4150
  $data->time['start'],
@@ -4156,7 +4159,7 @@ class MEC_feature_ix extends MEC_base
4156
  (isset($organizer['name']) ? html_entity_decode($organizer['name']) : ''),
4157
  (isset($organizer['tel']) ? $organizer['tel'] : ''),
4158
  (isset($organizer['email']) ? $organizer['email'] : ''),
4159
- (isset($data->meta['mec_cost']) ? (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost']) : $data->meta['mec_cost']) : '')
4160
  );
4161
 
4162
  fputcsv($output, $event, "\t");
@@ -4270,8 +4273,9 @@ class MEC_feature_ix extends MEC_base
4270
 
4271
  public function g_calendar_export_do()
4272
  {
4273
- $mec_event_ids = isset($_POST['mec-events']) ? $_POST['mec-events'] : array();
4274
-
 
4275
  $ix = $this->main->get_ix_options();
4276
 
4277
  $client_id = isset($ix['google_export_client_id']) ? $ix['google_export_client_id'] : NULL;
@@ -4371,6 +4375,23 @@ class MEC_feature_ix extends MEC_base
4371
 
4372
  $event->setOrganizer($g_organizer);
4373
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4374
 
4375
  try
4376
  {
159
  'sync_g_import_auto'=>isset($this->ix['sync_g_import_auto']) ? $this->ix['sync_g_import_auto'] : 0,
160
  'sync_g_export'=>isset($this->ix['sync_g_export']) ? $this->ix['sync_g_export'] : 0,
161
  'sync_g_export_auto'=>isset($this->ix['sync_g_export_auto']) ? $this->ix['sync_g_export_auto'] : 0,
162
+ 'sync_g_export_attendees'=>isset($this->ix['sync_g_export_attendees']) ? $this->ix['sync_g_export_attendees'] : 0,
163
  'sync_f_import'=>isset($this->ix['sync_f_import']) ? $this->ix['sync_f_import'] : 0,
164
  'sync_meetup_import'=>isset($this->ix['sync_meetup_import']) ? $this->ix['sync_meetup_import'] : 0,
165
  'sync_meetup_import_auto'=>isset($this->ix['sync_meetup_import_auto']) ? $this->ix['sync_meetup_import_auto'] : 0,
3188
  {
3189
  // Current Action
3190
  $this->action = isset($_POST['mec-ix-action']) ? sanitize_text_field($_POST['mec-ix-action']) : (isset($_GET['mec-ix-action']) ? sanitize_text_field($_GET['mec-ix-action']) : '');
3191
+
3192
  $path = MEC::import('app.features.ix.export_g_calendar', true, true);
3193
 
3194
  ob_start();
4093
 
4094
  foreach($events as $event)
4095
  {
4096
+ $event_id = $event->ID;
4097
+ $data = $render->data($event_id);
4098
 
4099
+ $dates = $render->dates($event_id, $data);
4100
  $date = $dates[0];
4101
 
4102
  $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
4103
  $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
4104
 
4105
  $event = array(
4106
+ $event_id,
4107
  html_entity_decode($data->title),
4108
  $date['start']['date'],
4109
  $data->time['start'],
4115
  (isset($organizer['name']) ? html_entity_decode($organizer['name']) : ''),
4116
  (isset($organizer['tel']) ? $organizer['tel'] : ''),
4117
  (isset($organizer['email']) ? $organizer['email'] : ''),
4118
+ (isset($data->meta['mec_cost']) ? (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost'], $event_id) : $data->meta['mec_cost']) : '')
4119
  );
4120
 
4121
  fputcsv($output, $event);
4127
  case 'ms-excel':
4128
 
4129
  header('Content-Type: application/vnd.ms-excel; charset=utf-8');
4130
+ header('Content-Disposition: attachment; filename="mec-events-'.md5(time().mt_rand(100, 999)).'.xls"');
4131
 
4132
  $columns = array(__('ID', 'modern-events-calendar-lite'), __('Title', 'modern-events-calendar-lite'), __('Start Date', 'modern-events-calendar-lite'), __('Start Time', 'modern-events-calendar-lite'), __('End Date', 'modern-events-calendar-lite'), __('End Time', 'modern-events-calendar-lite'), __('Link', 'modern-events-calendar-lite'), $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')), __('Address', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite')), __('Organizer Tel', 'modern-events-calendar-lite'), __('Organizer Email', 'modern-events-calendar-lite'), $this->main->m('event_cost', __('Event Cost', 'modern-events-calendar-lite')));
4133
 
4137
 
4138
  foreach($events as $event)
4139
  {
4140
+ $event_id = $event->ID;
4141
+ $data = $render->data($event_id);
4142
 
4143
+ $dates = $render->dates($event_id, $data);
4144
  $date = $dates[0];
4145
 
4146
  $location = isset($data->locations[$data->meta['mec_location_id']]) ? $data->locations[$data->meta['mec_location_id']] : array();
4147
  $organizer = isset($data->organizers[$data->meta['mec_organizer_id']]) ? $data->organizers[$data->meta['mec_organizer_id']] : array();
4148
 
4149
  $event = array(
4150
+ $event_id,
4151
  html_entity_decode($data->title),
4152
  $date['start']['date'],
4153
  $data->time['start'],
4159
  (isset($organizer['name']) ? html_entity_decode($organizer['name']) : ''),
4160
  (isset($organizer['tel']) ? $organizer['tel'] : ''),
4161
  (isset($organizer['email']) ? $organizer['email'] : ''),
4162
+ (isset($data->meta['mec_cost']) ? (is_numeric($data->meta['mec_cost']) ? $this->main->render_price($data->meta['mec_cost'], $event_id) : $data->meta['mec_cost']) : '')
4163
  );
4164
 
4165
  fputcsv($output, $event, "\t");
4273
 
4274
  public function g_calendar_export_do()
4275
  {
4276
+ $mec_event_ids = (isset($_POST['mec-events']) ? $_POST['mec-events'] : array());
4277
+ $export_attendees = (isset($_POST['export_attendees']) ? $_POST['export_attendees'] : 0);
4278
+
4279
  $ix = $this->main->get_ix_options();
4280
 
4281
  $client_id = isset($ix['google_export_client_id']) ? $ix['google_export_client_id'] : NULL;
4375
 
4376
  $event->setOrganizer($g_organizer);
4377
  }
4378
+
4379
+ // Set the attendees
4380
+ if($export_attendees)
4381
+ {
4382
+ $attendees = array();
4383
+ foreach($this->main->get_event_attendees($data->ID) as $att)
4384
+ {
4385
+ $attendee = new Google_Service_Calendar_EventAttendee();
4386
+ $attendee->setDisplayName($att['name']);
4387
+ $attendee->setEmail($att['email']);
4388
+ $attendee->setResponseStatus('accepted');
4389
+
4390
+ $attendees[] = $attendee;
4391
+ }
4392
+
4393
+ $event->setAttendees($attendees);
4394
+ }
4395
 
4396
  try
4397
  {
app/features/ix/export_g_calendar.php CHANGED
@@ -68,7 +68,14 @@ if(isset($ix_options['google_export_token']) && $ix_options['google_export_token
68
  </li>
69
  <?php endforeach; ?>
70
  </ul>
71
- <div class="mec-options-fields">
 
 
 
 
 
 
 
72
  <button id="mec_ix_google_export_do_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></button>
73
  </div>
74
  <p id="mec_ix_google_export_do_message" class="mec-col-6 mec-util-hidden"></p>
68
  </li>
69
  <?php endforeach; ?>
70
  </ul>
71
+ <div class="mec-options-fields" style="padding-top: 0;">
72
+ <h4><?php _e('Import Options', 'modern-events-calendar-lite'); ?></h4>
73
+ <div class="mec-form-row">
74
+ <label>
75
+ <input type="checkbox" name="export_attendees" value="1" />
76
+ <?php _e('Export Attendees', 'modern-events-calendar-lite'); ?>
77
+ </label>
78
+ </div>
79
  <button id="mec_ix_google_export_do_form_button" class="button button-primary mec-button-primary" type="submit"><?php _e('Add to Google Calendar', 'modern-events-calendar-lite'); ?></button>
80
  </div>
81
  <p id="mec_ix_google_export_do_message" class="mec-col-6 mec-util-hidden"></p>
app/features/ix/sync.php CHANGED
@@ -38,7 +38,18 @@ $ix = $this->main->get_ix_options();
38
  <?php _e('Auto Google Export', 'modern-events-calendar-lite'); ?>
39
  </label>
40
  <?php $cron = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php'; ?>
41
- <p id="mec_sync_g_export_cron" class="mec-col-12 <?php echo (isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1') ? '' : 'mec-util-hidden'; ?>"><strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't export your website events into Google Calendar.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?></p>
 
 
 
 
 
 
 
 
 
 
 
42
  </div>
43
 
44
  <?php if(false): // Disabled for Now ?>
38
  <?php _e('Auto Google Export', 'modern-events-calendar-lite'); ?>
39
  </label>
40
  <?php $cron = MEC_ABSPATH.'app'.DS.'crons'.DS.'g-export.php'; ?>
41
+ <div id="mec_sync_g_export_cron" class="mec-col-12 <?php echo (isset($ix['sync_g_export']) and $ix['sync_g_export'] == '1') ? '' : 'mec-util-hidden'; ?>" style="margin-top: 20px;">
42
+ <div class="mec-col-12">
43
+ <label>
44
+ <input type="hidden" name="ix[sync_g_export_attendees]" value="0" />
45
+ <input type="checkbox" name="ix[sync_g_export_attendees]" value="1" <?php echo (isset($ix['sync_g_export_attendees']) and $ix['sync_g_export_attendees'] == '1') ? 'checked="checked"' : ''; ?> />
46
+ <?php _e('Export Attendees', 'modern-events-calendar-lite'); ?>
47
+ </label>
48
+ </div>
49
+ <div class="mec-col-12">
50
+ <strong><?php _e('Important Note', 'modern-events-calendar-lite'); ?>: </strong><?php echo sprintf(__("Set a cronjob to call %s file atleast once per day otherwise it won't export your website events into Google Calendar.", 'modern-events-calendar-lite'), '<code>'.$cron.'</code>'); ?>
51
+ </div>
52
+ </div>
53
  </div>
54
 
55
  <?php if(false): // Disabled for Now ?>
app/features/mec.php CHANGED
@@ -172,10 +172,18 @@ class MEC_feature_mec extends MEC_base
172
  $this->factory->filter('map_meta_cap', array($this, 'map_meta_cap'), 10, 4);
173
 
174
  // Protected Content Shortcode
175
- if($this->getPRO())
 
 
 
 
176
  {
177
- $this->factory->shortcode('mec-only-booked-users', array($this, 'only_booked_users_content'));
 
178
  }
 
 
 
179
  }
180
 
181
  /* Activate License */
@@ -657,7 +665,7 @@ class MEC_feature_mec extends MEC_base
657
  elseif(in_array($start_date_type, array('yesterday', 'start_last_year', 'start_last_month', 'start_last_week'))) $mec['show_past_events'] = 1;
658
 
659
  // Set date filter type to dropdown because of skin
660
- if(!in_array($skin, array('list', 'grid', 'agenda', 'timeline')) and $mec['sf-options'][$skin]['month_filter']['type'] == 'date-range-picker') $mec['sf-options'][$skin]['month_filter']['type'] = 'dropdown';
661
 
662
  foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
663
  }
@@ -1332,10 +1340,10 @@ class MEC_feature_mec extends MEC_base
1332
  wp_send_json($r);
1333
  }
1334
 
1335
- public function display_total_booking_chart($start,$end,$type = 'daily' ,$chart = 'bar')
1336
  {
1337
- $start = !empty($start) ? $start : date('Y-m-d', strtotime('-15 days'));
1338
- $end = !empty($end) ? $end : date('Y-m-d');
1339
 
1340
  $periods = $this->main->get_date_periods($start, $end, $type);
1341
 
@@ -1354,6 +1362,7 @@ class MEC_feature_mec extends MEC_base
1354
  }
1355
 
1356
  $currency = $this->main->get_currency_sign();
 
1357
  echo '<canvas id="mec_total_bookings_chart" width="600" height="300"></canvas>';
1358
  echo '<script type="text/javascript">
1359
  jQuery(document).ready(function()
@@ -1524,4 +1533,88 @@ class MEC_feature_mec extends MEC_base
1524
  // Booked
1525
  return $content;
1526
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1527
  }
172
  $this->factory->filter('map_meta_cap', array($this, 'map_meta_cap'), 10, 4);
173
 
174
  // Protected Content Shortcode
175
+ if($this->getPRO()) $this->factory->shortcode('mec-only-booked-users', array($this, 'only_booked_users_content'));
176
+
177
+ // Assets Per Page
178
+ $this->factory->filter('mec_include_frontend_assets', array($this, 'assets_per_page'));
179
+ if(isset($this->settings['assets_per_page_status']) and $this->settings['assets_per_page_status'])
180
  {
181
+ $this->factory->action('add_meta_boxes', array($this, 'register_assets_per_page_meta_boxes'), 1);
182
+ $this->factory->action('save_post', array($this, 'assets_per_page_save_page'), 10, 2);
183
  }
184
+
185
+ // SEO Title
186
+ $this->factory->filter('pre_get_document_title', array($this, 'page_title'), 1000);
187
  }
188
 
189
  /* Activate License */
665
  elseif(in_array($start_date_type, array('yesterday', 'start_last_year', 'start_last_month', 'start_last_week'))) $mec['show_past_events'] = 1;
666
 
667
  // Set date filter type to dropdown because of skin
668
+ if(!in_array($skin, array('list', 'grid', 'agenda', 'timeline', 'map')) and $mec['sf-options'][$skin]['month_filter']['type'] == 'date-range-picker') $mec['sf-options'][$skin]['month_filter']['type'] = 'dropdown';
669
 
670
  foreach($mec as $key=>$value) update_post_meta($post_id, $key, $value);
671
  }
1340
  wp_send_json($r);
1341
  }
1342
 
1343
+ public function display_total_booking_chart($start, $end, $type = 'daily', $chart = 'bar')
1344
  {
1345
+ $start = (!empty($start) ? $start : date('Y-m-d', strtotime('-15 days')));
1346
+ $end = (!empty($end) ? $end : date('Y-m-d'));
1347
 
1348
  $periods = $this->main->get_date_periods($start, $end, $type);
1349
 
1362
  }
1363
 
1364
  $currency = $this->main->get_currency_sign();
1365
+
1366
  echo '<canvas id="mec_total_bookings_chart" width="600" height="300"></canvas>';
1367
  echo '<script type="text/javascript">
1368
  jQuery(document).ready(function()
1533
  // Booked
1534
  return $content;
1535
  }
1536
+
1537
+ public function register_assets_per_page_meta_boxes()
1538
+ {
1539
+ add_meta_box('mec_metabox_app', __('Include MEC Assets', 'modern-events-calendar-lite'), array($this, 'meta_box_assets_per_page'), 'page', 'side', 'low');
1540
+ }
1541
+
1542
+ public function meta_box_assets_per_page($post)
1543
+ {
1544
+ $mec_include_assets = get_post_meta($post->ID, 'mec_include_assets', true);
1545
+ ?>
1546
+ <div class="mec-assets-per-page-metabox">
1547
+ <label for="mec_include_assets">
1548
+ <input type="hidden" name="mec_include_assets" value="0" />
1549
+ <input type="checkbox" name="mec_include_assets" id="mec_include_assets" <?php echo ($mec_include_assets ? 'checked="checked"' : ''); ?> value="1" />
1550
+ <?php _e('Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)', 'modern-events-calendar-lite'); ?>
1551
+ </label>
1552
+ </div>
1553
+ <?php
1554
+ }
1555
+
1556
+ public function assets_per_page_save_page($post_id, $post)
1557
+ {
1558
+ // If this is an autosave, our form has not been submitted, so we don't want to do anything.
1559
+ if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return;
1560
+
1561
+ // Not a Page
1562
+ if($post->post_type != 'page') return;
1563
+
1564
+ if(isset($_POST['mec_include_assets']))
1565
+ {
1566
+ $mec_include_assets = sanitize_text_field($_POST['mec_include_assets']);
1567
+ update_post_meta($post_id, 'mec_include_assets', $mec_include_assets);
1568
+ }
1569
+ }
1570
+
1571
+ public function assets_per_page($status)
1572
+ {
1573
+ // Turned Off
1574
+ if(!isset($this->settings['assets_per_page_status']) or (isset($this->settings['assets_per_page_status']) and !$this->settings['assets_per_page_status'])) return $status;
1575
+ // Turned On
1576
+ else
1577
+ {
1578
+ global $post;
1579
+
1580
+ $status_per_page = 1;
1581
+ if($post->post_type === 'page')
1582
+ {
1583
+ $status_per_page = get_post_meta($post->ID, 'mec_include_assets', true);
1584
+ if(trim($status_per_page) == '') $status_per_page = 0;
1585
+ }
1586
+
1587
+ $status = (boolean) $status_per_page;
1588
+ }
1589
+
1590
+ return $status;
1591
+ }
1592
+
1593
+ public function page_title($title)
1594
+ {
1595
+ // Occurrences Status
1596
+ $occurrences_status = (isset($this->settings['per_occurrences_status']) and $this->settings['per_occurrences_status'] and $this->getPRO());
1597
+
1598
+ if(is_singular($this->main->get_main_post_type()) and $occurrences_status)
1599
+ {
1600
+ global $post;
1601
+
1602
+ $timestamp = ((isset($_GET['time']) and $_GET['time']) ? $_GET['time'] : NULL);
1603
+
1604
+ $occurrence = (isset($_GET['occurrence']) ? $_GET['occurrence'] : NULL);
1605
+ if(!$timestamp and $occurrence) $timestamp = strtotime($occurrence) + (int) get_post_meta($post->ID, 'mec_start_day_seconds', true);
1606
+
1607
+ if(!$timestamp)
1608
+ {
1609
+ $render = $this->getRender();
1610
+ $dates = $render->dates($post->ID, NULL, 1, date('Y-m-d', strtotime('Yesterday')));
1611
+
1612
+ if(isset($dates[0]) and isset($dates[0]['start']) and isset($dates[0]['start']['timestamp'])) $timestamp = $dates[0]['start']['timestamp'];
1613
+ }
1614
+
1615
+ $title = MEC_feature_occurrences::param($post->ID, $timestamp, 'title', $title);
1616
+ }
1617
+
1618
+ return $title;
1619
+ }
1620
  }
app/features/mec/booking.php CHANGED
@@ -273,7 +273,7 @@ $gateways_options = $this->main->get_gateways_options();
273
  <div class="mec-form-row">
274
  <label class="mec-col-3" for="mec_settings_booking_last_few_tickets_percentage"><?php _e('Percentage', 'modern-events-calendar-lite'); ?></label>
275
  <div class="mec-col-9">
276
- <input type="number" id="mec_settings_booking_last_few_tickets_percentage" name="mec[settings][booking_last_few_tickets_percentage]" value="<?php echo ((isset($settings['booking_last_few_tickets_percentage']) and trim($settings['booking_last_few_tickets_percentage']) != '') ? $settings['booking_last_few_tickets_percentage'] : '15'); ?>" placeholder="<?php esc_attr_e('Default is 15', 'modern-events-calendar-lite'); ?>" />
277
  <span class="mec-tooltip">
278
  <div class="box left">
279
  <h5 class="title"><?php _e('Last Few Tickets Percentage', 'modern-events-calendar-lite'); ?></h5>
273
  <div class="mec-form-row">
274
  <label class="mec-col-3" for="mec_settings_booking_last_few_tickets_percentage"><?php _e('Percentage', 'modern-events-calendar-lite'); ?></label>
275
  <div class="mec-col-9">
276
+ <input type="number" id="mec_settings_booking_last_few_tickets_percentage" name="mec[settings][booking_last_few_tickets_percentage]" value="<?php echo ((isset($settings['booking_last_few_tickets_percentage']) and trim($settings['booking_last_few_tickets_percentage']) != '') ? max($settings['booking_last_few_tickets_percentage'], 1) : '15'); ?>" placeholder="<?php esc_attr_e('Default is 15', 'modern-events-calendar-lite'); ?>" min="1" max="100" step="1" />
277
  <span class="mec-tooltip">
278
  <div class="box left">
279
  <h5 class="title"><?php _e('Last Few Tickets Percentage', 'modern-events-calendar-lite'); ?></h5>
app/features/mec/meta_boxes/search_form.php CHANGED
@@ -622,6 +622,14 @@ $sf_options = get_post_meta($post->ID, 'sf-options', true);
622
  <option value="minmax" <?php if(isset($sf_options_map['event_cost']) and isset($sf_options_map['event_cost']['type']) and $sf_options_map['event_cost']['type'] == 'minmax') echo 'selected="selected"'; ?>><?php _e('Min / Max Inputs', 'modern-events-calendar-lite'); ?></option>
623
  </select>
624
  </div>
 
 
 
 
 
 
 
 
625
  <div class="mec-form-row">
626
  <label class="mec-col-12" for="mec_sf_map_text_search"><?php _e('Text Search', 'modern-events-calendar-lite'); ?></label>
627
  <select class="mec-col-12" name="mec[sf-options][map][text_search][type]" id="mec_sf_map_text_search">
622
  <option value="minmax" <?php if(isset($sf_options_map['event_cost']) and isset($sf_options_map['event_cost']['type']) and $sf_options_map['event_cost']['type'] == 'minmax') echo 'selected="selected"'; ?>><?php _e('Min / Max Inputs', 'modern-events-calendar-lite'); ?></option>
623
  </select>
624
  </div>
625
+ <div class="mec-form-row">
626
+ <label class="mec-col-12" for="mec_sf_map_month_filter"><?php _e('Date Filter', 'modern-events-calendar-lite'); ?></label>
627
+ <select class="mec-col-12" name="mec[sf-options][map][month_filter][type]" id="mec_sf_map_month_filter">
628
+ <option value="0" <?php if(isset($sf_options_map['month_filter']) and isset($sf_options_map['month_filter']['type']) and $sf_options_map['month_filter']['type'] == '0') echo 'selected="selected"'; ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
629
+ <option value="dropdown" <?php if(isset($sf_options_map['month_filter']) and isset($sf_options_map['month_filter']['type']) and $sf_options_map['month_filter']['type'] == 'dropdown') echo 'selected="selected"'; ?>><?php _e('Year & Month Dropdown', 'modern-events-calendar-lite'); ?></option>
630
+ <option value="date-range-picker" <?php if(isset($sf_options_map['month_filter']) and isset($sf_options_map['month_filter']['type']) and $sf_options_map['month_filter']['type'] == 'date-range-picker') echo 'selected="selected"'; ?>><?php _e('Date Picker', 'modern-events-calendar-lite'); ?></option>
631
+ </select>
632
+ </div>
633
  <div class="mec-form-row">
634
  <label class="mec-col-12" for="mec_sf_map_text_search"><?php _e('Text Search', 'modern-events-calendar-lite'); ?></label>
635
  <select class="mec-col-12" name="mec[sf-options][map][text_search][type]" id="mec_sf_map_text_search">
app/features/mec/notifications.php CHANGED
@@ -143,6 +143,11 @@ $settings = $this->main->get_settings();
143
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
144
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
145
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
146
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
147
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
148
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
@@ -288,6 +293,11 @@ $settings = $this->main->get_settings();
288
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
289
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
290
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
291
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
292
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
293
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
@@ -448,6 +458,11 @@ $settings = $this->main->get_settings();
448
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
449
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
450
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
451
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
452
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
453
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
@@ -623,6 +638,11 @@ $settings = $this->main->get_settings();
623
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
624
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
625
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
626
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
627
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
628
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
@@ -794,6 +814,11 @@ $settings = $this->main->get_settings();
794
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
795
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
796
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
797
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
798
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
799
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -946,6 +971,11 @@ $settings = $this->main->get_settings();
946
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
947
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
948
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
949
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
950
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
951
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -1097,6 +1127,11 @@ $settings = $this->main->get_settings();
1097
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
1098
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
1099
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
1100
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
1101
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
1102
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -1249,6 +1284,11 @@ $settings = $this->main->get_settings();
1249
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
1250
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
1251
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
1252
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
1253
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
1254
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
@@ -1392,6 +1432,11 @@ $settings = $this->main->get_settings();
1392
  <p class="description"><?php _e('You can use the following placeholders', 'modern-events-calendar-lite'); ?></p>
1393
  <ul>
1394
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
1395
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
1396
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
1397
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
@@ -1503,6 +1548,11 @@ $settings = $this->main->get_settings();
1503
  <p class="description"><?php _e('You can use the following placeholders', 'modern-events-calendar-lite'); ?></p>
1504
  <ul>
1505
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
1506
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
1507
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
1508
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
143
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
144
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
145
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
146
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
147
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
148
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
149
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
150
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
151
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
152
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
153
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
293
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
294
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
295
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
296
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
297
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
298
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
299
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
300
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
301
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
302
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
303
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
458
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
459
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
460
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
461
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
462
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
463
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
464
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
465
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
466
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
467
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
468
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
638
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
639
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
640
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
641
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
642
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
643
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
644
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
645
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
646
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
647
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
648
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
814
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
815
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
816
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
817
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
818
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
819
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
820
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
821
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
822
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
823
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
824
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
971
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
972
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
973
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
974
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
975
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
976
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
977
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
978
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
979
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
980
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
981
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
1127
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
1128
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
1129
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
1130
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
1131
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
1132
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
1133
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
1134
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
1135
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
1136
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
1137
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
1284
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
1285
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
1286
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
1287
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
1288
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
1289
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
1290
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
1291
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
1292
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
1293
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
1294
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
1432
  <p class="description"><?php _e('You can use the following placeholders', 'modern-events-calendar-lite'); ?></p>
1433
  <ul>
1434
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
1435
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
1436
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
1437
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
1438
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
1439
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
1440
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
1441
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
1442
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
1548
  <p class="description"><?php _e('You can use the following placeholders', 'modern-events-calendar-lite'); ?></p>
1549
  <ul>
1550
  <li><span>%%event_title%%</span>: <?php _e('Title of event', 'modern-events-calendar-lite'); ?></li>
1551
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
1552
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
1553
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
1554
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
1555
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
1556
  <li><span>%%event_link%%</span>: <?php _e('Link of event', 'modern-events-calendar-lite'); ?></li>
1557
  <li><span>%%event_start_date%%</span>: <?php _e('Event Start Date', 'modern-events-calendar-lite'); ?></li>
1558
  <li><span>%%event_end_date%%</span>: <?php _e('Event End Date', 'modern-events-calendar-lite'); ?></li>
app/features/mec/settings.php CHANGED
@@ -550,7 +550,7 @@ $shortcodes = get_posts(array(
550
  <div class="mec-form-row">
551
  <label class="mec-col-3" for="mec_settings_currency"><?php _e('Currency', 'modern-events-calendar-lite'); ?></label>
552
  <div class="mec-col-9">
553
- <select name="mec[settings][currency]" id="mec_settings_currency" onchange="jQuery('#mec_settings_currency_symptom_container .mec-settings-currency-symptom-prev').html(this.value);">
554
  <?php foreach($currencies as $currency=>$currency_name): ?>
555
  <option value="<?php echo $currency; ?>" <?php echo ((isset($settings['currency']) and $settings['currency'] == $currency) ? 'selected="selected"' : ''); ?>><?php echo $currency_name; ?></option>
556
  <?php endforeach; ?>
@@ -594,7 +594,7 @@ $shortcodes = get_posts(array(
594
  </div>
595
  </div>
596
  <div class="mec-form-row">
597
- <div class="mec-col-2">
598
  <label for="mec_settings_decimal_separator_status">
599
  <input type="hidden" name="mec[settings][decimal_separator_status]" value="1" />
600
  <input type="checkbox" name="mec[settings][decimal_separator_status]" id="mec_settings_decimal_separator_status" <?php echo ((isset($settings['decimal_separator_status']) and $settings['decimal_separator_status'] == '0') ? 'checked="checked"' : ''); ?> value="0" />
@@ -604,6 +604,19 @@ $shortcodes = get_posts(array(
604
  </div>
605
  </div>
606
 
 
 
 
 
 
 
 
 
 
 
 
 
 
607
  <div id="recaptcha_option" class="mec-options-fields">
608
  <h4 class="mec-form-subtitle"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></h4>
609
  <div class="mec-form-row">
@@ -768,6 +781,22 @@ $shortcodes = get_posts(array(
768
  </span>
769
  </div>
770
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
771
  <div class="mec-form-row">
772
  <label>
773
  <input type="hidden" name="mec[settings][fes_guest_status]" value="0" />
@@ -860,9 +889,25 @@ $shortcodes = get_posts(array(
860
  <div class="mec-form-row">
861
  <label>
862
  <input type="hidden" name="mec[settings][fes_section_organizer]" value="0" />
863
- <input value="1" type="checkbox" name="mec[settings][fes_section_organizer]" <?php if(!isset($settings['fes_section_organizer']) or (isset($settings['fes_section_organizer']) and $settings['fes_section_organizer'])) echo 'checked="checked"'; ?> /> <?php _e('Event Organizer', 'modern-events-calendar-lite'); ?>
864
  </label>
865
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
866
  <div class="mec-form-row">
867
  <label>
868
  <input type="hidden" name="mec[settings][fes_section_speaker]" value="0" />
550
  <div class="mec-form-row">
551
  <label class="mec-col-3" for="mec_settings_currency"><?php _e('Currency', 'modern-events-calendar-lite'); ?></label>
552
  <div class="mec-col-9">
553
+ <select name="mec[settings][currency]" id="mec_settings_currency">
554
  <?php foreach($currencies as $currency=>$currency_name): ?>
555
  <option value="<?php echo $currency; ?>" <?php echo ((isset($settings['currency']) and $settings['currency'] == $currency) ? 'selected="selected"' : ''); ?>><?php echo $currency_name; ?></option>
556
  <?php endforeach; ?>
594
  </div>
595
  </div>
596
  <div class="mec-form-row">
597
+ <div class="mec-col-12">
598
  <label for="mec_settings_decimal_separator_status">
599
  <input type="hidden" name="mec[settings][decimal_separator_status]" value="1" />
600
  <input type="checkbox" name="mec[settings][decimal_separator_status]" id="mec_settings_decimal_separator_status" <?php echo ((isset($settings['decimal_separator_status']) and $settings['decimal_separator_status'] == '0') ? 'checked="checked"' : ''); ?> value="0" />
604
  </div>
605
  </div>
606
 
607
+ <div id="assets_per_page_option" class="mec-options-fields">
608
+ <h4 class="mec-form-subtitle"><?php _e('Assets Per Page', 'modern-events-calendar-lite'); ?></h4>
609
+ <div class="mec-form-row">
610
+ <label>
611
+ <input type="hidden" name="mec[settings][assets_per_page_status]" value="0" />
612
+ <input onchange="jQuery('#mec_assets_per_page_container_toggle').toggle();" value="1" type="checkbox" name="mec[settings][assets_per_page_status]" <?php if(isset($settings['assets_per_page_status']) and $settings['assets_per_page_status']) echo 'checked="checked"'; ?> /> <?php _e('Enable Assets Per Page', 'modern-events-calendar-lite'); ?>
613
+ </label>
614
+ </div>
615
+ <div id="mec_assets_per_page_container_toggle" class="<?php if((isset($settings['assets_per_page_status']) and !$settings['assets_per_page_status']) or !isset($settings['assets_per_page_status'])) echo 'mec-util-hidden'; ?>">
616
+ <p class="notice-yellow"><?php echo esc_html__("By enabling this option MEC won't include any JavaScript or CSS files in frontend of your website unless you enable the assets inclusion in page options.", 'modern-events-calendar-lite'); ?></p>
617
+ </div>
618
+ </div>
619
+
620
  <div id="recaptcha_option" class="mec-options-fields">
621
  <h4 class="mec-form-subtitle"><?php _e('Google Recaptcha Options', 'modern-events-calendar-lite'); ?></h4>
622
  <div class="mec-form-row">
781
  </span>
782
  </div>
783
  </div>
784
+ <div class="mec-form-row">
785
+ <label class="mec-col-3" for="mec_settings_booking_private_description"><?php _e('Private Description', 'modern-events-calendar-lite'); ?></label>
786
+ <div class="mec-col-9">
787
+ <select id="mec_settings_booking_private_description" name="mec[settings][booking_private_description]">
788
+ <option value="1" <?php echo ((!isset($settings['booking_private_description']) or (isset($settings['booking_private_description']) and $settings['booking_private_description'] == '1')) ? 'selected="selected"' : ''); ?>><?php _e('Enabled', 'modern-events-calendar-lite'); ?></option>
789
+ <option value="0" <?php echo ((isset($settings['booking_private_description']) and $settings['booking_private_description'] == '0') ? 'selected="selected"' : ''); ?>><?php _e('Disabled', 'modern-events-calendar-lite'); ?></option>
790
+ </select>
791
+ <span class="mec-tooltip">
792
+ <div class="box left">
793
+ <h5 class="title"><?php _e('Private Description of Ticket', 'modern-events-calendar-lite'); ?></h5>
794
+ <div class="content"><p><?php esc_attr_e("You can disable the private description if you like.", 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/booking/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
795
+ </div>
796
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
797
+ </span>
798
+ </div>
799
+ </div>
800
  <div class="mec-form-row">
801
  <label>
802
  <input type="hidden" name="mec[settings][fes_guest_status]" value="0" />
889
  <div class="mec-form-row">
890
  <label>
891
  <input type="hidden" name="mec[settings][fes_section_organizer]" value="0" />
892
+ <input value="1" type="checkbox" name="mec[settings][fes_section_organizer]" <?php if(!isset($settings['fes_section_organizer']) or (isset($settings['fes_section_organizer']) and $settings['fes_section_organizer'])) echo 'checked="checked"'; ?> onchange="jQuery('#mec_settings_fes_use_all_organizers_wrapper').toggle();" /> <?php _e('Event Organizer', 'modern-events-calendar-lite'); ?>
893
  </label>
894
  </div>
895
+ <div class="mec-form-row <?php echo ((!isset($settings['fes_section_organizer']) or (isset($settings['fes_section_organizer']) and $settings['fes_section_organizer'])) ? '' : 'mec-util-hidden'); ?>" id="mec_settings_fes_use_all_organizers_wrapper">
896
+ <label class="mec-col-3" for="mec_settings_fes_use_all_organizers"><?php _e('Ability to Use All Organizers', 'modern-events-calendar-lite'); ?></label>
897
+ <div class="mec-col-9">
898
+ <select id="mec_settings_fes_use_all_organizers" name="mec[settings][fes_use_all_organizers]">
899
+ <option <?php echo ((isset($settings['fes_use_all_organizers']) and $settings['fes_use_all_organizers'] == '1') ? 'selected="selected"' : ''); ?> value="1"><?php esc_html_e('Yes', 'modern-events-calendar-lite'); ?></option>
900
+ <option <?php echo ((isset($settings['fes_use_all_organizers']) and $settings['fes_use_all_organizers'] == '0') ? 'selected="selected"' : ''); ?> value="0"><?php esc_html_e('No', 'modern-events-calendar-lite'); ?></option>
901
+ </select>
902
+ <span class="mec-tooltip">
903
+ <div class="box left">
904
+ <h5 class="title"><?php _e('Use All Organizers', 'modern-events-calendar-lite'); ?></h5>
905
+ <div class="content"><p><?php esc_attr_e("Users are able to see list of ogranizers and use them for their event. Set it to \"No\" if you want to disable this functionality and \"Other Organizers\" feature.", 'modern-events-calendar-lite'); ?></p></div>
906
+ </div>
907
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
908
+ </span>
909
+ </div>
910
+ </div>
911
  <div class="mec-form-row">
912
  <label>
913
  <input type="hidden" name="mec[settings][fes_section_speaker]" value="0" />
app/features/mec/single.php CHANGED
@@ -195,6 +195,15 @@ $event_fields = $this->main->get_event_fields();
195
  </span>
196
  </div>
197
  </div>
 
 
 
 
 
 
 
 
 
198
 
199
  </div>
200
 
195
  </span>
196
  </div>
197
  </div>
198
+ <div class="mec-form-row">
199
+ <div class="mec-col-12">
200
+ <label for="mec_settings_currency_per_event">
201
+ <input type="hidden" name="mec[settings][currency_per_event]" value="0" />
202
+ <input type="checkbox" name="mec[settings][currency_per_event]" id="mec_settings_currency_per_event" <?php echo ((isset($settings['currency_per_event']) and $settings['currency_per_event'] == '1') ? 'checked="checked"' : ''); ?> value="1" />
203
+ <?php _e('Change Currency Per Event', 'modern-events-calendar-lite'); ?>
204
+ </label>
205
+ </div>
206
+ </div>
207
 
208
  </div>
209
 
app/features/notifications.php CHANGED
@@ -109,6 +109,11 @@ class MEC_feature_notifications extends MEC_base
109
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
110
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
111
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
 
 
 
 
 
112
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
113
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
114
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
109
  <li><span>%%blog_url%%</span>: <?php _e('Your website URL', 'modern-events-calendar-lite'); ?></li>
110
  <li><span>%%blog_description%%</span>: <?php _e('Your website description', 'modern-events-calendar-lite'); ?></li>
111
  <li><span>%%event_title%%</span>: <?php _e('Event title', 'modern-events-calendar-lite'); ?></li>
112
+ <li><span>%%event_description%%</span>: <?php _e('Event Description', 'modern-events-calendar-lite'); ?></li>
113
+ <li><span>%%event_tags%%</span>: <?php _e('Event Tags', 'modern-events-calendar-lite'); ?></li>
114
+ <li><span>%%event_labels%%</span>: <?php _e('Event Labels', 'modern-events-calendar-lite'); ?></li>
115
+ <li><span>%%event_categories%%</span>: <?php _e('Event Categories', 'modern-events-calendar-lite'); ?></li>
116
+ <li><span>%%event_cost%%</span>: <?php _e('Event Cost', 'modern-events-calendar-lite'); ?></li>
117
  <li><span>%%event_link%%</span>: <?php _e('Event link', 'modern-events-calendar-lite'); ?></li>
118
  <li><span>%%event_speaker_name%%</span>: <?php _e('Speaker name of booked event', 'modern-events-calendar-lite'); ?></li>
119
  <li><span>%%event_organizer_name%%</span>: <?php _e('Organizer name of booked event', 'modern-events-calendar-lite'); ?></li>
app/features/occurrences.php CHANGED
@@ -389,6 +389,10 @@ class MEC_feature_occurrences extends MEC_base
389
  <div class="mec-col-3"><label for="mec_occurrences_<?php echo $occurrence_id; ?>_bookings_limit"><?php esc_attr_e('Total Booking Limit', 'modern-events-calendar-lite'); ?></label></div>
390
  <div class="mec-col-9"><input id="mec_occurrences_<?php echo $occurrence_id; ?>_bookings_limit" name="mec[occurrences][<?php echo $occurrence_id; ?>][bookings_limit]" type="number" value="<?php echo (isset($params['bookings_limit']) ? esc_attr($params['bookings_limit']) : ''); ?>"></div>
391
  </div>
 
 
 
 
392
  <div class="mec-form-row">
393
  <div class="mec-col-12">
394
  <div class="mec-form-row">
389
  <div class="mec-col-3"><label for="mec_occurrences_<?php echo $occurrence_id; ?>_bookings_limit"><?php esc_attr_e('Total Booking Limit', 'modern-events-calendar-lite'); ?></label></div>
390
  <div class="mec-col-9"><input id="mec_occurrences_<?php echo $occurrence_id; ?>_bookings_limit" name="mec[occurrences][<?php echo $occurrence_id; ?>][bookings_limit]" type="number" value="<?php echo (isset($params['bookings_limit']) ? esc_attr($params['bookings_limit']) : ''); ?>"></div>
391
  </div>
392
+ <div class="mec-form-row">
393
+ <div class="mec-col-3"><label for="mec_occurrences_<?php echo $occurrence_id; ?>_title"><?php esc_attr_e('Page Title', 'modern-events-calendar-lite'); ?></label></div>
394
+ <div class="mec-col-9"><input id="mec_occurrences_<?php echo $occurrence_id; ?>_title" name="mec[occurrences][<?php echo $occurrence_id; ?>][title]" type="text" value="<?php echo (isset($params['title']) ? esc_attr($params['title']) : ''); ?>"></div>
395
+ </div>
396
  <div class="mec-form-row">
397
  <div class="mec-col-12">
398
  <div class="mec-form-row">
app/features/organizers.php CHANGED
@@ -256,6 +256,13 @@ class MEC_feature_organizers extends MEC_base
256
  $organizer_ids = array_unique($organizer_ids);
257
 
258
  $additional_organizers_status = (!isset($this->settings['additional_organizers']) or (isset($this->settings['additional_organizers']) and $this->settings['additional_organizers'])) ? true : false;
 
 
 
 
 
 
 
259
  ?>
260
  <div class="mec-meta-box-fields mec-event-tab-content" id="mec-organizer">
261
  <h4><?php echo sprintf(__('Event Main %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))); ?></h4>
256
  $organizer_ids = array_unique($organizer_ids);
257
 
258
  $additional_organizers_status = (!isset($this->settings['additional_organizers']) or (isset($this->settings['additional_organizers']) and $this->settings['additional_organizers'])) ? true : false;
259
+
260
+ $use_all_organizers = ((!is_admin() and isset($this->settings['fes_use_all_organizers']) and !$this->settings['fes_use_all_organizers']) ? false : true);
261
+ if(!$use_all_organizers)
262
+ {
263
+ $additional_organizers_status = false;
264
+ $organizers = array();
265
+ }
266
  ?>
267
  <div class="mec-meta-box-fields mec-event-tab-content" id="mec-organizer">
268
  <h4><?php echo sprintf(__('Event Main %s', 'modern-events-calendar-lite'), $this->main->m('taxonomy_organizer', __('Organizer', 'modern-events-calendar-lite'))); ?></h4>
app/libraries/book.php CHANGED
@@ -1050,7 +1050,7 @@ class MEC_book extends MEC_base
1050
  if($type === 'price_label' and !is_numeric($price))
1051
  {
1052
  $numeric = preg_replace("/[^0-9.]/", '', $price);
1053
- if(is_numeric($numeric)) $price = $this->main->render_price(($numeric - (($numeric * $role_discount) / 100)));
1054
  }
1055
  else
1056
  {
@@ -1247,6 +1247,29 @@ class MEC_book extends MEC_base
1247
  $ticket_id = $attendee['id'];
1248
  $ticket_price = (isset($tickets[$ticket_id]) ? $tickets[$ticket_id]['price'] : 0);
1249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1250
  $variation_price = 0;
1251
  if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
1252
  {
1050
  if($type === 'price_label' and !is_numeric($price))
1051
  {
1052
  $numeric = preg_replace("/[^0-9.]/", '', $price);
1053
+ if(is_numeric($numeric)) $price = $this->main->render_price(($numeric - (($numeric * $role_discount) / 100)), $event_id);
1054
  }
1055
  else
1056
  {
1247
  $ticket_id = $attendee['id'];
1248
  $ticket_price = (isset($tickets[$ticket_id]) ? $tickets[$ticket_id]['price'] : 0);
1249
 
1250
+ // Price Per Date
1251
+ if(isset($tickets[$ticket_id]['dates']) and is_array($tickets[$ticket_id]['dates']) and count($tickets[$ticket_id]['dates']))
1252
+ {
1253
+ $book_time = strtotime(get_post_meta($booking_id, 'mec_booking_time', true));
1254
+ if($book_time)
1255
+ {
1256
+ $pdates = $tickets[$ticket_id]['dates'];
1257
+ foreach($pdates as $pdate)
1258
+ {
1259
+ if(!isset($pdate['start']) or !isset($pdate['end'])) continue;
1260
+
1261
+ $t_start = strtotime($pdate['start']);
1262
+ $t_end = strtotime($pdate['end']);
1263
+
1264
+ if($book_time >= $t_start and $book_time <= $t_end and isset($pdate['price']))
1265
+ {
1266
+ $ticket_price = $pdate['price'];
1267
+ break;
1268
+ }
1269
+ }
1270
+ }
1271
+ }
1272
+
1273
  $variation_price = 0;
1274
  if(isset($attendee['variations']) and is_array($attendee['variations']) and count($attendee['variations']))
1275
  {
app/libraries/factory.php CHANGED
@@ -67,7 +67,7 @@ class MEC_factory extends MEC_base
67
  $this->action('parse_query', array($this->parser, 'WPQ_parse'), 99);
68
 
69
  // Add custom styles to header
70
- $this->action('wp_head', array($this->main, 'include_styles'), 9999);
71
 
72
  // MEC iCal export
73
  $this->action('init', array($this->main, 'ical'), 9999);
@@ -325,100 +325,129 @@ class MEC_factory extends MEC_base
325
  */
326
  public function load_frontend_assets()
327
  {
328
- // Current locale
329
- $locale = $this->main->get_current_language();
 
 
330
 
331
- // Styling
332
- $styling = $this->main->get_styling();
333
 
334
- // Google Fonts Status
335
- $gfonts_status = (isset($styling['disable_gfonts']) and $styling['disable_gfonts']) ? false : true;
336
 
337
- // Include WordPress jQuery
338
- wp_enqueue_script('jquery');
339
 
340
- // Include jQuery date picker
341
- if(!defined("SHOW_CT_BUILDER")) wp_enqueue_script('jquery-ui-datepicker');
342
 
343
- // Load Isotope
344
- if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
345
 
346
- include_once(ABSPATH.'wp-admin/includes/plugin.php');
347
- if(is_plugin_active('elementor/elementor.php' ) && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
348
 
349
- wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'), array(), $this->main->get_version(), true);
350
- wp_enqueue_script('mec-featherlight-script', $this->main->asset('packages/featherlight/featherlight.js'), array(), $this->main->get_version(), true);
351
 
352
- // Include Select2
353
- wp_enqueue_script('mec-select2-script', $this->main->asset('packages/select2/select2.full.min.js'), array(), $this->main->get_version(), true);
354
- wp_enqueue_style('mec-select2-style', $this->main->asset('packages/select2/select2.min.css'), array(), $this->main->get_version());
355
 
356
- // Include MEC frontend script files
357
- wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'), array(), $this->main->get_version());
358
- wp_enqueue_script('mec-tooltip-script', $this->main->asset('packages/tooltip/tooltip.js'), array(), $this->main->get_version(), true);
359
 
360
- wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'), array(), $this->main->get_version());
361
 
362
- // Include Lity Lightbox
363
- wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'), array(), $this->main->get_version(), true);
364
 
365
- // Include color brightness
366
- wp_enqueue_script('mec-colorbrightness-script', $this->main->asset('packages/colorbrightness/colorbrightness.min.js'), array(), $this->main->get_version(), true);
367
 
368
- // Include MEC frontend JS libraries
369
- wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'), array(), $this->main->get_version(), true);
370
 
371
- if(did_action('elementor/loaded')) $elementor_edit_mode = (\Elementor\Plugin::$instance->editor->is_edit_mode() == false) ? 'no' : 'yes';
372
- else $elementor_edit_mode = 'no';
373
 
374
- // Settings
375
- $settings = $this->main->get_settings();
376
- $grecaptcha_key = isset($settings['google_recaptcha_sitekey']) ? trim($settings['google_recaptcha_sitekey']) : '';
377
-
378
- // Localize Some Strings
379
- $mecdata = apply_filters('mec_locolize_data', array(
380
- 'day'=>__('day', 'modern-events-calendar-lite'),
381
- 'days'=>__('days', 'modern-events-calendar-lite'),
382
- 'hour'=>__('hour', 'modern-events-calendar-lite'),
383
- 'hours'=>__('hours', 'modern-events-calendar-lite'),
384
- 'minute'=>__('minute', 'modern-events-calendar-lite'),
385
- 'minutes'=>__('minutes', 'modern-events-calendar-lite'),
386
- 'second'=>__('second', 'modern-events-calendar-lite'),
387
- 'seconds'=>__('seconds', 'modern-events-calendar-lite'),
388
- 'elementor_edit_mode'=>$elementor_edit_mode,
389
- 'recapcha_key'=>$grecaptcha_key,
390
- 'ajax_url' => admin_url('admin-ajax.php'),
391
- 'fes_nonce' => wp_create_nonce('mec_fes_nonce'),
392
- 'current_year' => date('Y', current_time('timestamp', 0)),
393
- 'current_month' => date('m', current_time('timestamp', 0)),
394
- 'datepicker_format' => (isset($settings['datepicker_format']) and trim($settings['datepicker_format'])) ? trim($settings['datepicker_format']) : 'yy-mm-dd',
395
- ));
396
 
397
- // Localize Some Strings
398
- wp_localize_script('mec-frontend-script', 'mecdata', $mecdata);
399
 
400
- // Include Google Recaptcha Javascript API
401
- $grecaptcha_include = apply_filters('mec_grecaptcha_include', true);
402
- if($grecaptcha_include) wp_enqueue_script('recaptcha', '//www.google.com/recaptcha/api.js?hl='.str_replace('_', '-', $locale), array(), $this->main->get_version(), true);
403
 
404
- // Include MEC frontend CSS files
405
- wp_enqueue_style('mec-font-icons', $this->main->asset('css/iconfonts.css'));
406
- wp_enqueue_style('mec-frontend-style', $this->main->asset('css/frontend.min.css'), array(), $this->main->get_version());
407
- wp_enqueue_style('mec-tooltip-style', $this->main->asset('packages/tooltip/tooltip.css'));
408
- wp_enqueue_style('mec-tooltip-shadow-style', $this->main->asset('packages/tooltip/tooltipster-sideTip-shadow.min.css'));
409
- wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
410
 
411
- // Include "Right to Left" CSS file
412
- if(is_rtl()) wp_enqueue_style('mec-frontend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
413
 
414
- // Include Google Fonts
415
- if($gfonts_status == true and get_option('mec_dyncss') == 0) wp_enqueue_style('mec-google-fonts', '//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:100,300,400,700');
416
 
417
- // Include Google Font
418
- if($gfonts_status and get_option('mec_gfont')) wp_enqueue_style('mec-custom-google-font', get_option('mec_gfont'), array(), NULL);
419
 
420
- // Include Lity CSS file
421
- wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
422
  }
423
 
424
  /**
@@ -1118,7 +1147,7 @@ class MEC_factory extends MEC_base
1118
 
1119
  public function should_include_assets($client = 'frontend')
1120
  {
1121
- if($client == 'frontend') return true;
1122
  else
1123
  {
1124
  // Current Screen
67
  $this->action('parse_query', array($this->parser, 'WPQ_parse'), 99);
68
 
69
  // Add custom styles to header
70
+ $this->action('wp_head', array($this, 'include_styles'), 9999);
71
 
72
  // MEC iCal export
73
  $this->action('init', array($this->main, 'ical'), 9999);
325
  */
326
  public function load_frontend_assets()
327
  {
328
+ if($this->should_include_assets('frontend'))
329
+ {
330
+ // Current locale
331
+ $locale = $this->main->get_current_language();
332
 
333
+ // Styling
334
+ $styling = $this->main->get_styling();
335
 
336
+ // Google Fonts Status
337
+ $gfonts_status = (isset($styling['disable_gfonts']) and $styling['disable_gfonts']) ? false : true;
338
 
339
+ // Include WordPress jQuery
340
+ wp_enqueue_script('jquery');
341
 
342
+ // Include jQuery date picker
343
+ if(!defined("SHOW_CT_BUILDER")) wp_enqueue_script('jquery-ui-datepicker');
344
 
345
+ // Load Isotope
346
+ if(class_exists('ET_Builder_Element')) $this->main->load_isotope_assets();
347
 
348
+ include_once(ABSPATH.'wp-admin/includes/plugin.php');
349
+ if(is_plugin_active('elementor/elementor.php' ) && \Elementor\Plugin::$instance->preview->is_preview_mode()) $this->main->load_isotope_assets();
350
 
351
+ wp_enqueue_script('mec-typekit-script', $this->main->asset('js/jquery.typewatch.js'), array(), $this->main->get_version(), true);
352
+ wp_enqueue_script('mec-featherlight-script', $this->main->asset('packages/featherlight/featherlight.js'), array(), $this->main->get_version(), true);
353
 
354
+ // Include Select2
355
+ wp_enqueue_script('mec-select2-script', $this->main->asset('packages/select2/select2.full.min.js'), array(), $this->main->get_version(), true);
356
+ wp_enqueue_style('mec-select2-style', $this->main->asset('packages/select2/select2.min.css'), array(), $this->main->get_version());
357
 
358
+ // Include MEC frontend script files
359
+ wp_enqueue_script('mec-frontend-script', $this->main->asset('js/frontend.js'), array(), $this->main->get_version());
360
+ wp_enqueue_script('mec-tooltip-script', $this->main->asset('packages/tooltip/tooltip.js'), array(), $this->main->get_version(), true);
361
 
362
+ wp_enqueue_script('mec-events-script', $this->main->asset('js/events.js'), array(), $this->main->get_version());
363
 
364
+ // Include Lity Lightbox
365
+ wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'), array(), $this->main->get_version(), true);
366
 
367
+ // Include color brightness
368
+ wp_enqueue_script('mec-colorbrightness-script', $this->main->asset('packages/colorbrightness/colorbrightness.min.js'), array(), $this->main->get_version(), true);
369
 
370
+ // Include MEC frontend JS libraries
371
+ wp_enqueue_script('mec-owl-carousel-script', $this->main->asset('packages/owl-carousel/owl.carousel.min.js'), array(), $this->main->get_version(), true);
372
 
373
+ if(did_action('elementor/loaded')) $elementor_edit_mode = (\Elementor\Plugin::$instance->editor->is_edit_mode() == false) ? 'no' : 'yes';
374
+ else $elementor_edit_mode = 'no';
375
 
376
+ // Settings
377
+ $settings = $this->main->get_settings();
378
+ $grecaptcha_key = isset($settings['google_recaptcha_sitekey']) ? trim($settings['google_recaptcha_sitekey']) : '';
379
+
380
+ // Localize Some Strings
381
+ $mecdata = apply_filters('mec_locolize_data', array(
382
+ 'day'=>__('day', 'modern-events-calendar-lite'),
383
+ 'days'=>__('days', 'modern-events-calendar-lite'),
384
+ 'hour'=>__('hour', 'modern-events-calendar-lite'),
385
+ 'hours'=>__('hours', 'modern-events-calendar-lite'),
386
+ 'minute'=>__('minute', 'modern-events-calendar-lite'),
387
+ 'minutes'=>__('minutes', 'modern-events-calendar-lite'),
388
+ 'second'=>__('second', 'modern-events-calendar-lite'),
389
+ 'seconds'=>__('seconds', 'modern-events-calendar-lite'),
390
+ 'elementor_edit_mode'=>$elementor_edit_mode,
391
+ 'recapcha_key'=>$grecaptcha_key,
392
+ 'ajax_url' => admin_url('admin-ajax.php'),
393
+ 'fes_nonce' => wp_create_nonce('mec_fes_nonce'),
394
+ 'current_year' => date('Y', current_time('timestamp', 0)),
395
+ 'current_month' => date('m', current_time('timestamp', 0)),
396
+ 'datepicker_format' => (isset($settings['datepicker_format']) and trim($settings['datepicker_format'])) ? trim($settings['datepicker_format']) : 'yy-mm-dd',
397
+ ));
398
 
399
+ // Localize Some Strings
400
+ wp_localize_script('mec-frontend-script', 'mecdata', $mecdata);
401
 
402
+ // Include Google Recaptcha Javascript API
403
+ $grecaptcha_include = apply_filters('mec_grecaptcha_include', true);
404
+ if($grecaptcha_include) wp_enqueue_script('recaptcha', '//www.google.com/recaptcha/api.js?hl='.str_replace('_', '-', $locale), array(), $this->main->get_version(), true);
405
 
406
+ // Include MEC frontend CSS files
407
+ wp_enqueue_style('mec-font-icons', $this->main->asset('css/iconfonts.css'));
408
+ wp_enqueue_style('mec-frontend-style', $this->main->asset('css/frontend.min.css'), array(), $this->main->get_version());
409
+ wp_enqueue_style('mec-tooltip-style', $this->main->asset('packages/tooltip/tooltip.css'));
410
+ wp_enqueue_style('mec-tooltip-shadow-style', $this->main->asset('packages/tooltip/tooltipster-sideTip-shadow.min.css'));
411
+ wp_enqueue_style('mec-featherlight-style', $this->main->asset('packages/featherlight/featherlight.css'));
412
 
413
+ // Include "Right to Left" CSS file
414
+ if(is_rtl()) wp_enqueue_style('mec-frontend-rtl-style', $this->main->asset('css/mecrtl.min.css'));
415
 
416
+ // Include Google Fonts
417
+ if($gfonts_status == true and get_option('mec_dyncss') == 0) wp_enqueue_style('mec-google-fonts', '//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:100,300,400,700');
418
 
419
+ // Include Google Font
420
+ if($gfonts_status and get_option('mec_gfont')) wp_enqueue_style('mec-custom-google-font', get_option('mec_gfont'), array(), NULL);
421
 
422
+ // Include Lity CSS file
423
+ wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.css'));
424
+ }
425
+ }
426
+
427
+ /**
428
+ * Prints custom styles in the page header
429
+ * @author Webnus <info@webnus.biz>
430
+ * @return void
431
+ */
432
+ public function include_styles()
433
+ {
434
+ if($this->should_include_assets('frontend'))
435
+ {
436
+ // Include Dynamic CSS
437
+ if(get_option('mec_dyncss') == true)
438
+ {
439
+ echo '<style type="text/css">'.stripslashes(get_option('mec_dyncss')).'</style>';
440
+ }
441
+
442
+ $styles = $this->main->get_styles();
443
+
444
+ // Print custom styles
445
+ if(isset($styles['CSS']) and trim($styles['CSS']) != '')
446
+ {
447
+ $CSS = strip_tags($styles['CSS']);
448
+ echo '<style type="text/css">'.stripslashes($CSS).'</style>';
449
+ }
450
+ }
451
  }
452
 
453
  /**
1147
 
1148
  public function should_include_assets($client = 'frontend')
1149
  {
1150
+ if($client == 'frontend') return apply_filters('mec_include_frontend_assets', true);
1151
  else
1152
  {
1153
  // Current Screen
app/libraries/main.php CHANGED
@@ -584,6 +584,7 @@ class MEC_main extends MEC_base
584
  __('Archive Pages', 'modern-events-calendar-lite') => 'archive_options',
585
  __('Slugs/Permalinks', 'modern-events-calendar-lite') => 'slug_option',
586
  __('Currency Options', 'modern-events-calendar-lite') => 'currency_option',
 
587
  __('Google Recaptcha Options', 'modern-events-calendar-lite') => 'recaptcha_option',
588
  __('Frontend Event Submission', 'modern-events-calendar-lite') => 'fes_option',
589
  __('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
@@ -1399,29 +1400,6 @@ class MEC_main extends MEC_base
1399
  return (isset($options['styling']) ? $options['styling'] : array());
1400
  }
1401
 
1402
- /**
1403
- * Prints custom styles in the page header
1404
- * @author Webnus <info@webnus.biz>
1405
- * @return void
1406
- */
1407
- public function include_styles()
1408
- {
1409
- // Include Dynamic CSS
1410
- if(get_option('mec_dyncss') == true)
1411
- {
1412
- echo '<style type="text/css">'.stripslashes(get_option('mec_dyncss')).'</style>';
1413
- }
1414
-
1415
- $styles = $this->get_styles();
1416
-
1417
- // Print custom styles
1418
- if(isset($styles['CSS']) and trim($styles['CSS']) != '')
1419
- {
1420
- $CSS = strip_tags($styles['CSS']);
1421
- echo '<style type="text/css">'.stripslashes($CSS).'</style>';
1422
- }
1423
- }
1424
-
1425
  /**
1426
  * Saves MEC settings
1427
  * @author Webnus <info@webnus.biz>
@@ -2852,7 +2830,7 @@ class MEC_main extends MEC_base
2852
  $pdf->SetFont('DejaVu', '', 12);
2853
  foreach($transaction['price_details']['details'] as $price_row)
2854
  {
2855
- $pdf->Write(6, $price_row['description'].": ".$this->render_price($price_row['amount']));
2856
  $pdf->Ln();
2857
  }
2858
 
@@ -2864,7 +2842,7 @@ class MEC_main extends MEC_base
2864
 
2865
  $pdf->SetFont('DejaVuBold', '', 12);
2866
  $pdf->Write(10, __('Total', 'modern-events-calendar-lite').': ');
2867
- $pdf->Write(10, $this->render_price($transaction['price']));
2868
  $pdf->Ln();
2869
  }
2870
 
@@ -3122,10 +3100,15 @@ class MEC_main extends MEC_base
3122
  foreach($rrules as $rrule) $ical .= $rrule.PHP_EOL;
3123
  }
3124
 
 
 
 
 
 
3125
  $ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
3126
  $ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
3127
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3128
- $ical .= "DESCRIPTION:".html_entity_decode(str_replace("\n", "\\n", strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3129
  $ical .= "URL:".$event->permalink.PHP_EOL;
3130
 
3131
  // Organizer
@@ -3859,20 +3842,21 @@ class MEC_main extends MEC_base
3859
 
3860
  /**
3861
  * Render raw price and return its output
 
3862
  * @author Webnus <info@webnus.biz>
3863
  * @param int $price
3864
  * @return string
3865
  */
3866
- public function render_price($price)
3867
  {
3868
  // return Free if price is 0
3869
  if($price == '0') return __('Free', 'modern-events-calendar-lite');
3870
 
3871
- $thousand_separator = $this->get_thousand_separator();
3872
- $decimal_separator = $this->get_decimal_separator();
3873
 
3874
- $currency = $this->get_currency_sign();
3875
- $currency_sign_position = $this->get_currency_sign_position();
3876
 
3877
  // Force to double
3878
  if(is_string($price)) $price = (double) $price;
@@ -3889,61 +3873,122 @@ class MEC_main extends MEC_base
3889
 
3890
  /**
3891
  * Returns thousand separator
 
3892
  * @author Webnus <info@webnus.biz>
3893
  * @return string
3894
  */
3895
- public function get_thousand_separator()
3896
  {
3897
  $settings = $this->get_settings();
3898
- return apply_filters('mec_thousand_separator', (isset($settings['thousand_separator']) ? $settings['thousand_separator'] : ','));
 
 
 
 
 
 
 
 
 
 
 
3899
  }
3900
 
3901
  /**
3902
  * Returns decimal separator
 
3903
  * @author Webnus <info@webnus.biz>
3904
  * @return string
3905
  */
3906
- public function get_decimal_separator()
3907
  {
3908
  $settings = $this->get_settings();
3909
- return apply_filters('mec_decimal_separator', ((isset($settings['decimal_separator_status']) and $settings['decimal_separator_status'] == 0) ? false : (isset($settings['decimal_separator']) ? $settings['decimal_separator'] : '.')));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3910
  }
3911
 
3912
  /**
3913
  * Returns currency of MEC
 
3914
  * @author Webnus <info@webnus.biz>
3915
  * @return string
3916
  */
3917
- public function get_currency()
3918
  {
3919
  $settings = $this->get_settings();
3920
- return apply_filters('mec_currency', (isset($settings['currency']) ? $settings['currency'] : ''));
 
 
 
 
 
 
 
 
 
3921
  }
3922
 
3923
  /**
3924
  * Returns currency sign of MEC
 
3925
  * @author Webnus <info@webnus.biz>
3926
  * @return string
3927
  */
3928
- public function get_currency_sign()
3929
  {
3930
  $settings = $this->get_settings();
3931
 
3932
  // Get Currency Symptom
3933
- $currency = isset($settings['currency']) ? $settings['currency'] : '';
3934
  if(isset($settings['currency_symptom']) and trim($settings['currency_symptom'])) $currency = $settings['currency_symptom'];
 
 
 
 
 
 
 
3935
 
3936
  return apply_filters('mec_currency_sign', $currency);
3937
  }
3938
 
3939
  /**
3940
  * Returns currency code of MEC
 
3941
  * @author Webnus <info@webnus.biz>
3942
  * @return string
3943
  */
3944
- public function get_currency_code()
3945
  {
3946
- $currency = $this->get_currency();
3947
  $currencies = $this->get_currencies();
3948
 
3949
  return isset($currencies[$currency]) ? $currencies[$currency] : 'USD';
@@ -3951,13 +3996,25 @@ class MEC_main extends MEC_base
3951
 
3952
  /**
3953
  * Returns currency sign position of MEC
 
3954
  * @author Webnus <info@webnus.biz>
3955
  * @return string
3956
  */
3957
- public function get_currency_sign_position()
3958
  {
3959
  $settings = $this->get_settings();
3960
- return apply_filters('mec_currency_sign_position', (isset($settings['currency_sign']) ? $settings['currency_sign'] : ''));
 
 
 
 
 
 
 
 
 
 
 
3961
  }
3962
 
3963
  /**
@@ -4172,7 +4229,7 @@ class MEC_main extends MEC_base
4172
  }
4173
  }
4174
 
4175
- $wc_status = (isset($settings['wc_status']) ? (boolean) $settings['wc_status'] : false);
4176
 
4177
  // No Payment gateway is enabled
4178
  if(!$is_gateway_enabled and !$wc_status) return false;
@@ -6533,7 +6590,12 @@ class MEC_main extends MEC_base
6533
  $remained_tickets = 0;
6534
  foreach($availability as $ticket_id => $remained)
6535
  {
6536
- if(is_numeric($ticket_id)) $remained_tickets += $remained;
 
 
 
 
 
6537
  }
6538
 
6539
  // Check For Return SoldOut Label Exist.
@@ -7397,7 +7459,14 @@ class MEC_main extends MEC_base
7397
  $remained_tickets = 0;
7398
  foreach($availability as $ticket_id => $remained)
7399
  {
7400
- if(is_numeric($ticket_id)) $remained_tickets += $remained;
 
 
 
 
 
 
 
7401
  }
7402
 
7403
  $add_css_class = $remained_tickets ? 'mec-few-tickets' : '';
@@ -7424,7 +7493,7 @@ class MEC_main extends MEC_base
7424
  if(!$bookings_last_few_tickets_percentage_inherite and $bookings_last_few_tickets_percentage) $percentage = (int) $bookings_last_few_tickets_percentage;
7425
 
7426
  // Check For Return A Few Label Exist.
7427
- if(($total_bookings_limit > 0) and ($remained_tickets <= round((($percentage * $total_bookings_limit) / 100)))) return str_replace('%%title%%', __('Last Few Tickets', 'modern-events-calendar-lite'), $output_tag);
7428
 
7429
  return false;
7430
  }
@@ -7992,7 +8061,7 @@ class MEC_main extends MEC_base
7992
  else $occurrence = NULL;
7993
 
7994
  $render = $this->getRender();
7995
- return $render->dates($event_id, $event->data, $maximum, (trim($occurrence_time) ? date('Y-m-d H:i:s', $occurrence_time) : $occurrence));
7996
  }
7997
 
7998
  public function get_post_thumbnail_url($post = NULL, $size = 'post-thumbnail')
@@ -8179,4 +8248,81 @@ class MEC_main extends MEC_base
8179
  $bookings = $this->get_bookings($event_id, $timestamp, 1, $user_id);
8180
  return (boolean) count($bookings);
8181
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8182
  }
584
  __('Archive Pages', 'modern-events-calendar-lite') => 'archive_options',
585
  __('Slugs/Permalinks', 'modern-events-calendar-lite') => 'slug_option',
586
  __('Currency Options', 'modern-events-calendar-lite') => 'currency_option',
587
+ __('Assets Per Page', 'modern-events-calendar-lite') => 'assets_per_page_option',
588
  __('Google Recaptcha Options', 'modern-events-calendar-lite') => 'recaptcha_option',
589
  __('Frontend Event Submission', 'modern-events-calendar-lite') => 'fes_option',
590
  __('User Profile', 'modern-events-calendar-lite') => 'user_profile_options',
1400
  return (isset($options['styling']) ? $options['styling'] : array());
1401
  }
1402
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1403
  /**
1404
  * Saves MEC settings
1405
  * @author Webnus <info@webnus.biz>
2830
  $pdf->SetFont('DejaVu', '', 12);
2831
  foreach($transaction['price_details']['details'] as $price_row)
2832
  {
2833
+ $pdf->Write(6, $price_row['description'].": ".$this->render_price($price_row['amount'], $event_id));
2834
  $pdf->Ln();
2835
  }
2836
 
2842
 
2843
  $pdf->SetFont('DejaVuBold', '', 12);
2844
  $pdf->Write(10, __('Total', 'modern-events-calendar-lite').': ');
2845
+ $pdf->Write(10, $this->render_price($transaction['price'], $event_id));
2846
  $pdf->Ln();
2847
  }
2848
 
3100
  foreach($rrules as $rrule) $ical .= $rrule.PHP_EOL;
3101
  }
3102
 
3103
+ $event_content = strip_tags($event->content);
3104
+ $event_content = str_replace("\r\n", "\\n", $event_content);
3105
+ $event_content = str_replace("\n", "\\n", $event_content);
3106
+ $event_content = preg_replace('/(<script[^>]*>.+?<\/script>|<style[^>]*>.+?<\/style>)/s', '', $event_content);;
3107
+
3108
  $ical .= "CREATED:".date('Ymd', $stamp).PHP_EOL;
3109
  $ical .= "LAST-MODIFIED:".date('Ymd', $modified).PHP_EOL;
3110
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3111
+ $ical .= "DESCRIPTION:".html_entity_decode($event_content, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
3112
  $ical .= "URL:".$event->permalink.PHP_EOL;
3113
 
3114
  // Organizer
3842
 
3843
  /**
3844
  * Render raw price and return its output
3845
+ * @param int|object $event
3846
  * @author Webnus <info@webnus.biz>
3847
  * @param int $price
3848
  * @return string
3849
  */
3850
+ public function render_price($price, $event = NULL)
3851
  {
3852
  // return Free if price is 0
3853
  if($price == '0') return __('Free', 'modern-events-calendar-lite');
3854
 
3855
+ $thousand_separator = $this->get_thousand_separator($event);
3856
+ $decimal_separator = $this->get_decimal_separator($event);
3857
 
3858
+ $currency = $this->get_currency_sign($event);
3859
+ $currency_sign_position = $this->get_currency_sign_position($event);
3860
 
3861
  // Force to double
3862
  if(is_string($price)) $price = (double) $price;
3873
 
3874
  /**
3875
  * Returns thousand separator
3876
+ * @param int|object $event
3877
  * @author Webnus <info@webnus.biz>
3878
  * @return string
3879
  */
3880
+ public function get_thousand_separator($event = NULL)
3881
  {
3882
  $settings = $this->get_settings();
3883
+
3884
+ // Separator
3885
+ $separator = (isset($settings['thousand_separator']) ? $settings['thousand_separator'] : ',');
3886
+
3887
+ // Currency Per Event
3888
+ if($event and isset($settings['currency_per_event']) and $settings['currency_per_event'])
3889
+ {
3890
+ $options = $this->get_event_currency_options($event);
3891
+ if(isset($options['thousand_separator']) and trim($options['thousand_separator'])) $separator = $options['thousand_separator'];
3892
+ }
3893
+
3894
+ return apply_filters('mec_thousand_separator', $separator);
3895
  }
3896
 
3897
  /**
3898
  * Returns decimal separator
3899
+ * @param int|object $event
3900
  * @author Webnus <info@webnus.biz>
3901
  * @return string
3902
  */
3903
+ public function get_decimal_separator($event = NULL)
3904
  {
3905
  $settings = $this->get_settings();
3906
+
3907
+ // Separator
3908
+ $separator = (isset($settings['decimal_separator']) ? $settings['decimal_separator'] : '.');
3909
+
3910
+ // Status
3911
+ $disabled = (isset($settings['decimal_separator_status']) and $settings['decimal_separator_status'] == 0);
3912
+
3913
+ // Currency Per Event
3914
+ if($event and isset($settings['currency_per_event']) and $settings['currency_per_event'])
3915
+ {
3916
+ $options = $this->get_event_currency_options($event);
3917
+ if(isset($options['decimal_separator']) and trim($options['decimal_separator'])) $separator = $options['decimal_separator'];
3918
+ if(isset($options['decimal_separator_status']) and $options['decimal_separator_status'] == 0) $disabled = true;
3919
+ }
3920
+
3921
+ return apply_filters('mec_decimal_separator', ($disabled ? false : $separator));
3922
+ }
3923
+
3924
+ /**
3925
+ * @param int|object $event
3926
+ * @return array
3927
+ */
3928
+ public function get_event_currency_options($event)
3929
+ {
3930
+ $event_id = (is_object($event) ? $event->ID : $event);
3931
+
3932
+ $options = get_post_meta($event_id, 'mec_currency', true);
3933
+ if(!is_array($options)) $options = array();
3934
+
3935
+ return $options;
3936
  }
3937
 
3938
  /**
3939
  * Returns currency of MEC
3940
+ * @param int|object $event
3941
  * @author Webnus <info@webnus.biz>
3942
  * @return string
3943
  */
3944
+ public function get_currency($event = NULL)
3945
  {
3946
  $settings = $this->get_settings();
3947
+ $currency = (isset($settings['currency']) ? $settings['currency'] : '');
3948
+
3949
+ // Currency Per Event
3950
+ if($event and isset($settings['currency_per_event']) and $settings['currency_per_event'])
3951
+ {
3952
+ $options = $this->get_event_currency_options($event);
3953
+ if(isset($options['currency']) and trim($options['currency'])) $currency = $options['currency'];
3954
+ }
3955
+
3956
+ return apply_filters('mec_currency', $currency);
3957
  }
3958
 
3959
  /**
3960
  * Returns currency sign of MEC
3961
+ * @param int|object $event
3962
  * @author Webnus <info@webnus.biz>
3963
  * @return string
3964
  */
3965
+ public function get_currency_sign($event = NULL)
3966
  {
3967
  $settings = $this->get_settings();
3968
 
3969
  // Get Currency Symptom
3970
+ $currency = $this->get_currency($event);
3971
  if(isset($settings['currency_symptom']) and trim($settings['currency_symptom'])) $currency = $settings['currency_symptom'];
3972
+
3973
+ // Currency Per Event
3974
+ if($event and isset($settings['currency_per_event']) and $settings['currency_per_event'])
3975
+ {
3976
+ $options = $this->get_event_currency_options($event);
3977
+ if(isset($options['currency_symptom']) and trim($options['currency_symptom'])) $currency = $options['currency_symptom'];
3978
+ }
3979
 
3980
  return apply_filters('mec_currency_sign', $currency);
3981
  }
3982
 
3983
  /**
3984
  * Returns currency code of MEC
3985
+ * @param int|object $event
3986
  * @author Webnus <info@webnus.biz>
3987
  * @return string
3988
  */
3989
+ public function get_currency_code($event = NULL)
3990
  {
3991
+ $currency = $this->get_currency($event);
3992
  $currencies = $this->get_currencies();
3993
 
3994
  return isset($currencies[$currency]) ? $currencies[$currency] : 'USD';
3996
 
3997
  /**
3998
  * Returns currency sign position of MEC
3999
+ * @param int|object $event
4000
  * @author Webnus <info@webnus.biz>
4001
  * @return string
4002
  */
4003
+ public function get_currency_sign_position($event = NULL)
4004
  {
4005
  $settings = $this->get_settings();
4006
+
4007
+ // Currency Position
4008
+ $position = (isset($settings['currency_sign']) ? $settings['currency_sign'] : '');
4009
+
4010
+ // Currency Per Event
4011
+ if($event and isset($settings['currency_per_event']) and $settings['currency_per_event'])
4012
+ {
4013
+ $options = $this->get_event_currency_options($event);
4014
+ if(isset($options['currency_sign']) and trim($options['currency_sign'])) $position = $options['currency_sign'];
4015
+ }
4016
+
4017
+ return apply_filters('mec_currency_sign_position', $position);
4018
  }
4019
 
4020
  /**
4229
  }
4230
  }
4231
 
4232
+ $wc_status = ((isset($settings['wc_status']) and class_exists('WooCommerce')) ? (boolean) $settings['wc_status'] : false);
4233
 
4234
  // No Payment gateway is enabled
4235
  if(!$is_gateway_enabled and !$wc_status) return false;
6590
  $remained_tickets = 0;
6591
  foreach($availability as $ticket_id => $remained)
6592
  {
6593
+ if(is_numeric($ticket_id) and $remained >= 0) $remained_tickets += $remained;
6594
+ if(is_numeric($ticket_id) and $remained == -1)
6595
+ {
6596
+ $remained_tickets = -1;
6597
+ break;
6598
+ }
6599
  }
6600
 
6601
  // Check For Return SoldOut Label Exist.
7459
  $remained_tickets = 0;
7460
  foreach($availability as $ticket_id => $remained)
7461
  {
7462
+ if(is_numeric($ticket_id) and $remained >= 0) $remained_tickets += $remained;
7463
+
7464
+ // Unlimited Tickets
7465
+ if(is_numeric($ticket_id) and $remained == -1)
7466
+ {
7467
+ $remained_tickets = -1;
7468
+ break;
7469
+ }
7470
  }
7471
 
7472
  $add_css_class = $remained_tickets ? 'mec-few-tickets' : '';
7493
  if(!$bookings_last_few_tickets_percentage_inherite and $bookings_last_few_tickets_percentage) $percentage = (int) $bookings_last_few_tickets_percentage;
7494
 
7495
  // Check For Return A Few Label Exist.
7496
+ if(($total_bookings_limit > 0) and ($remained_tickets > 0 and $remained_tickets <= round((($percentage * $total_bookings_limit) / 100)))) return str_replace('%%title%%', __('Last Few Tickets', 'modern-events-calendar-lite'), $output_tag);
7497
 
7498
  return false;
7499
  }
8061
  else $occurrence = NULL;
8062
 
8063
  $render = $this->getRender();
8064
+ return $render->dates($event_id, (isset($event->data) ? $event->data : NULL), $maximum, (trim($occurrence_time) ? date('Y-m-d H:i:s', $occurrence_time) : $occurrence));
8065
  }
8066
 
8067
  public function get_post_thumbnail_url($post = NULL, $size = 'post-thumbnail')
8248
  $bookings = $this->get_bookings($event_id, $timestamp, 1, $user_id);
8249
  return (boolean) count($bookings);
8250
  }
8251
+
8252
+ public function get_event_attendees($id, $occurrence = NULL)
8253
+ {
8254
+ $date_query = array();
8255
+ if($occurrence)
8256
+ {
8257
+ $date_query = array(
8258
+ array(
8259
+ 'year' => date('Y', $occurrence),
8260
+ 'month'=> date('m', $occurrence),
8261
+ 'day' => date('d', $occurrence),
8262
+ 'hour' => date('H', $occurrence),
8263
+ 'minute' => date('i', $occurrence),
8264
+ ),
8265
+ );
8266
+ }
8267
+
8268
+ $booking_options = get_post_meta($id, 'mec_booking', true);
8269
+ $bookings_all_occurrences = (isset($booking_options['bookings_all_occurrences']) ? $booking_options['bookings_all_occurrences'] : 0);
8270
+ if($bookings_all_occurrences and $occurrence)
8271
+ {
8272
+ $date_query = array(
8273
+ 'before' => date('Y-m-d', $occurrence).' 23:59:59',
8274
+ );
8275
+ }
8276
+
8277
+ // Fetch Bookings
8278
+ $bookings = get_posts(array(
8279
+ 'posts_per_page' => -1,
8280
+ 'post_type' => $this->get_book_post_type(),
8281
+ 'post_status' => 'any',
8282
+ 'meta_key' => 'mec_event_id',
8283
+ 'meta_value' => $id,
8284
+ 'meta_compare' => '=',
8285
+ 'meta_query' => array
8286
+ (
8287
+ 'relation' => 'AND',
8288
+ array(
8289
+ 'key' => 'mec_verified',
8290
+ 'value' => '1',
8291
+ 'compare' => '=',
8292
+ ),
8293
+ array(
8294
+ 'key' => 'mec_confirmed',
8295
+ 'value' => '1',
8296
+ 'compare' => '=',
8297
+ ),
8298
+ ),
8299
+ 'date_query' => $date_query,
8300
+ ));
8301
+
8302
+ // Attendees
8303
+ $attendees = array();
8304
+ foreach($bookings as $booking)
8305
+ {
8306
+ $atts = get_post_meta($booking->ID, 'mec_attendees', true);
8307
+ if(isset($atts['attachments'])) unset($atts['attachments']);
8308
+
8309
+ foreach($atts as $key => $value)
8310
+ {
8311
+ if(!is_numeric($key)) continue;
8312
+
8313
+ $atts[$key]['book_id'] = $booking->ID;
8314
+ $atts[$key]['key'] = ($key + 1);
8315
+ }
8316
+
8317
+ $attendees = array_merge($attendees, $atts);
8318
+ }
8319
+
8320
+ $attendees = apply_filters('mec_attendees_list_data', $attendees, $id, $occurrence);
8321
+ usort($attendees, function($a, $b)
8322
+ {
8323
+ return strcmp($a['name'], $b['name']);
8324
+ });
8325
+
8326
+ return $attendees;
8327
+ }
8328
  }
app/libraries/notifications.php CHANGED
@@ -954,6 +954,14 @@ class MEC_notifications extends MEC_base
954
  // Event Data
955
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
956
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
 
 
 
 
 
 
 
 
957
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_start_date', true))), $message);
958
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_end_date', true))), $message);
959
  $message = str_replace('%%event_timezone%%', $this->main->get_timezone($event_id), $message);
@@ -1099,6 +1107,14 @@ class MEC_notifications extends MEC_base
1099
  // Event Data
1100
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
1101
  $message = str_replace('%%event_title%%', get_the_title($post->ID), $message);
 
 
 
 
 
 
 
 
1102
  $message = str_replace('%%event_link%%', get_post_permalink($post->ID), $message);
1103
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($post->ID, 'mec_start_date', true))), $message);
1104
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($post->ID, 'mec_end_date', true))), $message);
@@ -1390,14 +1406,14 @@ class MEC_notifications extends MEC_base
1390
 
1391
  // Booking Price
1392
  $price = get_post_meta($book_id, 'mec_price', true);
1393
- $message = str_replace('%%book_price%%', $this->main->render_price(($price ? $price : 0)), $message);
1394
  $message = str_replace('%%total_attendees%%', $this->book->get_total_attendees($book_id), $message);
1395
 
1396
  // Attendee Price
1397
  if(isset($attendee['email']))
1398
  {
1399
  $attendee_price = $this->book->get_attendee_price($transaction, $attendee['email']);
1400
- $message = str_replace('%%attendee_price%%', $this->main->render_price(($attendee_price ? $attendee_price : $price)), $message);
1401
  }
1402
 
1403
  $event_id = get_post_meta($book_id, 'mec_event_id', true);
@@ -1476,6 +1492,13 @@ class MEC_notifications extends MEC_base
1476
  }
1477
 
1478
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
 
 
 
 
 
 
 
1479
  $message = str_replace('%%event_link%%', $this->main->get_event_date_permalink(get_permalink($event_id), date('Y-m-d', $start_timestamp)), $message);
1480
  $message = str_replace('%%event_more_info%%', esc_url(get_post_meta($event_id, 'mec_read_more', true)), $message);
1481
  $message = str_replace('%%event_other_info%%', esc_url(get_post_meta($event_id, 'mec_more_info', true)), $message);
@@ -1595,9 +1618,12 @@ class MEC_notifications extends MEC_base
1595
  }
1596
  }
1597
 
 
 
 
1598
  $message = str_replace('%%ticket_name%%', implode(',', $ticket_names), $message);
1599
  $message = str_replace('%%ticket_time%%', implode(',', $ticket_times), $message);
1600
- $message = str_replace('%%ticket_private_description%%', implode(',', $ticket_private_descriptions), $message);
1601
 
1602
  $ticket_name_time = '';
1603
  foreach($ticket_names as $t_i=>$ticket_name)
@@ -1611,6 +1637,7 @@ class MEC_notifications extends MEC_base
1611
  $event_title = get_the_title($event_id);
1612
  $event_info = get_post($event_id);
1613
  $event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
 
1614
 
1615
  $google_calendar_location = get_term_meta($location_id, 'address', true);
1616
  $google_calendar_link = '<a href="https://www.google.com/calendar/event?action=TEMPLATE&text=' . $event_title . '&dates='. gmdate('Ymd\\THi00\\Z', ($start_timestamp - $gmt_offset_seconds)) . '/' . gmdate('Ymd\\THi00\\Z', ($end_timestamp - $gmt_offset_seconds)) . '&details=' . urlencode($event_content) . (trim($google_calendar_location) ? '&location=' . urlencode($google_calendar_location) : ''). '" target="_blank">' . __('+ Add to Google Calendar', 'modern-events-calendar-lite') . '</a>';
954
  // Event Data
955
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
956
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
957
+ $message = str_replace('%%event_description%%', strip_tags(get_post_field('post_content', $event_id)), $message);
958
+ $message = str_replace('%%event_tags%%', join(', ', wp_list_pluck(get_the_terms($event_id, apply_filters('mec_taxonomy_tag', '')), 'name')), $message);
959
+ $message = str_replace('%%event_labels%%', join(', ', wp_list_pluck(get_the_terms($event_id, 'mec_label'), 'name')), $message);
960
+ $message = str_replace('%%event_categories%%', join(', ', wp_list_pluck(get_the_terms($event_id, 'mec_category'), 'name')), $message);
961
+
962
+ $mec_cost = get_post_meta($event_id, 'mec_cost', true);
963
+ $message = str_replace('%%event_cost%%', (is_numeric($mec_cost) ? $this->main->render_price($mec_cost, $event_id) : $mec_cost), $message);
964
+
965
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_start_date', true))), $message);
966
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($event_id, 'mec_end_date', true))), $message);
967
  $message = str_replace('%%event_timezone%%', $this->main->get_timezone($event_id), $message);
1107
  // Event Data
1108
  $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$event_PT), $this->main->URL('admin').'edit.php'), $message);
1109
  $message = str_replace('%%event_title%%', get_the_title($post->ID), $message);
1110
+ $message = str_replace('%%event_description%%', strip_tags(get_post_field('post_content', $post->ID)), $message);
1111
+ $message = str_replace('%%event_tags%%', join(', ', wp_list_pluck(get_the_terms($post->ID, apply_filters('mec_taxonomy_tag', '')), 'name')), $message);
1112
+ $message = str_replace('%%event_labels%%', join(', ', wp_list_pluck(get_the_terms($post->ID, 'mec_label'), 'name')), $message);
1113
+ $message = str_replace('%%event_categories%%', join(', ', wp_list_pluck(get_the_terms($post->ID, 'mec_category'), 'name')), $message);
1114
+
1115
+ $mec_cost = get_post_meta($post->ID, 'mec_cost', true);
1116
+ $message = str_replace('%%event_cost%%', (is_numeric($mec_cost) ? $this->main->render_price($mec_cost, $post->ID) : $mec_cost), $message);
1117
+
1118
  $message = str_replace('%%event_link%%', get_post_permalink($post->ID), $message);
1119
  $message = str_replace('%%event_start_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($post->ID, 'mec_start_date', true))), $message);
1120
  $message = str_replace('%%event_end_date%%', $this->main->date_i18n($date_format, strtotime(get_post_meta($post->ID, 'mec_end_date', true))), $message);
1406
 
1407
  // Booking Price
1408
  $price = get_post_meta($book_id, 'mec_price', true);
1409
+ $message = str_replace('%%book_price%%', $this->main->render_price(($price ? $price : 0), $event_id), $message);
1410
  $message = str_replace('%%total_attendees%%', $this->book->get_total_attendees($book_id), $message);
1411
 
1412
  // Attendee Price
1413
  if(isset($attendee['email']))
1414
  {
1415
  $attendee_price = $this->book->get_attendee_price($transaction, $attendee['email']);
1416
+ $message = str_replace('%%attendee_price%%', $this->main->render_price(($attendee_price ? $attendee_price : $price), $event_id), $message);
1417
  }
1418
 
1419
  $event_id = get_post_meta($book_id, 'mec_event_id', true);
1492
  }
1493
 
1494
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
1495
+ $message = str_replace('%%event_description%%', strip_tags(get_post_field('post_content', $event_id)), $message);
1496
+ $message = str_replace('%%event_tags%%', join(', ', wp_list_pluck(get_the_terms($event_id, apply_filters('mec_taxonomy_tag', '')), 'name')), $message);
1497
+ $message = str_replace('%%event_labels%%', join(', ', wp_list_pluck(get_the_terms($event_id, 'mec_label'), 'name')), $message);
1498
+ $message = str_replace('%%event_categories%%', join(', ', wp_list_pluck(get_the_terms($event_id, 'mec_category'), 'name')), $message);
1499
+
1500
+ $mec_cost = get_post_meta($event_id, 'mec_cost', true);
1501
+ $message = str_replace('%%event_cost%%', (is_numeric($mec_cost) ? $this->main->render_price($mec_cost, $event_id) : $mec_cost), $message);
1502
  $message = str_replace('%%event_link%%', $this->main->get_event_date_permalink(get_permalink($event_id), date('Y-m-d', $start_timestamp)), $message);
1503
  $message = str_replace('%%event_more_info%%', esc_url(get_post_meta($event_id, 'mec_read_more', true)), $message);
1504
  $message = str_replace('%%event_other_info%%', esc_url(get_post_meta($event_id, 'mec_more_info', true)), $message);
1618
  }
1619
  }
1620
 
1621
+ // Private Description
1622
+ $private_description_status = (!isset($this->settings['booking_private_description']) or (isset($this->settings['booking_private_description']) and $this->settings['booking_private_description'])) ? true : false;
1623
+
1624
  $message = str_replace('%%ticket_name%%', implode(',', $ticket_names), $message);
1625
  $message = str_replace('%%ticket_time%%', implode(',', $ticket_times), $message);
1626
+ $message = str_replace('%%ticket_private_description%%', ($private_description_status ? implode(',', $ticket_private_descriptions) : ''), $message);
1627
 
1628
  $ticket_name_time = '';
1629
  foreach($ticket_names as $t_i=>$ticket_name)
1637
  $event_title = get_the_title($event_id);
1638
  $event_info = get_post($event_id);
1639
  $event_content = trim($event_info->post_content) ? strip_shortcodes(strip_tags($event_info->post_content)) : $event_title;
1640
+ $event_content = apply_filters('mec_add_content_to_export_google_calendar_details', $event_content,$event_id );
1641
 
1642
  $google_calendar_location = get_term_meta($location_id, 'address', true);
1643
  $google_calendar_link = '<a href="https://www.google.com/calendar/event?action=TEMPLATE&text=' . $event_title . '&dates='. gmdate('Ymd\\THi00\\Z', ($start_timestamp - $gmt_offset_seconds)) . '/' . gmdate('Ymd\\THi00\\Z', ($end_timestamp - $gmt_offset_seconds)) . '&details=' . urlencode($event_content) . (trim($google_calendar_location) ? '&location=' . urlencode($google_calendar_location) : ''). '" target="_blank">' . __('+ Add to Google Calendar', 'modern-events-calendar-lite') . '</a>';
app/libraries/render.php CHANGED
@@ -508,8 +508,8 @@ class MEC_render extends MEC_base
508
  $hide_time = isset($data->meta['mec_hide_time']) ? $data->meta['mec_hide_time'] : 0;
509
  $hide_end_time = isset($data->meta['mec_hide_end_time']) ? $data->meta['mec_hide_end_time'] : 0;
510
 
511
- $start_timestamp = (isset($meta['mec_start_day_seconds']) ? (strtotime($meta['mec_start_date'])+$meta['mec_start_day_seconds']) : strtotime($meta['mec_start_date']));
512
- $end_timestamp = (isset($meta['mec_end_day_seconds']) ? (strtotime($meta['mec_end_date'])+$meta['mec_end_day_seconds']) : strtotime($meta['mec_end_date']));
513
 
514
  $start_time = $this->main->get_time($start_timestamp);
515
  $end_time = $this->main->get_time($end_timestamp);
508
  $hide_time = isset($data->meta['mec_hide_time']) ? $data->meta['mec_hide_time'] : 0;
509
  $hide_end_time = isset($data->meta['mec_hide_end_time']) ? $data->meta['mec_hide_end_time'] : 0;
510
 
511
+ $start_timestamp = ((isset($meta['mec_start_day_seconds']) and isset($meta['mec_start_date'])) ? (strtotime($meta['mec_start_date'])+$meta['mec_start_day_seconds']) : (isset($meta['mec_start_date']) ? strtotime($meta['mec_start_date']) : 0));
512
+ $end_timestamp = ((isset($meta['mec_end_day_seconds']) and isset($meta['mec_end_date'])) ? (strtotime($meta['mec_end_date'])+$meta['mec_end_day_seconds']) : (isset($meta['mec_end_date']) ? strtotime($meta['mec_end_date']) : 0));
513
 
514
  $start_time = $this->main->get_time($start_timestamp);
515
  $end_time = $this->main->get_time($end_timestamp);
app/libraries/skins.php CHANGED
@@ -1245,7 +1245,7 @@ class MEC_skins extends MEC_base
1245
  $time = isset($this->start_date) ? strtotime($this->start_date) : '';
1246
  $now = current_time('timestamp', 0);
1247
 
1248
- $skins = array('list', 'grid', 'agenda');
1249
  if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
1250
 
1251
  $item = __('Select', 'modern-events-calendar-lite');
1245
  $time = isset($this->start_date) ? strtotime($this->start_date) : '';
1246
  $now = current_time('timestamp', 0);
1247
 
1248
+ $skins = array('list', 'grid', 'agenda', 'map');
1249
  if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
1250
 
1251
  $item = __('Select', 'modern-events-calendar-lite');
app/modules/booking/steps/checkout.php CHANGED
@@ -79,14 +79,14 @@ if($mecFluentEnable)
79
  <div class="mec-book-price-detail mec-book-price-detail-type<?php echo $detail['type']; ?>">
80
  <span></span>
81
  <span class="mec-book-price-detail-description"><?php echo $detail['description']; ?></span>
82
- <span class="mec-book-price-detail-amount"><?php echo $this->main->render_price($detail['amount']); ?></span>
83
  </div>
84
  <?php endforeach; ?>
85
  </div>
86
  <?php endif; ?>
87
  <div class="mec-book-price-total">
88
  <span class="mec-book-price-total-description"><?php esc_html_e('Total Due', 'modern-events-calendar-lite'); ?></span>
89
- <span class="mec-book-price-total-amount"><?php echo $this->main->render_price($price_details['total']); ?></span>
90
  </div>
91
  <div style="clear:both"></div>
92
  <?php } else { ?>
@@ -95,12 +95,12 @@ if($mecFluentEnable)
95
  <?php foreach($price_details['details'] as $detail): ?>
96
  <li class="mec-book-price-detail mec-book-price-detail-type<?php echo $detail['type']; ?>">
97
  <span class="mec-book-price-detail-description"><?php echo $detail['description']; ?></span>
98
- <span class="mec-book-price-detail-amount"><?php echo $this->main->render_price($detail['amount']); ?></span>
99
  </li>
100
  <?php endforeach; ?>
101
  </ul>
102
  <?php endif; ?>
103
- <span class="mec-book-price-total"><?php echo $this->main->render_price($price_details['total']); ?></span>
104
  <?php } ?>
105
  </div>
106
  <?php if(isset($this->settings['coupons_status']) and $this->settings['coupons_status']): ?>
79
  <div class="mec-book-price-detail mec-book-price-detail-type<?php echo $detail['type']; ?>">
80
  <span></span>
81
  <span class="mec-book-price-detail-description"><?php echo $detail['description']; ?></span>
82
+ <span class="mec-book-price-detail-amount"><?php echo $this->main->render_price($detail['amount'], $event_id); ?></span>
83
  </div>
84
  <?php endforeach; ?>
85
  </div>
86
  <?php endif; ?>
87
  <div class="mec-book-price-total">
88
  <span class="mec-book-price-total-description"><?php esc_html_e('Total Due', 'modern-events-calendar-lite'); ?></span>
89
+ <span class="mec-book-price-total-amount"><?php echo $this->main->render_price($price_details['total'], $event_id); ?></span>
90
  </div>
91
  <div style="clear:both"></div>
92
  <?php } else { ?>
95
  <?php foreach($price_details['details'] as $detail): ?>
96
  <li class="mec-book-price-detail mec-book-price-detail-type<?php echo $detail['type']; ?>">
97
  <span class="mec-book-price-detail-description"><?php echo $detail['description']; ?></span>
98
+ <span class="mec-book-price-detail-amount"><?php echo $this->main->render_price($detail['amount'], $event_id); ?></span>
99
  </li>
100
  <?php endforeach; ?>
101
  </ul>
102
  <?php endif; ?>
103
+ <span class="mec-book-price-total"><?php echo $this->main->render_price($price_details['total'], $event_id); ?></span>
104
  <?php } ?>
105
  </div>
106
  <?php if(isset($this->settings['coupons_status']) and $this->settings['coupons_status']): ?>
app/modules/booking/steps/form.php CHANGED
@@ -299,7 +299,7 @@ if(isset($reg_fields['form_style_url'])){
299
  <?php if (isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'] and count($ticket_variations)) : foreach ($ticket_variations as $ticket_variation_id => $ticket_variation) : if (!is_numeric($ticket_variation_id) or !isset($ticket_variation['title']) or (isset($ticket_variation['title']) and !trim($ticket_variation['title']))) continue; ?>
300
  <div class="col-md-12">
301
  <div class="mec-book-ticket-variation" data-ticket-id="<?php echo $j; ?>" data-ticket-variation-id="<?php echo $ticket_variation_id; ?>">
302
- <h5><span class="mec-ticket-variation-name"><?php echo $ticket_variation['title']; ?></span><span class="mec-ticket-variation-price"><?php echo $this->main->render_price($ticket_variation['price']); ?></span></h5>
303
  <input onkeydown="return event.keyCode !== 69" type="number" min="0" max="<?php echo ((is_numeric($ticket_variation['max']) and $ticket_variation['max']) ? $ticket_variation['max'] : ''); ?>" name="book[tickets][<?php echo $j; ?>][variations][<?php echo $ticket_variation_id; ?>]" onchange="mec_check_variation_min_max<?php echo $uniqueid; ?>(this);">
304
  </div>
305
  </div>
299
  <?php if (isset($this->settings['ticket_variations_status']) and $this->settings['ticket_variations_status'] and count($ticket_variations)) : foreach ($ticket_variations as $ticket_variation_id => $ticket_variation) : if (!is_numeric($ticket_variation_id) or !isset($ticket_variation['title']) or (isset($ticket_variation['title']) and !trim($ticket_variation['title']))) continue; ?>
300
  <div class="col-md-12">
301
  <div class="mec-book-ticket-variation" data-ticket-id="<?php echo $j; ?>" data-ticket-variation-id="<?php echo $ticket_variation_id; ?>">
302
+ <h5><span class="mec-ticket-variation-name"><?php echo $ticket_variation['title']; ?></span><span class="mec-ticket-variation-price"><?php echo $this->main->render_price($ticket_variation['price'], $event_id); ?></span></h5>
303
  <input onkeydown="return event.keyCode !== 69" type="number" min="0" max="<?php echo ((is_numeric($ticket_variation['max']) and $ticket_variation['max']) ? $ticket_variation['max'] : ''); ?>" name="book[tickets][<?php echo $j; ?>][variations][<?php echo $ticket_variation_id; ?>]" onchange="mec_check_variation_min_max<?php echo $uniqueid; ?>(this);">
304
  </div>
305
  </div>
app/modules/export/details.php CHANGED
@@ -13,7 +13,7 @@ if(!isset($settings['export_module_status']) or (isset($settings['export_module_
13
  $title = isset($event->data->title) ? $event->data->title : '';
14
  $location = (isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']])) ? '&location='.urlencode($event->data->locations[$event->data->meta['mec_location_id']]['address']) : '';
15
  $content = (isset($event->data->post->post_content) and trim($event->data->post->post_content)) ? strip_shortcodes(strip_tags($event->data->post->post_content)) : $title;
16
-
17
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
18
  $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
19
 
@@ -64,6 +64,7 @@ $description = "$content";
64
  ob_start();
65
  do_action('mec_add_to_calander_event_description', $event);
66
  $description .= html_entity_decode(ob_get_clean());
 
67
  ?>
68
  <div class="mec-event-export-module mec-frontbox">
69
  <div class="mec-event-exporting">
13
  $title = isset($event->data->title) ? $event->data->title : '';
14
  $location = (isset($event->data->meta['mec_location_id']) and isset($event->data->locations[$event->data->meta['mec_location_id']])) ? '&location='.urlencode($event->data->locations[$event->data->meta['mec_location_id']]['address']) : '';
15
  $content = (isset($event->data->post->post_content) and trim($event->data->post->post_content)) ? strip_shortcodes(strip_tags($event->data->post->post_content)) : $title;
16
+ $content = apply_filters('mec_add_content_to_export_google_calendar_details', $content,$event->data->ID );
17
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : '';
18
  $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event->data->ID, (isset($event->date['start']['date']) ? $event->date['start']['date'] : $occurrence)) : '';
19
 
64
  ob_start();
65
  do_action('mec_add_to_calander_event_description', $event);
66
  $description .= html_entity_decode(ob_get_clean());
67
+
68
  ?>
69
  <div class="mec-event-export-module mec-frontbox">
70
  <div class="mec-event-exporting">
app/skins/daily_view/render.php CHANGED
@@ -33,7 +33,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
33
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
34
  <div class="mec-price-details">
35
  <i class="mec-sl-wallet"></i>
36
- <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
37
  </div>
38
  <?php endif; ?>
39
  <?php echo $this->booking_button($event); ?>
33
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
34
  <div class="mec-price-details">
35
  <i class="mec-sl-wallet"></i>
36
+ <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></span>
37
  </div>
38
  <?php endif; ?>
39
  <?php echo $this->booking_button($event); ?>
app/skins/grid/render.php CHANGED
@@ -85,7 +85,7 @@ if($this->style == 'colorful')
85
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
86
  <div class="mec-price-details">
87
  <i class="mec-sl-wallet"></i>
88
- <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
89
  </div>
90
  <?php endif; ?>
91
  </div>
85
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
86
  <div class="mec-price-details">
87
  <i class="mec-sl-wallet"></i>
88
+ <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></span>
89
  </div>
90
  <?php endif; ?>
91
  </div>
app/skins/list/render.php CHANGED
@@ -184,7 +184,7 @@ $map_events = array();
184
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
185
  <div class="mec-price-details">
186
  <i class="mec-sl-wallet"></i>
187
- <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
188
  </div>
189
  <?php endif; ?>
190
  <?php do_action('mec_list_standard_right_box', $event); ?>
184
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
185
  <div class="mec-price-details">
186
  <i class="mec-sl-wallet"></i>
187
+ <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></span>
188
  </div>
189
  <?php endif; ?>
190
  <?php do_action('mec_list_standard_right_box', $event); ?>
app/skins/map.php CHANGED
@@ -112,6 +112,10 @@ class MEC_skin_map extends MEC_skins
112
 
113
  // Start Date
114
  $this->start_date = $this->get_start_date();
 
 
 
 
115
  }
116
 
117
  /**
@@ -131,7 +135,7 @@ class MEC_skin_map extends MEC_skins
131
  elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_month') $date = date('Y-m-d', strtotime('first day of this month'));
132
  elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_next_month') $date = date('Y-m-d', strtotime('first day of next month'));
133
  elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'date') $date = date('Y-m-d', strtotime($this->skin_options['start_date']));
134
-
135
  // Hide past events
136
  if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
137
  {
@@ -152,7 +156,7 @@ class MEC_skin_map extends MEC_skins
152
  $events = array();
153
  $sorted = array();
154
 
155
- $yesterday = date('Y-m-d', strtotime('Yesterday', strtotime($this->start_date)));
156
 
157
  // The Query
158
  $query = new WP_Query($this->args);
@@ -174,6 +178,7 @@ class MEC_skin_map extends MEC_skins
174
  $data->date = isset($data->dates[0]) ? $data->dates[0] : array();
175
 
176
  if(strtotime($data->date['end']['date']) < strtotime($this->start_date)) continue;
 
177
 
178
  if($this->hide_time_method == 'end' and strtotime($data->date['end']['date']) < strtotime($this->start_date)) continue;
179
  elseif($this->hide_time_method != 'end')
@@ -215,7 +220,7 @@ class MEC_skin_map extends MEC_skins
215
  $this->sf = $this->request->getVar('sf', array());
216
  $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
217
  $atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
218
-
219
  // Initialize the skin
220
  $this->initialize($atts);
221
 
112
 
113
  // Start Date
114
  $this->start_date = $this->get_start_date();
115
+
116
+ // End Date
117
+ $this->end_date = ((isset($this->atts['date-range-end']) and trim($this->atts['date-range-end'])) ? $this->atts['date-range-end'] : NULL);
118
+ if(!$this->end_date and isset($this->sf['month']) and trim($this->sf['month']) and isset($this->sf['year']) and trim($this->sf['year'])) $this->end_date = date('Y-m-t', strtotime($this->sf['year'].'-'.$this->sf['month'].'-01'));
119
  }
120
 
121
  /**
135
  elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_current_month') $date = date('Y-m-d', strtotime('first day of this month'));
136
  elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'start_next_month') $date = date('Y-m-d', strtotime('first day of next month'));
137
  elseif(isset($this->skin_options['start_date_type']) and $this->skin_options['start_date_type'] == 'date') $date = date('Y-m-d', strtotime($this->skin_options['start_date']));
138
+
139
  // Hide past events
140
  if(isset($this->atts['show_past_events']) and !trim($this->atts['show_past_events']))
141
  {
156
  $events = array();
157
  $sorted = array();
158
 
159
+ $yesterday = ($this->end_date ? $this->start_date : date('Y-m-d', strtotime('Yesterday', strtotime($this->start_date))));
160
 
161
  // The Query
162
  $query = new WP_Query($this->args);
178
  $data->date = isset($data->dates[0]) ? $data->dates[0] : array();
179
 
180
  if(strtotime($data->date['end']['date']) < strtotime($this->start_date)) continue;
181
+ if($this->end_date and strtotime($data->date['start']['date']) > strtotime($this->end_date)) continue;
182
 
183
  if($this->hide_time_method == 'end' and strtotime($data->date['end']['date']) < strtotime($this->start_date)) continue;
184
  elseif($this->hide_time_method != 'end')
220
  $this->sf = $this->request->getVar('sf', array());
221
  $apply_sf_date = $this->request->getVar('apply_sf_date', 1);
222
  $atts = $this->sf_apply($this->request->getVar('atts', array()), $this->sf, $apply_sf_date);
223
+
224
  // Initialize the skin
225
  $this->initialize($atts);
226
 
app/skins/monthly_view/calendar_clean.php CHANGED
@@ -94,7 +94,7 @@ $events_str = '';
94
  {
95
  $events_str .= '<div class="mec-price-details">
96
  <i class="mec-sl-wallet"></i>
97
- <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']).'</span>
98
  </div>';
99
  }
100
 
@@ -163,7 +163,7 @@ $events_str = '';
163
  {
164
  $events_str .= '<div class="mec-price-details">
165
  <i class="mec-sl-wallet"></i>
166
- <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']).'</span>
167
  </div>';
168
  }
169
 
@@ -258,7 +258,7 @@ $events_str = '';
258
  {
259
  $events_str .= '<div class="mec-price-details">
260
  <i class="mec-sl-wallet"></i>
261
- <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']).'</span>
262
  </div>';
263
  }
264
 
94
  {
95
  $events_str .= '<div class="mec-price-details">
96
  <i class="mec-sl-wallet"></i>
97
+ <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']).'</span>
98
  </div>';
99
  }
100
 
163
  {
164
  $events_str .= '<div class="mec-price-details">
165
  <i class="mec-sl-wallet"></i>
166
+ <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']).'</span>
167
  </div>';
168
  }
169
 
258
  {
259
  $events_str .= '<div class="mec-price-details">
260
  <i class="mec-sl-wallet"></i>
261
+ <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']).'</span>
262
  </div>';
263
  }
264
 
app/skins/monthly_view/calendar_novel.php CHANGED
@@ -85,7 +85,7 @@ elseif($week_start == 5) // Friday
85
  {
86
  echo '<div class="mec-price-details">
87
  <i class="mec-sl-wallet"></i>
88
- <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']).'</span>
89
  </div>';
90
  }
91
 
85
  {
86
  echo '<div class="mec-price-details">
87
  <i class="mec-sl-wallet"></i>
88
+ <span>'.(is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']).'</span>
89
  </div>';
90
  }
91
 
app/skins/monthly_view/calendar_simple.php CHANGED
@@ -74,6 +74,8 @@ elseif($week_start == 5) // Friday
74
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
75
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
76
 
 
 
77
  // Event Content
78
  if(!$this->cache->has($event->data->ID.'_content'))
79
  {
@@ -83,7 +85,7 @@ elseif($week_start == 5) // Friday
83
  else $event_content = $this->cache->get($event->data->ID.'_content');
84
 
85
  echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
86
- echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event->data->ID.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'" '.$target_url.'>';
87
  echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation);
88
  do_action('mec_shortcode_virtual_badge', $event->data->ID);
89
  echo '</a>';
@@ -98,7 +100,7 @@ elseif($week_start == 5) // Friday
98
  // Event Content
99
  if(!$this->cache->has($event->data->ID.'_cost'))
100
  {
101
- $event_cost = (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']);
102
  $this->cache->set($event->data->ID.'_cost', $event_cost);
103
  }
104
  else $event_cost = $this->cache->get($event->data->ID.'_cost');
@@ -120,7 +122,7 @@ elseif($week_start == 5) // Friday
120
  do_action('mec_schema', $event);
121
 
122
  echo '<div class="tooltip_templates event-single-content-simple">
123
- <div id="mec-tooltip-'.$event->data->ID.'-'.$day_id.'">
124
  '.$tooltip_content.'
125
  </div>
126
  </div>';
74
  $start_time = (isset($event->data->time) ? $event->data->time['start'] : '');
75
  $end_time = (isset($event->data->time) ? $event->data->time['end'] : '');
76
 
77
+ $event_unique = (isset($event->data->time) ? $event->data->ID.$event->data->time['start_timestamp'] : $event->data->ID);
78
+
79
  // Event Content
80
  if(!$this->cache->has($event->data->ID.'_content'))
81
  {
85
  else $event_content = $this->cache->get($event->data->ID.'_content');
86
 
87
  echo '<div class="'.((isset($event->data->meta['event_past']) and trim($event->data->meta['event_past'])) ? 'mec-past-event ' : '').'ended-relative simple-skin-ended">';
88
+ echo '<a class="mec-monthly-tooltip event-single-link-simple" data-tooltip-content="#mec-tooltip-'.$event_unique.'-'.$day_id.'" data-event-id="'.$event->data->ID.'" href="'.$this->main->get_event_date_permalink($event, $event->date['start']['date']).'" '.$target_url.'>';
89
  echo '<h4 class="mec-event-title">'.$event->data->title.'</h4>'.$this->main->get_normal_labels($event, $display_label).$this->main->display_cancellation_reason($event, $reason_for_cancellation);
90
  do_action('mec_shortcode_virtual_badge', $event->data->ID);
91
  echo '</a>';
100
  // Event Content
101
  if(!$this->cache->has($event->data->ID.'_cost'))
102
  {
103
+ $event_cost = (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']);
104
  $this->cache->set($event->data->ID.'_cost', $event_cost);
105
  }
106
  else $event_cost = $this->cache->get($event->data->ID.'_cost');
122
  do_action('mec_schema', $event);
123
 
124
  echo '<div class="tooltip_templates event-single-content-simple">
125
+ <div id="mec-tooltip-'.$event_unique.'-'.$day_id.'">
126
  '.$tooltip_content.'
127
  </div>
128
  </div>';
app/skins/single.php CHANGED
@@ -1059,7 +1059,7 @@ class MEC_skin_single extends MEC_skins
1059
  <div class="mec-event-cost">
1060
  <i class="mec-sl-wallet"></i>
1061
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
1062
- <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></dd>
1063
  </div>
1064
  <?php
1065
  echo '</div>';
1059
  <div class="mec-event-cost">
1060
  <i class="mec-sl-wallet"></i>
1061
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
1062
+ <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></dd>
1063
  </div>
1064
  <?php
1065
  echo '</div>';
app/skins/single/default.php CHANGED
@@ -7,14 +7,13 @@ wp_enqueue_style('mec-lity-style', $this->main->asset('packages/lity/lity.min.cs
7
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
8
 
9
  $booking_options = get_post_meta(get_the_ID(), 'mec_booking', true);
 
10
 
11
  //Compatibility with Rank Math
12
  $rank_math_options = '';
13
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
14
  if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php')) $rank_math_options = get_post_meta(get_the_ID(), 'rank_math_rich_snippet', true);
15
 
16
- if(!is_array($booking_options)) $booking_options = array();
17
-
18
  $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users']) ? $booking_options['bookings_limit_for_users'] : 0;
19
  ?>
20
  <div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
@@ -188,7 +187,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
188
  <div class="mec-event-cost">
189
  <i class="mec-sl-wallet"></i>
190
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
191
- <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></dd>
192
  </div>
193
  <?php
194
  }
@@ -428,7 +427,7 @@ $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users'])
428
  <div class="mec-event-cost">
429
  <i class="mec-sl-wallet"></i>
430
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
431
- <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></dd>
432
  </div>
433
  <?php
434
  }
7
  wp_enqueue_script('mec-lity-script', $this->main->asset('packages/lity/lity.min.js'));
8
 
9
  $booking_options = get_post_meta(get_the_ID(), 'mec_booking', true);
10
+ if(!is_array($booking_options)) $booking_options = array();
11
 
12
  //Compatibility with Rank Math
13
  $rank_math_options = '';
14
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
15
  if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php')) $rank_math_options = get_post_meta(get_the_ID(), 'rank_math_rich_snippet', true);
16
 
 
 
17
  $bookings_limit_for_users = isset($booking_options['bookings_limit_for_users']) ? $booking_options['bookings_limit_for_users'] : 0;
18
  ?>
19
  <div class="mec-wrap <?php echo $event_colorskin; ?> clearfix <?php echo $this->html_class; ?>" id="mec_skin_<?php echo $this->uniqueid; ?>">
187
  <div class="mec-event-cost">
188
  <i class="mec-sl-wallet"></i>
189
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
190
+ <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></dd>
191
  </div>
192
  <?php
193
  }
427
  <div class="mec-event-cost">
428
  <i class="mec-sl-wallet"></i>
429
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
430
+ <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></dd>
431
  </div>
432
  <?php
433
  }
app/skins/single/m1.php CHANGED
@@ -59,7 +59,7 @@ if(!is_array($booking_options)) $booking_options = array();
59
  <div class="mec-event-cost">
60
  <i class="mec-sl-wallet"></i>
61
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
62
- <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></dd>
63
  </div>
64
  <?php
65
  }
59
  <div class="mec-event-cost">
60
  <i class="mec-sl-wallet"></i>
61
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
62
+ <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></dd>
63
  </div>
64
  <?php
65
  }
app/skins/single/modern.php CHANGED
@@ -103,6 +103,7 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
103
  <?php endif; ?>
104
  </div>
105
  <?php endif; ?>
 
106
  <!-- Speakers Module -->
107
  <?php if($single->found_value('event_speakers', $settings) == 'on') echo $this->main->module('speakers.details', array('event'=>$event)); ?>
108
 
@@ -183,6 +184,7 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
183
 
184
  </div>
185
  <?php endif; ?>
 
186
  <!-- Attendees List Module -->
187
  <?php if($single->found_value('attende_module', $settings) == 'on') echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
188
 
@@ -250,7 +252,7 @@ if(is_plugin_active('schema-markup-rich-snippets/schema-markup-rich-snippets.php
250
  <div class="mec-event-cost">
251
  <i class="mec-sl-wallet"></i>
252
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
253
- <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></dd>
254
  </div>
255
  <?php
256
  }
103
  <?php endif; ?>
104
  </div>
105
  <?php endif; ?>
106
+
107
  <!-- Speakers Module -->
108
  <?php if($single->found_value('event_speakers', $settings) == 'on') echo $this->main->module('speakers.details', array('event'=>$event)); ?>
109
 
184
 
185
  </div>
186
  <?php endif; ?>
187
+
188
  <!-- Attendees List Module -->
189
  <?php if($single->found_value('attende_module', $settings) == 'on') echo $this->main->module('attendees-list.details', array('event'=>$event)); ?>
190
 
252
  <div class="mec-event-cost">
253
  <i class="mec-sl-wallet"></i>
254
  <h3 class="mec-cost"><?php echo $this->main->m('cost', __('Cost', 'modern-events-calendar-lite')); ?></h3>
255
+ <dd class="mec-events-event-cost"><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></dd>
256
  </div>
257
  <?php
258
  }
app/skins/tile/render.php CHANGED
@@ -58,7 +58,7 @@ $map_events = array();
58
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
59
  <div class="mec-price-details">
60
  <i class="mec-sl-wallet"></i>
61
- <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
62
  </div>
63
  <?php endif; ?>
64
  </div>
58
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
59
  <div class="mec-price-details">
60
  <i class="mec-sl-wallet"></i>
61
+ <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></span>
62
  </div>
63
  <?php endif; ?>
64
  </div>
app/skins/weekly_view/render.php CHANGED
@@ -43,7 +43,7 @@ $reason_for_cancellation = isset($this->skin_options['reason_for_cancellation'])
43
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
44
  <div class="mec-price-details">
45
  <i class="mec-sl-wallet"></i>
46
- <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost']) : $event->data->meta['mec_cost']); ?></span>
47
  </div>
48
  <?php endif; ?>
49
  <?php echo $this->booking_button($event); ?>
43
  <?php if($this->display_price and isset($event->data->meta['mec_cost']) and $event->data->meta['mec_cost'] != ''): ?>
44
  <div class="mec-price-details">
45
  <i class="mec-sl-wallet"></i>
46
+ <span><?php echo (is_numeric($event->data->meta['mec_cost']) ? $this->main->render_price($event->data->meta['mec_cost'], $event->ID) : $event->data->meta['mec_cost']); ?></span>
47
  </div>
48
  <?php endif; ?>
49
  <?php echo $this->booking_button($event); ?>
assets/css/backend.css CHANGED
@@ -6567,13 +6567,16 @@ a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tab
6567
  }
6568
 
6569
  #mec-wrap h2.nav-tab-wrapper {
6570
- margin-bottom: 40px;
 
 
6571
  padding: 0;
 
6572
  border: none;
6573
  margin-top: 35px;
6574
  clear: both;
6575
  background: #fff;
6576
- box-shadow: 0 3px 12px -4px rgba(0,0,0,.13)
6577
  }
6578
 
6579
  #mec-wrap .nav-tab-wrapper .nav-tab {
@@ -6589,7 +6592,7 @@ a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tab
6589
  }
6590
 
6591
  #mec-wrap .nav-tab-wrapper .nav-tab:hover {
6592
- color: #008aff
6593
  }
6594
 
6595
  #mec-wrap .nav-tab-wrapper .nav-tab:after {
@@ -6604,13 +6607,14 @@ a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tab
6604
  }
6605
 
6606
  #mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover {
6607
- background: #008aff;
6608
- background: linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);
6609
- color: #fff;
6610
  outline: 0;
6611
- box-shadow: 0 5px 25px -7px #008aff;
6612
  margin-left: -1px;
6613
- z-index: 2
 
 
 
 
6614
  }
6615
 
6616
  #mec-wrap .nav-tab-wrapper .nav-tab-active:after {
@@ -6626,7 +6630,7 @@ a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tab
6626
  width: 0;
6627
  border-width: 10px;
6628
  border-style: solid;
6629
- border-color: #008aff transparent transparent
6630
  }
6631
 
6632
  #mec-wrap .mec-container {
@@ -6635,24 +6639,44 @@ a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tab
6635
  }
6636
 
6637
  #wpwrap .mec-button-primary {
6638
- color: #fff;
6639
- font-weight: 500;
6640
- border-radius: 2px;
6641
- box-shadow: 0 3px 10px -4px #008aff;
6642
  text-shadow: none;
6643
- background: #008aff;
6644
- background: linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);
 
6645
  border: none;
6646
- transition: .24s
 
 
 
6647
  }
6648
 
6649
  #wpwrap .mec-button-primary:hover {
6650
- background: #222;
6651
- background: linear-gradient(95deg,#555 0,#222 50%,#000 100%);
6652
- box-shadow: 0 5px 15px -7px rgba(0,0,0,.5);
6653
  cursor: pointer
6654
  }
6655
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6656
  .wn-p-t-right {
6657
  min-width: 300px;
6658
  max-width: 400px;
6567
  }
6568
 
6569
  #mec-wrap h2.nav-tab-wrapper {
6570
+ margin-bottom: 0;
6571
+ position: relative;
6572
+ z-index: 8;
6573
  padding: 0;
6574
+ border-radius: 5px 5px 0 0;
6575
  border: none;
6576
  margin-top: 35px;
6577
  clear: both;
6578
  background: #fff;
6579
+ box-shadow: 0 1px 0 0 #ededed;
6580
  }
6581
 
6582
  #mec-wrap .nav-tab-wrapper .nav-tab {
6592
  }
6593
 
6594
  #mec-wrap .nav-tab-wrapper .nav-tab:hover {
6595
+ color: #07bbe9;
6596
  }
6597
 
6598
  #mec-wrap .nav-tab-wrapper .nav-tab:after {
6607
  }
6608
 
6609
  #mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover {
6610
+ background: #ecf9fd;
 
 
6611
  outline: 0;
 
6612
  margin-left: -1px;
6613
+ z-index: 2;
6614
+ border: 1px solid #ccecf4;
6615
+ color: #07bbe9;
6616
+ border-radius: 5px;
6617
+ margin-bottom: -1px;
6618
  }
6619
 
6620
  #mec-wrap .nav-tab-wrapper .nav-tab-active:after {
6630
  width: 0;
6631
  border-width: 10px;
6632
  border-style: solid;
6633
+ border-color: #ecf9fd transparent transparent;
6634
  }
6635
 
6636
  #mec-wrap .mec-container {
6639
  }
6640
 
6641
  #wpwrap .mec-button-primary {
6642
+ box-shadow: 0 0 0 4px #e4ffe6;
 
 
 
6643
  text-shadow: none;
6644
+ margin-right: 5px;
6645
+ background: #64e385;
6646
+ color: #fff;
6647
  border: none;
6648
+ cursor: pointer;
6649
+ padding: 2px 22px;
6650
+ border-radius: 22px;
6651
+ font-weight: 500;
6652
  }
6653
 
6654
  #wpwrap .mec-button-primary:hover {
6655
+ box-shadow: 0 0 0 4px rgb(0 0 0 / 10%);
6656
+ background: #4d5051;
6657
+ border-color: #4d5051;
6658
  cursor: pointer
6659
  }
6660
 
6661
+ #mec-wrap .nav-tab-wrapper .nav-tab-active:before {
6662
+ content: '';
6663
+ position: absolute;
6664
+ display: block;
6665
+ background: 0 0;
6666
+ top: auto;
6667
+ height: auto;
6668
+ bottom: -24px;
6669
+ left: 50%;
6670
+ margin-left: -12px;
6671
+ width: 0;
6672
+ border-width: 12px;
6673
+ border-style: solid;
6674
+ border-color: #ccecf4 transparent transparent;
6675
+ }
6676
+ .ui-datepicker.ui-widget select {
6677
+ border-color: #e7e8e9;
6678
+ }
6679
+
6680
  .wn-p-t-right {
6681
  min-width: 300px;
6682
  max-width: 400px;
assets/css/backend.min.css CHANGED
@@ -2,4 +2,4 @@
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#07bbe9!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;border-radius:2px 2px 5px 5px;box-shadow:0 2px 6px 0 rgb(0 0 0 / 3%);border:1px solid #e2e3e4}.w-box-child.mec-addon-box{padding:0}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding:20px 20px 8px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;border-radius:1px;padding:0 8px;font-family:monospace;background:#f4f7f7;color:#00a1b7;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px;color:#27272a;letter-spacing:-.2px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content{padding:0 20px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}.mec-addon-box-pro{display:inline-block;background:#ff7d5f;color:#fff;font-weight:600;font-size:11px;letter-spacing:.2px;line-height:21px;padding:0 8px;border-radius:3px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{border-top:1px solid #e8e8e8;background:#f4f7f7;border-radius:0 0 4px 4px;padding:2px 1px 3px;margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;background:0 0;margin:0;box-shadow:none}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro:hover{box-shadow:0 2px 8px -3px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);box-shadow:0 2px 8px -3px #008aff;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#00cae6;font-size:16px}#webnus-dashboard .mec-addon-box-footer a:hover i{color:#fff}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:575px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}.mec-ticket-id{font-size:12px;line-height:12px;font-weight:400;color:#07bbe9;padding:0 0 8px;margin-top:-6px;margin-bottom:14px;cursor:default}.mec-ticket-end-time.mec-col-12 .mec-time-span,.mec-ticket-start-time.mec-col-12 .mec-time-span{min-width:80px;display:inline-block}.mec-ticket-start-time{margin-bottom:20px}.mec-ticket-time{min-width:69px;display:inline-block}.mec-stop-selling-tickets{min-width:185px}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:290px}@media(max-width:1366px){#mec_meta_box_hourly_schedule_days .mec-box.mec-form-row input[type=text]{max-width:150px;min-width:110px}}#mec_exceptions_not_in_days_date{width:100%}#mec-event-data input[type=date],#mec-event-data input[type=email],#mec-event-data input[type=tel],#mec-event-data input[type=text],#mec-event-data input[type=url],#mec-event-data select,#mec-event-data textarea,#mec_exceptions_not_in_days_date,#mec_meta_box_date_form input[type=text],#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{max-width:290px}#mec-event-data input[type=text].mec_date_picker.mec-col-4 #mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:90%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:transparent padding: 8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box{min-width:290px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-2-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-2-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#e6e9eb;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px;border-radius:0 2px 2px 0;box-shadow:0 2px 4px rgba(0,0,0,.03)}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#d6d9db;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#666c75;opacity:1;font-size:13px;font-weight:400;padding:6px 4px 5px 26px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a:hover{color:#000;background:#f7f8f9}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left{min-width:200px}@media(max-width:1366px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left{min-width:137px}}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{background:#f7f8f9}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e3e5e7;background:0 0;border:solid;border-width:1px 0 1px 0;border-color:transparent;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;border-radius:0;transition:all .2s ease}.mec-add-booking-tabs-left a:first-of-type,.mec-add-event-tabs-left a:first-of-type,.mec-create-shortcode-tabs-left a:first-of-type{border-top:none}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{background:#fff;color:#07bbe9}.mec-add-booking-tabs-left a:focus,.mec-add-event-tabs-left a:focus,.mec-create-shortcode-tabs-left a:focus{box-shadow:none;outline:unset}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#ecf9fd;color:#07bbe9;border-color:#ccecf4;position:relative;padding-left:22px}.inside div div>a.mec-tab-active:after,.inside div div>a.mec-tab-active:before{position:absolute;z-index:9999;content:" ";height:0;width:0;border:8px solid transparent;border-right-color:#fff;right:-1px;top:13px}.inside div div>a.mec-tab-active:before{border-right-color:#d7d8d9;right:0}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media(max-width:1366px){.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 15px 20px}.mec-form-row select{min-width:60px}}@media (min-width:1199px) and (max-width:1280px){.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 0 0 10px}#mec_meta_box_hourly_schedule_days{padding:0 40px 0 0}#mec_meta_box_hourly_schedule_days .mec-form-row.mec-box{margin-right:-40px}#mec_comment,#mec_cost,#mec_countdown_method,#mec_event_timezone,#mec_public,#mec_repeat_type{min-width:220px;width:220px}#mec_meta_box_hourly_schedule_days .mec-box.mec-form-row input[type=text]{max-width:120px}.mec-form-row .mec-time-picker select{min-width:60px}#mec_countdown_method,#mec_repeat_type{min-width:220px;width:220px}#mec_exceptions_in_days_container .mec-col-4{width:25%}#mec_exceptions_in_days_container .mec-col-3{width:50%}#mec_exceptions_in_days_container .mec-col-5{width:20%}#mec_exceptions_in_days_container input[type=text]{width:95%}#mec_repeat_certain_weekdays_container label:not(.mec-col-3){display:block;padding-left:25%}}@media (max-width:1023px){.post-type-mec-events h4{margin-top:20px}.post-type-mec-events .mec-form-row{padding-bottom:20px}.post-type-mec-events .mec-form-row .mec-form-row{padding:0}.post-type-mec-events .mec-form-row .mec-col-1,.post-type-mec-events .mec-form-row .mec-col-10,.post-type-mec-events .mec-form-row .mec-col-11,.post-type-mec-events .mec-form-row .mec-col-12,.post-type-mec-events .mec-form-row .mec-col-2,.post-type-mec-events .mec-form-row .mec-col-3,.post-type-mec-events .mec-form-row .mec-col-4,.post-type-mec-events .mec-form-row .mec-col-5,.post-type-mec-events .mec-form-row .mec-col-6,.post-type-mec-events .mec-form-row .mec-col-7,.post-type-mec-events .mec-form-row .mec-col-8,.post-type-mec-events .mec-form-row .mec-col-9{display:block;width:100%;margin:20px 0 0 0;max-width:285px}.post-type-mec-events .mec-add-booking-tabs-left,.post-type-mec-events .mec-add-event-tabs-left{min-width:180px}.post-type-mec-events .mec-add-booking-tabs-left a,.post-type-mec-events .mec-add-event-tabs-left a,.post-type-mec-events .mec-create-shortcode-tabs-left a{padding-left:10px}#mec_repeat_type,.post-type-mec-events #mec_settings_fes_thankyou_page_url,.post-type-mec-events .mec-form-row .mec-col-4 input[type=number],.post-type-mec-events .mec-form-row .mec-col-4 input[type=text],.post-type-mec-events .mec-form-row .mec-col-4 select,.post-type-mec-events .mec-form-row .mec-col-4 textarea{width:100%;max-width:255px}#mec-exceptional-days .mec-certain-day>div,#mec_exceptions_in_days_container .mec-certain-day>div{width:100%;max-width:255px;padding:12px;margin:20px 10px 0 0;border-radius:8px}.mec-certain-day .mec-in-days-day,.mec-certain-day>div .mec-not-in-days-day{line-height:21px;font-size:10px}#mec_repeat_certain_weekdays_container label{display:block;margin:20px 0 20px 0}}@media (max-width:640px){.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:block}.post-type-mec-events .mec-add-booking-tabs-left,.post-type-mec-events .mec-add-event-tabs-left{min-width:100%;width:100%!important;display:block!important;float:unset;margin:0;flex:unset;height:auto}.post-type-mec-events .mec-add-booking-tabs-right,.post-type-mec-events .mec-add-event-tabs-right,.post-type-mec-events .mec-create-shortcode-tabs-right{display:block;min-width:100%;width:100%;margin:0;flex:unset}.post-type-mec-events .mec-add-booking-tabs-left a,.post-type-mec-events .mec-add-event-tabs-left a,.post-type-mec-events .mec-create-shortcode-tabs-left a{font-size:14px;padding:14px 10px 14px 15px;line-height:1.2;letter-spacing:0}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding-left:10px;padding-right:10px}#mec_tickets .mec-box{max-width:290px}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label,.mec-form-row .mec-col-9 label{padding-right:20px}@media(min-width:860px) and (max-width:1280px){.mec-form-row .mec-col-9 label{padding-right:12px}}#mec-event-data .mec-form-row label{margin-right:14px}.mec-form-row input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=date],.mec-form-row input[type=email],.mec-form-row input[type=number],.mec-form-row input[type=tel],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-occurrences-wrapper input[type=date],.mec-occurrences-wrapper input[type=email],.mec-occurrences-wrapper input[type=number],.mec-occurrences-wrapper input[type=tel],.mec-occurrences-wrapper input[type=text],.mec-occurrences-wrapper input[type=url],.mec-occurrences-wrapper select,.mec-occurrences-wrapper textarea{border:none;background-color:#f7f8f9;border-radius:5px;height:38px;line-height:38px;padding-left:10px;box-shadow:inset 0 1px 2px rgb(0 0 0 / 7%)}.mec-calendar-metabox .wn-mec-select,.mec-form-row select,.post-type-mec-events .mec-form-row select,.post-type-mec_calendars .mec-form-row select,.wns-be-main .mec-form-row select{appearance:none;-webkit-appearance:none;-moz-appearance:none;cursor:pointer;min-height:34px;line-height:34px;background-color:#f7f8f9;border-radius:2px;padding-left:8px;box-shadow:0 1px 3px rgb(0 0 0 / 2%);transition:all .23s ease;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDE3IDE3Ij4KPGc+CjwvZz4KCTxwYXRoIGQ9Ik0xNi4zNTQgNS4wNzVsLTcuODU1IDcuODU0LTcuODUzLTcuODU0IDAuNzA3LTAuNzA3IDcuMTQ1IDcuMTQ2IDcuMTQ4LTcuMTQ3IDAuNzA4IDAuNzA4eiIgZmlsbD0iIzAwMDAwMCIgLz4KPC9zdmc+Cg==);background-repeat:no-repeat;background-size:26px 10px;background-position:right center;min-width:160px;border:1px solid #e6e9eb}.post-type-mec-events .mec-form-row .mec-time-picker select,.post-type-mec-events .wn-ticket-time select{min-width:60px;margin-bottom:10px}.wns-be-main .mec-col-4 select{min-width:unset}.mec-form-row .nice-select{background-image:unset}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.m-e-calendar_page_MEC-settings .mec-form-row input+span.mec-tooltip,.m-e-calendar_page_MEC-settings .mec-form-row select+span.mec-tooltip{bottom:15px}.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 .tooltip-move-up span+span.mec-tooltip i{margin-top:-40px}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:0 0 40px 0}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;width:4rem;margin:-10px 0 0 0!important}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#07bbe9}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#07bbe9}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:0 -30px 0;background:#fff;box-shadow:inset 0 6px 7px -2px rgb(0 0 0 / 4%);border-top:1px solid #eee;cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-size:14px;color:#888;cursor:default}#mec_calendar_display_options .mec-tooltip{bottom:1px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}#mec_add_fee_button,#mec_add_ticket_variation_button,#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,#taxes_option #mec_fees_list .mec-form-row .button,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button,.mec-export-settings,.mec-import-settings,.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result),.mec-occurrences-wrapper .button:not(.wp-color-result){border-radius:25px;border:1px solid #d1e5ec;text-shadow:none;padding:0 16px;height:35px;letter-spacing:.2px;margin-right:5px;background:#fff;color:#07bbe9;box-shadow:0 1px 5px -1px rgb(0 0 0 / 5%);transition:all .2s ease}.mec-export-settings,.mec-import-settings{padding:11px 16px;text-decoration:none}#mec_add_fee_button:hover,#mec_add_ticket_variation_button:hover,#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button:hover,.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result):hover,.mec-occurrences-wrapper .button:not(.wp-color-result):hover{background:#f0f9fc}#taxes_option #mec_fees_list .mec-form-row .button,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button{margin:0}#mec-hourly-schedule .mec-form-row .mec-col-1 .button,#mec-hourly-schedule .mec-form-row.mec-box .button,#taxes_option #mec_fees_list .mec-form-row .button,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button{color:#ea6485;border-color:#ea6485}#mec-hourly-schedule .mec-form-row .mec-col-1 .button:hover,#mec-hourly-schedule .mec-form-row.mec-box .button:hover,#taxes_option #mec_fees_list .mec-form-row .button:hover,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button:hover{background:rgb(234 100 133 / .1)}#mec-hourly-schedule .mec-hourly-schedule-form-speakers{margin-top:20px}#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button{margin-top:12px}#mec_meta_box_downloadable_file_options input[type=file]{max-width:166px;text-align:center;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3;margin-bottom:12px;height:44px;text-decoration:none;padding:0 15px 1px;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;box-shadow:0 2px 6px -3px #cfeff5}#mec_meta_box_downloadable_file_options input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}#mec_meta_box_downloadable_file_options input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}#mec_meta_box_downloadable_file_options input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-occurrences .mec-occurrences-list{margin-top:12px}#mec-occurrences .mec-occurrences-list h3{margin-top:0}#mec-occurrences .mec-occurrences-list .mec-form-row{margin-bottom:0}#mec-occurrences .mec-occurrences-list .mec-form-row label{line-height:40px;width:120px;display:inline-block;margin:0}#mec-occurrences .mec-occurrences-list .mec-form-row .event-status-schema label{width:auto;min-width:160px}#mec-occurrences .mec-occurrences-list .mec-form-row .event-status-schema p{border:unset;padding-left:0;margin-left:0}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f7f8f9;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:36px;padding:3px 10px 0 38px}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:16px;top:13px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}#wns-be-content .noresults label,#wns-be-content .results .results .noresults label{color:#000}#wns-be-content .results .results .results label,#wns-be-content .results label,#wns-be-content ul li.enable,#wns-be-content ul li.enable label{color:#07bbe9}#wns-be-content ul li.disable,#wns-be-content ul li.disable label{color:#e7e7e7}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:40px;padding:0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 3px 12px -4px rgba(0,0,0,.13)}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#008aff}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;outline:0;box-shadow:0 5px 25px -7px #008aff;margin-left:-1px;z-index:2}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#008aff transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s}#wpwrap .mec-button-primary:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 15px -7px rgba(0,0,0,.5);cursor:pointer}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}@media(max-width:1366px){#webnus-dashboard .fserv-container form{padding:0!important;padding:0 28px 40px 28px!important}#webnus-dashboard .fserv-form .fserv-field{width:33%!important}#webnus-dashboard .fserv-form .fserv-button-submit{margin-left:-2px!important}}@media(max-width:960px){#webnus-dashboard .fserv-container form{padding:0!important;padding:0 28px 40px 28px!important}#webnus-dashboard .fserv-form .fserv-field{width:100%!important}#webnus-dashboard .fserv-form .fserv-button-submit{margin-left:-2px!important}}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{font-weight:500;border-radius:2px;text-shadow:none;box-shadow:0 1px 3px rgba(0,0,0,.06);background:#fff;background:linear-gradient(95deg,#fff 0,#fff 50%,#fff 100%)!important;border:1px solid #e7e7e7;transition:.24s}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .total-bookings button,button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}#webnus-dashboard .total-bookings button{line-height:39px;padding:0 36px}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover{color:#fff!important}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover,#webnus-dashboard .total-bookings button:hover,button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-dashboard{width:fit-content;margin-right:22px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-dashboard a,.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-dashboard a i,.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-add-shortcode-popup .mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-event-popup button.lity-close,.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-event-popup button.lity-close:hover,.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}.lity.mec-add-event-popup{background-color:#b7e4e3}.mec-add-event-popup .lity-container{width:930px;height:620px;max-width:unset}.mec-add-event-popup div#mec_popup_event{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.lity.mec-add-event-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}div#mec_popup_event_form{height:calc(100% - 37px)}.mec-add-event-popup .mec-steps-container ul{margin-top:42px}.mec-add-event-popup .mec-steps-container ul li:first-of-type{height:41px}.mec-add-shortcode-popup .mec-steps-container ul li:after,.mec-add-shortcode-popup .mec-steps-container ul li:before{height:24px}.mec-add-event-popup .mec-steps-container ul li:after,.mec-add-event-popup .mec-steps-container ul li:before{height:19px}.mec-add-event-popup .mec-steps-container ul li{height:60px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup{box-shadow:0 3px 22px 0 rgba(11,121,125,.01);border:none;clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;box-sizing:border-box;cursor:pointer;display:block;float:left;font-family:inherit;font-size:12px;font-weight:400;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;height:46px;margin-right:6px;padding-top:3px;color:#707070}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open{border-radius:3px 3px 0 0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background-color:#fff;border-radius:0 0 3px 3px;box-shadow:0 0 0 0 rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9;margin-top:1px!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:after{border-bottom:2px solid #00acf8;border-right:2px solid #00acf8;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:15px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:22px!important;min-height:22px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/add-event-first-step.png) no-repeat 100% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name{width:100%;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::-webkit-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name:-ms-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:210px;position:absolute;width:370px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-event-popup .mec-meta-box-colors-container{background:#fff;padding:17px;border-radius:3px;box-shadow:0 3px 22px rgba(11,121,125,.01);margin-top:15px}.mec-add-event-popup .wp-picker-container .wp-color-result.button{border-color:#f1f2f4;border-radius:3px;box-shadow:0 2px 2px rgba(0,0,0,.04)}.mec-add-event-popup .mec-recent-color-sec{display:block!important;font-size:12px;color:#707070}.mec-add-event-popup .mec-form-row.mec-available-color-row{border:2px dashed #dce2e3;padding:13px 20px;background:#fcfcfc;border-radius:3px}.mec-add-event-popup .wp-color-result-text{background:#f7f7f7;border-radius:unset;border-left:none;color:#555;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.mec-add-event-popup .mec-form-row.mec-available-color-row .mec-color{width:12px;height:12px;position:absolute;top:-5px;left:0;z-index:99}.mec-add-event-popup span.mec-color-meta-box-popup{display:inline-block!important;width:20px;height:20px;border-radius:50px;position:absolute;top:1px;left:6px;z-index:9}.mec-add-event-popup span.mec-recent-color-sec-wrap{width:20px;height:20px;display:inline-block;margin-right:12px;margin-top:7px;margin-left:-6px;position:relative}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2{background:url(../../assets/img/popup/sixth-step.png) no-repeat 95% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4{width:auto}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4 input{padding-left:36px;width:148px;padding:22px 17px 22px 34px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form select{height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#707070;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-form-row .time-dv{float:left;margin-left:-2px;margin-right:4px;margin-top:12px;color:#b1b2b4}.mec-add-event-popup .mec-steps-content.mec-steps-content-2{margin-top:60px}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event label{font-size:14px;color:#707070}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event{margin-top:13px!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-3,.mec-add-event-popup .mec-steps-content.mec-steps-content-4{margin-top:-9px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-3{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/add-organizer.png) no-repeat 95% 70%}.nice-select.mec_popup_location_id.wn-mec-select-popup,.nice-select.mec_popup_organizer_id.wn-mec-select-popup{position:relative;width:166px;padding-left:36px}.nice-select.mec_popup_location_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}.nice-select.mec_popup_organizer_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}#mec_popup_event button#mec_popup_add_location:before,#mec_popup_event button#mec_popup_add_organizer:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_location_id.wn-mec-select-popup.open .list li,.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_organizer_id.wn-mec-select-popup.open .list li{line-height:32px!important;min-height:32px!important}#mec_popup_event .mec-steps-content .mec-tooltip{bottom:8px}#mec-location .mec-form-row span+span.mec-tooltip i,#mec-organizer .mec-form-row span+span.mec-tooltip i{margin-top:-18px}#mec_popup_event .mec-steps-content .mec-tooltip .dashicons-before:before{color:#008aff}#mec_popup_event button#mec_organizer_thumbnail_button,#mec_popup_event button#mec_popup_add_location,#mec_popup_event button#mec_popup_add_organizer{background:#008aff;border-radius:3px;border:none;color:#fff;width:146px;height:46px;margin-left:10px;box-shadow:0 3px 3px 0 rgba(0,138,255,.22);font-size:14px;cursor:pointer;transition:all .2s ease;outline:0;position:relative;padding-left:20px}#mec_popup_event button#mec_organizer_thumbnail_button:hover,#mec_popup_event button#mec_popup_add_location:hover,#mec_popup_event button#mec_popup_add_organizer:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}#mec_popup_event label[for=mec_location_dont_show_map]{font-size:14px;margin-left:4px;margin-top:12px!important;display:inline-block;margin-bottom:7px}#mec_popup_event input#mec_location_dont_show_map{margin-top:9px!important}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container{border-top:2px dashed #dce2e3;width:360px;padding-top:25px;margin-top:20px}#mec_popup_event div#mec_location_new_container input,#mec_popup_event div#mec_organizer_new_container input{width:100%;height:46px;border:none;border-radius:3px;padding-left:17px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}#mec_popup_event div#mec_location_new_container .description,#mec_popup_event div#mec_organizer_new_container .description{border:none;padding:0;margin:0;margin-left:16px;line-height:19px;font-size:12px;color:#707070;font-style:normal;margin-top:-4px;display:block}#mec_popup_event .mec-form-row.mec-lat-lng-row input{width:44%!important}#mec_popup_event .mec-form-row.mec-lat-lng-row input:first-of-type{margin-right:10px}#mec_popup_event div#mec_organizer_new_container{margin-top:30px}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6:first-of-type{margin-right:14px!important}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6{width:48%;margin:0}#mec_popup_event button#mec_organizer_thumbnail_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/picture.png) no-repeat center center;position:absolute;top:16px;left:15px}#mec_popup_event button#mec_organizer_thumbnail_button{width:96%;padding-left:30px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img{position:absolute;right:10px;top:-20px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img img{max-width:110px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input{height:30px;border:none;border-radius:3px;padding-left:10px;margin-left:20px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);float:right;margin-top:-4px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5{width:326px;margin-top:48px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:42px;color:#008aff;font-size:14px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li.mec-categories-tab-selected,.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li:hover{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3)}.mec-add-event-popup .mec-categories-tab-contents{background:#fff;padding:20px;border:2px dashed #dce2e3;margin-bottom:13px;margin-top:-5px}.mec-add-event-popup .mec-categories-tab-contents ul,.mec-add-event-popup .mec-categories-tab-contents ul li:last-of-type{margin:0}.mec-add-event-popup .mec-categories-tab-contents ul li{font-size:14px;color:#707070}.mec-add-event-popup .mec-categories-tab-contents.mec-form-row input[type=checkbox]{margin-top:0}.mec-add-event-popup .mec-categories-tab-contents{max-height:200px;overflow:hidden;overflow-y:scroll}.mec-add-event-popup .nice-select.mec_popup_location_id .list,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list{max-height:240px!important;overflow:hidden!important;overflow-y:scroll!important}.mec-add-event-popup .mec-categories-tab-contents::-webkit-scrollbar,.mec-add-event-popup .nice-select.mec_popup_location_id .list::-webkit-scrollbar,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list::-webkit-scrollbar{width:5px}.mec-add-event-popup .mec-categories-tab-contents::-webkit-scrollbar-track,.mec-add-event-popup .nice-select.mec_popup_location_id .list::-webkit-scrollbar-track,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list::-webkit-scrollbar-track{box-shadow:inset 0 0 6px rgba(0,0,0,.1)}.mec-add-event-popup .mec-categories-tab-contents::-webkit-scrollbar-thumb,.mec-add-event-popup .nice-select.mec_popup_location_id .list::-webkit-scrollbar-thumb,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list::-webkit-scrollbar-thumb{background-color:#008aff;outline:0 solid #fff}.mec-add-event-popup span#mec_popup_new_category_button{cursor:pointer;position:relative;padding-left:18px;font-size:14px}.mec-add-event-popup span#mec_popup_new_category_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus-blue.png) no-repeat center center;position:absolute;top:3px;left:0}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content.mec-steps-content-6.mec-steps-content-active{margin-top:-10px;height:70%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-tinymce.mce-container.mce-panel{height:100%;border:1px solid #ececec!important;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)!important;border-radius:3px!important;overflow:hidden}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{height:100%;background:#f5f5f5}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container *{border:none!important;box-shadow:none!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item{height:90%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-statusbar.mce-container.mce-panel.mce-stack-layout-item.mce-last{display:none!important}.mec-add-event-popup .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item iframe{height:100%!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active{height:70%;background:#fff;border:2px dashed #dce2e3;border-radius:3px;text-align:center;vertical-align:middle;margin-top:-10px;position:relative}.mec-add-event-popup .mec-event-popup-featured-image-wrapper{display:flex;justify-content:center;align-items:center;height:100%}.mec-add-event-popup button#mec_popup_upload_image_button{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:42px;font-size:14px;margin-right:0}.mec-add-event-popup div#mec_event_popup_featured_image_preview img{max-height:300px;max-width:740px;margin-top:20px;margin-bottom:0}.mec-add-event-popup button#mec_popup_upload_image_button:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-event-popup-featured-image-wrapper span i{border-radius:50px;color:#bb353f;right:10px;top:10px;font-size:30px;position:absolute;cursor:pointer}.mec-add-event-popup .mec-steps-content.mec-steps-content-8{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results .mec-steps-8-results-wrap{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-loading .mec-loader{left:calc(50% - 2.5em);top:calc(50% - 2.5em)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 22px 12px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:46px;font-size:14px;box-shadow:0 3px 3px 0 rgba(0,0,0,.04);text-decoration:none;color:#000;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:hover{background-color:#000;color:#fff}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/eye.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:11px 22px 11px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:46px;font-size:14px;margin-right:0;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-popup-final-buttons{margin-top:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results-wrap h3{font-size:26px;font-weight:400}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup{min-width:64px}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list{overflow-y:scroll!important;height:288px;margin-top:4px!important;box-shadow:0 1px 9px rgba(0,0,0,.1);border-radius:0}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-track{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar{width:3px;background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-thumb{background-color:rgba(26,175,251,.16)}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup:last-child .list{overflow:unset!important;height:unset}@media(max-width:1280px){.mec-add-event-popup .lity-container,.mec-add-shortcode-popup .lity-container{height:calc(100% - 110px);margin-bottom:-80px}.mec-add-event-popup .post-type-mec-events .mec-form-row{padding-bottom:12px}.mec-add-event-popup .mec-steps-panel .mec-add-event-popup .mec-steps-panel,.mec-add-shortcode-popup .mec-steps-panel .mec-add-event-popup .mec-steps-panel{padding:14px}.mec-add-event-popup .mec-steps-container img,.mec-add-event-popup .mec-steps-container ul,.mec-add-shortcode-popup .mec-steps-container img,.mec-add-shortcode-popup .mec-steps-container ul{margin-top:14px}.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li:first-of-type,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li:first-of-type{height:28px}.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li{height:46px}.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li:after,.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li:before,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li:after,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li:before{height:12px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:150px}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container{padding-top:12px;margin-top:12px}#mec_popup_event div#mec_location_new_container input,#mec_popup_event div#mec_organizer_new_container input{margin:0 0 3px 0}}@media(max-width:960px){.mec-steps-content-container{background-image:unset!important}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container,.mec-add-event-popup .mec-steps-content-container .mec-steps-content,.mec-add-shortcode-popup .mec-steps-content-container .mec-steps-content{width:100%!important;max-width:100%;position:unset!important;margin:0!important}.mec-add-event-popup .lity-container,.mec-add-shortcode-popup .lity-container,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:100%;max-width:100%}.mec-add-event-popup .mec-steps-panel,.mec-add-shortcode-popup .mec-steps-panel{overflow-x:scroll;padding:14px}.mec-add-event-popup .mec-steps-header,.mec-add-shortcode-popup .mec-steps-header{margin-bottom:30px}.mec-add-event-popup .mec-steps-header span.mec-steps-header-add-text,.mec-add-shortcode-popup .mec-steps-header span.mec-steps-header-add-text{display:block;margin-top:10px;width:100%}.mec-add-event-popup .mec-col-4,.mec-add-shortcode-popup .mec-col-4{width:100%!important;max-width:100%!important}.mec-add-event-popup #mec_popup_event button#mec_organizer_thumbnail_button,.mec-add-event-popup #mec_popup_event button#mec_popup_add_location,.mec-add-event-popup #mec_popup_event button#mec_popup_add_organizer,.mec-add-shortcode-popup #mec_popup_event button#mec_organizer_thumbnail_button,.mec-add-shortcode-popup #mec_popup_event button#mec_popup_add_location,.mec-add-shortcode-popup #mec_popup_event button#mec_popup_add_organizer{margin:10px 0 0 0}.mec-add-event-popup .mec-col-1,.mec-add-event-popup .mec-col-10,.mec-add-event-popup .mec-col-11,.mec-add-event-popup .mec-col-12,.mec-add-event-popup .mec-col-2,.mec-add-event-popup .mec-col-3,.mec-add-event-popup .mec-col-4,.mec-add-event-popup .mec-col-5,.mec-add-event-popup .mec-col-6,.mec-add-event-popup .mec-col-7,.mec-add-event-popup .mec-col-8,.mec-add-event-popup .mec-col-9,.mec-add-shortcode-popup .mec-col-1,.mec-add-shortcode-popup .mec-col-10,.mec-add-shortcode-popup .mec-col-11,.mec-add-shortcode-popup .mec-col-12,.mec-add-shortcode-popup .mec-col-2,.mec-add-shortcode-popup .mec-col-3,.mec-add-shortcode-popup .mec-col-4,.mec-add-shortcode-popup .mec-col-5,.mec-add-shortcode-popup .mec-col-6,.mec-add-shortcode-popup .mec-col-7,.mec-add-shortcode-popup .mec-col-8,.mec-add-shortcode-popup .mec-col-9{margin:0 0 10px 0}.mec-add-event-popup .mec-steps-content h3,.mec-add-shortcode-popup .mec-steps-content h3{font-size:18px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:480px;width:100%}}@media(max-width:320px){.mec-add-event-popup .mec-steps-container,.mec-add-shortcode-popup .mec-steps-container{display:none}.mec-add-event-popup .mec-steps-panel,.mec-add-shortcode-popup .mec-steps-panel{width:100%!important}}.ac-mec-events.ac-search-enabled .tablenav .ac-search>:not(#ac-s).lity-hide{display:none}.mec-go-pro-content-title{font-size:20px;font-weight:600;margin-bottom:12px}.mec-go-pro-features-wrap p{font-size:14px}.mec-go-pro-features-wrap .mec-addons-notification-box-content{width:calc(100% - 590px);display:inline-block;padding-left:20px}.mec-go-pro-features-wrap ul{float:left;width:50%;margin:0 0 12px}.mec-go-pro-features-wrap ul li{margin-bottom:1px;font-size:13px;color:#717479;padding-left:18px;position:relative}.mec-go-pro-features-wrap ul li:before{position:absolute;left:-1px;top:6px;color:#36da74;font-size:13px;font-weight:700;vertical-align:middle;font-family:simple-line-icons;border-radius:50%;padding:0;width:13px;height:13px;line-height:13px;z-index:3;background:rgba(64,241,147,.12);content:"\e080"}.post-type-mec-books.taxonomy-mec_coupon .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_category .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_label .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-post_tag .metabox-prefs .screen-options label,.taxonomy-mec_location .metabox-prefs .screen-options label,.taxonomy-mec_organizer .metabox-prefs .screen-options label,.taxonomy-mec_speaker .metabox-prefs .screen-options label{margin-top:-15px}.post-type-mec-books.taxonomy-mec_coupon #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_category #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_label #mec_thumbnail_img img,.post-type-mec-events.taxonomy-post_tag #mec_thumbnail_img img,.taxonomy-mec_location #mec_thumbnail_img img,.taxonomy-mec_organizer #mec_thumbnail_img img,.taxonomy-mec_speaker #mec_thumbnail_img img{margin:0 0 20px 0;border:solid 1px #ddd;border-radius:2px}.post-type-mec-books.taxonomy-mec_coupon .form-wrap label,.post-type-mec-events.taxonomy-mec_category .form-wrap label,.post-type-mec-events.taxonomy-mec_label .form-wrap label,.post-type-mec-events.taxonomy-post_tag .form-wrap label,.taxonomy-mec_location .form-wrap label,.taxonomy-mec_organizer .form-wrap label,.taxonomy-mec_speaker .form-wrap label{padding:0;margin:10px 0}.post-type-mec-books.taxonomy-mec_coupon input[type=number],.post-type-mec-books.taxonomy-mec_coupon input[type=search],.post-type-mec-books.taxonomy-mec_coupon input[type=text],.post-type-mec-books.taxonomy-mec_coupon input[type=url],.post-type-mec-books.taxonomy-mec_coupon select,.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category input[type=number],.post-type-mec-events.taxonomy-mec_category input[type=search],.post-type-mec-events.taxonomy-mec_category input[type=text],.post-type-mec-events.taxonomy-mec_category input[type=url],.post-type-mec-events.taxonomy-mec_category select,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label input[type=number],.post-type-mec-events.taxonomy-mec_label input[type=search],.post-type-mec-events.taxonomy-mec_label input[type=text],.post-type-mec-events.taxonomy-mec_label input[type=url],.post-type-mec-events.taxonomy-mec_label select,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag input[type=number],.post-type-mec-events.taxonomy-post_tag input[type=search],.post-type-mec-events.taxonomy-post_tag input[type=text],.post-type-mec-events.taxonomy-post_tag input[type=url],.post-type-mec-events.taxonomy-post_tag select,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location input[type=number],.taxonomy-mec_location input[type=search],.taxonomy-mec_location input[type=text],.taxonomy-mec_location input[type=url],.taxonomy-mec_location select,.taxonomy-mec_location textarea,.taxonomy-mec_organizer input[type=number],.taxonomy-mec_organizer input[type=search],.taxonomy-mec_organizer input[type=text],.taxonomy-mec_organizer input[type=url],.taxonomy-mec_organizer select,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker input[type=number],.taxonomy-mec_speaker input[type=search],.taxonomy-mec_speaker input[type=text],.taxonomy-mec_speaker input[type=url],.taxonomy-mec_speaker select,.taxonomy-mec_speaker textarea{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02);margin-bottom:15px}.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location textarea,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker textarea{min-height:86px}.post-type-mec-books.taxonomy-mec_coupon .button,.post-type-mec-books.taxonomy-mec_coupon .button-secondary,.post-type-mec-events.taxonomy-mec_category .button,.post-type-mec-events.taxonomy-mec_category .button-secondary,.post-type-mec-events.taxonomy-mec_label .button,.post-type-mec-events.taxonomy-mec_label .button-secondary,.post-type-mec-events.taxonomy-post_tag .button,.post-type-mec-events.taxonomy-post_tag .button-secondary,.taxonomy-mec_location .button,.taxonomy-mec_location .button-secondary,.taxonomy-mec_organizer .button,.taxonomy-mec_organizer .button-secondary,.taxonomy-mec_speaker .button{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:6px 22px}.post-type-mec-books.taxonomy-mec_coupon .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_category .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_label .mec_upload_image_button,.post-type-mec-events.taxonomy-post_tag .mec_upload_image_button,.taxonomy-mec_location .mec_upload_image_button,.taxonomy-mec_organizer .mec_upload_image_button,.taxonomy-mec_speaker .mec_upload_image_button{margin-bottom:20px}.post-type-mec-books.taxonomy-mec_coupon .button-secondary:focus,.post-type-mec-books.taxonomy-mec_coupon .button-secondary:hover,.post-type-mec-books.taxonomy-mec_coupon .button.focus,.post-type-mec-books.taxonomy-mec_coupon .button:focus,.post-type-mec-books.taxonomy-mec_coupon .button:hover,.post-type-mec-events.taxonomy-mec_category .button-secondary:focus,.post-type-mec-events.taxonomy-mec_category .button-secondary:hover,.post-type-mec-events.taxonomy-mec_category .button.focus,.post-type-mec-events.taxonomy-mec_category .button:focus,.post-type-mec-events.taxonomy-mec_category .button:hover,.post-type-mec-events.taxonomy-mec_label .button-secondary:focus,.post-type-mec-events.taxonomy-mec_label .button-secondary:hover,.post-type-mec-events.taxonomy-mec_label .button.focus,.post-type-mec-events.taxonomy-mec_label .button:focus,.post-type-mec-events.taxonomy-mec_label .button:hover,.post-type-mec-events.taxonomy-post_tag .button-secondary:focus,.post-type-mec-events.taxonomy-post_tag .button-secondary:hover,.post-type-mec-events.taxonomy-post_tag .button.focus,.post-type-mec-events.taxonomy-post_tag .button:focus,.post-type-mec-events.taxonomy-post_tag .button:hover,.taxonomy-mec_location .button-secondary:focus,.taxonomy-mec_location .button-secondary:hover,.taxonomy-mec_location .button.focus,.taxonomy-mec_location .button:focus,.taxonomy-mec_location .button:hover,.taxonomy-mec_organizer .button-secondary:focus,.taxonomy-mec_organizer .button-secondary:hover,.taxonomy-mec_organizer .button.focus,.taxonomy-mec_organizer .button:focus,.taxonomy-mec_organizer .button:hover,.taxonomy-mec_speaker .button-secondary:focus,.taxonomy-mec_speaker .button-secondary:hover,.taxonomy-mec_speaker .button.focus,.taxonomy-mec_speaker .button:focus,.taxonomy-mec_speaker .button:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer;color:#fff}.post-type-mec-events #TB_window{height:470px!important;top:calc(50% - 235px)!important}.post-type-mec-events #TB_ajaxContent{width:calc(100% - 30px)!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:105px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40.33333%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description{position:relative!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{background:url(../img/newsletter-document.png) no-repeat left top;content:"";width:100px;height:100px;position:absolute;top:96px;left:12px}.taxonomy-mec_category #TB_window{overflow:hidden}@media (max-width:480px){.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:90px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{top:100px;left:10px}}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result{background:0 0;text-align:right;padding:0 0 0 32px;border-radius:4px;box-shadow:unset;border:1px solid #ddd}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result .wp-color-result-text{height:30px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container input[type=text].wp-color-picker{width:70px;margin-top:-10px;height:32px}.post-type-mec-events.taxonomy-mec_label .wp-picker-default{height:32px;padding-top:2px;padding-bottom:2px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container .iris-picker{margin-top:-10px}.mec-admin-dark-mode #mec-wrap .nav-tab-wrapper .nav-tab,.mec-admin-dark-mode #mec-wrap h2.nav-tab-wrapper,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap h2.nav-tab-wrapper{background:#1f1f1f}.mec-admin-dark-mode #mec_bfixed_form_fields li,.mec-admin-dark-mode #mec_calendar_filter,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_booking,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_details,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #webnus-dashboard .mec-pro-notice .info-msg,.mec-admin-dark-mode .w-box,.mec-admin-dark-mode .w-box-content pre,.mec-admin-dark-mode .w-clearfix.w-box.mec-addons-notification-box-wrap span,.mec-admin-dark-mode .w-clearfix.w-box.mec-cmsg-2-notification-box-wrap span,.mec-admin-dark-mode .w-clearfix.w-box.mec-cmsg-notification-box-wrap span,.mec-admin-dark-mode .wns-be-main,.mec-admin-dark-mode .wns-be-main .mec-container,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-pro-notice .info-msg,.mec-admin-dark-mode.post-type-mec-books #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-books #screen-meta,.mec-admin-dark-mode.post-type-mec-books #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #mec_event_form_fields li,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields li,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{background:#1f1f1f;color:#fff}.mec-admin-dark-mode .mec-form-row .mec-box,.mec-admin-dark-mode .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-form-row ul.mec-message-categories li ul,.mec-admin-dark-mode .mec-meta-box-fields .mec-box,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a{background:#333;border-color:#353535;box-shadow:0 1px 6px -2px #000}.mec-admin-dark-mode #mec_bfixed_form_fields,.mec-admin-dark-mode #mec_bfixed_form_fields #mec_bfixed_form_fields li,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-form-row.mec-syn-schedule,.mec-admin-dark-mode.post-type-mec-events #mec_event_form_fields,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields,.mec-admin-dark-mode.post-type-mec-events .select2-search--dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-search--dropdown{background:#282828;border-color:#353535}.mec-admin-dark-mode .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#000}.mec-admin-dark-mode.post-type-mec-books ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-books ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.toplevel_page_mec-intro ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.toplevel_page_mec-intro ul#adminmenu>li.current>a.current:after{border-right-color:#23282d}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list{background:#000;box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .extra .w-box-head,.mec-admin-dark-mode .mec-form-row ul.mec-message-categories,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mce-btn-group:not(:first-child),.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-occurrences .mec-occurrences-list li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-custom-msg-notification-set-box.extra,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-books #screen-meta,.mec-admin-dark-mode.post-type-mec-books #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-books .postbox .hndle,.mec-admin-dark-mode.post-type-mec-books .postbox hr,.mec-admin-dark-mode.post-type-mec-books .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff .stuffbox>h3,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h2.hndle,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h3.hndle,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-editor-container,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option,.mec-admin-dark-mode.post-type-mec_calendars .mec-sed-methods li,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-editor-container,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{border-color:#353535}.mec-admin-dark-mode #mec_bfixed_form_fields input[type=checkbox],.mec-admin-dark-mode #mec_calendar_filter .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=number],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=text],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=url],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row select,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_details .mec-form-row select,.mec-admin-dark-mode #mec_metabox_details .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_details .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-admin-dark-mode .mec-addon-box-version,.mec-admin-dark-mode .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-form-row input[type=number],.mec-admin-dark-mode .mec-form-row input[type=radio],.mec-admin-dark-mode .mec-form-row input[type=text],.mec-admin-dark-mode .mec-form-row input[type=url],.mec-admin-dark-mode .mec-form-row select,.mec-admin-dark-mode .mec-form-row textarea,.mec-admin-dark-mode .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-go-pro,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-select-event-wrap .select2-container--default .select2-selection--single,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-form-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-send-email-form-wrap input.widefat,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option--highlighted[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-switch-editor,.mec-admin-dark-mode.m-e-calendar_page_MEC-report div.mce-toolbar-grp,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-invoice-custom-css,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields textarea,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields textarea,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields textarea,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #titlediv #title,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .quicktags-toolbar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default.select2-container--focus .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-results__option[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=email],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=password],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=search],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=url],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=checkbox],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=color],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=date],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime-local],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=email],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=month],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=password],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=radio],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=search],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=tel],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=time],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=url],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=week],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings textarea,.mec-admin-dark-mode.post-type-mec-books .wn-mec-select,.mec-admin-dark-mode.post-type-mec-books input[type=checkbox],.mec-admin-dark-mode.post-type-mec-books input[type=email],.mec-admin-dark-mode.post-type-mec-books input[type=number],.mec-admin-dark-mode.post-type-mec-books input[type=text],.mec-admin-dark-mode.post-type-mec-books input[type=url],.mec-admin-dark-mode.post-type-mec-books select,.mec-admin-dark-mode.post-type-mec-books textarea,.mec-admin-dark-mode.post-type-mec-events #mec_event_form_fields button,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_field_types button,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields button,.mec-admin-dark-mode.post-type-mec-events #titlediv #title,.mec-admin-dark-mode.post-type-mec-events .components-form-token-field__input-container,.mec-admin-dark-mode.post-type-mec-events .components-panel__body,.mec-admin-dark-mode.post-type-mec-events .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-certain-day>div,.mec-admin-dark-mode.post-type-mec-events .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .mec-xi-google-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .select2-dropdown,.mec-admin-dark-mode.post-type-mec-events .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec-events .wp-admin p label input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=color],.mec-admin-dark-mode.post-type-mec-events input[type=date],.mec-admin-dark-mode.post-type-mec-events input[type=datetime-local],.mec-admin-dark-mode.post-type-mec-events input[type=datetime],.mec-admin-dark-mode.post-type-mec-events input[type=email],.mec-admin-dark-mode.post-type-mec-events input[type=month],.mec-admin-dark-mode.post-type-mec-events input[type=number],.mec-admin-dark-mode.post-type-mec-events input[type=password],.mec-admin-dark-mode.post-type-mec-events input[type=radio],.mec-admin-dark-mode.post-type-mec-events input[type=search],.mec-admin-dark-mode.post-type-mec-events input[type=tel],.mec-admin-dark-mode.post-type-mec-events input[type=text],.mec-admin-dark-mode.post-type-mec-events input[type=time],.mec-admin-dark-mode.post-type-mec-events input[type=url],.mec-admin-dark-mode.post-type-mec-events input[type=week],.mec-admin-dark-mode.post-type-mec-events select,.mec-admin-dark-mode.post-type-mec-events textarea,.mec-admin-dark-mode.post-type-mec_calendars #titlediv #title,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.post-type-mec_calendars .select2-dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec_calendars input[type=checkbox],.mec-admin-dark-mode.post-type-mec_calendars input[type=color],.mec-admin-dark-mode.post-type-mec_calendars input[type=date],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime-local],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime],.mec-admin-dark-mode.post-type-mec_calendars input[type=email],.mec-admin-dark-mode.post-type-mec_calendars input[type=month],.mec-admin-dark-mode.post-type-mec_calendars input[type=number],.mec-admin-dark-mode.post-type-mec_calendars input[type=password],.mec-admin-dark-mode.post-type-mec_calendars input[type=radio],.mec-admin-dark-mode.post-type-mec_calendars input[type=search],.mec-admin-dark-mode.post-type-mec_calendars input[type=tel],.mec-admin-dark-mode.post-type-mec_calendars input[type=text],.mec-admin-dark-mode.post-type-mec_calendars input[type=time],.mec-admin-dark-mode.post-type-mec_calendars input[type=url],.mec-admin-dark-mode.post-type-mec_calendars input[type=week],.mec-admin-dark-mode.post-type-mec_calendars select,.mec-admin-dark-mode.post-type-mec_calendars textarea,.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[name=MECPurchaseCode],.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[type=radio]+label span,.mec-select-deselect-actions li{background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode .mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-admin-dark-mode .mec-sed-methods li:before{box-shadow:0 1px 6px -2px #000;border-color:#353535;background:#222}.mec-admin-dark-mode .mec-sed-methods li.active,.mec-admin-dark-mode .mec-switcher input+label,.mec-admin-dark-mode .mec-switcher input+label:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option{background-color:#000}.mec-admin-dark-mode .wn-mec-select .option.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option.selected.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option:hover .wn-img-sh img{background:0 0}.mec-admin-dark-mode .ui-datepicker{background-color:#000;border:1px solid #000;box-shadow:0 0 8px rgba(33,33,33,.6)}.mec-admin-dark-mode .ui-datepicker.ui-widget td a,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article .mec-detail-button,.mec-admin-dark-mode.post-type-mec-events,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2{color:#d2d2d2;background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul *{background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li,.mec-admin-dark-mode #mec_styles_form #mec_styles_CSS,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields{background:#000}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-admin-dark-mode .mec-active,.mec-admin-dark-mode.post-type-mec-events .select2-container--default .select2-results__option--highlighted[aria-selected]{background:#888!important}.mec-admin-dark-mode.post-type-mec_calendars .mec-calendar-metabox .wn-mec-select .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #353535,0 2px 6px rgba(0,0,0,.07)}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .ui-sortable-handle,.mec-admin-dark-mode #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .ui-sortable-handle,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_details .ui-sortable-handle,.mec-admin-dark-mode #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode .mec-meta-box-fields h4{border-color:#000!important}.mec-admin-dark-mode .wns-be-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.post-type-mec-events #wp-content-editor-tools,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .list{background-color:#282828;border-color:#353535}.mec-admin-dark-mode .mec-intro-section-ifarme iframe,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container *,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container *{background:#1f1f1f!important;border-color:#353535!important}.mec-admin-dark-mode .block-editor-block-types-list__item-icon,.mec-admin-dark-mode .block-editor-block-types-list__item-title,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article h4.mec-event-title,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-selection--single .select2-selection__rendered,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .about-wrap h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container .fserv-form-name,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h3,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container .fserv-form-name{color:#d2d2d2!important}.mec-admin-dark-mode .wns-be-sidebar li a:hover,.mec-admin-dark-mode .wns-be-sidebar li:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar li a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h2,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h2,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a,.mec-admin-dark-mode.post-type-mec-books .postbox h1,.mec-admin-dark-mode.post-type-mec-books .postbox h2,.mec-admin-dark-mode.post-type-mec-books .postbox h3,.mec-admin-dark-mode.post-type-mec-events .components-panel__body-toggle.components-button,.mec-admin-dark-mode.post-type-mec-events .wrap h1.wp-heading-inline,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option .wn-mec-text{color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a:hover{border:none}.mec-admin-dark-mode .wns-be-sidebar li.active ul.subsection{background:#282828;border-bottom:1px solid #353535}.mec-admin-dark-mode .wns-be-sidebar li .subsection a{background:#282828;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main{box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a,.mec-admin-dark-mode li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.selected.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2;border-color:#353535}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option{background:#000!important;color:#fff!important}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .about-wrap h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-go-pro,.mec-admin-dark-mode.m-e-calendar_page_MEC-go-pro h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-report,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings div.mce-panel,.mec-admin-dark-mode.m-e-calendar_page_MEC-support,.mec-admin-dark-mode.m-e-calendar_page_MEC-support h1,.mec-admin-dark-mode.post-type-mec-books,.mec-admin-dark-mode.post-type-mec-books h1,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wrap h1.wp-heading-inline,.mec-admin-dark-mode.toplevel_page_mec-intro,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h1{background:#282828!important;color:#d2d2d2}.mec-admin-dark-mode .w-theme-version{box-shadow:0 3px 30px -4px #000;background:#000;background:linear-gradient(95deg,#000 0,#282828 50%,#1f1f1f 100%)}.mec-admin-dark-mode .mec-sed-methods li.active,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h2,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap h2.nav-tab-wrapper,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li a:hover{color:#07bbe9}.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)}.mec-admin-dark-mode .wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#1f1f1f url(../img/webnus-logo2.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-custom-msg-notification-set-box.extra,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.post-type-mec-books #titlediv #title,.mec-admin-dark-mode.post-type-mec-books .postbox h1{background:#1f1f1f!important}.mec-admin-dark-mode .mec-settings-menu .mec-settings-submenu:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#353535}.mec-admin-dark-mode .mec-switcher input:checked+label:before{background-color:#d2d2d2;box-shadow:2px 2px 12px -2px #ccc inset}.mec-admin-dark-mode .mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #000}.mec-admin-dark-mode .lity.mec-add-event-popup,.mec-admin-dark-mode .lity.mec-add-shortcode-popup,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup,.mec-admin-dark-mode .mec-add-shortcode-popup div#mec_popup_shortcode{background:#282828}.mec-admin-dark-mode .lity.mec-add-event-popup .lity-content,.mec-admin-dark-mode .lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-event-popup .mec-meta-box-colors-container,.mec-admin-dark-mode .mec-steps-container,.mec-admin-dark-mode .mec-steps-header{background:#000}.mec-admin-dark-mode .mec-add-event-popup div#mec_popup_event,.mec-admin-dark-mode .mec-steps-panel{background:#1f1f1f}.mec-admin-dark-mode button.lity-close{background:#000;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{border:2px solid #282828;background:#000!important}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#282828;border-color:#1f1f1f;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{box-shadow:0 3px 5px rgba(0,0,0,.2)}.mec-admin-dark-mode .nicescroll-cursors{background-color:#000!important}.mec-admin-dark-mode .mec-add-event-popup .mec-categories-tab-contents,.mec-admin-dark-mode .mec-add-event-popup .mec-form-row.mec-available-color-row,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{border-color:#282828;background:#000}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{background:rgba(266,266,266,.35)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code,.mec-admin-dark-mode .mec-steps-content h3{color:#d2d2d2}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background:#000}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background:#282828}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar-track{background-color:#333}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar{width:3px;background-color:#333}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{margin-left:unset}.mec-admin-dark-mode .wp-picker-container .wp-color-result.button{background:inherit}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{background:#000;border-color:#000!important}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{background-color:#000;border-color:#282828}.mec-admin-dark-mode #wns-be-content .noresults label,.mec-admin-dark-mode #wns-be-content .results .results .noresults label,.mec-admin-dark-mode #wns-be-content ul li.disable,.mec-admin-dark-mode #wns-be-content ul li.disable label{color:#666}.mec-admin-dark-mode #wns-be-content .results .results .results label,.mec-admin-dark-mode #wns-be-content .results label,.mec-admin-dark-mode #wns-be-content ul li.enable,.mec-admin-dark-mode #wns-be-content ul li.enable label{color:#fff}.mec-admin-dark-mode.post-type-mec-books table.widefat,.mec-admin-dark-mode.post-type-mec_calendars table.widefat,.post-type-mec-events.mec-admin-dark-mode table.widefat{background:#1f1f1f;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-books ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars ul.striped>:nth-child(odd){background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .widefat td,.mec-admin-dark-mode.post-type-mec-books .widefat th,.mec-admin-dark-mode.post-type-mec-events .widefat td,.mec-admin-dark-mode.post-type-mec-events .widefat th,.mec-admin-dark-mode.post-type-mec_calendars .widefat td,.mec-admin-dark-mode.post-type-mec_calendars .widefat th{border-color:#000;color:#d2d2d2}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu>li.current>a.current:after{border-right-color:#1f1f1f}.mec-admin-dark-mode #mec_add_fee_button,.mec-admin-dark-mode #mec_add_ticket_variation_button,.mec-admin-dark-mode #mec_bfixed_form_field_types button,.mec-admin-dark-mode #mec_bfixed_form_fields button,.mec-admin-dark-mode #mec_event_form_field_types button,.mec-admin-dark-mode #mec_event_form_fields button,.mec-admin-dark-mode #mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,.mec-admin-dark-mode #mec_reg_form_field_types button,.mec-admin-dark-mode #mec_reg_form_fields button,.mec-admin-dark-mode #taxes_option #mec_fees_list .mec-form-row .button,.mec-admin-dark-mode #ticket_variations_option #mec_ticket_variations_list .mec-form-row .button,.mec-admin-dark-mode .mec-export-settings,.mec-admin-dark-mode .mec-import-settings,.mec-admin-dark-mode .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result),.mec-admin-dark-mode .mec-occurrences-wrapper .button:not(.wp-color-result),.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary,.mec-admin-dark-mode.post-type-mec-books .button,.mec-admin-dark-mode.post-type-mec-books .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec-events .button,.mec-admin-dark-mode.post-type-mec-events .button-secondary,.mec-admin-dark-mode.post-type-mec-events .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec_calendars .button,.mec-admin-dark-mode.post-type-mec_calendars .wp-heading-inline+.page-title-action{color:#d2d2d2!important;border-color:#353535!important;background:#000}.mec-admin-dark-mode #mec_add_fee_button:hover,.mec-admin-dark-mode #mec_add_ticket_variation_button:hover,.mec-admin-dark-mode #mec_bfixed_form_field_types button:hover,.mec-admin-dark-mode #mec_bfixed_form_fields button:hover,.mec-admin-dark-mode #mec_event_form_field_types button:hover,.mec-admin-dark-mode #mec_event_form_fields button:hover,.mec-admin-dark-mode #mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button:hover,.mec-admin-dark-mode #mec_reg_form_field_types button:hover,.mec-admin-dark-mode #mec_reg_form_fields button:hover,.mec-admin-dark-mode #taxes_option #mec_fees_list .mec-form-row .button:hover,.mec-admin-dark-mode #ticket_variations_option #mec_ticket_variations_list .mec-form-row .button:hover,.mec-admin-dark-mode .mec-export-settings:hover,.mec-admin-dark-mode .mec-import-settings:hover,.mec-admin-dark-mode .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result):hover,.mec-admin-dark-mode .mec-occurrences-wrapper .button:not(.wp-color-result):hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button.hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button:hover,.mec-admin-dark-mode.post-type-mec-events .button-secondary:hover,.mec-admin-dark-mode.post-type-mec-events .button.hover,.mec-admin-dark-mode.post-type-mec-events .button:hover,.mec-admin-dark-mode.post-type-mec_calendars .button-secondary:hover,.mec-admin-dark-mode.post-type-mec_calendars .button.hover,.mec-admin-dark-mode.post-type-mec_calendars .button:hover{background:#111;border-color:#333!important;color:#fff}.mec-admin-dark-mode.post-type-mec-events .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #282828,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-color-result-text,.mec-admin-dark-mode.post-type-mec-events .wp-color-result-text{border-left:1px solid #353535;color:#d2d2d2;background:#000}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-search-settings{color:#d2d2d2;background:#282828}.mec-admin-dark-mode.taxonomy-mec_category .button,.mec-admin-dark-mode.taxonomy-mec_label .button,.mec-admin-dark-mode.taxonomy-mec_location .button,.mec-admin-dark-mode.taxonomy-mec_organizer .button,.mec-admin-dark-mode.taxonomy-mec_speaker .button,.mec-admin-dark-mode.taxonomy-mec_tag .button{box-shadow:0 3px 10px -4px #000!important}.mec-admin-dark-mode.post-type-mec_calendars .mec-switcher input+label:after,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option .wn-hover-img-sh img{background:#282828}.mec-admin-dark-mode .attachment-info,.mec-admin-dark-mode .media-frame-toolbar .media-toolbar{border-color:#282828}.mec-admin-dark-mode #webnus-dashboard .welcome-head img,.mec-admin-dark-mode .mce-content-body{background-color:#000!important}.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article{border-bottom:1px solid #444}.mec-admin-dark-mode #webnus-dashboard a,.mec-admin-dark-mode #webnus-dashboard pre,.mec-admin-dark-mode .extra .w-box-head,.mec-admin-dark-mode .mec-addons-notification-box-content.mec-new-addons a,.mec-admin-dark-mode .mec-form-row label,.mec-admin-dark-mode .mec-form-row span,.mec-admin-dark-mode .mec-meta-box-fields h4,.mec-admin-dark-mode .mec-meta-box-fields label,.mec-admin-dark-mode .mec-meta-box-fields p,.mec-admin-dark-mode .mec-meta-box-fields span,.mec-admin-dark-mode .mec-meta-box-fields strong,.mec-admin-dark-mode .mec-new-addons .mec-addons-notification-title,.mec-admin-dark-mode .mec-new-addons p,.mec-admin-dark-mode .mec-new-addons strong,.mec-admin-dark-mode .w-box-content p,.mec-admin-dark-mode .w-box.doc,.mec-admin-dark-mode .w-box.total-bookings ul li,.mec-admin-dark-mode .w-box.total-bookings ul li a,.mec-admin-dark-mode .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button{color:#fff!important}.mec-admin-dark-mode #webnus-dashboard .mec-event-detail{color:#444}.mec-admin-dark-mode #webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{border-color:#2d2d2d}.mec-admin-dark-mode #webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{color:#282828!important}.mec-admin-dark-mode #webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover{color:#fff!important}.mec-admin-dark-mode .mec-addons-notification-box-content.mec-new-addons a,.mec-admin-dark-mode .w-box.total-bookings ul li{background:#333;box-shadow:0 2px 3px -2px #000}.mec-admin-dark-mode .mec-addons-notification-box-content.mec-new-addons a:hover,.mec-admin-dark-mode .w-box.total-bookings ul li:hover{background:#000}.mec-admin-dark-mode #webnus-dashboard .total-bookings input[type=text],.mec-admin-dark-mode #webnus-dashboard .total-bookings select{background:#000;color:#999;border-color:#111},.mec-admin-dark-mode #mec_category-add-toggle,.mec-admin-dark-mode #sample-permalink a,.mec-admin-dark-mode #set-post-thumbnail,.mec-admin-dark-mode .button-link,.mec-admin-dark-mode .category-tabs a,.mec-admin-dark-mode .mec-add-booking-tabs-left a,.mec-admin-dark-mode .mec-add-event-tabs-left a,.mec-admin-dark-mode .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode.post-type-mec-events .wp-list-table .row-title,.mec-admin-dark-mode.post-type-mec_calendars .wp-list-table .row-title{color:#888!important}.mec-admin-dark-mode .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode .mec-create-shortcode-tabs-left a.mec-tab-active{color:#00b0dd}.mec-admin-dark-mode #TB_title,.mec-admin-dark-mode #TB_window{background:#000}.mec-admin-dark-mode #webnus-dashboard .welcome-head img,.mec-admin-dark-mode .webnus-icons-list li:hover{background:#111}.mec-admin-dark-mode #TB_window i{color:#999}.mec-admin-dark-mode #TB_title,.mec-admin-dark-mode .webnus-icons-list li label{border:unset!important}.mec-admin-dark-mode.post-type-mec-books .notice-success,.mec-admin-dark-mode.post-type-mec-books div.updated,.mec-admin-dark-mode.post-type-mec-events .notice-success,.mec-admin-dark-mode.post-type-mec-events div.updated,.mec-admin-dark-mode.post-type-mec_calendars .notice-success,.mec-admin-dark-mode.post-type-mec_calendars div.updated{background:#111;border-top:unset;border-bottom:unset}.mec-admin-dark-mode.post-type-mec-books input,.mec-admin-dark-mode.post-type-mec-events input,.mec-admin-dark-mode.post-type-mec_calendars input{background:#000;color:#888}.mec-admin-dark-mode.post-type-mec-books .subsubsub a,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item,.mec-admin-dark-mode.post-type-mec-events .subsubsub a,.mec-admin-dark-mode.post-type-mec_calendars .subsubsub a{color:#2271b1}.mec-admin-dark-mode.post-type-mec-books .subsubsub a:hover,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item:hover,.mec-admin-dark-mode.post-type-mec-events .subsubsub a:hover,.mec-admin-dark-mode.post-type-mec_calendars .subsubsub a:hover{color:#135e96}.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a,.mec-admin-dark-mode.post-type-mec-events #set-post-thumbnail,.mec-admin-dark-mode.post-type-mec-events .attachment-info .filename{color:#888}.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a:hover,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a:hover,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a:hover,.mec-admin-dark-mode.post-type-mec-events #set-post-thumbnail:hover{color:#a9a9a9}.mec-admin-dark-mode #webnus-dashboard .welcome-head img,.mec-admin-dark-mode .w-theme-version,.mec-admin-dark-mode.post-type-mec_calendars .mec-switcher input+label:after{border-color:#444}.mec-admin-dark-mode.post-type-mec-books .postbox-header,.mec-admin-dark-mode.post-type-mec-events .postbox-header,.mec-admin-dark-mode.post-type-mec_calendars .postbox-header{border-color:#000}.mec-admin-dark-mode.post-type-mec-events .inside div div>a.mec-tab-active:after,.mec-admin-dark-mode.post-type-mec-events .inside div div>a.mec-tab-active:before,.mec-admin-dark-mode.post-type-mec_calendars .inside div div>a.mec-tab-active:after,.mec-admin-dark-mode.post-type-mec_calendars .inside div div>a.mec-tab-active:before{border-right-color:#2d2d2d}.mec-admin-dark-mode .mec-form-row input[type=radio]{box-shadow:0 1px 10px -2px #000}.mec-admin-dark-mode.post-type-mec-books .form-wrap label,.mec-admin-dark-mode.post-type-mec-books .media-frame-title h1,.mec-admin-dark-mode.post-type-mec-books h2,.mec-admin-dark-mode.post-type-mec-events .form-wrap label,.mec-admin-dark-mode.post-type-mec-events .media-frame-title h1,.mec-admin-dark-mode.post-type-mec-events h2{color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books.taxonomy-mec_coupon .button,.mec-admin-dark-mode.post-type-mec-events.taxonomy-post_tag .button{box-shadow:0 3px 10px -4px #000}.mec-admin-dark-mode.post-type-mec-events .attachments-browser .media-toolbar,.mec-admin-dark-mode.post-type-mec-events .media-frame-content,.mec-admin-dark-mode.post-type-mec-events .media-modal-content{background:#2d2d2d;color:#888}.mec-admin-dark-mode.post-type-mec-events .media-router .active,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item.active:last-child,.mec-admin-dark-mode.post-type-mec-events .media-sidebar,.mec-admin-dark-mode.post-type-mec-events .quicktags-toolbar{background:#222}.mec-admin-dark-mode.post-type-mec-events .attachments-browser .media-toolbar,.mec-admin-dark-mode.post-type-mec-events .media-frame-content,.mec-admin-dark-mode.post-type-mec-events .media-modal-content,.mec-admin-dark-mode.post-type-mec-events .media-router .active,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item.active:last-child,.mec-admin-dark-mode.post-type-mec-events .media-sidebar,.mec-admin-dark-mode.post-type-mec-events .quicktags-toolbar{border-color:#000}.mec-admin-dark-mode.post-type-mec-events .wp-core-ui .attachment-preview{background:#000}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-footer,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-head,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .w-col-sm-3 .w-box.addon{border-color:#444}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-footer{background:#444}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-title span{color:#d2d2d2}.post-type-mec-books .attendees .mec-booking-attendees-tooltip{position:relative}.post-type-mec-books .attendees strong{line-height:26px;padding-left:26px}.post-type-mec-books .attendees .mec-booking-attendees-tooltip:before{position:absolute;content:"\e001";font-family:simple-line-icons;margin:12px 0;top:-30px;left:0;font-size:18px;line-height:12px;color:#40d9f1;padding:0 60px 5px 0}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul{position:absolute;min-width:300px;max-width:600px;display:inline-block;left:60px;top:50%;transform:translateY(-50%);background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;z-index:9999999;box-sizing:border-box;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:23px 20px 20px 20px;border-radius:8px;margin-top:-13px}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul: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}.post-type-mec-books .attendees .mec-booking-attendees-tooltip:hover ul{visibility:visible;opacity:1}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul a{color:#40d9f1;margin-bottom:14px;margin-left:0;font-weight:400;font-size:14px;letter-spacing:.5px;position:relative;text-decoration:none;display:block;width:max-content}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul li:last-child a{margin-bottom:0}.mec-metabox-head-version img,.mec-metabox-head-version p{float:left}.mec-metabox-head-version a{float:right}.mec-metabox-head-version p{margin-top:3px;margin-left:5px;margin-bottom:34px}h3.mec-metabox-feed-head{border-top:1px solid #ccc}div#mec_widget_news_features .inside{padding:0}.mec-metabox-head-wrap{padding:0 12px}#dashboard-widgets h3.mec-metabox-feed-head{padding:8px 12px;border-top:1px solid #eee;border-bottom:1px solid #eee;font-weight:700}.mec-metabox-feed-content{padding:0 12px}.mec-metabox-feed-content ul li a{font-weight:600;display:block}.mec-metabox-feed-content ul li p{margin:3px 0 24px}.mec-metabox-footer a span{font-size:17px;vertical-align:middle;margin-left:2px}.mec-metabox-footer a{text-decoration:none;border-right:1px solid #eee;padding-right:10px;margin-right:12px}.mec-metabox-footer{padding:11px 12px 10px;border-top:1px solid #eee}.mec-metabox-footer a:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{border-top:none!important;padding-top:13px!important}.mec-metabox-head-wrap{box-shadow:0 5px 8px rgba(0,0,0,.05)}.mec-metabox-upcoming-wrap ul li span{float:left}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event{float:left;margin-left:10px}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event-date{float:right}.mec-metabox-upcoming-wrap ul{padding:0 12px;background:#f7f7f7;margin:0}.mec-metabox-upcoming-wrap ul li{border-bottom:1px solid #eee;padding:14px 0;margin-bottom:0}.mec-metabox-upcoming-wrap ul li:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{margin-bottom:0!important}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event a{font-weight:600}.mec-metabox-head-version a span{vertical-align:middle}.mec-metabox-head-version a{padding-left:6px!important}#mec_widget_total_bookings .w-box.total-bookings ul li:first-child{margin-left:1px}#mec_widget_total_bookings .w-box.total-bookings ul li{margin-right:4px}#mec_widget_total_bookings .w-box.total-bookings ul li:last-child{margin-right:0}#mec_widget_total_bookings .w-box.total-bookings ul li a{color:#000}#mec_widget_total_bookings .w-box.total-bookings ul li:hover a{color:#fff}#mec_widget_total_bookings{overflow:hidden}#mec_widget_total_bookings .inside,#mec_widget_total_bookings .w-box{margin:0;padding-bottom:0}#mec_widget_total_bookings .w-col-sm-12{padding:0}#mec_widget_total_bookings .w-box-content button{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important;line-height:39px;padding:0 36px;width:calc(33% - 7px);margin-bottom:14px}#mec_widget_total_bookings .w-box-content input[type=text],#mec_widget_total_bookings .w-box-content select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#mec_widget_total_bookings .w-box-content input[type=text]{width:calc(50% - 5px)}#mec_widget_total_bookings .w-box-content select{width:calc(33% - 2px);margin-bottom:24px;margin-top:20px}div#mec-schema .mec-form-row label{display:inline-block;width:141px}.event-status-schema{background:rgb(247 248 249 / 10%);padding:20px 40px;margin:10px 0 35px;border-radius:4px;border:1px solid #e6e6e6}@media (min-width:1281px){.event-status-schema{max-width:70%}}.event-status-schema p{margin-bottom:35px}div#mec_cancelled_reason_wrapper label{width:166px!important}.mec-fluent-hidden{display:none}#webnus-dashboard .total-bookings input[type=text],#webnus-dashboard .total-bookings select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#webnus-dashboard select{margin-top:-5px}#mec_styles_CSS{line-height:1.6}.mec-search-forms-options-container label.mec-col-12{margin-bottom:10px}@media(max-width:480px){.toplevel_page_mec-intro .mec-intro-section-ifarme iframe{width:auto!important;height:auto!important}.w-box.mec-activation input[name=MECPurchaseCode]{min-width:200px!important;width:330px}.w-box.mec-activation{background:#fff}.mec-addons{padding-right:15px}.mec-report-wrap{margin-top:20px}.mec-report-select-event-wrap .select2-container--default,.mec-report-select-event-wrap select.mec-reports-selectbox-dates{max-width:100%;width:100%;margin:10px 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{padding:10px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span{font-size:13px}.mec-report-selected-event-attendees-wrap .mec-attendees-content .w-col-xs-3{word-wrap:break-word}.mec-report-selected-event-attendees-wrap .w-col-xs-3.name img{display:block}.mec-report-selected-event-attendees-wrap input[type=checkbox],.mec-report-selected-event-attendees-wrap input[type=radio]{height:.85rem;width:.85rem}.wns-be-container .dpr-btn.dpr-save-btn{margin:0!important}#mec_booking_form .mec-container{padding-left:0;padding-right:0}#mec_event_form_fields,#mec_reg_form_fields{padding:10px}.mec-search-forms-options-container .mec-form-row select{width:100%}#mec_skin_monthly_view_start_date_container{display:unset}#mec_calendar_display_options input[type=number],#mec_calendar_display_options input[type=text],#mec_calendar_display_options select{max-width:100%!important;width:100%;margin:10px 0}#mec_select_tags.mec-create-shortcode-tab-content input[type=text]{width:auto}#mec_tickets .mec-box{padding:20px 7px}.fserv-container form,.fserv-form-description{padding:10px 15px!important}.fserv-field{display:inline-block;width:25%!important;padding:0!important;margin:0!important;margin-right:10px!important}#webnus-dashboard .total-bookings button{margin:15px 0}}.mec-skin-styles.mec-styles-custom{padding-left:0!important;top:40%;position:absolute;width:330px;height:auto!important;overflow:visible!important}.mec-skin-styles.mec-styles-custom .nice-select{box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-styles-custom h3{font-size:13px;font-weight:400;color:#707070}.post-type-mec_calendars .mec-form-row .select2-selection{height:auto}.mec-form-row .mec-col-12 ul li span{display:inline-block;background:#f7f8f9;padding:8px 15px;margin-right:5px;border-radius:3px;border:1px dashed #d7d8d9;font-family:monospace;letter-spacing:.4px}.post-type-mec-events .ui-datepicker.ui-widget .ui-button,.post-type-mec-events .ui-datepicker.ui-widget .ui-button.ui-state-disabled:active,.post-type-mec-events .ui-datepicker.ui-widget .ui-button.ui-state-disabled:hover,.post-type-mec-events .ui-datepicker.ui-widget .ui-state-default,.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-content .ui-state-default,.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-header .ui-state-default,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-button,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-button.ui-state-disabled:active,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-button.ui-state-disabled:hover,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-state-default,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-content .ui-state-default,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-header .ui-state-default{border:0;background-color:#fff;font-weight:400;color:#212121;text-align:center}.post-type-mec-events .ui-datepicker.ui-widget td a.ui-state-active,.post-type-mec-events .ui-datepicker.ui-widget td a:hover,.post-type-mec_calendars .ui-datepicker.ui-widget td a.ui-state-active,.post-type-mec_calendars .ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-header,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-header{border:0;background:unset;background-color:#fff}.post-type-mec-events .ui-datepicker.ui-widget .ui-icon,.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-content .ui-icon,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-icon,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-content .ui-icon{background-image:unset}.post-type-mec-events .ui-datepicker.ui-widget select,.post-type-mec_calendars .ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.mec-update-warning+p{display:none}#mec_sf_timetable_address_search_placeholder,#mec_sf_timetable_txt_search_placeholder{margin-top:4px}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}body.rtl .fserv-container .fserv-form-name{text-align:right!important}body.rtl #webnus-dashboard .mec-activation .w-box-head{max-width:calc(100% - 250px);margin-right:250px;text-align:right}body.rtl #webnus-dashboard .w-box.mec-activation .LicenseType label{padding-left:20px;padding-right:0;font-weight:500}body.rtl #webnus-dashboard .w-box.mec-activation input[type=radio]+label span{margin-right:0;margin-left:6px}body.rtl #webnus-dashboard .upcoming-events .w-box-content .mec-event-article{display:block}body.rtl #webnus-dashboard .upcoming-events .w-box-content .mec-event-article .col-md-9.col-sm-9{float:unset}body.rtl #webnus-dashboard .total-bookings input[type=text],body.rtl #webnus-dashboard .total-bookings select{min-width:125px;margin:0}body.rtl.post-type-mec-events .mec-form-row input[type=number],body.rtl.post-type-mec-events .mec-form-row input[type=text],body.rtl.post-type-mec-events .mec-form-row input[type=url],body.rtl.post-type-mec-events .mec-form-row select,body.rtl.post-type-mec-events .mec-form-row textarea,body.rtl.post-type-mec_calendars .mec-form-row input[type=number],body.rtl.post-type-mec_calendars .mec-form-row input[type=text],body.rtl.post-type-mec_calendars .mec-form-row input[type=url],body.rtl.post-type-mec_calendars .mec-form-row select,body.rtl.post-type-mec_calendars .mec-form-row textarea{margin:0 0 0 1%}body.rtl .mec-form-row .mec-col-8 label,body.rtl .mec-form-row .mec-col-9 label{padding-left:10px}body.rtl .mec-form-row label{text-align:right}body.rtl .mec-form-row .mec-col-3{margin:0;padding-left:10px;padding-right:0}body.rtl .mec-calendar-metabox .mec-form-row input[type=checkbox],body.rtl .mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-left:6px;margin-right:0}body.rtl .mec-form-row input[type=radio]{margin:0 0 0 6px}body.rtl .mec-form-row .description{border-left:0;border-right:1px dashed #ccc;padding-left:0;padding-right:12px}body.rtl #mec_add_fee_button,body.rtl #mec_add_ticket_variation_button,body.rtl #mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,body.rtl #taxes_option #mec_fees_list .mec-form-row .button,body.rtl #ticket_variations_option #mec_ticket_variations_list .mec-form-row .button,body.rtl .mec-export-settings,body.rtl .mec-import-settings,body.rtl .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result),body.rtl .mec-occurrences-wrapper .button:not(.wp-color-result){margin-right:0;margin-left:5px}body.rtl .mec-add-booking-tabs-right,body.rtl .mec-add-event-tabs-right,body.rtl .mec-create-shortcode-tabs-right{border-left:0;border-right:1px solid #e2e2e2}body.rtl .mec-add-booking-tabs-left a,body.rtl .mec-add-event-tabs-left a,body.rtl .mec-create-shortcode-tabs-left a{padding:13px 20px 13px 4px}body.rtl .mec-add-booking-tabs-left a.mec-tab-active,body.rtl .mec-add-event-tabs-left a.mec-tab-active,body.rtl .mec-create-shortcode-tabs-left a.mec-tab-active{padding-left:0;padding-right:22px}body.rtl .mec-calendar-metabox .wn-mec-select,body.rtl .mec-form-row select,body.rtl .post-type-mec-events .mec-form-row select,body.rtl .post-type-mec_calendars .mec-form-row select,body.rtl .wns-be-main .mec-form-row select{background-position:left center!important}body.rtl .mec-calendar-metabox .wn-mec-select,body.rtl .mec-form-row select,body.rtl .post-type-mec-events .mec-form-row select,body.rtl .post-type-mec_calendars .mec-form-row select,body.rtl .wns-be-main .mec-form-row select{text-align:right!important}body.rtl #mec_calendar_display_options .mec-col-4 input{margin-left:0!important;margin-right:20px!important}body.rtl .meta-box-sortables .mec-switcher input:checked+label:after{right:auto;left:2px;margin-left:0}body.rtl .mec-sed-methods li{margin:0 0 5px 5px}body.rtl .wn-mec-select:after{left:10px;right:auto}body.rtl .inside div div>a.mec-tab-active:after,body.rtl .inside div div>a.mec-tab-active:before{border-right:0;border-left-color:#fff}body.rtl .inside div div>a.mec-tab-active:after{right:auto;left:-1px}body.rtl .inside div div>a.mec-tab-active:before{border-right:0;border-left-color:#d7d8d9;right:auto;left:0}body.rtl #mec_tickets .button.remove{right:auto;left:20px;line-height:1.8}body.rtl .mec-calendar-metabox .wn-mec-select,body.rtl .mec-form-row input[type=date],body.rtl .mec-form-row input[type=email],body.rtl .mec-form-row input[type=number],body.rtl .mec-form-row input[type=tel],body.rtl .mec-form-row input[type=text],body.rtl .mec-form-row input[type=url],body.rtl .mec-form-row select,body.rtl .mec-form-row textarea,body.rtl .mec-form-row.mec-skin-list-date-format-container input[type=text],body.rtl .mec-occurrences-wrapper input[type=date],body.rtl .mec-occurrences-wrapper input[type=email],body.rtl .mec-occurrences-wrapper input[type=number],body.rtl .mec-occurrences-wrapper input[type=tel],body.rtl .mec-occurrences-wrapper input[type=text],body.rtl .mec-occurrences-wrapper input[type=url],body.rtl .mec-occurrences-wrapper select,body.rtl .mec-occurrences-wrapper textarea{padding:0 10px}body.rtl #mec-occurrences .mec-occurrences-list li,body.rtl #mec_bfixed_form_fields li,body.rtl #mec_event_form_fields li,body.rtl #mec_reg_form_fields li{border-radius:11px 3px 3px 3px}body.rtl #mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_remove,body.rtl #mec_event_form_fields span.mec_event_field_remove,body.rtl #mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:auto;left:47px;top:0;background:#fff}body.rtl #mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_remove:before,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,body.rtl #mec_event_form_fields span.mec_event_field_option_sort:before,body.rtl #mec_event_form_fields span.mec_event_field_remove:before,body.rtl #mec_event_form_fields span.mec_event_field_sort:before,body.rtl #mec_reg_form_fields span.mec_reg_field_option_sort:before,body.rtl #mec_reg_form_fields span.mec_reg_field_remove:before,body.rtl #mec_reg_form_fields span.mec_reg_field_sort:before{left:auto;right:20px;top:7px}body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_type,body.rtl #mec_bfixed_form_fields span.mec_event_field_type,body.rtl #mec_event_form_fields span.mec_event_field_type,body.rtl #mec_reg_form_fields span.mec_reg_field_type{padding-left:0;padding-right:25px}body.rtl .wns-be-main .mec-form-row .mec-col-3{padding:0}body.rtl .wns-be-main .mec-form-row .mec-col-9{float:left}body.rtl .mec-form-row .mec-col-9 .mec-box .mec-tooltip{left:15px;right:auto}body.rtl .mec-tooltip .box{left:auto!important;right:30px!important}body.rtl .mec-tooltip .box:before{left:auto!important;right:0!important}body.rtl .mec-tooltip .box.left{left:30px!important;right:auto!important}body.rtl .mec-tooltip .box.left:before{left:-12px!important;right:auto!important}body.rtl .mec-form-row .cancellation-period-box input[type=number]:first-child{margin-left:calc(2% + 4px);margin-right:0}body.rtl .support-page .w-box-content ul li i{margin:0 0 0 10px;float:right}body.rtl .support-page .w-box-content ul li .mec-sl-arrow-right-circle:before{content:"\e07a"}body.rtl #webnus-dashboard .w-box.support-page.videobox .w-button a i{float:left;line-height:24px}body.rtl #webnus-dashboard .mec-faq-accordion-trigger a{padding-right:34px;font-size:15px}
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .support-box a,#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .support-box a:hover,#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#webnus-dashboard .support-box a{margin:40px 4px 0 4px}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#07bbe9!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;border-radius:2px 2px 5px 5px;box-shadow:0 2px 6px 0 rgb(0 0 0 / 3%);border:1px solid #e2e3e4}.w-box-child.mec-addon-box{padding:0}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding:20px 20px 8px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;border-radius:1px;padding:0 8px;font-family:monospace;background:#f4f7f7;color:#00a1b7;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:10px 0}.mec-addon-box-head img{display:block;width:60px;height:60px;margin-bottom:10px}.mec-addon-box-title{font-weight:600;font-size:17px;line-height:25px;color:#27272a;letter-spacing:-.2px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content{padding:0 20px}.mec-addon-box-content p{color:#777;font-size:13px;letter-spacing:.1px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}.mec-addon-box-pro{display:inline-block;background:#ff7d5f;color:#fff;font-weight:600;font-size:11px;letter-spacing:.2px;line-height:21px;padding:0 8px;border-radius:3px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{border-top:1px solid #e8e8e8;background:#f4f7f7;border-radius:0 0 4px 4px;padding:2px 1px 3px;margin-top:25px;text-align:center}#webnus-dashboard .mec-addon-box-footer a{margin-top:10px;display:inline-block;text-shadow:none;border:none;transition:.24s;position:relative;margin-right:7px;font-size:12px;font-weight:500;border-radius:7px;padding:9px 18px 8px;width:53px;height:34px;line-height:21px;background:0 0;margin:0;box-shadow:none}#webnus-dashboard .mec-addon-box-footer a:last-of-type{margin-right:0}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro:hover{box-shadow:0 2px 8px -3px #ff3535;background:linear-gradient(95deg,#ff6c6c 0,#f55 50%,#ff3535 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);box-shadow:0 2px 8px -3px #008aff;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{color:#00cae6;font-size:16px}#webnus-dashboard .mec-addon-box-footer a:hover i{color:#fff}#mec_tickets .mec-box{position:relative;padding:25px 10px}#mec_fees_list input[type=text].mec-col-12,#mec_ticket_variations_list input[type=text].mec-col-12{max-width:625px}#taxes_option .mec-form-row input[type=text].mec-col-12,#ticket_variations_option input[type=text].mec-col-12{max-width:575px}.mec-booking-tab-content .mec-form-row textarea{max-width:762px}#mec_tickets .button.remove{padding:0;min-height:28px;height:28px;width:28px;margin:0;border-radius:50%;position:absolute;top:20px;right:20px;color:#ea6485;box-shadow:0 2px 6px -3px #ea6485;background:#fff;border-color:#ffd2dd;font-size:20px;line-height:1.5}#mec_tickets .button.remove svg{fill:#ea6485!important}#mec_tickets .button.remove:hover{color:#fff;border:2px solid #ea6485;background:#ea6485}#mec_tickets .button.remove:hover svg{fill:#fff!important}@media(max-width:480px){#mec_tickets .button.remove{top:5px;right:5px}}.mec-ticket-id{font-size:12px;line-height:12px;font-weight:400;color:#07bbe9;padding:0 0 8px;margin-top:-6px;margin-bottom:14px;cursor:default}.mec-ticket-end-time.mec-col-12 .mec-time-span,.mec-ticket-start-time.mec-col-12 .mec-time-span{min-width:80px;display:inline-block}.mec-ticket-start-time{margin-bottom:20px}.mec-ticket-time{min-width:69px;display:inline-block}.mec-stop-selling-tickets{min-width:185px}#mec_meta_box_hourly_schedule_days .mec-form-row input[type=text],#mec_meta_box_tickets_form .mec-form-row input[type=text]{max-width:290px}@media(max-width:1366px){#mec_meta_box_hourly_schedule_days .mec-box.mec-form-row input[type=text]{max-width:150px;min-width:110px}}#mec_exceptions_not_in_days_date{width:100%}#mec-event-data input[type=date],#mec-event-data input[type=email],#mec-event-data input[type=tel],#mec-event-data input[type=text],#mec-event-data input[type=url],#mec-event-data select,#mec-event-data textarea,#mec_exceptions_not_in_days_date,#mec_meta_box_date_form input[type=text],#mec_select_tags.mec-create-shortcode-tab-content input[type=text],#mec_settings_weather_module_api_key{max-width:290px}#mec-event-data input[type=text].mec_date_picker.mec-col-4 #mec_meta_box_calendar_skin_options input[type=text].mec_date_picker.mec-col-4{max-width:32.33333333%}#payment_gateways_option .mec-col-4 input[type=number],#payment_gateways_option .mec-col-4 input[type=text],#payment_gateways_option .mec-col-4 select,#payment_gateways_option .mec-col-4 textarea{width:90%}.mec-form-repeating-event-row .mec-col-6 input[type=text]{width:35%}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:transparent padding: 8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0;font-style:normal}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #30353a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box{min-width:290px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12,.mec-cmsg-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-2-notification-box-wrap span,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-2-notification-box-wrap span i,.w-clearfix.w-box.mec-cmsg-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.mec-custom-msg-notification-wrap,.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.mec-custom-msg-notification-wrap .w-col-sm-12,.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#e6e9eb;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px;border-radius:0 2px 2px 0;box-shadow:0 2px 4px rgba(0,0,0,.03)}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#d6d9db;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#666c75;opacity:1;font-size:13px;font-weight:400;padding:6px 4px 5px 26px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a:hover{color:#000;background:#f7f8f9}.mec-form-row.mec-skin-countdown-date-format-container input[type=text],.mec-form-row.mec-skin-grid-date-format-container input[type=text],.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-skin-options-container input[type=text]{max-width:unset}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #40d9f1;box-shadow:0 1px 8px -3px #40d9f1 inset;color:#00cae6;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}.menu-icon-mec-books .wp-menu-image img,.toplevel_page_mec-intro .wp-menu-image img{width:18px!important;padding-top:7px!important}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:flex;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}.mec-add-booking-tabs-left,.mec-add-event-tabs-left{min-width:200px}@media(max-width:1366px){.mec-add-booking-tabs-left,.mec-add-event-tabs-left{min-width:137px}}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{flex:1}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{flex:6}a.mec-add-booking-tabs-link,a.mec-add-event-tabs-link,a.mec-create-shortcode-tabs-link{display:block}.mec-booking-tab-content,.mec-create-shortcode-tab-content,.mec-event-tab-content{display:none;transition:all .3s ease}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{display:block}.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap{background:#fff;margin:-6px -12px -12px}.mec-create-shortcode-tabs-wrap{margin:-30px -22px -42px}.mec-add-booking-tabs-left,.mec-add-event-tabs-left,.mec-create-shortcode-tabs-left{background:#f7f8f9}.mec-add-booking-tabs-left a,.mec-add-event-tabs-left a,.mec-create-shortcode-tabs-left a{display:block;position:relative;outline:0;padding:13px 4px 13px 20px;background:#e3e5e7;background:0 0;border:solid;border-width:1px 0 1px 0;border-color:transparent;color:#3f454a;font-size:13px;font-weight:600;text-decoration:none;border-radius:0;transition:all .2s ease}.mec-add-booking-tabs-left a:first-of-type,.mec-add-event-tabs-left a:first-of-type,.mec-create-shortcode-tabs-left a:first-of-type{border-top:none}.mec-add-booking-tabs-left a:hover,.mec-add-event-tabs-left a:hover,.mec-create-shortcode-tabs-left a:hover{background:#fff;color:#07bbe9}.mec-add-booking-tabs-left a:focus,.mec-add-event-tabs-left a:focus,.mec-create-shortcode-tabs-left a:focus{box-shadow:none;outline:unset}.mec-add-booking-tabs-left a.mec-tab-active,.mec-add-event-tabs-left a.mec-tab-active,.mec-create-shortcode-tabs-left a.mec-tab-active{background:#ecf9fd;color:#07bbe9;border-color:#ccecf4;position:relative;padding-left:22px}.inside div div>a.mec-tab-active:after,.inside div div>a.mec-tab-active:before{position:absolute;z-index:9999;content:" ";height:0;width:0;border:8px solid transparent;border-right-color:#fff;right:-1px;top:13px}.inside div div>a.mec-tab-active:before{border-right-color:#d7d8d9;right:0}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 30px 40px;border-left:1px solid #e2e2e2}.mec-booking-tab-content.mec-tab-active,.mec-create-shortcode-tab-content.mec-tab-active,.mec-event-tab-content.mec-tab-active{animation:fadeEffect2 .31s}@media(max-width:1366px){.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 15px 20px}.mec-form-row select{min-width:60px}}@media (min-width:1199px) and (max-width:1280px){.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding:0 0 0 10px}#mec_meta_box_hourly_schedule_days{padding:0 40px 0 0}#mec_meta_box_hourly_schedule_days .mec-form-row.mec-box{margin-right:-40px}#mec_comment,#mec_cost,#mec_countdown_method,#mec_event_timezone,#mec_public,#mec_repeat_type{min-width:220px;width:220px}#mec_meta_box_hourly_schedule_days .mec-box.mec-form-row input[type=text]{max-width:120px}.mec-form-row .mec-time-picker select{min-width:60px}#mec_countdown_method,#mec_repeat_type{min-width:220px;width:220px}#mec_exceptions_in_days_container .mec-col-4{width:25%}#mec_exceptions_in_days_container .mec-col-3{width:50%}#mec_exceptions_in_days_container .mec-col-5{width:20%}#mec_exceptions_in_days_container input[type=text]{width:95%}#mec_repeat_certain_weekdays_container label:not(.mec-col-3){display:block;padding-left:25%}}@media (max-width:1023px){.post-type-mec-events h4{margin-top:20px}.post-type-mec-events .mec-form-row{padding-bottom:20px}.post-type-mec-events .mec-form-row .mec-form-row{padding:0}.post-type-mec-events .mec-form-row .mec-col-1,.post-type-mec-events .mec-form-row .mec-col-10,.post-type-mec-events .mec-form-row .mec-col-11,.post-type-mec-events .mec-form-row .mec-col-12,.post-type-mec-events .mec-form-row .mec-col-2,.post-type-mec-events .mec-form-row .mec-col-3,.post-type-mec-events .mec-form-row .mec-col-4,.post-type-mec-events .mec-form-row .mec-col-5,.post-type-mec-events .mec-form-row .mec-col-6,.post-type-mec-events .mec-form-row .mec-col-7,.post-type-mec-events .mec-form-row .mec-col-8,.post-type-mec-events .mec-form-row .mec-col-9{display:block;width:100%;margin:20px 0 0 0;max-width:285px}.post-type-mec-events .mec-add-booking-tabs-left,.post-type-mec-events .mec-add-event-tabs-left{min-width:180px}.post-type-mec-events .mec-add-booking-tabs-left a,.post-type-mec-events .mec-add-event-tabs-left a,.post-type-mec-events .mec-create-shortcode-tabs-left a{padding-left:10px}#mec_repeat_type,.post-type-mec-events #mec_settings_fes_thankyou_page_url,.post-type-mec-events .mec-form-row .mec-col-4 input[type=number],.post-type-mec-events .mec-form-row .mec-col-4 input[type=text],.post-type-mec-events .mec-form-row .mec-col-4 select,.post-type-mec-events .mec-form-row .mec-col-4 textarea{width:100%;max-width:255px}#mec-exceptional-days .mec-certain-day>div,#mec_exceptions_in_days_container .mec-certain-day>div{width:100%;max-width:255px;padding:12px;margin:20px 10px 0 0;border-radius:8px}.mec-certain-day .mec-in-days-day,.mec-certain-day>div .mec-not-in-days-day{line-height:21px;font-size:10px}#mec_repeat_certain_weekdays_container label{display:block;margin:20px 0 20px 0}}@media (max-width:640px){.mec-add-booking-tabs-wrap,.mec-add-event-tabs-wrap,.mec-create-shortcode-tabs-wrap{display:block}.post-type-mec-events .mec-add-booking-tabs-left,.post-type-mec-events .mec-add-event-tabs-left{min-width:100%;width:100%!important;display:block!important;float:unset;margin:0;flex:unset;height:auto}.post-type-mec-events .mec-add-booking-tabs-right,.post-type-mec-events .mec-add-event-tabs-right,.post-type-mec-events .mec-create-shortcode-tabs-right{display:block;min-width:100%;width:100%;margin:0;flex:unset}.post-type-mec-events .mec-add-booking-tabs-left a,.post-type-mec-events .mec-add-event-tabs-left a,.post-type-mec-events .mec-create-shortcode-tabs-left a{font-size:14px;padding:14px 10px 14px 15px;line-height:1.2;letter-spacing:0}.mec-add-booking-tabs-right,.mec-add-event-tabs-right,.mec-create-shortcode-tabs-right{padding-left:10px;padding-right:10px}#mec_tickets .mec-box{max-width:290px}}@keyframes fadeEffect2{from{opacity:0;transform:translateX(11px)}to{opacity:1;transform:translateX(0)}}.mec-form-row .mec-col-8 label,.mec-form-row .mec-col-9 label{padding-right:20px}@media(min-width:860px) and (max-width:1280px){.mec-form-row .mec-col-9 label{padding-right:12px}}#mec-event-data .mec-form-row label{margin-right:14px}.mec-form-row input[type=date]::-webkit-calendar-picker-indicator{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA0QjQ2N0QwQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA0QjQ2N0QxQjQ4MzExRUE4RDdFREZDRTUxMUVERTM5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDRCNDY3Q0VCNDgzMTFFQThEN0VERkNFNTExRURFMzkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDRCNDY3Q0ZCNDgzMTFFQThEN0VERkNFNTExRURFMzkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WW71PAAAGIklEQVR42qRXS28bVRQ+586Mx3ZC1DSpVFojRU2CqMIGiSKxAVoUduzoDjYIlhU/Av4AYsdjRXfkD0Cjom6QqIqEqEhRo1aRkkZpkpY6j7GduQ++c2dsj1+BlInGztxvzj3nfudpPlM/otc2W2QjJmU0rZ0uUytUpBxNnN9p/FYhctF0+XUi2nPGkX7WJOfwxNRzqXxtbfI4eUvm7xY1o4iiI0d/vFiisL2BgTAz0yvbCRnLhP0uNEtqrgUseZRcwPPvJewaldSA8o48vo+Tj0U+CnrkOgZwvkEzEmGm1PF9fzK5Y3U/YlllsjRUv19zXl7571HyAjooc/kmYerpcmPO0Mfa0SyxEtji44ynOjPuayjecd7M46/MQOdGyIs9ThnzMLD0XRrwIdeetmoLm41fWiG95Ar792tydLLrOPkAlpW027hbG3+T37lf/5EtvYcXUuhfBjWp9wHRBO63c5lbEkQj2B92uaHy4l2EAQ66GFgbmiD4id/9q661ooAtf8rsvmUEilAHEqcgtJvvNq3YPTkJA8PksT9ZFxD8+4my9pvAOqOMxIMoJHfPZoJkJNiYat3duOac6hxt1N3GR8lnt0O623s+c2CVZEGaZ8Oks1mElvxu7hGYaQjpHLpH3q/YFQE7Oh5Y6gFTaHhAXlasxmoWpZO5L9Ow4DTv+UBZBAkWNO+CqhkbSOzaXWWyzY+n3WcACdVscnklz5CHYsmv1L/RyUJ/cs7zdT3Ey8pTgw/QgNNuS4XjNMvffwvBNmwDH+pdeZ3J+1qDdW15vS0iBhjZWzF9ge8HWl7zNLluYhP/9/jvFANXyL+ufF4jZvOCZsK8isp77+sixf10n7QQjJT39bBtjzdA5chtLG61n7kgk6UvDy29z4HL4c/ifkN0hYV+cA3Bc7stKAfossgSSF06+3HOu8QovE8eThDlv4pu1TbUOpqySDNUKMSDQRIo6QgVRHbFcID1mCITUGgNKLI9uBbcCC59xUi+DsiHBq0XOLb3utqOUYV+LglH9XJASRAsRNqt4xHVj59Exqw3AlrYi0PaiwNqBKoX12Y9iQSP/GkD4xZC0yt/GPFCvZzhUBoMtmPftRwMEEtpupy2auzadLraXtlNoXLhKQYLbjrWRx0cXNf24wxPSmWw5aZPNXSNOi5ytXqZpjTwSqs3PsJi0I61LG29EFG9GtyaeqgvxU17TrAkDjbvnq/eKcTYrbcemi5eHoI/OLgUt7r4n+cqd04llmZ3mjBSDQ4kYtERLLz4OKGt0xGKA9+RgiSGSRV7+UlCVvka72lEvHRx04vLGW2f/PzTBk3VtddRrGlhMXVaIdME5sLJ3ZQOTPQBNqj58uzcxsXtZEkqmQ7IB9ihLeA2x6FQqyG4cRuvbh8uNZSigzBCALhBBtrjkwjjQItQ+kPXWY6eBuEi/lmOlC8kvTh38ZLH3QC+y+GiIl4OqbeZ9RggQZgcVIXe1ep48jPkz/oGw7x1yoytIq1o59AH1Wp1rNHBSXA9tip87zYyvFzpx8dXLVTvqySvhUMNsN6+1ERrrNQVQs57H4K6cR35GrapffICb16RpO7glOHrrQyvjHXxQHB0/j1ugV0LpcFwAzS4n6hiZoIvEp2znwcSigfGJhxpMmseLc0dvFjcvRuLvdEdNyl2+0DOALwE863TM/jnJqhfQa6v4AfJzUNOZ/aVlhqIUpoO4PuU4XFsqFrSM866m9hxBXSvWPx/wHpGqA96Vfa5AH9HnMjYNI96dbkwaVzcCw/nAK+xHzp4Hp89eD04nENzX6v4cYrnrVWXXQF/Fh7MQfWasmogCNsmaT+qwD0g4gYsuYqnWlboeKMUumUr86LycxdwdRUb+zQTvAzcgL0jLXFkbkQUX5UKyFTE2bvZD0a5B8SAUu6dPf+7AInssja2VPSZRud2Ni/NKse5M2VQqkO4BxSzZLmV8Wwpa8S9OHsK3X6+Lc7F/JidOwvkc7z3FbIgzd7smy1c35TEg7NGrg6Ucs88UsCliOLHH1+Td8HYFl++W//QxfT9iSee/3lJWy5X6aMwtK3rTVWJUU4/g4GzdLLp73ku8cEDxNmXUZhc/0eAAQAVgX0RHvvILQAAAABJRU5ErkJggg==);background-position:center;background-size:cover;width:10px;height:12px;display:block}.mec-calendar-metabox .wn-mec-select,.mec-form-row input[type=date],.mec-form-row input[type=email],.mec-form-row input[type=number],.mec-form-row input[type=tel],.mec-form-row input[type=text],.mec-form-row input[type=url],.mec-form-row select,.mec-form-row textarea,.mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-occurrences-wrapper input[type=date],.mec-occurrences-wrapper input[type=email],.mec-occurrences-wrapper input[type=number],.mec-occurrences-wrapper input[type=tel],.mec-occurrences-wrapper input[type=text],.mec-occurrences-wrapper input[type=url],.mec-occurrences-wrapper select,.mec-occurrences-wrapper textarea{border:none;background-color:#f7f8f9;border-radius:5px;height:38px;line-height:38px;padding-left:10px;box-shadow:inset 0 1px 2px rgb(0 0 0 / 7%)}.mec-calendar-metabox .wn-mec-select,.mec-form-row select,.post-type-mec-events .mec-form-row select,.post-type-mec_calendars .mec-form-row select,.wns-be-main .mec-form-row select{appearance:none;-webkit-appearance:none;-moz-appearance:none;cursor:pointer;min-height:34px;line-height:34px;background-color:#f7f8f9;border-radius:2px;padding-left:8px;box-shadow:0 1px 3px rgb(0 0 0 / 2%);transition:all .23s ease;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNyIgdmlld0JveD0iMCAwIDE3IDE3Ij4KPGc+CjwvZz4KCTxwYXRoIGQ9Ik0xNi4zNTQgNS4wNzVsLTcuODU1IDcuODU0LTcuODUzLTcuODU0IDAuNzA3LTAuNzA3IDcuMTQ1IDcuMTQ2IDcuMTQ4LTcuMTQ3IDAuNzA4IDAuNzA4eiIgZmlsbD0iIzAwMDAwMCIgLz4KPC9zdmc+Cg==);background-repeat:no-repeat;background-size:26px 10px;background-position:right center;min-width:160px;border:1px solid #e6e9eb}.post-type-mec-events .mec-form-row .mec-time-picker select,.post-type-mec-events .wn-ticket-time select{min-width:60px;margin-bottom:10px}.wns-be-main .mec-col-4 select{min-width:unset}.mec-form-row .nice-select{background-image:unset}.mec-calendar-metabox .wn-mec-select.open .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #ddd,0 2px 6px rgba(0,0,0,.07)}.mec-calendar-metabox .mec-custom-nice-select.open ul.list{border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.07);margin-left:0!important;transform:translateX(-50%);left:50%}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after{border:6px solid #40d9f1;box-shadow:0 3px 16px -3px #40d9f1}.m-e-calendar_page_MEC-settings .mec-form-row input+span.mec-tooltip,.m-e-calendar_page_MEC-settings .mec-form-row select+span.mec-tooltip{bottom:15px}.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 .tooltip-move-up span+span.mec-tooltip i{margin-top:-40px}.mec-form-row .mec-col-8 input[type=text],.mec-form-row .mec-col-8 select,.mec-form-row .mec-col-8 span.mec-archive-skins{vertical-align:top}.mec-form-row .mec-col-8 span.mec-archive-skins input[type=text]{max-width:225px}.mec-form-row input:disabled{opacity:.6;background:#f6f6f6}.wns-be-group-tab h5{font-size:16px;font-weight:600;color:#444;margin:0 0 40px 0}.mec-form-row textarea{height:auto;margin-bottom:0;min-height:60px}.mec-form-row .wp-picker-container input[type=text].wp-color-picker{height:25px;vertical-align:top;width:4rem;margin:-10px 0 0 0!important}.mec-form-row .wp-picker-container label{margin:0}.mec-image-select-wrap li span:hover{border-color:#fff;box-shadow:0 1px 8px rgba(0,0,0,.12)}.mec-message-categories li.mec-acc-label:after{content:"\e604";font-family:simple-line-icons;speak:none;font-style:normal;font-weight:400;display:block;font-size:13px;color:#999;position:absolute;right:27px;top:26px}.mec-message-categories>li.mec-acc-label[data-status=open]:after{content:"\e607";color:#07bbe9}.mec-message-categories>li.mec-acc-label[data-status=open]{color:#07bbe9}.mec-message-categories>li.mec-acc-label:last-of-type{border-bottom:none}.mec-message-categories>li.mec-acc-label[data-status=open]{border-bottom:1px solid #e6e6e6}.mec-form-row ul.mec-message-categories{box-shadow:0 2px 16px rgba(0,0,0,.03);border-radius:5px;overflow:hidden;margin-top:30px;background:#f5f5f5;border:2px solid #e6e6e6;max-width:700px}.mec-form-row ul.mec-message-categories li ul{padding:10px 40px 40px;margin:0 -30px 0;background:#fff;box-shadow:inset 0 6px 7px -2px rgb(0 0 0 / 4%);border-top:1px solid #eee;cursor:default}.mec-form-row ul.mec-message-categories ul label{margin:25px 8px 7px;font-size:14px;color:#888;cursor:default}#mec_calendar_display_options .mec-tooltip{bottom:1px}.mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-right:6px}#mec_add_fee_button,#mec_add_ticket_variation_button,#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,#taxes_option #mec_fees_list .mec-form-row .button,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button,.mec-export-settings,.mec-import-settings,.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result),.mec-occurrences-wrapper .button:not(.wp-color-result){border-radius:25px;border:1px solid #d1e5ec;text-shadow:none;padding:0 16px;height:35px;letter-spacing:.2px;margin-right:5px;background:#fff;color:#07bbe9;box-shadow:0 1px 5px -1px rgb(0 0 0 / 5%);transition:all .2s ease}.mec-export-settings,.mec-import-settings{padding:11px 16px;text-decoration:none}#mec_add_fee_button:hover,#mec_add_ticket_variation_button:hover,#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button:hover,.mec-meta-box-fields .mec-form-row .button:not(.wp-color-result):hover,.mec-occurrences-wrapper .button:not(.wp-color-result):hover{background:#f0f9fc}#taxes_option #mec_fees_list .mec-form-row .button,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button{margin:0}#mec-hourly-schedule .mec-form-row .mec-col-1 .button,#mec-hourly-schedule .mec-form-row.mec-box .button,#taxes_option #mec_fees_list .mec-form-row .button,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button{color:#ea6485;border-color:#ea6485}#mec-hourly-schedule .mec-form-row .mec-col-1 .button:hover,#mec-hourly-schedule .mec-form-row.mec-box .button:hover,#taxes_option #mec_fees_list .mec-form-row .button:hover,#ticket_variations_option #mec_ticket_variations_list .mec-form-row .button:hover{background:rgb(234 100 133 / .1)}#mec-hourly-schedule .mec-hourly-schedule-form-speakers{margin-top:20px}#mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button{margin-top:12px}#mec_meta_box_downloadable_file_options input[type=file]{max-width:166px;text-align:center;transition:all .2s ease;border-radius:5px!important;border:2px dashed #b8e9f3;margin-bottom:12px;height:44px;text-decoration:none;padding:0 15px 1px;text-transform:none;letter-spacing:0;font-weight:600;color:#40d9f1;box-shadow:0 2px 6px -3px #cfeff5}#mec_meta_box_downloadable_file_options input[type=file]:hover{box-shadow:0 2px 16px -3px #cfeff5}#mec_meta_box_downloadable_file_options input[type=file]::-webkit-file-upload-button{visibility:hidden;width:1px;height:38px}#mec_meta_box_downloadable_file_options input[type=file]::-moz-file-upload-button{visibility:hidden;width:1px;height:38px}#mec-read-more .mec-form-row span.mec-tooltip{top:2px;left:-4px}#mec-occurrences .mec-occurrences-list{margin-top:12px}#mec-occurrences .mec-occurrences-list h3{margin-top:0}#mec-occurrences .mec-occurrences-list .mec-form-row{margin-bottom:0}#mec-occurrences .mec-occurrences-list .mec-form-row label{line-height:40px;width:120px;display:inline-block;margin:0}#mec-occurrences .mec-occurrences-list .mec-form-row .event-status-schema label{width:auto;min-width:160px}#mec-occurrences .mec-occurrences-list .mec-form-row .event-status-schema p{border:unset;padding-left:0;margin-left:0}#mec-search-settings{border-radius:21px;min-height:32px;box-shadow:inset 0 1px 2px rgba(0,0,0,.06);margin-right:10px;color:#7c838a;font-size:13px;width:260px;background:#f7f8f9;border:none;z-index:1;transition:all .18s ease;outline:0;line-height:36px;padding:3px 10px 0 38px}#mec-search-settings:focus{background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.07),0 0 0 1px #e6e6e6;width:270px}.mec-search-settings-wrap{display:inline-block;position:relative}.mec-search-settings-wrap i{position:absolute;left:16px;top:13px;font-size:13px;color:#7e8c98;display:block;z-index:2}#mec-search-settings::-webkit-input-placeholder{color:#7c838a}#mec-search-settings::-moz-placeholder{color:#7c838a}#mec-search-settings:-ms-input-placeholder{color:#7c838a}#mec-search-settings:-moz-placeholder{color:#7c838a}#wns-be-content .noresults label,#wns-be-content .results .results .noresults label{color:#000}#wns-be-content .results .results .results label,#wns-be-content .results label,#wns-be-content ul li.enable,#wns-be-content ul li.enable label{color:#07bbe9}#wns-be-content ul li.disable,#wns-be-content ul li.disable label{color:#e7e7e7}.ui-datepicker.ui-widget{border:1px solid #e8e8e8;box-shadow:0 1px 9px rgba(0,0,0,.12)}.ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.ui-datepicker.ui-widget table{border-spacing:2px}.ui-datepicker.ui-widget td,.ui-datepicker.ui-widget tr{padding:0;background:0 0!important}.ui-datepicker.ui-widget td a{color:#777;font-weight:600;width:30px;height:30px;line-height:30px;display:inline-block;border-radius:33px;padding:0;background:#fff;transition:all .2s ease}.ui-datepicker.ui-widget td a.ui-state-active,.ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.ui-datepicker.ui-widget .ui-datepicker-next,.ui-datepicker.ui-widget .ui-datepicker-prev{color:#40d9f1;width:30px;height:30px;line-height:30px;display:inline-block;text-align:center;border-radius:33px;background:#ecfcff;transition:all .2s ease}.ui-datepicker.ui-widget .ui-datepicker-next:hover,.ui-datepicker.ui-widget .ui-datepicker-prev:hover{background:#fff;box-shadow:0 0 7px -3px rgba(0,0,0,.4)}#mec-wrap{width:92%;margin:20px auto;max-width:1384px}#mec-wrap h2.nav-tab-wrapper{margin-bottom:0;position:relative;z-index:8;padding:0;border-radius:5px 5px 0 0;border:none;margin-top:35px;clear:both;background:#fff;box-shadow:0 1px 0 0 #ededed}#mec-wrap .nav-tab-wrapper .nav-tab{position:relative;padding:28px 22px;border:none;margin:0;background:#fff;font-size:13px;color:#444;outline:0;box-shadow:none}#mec-wrap .nav-tab-wrapper .nav-tab:hover{color:#07bbe9}#mec-wrap .nav-tab-wrapper .nav-tab:after{content:"";display:inline-block;width:1px;height:30%;position:absolute;right:0;top:35%;background:#e9e9e9}#mec-wrap .nav-tab-wrapper .nav-tab-active,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus,#mec-wrap .nav-tab-wrapper .nav-tab-active:focus:active,#mec-wrap .nav-tab-wrapper .nav-tab-active:hover{background:#ecf9fd;outline:0;margin-left:-1px;z-index:2;border:1px solid #ccecf4;color:#07bbe9;border-radius:5px;margin-bottom:-1px}#mec-wrap .nav-tab-wrapper .nav-tab-active:after{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-20px;left:50%;margin-left:-10px;width:0;border-width:10px;border-style:solid;border-color:#ecf9fd transparent transparent}#mec-wrap .mec-container{padding:25px 40px 40px;box-shadow:0 3px 10px -4px rgba(0,0,0,.1)}#wpwrap .mec-button-primary{box-shadow:0 0 0 4px #e4ffe6;text-shadow:none;margin-right:5px;background:#64e385;color:#fff;border:none;cursor:pointer;padding:2px 22px;border-radius:22px;font-weight:500}#wpwrap .mec-button-primary:hover{box-shadow:0 0 0 4px rgb(0 0 0 / 10%);background:#4d5051;border-color:#4d5051;cursor:pointer}#mec-wrap .nav-tab-wrapper .nav-tab-active:before{content:'';position:absolute;display:block;background:0 0;top:auto;height:auto;bottom:-24px;left:50%;margin-left:-12px;width:0;border-width:12px;border-style:solid;border-color:#ccecf4 transparent transparent}.ui-datepicker.ui-widget select{border-color:#e7e8e9}.wn-p-t-right{min-width:300px;max-width:400px;display:inline-block;top:-8px;left:50%;margin-top:0;transform:translate(-50%,-100%);padding:0;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.5;position:absolute;z-index:99999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:20px;border-radius:8px}.wn-p-t-right i{position:absolute!important;top:100%;right:50%;margin-top:-6px!important;margin-right:-6px!important;width:12px;height:24px;overflow:hidden;transform:rotate(-90deg)}.wn-p-t-right i:after{content:'';position:absolute;width:12px;height:12px;left:0;top:50%;transform:translate(50%,-50%) rotate(-45deg);background-color:#535a61;box-shadow:0 8px 9px -4px #535a61}.wn-p-t-right .wn-p-t-text-content h5{color:#fff;font-size:17px;font-weight:600;margin:-20px;padding:15px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0}.mec-addon-box-footer a:hover .wn-p-t-right{visibility:visible;opacity:1}#mec_organizer_user+.select2-container,#mec_speaker_user+.select2-container{min-width:224px!important}.mec-add-event-tabs-wrap .select2-container,.mec-create-shortcode-tab-content .select2-container{min-height:38px;height:auto;box-sizing:border-box;padding:0 6px;border-radius:2px;border:1px solid #ddd;box-shadow:inset 0 1px 6px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;transition:50ms border-color ease-in-out;min-width:200px;font-size:14px}.mec-add-event-tabs-wrap .select2-selection,.mec-create-shortcode-tab-content .select2-selection{border:none;background:0 0;padding-top:3px;width:100%;height:100%}.mec-add-event-tabs-wrap .select2-container--default.select2-container--focus .select2-selection,.mec-create-shortcode-tab-content .select2-container--default.select2-container--focus .select2-selection{border:none!important;outline:0}.mec-add-event-tabs-wrap .select2-container--default .select2-selection--single .select2-selection__arrow,.mec-create-shortcode-tab-content .select2-container--default .select2-selection--single .select2-selection__arrow{top:5px;right:4px}.fs-webform-container div .fserv-container{width:100%!important;max-width:none!important;min-height:208px!important;box-shadow:0 1px 16px rgba(0,0,0,.034)!important;border-radius:2px!important;padding:0!important;margin-bottom:0!important;margin-top:30px!important}.fserv-container .fserv-form-name{font-weight:600!important;position:relative!important;font-size:20px!important;padding:20px!important;border-bottom:1px solid #ededed!important;text-align:left!important;margin:0!important}.fserv-form-description{padding:10px 30px!important;margin:1em 0 0!important;line-height:1.5!important;font-size:16px!important}.fserv-container form{padding:0!important;padding-left:28px!important}.fserv-container .fserv-label{display:none!important}.fserv-field{display:inline-block;width:41%!important;padding:0!important;margin:0!important;margin-right:25px!important}.fserv-field+div:not(.fserv-field){margin:0!important;border:none!important;text-align:left!important;padding-left:4px!important;margin-top:0!important;padding-top:0!important;display:inline-block;margin-right:10px!important}.fserv-container .powered-by{display:none!important}@media(max-width:1366px){#webnus-dashboard .fserv-container form{padding:0!important;padding:0 28px 40px 28px!important}#webnus-dashboard .fserv-form .fserv-field{width:33%!important}#webnus-dashboard .fserv-form .fserv-button-submit{margin-left:-2px!important}}@media(max-width:960px){#webnus-dashboard .fserv-container form{padding:0!important;padding:0 28px 40px 28px!important}#webnus-dashboard .fserv-form .fserv-field{width:100%!important}#webnus-dashboard .fserv-form .fserv-button-submit{margin-left:-2px!important}}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{font-weight:500;border-radius:2px;text-shadow:none;box-shadow:0 1px 3px rgba(0,0,0,.06);background:#fff;background:linear-gradient(95deg,#fff 0,#fff 50%,#fff 100%)!important;border:1px solid #e7e7e7;transition:.24s}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .total-bookings button,button.fserv-button-submit{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important}#webnus-dashboard .total-bookings button{line-height:39px;padding:0 36px}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag.button-primary,#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover{color:#fff!important}#webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover,#webnus-dashboard .total-bookings button:hover,button.fserv-button-submit:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}.fserv-container input::-webkit-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input::-moz-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-ms-input-placeholder{font-family:Inherit!important;font-size:14px}.fserv-container input:-moz-placeholder{font-family:Inherit!important;font-size:14px}input.fserv-input-text{height:38px;box-sizing:border-box;margin-bottom:8px;padding:0 6px;box-shadow:none;border-radius:2px;box-shadow:inset 0 1px 5px rgba(0,0,0,.05)}.fserv-field label.error{display:none!important}.fs-notifier{position:fixed!important;top:40px!important;width:300px!important;max-width:300px!important;margin:0!important;right:20px!important;left:unset!important}.post-type-mec-events .lity{background:#edf0f3}.post-type-mec-events .lity-container{width:60vW;max-width:883px;margin:0 auto;border-radius:7px}.post-type-mec-events .lity-content:after{display:none}.mec-manage-events-lightbox{box-shadow:0 3px 20px rgba(0,0,0,.05)}.w-clearfix.mec-attendees-content img{display:inline-block;width:25px;height:25px;vertical-align:middle;margin-right:7px}.post-type-mec-events .mec-attendees-list-head{background:#008aff;color:#fff;text-align:center;padding:17px 0;text-transform:capitalize;font-size:26px;font-weight:700;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;border-radius:7px 7px 0 0;line-height:43px;box-shadow:0 3px 15px rgba(0,138,255,.25);z-index:99}.mec-attendees-list-wrap{display:flex;width:100%;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;background:#fff;box-shadow:0 3px 20px rgba(0,0,0,.05);border-radius:0 0 5px 5px;overflow:hidden}.mec-attendees-list-left{flex:1;background:#f6f8fa;padding:0;border-radius:0;position:relative}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0 0 5px 5px;padding:0 20px 20px;background:#f2f4f7}.mec-attendees-list-left-menu a{display:inline-block;line-height:22px;font-size:12px;color:#000;font-weight:500;border-bottom:1px solid #eaebec;border-left:1px solid #eaebec;padding-bottom:0;padding:7px 6px;margin-bottom:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;transition:all .2s ease;text-decoration:none;text-align:center}.mec-attendees-list-left-menu a.selected-day{color:#008aff}.mec-attendees-list-left-menu .owl-item:last-child a{border-right:1px solid #eaebec}.mec-attendees-list-right table{width:100%}.w-clearfix.mec-attendees-head{margin-top:30px;border-bottom:2px solid #008aff;padding-bottom:18px;margin-bottom:3px}.w-clearfix.mec-attendees-content [class^=w-col-xs-],.w-clearfix.mec-attendees-head [class^=w-col-xs-]{padding:0}.w-clearfix.mec-attendees-head span{font-weight:600;color:#000;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;font-size:17px}.w-clearfix.mec-attendees-content{background:#fff;margin-bottom:2px;padding:10px 20px}.mec-attendees-list-left-menu{height:36px;margin-left:35px;margin-right:36px}.mec-attendees-list-left-menu a:active,.mec-attendees-list-left-menu a:focus,.mec-attendees-list-left-menu a:visited{outline:0;box-shadow:none}.mec-attendees-list-left-menu .owl-item{display:inline-block}.mec-attendees-list-left-menu .owl-stage{min-width:800px!important}.owl-nav.disabled .owl-next{position:absolute;right:0;top:0}.owl-nav.disabled .owl-prev{position:absolute;left:0;top:0}.owl-nav.disabled button{background:#fff;box-shadow:none;border:1px solid #ccc;height:36px;width:36px;font-size:54px;line-height:54px}.owl-nav.disabled button span{margin-top:-18px;display:block}.mec-cover-loader:after{content:'';position:absolute;top:0;right:0;left:0;bottom:0;background:rgba(255,255,255,.5);z-index:99999}.mec-loader{background:rgba(0,0,0,0);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:9}.mec-loader,.mec-loader:after{border-radius:50%;width:5em;height:5em;z-index:999999999999}.mec-loader{font-size:10px;text-indent:-9999em;border-top:.5em solid rgba(0,0,0,.2);border-right:.5em solid rgba(0,0,0,.2);border-bottom:.5em solid rgba(0,0,0,.2);border-left:.5em solid #fff;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);-webkit-animation:mecloader 1.1s infinite linear;animation:mecloader 1.1s infinite linear}@media(max-width:992px){.post-type-mec-events .lity-container{width:80vw}}@-webkit-keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes mecloader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.mec-report-backtoselect-wrap,.mec-report-sendmail-form-wrap{display:none}.mec-report-select-event-wrap .select2{width:100%!important}.mec-report-select-event-wrap .select2-container--default .select2-selection--single{border-radius:2px;border:1px solid #e2e3e4;height:38px;padding-top:5px;width:100%;box-shadow:0 2px 3px rgba(0,0,0,.03)}.mec-report-select-event-wrap .select2-container--default .select2-selection--single .select2-selection__arrow{height:36px}.mec-report-select-event-wrap .select2-container--open .select2-dropdown--below{box-shadow:0 2px 8px rgba(0,0,0,.12);border-color:#d7d8d9}.select2-container--default .select2-search--dropdown .select2-search__field{box-shadow:0 2px 8px rgba(0,0,0,.06) inset;border-color:#d7d8d9;border-radius:2px}.mec-report-select-event-wrap input[type=text],.mec-report-select-event-wrap select{border:1px solid #e2e3e4;font-size:13px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif!important;margin-bottom:15px;border-radius:2px;box-shadow:0 2px 3px rgba(0,0,0,.03);max-width:150px}.mec-report-select-event-wrap .select2-container--default{max-width:400px}.mec-report-select-event-wrap select.mec-reports-selectbox-dates{height:38px;min-width:260px;margin:0 0 0 10px;padding-left:15px}.mec-report-sendmail-form-wrap,.mec-report-sendmail-wrap{padding:30px 15px;background:#fff;border:1px solid #e2e3e4;margin:15px 0 5px;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-report-sendmail-wrap .w-col-sm-12:before{background:url(../img/email-document.png) no-repeat left top;content:"";display:block;width:90px;height:70px;z-index:100;float:left}.mec-report-sendmail-wrap p{margin:0 0 15px;font-size:15px;color:#7d8284}.mec-report-backtoselect-wrap button,.mec-report-sendmail-wrap .w-col-sm-12 button,.mec-send-email-form-wrap .mec-send-email-button{background:#19cde9;border:none;color:#fff;font-size:13px!important;padding:6px 16px;border-radius:2px;cursor:pointer;box-shadow:0 1px 2px rgba(25,205,233,.25);transition:all .2s ease}.mec-report-backtoselect-wrap button:hover,.mec-report-sendmail-wrap .w-col-sm-12 button:hover,.mec-send-email-form-wrap .mec-send-email-button:hover{background:#04bfdc;box-shadow:0 1px 2px rgba(25,205,233,.05)}.mec-report-backtoselect-wrap button{margin-top:15px}.mec-report-selected-event-attendees-wrap{border:1px solid #96e3ef;padding:0;margin:20px 0;border-radius:3px;box-shadow:0 2px 14px rgba(25,205,233,.1);display:none}.mec-report-sendmail-wrap{display:none}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{background:#c7eef4;border-bottom:1px solid #96e3ef;padding:15px;margin:0;border-radius:3px 3px 0 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content{margin:0;padding:8px 15px;border-bottom:1px solid #e4eef0;font-size:13px;line-height:25px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:hover{background:#f3fdfe}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content:last-child{border-bottom:none;border-radius:0 0 3px 3px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content img{border-radius:25px;margin-left:8px}.mec-report-selected-event-attendees-wrap input[type=checkbox]{border-radius:3px;margin-top:0}.mec-report-selected-event-attendees-wrap .mec-attendees-head .w-col-xs-2.name{padding-left:10px}.mec-report-selected-event-attendees-wrap .checkin_status span{font-weight:600}.mec-report-selected-event-attendees-wrap .w-col-sm-12>p{text-align:center}.mec-attendees-list-right,.mec-send-email-form-wrap{flex:1;border-radius:0;padding:0;background:0 0;max-width:674px;margin:0 auto}.mec-report-sendmail-form-wrap{padding:0 30px 45px}.mec-send-email-form-wrap h2{background:url(../img/email-document.png) no-repeat center top;padding-top:70px;font-size:22px;font-weight:600;text-align:center;padding-bottom:10px;padding-left:10px;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tools button{font-size:13px;font-weight:400;color:#444;line-height:1;margin-bottom:0}#webnus-dashboard .mec-send-email-form-wrap .wp-editor-tabs button{min-height:30px}.mec-send-email-form-wrap input.widefat{min-height:40px;border:1px solid #e2e3e4;border-radius:2px;box-shadow:0 1px 4px rgba(0,0,0,.02)}.mec-send-email-form-wrap input.widefat:focus{border:1px solid #96e3ef}.mec-send-email-form-wrap h4.mec-send-email-count{font-weight:400;text-align:center;margin-bottom:30px;margin-top:0;padding-top:0}.mec-send-email-form-wrap .mec-send-email-button{min-height:40px;line-height:40px;padding:0;font-size:17px!important;font-weight:600}.mec-send-email-form-wrap .mce-menubtn.mce-fixed-width span{height:20px;padding-top:2px}.lity.mec-add-shortcode-popup{background-color:#b7e4e3}.lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}.mec-add-shortcode-popup .lity-container{width:930px;height:620px}.mec-add-shortcode-popup .lity-content:after{display:none}.mec-add-shortcode-popup div#mec_popup_shortcode{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.mec-steps-container{width:92px;text-align:center;background:#fff}.mec-steps-panel{width:calc(100% - 92px);background:#eef4f5}.mec-steps-container ul{text-align:center;display:block;margin-top:62px}.mec-steps-container ul li{width:22px;height:70px;margin:0 auto;position:relative}.mec-steps-container ul li span{border-radius:50px;background-color:rgba(26,175,251,.16);width:22px;height:22px;display:inline-block;padding-top:2px;font-size:11px;font-weight:700;color:#1aaffb}.mec-steps-container ul li:after,.mec-steps-container ul li:before{content:'';display:block;height:24px;width:2px;background:rgba(26,175,251,.16);margin-left:calc(50% - 1px)}.mec-steps-container ul li:first-of-type:before,.mec-steps-container ul li:last-of-type:after{display:none}.mec-steps-container ul li:first-of-type{height:46px}li.mec-step.mec-step-passed span,li.mec-step.mec-step-passed:after,li.mec-step.mec-step-passed:before{background-color:#2dcb73;color:#fff}.mec-steps-container img{margin-top:27px}.mec-steps-header{display:flex;background:#fff;border-radius:5px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);padding:12px 22px;margin-bottom:50px}.mec-steps-header-settings{width:65px}.mec-steps-header-dashboard{width:fit-content;margin-right:22px}.mec-steps-header-userinfo{width:calc(100% - 65px)}.mec-steps-panel{padding:35px;position:relative;display:flex;flex-direction:column;justify-content:space-between}.mec-steps-header-userinfo span{display:inline-block;vertical-align:middle}.mec-steps-header-userinfo span img{height:40px;border-radius:50px;margin-right:8px;vertical-align:middle}.mec-steps-header-userinfo span.mec-steps-header-name{font-size:14px;color:#778182}span.mec-steps-header-add-text{color:#839294;font-size:12px;margin-left:5px}.mec-steps-header-dashboard a,.mec-steps-header-settings a{height:100%;display:block;padding-top:11px;text-decoration:none;font-size:12px;color:#707070}.mec-steps-header-dashboard a i,.mec-steps-header-settings a i{color:#1aaffb;font-size:16px;vertical-align:text-top;margin-right:5px}.mec-next-previous-buttons{clear:both}.mec-next-previous-buttons button.mec-button-next{float:right;background:#008aff;border:none;color:#fff;cursor:pointer;width:123px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-next img{position:absolute;top:16px;right:18px}.mec-next-previous-buttons button{position:relative}.mec-next-previous-buttons button.mec-button-prev{background:#fff;border:none;color:#000;cursor:pointer;width:123px;text-align:right;padding:8px 15px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(11,121,125,.01);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-prev img{position:absolute;top:16px;left:18px}.mec-next-previous-buttons button.mec-button-prev:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3);color:#fff}.mec-next-previous-buttons button.mec-button-new{background:#008aff;float:right;border:none;color:#fff;cursor:pointer;width:154px;text-align:left;padding:8px 18px 9px;border-radius:3px;font-size:14px;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);transition:all .3s ease;outline:0}.mec-next-previous-buttons button.mec-button-new:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}.mec-next-previous-buttons button.mec-button-new img{vertical-align:sub;margin-left:-3px;margin-right:8px}div#mec_popup_shortcode_form{height:calc(100% - 37px)}.mec-steps-content-container{display:flex;flex-direction:column;height:100%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/first-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:50%;position:absolute;width:360px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:360px;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::-webkit-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]:-ms-input-placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]::placeholder{color:#b1b2b4}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/add-sh-icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul{height:386px;overflow-x:hidden;overflow-y:scroll;padding-left:60px;margin-top:-22px;margin-bottom:0;position:relative;padding-bottom:19px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{width:193px!important;float:left!important;min-height:135px!important;height:160px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img img{margin:4px 0 1px 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text input{display:block;margin:0 auto;margin-top:6px;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05);position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-img{padding-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li .mec-step-popup-skin-text input{display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before{width:14px;height:14px;content:'';border-radius:50px;background:#fff;display:block;position:absolute;left:calc(50% - 7px);top:24px;z-index:99;border:2px solid #e1e7ed;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text{position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:before{background:#008aff;border:none;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);width:16px;height:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 li.active .mec-step-popup-skin-text:after{width:4px;height:4px;display:block;content:'';position:absolute;background:#fff;left:calc(50% - 1px);top:30px;z-index:999;border-radius:50px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh{display:block}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:386px;overflow-x:hidden;padding-left:60px;padding-bottom:19px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label{width:193px!important;float:left!important;margin:1.66%!important;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label span{width:193px!important;float:left!important;min-height:135px!important;height:150px;box-sizing:border-box;border-radius:5px;border:2px solid #c4edff;background:#fff!important;cursor:pointer;margin-bottom:5px;margin-top:-6px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active span{border-color:#00acf8;box-shadow:0 3px 5px rgba(0,172,248,.2)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label div{font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles label.active div{color:#008aff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles input{opacity:0;display:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-steps-content.mec-steps-content-3{margin-top:-18px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 span.wn-hover-img-sh img{width:189px;height:146px;border-radius:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 .nice-select{border:none;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4{top:40%;position:absolute;width:330px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 h3{font-size:13px;font-weight:400;color:#707070}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div{border:2px dashed #dce2e3;border-radius:3px;padding:20px 20px 6px;background:#fcfcfc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div label{display:block;margin-bottom:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option .wn-hover-img-sh img{position:absolute;padding:3px;top:-1px;left:100%;box-shadow:0 4px 42px -5px rgba(0,0,0,.16);visibility:hidden;opacity:0;border:1px solid #e3e3e3;border-radius:2px;z-index:99999999;background:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected.focus,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-shortcode-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#fff;position:relative;width:24px;height:24px;border:1px solid #cacece}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input:before{disaply:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input{background:#008aff;box-shadow:0 5px 10px 0 rgba(0,138,255,.3);border:none}.mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label.active input:before{background:#fff;width:6px;height:6px;top:6px;left:6px;position:absolute}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5{width:360px;margin-top:16px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher label{color:#707070;font-size:14px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher p{color:#8a8a8a;font-style:italic;font-size:12px;margin-top:7px;margin-bottom:0}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher{padding-bottom:30px;margin-bottom:34px;border-bottom:2px dashed #dce2e3;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher:last-of-type{padding-bottom:0;margin-bottom:0;border:none}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher div:last-of-type label{position:absolute;top:-4px;right:0;width:52px;height:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input:checked+label:after{margin-left:26px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after,.mec-add-shortcode-popup .mec-switcher input+label:before{display:block;position:absolute;top:2px;left:1px;bottom:2px;content:""}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-5 .mec-steps-content.mec-steps-content-5 .mec-switcher input+label:after{width:23px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6{background:url(../../assets/img/popup/sixth-step.png) no-repeat 90% 70%}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-content.mec-steps-content-6{margin-top:56px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode h3{font-size:16px;font-weight:400;color:#707070;margin-top:7px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{border-radius:3px;background:rgba(154,214,222,.35);width:243px;margin:0 auto;padding:14px 17px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code{background:0 0;color:#000;font-size:14px;font-weight:600;margin-left:-11px}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{border:none;background:#fff;border-radius:3px;padding:3px 8px 6px;margin-left:46px;cursor:pointer}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button:hover{background:#000;color:#fff}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-results p{width:325px;text-align:center;font-size:12px;margin-top:5px;color:#8a8a8a}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading{width:325px;border:2px dashed #dce2e3;background:#fcfcfc;padding:42px 42px 47px;text-align:center;height:182px;position:relative}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-steps-6-loading .mec-loader{position:absolute;left:136px;top:65px}.mec-add-event-popup button.lity-close,.mec-add-shortcode-popup button.lity-close{right:0;top:-52px;border-radius:50%;width:37px;height:37px;background:#fff;color:#a2afbc;text-shadow:none;padding-top:1px;transition:all .2s ease;position:absolute;box-shadow:0 3px 8px 0 rgba(91,188,190,.55)}.mec-add-event-popup button.lity-close:hover,.mec-add-shortcode-popup button.lity-close:hover{background:#000;color:#fff;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-skin-styles.mec-styles-full_calendar h3{padding-left:12px}.lity.mec-add-event-popup{background-color:#b7e4e3}.mec-add-event-popup .lity-container{width:930px;height:620px;max-width:unset}.mec-add-event-popup div#mec_popup_event{background:#fff;overflow:hidden;display:flex;width:100%;border-radius:10px;height:100%}.lity.mec-add-event-popup .lity-content{box-shadow:0 3px 20px 0 rgba(91,188,190,.55);border-radius:10px;height:100%}div#mec_popup_event_form{height:calc(100% - 37px)}.mec-add-event-popup .mec-steps-container ul{margin-top:42px}.mec-add-event-popup .mec-steps-container ul li:first-of-type{height:41px}.mec-add-shortcode-popup .mec-steps-container ul li:after,.mec-add-shortcode-popup .mec-steps-container ul li:before{height:24px}.mec-add-event-popup .mec-steps-container ul li:after,.mec-add-event-popup .mec-steps-container ul li:before{height:19px}.mec-add-event-popup .mec-steps-container ul li{height:60px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup{box-shadow:0 3px 22px 0 rgba(11,121,125,.01);border:none;clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;box-sizing:border-box;cursor:pointer;display:block;float:left;font-family:inherit;font-size:12px;font-weight:400;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;height:46px;margin-right:6px;padding-top:3px;color:#707070}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open{border-radius:3px 3px 0 0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:hover{border-color:#dbdbdb}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{overflow:unset;width:100%;margin:0}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background-color:#fff;border-radius:0 0 3px 3px;box-shadow:0 0 0 0 rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9;margin-top:1px!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup:after{border-bottom:2px solid #00acf8;border-right:2px solid #00acf8;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:15px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled{border-color:#ededed;color:#999;pointer-events:none}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup.disabled:after{border-color:#ccc}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list:hover .option:not(:hover){background-color:transparent!important}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:22px!important;min-height:22px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected{font-weight:700}.mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.disabled{background-color:transparent;color:#999;cursor:default}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup .list{display:none}.mec-add-event-popup .no-csspointerevents .wn-mec-select-popup.open .list{display:block}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1{background:url(../../assets/img/popup/add-event-first-step.png) no-repeat 100% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name{width:100%;height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::-webkit-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name:-ms-input-placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 #mec_event_name::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:210px;position:absolute;width:370px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .popup-sh-name-required{color:red;display:none;font-style:italic;font-size:12px;margin-top:8px}.mec-add-event-popup .mec-meta-box-colors-container{background:#fff;padding:17px;border-radius:3px;box-shadow:0 3px 22px rgba(11,121,125,.01);margin-top:15px}.mec-add-event-popup .wp-picker-container .wp-color-result.button{border-color:#f1f2f4;border-radius:3px;box-shadow:0 2px 2px rgba(0,0,0,.04)}.mec-add-event-popup .mec-recent-color-sec{display:block!important;font-size:12px;color:#707070}.mec-add-event-popup .mec-form-row.mec-available-color-row{border:2px dashed #dce2e3;padding:13px 20px;background:#fcfcfc;border-radius:3px}.mec-add-event-popup .wp-color-result-text{background:#f7f7f7;border-radius:unset;border-left:none;color:#555;display:block;line-height:2.54545455;padding:0 6px;text-align:center}.mec-add-event-popup .mec-form-row.mec-available-color-row .mec-color{width:12px;height:12px;position:absolute;top:-5px;left:0;z-index:99}.mec-add-event-popup span.mec-color-meta-box-popup{display:inline-block!important;width:20px;height:20px;border-radius:50px;position:absolute;top:1px;left:6px;z-index:9}.mec-add-event-popup span.mec-recent-color-sec-wrap{width:20px;height:20px;display:inline-block;margin-right:12px;margin-top:7px;margin-left:-6px;position:relative}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2{background:url(../../assets/img/popup/sixth-step.png) no-repeat 95% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4{width:auto}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/calendar_icon.png) no-repeat center center;position:absolute;top:17px;left:17px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form .mec-col-4 input{padding-left:36px;width:148px;padding:22px 17px 22px 34px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form select{height:46px;border:none;border-radius:3px;padding-left:36px;font-size:12px;color:#707070;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_end_date::placeholder,.mec-add-event-popup .mec-steps-content-container.mec-steps-content-2 #mec_meta_box_date_form input#mec_start_date::placeholder{color:#b1b2b4}.mec-add-event-popup .mec-form-row .time-dv{float:left;margin-left:-2px;margin-right:4px;margin-top:12px;color:#b1b2b4}.mec-add-event-popup .mec-steps-content.mec-steps-content-2{margin-top:60px}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event label{font-size:14px;color:#707070}.mec-add-event-popup .mec-steps-content.mec-steps-content-2 .mec-form-row.mec-all-day-event{margin-top:13px!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-3,.mec-add-event-popup .mec-steps-content.mec-steps-content-4{margin-top:-9px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-3{background:url(../../assets/img/popup/fifth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-4{background:url(../../assets/img/popup/add-organizer.png) no-repeat 95% 70%}.nice-select.mec_popup_location_id.wn-mec-select-popup,.nice-select.mec_popup_organizer_id.wn-mec-select-popup{position:relative;width:166px;padding-left:36px}.nice-select.mec_popup_location_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}.nice-select.mec_popup_organizer_id.wn-mec-select-popup:before{content:'';width:14px;height:14px;background:url(../../assets/img/popup/pointer.png) no-repeat center center;position:absolute;top:17px;left:17px}#mec_popup_event button#mec_popup_add_location:before,#mec_popup_event button#mec_popup_add_organizer:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_location_id.wn-mec-select-popup.open .list li,.mec-add-event-popup .mec-steps-content-container .nice-select.mec_popup_organizer_id.wn-mec-select-popup.open .list li{line-height:32px!important;min-height:32px!important}#mec_popup_event .mec-steps-content .mec-tooltip{bottom:8px}#mec-location .mec-form-row span+span.mec-tooltip i,#mec-organizer .mec-form-row span+span.mec-tooltip i{margin-top:-18px}#mec_popup_event .mec-steps-content .mec-tooltip .dashicons-before:before{color:#008aff}#mec_popup_event button#mec_organizer_thumbnail_button,#mec_popup_event button#mec_popup_add_location,#mec_popup_event button#mec_popup_add_organizer{background:#008aff;border-radius:3px;border:none;color:#fff;width:146px;height:46px;margin-left:10px;box-shadow:0 3px 3px 0 rgba(0,138,255,.22);font-size:14px;cursor:pointer;transition:all .2s ease;outline:0;position:relative;padding-left:20px}#mec_popup_event button#mec_organizer_thumbnail_button:hover,#mec_popup_event button#mec_popup_add_location:hover,#mec_popup_event button#mec_popup_add_organizer:hover{background:#000;box-shadow:0 5px 10px 0 rgba(0,0,0,.3)}#mec_popup_event label[for=mec_location_dont_show_map]{font-size:14px;margin-left:4px;margin-top:12px!important;display:inline-block;margin-bottom:7px}#mec_popup_event input#mec_location_dont_show_map{margin-top:9px!important}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container{border-top:2px dashed #dce2e3;width:360px;padding-top:25px;margin-top:20px}#mec_popup_event div#mec_location_new_container input,#mec_popup_event div#mec_organizer_new_container input{width:100%;height:46px;border:none;border-radius:3px;padding-left:17px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}#mec_popup_event div#mec_location_new_container .description,#mec_popup_event div#mec_organizer_new_container .description{border:none;padding:0;margin:0;margin-left:16px;line-height:19px;font-size:12px;color:#707070;font-style:normal;margin-top:-4px;display:block}#mec_popup_event .mec-form-row.mec-lat-lng-row input{width:44%!important}#mec_popup_event .mec-form-row.mec-lat-lng-row input:first-of-type{margin-right:10px}#mec_popup_event div#mec_organizer_new_container{margin-top:30px}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6:first-of-type{margin-right:14px!important}#mec_popup_event div#mec_organizer_new_container .mec-form-row:first-of-type .mec-col-6{width:48%;margin:0}#mec_popup_event button#mec_organizer_thumbnail_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/picture.png) no-repeat center center;position:absolute;top:16px;left:15px}#mec_popup_event button#mec_organizer_thumbnail_button{width:96%;padding-left:30px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img{position:absolute;right:10px;top:-20px}.mec-add-event-popup .mec-steps-content.mec-steps-content-4 div#mec_organizer_thumbnail_img img{max-width:110px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5{background:url(../../assets/img/popup/fourth-step.png) no-repeat 90% 70%}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input{height:30px;border:none;border-radius:3px;padding-left:10px;margin-left:20px;font-size:12px;color:#b1b2b4;box-shadow:0 3px 22px 0 rgba(11,121,125,.01);float:right;margin-top:-4px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5{width:326px;margin-top:48px}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:42px;color:#008aff;font-size:14px;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)}.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li.mec-categories-tab-selected,.mec-add-event-popup .mec-steps-content.mec-steps-content-5 .mec-categories-tabs ul li:hover{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3)}.mec-add-event-popup .mec-categories-tab-contents{background:#fff;padding:20px;border:2px dashed #dce2e3;margin-bottom:13px;margin-top:-5px}.mec-add-event-popup .mec-categories-tab-contents ul,.mec-add-event-popup .mec-categories-tab-contents ul li:last-of-type{margin:0}.mec-add-event-popup .mec-categories-tab-contents ul li{font-size:14px;color:#707070}.mec-add-event-popup .mec-categories-tab-contents.mec-form-row input[type=checkbox]{margin-top:0}.mec-add-event-popup .mec-categories-tab-contents{max-height:200px;overflow:hidden;overflow-y:scroll}.mec-add-event-popup .nice-select.mec_popup_location_id .list,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list{max-height:240px!important;overflow:hidden!important;overflow-y:scroll!important}.mec-add-event-popup .mec-categories-tab-contents::-webkit-scrollbar,.mec-add-event-popup .nice-select.mec_popup_location_id .list::-webkit-scrollbar,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list::-webkit-scrollbar{width:5px}.mec-add-event-popup .mec-categories-tab-contents::-webkit-scrollbar-track,.mec-add-event-popup .nice-select.mec_popup_location_id .list::-webkit-scrollbar-track,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list::-webkit-scrollbar-track{box-shadow:inset 0 0 6px rgba(0,0,0,.1)}.mec-add-event-popup .mec-categories-tab-contents::-webkit-scrollbar-thumb,.mec-add-event-popup .nice-select.mec_popup_location_id .list::-webkit-scrollbar-thumb,.mec-add-event-popup .nice-select.mec_popup_organizer_id .list::-webkit-scrollbar-thumb{background-color:#008aff;outline:0 solid #fff}.mec-add-event-popup span#mec_popup_new_category_button{cursor:pointer;position:relative;padding-left:18px;font-size:14px}.mec-add-event-popup span#mec_popup_new_category_button:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus-blue.png) no-repeat center center;position:absolute;top:3px;left:0}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-5 .mec-categories-add-new input::placeholder{color:#b1b2b4;font-size:11px}.mec-add-event-popup .mec-steps-content.mec-steps-content-6.mec-steps-content-active{margin-top:-10px;height:70%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-tinymce.mce-container.mce-panel{height:100%;border:1px solid #ececec!important;box-shadow:0 3px 22px 0 rgba(11,121,125,.01)!important;border-radius:3px!important;overflow:hidden}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{height:100%;background:#f5f5f5}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container *{border:none!important;box-shadow:none!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item{height:90%}.mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-statusbar.mce-container.mce-panel.mce-stack-layout-item.mce-last{display:none!important}.mec-add-event-popup .mce-edit-area.mce-container.mce-panel.mce-stack-layout-item iframe{height:100%!important}.mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active{height:70%;background:#fff;border:2px dashed #dce2e3;border-radius:3px;text-align:center;vertical-align:middle;margin-top:-10px;position:relative}.mec-add-event-popup .mec-event-popup-featured-image-wrapper{display:flex;justify-content:center;align-items:center;height:100%}.mec-add-event-popup button#mec_popup_upload_image_button{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:12px 18px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:42px;font-size:14px;margin-right:0}.mec-add-event-popup div#mec_event_popup_featured_image_preview img{max-height:300px;max-width:740px;margin-top:20px;margin-bottom:0}.mec-add-event-popup button#mec_popup_upload_image_button:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-event-popup-featured-image-wrapper span i{border-radius:50px;color:#bb353f;right:10px;top:10px;font-size:30px;position:absolute;cursor:pointer}.mec-add-event-popup .mec-steps-content.mec-steps-content-8{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results .mec-steps-8-results-wrap{display:flex;justify-content:center;align-items:center;flex-direction:column;height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-loading .mec-loader{left:calc(50% - 2.5em);top:calc(50% - 2.5em)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results{height:100%}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view{display:inline-block;background:#fff;border:none;cursor:pointer;padding:12px 22px 12px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;margin-right:10px;height:46px;font-size:14px;box-shadow:0 3px 3px 0 rgba(0,0,0,.04);text-decoration:none;color:#000;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:hover{background-color:#000;color:#fff}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 a.mec-button-view:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/eye.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new{background:#008aff;color:#fff;box-shadow:0 3px 3px 0 rgba(0,138,255,.3);display:inline-block;border:none;cursor:pointer;padding:11px 22px 11px 36px;border-radius:3px;transition:all .3s ease;outline:0;text-align:center;height:46px;font-size:14px;margin-right:0;position:relative;line-height:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:hover{background:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,.3)}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 button.mec-button-new:before{content:'';width:15px;height:15px;background:url(../../assets/img/popup/plus.png) no-repeat center center;position:absolute;top:16px;left:15px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-popup-final-buttons{margin-top:22px}.mec-add-event-popup .mec-steps-content.mec-steps-content-8 .mec-steps-8-results-wrap h3{font-size:26px;font-weight:400}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup{min-width:64px}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list{overflow-y:scroll!important;height:288px;margin-top:4px!important;box-shadow:0 1px 9px rgba(0,0,0,.1);border-radius:0}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-track{background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar{width:3px;background-color:#f6f6f6}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup .list::-webkit-scrollbar-thumb{background-color:rgba(26,175,251,.16)}.mec-add-event-popup .mec-steps-content-container .mec-time-picker .wn-mec-select-popup:last-child .list{overflow:unset!important;height:unset}@media(max-width:1280px){.mec-add-event-popup .lity-container,.mec-add-shortcode-popup .lity-container{height:calc(100% - 110px);margin-bottom:-80px}.mec-add-event-popup .post-type-mec-events .mec-form-row{padding-bottom:12px}.mec-add-event-popup .mec-steps-panel .mec-add-event-popup .mec-steps-panel,.mec-add-shortcode-popup .mec-steps-panel .mec-add-event-popup .mec-steps-panel{padding:14px}.mec-add-event-popup .mec-steps-container img,.mec-add-event-popup .mec-steps-container ul,.mec-add-shortcode-popup .mec-steps-container img,.mec-add-shortcode-popup .mec-steps-container ul{margin-top:14px}.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li:first-of-type,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li:first-of-type{height:28px}.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li{height:46px}.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li:after,.mec-add-event-popup .mec-add-event-popup .mec-steps-container ul li:before,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li:after,.mec-add-shortcode-popup .mec-add-event-popup .mec-steps-container ul li:before{height:12px}.mec-add-event-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1{top:150px}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container{padding-top:12px;margin-top:12px}#mec_popup_event div#mec_location_new_container input,#mec_popup_event div#mec_organizer_new_container input{margin:0 0 3px 0}}@media(max-width:960px){.mec-steps-content-container{background-image:unset!important}#mec_popup_event div#mec_location_new_container,#mec_popup_event div#mec_organizer_new_container,.mec-add-event-popup .mec-steps-content-container .mec-steps-content,.mec-add-shortcode-popup .mec-steps-content-container .mec-steps-content{width:100%!important;max-width:100%;position:unset!important;margin:0!important}.mec-add-event-popup .lity-container,.mec-add-shortcode-popup .lity-container,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-1 .mec-steps-content.mec-steps-content-1 input[name="shortcode[name]"]{width:100%;max-width:100%}.mec-add-event-popup .mec-steps-panel,.mec-add-shortcode-popup .mec-steps-panel{overflow-x:scroll;padding:14px}.mec-add-event-popup .mec-steps-header,.mec-add-shortcode-popup .mec-steps-header{margin-bottom:30px}.mec-add-event-popup .mec-steps-header span.mec-steps-header-add-text,.mec-add-shortcode-popup .mec-steps-header span.mec-steps-header-add-text{display:block;margin-top:10px;width:100%}.mec-add-event-popup .mec-col-4,.mec-add-shortcode-popup .mec-col-4{width:100%!important;max-width:100%!important}.mec-add-event-popup #mec_popup_event button#mec_organizer_thumbnail_button,.mec-add-event-popup #mec_popup_event button#mec_popup_add_location,.mec-add-event-popup #mec_popup_event button#mec_popup_add_organizer,.mec-add-shortcode-popup #mec_popup_event button#mec_organizer_thumbnail_button,.mec-add-shortcode-popup #mec_popup_event button#mec_popup_add_location,.mec-add-shortcode-popup #mec_popup_event button#mec_popup_add_organizer{margin:10px 0 0 0}.mec-add-event-popup .mec-col-1,.mec-add-event-popup .mec-col-10,.mec-add-event-popup .mec-col-11,.mec-add-event-popup .mec-col-12,.mec-add-event-popup .mec-col-2,.mec-add-event-popup .mec-col-3,.mec-add-event-popup .mec-col-4,.mec-add-event-popup .mec-col-5,.mec-add-event-popup .mec-col-6,.mec-add-event-popup .mec-col-7,.mec-add-event-popup .mec-col-8,.mec-add-event-popup .mec-col-9,.mec-add-shortcode-popup .mec-col-1,.mec-add-shortcode-popup .mec-col-10,.mec-add-shortcode-popup .mec-col-11,.mec-add-shortcode-popup .mec-col-12,.mec-add-shortcode-popup .mec-col-2,.mec-add-shortcode-popup .mec-col-3,.mec-add-shortcode-popup .mec-col-4,.mec-add-shortcode-popup .mec-col-5,.mec-add-shortcode-popup .mec-col-6,.mec-add-shortcode-popup .mec-col-7,.mec-add-shortcode-popup .mec-col-8,.mec-add-shortcode-popup .mec-col-9{margin:0 0 10px 0}.mec-add-event-popup .mec-steps-content h3,.mec-add-shortcode-popup .mec-steps-content h3{font-size:18px!important}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul,.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-3 .mec-skin-styles{height:480px;width:100%}}@media(max-width:320px){.mec-add-event-popup .mec-steps-container,.mec-add-shortcode-popup .mec-steps-container{display:none}.mec-add-event-popup .mec-steps-panel,.mec-add-shortcode-popup .mec-steps-panel{width:100%!important}}.ac-mec-events.ac-search-enabled .tablenav .ac-search>:not(#ac-s).lity-hide{display:none}.mec-go-pro-content-title{font-size:20px;font-weight:600;margin-bottom:12px}.mec-go-pro-features-wrap p{font-size:14px}.mec-go-pro-features-wrap .mec-addons-notification-box-content{width:calc(100% - 590px);display:inline-block;padding-left:20px}.mec-go-pro-features-wrap ul{float:left;width:50%;margin:0 0 12px}.mec-go-pro-features-wrap ul li{margin-bottom:1px;font-size:13px;color:#717479;padding-left:18px;position:relative}.mec-go-pro-features-wrap ul li:before{position:absolute;left:-1px;top:6px;color:#36da74;font-size:13px;font-weight:700;vertical-align:middle;font-family:simple-line-icons;border-radius:50%;padding:0;width:13px;height:13px;line-height:13px;z-index:3;background:rgba(64,241,147,.12);content:"\e080"}.post-type-mec-books.taxonomy-mec_coupon .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_category .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-mec_label .metabox-prefs .screen-options label,.post-type-mec-events.taxonomy-post_tag .metabox-prefs .screen-options label,.taxonomy-mec_location .metabox-prefs .screen-options label,.taxonomy-mec_organizer .metabox-prefs .screen-options label,.taxonomy-mec_speaker .metabox-prefs .screen-options label{margin-top:-15px}.post-type-mec-books.taxonomy-mec_coupon #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_category #mec_thumbnail_img img,.post-type-mec-events.taxonomy-mec_label #mec_thumbnail_img img,.post-type-mec-events.taxonomy-post_tag #mec_thumbnail_img img,.taxonomy-mec_location #mec_thumbnail_img img,.taxonomy-mec_organizer #mec_thumbnail_img img,.taxonomy-mec_speaker #mec_thumbnail_img img{margin:0 0 20px 0;border:solid 1px #ddd;border-radius:2px}.post-type-mec-books.taxonomy-mec_coupon .form-wrap label,.post-type-mec-events.taxonomy-mec_category .form-wrap label,.post-type-mec-events.taxonomy-mec_label .form-wrap label,.post-type-mec-events.taxonomy-post_tag .form-wrap label,.taxonomy-mec_location .form-wrap label,.taxonomy-mec_organizer .form-wrap label,.taxonomy-mec_speaker .form-wrap label{padding:0;margin:10px 0}.post-type-mec-books.taxonomy-mec_coupon input[type=number],.post-type-mec-books.taxonomy-mec_coupon input[type=search],.post-type-mec-books.taxonomy-mec_coupon input[type=text],.post-type-mec-books.taxonomy-mec_coupon input[type=url],.post-type-mec-books.taxonomy-mec_coupon select,.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category input[type=number],.post-type-mec-events.taxonomy-mec_category input[type=search],.post-type-mec-events.taxonomy-mec_category input[type=text],.post-type-mec-events.taxonomy-mec_category input[type=url],.post-type-mec-events.taxonomy-mec_category select,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label input[type=number],.post-type-mec-events.taxonomy-mec_label input[type=search],.post-type-mec-events.taxonomy-mec_label input[type=text],.post-type-mec-events.taxonomy-mec_label input[type=url],.post-type-mec-events.taxonomy-mec_label select,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag input[type=number],.post-type-mec-events.taxonomy-post_tag input[type=search],.post-type-mec-events.taxonomy-post_tag input[type=text],.post-type-mec-events.taxonomy-post_tag input[type=url],.post-type-mec-events.taxonomy-post_tag select,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location input[type=number],.taxonomy-mec_location input[type=search],.taxonomy-mec_location input[type=text],.taxonomy-mec_location input[type=url],.taxonomy-mec_location select,.taxonomy-mec_location textarea,.taxonomy-mec_organizer input[type=number],.taxonomy-mec_organizer input[type=search],.taxonomy-mec_organizer input[type=text],.taxonomy-mec_organizer input[type=url],.taxonomy-mec_organizer select,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker input[type=number],.taxonomy-mec_speaker input[type=search],.taxonomy-mec_speaker input[type=text],.taxonomy-mec_speaker input[type=url],.taxonomy-mec_speaker select,.taxonomy-mec_speaker textarea{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02);margin-bottom:15px}.post-type-mec-books.taxonomy-mec_coupon textarea,.post-type-mec-events.taxonomy-mec_category textarea,.post-type-mec-events.taxonomy-mec_label textarea,.post-type-mec-events.taxonomy-post_tag textarea,.taxonomy-mec_location textarea,.taxonomy-mec_organizer textarea,.taxonomy-mec_speaker textarea{min-height:86px}.post-type-mec-books.taxonomy-mec_coupon .button,.post-type-mec-books.taxonomy-mec_coupon .button-secondary,.post-type-mec-events.taxonomy-mec_category .button,.post-type-mec-events.taxonomy-mec_category .button-secondary,.post-type-mec-events.taxonomy-mec_label .button,.post-type-mec-events.taxonomy-mec_label .button-secondary,.post-type-mec-events.taxonomy-post_tag .button,.post-type-mec-events.taxonomy-post_tag .button-secondary,.taxonomy-mec_location .button,.taxonomy-mec_location .button-secondary,.taxonomy-mec_organizer .button,.taxonomy-mec_organizer .button-secondary,.taxonomy-mec_speaker .button{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:6px 22px}.post-type-mec-books.taxonomy-mec_coupon .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_category .mec_upload_image_button,.post-type-mec-events.taxonomy-mec_label .mec_upload_image_button,.post-type-mec-events.taxonomy-post_tag .mec_upload_image_button,.taxonomy-mec_location .mec_upload_image_button,.taxonomy-mec_organizer .mec_upload_image_button,.taxonomy-mec_speaker .mec_upload_image_button{margin-bottom:20px}.post-type-mec-books.taxonomy-mec_coupon .button-secondary:focus,.post-type-mec-books.taxonomy-mec_coupon .button-secondary:hover,.post-type-mec-books.taxonomy-mec_coupon .button.focus,.post-type-mec-books.taxonomy-mec_coupon .button:focus,.post-type-mec-books.taxonomy-mec_coupon .button:hover,.post-type-mec-events.taxonomy-mec_category .button-secondary:focus,.post-type-mec-events.taxonomy-mec_category .button-secondary:hover,.post-type-mec-events.taxonomy-mec_category .button.focus,.post-type-mec-events.taxonomy-mec_category .button:focus,.post-type-mec-events.taxonomy-mec_category .button:hover,.post-type-mec-events.taxonomy-mec_label .button-secondary:focus,.post-type-mec-events.taxonomy-mec_label .button-secondary:hover,.post-type-mec-events.taxonomy-mec_label .button.focus,.post-type-mec-events.taxonomy-mec_label .button:focus,.post-type-mec-events.taxonomy-mec_label .button:hover,.post-type-mec-events.taxonomy-post_tag .button-secondary:focus,.post-type-mec-events.taxonomy-post_tag .button-secondary:hover,.post-type-mec-events.taxonomy-post_tag .button.focus,.post-type-mec-events.taxonomy-post_tag .button:focus,.post-type-mec-events.taxonomy-post_tag .button:hover,.taxonomy-mec_location .button-secondary:focus,.taxonomy-mec_location .button-secondary:hover,.taxonomy-mec_location .button.focus,.taxonomy-mec_location .button:focus,.taxonomy-mec_location .button:hover,.taxonomy-mec_organizer .button-secondary:focus,.taxonomy-mec_organizer .button-secondary:hover,.taxonomy-mec_organizer .button.focus,.taxonomy-mec_organizer .button:focus,.taxonomy-mec_organizer .button:hover,.taxonomy-mec_speaker .button-secondary:focus,.taxonomy-mec_speaker .button-secondary:hover,.taxonomy-mec_speaker .button.focus,.taxonomy-mec_speaker .button:focus,.taxonomy-mec_speaker .button:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);cursor:pointer;color:#fff}.post-type-mec-events #TB_window{height:470px!important;top:calc(50% - 235px)!important}.post-type-mec-events #TB_ajaxContent{width:calc(100% - 30px)!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:105px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40.33333%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description{position:relative!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{background:url(../img/newsletter-document.png) no-repeat left top;content:"";width:100px;height:100px;position:absolute;top:96px;left:12px}.taxonomy-mec_category #TB_window{overflow:hidden}@media (max-width:480px){.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container .fserv-form-description,.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form{padding-left:90px!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container form .fserv-field{width:40%!important}.m-e-calendar_page_MEC-support #wpwrap .welcome-content .fserv-container:before{top:100px;left:10px}}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result{background:0 0;text-align:right;padding:0 0 0 32px;border-radius:4px;box-shadow:unset;border:1px solid #ddd}.post-type-mec-events.taxonomy-mec_label .button.wp-color-result .wp-color-result-text{height:30px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container input[type=text].wp-color-picker{width:70px;margin-top:-10px;height:32px}.post-type-mec-events.taxonomy-mec_label .wp-picker-default{height:32px;padding-top:2px;padding-bottom:2px}.post-type-mec-events.taxonomy-mec_label .wp-picker-container .iris-picker{margin-top:-10px}.mec-admin-dark-mode #mec-wrap .nav-tab-wrapper .nav-tab,.mec-admin-dark-mode #mec-wrap h2.nav-tab-wrapper,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap h2.nav-tab-wrapper{background:#1f1f1f}.mec-admin-dark-mode #mec_bfixed_form_fields li,.mec-admin-dark-mode #mec_calendar_filter,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_booking,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #mec_metabox_details,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left,.mec-admin-dark-mode #webnus-dashboard .mec-pro-notice .info-msg,.mec-admin-dark-mode .w-box,.mec-admin-dark-mode .w-box-content pre,.mec-admin-dark-mode .w-clearfix.w-box.mec-addons-notification-box-wrap span,.mec-admin-dark-mode .w-clearfix.w-box.mec-cmsg-2-notification-box-wrap span,.mec-admin-dark-mode .w-clearfix.w-box.mec-cmsg-notification-box-wrap span,.mec-admin-dark-mode .wns-be-main,.mec-admin-dark-mode .wns-be-main .mec-container,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-pro-notice .info-msg,.mec-admin-dark-mode.post-type-mec-books #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-books #screen-meta,.mec-admin-dark-mode.post-type-mec-books #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #mec_event_form_fields li,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields li,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{background:#1f1f1f;color:#fff}.mec-admin-dark-mode .mec-form-row .mec-box,.mec-admin-dark-mode .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-form-row ul.mec-message-categories li ul,.mec-admin-dark-mode .mec-meta-box-fields .mec-box,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a{background:#333;border-color:#353535;box-shadow:0 1px 6px -2px #000}.mec-admin-dark-mode #mec_bfixed_form_fields,.mec-admin-dark-mode #mec_bfixed_form_fields #mec_bfixed_form_fields li,.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix .mec-form-row.mec-syn-schedule,.mec-admin-dark-mode.post-type-mec-events #mec_event_form_fields,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields,.mec-admin-dark-mode.post-type-mec-events .select2-search--dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-search--dropdown{background:#282828;border-color:#353535}.mec-admin-dark-mode .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#000}.mec-admin-dark-mode.post-type-mec-books ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-books ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.toplevel_page_mec-intro ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.toplevel_page_mec-intro ul#adminmenu>li.current>a.current:after{border-right-color:#23282d}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-left a.mec-tab-active,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list{background:#000;box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .extra .w-box-head,.mec-admin-dark-mode .mec-form-row ul.mec-message-categories,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mce-btn-group:not(:first-child),.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-occurrences .mec-occurrences-list li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields li,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-custom-msg-notification-set-box.extra,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-editor-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-books #screen-meta,.mec-admin-dark-mode.post-type-mec-books #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-books .postbox,.mec-admin-dark-mode.post-type-mec-books .postbox .hndle,.mec-admin-dark-mode.post-type-mec-books .postbox hr,.mec-admin-dark-mode.post-type-mec-books .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec-events #major-publishing-actions,.mec-admin-dark-mode.post-type-mec-events #post-status-info,.mec-admin-dark-mode.post-type-mec-events #screen-meta,.mec-admin-dark-mode.post-type-mec-events #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec-events .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .components-popover__content,.mec-admin-dark-mode.post-type-mec-events .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff .stuffbox>h3,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h2.hndle,.mec-admin-dark-mode.post-type-mec-events .edit-post-meta-boxes-area #poststuff h3.hndle,.mec-admin-dark-mode.post-type-mec-events .postbox,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec-events .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec-events .wp-editor-container,.mec-admin-dark-mode.post-type-mec-events .wp-switch-editor,.mec-admin-dark-mode.post-type-mec-events .wp-tab-active,.mec-admin-dark-mode.post-type-mec-events .wp-tab-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-panel,.mec-admin-dark-mode.post-type-mec-events div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec-events ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec-events ul.category-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars #major-publishing-actions,.mec-admin-dark-mode.post-type-mec_calendars #post-status-info,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta,.mec-admin-dark-mode.post-type-mec_calendars #screen-meta-links .show-settings,.mec-admin-dark-mode.post-type-mec_calendars .categorydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .customlinkdiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option,.mec-admin-dark-mode.post-type-mec_calendars .mec-sed-methods li,.mec-admin-dark-mode.post-type-mec_calendars .postbox,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .posttypediv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .taxonomydiv div.tabs-panel,.mec-admin-dark-mode.post-type-mec_calendars .wp-editor-container,.mec-admin-dark-mode.post-type-mec_calendars .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-active,.mec-admin-dark-mode.post-type-mec_calendars .wp-tab-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-panel,.mec-admin-dark-mode.post-type-mec_calendars div.mce-toolbar-grp,.mec-admin-dark-mode.post-type-mec_calendars ul.add-menu-item-tabs li.tabs,.mec-admin-dark-mode.post-type-mec_calendars ul.category-tabs li.tabs{border-color:#353535}.mec-admin-dark-mode #mec_bfixed_form_fields input[type=checkbox],.mec-admin-dark-mode #mec_calendar_filter .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=number],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=text],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row input[type=url],.mec-admin-dark-mode #mec_calendar_filter .mec-form-row select,.mec-admin-dark-mode #mec_calendar_filter .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_booking .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_booking .mec-form-row select,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_booking .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_booking .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_metabox_details .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=number],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=url],.mec-admin-dark-mode #mec_metabox_details .mec-form-row select,.mec-admin-dark-mode #mec_metabox_details .mec-form-row textarea,.mec-admin-dark-mode #mec_metabox_details .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode #mec_metabox_details .mec-meta-box-fields .mec-form-row input[type=checkbox],.mec-admin-dark-mode #mec_reg_form_fields input[type=checkbox],.mec-admin-dark-mode .mec-addon-box-version,.mec-admin-dark-mode .mec-calendar-metabox .wn-mec-select,.mec-admin-dark-mode .mec-form-row input[type=checkbox],.mec-admin-dark-mode .mec-form-row input[type=number],.mec-admin-dark-mode .mec-form-row input[type=radio],.mec-admin-dark-mode .mec-form-row input[type=text],.mec-admin-dark-mode .mec-form-row input[type=url],.mec-admin-dark-mode .mec-form-row select,.mec-admin-dark-mode .mec-form-row textarea,.mec-admin-dark-mode .mec-form-row.mec-skin-list-date-format-container input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-go-pro,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-select-event-wrap .select2-container--default .select2-selection--single,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-form-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-sendmail-wrap,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-send-email-form-wrap input.widefat,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option--highlighted[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-search--dropdown .select2-search__field,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .wp-switch-editor,.mec-admin-dark-mode.m-e-calendar_page_MEC-report div.mce-toolbar-grp,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-invoice-custom-css,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields textarea,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields textarea,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields textarea,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #titlediv #title,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .quicktags-toolbar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default.select2-container--focus .select2-selection--multiple,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-dropdown,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-results__option[aria-selected],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=email],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=password],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=search],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row input[type=url],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main .mec-form-row select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-core-ui .quicktags-toolbar input.button.button-small,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=checkbox],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=color],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=date],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime-local],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=datetime],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=email],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=month],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=number],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=password],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=radio],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=search],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=tel],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=text],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=time],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=url],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings input[type=week],.mec-admin-dark-mode.m-e-calendar_page_MEC-settings select,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings textarea,.mec-admin-dark-mode.post-type-mec-books .wn-mec-select,.mec-admin-dark-mode.post-type-mec-books input[type=checkbox],.mec-admin-dark-mode.post-type-mec-books input[type=email],.mec-admin-dark-mode.post-type-mec-books input[type=number],.mec-admin-dark-mode.post-type-mec-books input[type=text],.mec-admin-dark-mode.post-type-mec-books input[type=url],.mec-admin-dark-mode.post-type-mec-books select,.mec-admin-dark-mode.post-type-mec-books textarea,.mec-admin-dark-mode.post-type-mec-events #mec_event_form_fields button,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_field_types button,.mec-admin-dark-mode.post-type-mec-events #mec_reg_form_fields button,.mec-admin-dark-mode.post-type-mec-events #titlediv #title,.mec-admin-dark-mode.post-type-mec-events .components-form-token-field__input-container,.mec-admin-dark-mode.post-type-mec-events .components-panel__body,.mec-admin-dark-mode.post-type-mec-events .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-certain-day>div,.mec-admin-dark-mode.post-type-mec-events .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec-events .mec-xi-facebook-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .mec-xi-google-import-events .mec-select-deselect-actions li,.mec-admin-dark-mode.post-type-mec-events .select2-dropdown,.mec-admin-dark-mode.post-type-mec-events .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec-events .wp-admin p label input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=checkbox],.mec-admin-dark-mode.post-type-mec-events input[type=color],.mec-admin-dark-mode.post-type-mec-events input[type=date],.mec-admin-dark-mode.post-type-mec-events input[type=datetime-local],.mec-admin-dark-mode.post-type-mec-events input[type=datetime],.mec-admin-dark-mode.post-type-mec-events input[type=email],.mec-admin-dark-mode.post-type-mec-events input[type=month],.mec-admin-dark-mode.post-type-mec-events input[type=number],.mec-admin-dark-mode.post-type-mec-events input[type=password],.mec-admin-dark-mode.post-type-mec-events input[type=radio],.mec-admin-dark-mode.post-type-mec-events input[type=search],.mec-admin-dark-mode.post-type-mec-events input[type=tel],.mec-admin-dark-mode.post-type-mec-events input[type=text],.mec-admin-dark-mode.post-type-mec-events input[type=time],.mec-admin-dark-mode.post-type-mec-events input[type=url],.mec-admin-dark-mode.post-type-mec-events input[type=week],.mec-admin-dark-mode.post-type-mec-events select,.mec-admin-dark-mode.post-type-mec-events textarea,.mec-admin-dark-mode.post-type-mec_calendars #titlediv #title,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-add-event-tabs-wrap .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container,.mec-admin-dark-mode.post-type-mec_calendars .mec-create-shortcode-tab-content .select2-container span,.mec-admin-dark-mode.post-type-mec_calendars .select2-container--default .select2-selection--multiple .select2-selection__choice,.mec-admin-dark-mode.post-type-mec_calendars .select2-dropdown,.mec-admin-dark-mode.post-type-mec_calendars .select2-results__option[aria-selected],.mec-admin-dark-mode.post-type-mec_calendars input[type=checkbox],.mec-admin-dark-mode.post-type-mec_calendars input[type=color],.mec-admin-dark-mode.post-type-mec_calendars input[type=date],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime-local],.mec-admin-dark-mode.post-type-mec_calendars input[type=datetime],.mec-admin-dark-mode.post-type-mec_calendars input[type=email],.mec-admin-dark-mode.post-type-mec_calendars input[type=month],.mec-admin-dark-mode.post-type-mec_calendars input[type=number],.mec-admin-dark-mode.post-type-mec_calendars input[type=password],.mec-admin-dark-mode.post-type-mec_calendars input[type=radio],.mec-admin-dark-mode.post-type-mec_calendars input[type=search],.mec-admin-dark-mode.post-type-mec_calendars input[type=tel],.mec-admin-dark-mode.post-type-mec_calendars input[type=text],.mec-admin-dark-mode.post-type-mec_calendars input[type=time],.mec-admin-dark-mode.post-type-mec_calendars input[type=url],.mec-admin-dark-mode.post-type-mec_calendars input[type=week],.mec-admin-dark-mode.post-type-mec_calendars select,.mec-admin-dark-mode.post-type-mec_calendars textarea,.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[name=MECPurchaseCode],.mec-admin-dark-mode.toplevel_page_mec-intro .w-box.mec-activation input[type=radio]+label span,.mec-select-deselect-actions li{background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode #mec_metabox_booking .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode #mec_metabox_details .mec-form-row input[type=checkbox]:checked,.mec-admin-dark-mode .mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-admin-dark-mode .mec-sed-methods li:before{box-shadow:0 1px 6px -2px #000;border-color:#353535;background:#222}.mec-admin-dark-mode .mec-sed-methods li.active,.mec-admin-dark-mode .mec-switcher input+label,.mec-admin-dark-mode .mec-switcher input+label:before,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-results__option{background-color:#000}.mec-admin-dark-mode .wn-mec-select .option.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option.selected.focus .wn-img-sh img,.mec-admin-dark-mode .wn-mec-select .option:hover .wn-img-sh img{background:0 0}.mec-admin-dark-mode .ui-datepicker{background-color:#000;border:1px solid #000;box-shadow:0 0 8px rgba(33,33,33,.6)}.mec-admin-dark-mode .ui-datepicker.ui-widget td a,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article .mec-detail-button,.mec-admin-dark-mode.post-type-mec-events,.mec-admin-dark-mode.post-type-mec-events .postbox h2,.mec-admin-dark-mode.post-type-mec_calendars .postbox h2{color:#d2d2d2;background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul *{background:#282828}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li,.mec-admin-dark-mode #mec_styles_form #mec_styles_CSS,.mec-admin-dark-mode .mec-message-categories li.mec-acc-label,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_bfixed_form_fields,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_event_form_fields,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_fields{background:#000}.mec-admin-dark-mode #mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-admin-dark-mode .mec-active,.mec-admin-dark-mode.post-type-mec-events .select2-container--default .select2-results__option--highlighted[aria-selected]{background:#888!important}.mec-admin-dark-mode.post-type-mec_calendars .mec-calendar-metabox .wn-mec-select .list{border-radius:0 0 2px 2px;box-shadow:0 0 0 1px #353535,0 2px 6px rgba(0,0,0,.07)}.mec-admin-dark-mode #mec_calendar_filter .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_calendar_filter .ui-sortable-handle,.mec-admin-dark-mode #mec_gateways_form li .mec-gateway-options-form,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_booking .ui-sortable-handle,.mec-admin-dark-mode #mec_metabox_details .mec-add-booking-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-right,.mec-admin-dark-mode #mec_metabox_details .mec-create-shortcode-tabs-right,.mec-admin-dark-mode #mec_metabox_details .ui-sortable-handle,.mec-admin-dark-mode #payment_gateways_option li .mec-gateway-options-form,.mec-admin-dark-mode .mec-meta-box-fields h4{border-color:#000!important}.mec-admin-dark-mode .wns-be-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.post-type-mec-events #wp-content-editor-tools,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .list{background-color:#282828;border-color:#353535}.mec-admin-dark-mode .mec-intro-section-ifarme iframe,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container *,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container *{background:#1f1f1f!important;border-color:#353535!important}.mec-admin-dark-mode .block-editor-block-types-list__item-icon,.mec-admin-dark-mode .block-editor-block-types-list__item-title,.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article h4.mec-event-title,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .select2-container--default .select2-selection--single .select2-selection__rendered,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .about-wrap h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-support .fserv-container .fserv-form-name,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h3,.mec-admin-dark-mode.toplevel_page_mec-intro .fserv-container .fserv-form-name{color:#d2d2d2!important}.mec-admin-dark-mode .wns-be-sidebar li a:hover,.mec-admin-dark-mode .wns-be-sidebar li:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .html-active .switch-html,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .tmce-active .switch-tmce,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-switch-editor,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar li a,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h2,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h3,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-report .mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h2,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-support #webnus-dashboard .mec-faq-accordion-trigger a,.mec-admin-dark-mode.post-type-mec-books .postbox h1,.mec-admin-dark-mode.post-type-mec-books .postbox h2,.mec-admin-dark-mode.post-type-mec-books .postbox h3,.mec-admin-dark-mode.post-type-mec-events .components-panel__body-toggle.components-button,.mec-admin-dark-mode.post-type-mec-events .wrap h1.wp-heading-inline,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option .wn-mec-text{color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a:hover{border:none}.mec-admin-dark-mode .wns-be-sidebar li.active ul.subsection{background:#282828;border-bottom:1px solid #353535}.mec-admin-dark-mode .wns-be-sidebar li .subsection a{background:#282828;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 46px}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu>li.active>a,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-infobar,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-main{box-shadow:0 2px 12px -5px #000}.mec-admin-dark-mode .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a,.mec-admin-dark-mode li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option.selected.focus,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option:hover{background:#000;color:#d2d2d2;border-color:#353535}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings,.mec-admin-dark-mode.post-type-mec_calendars .mec-custom-nice-select ul.list li.option{background:#000!important;color:#fff!important}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .about-wrap h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-go-pro,.mec-admin-dark-mode.m-e-calendar_page_MEC-go-pro h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-report,.mec-admin-dark-mode.m-e-calendar_page_MEC-report h1,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings div.mce-panel,.mec-admin-dark-mode.m-e-calendar_page_MEC-support,.mec-admin-dark-mode.m-e-calendar_page_MEC-support h1,.mec-admin-dark-mode.post-type-mec-books,.mec-admin-dark-mode.post-type-mec-books h1,.mec-admin-dark-mode.post-type-mec_calendars,.mec-admin-dark-mode.post-type-mec_calendars .wrap h1.wp-heading-inline,.mec-admin-dark-mode.toplevel_page_mec-intro,.mec-admin-dark-mode.toplevel_page_mec-intro .about-wrap h1{background:#282828!important;color:#d2d2d2}.mec-admin-dark-mode .w-theme-version{box-shadow:0 3px 30px -4px #000;background:#000;background:linear-gradient(95deg,#000 0,#282828 50%,#1f1f1f 100%)}.mec-admin-dark-mode .mec-sed-methods li.active,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h2,.mec-admin-dark-mode .wns-be-container .wns-be-group-tab h4,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab,.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap h2.nav-tab-wrapper,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .select2-container--default .select2-selection--multiple .select2-selection__choice{color:#d2d2d2}.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li a:hover{color:#07bbe9}.mec-admin-dark-mode.m-e-calendar_page_MEC-ix #mec-wrap .nav-tab-wrapper .nav-tab-active{background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)}.mec-admin-dark-mode .wns-be-container #wns-be-infobar:before{content:"";width:261px;height:78px;display:block;position:absolute;left:0;top:0;background:#1f1f1f url(../img/webnus-logo2.png) no-repeat center;border-bottom:1px solid #dedede;background-size:220px;z-index:997}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .mec-custom-msg-notification-set-box.extra,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wns-be-container #wns-be-footer,.mec-admin-dark-mode.post-type-mec-books #titlediv #title,.mec-admin-dark-mode.post-type-mec-books .postbox h1{background:#1f1f1f!important}.mec-admin-dark-mode .mec-settings-menu .mec-settings-submenu:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,.mec-admin-dark-mode .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:#353535}.mec-admin-dark-mode .mec-switcher input:checked+label:before{background-color:#d2d2d2;box-shadow:2px 2px 12px -2px #ccc inset}.mec-admin-dark-mode .mec-switcher input:checked+label{box-shadow:0 3px 11px -7px #000}.mec-admin-dark-mode .lity.mec-add-event-popup,.mec-admin-dark-mode .lity.mec-add-shortcode-popup,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup,.mec-admin-dark-mode .mec-add-shortcode-popup div#mec_popup_shortcode{background:#282828}.mec-admin-dark-mode .lity.mec-add-event-popup .lity-content,.mec-admin-dark-mode .lity.mec-add-shortcode-popup .lity-content{box-shadow:0 3px 20px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-event-popup .mec-meta-box-colors-container,.mec-admin-dark-mode .mec-steps-container,.mec-admin-dark-mode .mec-steps-header{background:#000}.mec-admin-dark-mode .mec-add-event-popup div#mec_popup_event,.mec-admin-dark-mode .mec-steps-panel{background:#1f1f1f}.mec-admin-dark-mode button.lity-close{background:#000;box-shadow:0 3px 8px 0 rgba(0,0,0,.55)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li{border:2px solid #282828;background:#000!important}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-step-popup-skin-text:before,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content.mec-steps-content-4 label input{background:#282828;border-color:#1f1f1f;box-shadow:0 3px 6px 0 rgba(0,0,0,.05)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-2 .mec-steps-content.mec-steps-content-2 ul li.active{box-shadow:0 3px 5px rgba(0,0,0,.2)}.mec-admin-dark-mode .nicescroll-cursors{background-color:#000!important}.mec-admin-dark-mode .mec-add-event-popup .mec-categories-tab-contents,.mec-admin-dark-mode .mec-add-event-popup .mec-form-row.mec-available-color-row,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-7.mec-steps-content-active,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .mec-steps-content.mec-steps-content-4 .mec-multiple-skin-options div,.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode{border-color:#282828;background:#000}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code{background:rgba(266,266,266,.35)}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code code,.mec-admin-dark-mode .mec-steps-content h3{color:#d2d2d2}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.focus,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option.selected.focus,.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .option:hover{background:#000}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list{background:#282828}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar-track{background-color:#333}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content-container .wn-mec-select-popup .list::-webkit-scrollbar{width:3px;background-color:#333}.mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-6 .mec-popup-shortcode-code button{margin-left:unset}.mec-admin-dark-mode .wp-picker-container .wp-color-result.button{background:inherit}.mec-admin-dark-mode .mec-add-event-popup .mec-steps-content.mec-steps-content-6 .mce-container-body.mce-stack-layout{background:#000;border-color:#000!important}.mec-admin-dark-mode .mec-add-shortcode-popup .mec-steps-content-container.mec-steps-content-4 .wn-mec-select-popup{background-color:#000;border-color:#282828}.mec-admin-dark-mode #wns-be-content .noresults label,.mec-admin-dark-mode #wns-be-content .results .results .noresults label,.mec-admin-dark-mode #wns-be-content ul li.disable,.mec-admin-dark-mode #wns-be-content ul li.disable label{color:#666}.mec-admin-dark-mode #wns-be-content .results .results .results label,.mec-admin-dark-mode #wns-be-content .results label,.mec-admin-dark-mode #wns-be-content ul li.enable,.mec-admin-dark-mode #wns-be-content ul li.enable label{color:#fff}.mec-admin-dark-mode.post-type-mec-books table.widefat,.mec-admin-dark-mode.post-type-mec_calendars table.widefat,.post-type-mec-events.mec-admin-dark-mode table.widefat{background:#1f1f1f;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-books ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec-events ul.striped>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars .striped>tbody>:nth-child(odd),.mec-admin-dark-mode.post-type-mec_calendars ul.striped>:nth-child(odd){background:#282828;border-color:#353535;color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books .widefat td,.mec-admin-dark-mode.post-type-mec-books .widefat th,.mec-admin-dark-mode.post-type-mec-events .widefat td,.mec-admin-dark-mode.post-type-mec-events .widefat th,.mec-admin-dark-mode.post-type-mec_calendars .widefat td,.mec-admin-dark-mode.post-type-mec_calendars .widefat th{border-color:#000;color:#d2d2d2}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec-events ul#adminmenu>li.current>a.current:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu a.wp-has-current-submenu:after,.mec-admin-dark-mode.post-type-mec_calendars ul#adminmenu>li.current>a.current:after{border-right-color:#1f1f1f}.mec-admin-dark-mode #mec_add_fee_button,.mec-admin-dark-mode #mec_add_ticket_variation_button,.mec-admin-dark-mode #mec_bfixed_form_field_types button,.mec-admin-dark-mode #mec_bfixed_form_fields button,.mec-admin-dark-mode #mec_event_form_field_types button,.mec-admin-dark-mode #mec_event_form_fields button,.mec-admin-dark-mode #mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,.mec-admin-dark-mode #mec_reg_form_field_types button,.mec-admin-dark-mode #mec_reg_form_fields button,.mec-admin-dark-mode #taxes_option #mec_fees_list .mec-form-row .button,.mec-admin-dark-mode #ticket_variations_option #mec_ticket_variations_list .mec-form-row .button,.mec-admin-dark-mode .mec-export-settings,.mec-admin-dark-mode .mec-import-settings,.mec-admin-dark-mode .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result),.mec-admin-dark-mode .mec-occurrences-wrapper .button:not(.wp-color-result),.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary,.mec-admin-dark-mode.post-type-mec-books .button,.mec-admin-dark-mode.post-type-mec-books .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec-events .button,.mec-admin-dark-mode.post-type-mec-events .button-secondary,.mec-admin-dark-mode.post-type-mec-events .wp-heading-inline+.page-title-action,.mec-admin-dark-mode.post-type-mec_calendars .button,.mec-admin-dark-mode.post-type-mec_calendars .wp-heading-inline+.page-title-action{color:#d2d2d2!important;border-color:#353535!important;background:#000}.mec-admin-dark-mode #mec_add_fee_button:hover,.mec-admin-dark-mode #mec_add_ticket_variation_button:hover,.mec-admin-dark-mode #mec_bfixed_form_field_types button:hover,.mec-admin-dark-mode #mec_bfixed_form_fields button:hover,.mec-admin-dark-mode #mec_event_form_field_types button:hover,.mec-admin-dark-mode #mec_event_form_fields button:hover,.mec-admin-dark-mode #mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button:hover,.mec-admin-dark-mode #mec_reg_form_field_types button:hover,.mec-admin-dark-mode #mec_reg_form_fields button:hover,.mec-admin-dark-mode #taxes_option #mec_fees_list .mec-form-row .button:hover,.mec-admin-dark-mode #ticket_variations_option #mec_ticket_variations_list .mec-form-row .button:hover,.mec-admin-dark-mode .mec-export-settings:hover,.mec-admin-dark-mode .mec-import-settings:hover,.mec-admin-dark-mode .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result):hover,.mec-admin-dark-mode .mec-occurrences-wrapper .button:not(.wp-color-result):hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button-secondary:hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button.hover,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .button:hover,.mec-admin-dark-mode.post-type-mec-events .button-secondary:hover,.mec-admin-dark-mode.post-type-mec-events .button.hover,.mec-admin-dark-mode.post-type-mec-events .button:hover,.mec-admin-dark-mode.post-type-mec_calendars .button-secondary:hover,.mec-admin-dark-mode.post-type-mec_calendars .button.hover,.mec-admin-dark-mode.post-type-mec_calendars .button:hover{background:#111;border-color:#333!important;color:#fff}.mec-admin-dark-mode.post-type-mec-events .mec-form-row .button:not(.wp-color-result){height:37px;margin-top:1px;box-shadow:inset 0 2px 4px #282828,inset 0 -2px 4px rgba(0,0,0,.05),0 2px 2px rgba(0,0,0,.06)}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings .wp-color-result-text,.mec-admin-dark-mode.post-type-mec-events .wp-color-result-text{border-left:1px solid #353535;color:#d2d2d2;background:#000}.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec-search-settings{color:#d2d2d2;background:#282828}.mec-admin-dark-mode.taxonomy-mec_category .button,.mec-admin-dark-mode.taxonomy-mec_label .button,.mec-admin-dark-mode.taxonomy-mec_location .button,.mec-admin-dark-mode.taxonomy-mec_organizer .button,.mec-admin-dark-mode.taxonomy-mec_speaker .button,.mec-admin-dark-mode.taxonomy-mec_tag .button{box-shadow:0 3px 10px -4px #000!important}.mec-admin-dark-mode.post-type-mec_calendars .mec-switcher input+label:after,.mec-admin-dark-mode.post-type-mec_calendars .wn-mec-select .option .wn-hover-img-sh img{background:#282828}.mec-admin-dark-mode .attachment-info,.mec-admin-dark-mode .media-frame-toolbar .media-toolbar{border-color:#282828}.mec-admin-dark-mode #webnus-dashboard .welcome-head img,.mec-admin-dark-mode .mce-content-body{background-color:#000!important}.mec-admin-dark-mode .w-box.upcoming-events .mec-event-article{border-bottom:1px solid #444}.mec-admin-dark-mode #webnus-dashboard a,.mec-admin-dark-mode #webnus-dashboard pre,.mec-admin-dark-mode .extra .w-box-head,.mec-admin-dark-mode .mec-addons-notification-box-content.mec-new-addons a,.mec-admin-dark-mode .mec-form-row label,.mec-admin-dark-mode .mec-form-row span,.mec-admin-dark-mode .mec-meta-box-fields h4,.mec-admin-dark-mode .mec-meta-box-fields label,.mec-admin-dark-mode .mec-meta-box-fields p,.mec-admin-dark-mode .mec-meta-box-fields span,.mec-admin-dark-mode .mec-meta-box-fields strong,.mec-admin-dark-mode .mec-new-addons .mec-addons-notification-title,.mec-admin-dark-mode .mec-new-addons p,.mec-admin-dark-mode .mec-new-addons strong,.mec-admin-dark-mode .w-box-content p,.mec-admin-dark-mode .w-box.doc,.mec-admin-dark-mode .w-box.total-bookings ul li,.mec-admin-dark-mode .w-box.total-bookings ul li a,.mec-admin-dark-mode .wns-be-sidebar .mec-settings-menu .mec-settings-submenu a,.mec-admin-dark-mode.m-e-calendar_page_MEC-settings #mec_reg_form_field_types button{color:#fff!important}.mec-admin-dark-mode #webnus-dashboard .mec-event-detail{color:#444}.mec-admin-dark-mode #webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{border-color:#2d2d2d}.mec-admin-dark-mode #webnus-dashboard .mec-intro-section .mec-intro-section-link-tag{color:#282828!important}.mec-admin-dark-mode #webnus-dashboard .mec-intro-section .mec-intro-section-link-tag:hover{color:#fff!important}.mec-admin-dark-mode .mec-addons-notification-box-content.mec-new-addons a,.mec-admin-dark-mode .w-box.total-bookings ul li{background:#333;box-shadow:0 2px 3px -2px #000}.mec-admin-dark-mode .mec-addons-notification-box-content.mec-new-addons a:hover,.mec-admin-dark-mode .w-box.total-bookings ul li:hover{background:#000}.mec-admin-dark-mode #webnus-dashboard .total-bookings input[type=text],.mec-admin-dark-mode #webnus-dashboard .total-bookings select{background:#000;color:#999;border-color:#111},.mec-admin-dark-mode #mec_category-add-toggle,.mec-admin-dark-mode #sample-permalink a,.mec-admin-dark-mode #set-post-thumbnail,.mec-admin-dark-mode .button-link,.mec-admin-dark-mode .category-tabs a,.mec-admin-dark-mode .mec-add-booking-tabs-left a,.mec-admin-dark-mode .mec-add-event-tabs-left a,.mec-admin-dark-mode .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode.post-type-mec-events .wp-list-table .row-title,.mec-admin-dark-mode.post-type-mec_calendars .wp-list-table .row-title{color:#888!important}.mec-admin-dark-mode .mec-add-booking-tabs-left a.mec-tab-active,.mec-admin-dark-mode .mec-add-event-tabs-left a.mec-tab-active,.mec-admin-dark-mode .mec-create-shortcode-tabs-left a.mec-tab-active{color:#00b0dd}.mec-admin-dark-mode #TB_title,.mec-admin-dark-mode #TB_window{background:#000}.mec-admin-dark-mode #webnus-dashboard .welcome-head img,.mec-admin-dark-mode .webnus-icons-list li:hover{background:#111}.mec-admin-dark-mode #TB_window i{color:#999}.mec-admin-dark-mode #TB_title,.mec-admin-dark-mode .webnus-icons-list li label{border:unset!important}.mec-admin-dark-mode.post-type-mec-books .notice-success,.mec-admin-dark-mode.post-type-mec-books div.updated,.mec-admin-dark-mode.post-type-mec-events .notice-success,.mec-admin-dark-mode.post-type-mec-events div.updated,.mec-admin-dark-mode.post-type-mec_calendars .notice-success,.mec-admin-dark-mode.post-type-mec_calendars div.updated{background:#111;border-top:unset;border-bottom:unset}.mec-admin-dark-mode.post-type-mec-books input,.mec-admin-dark-mode.post-type-mec-events input,.mec-admin-dark-mode.post-type-mec_calendars input{background:#000;color:#888}.mec-admin-dark-mode.post-type-mec-books .subsubsub a,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item,.mec-admin-dark-mode.post-type-mec-events .subsubsub a,.mec-admin-dark-mode.post-type-mec_calendars .subsubsub a{color:#2271b1}.mec-admin-dark-mode.post-type-mec-books .subsubsub a:hover,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item:hover,.mec-admin-dark-mode.post-type-mec-events .subsubsub a:hover,.mec-admin-dark-mode.post-type-mec_calendars .subsubsub a:hover{color:#135e96}.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a,.mec-admin-dark-mode.post-type-mec-events #set-post-thumbnail,.mec-admin-dark-mode.post-type-mec-events .attachment-info .filename{color:#888}.mec-admin-dark-mode #mec_calendar_filter .mec-create-shortcode-tabs-left a:hover,.mec-admin-dark-mode #mec_metabox_booking .mec-add-booking-tabs-left a:hover,.mec-admin-dark-mode #mec_metabox_details .mec-add-event-tabs-left a:hover,.mec-admin-dark-mode.post-type-mec-events #set-post-thumbnail:hover{color:#a9a9a9}.mec-admin-dark-mode #webnus-dashboard .welcome-head img,.mec-admin-dark-mode .w-theme-version,.mec-admin-dark-mode.post-type-mec_calendars .mec-switcher input+label:after{border-color:#444}.mec-admin-dark-mode.post-type-mec-books .postbox-header,.mec-admin-dark-mode.post-type-mec-events .postbox-header,.mec-admin-dark-mode.post-type-mec_calendars .postbox-header{border-color:#000}.mec-admin-dark-mode.post-type-mec-events .inside div div>a.mec-tab-active:after,.mec-admin-dark-mode.post-type-mec-events .inside div div>a.mec-tab-active:before,.mec-admin-dark-mode.post-type-mec_calendars .inside div div>a.mec-tab-active:after,.mec-admin-dark-mode.post-type-mec_calendars .inside div div>a.mec-tab-active:before{border-right-color:#2d2d2d}.mec-admin-dark-mode .mec-form-row input[type=radio]{box-shadow:0 1px 10px -2px #000}.mec-admin-dark-mode.post-type-mec-books .form-wrap label,.mec-admin-dark-mode.post-type-mec-books .media-frame-title h1,.mec-admin-dark-mode.post-type-mec-books h2,.mec-admin-dark-mode.post-type-mec-events .form-wrap label,.mec-admin-dark-mode.post-type-mec-events .media-frame-title h1,.mec-admin-dark-mode.post-type-mec-events h2{color:#d2d2d2}.mec-admin-dark-mode.post-type-mec-books.taxonomy-mec_coupon .button,.mec-admin-dark-mode.post-type-mec-events.taxonomy-post_tag .button{box-shadow:0 3px 10px -4px #000}.mec-admin-dark-mode.post-type-mec-events .attachments-browser .media-toolbar,.mec-admin-dark-mode.post-type-mec-events .media-frame-content,.mec-admin-dark-mode.post-type-mec-events .media-modal-content{background:#2d2d2d;color:#888}.mec-admin-dark-mode.post-type-mec-events .media-router .active,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item.active:last-child,.mec-admin-dark-mode.post-type-mec-events .media-sidebar,.mec-admin-dark-mode.post-type-mec-events .quicktags-toolbar{background:#222}.mec-admin-dark-mode.post-type-mec-events .attachments-browser .media-toolbar,.mec-admin-dark-mode.post-type-mec-events .media-frame-content,.mec-admin-dark-mode.post-type-mec-events .media-modal-content,.mec-admin-dark-mode.post-type-mec-events .media-router .active,.mec-admin-dark-mode.post-type-mec-events .media-router .media-menu-item.active:last-child,.mec-admin-dark-mode.post-type-mec-events .media-sidebar,.mec-admin-dark-mode.post-type-mec-events .quicktags-toolbar{border-color:#000}.mec-admin-dark-mode.post-type-mec-events .wp-core-ui .attachment-preview{background:#000}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-footer,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-head,.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .w-col-sm-3 .w-box.addon{border-color:#444}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-footer{background:#444}.mec-admin-dark-mode.m-e-calendar_page_MEC-addons .mec-addon-box-title span{color:#d2d2d2}.post-type-mec-books .attendees .mec-booking-attendees-tooltip{position:relative}.post-type-mec-books .attendees strong{line-height:26px;padding-left:26px}.post-type-mec-books .attendees .mec-booking-attendees-tooltip:before{position:absolute;content:"\e001";font-family:simple-line-icons;margin:12px 0;top:-30px;left:0;font-size:18px;line-height:12px;color:#40d9f1;padding:0 60px 5px 0}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul{position:absolute;min-width:300px;max-width:600px;display:inline-block;left:60px;top:50%;transform:translateY(-50%);background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;z-index:9999999;box-sizing:border-box;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s;padding:23px 20px 20px 20px;border-radius:8px;margin-top:-13px}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul: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}.post-type-mec-books .attendees .mec-booking-attendees-tooltip:hover ul{visibility:visible;opacity:1}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul a{color:#40d9f1;margin-bottom:14px;margin-left:0;font-weight:400;font-size:14px;letter-spacing:.5px;position:relative;text-decoration:none;display:block;width:max-content}.post-type-mec-books .attendees .mec-booking-attendees-tooltip ul li:last-child a{margin-bottom:0}.mec-metabox-head-version img,.mec-metabox-head-version p{float:left}.mec-metabox-head-version a{float:right}.mec-metabox-head-version p{margin-top:3px;margin-left:5px;margin-bottom:34px}h3.mec-metabox-feed-head{border-top:1px solid #ccc}div#mec_widget_news_features .inside{padding:0}.mec-metabox-head-wrap{padding:0 12px}#dashboard-widgets h3.mec-metabox-feed-head{padding:8px 12px;border-top:1px solid #eee;border-bottom:1px solid #eee;font-weight:700}.mec-metabox-feed-content{padding:0 12px}.mec-metabox-feed-content ul li a{font-weight:600;display:block}.mec-metabox-feed-content ul li p{margin:3px 0 24px}.mec-metabox-footer a span{font-size:17px;vertical-align:middle;margin-left:2px}.mec-metabox-footer a{text-decoration:none;border-right:1px solid #eee;padding-right:10px;margin-right:12px}.mec-metabox-footer{padding:11px 12px 10px;border-top:1px solid #eee}.mec-metabox-footer a:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{border-top:none!important;padding-top:13px!important}.mec-metabox-head-wrap{box-shadow:0 5px 8px rgba(0,0,0,.05)}.mec-metabox-upcoming-wrap ul li span{float:left}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event{float:left;margin-left:10px}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event-date{float:right}.mec-metabox-upcoming-wrap ul{padding:0 12px;background:#f7f7f7;margin:0}.mec-metabox-upcoming-wrap ul li{border-bottom:1px solid #eee;padding:14px 0;margin-bottom:0}.mec-metabox-upcoming-wrap ul li:last-of-type{border:none}.mec-metabox-upcoming-wrap h3{margin-bottom:0!important}.mec-metabox-upcoming-wrap ul li .mec-metabox-upcoming-event a{font-weight:600}.mec-metabox-head-version a span{vertical-align:middle}.mec-metabox-head-version a{padding-left:6px!important}#mec_widget_total_bookings .w-box.total-bookings ul li:first-child{margin-left:1px}#mec_widget_total_bookings .w-box.total-bookings ul li{margin-right:4px}#mec_widget_total_bookings .w-box.total-bookings ul li:last-child{margin-right:0}#mec_widget_total_bookings .w-box.total-bookings ul li a{color:#000}#mec_widget_total_bookings .w-box.total-bookings ul li:hover a{color:#fff}#mec_widget_total_bookings{overflow:hidden}#mec_widget_total_bookings .inside,#mec_widget_total_bookings .w-box{margin:0;padding-bottom:0}#mec_widget_total_bookings .w-col-sm-12{padding:0}#mec_widget_total_bookings .w-box-content button{color:#fff!important;font-weight:500!important;border-radius:2px!important;box-shadow:0 3px 10px -4px #008aff!important;text-shadow:none!important;background:#008aff!important;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%)!important;border:none!important;transition:.24s!important;line-height:39px;padding:0 36px;width:calc(33% - 7px);margin-bottom:14px}#mec_widget_total_bookings .w-box-content input[type=text],#mec_widget_total_bookings .w-box-content select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#mec_widget_total_bookings .w-box-content input[type=text]{width:calc(50% - 5px)}#mec_widget_total_bookings .w-box-content select{width:calc(33% - 2px);margin-bottom:24px;margin-top:20px}div#mec-schema .mec-form-row label{display:inline-block;width:141px}.event-status-schema{background:rgb(247 248 249 / 10%);padding:20px 40px;margin:10px 0 35px;border-radius:4px;border:1px solid #e6e6e6}@media (min-width:1281px){.event-status-schema{max-width:70%}}.event-status-schema p{margin-bottom:35px}div#mec_cancelled_reason_wrapper label{width:166px!important}.mec-fluent-hidden{display:none}#webnus-dashboard .total-bookings input[type=text],#webnus-dashboard .total-bookings select{border:solid 1px #ddd;border-radius:2px;height:40px;line-height:38px;padding-left:10px;box-shadow:0 3px 10px -2px rgba(0,0,0,.05),inset 0 1px 2px rgba(0,0,0,.02)}#webnus-dashboard select{margin-top:-5px}#mec_styles_CSS{line-height:1.6}.mec-search-forms-options-container label.mec-col-12{margin-bottom:10px}@media(max-width:480px){.toplevel_page_mec-intro .mec-intro-section-ifarme iframe{width:auto!important;height:auto!important}.w-box.mec-activation input[name=MECPurchaseCode]{min-width:200px!important;width:330px}.w-box.mec-activation{background:#fff}.mec-addons{padding-right:15px}.mec-report-wrap{margin-top:20px}.mec-report-select-event-wrap .select2-container--default,.mec-report-select-event-wrap select.mec-reports-selectbox-dates{max-width:100%;width:100%;margin:10px 0}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-content,.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head{padding:10px}.mec-report-selected-event-attendees-wrap .w-clearfix.mec-attendees-head span{font-size:13px}.mec-report-selected-event-attendees-wrap .mec-attendees-content .w-col-xs-3{word-wrap:break-word}.mec-report-selected-event-attendees-wrap .w-col-xs-3.name img{display:block}.mec-report-selected-event-attendees-wrap input[type=checkbox],.mec-report-selected-event-attendees-wrap input[type=radio]{height:.85rem;width:.85rem}.wns-be-container .dpr-btn.dpr-save-btn{margin:0!important}#mec_booking_form .mec-container{padding-left:0;padding-right:0}#mec_event_form_fields,#mec_reg_form_fields{padding:10px}.mec-search-forms-options-container .mec-form-row select{width:100%}#mec_skin_monthly_view_start_date_container{display:unset}#mec_calendar_display_options input[type=number],#mec_calendar_display_options input[type=text],#mec_calendar_display_options select{max-width:100%!important;width:100%;margin:10px 0}#mec_select_tags.mec-create-shortcode-tab-content input[type=text]{width:auto}#mec_tickets .mec-box{padding:20px 7px}.fserv-container form,.fserv-form-description{padding:10px 15px!important}.fserv-field{display:inline-block;width:25%!important;padding:0!important;margin:0!important;margin-right:10px!important}#webnus-dashboard .total-bookings button{margin:15px 0}}.mec-skin-styles.mec-styles-custom{padding-left:0!important;top:40%;position:absolute;width:330px;height:auto!important;overflow:visible!important}.mec-skin-styles.mec-styles-custom .nice-select{box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07);clear:unset!important;-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:300px!important}.mec-styles-custom h3{font-size:13px;font-weight:400;color:#707070}.post-type-mec_calendars .mec-form-row .select2-selection{height:auto}.mec-form-row .mec-col-12 ul li span{display:inline-block;background:#f7f8f9;padding:8px 15px;margin-right:5px;border-radius:3px;border:1px dashed #d7d8d9;font-family:monospace;letter-spacing:.4px}.post-type-mec-events .ui-datepicker.ui-widget .ui-button,.post-type-mec-events .ui-datepicker.ui-widget .ui-button.ui-state-disabled:active,.post-type-mec-events .ui-datepicker.ui-widget .ui-button.ui-state-disabled:hover,.post-type-mec-events .ui-datepicker.ui-widget .ui-state-default,.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-content .ui-state-default,.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-header .ui-state-default,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-button,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-button.ui-state-disabled:active,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-button.ui-state-disabled:hover,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-state-default,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-content .ui-state-default,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-header .ui-state-default{border:0;background-color:#fff;font-weight:400;color:#212121;text-align:center}.post-type-mec-events .ui-datepicker.ui-widget td a.ui-state-active,.post-type-mec-events .ui-datepicker.ui-widget td a:hover,.post-type-mec_calendars .ui-datepicker.ui-widget td a.ui-state-active,.post-type-mec_calendars .ui-datepicker.ui-widget td a:hover{background:#40d9f1;color:#fff}.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-header,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-header{border:0;background:unset;background-color:#fff}.post-type-mec-events .ui-datepicker.ui-widget .ui-icon,.post-type-mec-events .ui-datepicker.ui-widget .ui-widget-content .ui-icon,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-icon,.post-type-mec_calendars .ui-datepicker.ui-widget .ui-widget-content .ui-icon{background-image:unset}.post-type-mec-events .ui-datepicker.ui-widget select,.post-type-mec_calendars .ui-datepicker.ui-widget select{font-weight:600;font-size:12px;border-radius:2px;padding:2px 10px;margin:1px 3px 5px}.mec-update-warning+p{display:none}#mec_sf_timetable_address_search_placeholder,#mec_sf_timetable_txt_search_placeholder{margin-top:4px}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}body.rtl .fserv-container .fserv-form-name{text-align:right!important}body.rtl #webnus-dashboard .mec-activation .w-box-head{max-width:calc(100% - 250px);margin-right:250px;text-align:right}body.rtl #webnus-dashboard .w-box.mec-activation .LicenseType label{padding-left:20px;padding-right:0;font-weight:500}body.rtl #webnus-dashboard .w-box.mec-activation input[type=radio]+label span{margin-right:0;margin-left:6px}body.rtl #webnus-dashboard .upcoming-events .w-box-content .mec-event-article{display:block}body.rtl #webnus-dashboard .upcoming-events .w-box-content .mec-event-article .col-md-9.col-sm-9{float:unset}body.rtl #webnus-dashboard .total-bookings input[type=text],body.rtl #webnus-dashboard .total-bookings select{min-width:125px;margin:0}body.rtl.post-type-mec-events .mec-form-row input[type=number],body.rtl.post-type-mec-events .mec-form-row input[type=text],body.rtl.post-type-mec-events .mec-form-row input[type=url],body.rtl.post-type-mec-events .mec-form-row select,body.rtl.post-type-mec-events .mec-form-row textarea,body.rtl.post-type-mec_calendars .mec-form-row input[type=number],body.rtl.post-type-mec_calendars .mec-form-row input[type=text],body.rtl.post-type-mec_calendars .mec-form-row input[type=url],body.rtl.post-type-mec_calendars .mec-form-row select,body.rtl.post-type-mec_calendars .mec-form-row textarea{margin:0 0 0 1%}body.rtl .mec-form-row .mec-col-8 label,body.rtl .mec-form-row .mec-col-9 label{padding-left:10px}body.rtl .mec-form-row label{text-align:right}body.rtl .mec-form-row .mec-col-3{margin:0;padding-left:10px;padding-right:0}body.rtl .mec-calendar-metabox .mec-form-row input[type=checkbox],body.rtl .mec-meta-box-fields .mec-form-row input[type=checkbox]{margin-left:6px;margin-right:0}body.rtl .mec-form-row input[type=radio]{margin:0 0 0 6px}body.rtl .mec-form-row .description{border-left:0;border-right:1px dashed #ccc;padding-left:0;padding-right:12px}body.rtl #mec_add_fee_button,body.rtl #mec_add_ticket_variation_button,body.rtl #mec_meta_box_downloadable_file_options #mec_downloadable_file_remove_image_button,body.rtl #taxes_option #mec_fees_list .mec-form-row .button,body.rtl #ticket_variations_option #mec_ticket_variations_list .mec-form-row .button,body.rtl .mec-export-settings,body.rtl .mec-import-settings,body.rtl .mec-meta-box-fields .mec-form-row .button:not(.wp-color-result),body.rtl .mec-occurrences-wrapper .button:not(.wp-color-result){margin-right:0;margin-left:5px}body.rtl .mec-add-booking-tabs-right,body.rtl .mec-add-event-tabs-right,body.rtl .mec-create-shortcode-tabs-right{border-left:0;border-right:1px solid #e2e2e2}body.rtl .mec-add-booking-tabs-left a,body.rtl .mec-add-event-tabs-left a,body.rtl .mec-create-shortcode-tabs-left a{padding:13px 20px 13px 4px}body.rtl .mec-add-booking-tabs-left a.mec-tab-active,body.rtl .mec-add-event-tabs-left a.mec-tab-active,body.rtl .mec-create-shortcode-tabs-left a.mec-tab-active{padding-left:0;padding-right:22px}body.rtl .mec-calendar-metabox .wn-mec-select,body.rtl .mec-form-row select,body.rtl .post-type-mec-events .mec-form-row select,body.rtl .post-type-mec_calendars .mec-form-row select,body.rtl .wns-be-main .mec-form-row select{background-position:left center!important}body.rtl .mec-calendar-metabox .wn-mec-select,body.rtl .mec-form-row select,body.rtl .post-type-mec-events .mec-form-row select,body.rtl .post-type-mec_calendars .mec-form-row select,body.rtl .wns-be-main .mec-form-row select{text-align:right!important}body.rtl #mec_calendar_display_options .mec-col-4 input{margin-left:0!important;margin-right:20px!important}body.rtl .meta-box-sortables .mec-switcher input:checked+label:after{right:auto;left:2px;margin-left:0}body.rtl .mec-sed-methods li{margin:0 0 5px 5px}body.rtl .wn-mec-select:after{left:10px;right:auto}body.rtl .inside div div>a.mec-tab-active:after,body.rtl .inside div div>a.mec-tab-active:before{border-right:0;border-left-color:#fff}body.rtl .inside div div>a.mec-tab-active:after{right:auto;left:-1px}body.rtl .inside div div>a.mec-tab-active:before{border-right:0;border-left-color:#d7d8d9;right:auto;left:0}body.rtl #mec_tickets .button.remove{right:auto;left:20px;line-height:1.8}body.rtl .mec-calendar-metabox .wn-mec-select,body.rtl .mec-form-row input[type=date],body.rtl .mec-form-row input[type=email],body.rtl .mec-form-row input[type=number],body.rtl .mec-form-row input[type=tel],body.rtl .mec-form-row input[type=text],body.rtl .mec-form-row input[type=url],body.rtl .mec-form-row select,body.rtl .mec-form-row textarea,body.rtl .mec-form-row.mec-skin-list-date-format-container input[type=text],body.rtl .mec-occurrences-wrapper input[type=date],body.rtl .mec-occurrences-wrapper input[type=email],body.rtl .mec-occurrences-wrapper input[type=number],body.rtl .mec-occurrences-wrapper input[type=tel],body.rtl .mec-occurrences-wrapper input[type=text],body.rtl .mec-occurrences-wrapper input[type=url],body.rtl .mec-occurrences-wrapper select,body.rtl .mec-occurrences-wrapper textarea{padding:0 10px}body.rtl #mec-occurrences .mec-occurrences-list li,body.rtl #mec_bfixed_form_fields li,body.rtl #mec_event_form_fields li,body.rtl #mec_reg_form_fields li{border-radius:11px 3px 3px 3px}body.rtl #mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_remove,body.rtl #mec_event_form_fields span.mec_event_field_remove,body.rtl #mec_reg_form_fields span.mec_reg_field_remove{position:absolute;right:auto;left:47px;top:0;background:#fff}body.rtl #mec-occurrences .mec-occurrences-list .mec-occurrences-delete-button:before,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_option_sort:before,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_remove:before,body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_sort:before,body.rtl #mec_event_form_fields span.mec_event_field_option_sort:before,body.rtl #mec_event_form_fields span.mec_event_field_remove:before,body.rtl #mec_event_form_fields span.mec_event_field_sort:before,body.rtl #mec_reg_form_fields span.mec_reg_field_option_sort:before,body.rtl #mec_reg_form_fields span.mec_reg_field_remove:before,body.rtl #mec_reg_form_fields span.mec_reg_field_sort:before{left:auto;right:20px;top:7px}body.rtl #mec_bfixed_form_fields span.mec_bfixed_field_type,body.rtl #mec_bfixed_form_fields span.mec_event_field_type,body.rtl #mec_event_form_fields span.mec_event_field_type,body.rtl #mec_reg_form_fields span.mec_reg_field_type{padding-left:0;padding-right:25px}body.rtl .wns-be-main .mec-form-row .mec-col-3{padding:0}body.rtl .wns-be-main .mec-form-row .mec-col-9{float:left}body.rtl .mec-form-row .mec-col-9 .mec-box .mec-tooltip{left:15px;right:auto}body.rtl .mec-tooltip .box{left:auto!important;right:30px!important}body.rtl .mec-tooltip .box:before{left:auto!important;right:0!important}body.rtl .mec-tooltip .box.left{left:30px!important;right:auto!important}body.rtl .mec-tooltip .box.left:before{left:-12px!important;right:auto!important}body.rtl .mec-form-row .cancellation-period-box input[type=number]:first-child{margin-left:calc(2% + 4px);margin-right:0}body.rtl .support-page .w-box-content ul li i{margin:0 0 0 10px;float:right}body.rtl .support-page .w-box-content ul li .mec-sl-arrow-right-circle:before{content:"\e07a"}body.rtl #webnus-dashboard .w-box.support-page.videobox .w-button a i{float:left;line-height:24px}body.rtl #webnus-dashboard .mec-faq-accordion-trigger a{padding-right:34px;font-size:15px}
changelog.txt CHANGED
@@ -1,4 +1,24 @@
1
- v 5.18.07 April 2021
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: A new shortcode for Pro users to display some content only for those users that booked the event (pro)
3
  - Added: Placeholder feature for text fields in the search form
4
  - Added: Two new placeholders to email notifications to show the start and end time of events (pro)
1
+ v 5.18.521 April 2021
2
+ - Added: A new feature to manage a load of MEC assets on pages
3
+ - Added: Some new placeholders to notifications including categories, tags, cost, and labels (pro)
4
+ - Added: An option to show expired events in event management of backend
5
+ - Added: Date filter option to map skin (pro)
6
+ - Added: An option to change the SEO title of occurrences
7
+ - Added: An option to change currency and currency options per event
8
+ - Added: An option to disable the “Private Description” field in frontend event submission (pro)
9
+ - Added: An option to disable the display of organizers in “Frontend Event Submission”
10
+ - Improved: The MS Excel export on event and bookings (pro)
11
+ - Fixed: Unlimited booking limit (pro)
12
+ - Fixed: Price of booking export
13
+ - Fixed: Simple style of monthly skin when there are multiple repeats from the same event in one day
14
+ - Fixed: Last Few Ticket Percentage (pro)
15
+ - Fixed: Some issues in export module loaded in single event page (pro)
16
+ - Fixed: An issue regarding multiline description for ics export
17
+ - Fixed: Showing the wrong date for events
18
+ - Fixed: Booking reminder notification (pro)
19
+ - Fixed: some issues in PHP 8
20
+
21
+ v 5.18.0 – 7 April 2021
22
  - Added: A new shortcode for Pro users to display some content only for those users that booked the event (pro)
23
  - Added: Placeholder feature for text fields in the search form
24
  - Added: Two new placeholders to email notifications to show the start and end time of events (pro)
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: 2021-04-07 12:41+0430\n"
5
- "PO-Revision-Date: 2021-04-07 12:42+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -23,8 +23,8 @@ msgstr ""
23
 
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
25
  #: app/features/ix/import.php:48 app/features/ix/import.php:77
26
- #: app/features/ix/thirdparty.php:26 app/features/mec.php:1214
27
- #: app/features/mec.php:1238 app/features/mec/dashboard.php:65
28
  #: app/widgets/MEC.php:33
29
  msgid "Modern Events Calendar"
30
  msgstr "Moderní kalendář událostí"
@@ -35,8 +35,8 @@ msgstr "Moderní kalendář událostí"
35
  msgid "Content"
36
  msgstr "Obsah"
37
 
38
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:539
39
- #: app/features/mec.php:570 app/features/mec.php:600
40
  msgid "Shortcode"
41
  msgstr "Zkrácený kód"
42
 
@@ -93,16 +93,16 @@ msgid "Select Shortcode"
93
  msgstr "Přidat nový zkrácený kód"
94
 
95
  #: app/features/booking/calendar_novel.php:136
96
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6659
97
- #: app/libraries/main.php:6706 app/libraries/notifications.php:1361
98
  #: app/libraries/render.php:531 app/libraries/render.php:723
99
  #: app/libraries/render.php:781 app/libraries/render.php:878
100
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:47
101
  #: app/modules/local-time/type2.php:69 app/modules/local-time/type3.php:47
102
  #: app/modules/next-event/details.php:154
103
  #: app/modules/next-event/multiple.php:64 app/skins/single.php:1225
104
- #: app/skins/single/default.php:172 app/skins/single/default.php:412
105
- #: app/skins/single/m1.php:46 app/skins/single/modern.php:237
106
  #, fuzzy
107
  #| msgid "Add Day"
108
  msgid "All Day"
@@ -114,8 +114,8 @@ msgstr "Přidat den"
114
  msgid "Chosen Time:"
115
  msgstr "Místní čas"
116
 
117
- #: app/features/colors.php:50 app/features/fes/form.php:935
118
- #: app/features/mec/settings.php:845
119
  msgid "Event Color"
120
  msgstr "Barva události"
121
 
@@ -125,17 +125,17 @@ msgstr "Barva události"
125
  msgid "Recent Colors"
126
  msgstr "Barva události"
127
 
128
- #: app/features/contextual.php:55 app/features/mec.php:488
129
  #: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
130
  #: app/features/mec/wizard.php:223 app/features/popup/event.php:60
131
- #: app/features/popup/shortcode.php:37 app/libraries/main.php:670
132
  msgid "Settings"
133
  msgstr "Nastavení"
134
 
135
- #: app/features/contextual.php:62 app/features/events.php:1453
136
- #: app/features/events.php:2423 app/features/mec/booking.php:626
137
- #: app/features/mec/booking.php:895 app/features/mec/settings.php:938
138
- #: app/features/mec/support.php:29 app/libraries/main.php:620
139
  msgid "Booking Form"
140
  msgstr "Rezervační formulář"
141
 
@@ -162,9 +162,9 @@ msgstr ""
162
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
163
  "iframe>"
164
 
165
- #: app/features/contextual.php:70 app/features/events.php:1461
166
  #: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
167
- #: app/features/mec/support.php:36 app/libraries/main.php:622
168
  msgid "Payment Gateways"
169
  msgstr "Platební brány"
170
 
@@ -178,9 +178,9 @@ msgstr ""
178
  "\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
179
  "allowfullscreen></iframe>"
180
 
181
- #: app/features/contextual.php:77 app/features/events.php:401
182
  #: app/features/mec/support-page.php:117 app/features/mec/support.php:45
183
- #: app/libraries/main.php:821
184
  msgid "Notifications"
185
  msgstr "Upozornění"
186
 
@@ -279,7 +279,8 @@ msgstr "Název v URL / Trvalé odkazy"
279
  msgid "Event Details/Single Event Page"
280
  msgstr "Podrobnosti o události / Stránka jedné události"
281
 
282
- #: app/features/contextual.php:166 app/features/mec/settings.php:549
 
283
  #: app/libraries/main.php:586
284
  msgid "Currency Options"
285
  msgstr "Možnosti Měna"
@@ -288,18 +289,18 @@ msgstr "Možnosti Měna"
288
  msgid "Google Maps Options"
289
  msgstr "Možnosti Google Maps"
290
 
291
- #: app/features/contextual.php:244 app/features/mec/settings.php:608
292
- #: app/libraries/main.php:587
293
  msgid "Google Recaptcha Options"
294
  msgstr "Možnosti Google Recaptcha"
295
 
296
- #: app/features/contextual.php:258 app/features/mec/single.php:298
297
- #: app/libraries/main.php:606
298
  msgid "Countdown Options"
299
  msgstr "Možnosti Odpočítávání"
300
 
301
  #: app/features/contextual.php:268 app/features/mec/modules.php:269
302
- #: app/libraries/main.php:632
303
  msgid "Social Networks"
304
  msgstr "Sociální sítě"
305
 
@@ -307,36 +308,36 @@ msgstr "Sociální sítě"
307
  msgid "Next Event Module"
308
  msgstr "Modul Další události"
309
 
310
- #: app/features/contextual.php:286 app/features/mec/settings.php:648
311
- #: app/features/mec/support-page.php:98 app/libraries/main.php:588
312
  msgid "Frontend Event Submission"
313
  msgstr "Předání události frontendu"
314
 
315
- #: app/features/contextual.php:298 app/features/events.php:394
316
- #: app/libraries/main.php:607
317
  msgid "Exceptional Days"
318
  msgstr "Výjimečné dny"
319
 
320
- #: app/features/contextual.php:308 app/features/events.php:364
321
  #: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
322
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
323
- #: app/libraries/main.php:615 app/libraries/main.php:647
324
- #: app/libraries/main.php:735
325
  msgid "Booking"
326
  msgstr "Rezervace"
327
 
328
  #: app/features/contextual.php:318 app/features/mec/booking.php:448
329
- #: app/features/mec/booking.php:852 app/libraries/main.php:617
330
  msgid "Coupons"
331
  msgstr "Kupóny"
332
 
333
  #: app/features/contextual.php:326 app/features/mec/modules.php:341
334
- #: app/libraries/main.php:634
335
  msgid "BuddyPress Integration"
336
  msgstr "Integrace BuddyPress"
337
 
338
- #: app/features/contextual.php:334 app/features/mec/settings.php:1152
339
- #: app/libraries/main.php:593
340
  msgid "Mailchimp Integration"
341
  msgstr "Integrace Mailchimp"
342
 
@@ -344,8 +345,8 @@ msgstr "Integrace Mailchimp"
344
  msgid "MEC Activation"
345
  msgstr "Aktivace MEC"
346
 
347
- #: app/features/dlfile.php:121 app/features/events.php:1458
348
- #: app/features/mec/booking.php:368 app/features/mec/settings.php:973
349
  #, fuzzy
350
  #| msgid "Download ICS file"
351
  msgid "Downloadable File"
@@ -383,15 +384,15 @@ msgstr ""
383
  msgid "File uploaded!"
384
  msgstr "Obrázek je nahraný!"
385
 
386
- #: app/features/events.php:183 app/features/ix/export.php:34
387
- #: app/features/mec/dashboard.php:267 app/libraries/main.php:5702
388
- #: app/libraries/main.php:5722 app/skins/daily_view/tpl.php:82
389
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
390
  #: app/skins/yearly_view/tpl.php:71
391
  msgid "Events"
392
  msgstr "Události"
393
 
394
- #: app/features/events.php:184 app/features/fes.php:243
395
  #: app/features/mec/meta_boxes/display_options.php:1732
396
  #: app/features/mec/meta_boxes/display_options.php:1826
397
  #: app/features/mec/meta_boxes/display_options.php:1899
@@ -401,38 +402,38 @@ msgstr "Události"
401
  msgid "Event"
402
  msgstr "Událost"
403
 
404
- #: app/features/events.php:185 app/features/mec.php:474
405
  msgid "Add Event"
406
  msgstr "Přidat událost"
407
 
408
- #: app/features/events.php:186 app/features/mec/dashboard.php:142
409
  msgid "Add New Event"
410
  msgstr "Přidat novou událost"
411
 
412
- #: app/features/events.php:187 app/features/ix.php:4499
413
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
414
  #: app/skins/map/tpl.php:89
415
  msgid "No events found!"
416
  msgstr "Nebyly nalezeny žádné události!"
417
 
418
- #: app/features/events.php:188
419
  msgid "All Events"
420
  msgstr "Všechny události"
421
 
422
- #: app/features/events.php:189
423
  msgid "Edit Event"
424
  msgstr "Editace události"
425
 
426
- #: app/features/events.php:190 app/features/fes/list.php:100
427
  #: app/features/popup/event.php:252
428
  msgid "View Event"
429
  msgstr "Zobrazit událost"
430
 
431
- #: app/features/events.php:191
432
  msgid "No events found in Trash!"
433
  msgstr "V koši nebyly nalezeny žádné události!"
434
 
435
- #: app/features/events.php:208 app/features/events.php:3522
436
  #: app/features/mec/meta_boxes/display_options.php:1589
437
  #: app/features/mec/meta_boxes/search_form.php:42
438
  #: app/features/mec/meta_boxes/search_form.php:130
@@ -441,160 +442,160 @@ msgstr "V koši nebyly nalezeny žádné události!"
441
  #: app/features/mec/meta_boxes/search_form.php:393
442
  #: app/features/mec/meta_boxes/search_form.php:480
443
  #: app/features/mec/meta_boxes/search_form.php:567
444
- #: app/features/mec/meta_boxes/search_form.php:640
445
- #: app/features/mec/meta_boxes/search_form.php:727
446
- #: app/features/mec/meta_boxes/search_form.php:814
447
- #: app/features/mec/meta_boxes/search_form.php:937
448
- #: app/features/mec/settings.php:1045 app/features/mec/settings.php:1106
449
- #: app/features/mec/single.php:385 app/features/mec/single.php:427
450
  #: app/features/mec/wizard.php:418 app/features/mec/wizard.php:457
451
- #: app/features/search.php:68 app/libraries/main.php:6617
452
- #: app/libraries/main.php:6671 app/libraries/skins.php:1041
453
- #: app/skins/single.php:1035 app/skins/single/default.php:273
454
- #: app/skins/single/default.php:512 app/skins/single/m1.php:202
455
- #: app/skins/single/m2.php:125 app/skins/single/modern.php:155
456
  msgid "Category"
457
  msgstr "Kategorie"
458
 
459
- #: app/features/events.php:209 app/features/events.php:3478
460
- #: app/features/fes/form.php:885 app/features/mec.php:476
461
  #: app/features/mec/meta_boxes/filter.php:69
462
- #: app/features/mec/meta_boxes/filter.php:80 app/libraries/main.php:6616
463
- #: app/libraries/main.php:6670
464
  msgid "Categories"
465
  msgstr "Kategorie"
466
 
467
- #: app/features/events.php:219 app/features/labels.php:71
468
  #: app/features/locations.php:69 app/features/organizers.php:69
469
  #: app/features/speakers.php:71 app/features/tag.php:69
470
  #, php-format
471
  msgid "All %s"
472
  msgstr "Všechny %s"
473
 
474
- #: app/features/events.php:220 app/features/labels.php:72
475
  #: app/features/locations.php:70 app/features/organizers.php:70
476
  #: app/features/speakers.php:72 app/features/tag.php:70
477
  #, php-format
478
  msgid "Edit %s"
479
  msgstr "Editovat %s"
480
 
481
- #: app/features/events.php:221 app/features/labels.php:73
482
  #: app/features/locations.php:71 app/features/organizers.php:71
483
  #: app/features/speakers.php:73 app/features/tag.php:71
484
  #, php-format
485
  msgid "View %s"
486
  msgstr "Zobrazit %s"
487
 
488
- #: app/features/events.php:222 app/features/labels.php:74
489
  #: app/features/locations.php:72 app/features/organizers.php:72
490
  #: app/features/speakers.php:74 app/features/tag.php:72
491
  #, php-format
492
  msgid "Update %s"
493
  msgstr "Aktualizovat %s"
494
 
495
- #: app/features/events.php:223 app/features/labels.php:75
496
  #: app/features/locations.php:73 app/features/organizers.php:73
497
  #: app/features/speakers.php:75 app/features/tag.php:73
498
  #, php-format
499
  msgid "Add New %s"
500
  msgstr "Přidat novou %s"
501
 
502
- #: app/features/events.php:224 app/features/labels.php:76
503
  #: app/features/locations.php:74 app/features/organizers.php:74
504
  #: app/features/speakers.php:76 app/features/tag.php:74
505
  #, php-format
506
  msgid "New %s Name"
507
  msgstr "Nové jméno %s"
508
 
509
- #: app/features/events.php:225 app/features/labels.php:77
510
  #: app/features/locations.php:75 app/features/organizers.php:75
511
  #: app/features/speakers.php:77 app/features/tag.php:75
512
  #, php-format
513
  msgid "Popular %s"
514
  msgstr "Populární %s"
515
 
516
- #: app/features/events.php:226 app/features/labels.php:78
517
  #: app/features/locations.php:76 app/features/organizers.php:76
518
  #: app/features/speakers.php:78 app/features/tag.php:76
519
  #, php-format
520
  msgid "Search %s"
521
  msgstr "Vyhledat %s"
522
 
523
- #: app/features/events.php:253 app/features/events.php:290
524
  msgid "Category Icon"
525
  msgstr "Ikona kategorie"
526
 
527
- #: app/features/events.php:256 app/features/events.php:295
528
  msgid "Select icon"
529
  msgstr "Vybrat ikonu"
530
 
531
- #: app/features/events.php:260 app/features/events.php:304
532
  msgid "Fallback Image"
533
  msgstr ""
534
 
535
- #: app/features/events.php:263 app/features/events.php:309
536
  #: app/features/locations.php:160 app/features/locations.php:212
537
  #: app/features/organizers.php:132 app/features/organizers.php:163
538
  #: app/features/speakers.php:180 app/features/speakers.php:231
539
  msgid "Upload/Add image"
540
  msgstr "Nahrát / přidat obrázek"
541
 
542
- #: app/features/events.php:264 app/features/events.php:310
543
  #: app/features/locations.php:161 app/features/locations.php:213
544
  #: app/features/locations.php:387 app/features/locations.php:394
545
  #: app/features/organizers.php:133 app/features/organizers.php:164
546
- #: app/features/organizers.php:300 app/features/organizers.php:307
547
  #: app/features/speakers.php:181 app/features/speakers.php:232
548
  msgid "Remove image"
549
  msgstr "Odebrat obrázek"
550
 
551
- #: app/features/events.php:359
552
  msgid "Event Details"
553
  msgstr "Podrobnosti události"
554
 
555
- #: app/features/events.php:390
556
  #, fuzzy
557
  #| msgid "Event Details"
558
  msgid "FES Details"
559
  msgstr "Podrobnosti události"
560
 
561
- #: app/features/events.php:391
562
  #, fuzzy
563
  #| msgid "Date and Time"
564
  msgid "Date And Time"
565
  msgstr "Datum a čas"
566
 
567
- #: app/features/events.php:392 app/features/fes/form.php:383
568
  msgid "Event Repeating"
569
  msgstr "Opakování události"
570
 
571
- #: app/features/events.php:393 app/features/mec/single.php:207
572
  #: app/libraries/eventFields.php:45
573
  #, fuzzy
574
  #| msgid "Event Detail"
575
  msgid "Event Data"
576
  msgstr "Zobrazit událost"
577
 
578
- #: app/features/events.php:395 app/features/mec/settings.php:875
579
  #: app/libraries/hourlyschedule.php:36 app/skins/single.php:1452
580
  msgid "Hourly Schedule"
581
  msgstr "Hodinový rozvrh"
582
 
583
- #: app/features/events.php:396
584
  #, fuzzy
585
  #| msgid "Location"
586
  msgid "Location/Venue"
587
  msgstr "Umístění"
588
 
589
- #: app/features/events.php:397
590
  #, fuzzy
591
  #| msgid "Link"
592
  msgid "Links"
593
  msgstr "Odkaz"
594
 
595
- #: app/features/events.php:398 app/features/events.php:3524
596
- #: app/features/events.php:3728 app/features/ix.php:4088
597
- #: app/features/ix.php:4130
598
  #: app/features/mec/meta_boxes/display_options.php:1592
599
  #: app/features/mec/meta_boxes/search_form.php:58
600
  #: app/features/mec/meta_boxes/search_form.php:146
@@ -603,89 +604,89 @@ msgstr "Odkaz"
603
  #: app/features/mec/meta_boxes/search_form.php:409
604
  #: app/features/mec/meta_boxes/search_form.php:496
605
  #: app/features/mec/meta_boxes/search_form.php:583
606
- #: app/features/mec/meta_boxes/search_form.php:656
607
- #: app/features/mec/meta_boxes/search_form.php:743
608
- #: app/features/mec/meta_boxes/search_form.php:830
609
- #: app/features/mec/meta_boxes/search_form.php:953
610
- #: app/features/mec/settings.php:1118 app/features/mec/single.php:389
611
- #: app/features/mec/single.php:431 app/features/mec/wizard.php:422
612
  #: app/features/mec/wizard.php:461 app/features/organizers.php:58
613
- #: app/features/organizers.php:204 app/features/organizers.php:261
614
- #: app/features/organizers.php:263 app/features/organizers.php:272
615
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
616
- #: app/features/search.php:80 app/libraries/main.php:6623
617
- #: app/libraries/main.php:6677 app/libraries/skins.php:1127
618
- #: app/skins/single.php:1290 app/skins/single/default.php:298
619
- #: app/skins/single/default.php:537 app/skins/single/m1.php:102
620
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:51
621
  msgid "Organizer"
622
  msgstr "Organizátor"
623
 
624
- #: app/features/events.php:399 app/features/events.php:1234
625
- #: app/features/fes/form.php:856 app/features/mec/settings.php:1042
626
- #: app/libraries/main.php:6654 app/libraries/main.php:6703
627
  #: app/libraries/skins.php:1358 app/skins/single.php:1061
628
- #: app/skins/single/default.php:190 app/skins/single/default.php:430
629
- #: app/skins/single/m1.php:61 app/skins/single/modern.php:252
630
  msgid "Cost"
631
  msgstr "Cena"
632
 
633
- #: app/features/events.php:400
634
  #, fuzzy
635
  #| msgid "On Event Start"
636
  msgid "SEO Schema / Event Status"
637
  msgstr "Při spuštění události"
638
 
639
- #: app/features/events.php:561
640
  msgid "Note for reviewer"
641
  msgstr "Poznámka pro recenzenta"
642
 
643
- #: app/features/events.php:567
644
  msgid "Guest Data"
645
  msgstr "Údaje hosta"
646
 
647
- #: app/features/events.php:568 app/features/events.php:2409
648
- #: app/features/events.php:4051 app/features/fes.php:243
649
  #: app/features/fes/form.php:812 app/features/labels.php:180
650
- #: app/features/mec/booking.php:45 app/features/organizers.php:280
651
  #: app/features/popup/event.php:182 app/features/profile/profile.php:149
652
- #: app/libraries/notifications.php:1726 app/modules/booking/steps/form.php:62
653
  msgid "Name"
654
  msgstr "Jméno"
655
 
656
- #: app/features/events.php:569 app/features/events.php:2418
657
- #: app/features/events.php:2485 app/features/events.php:2574
658
- #: app/features/events.php:4054 app/features/fes.php:243
659
  #: app/features/fes/form.php:808 app/features/login/login.php:5
660
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:664
661
- #: app/features/mec/booking.php:760 app/features/mec/single.php:240
662
  #: app/features/organizers.php:111 app/features/organizers.php:152
663
  #: app/features/profile/profile.php:152 app/features/speakers.php:127
664
- #: app/features/speakers.php:204 app/libraries/main.php:1942
665
- #: app/libraries/main.php:2011 app/libraries/main.php:3453
666
- #: app/libraries/notifications.php:1727 app/modules/booking/steps/form.php:71
667
  #: app/modules/booking/steps/form.php:213 app/skins/single.php:1307
668
- #: app/skins/single.php:1370 app/skins/single/default.php:315
669
- #: app/skins/single/default.php:554 app/skins/single/m1.php:119
670
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:68
671
  msgid "Email"
672
  msgstr "Email"
673
 
674
- #: app/features/events.php:578
675
  msgid ""
676
  "This event is imported from Google calendar so if you modify it, it would "
677
  "overwrite in the next import from Google."
678
  msgstr ""
679
 
680
- #: app/features/events.php:582 app/features/fes/form.php:282
681
  msgid "Date and Time"
682
  msgstr "Datum a čas"
683
 
684
- #: app/features/events.php:585 app/features/events.php:589
685
- #: app/features/events.php:3525 app/features/events.php:3728
686
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
687
- #: app/features/ix.php:4088 app/features/ix.php:4130
688
- #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1434
689
  #: app/features/mec/meta_boxes/display_options.php:52
690
  #: app/features/mec/meta_boxes/display_options.php:305
691
  #: app/features/mec/meta_boxes/display_options.php:569
@@ -705,11 +706,11 @@ msgstr "Datum a čas"
705
  msgid "Start Date"
706
  msgstr "Počátečná den"
707
 
708
- #: app/features/events.php:604 app/features/events.php:608
709
- #: app/features/events.php:3526 app/features/events.php:3728
710
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
711
- #: app/features/ix.php:4088 app/features/ix.php:4130
712
- #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1435
713
  #: app/features/mec/meta_boxes/display_options.php:68
714
  #: app/features/mec/meta_boxes/display_options.php:321
715
  #: app/features/mec/meta_boxes/display_options.php:585
@@ -721,29 +722,29 @@ msgstr "Počátečná den"
721
  msgid "End Date"
722
  msgstr "Konečný den"
723
 
724
- #: app/features/events.php:631 app/features/fes/form.php:323
725
  #: app/features/popup/event.php:109
726
  #, fuzzy
727
  #| msgid "All Day Event"
728
  msgid "All-day Event"
729
  msgstr "Celodenní událost"
730
 
731
- #: app/features/events.php:641 app/features/fes/form.php:326
732
  msgid "Hide Event Time"
733
  msgstr "Skrýt čas události"
734
 
735
- #: app/features/events.php:651 app/features/fes/form.php:329
736
  msgid "Hide Event End Time"
737
  msgstr "Skrýt čas ukončení události"
738
 
739
- #: app/features/events.php:656 app/features/events.php:660
740
  #: app/features/fes/form.php:333
741
  #, fuzzy
742
  #| msgid "Note to reviewer"
743
  msgid "Notes on the time"
744
  msgstr "Poznámka pro recenzenta"
745
 
746
- #: app/features/events.php:661 app/features/fes/form.php:334
747
  #, fuzzy
748
  #| msgid ""
749
  #| "It shows next to event time on single event page. You can insert Timezone "
@@ -755,15 +756,16 @@ msgstr ""
755
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
756
  "můžete vložit časové pásmo atd."
757
 
758
- #: app/features/events.php:663 app/features/events.php:842
759
- #: app/features/events.php:1195 app/features/events.php:1286
760
- #: app/features/events.php:1423 app/features/events.php:1540
761
- #: app/features/events.php:1795 app/features/events.php:1810
762
- #: app/features/events.php:1991 app/features/events.php:2004
763
- #: app/features/events.php:2160 app/features/events.php:2196
764
- #: app/features/events.php:2294 app/features/events.php:2309
765
- #: app/features/events.php:2339 app/features/events.php:2352
766
- #: app/features/fes/form.php:456 app/features/fes/form.php:764
 
767
  #: app/features/locations.php:335 app/features/mec/booking.php:109
768
  #: app/features/mec/booking.php:201 app/features/mec/booking.php:266
769
  #: app/features/mec/booking.php:299 app/features/mec/booking.php:312
@@ -809,16 +811,16 @@ msgstr ""
809
  #: app/features/mec/modules.php:93 app/features/mec/modules.php:128
810
  #: app/features/mec/modules.php:144 app/features/mec/modules.php:330
811
  #: app/features/mec/notifications.php:107
812
- #: app/features/mec/notifications.php:258
813
- #: app/features/mec/notifications.php:410
814
- #: app/features/mec/notifications.php:572
815
- #: app/features/mec/notifications.php:745
816
- #: app/features/mec/notifications.php:903
817
- #: app/features/mec/notifications.php:1058
818
- #: app/features/mec/notifications.php:1203
819
- #: app/features/mec/notifications.php:1218
820
- #: app/features/mec/notifications.php:1375
821
- #: app/features/mec/notifications.php:1487 app/features/mec/settings.php:67
822
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:113
823
  #: app/features/mec/settings.php:149 app/features/mec/settings.php:172
824
  #: app/features/mec/settings.php:218 app/features/mec/settings.php:268
@@ -826,152 +828,153 @@ msgstr ""
826
  #: app/features/mec/settings.php:472 app/features/mec/settings.php:489
827
  #: app/features/mec/settings.php:506 app/features/mec/settings.php:525
828
  #: app/features/mec/settings.php:539 app/features/mec/settings.php:567
829
- #: app/features/mec/settings.php:660 app/features/mec/settings.php:837
830
- #: app/features/mec/settings.php:1013 app/features/mec/settings.php:1029
831
- #: app/features/mec/settings.php:1167 app/features/mec/settings.php:1180
832
- #: app/features/mec/settings.php:1196 app/features/mec/single.php:46
833
- #: app/features/mec/single.php:62 app/features/mec/single.php:82
834
- #: app/features/mec/single.php:100 app/features/mec/single.php:124
835
- #: app/features/mec/single.php:141 app/features/mec/single.php:192
836
- #: app/features/mec/single.php:327 app/features/mec/styling.php:123
837
- #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
838
- #: app/features/mec/styling.php:254 app/features/mec/wizard.php:276
839
- #: app/features/mec/wizard.php:359 app/features/mec/wizard.php:380
840
- #: app/features/mec/wizard.php:498 app/features/organizers.php:273
841
- #: app/features/popup/event.php:126 app/features/popup/event.php:173
842
- #: app/skins/single.php:1146 app/skins/single/default.php:208
843
- #: app/skins/single/default.php:445 app/skins/single/m1.php:224
844
- #: app/skins/single/m2.php:148 app/skins/single/modern.php:178
 
845
  msgid "Read More"
846
  msgstr "Číst více"
847
 
848
- #: app/features/events.php:673 app/features/fes/form.php:341
849
  #, fuzzy
850
  #| msgid "Timezone: %s"
851
  msgid "Timezone"
852
  msgstr "Časové pásmo: %s"
853
 
854
- #: app/features/events.php:678 app/features/events.php:691
855
- #: app/features/events.php:1616 app/features/events.php:1626
856
- #: app/features/events.php:1647 app/features/events.php:1669
857
- #: app/features/events.php:2122 app/features/events.php:2254
858
- #: app/features/events.php:2440 app/features/fes/form.php:346
859
  #: app/features/fes/form.php:359
860
  msgid "Inherit from global options"
861
  msgstr "Zdědí z globálních možností"
862
 
863
- #: app/features/events.php:687 app/features/events.php:690
864
  #: app/features/fes/form.php:355 app/features/fes/form.php:358
865
  #, fuzzy
866
  #| msgid "Countdown View"
867
  msgid "Countdown Method"
868
  msgstr "Zobrazení odpočítávání"
869
 
870
- #: app/features/events.php:692 app/features/fes/form.php:360
871
  #, fuzzy
872
  #| msgid "On Event Start"
873
  msgid "Count to Event Start"
874
  msgstr "Při spuštění události"
875
 
876
- #: app/features/events.php:693 app/features/fes/form.php:361
877
  #, fuzzy
878
  #| msgid "On Event End"
879
  msgid "Count to Event End"
880
  msgstr "Na konci události"
881
 
882
- #: app/features/events.php:699 app/features/fes/form.php:368
883
  #: app/modules/weather/darksky.php:57
884
  msgid "Visibility"
885
  msgstr "Viditelnost"
886
 
887
- #: app/features/events.php:702 app/features/fes/form.php:371
888
- #: app/features/mec/settings.php:832 app/features/mec/settings.php:836
889
  #, fuzzy
890
  #| msgid "Visibility"
891
  msgid "Event Visibility"
892
  msgstr "Viditelnost"
893
 
894
- #: app/features/events.php:703 app/features/fes/form.php:372
895
  #, fuzzy
896
  #| msgid "Booking Style"
897
  msgid "Show on Shortcodes"
898
  msgstr "Styl rezervace"
899
 
900
- #: app/features/events.php:704 app/features/fes/form.php:373
901
  #, fuzzy
902
  #| msgid "Shortcodes"
903
  msgid "Hide on Shortcodes"
904
  msgstr "Zkrácené kódy"
905
 
906
- #: app/features/events.php:711 app/features/fes/form.php:381
907
  msgid "Repeating"
908
  msgstr "Opakování"
909
 
910
- #: app/features/events.php:720
911
  msgid "Event Repeating (Recurring events)"
912
  msgstr "Opakování události (opakující se události)"
913
 
914
- #: app/features/events.php:724 app/features/fes/form.php:387
915
  msgid "Repeats"
916
  msgstr "Opakování"
917
 
918
- #: app/features/events.php:732 app/features/fes/form.php:389
919
- #: app/features/mec.php:1437 app/skins/default_full_calendar/tpl.php:77
920
  #: app/skins/full_calendar/tpl.php:125
921
  msgid "Daily"
922
  msgstr "Děnně"
923
 
924
- #: app/features/events.php:739 app/features/fes/form.php:390
925
  msgid "Every Weekday"
926
  msgstr "Každý všední den"
927
 
928
- #: app/features/events.php:746 app/features/fes/form.php:391
929
  msgid "Every Weekend"
930
  msgstr "Každý víkend"
931
 
932
- #: app/features/events.php:753 app/features/fes/form.php:392
933
  msgid "Certain Weekdays"
934
  msgstr "Určité pracovní dny"
935
 
936
- #: app/features/events.php:760 app/features/fes/form.php:393
937
  #: app/skins/default_full_calendar/tpl.php:76
938
  #: app/skins/full_calendar/tpl.php:124
939
  msgid "Weekly"
940
  msgstr "Týdně"
941
 
942
- #: app/features/events.php:767 app/features/fes/form.php:394
943
- #: app/features/mec.php:1438 app/skins/default_full_calendar/tpl.php:75
944
  #: app/skins/full_calendar/tpl.php:123
945
  msgid "Monthly"
946
  msgstr "Měsíčně"
947
 
948
- #: app/features/events.php:774 app/features/fes/form.php:395
949
- #: app/features/mec.php:1439 app/skins/default_full_calendar/tpl.php:74
950
  #: app/skins/full_calendar/tpl.php:122
951
  msgid "Yearly"
952
  msgstr "Ročně"
953
 
954
- #: app/features/events.php:781 app/features/fes/form.php:396
955
  msgid "Custom Days"
956
  msgstr "Vlastní dny"
957
 
958
- #: app/features/events.php:788 app/features/fes/form.php:397
959
  msgid "Advanced"
960
  msgstr "Pokročilé"
961
 
962
- #: app/features/events.php:793 app/features/fes/form.php:401
963
  msgid "Repeat Interval"
964
  msgstr "Interval opakování"
965
 
966
- #: app/features/events.php:795 app/features/fes/form.php:402
967
  msgid "Repeat interval"
968
  msgstr "Interval opakování"
969
 
970
- #: app/features/events.php:799 app/features/fes/form.php:405
971
  msgid "Week Days"
972
  msgstr "Dny v týdnu"
973
 
974
- #: app/features/events.php:816
975
  #, fuzzy
976
  #| msgid "Pro version of Modern Events Calendar"
977
  msgid ""
@@ -979,8 +982,8 @@ msgid ""
979
  "Calendar."
980
  msgstr "Pro verze doplňku Modern Events Calendar"
981
 
982
- #: app/features/events.php:822 app/features/events.php:1882
983
- #: app/features/events.php:1910 app/features/events.php:2064
984
  #: app/features/fes/form.php:419 app/features/ix/import_f_calendar.php:42
985
  #: app/features/ix/import_g_calendar.php:51
986
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
@@ -988,20 +991,20 @@ msgstr "Pro verze doplňku Modern Events Calendar"
988
  msgid "Start"
989
  msgstr "Začátek"
990
 
991
- #: app/features/events.php:835 app/features/events.php:1280
992
- #: app/features/events.php:1866 app/features/events.php:2053
993
- #: app/features/events.php:2133 app/features/events.php:2266
994
- #: app/features/fes/form.php:449 app/features/fes/form.php:983
995
- #: app/features/occurrences.php:114 app/features/organizers.php:324
996
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:120
997
  msgid "Add"
998
  msgstr "Přidat"
999
 
1000
- #: app/features/events.php:838 app/features/fes/form.php:452
1001
  msgid "Custom Days Repeating"
1002
  msgstr "Opakování vlastních dnů"
1003
 
1004
- #: app/features/events.php:841 app/features/fes/form.php:455
1005
  #, fuzzy
1006
  #| msgid ""
1007
  #| "Add certain days to event occurrence dates. If you have single day event, "
@@ -1016,56 +1019,56 @@ msgstr ""
1016
  "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
1017
  "datum zahájení a ukončení musí odpovídat počátečnímu datu."
1018
 
1019
- #: app/features/events.php:852 app/features/events.php:1886
1020
- #: app/features/events.php:1914 app/features/events.php:2068
1021
  #: app/features/fes/form.php:434 app/libraries/skins.php:1309
1022
  msgid "End"
1023
  msgstr "Konec"
1024
 
1025
- #: app/features/events.php:929 app/features/fes/form.php:528
1026
  msgid "First"
1027
  msgstr "První"
1028
 
1029
- #: app/features/events.php:971 app/features/fes/form.php:570
1030
  msgid "Second"
1031
  msgstr "Druhá"
1032
 
1033
- #: app/features/events.php:1013 app/features/fes/form.php:612
1034
  msgid "Third"
1035
  msgstr "Třetí"
1036
 
1037
- #: app/features/events.php:1055 app/features/fes/form.php:654
1038
  msgid "Fourth"
1039
  msgstr "Čtvrtá"
1040
 
1041
- #: app/features/events.php:1097 app/features/fes/form.php:696
1042
  msgid "Last"
1043
  msgstr "Poslední"
1044
 
1045
- #: app/features/events.php:1144 app/features/fes/form.php:742
1046
  msgid "Ends Repeat"
1047
  msgstr "Ukončení opakování"
1048
 
1049
- #: app/features/events.php:1156 app/features/fes/form.php:746
1050
  msgid "Never"
1051
  msgstr "Nikdy"
1052
 
1053
  # Možná Zapnuto
1054
- #: app/features/events.php:1168 app/features/fes/form.php:751
1055
  msgid "On"
1056
  msgstr "Na"
1057
 
1058
- #: app/features/events.php:1184 app/features/fes/form.php:758
1059
  #: app/features/mec/booking.php:157
1060
  msgid "After"
1061
  msgstr "Po"
1062
 
1063
- #: app/features/events.php:1188 app/features/events.php:1192
1064
  #: app/features/fes/form.php:760 app/features/fes/form.php:763
1065
  msgid "Occurrences times"
1066
  msgstr "Časy výskytu"
1067
 
1068
- #: app/features/events.php:1193
1069
  #, fuzzy
1070
  #| msgid ""
1071
  #| "The event will finish after certain repeats. For example if you set it to "
@@ -1077,51 +1080,121 @@ msgstr ""
1077
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
1078
  "hodnotu 10, událost skončí po 10 opakováních."
1079
 
1080
- #: app/features/events.php:1209 app/features/fes/form.php:777
1081
  #, fuzzy
1082
  #| msgid "Next Occurrence of Other Events"
1083
  msgid "Show only one occurrence of this event"
1084
  msgstr "Další výskyt dalších událostí"
1085
 
1086
- #: app/features/events.php:1230 app/features/events.php:3728
1087
- #: app/features/fes/form.php:853 app/features/ix.php:4088
1088
- #: app/features/ix.php:4130 app/features/mec/meta_boxes/search_form.php:94
1089
  #: app/features/mec/meta_boxes/search_form.php:182
1090
  #: app/features/mec/meta_boxes/search_form.php:270
1091
  #: app/features/mec/meta_boxes/search_form.php:358
1092
  #: app/features/mec/meta_boxes/search_form.php:445
1093
  #: app/features/mec/meta_boxes/search_form.php:532
1094
  #: app/features/mec/meta_boxes/search_form.php:619
1095
- #: app/features/mec/meta_boxes/search_form.php:692
1096
- #: app/features/mec/meta_boxes/search_form.php:779
1097
- #: app/features/mec/meta_boxes/search_form.php:866
1098
- #: app/features/mec/meta_boxes/search_form.php:989
1099
- #: app/features/mec/settings.php:808 app/libraries/main.php:6653
1100
- #: app/libraries/main.php:6702 app/widgets/single.php:105
 
 
 
 
 
 
 
 
 
 
1101
  msgid "Event Cost"
1102
  msgstr "Cena události"
1103
 
1104
- #: app/features/events.php:1267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1105
  msgid "Exceptional Days (Exclude Dates)"
1106
  msgstr "Výjimečné dny (vyjma dat)"
1107
 
1108
- #: app/features/events.php:1273 app/features/events.php:1283
1109
  msgid "Exclude certain days"
1110
  msgstr "Vyloučit určité dny"
1111
 
1112
- #: app/features/events.php:1278 app/features/events.php:2486
1113
- #: app/features/events.php:2575 app/features/fes.php:243
1114
  #: app/features/mec/booking.php:665 app/features/mec/booking.php:761
1115
- #: app/features/mec/single.php:242 app/features/profile/profile.php:36
1116
- #: app/features/wc.php:83 app/libraries/main.php:3542
1117
  #: app/libraries/skins.php:1242 app/modules/booking/steps/tickets.php:127
1118
  #: app/modules/next-event/details.php:143 app/skins/single.php:1119
1119
- #: app/skins/single/default.php:147 app/skins/single/default.php:387
1120
- #: app/skins/single/m1.php:21 app/skins/single/modern.php:212
1121
  msgid "Date"
1122
  msgstr "Datum"
1123
 
1124
- #: app/features/events.php:1284
1125
  msgid ""
1126
  "Exclude certain days from event occurrence dates. Please note that you can "
1127
  "exclude only single day occurrences and you cannot exclude one day from "
@@ -1131,27 +1204,27 @@ msgstr ""
1131
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
1132
  "vícedenních výskytů."
1133
 
1134
- #: app/features/events.php:1342 app/libraries/render.php:559
1135
  msgid "Day 1"
1136
  msgstr "Den 1"
1137
 
1138
- #: app/features/events.php:1386 app/features/fes/form.php:827
1139
- #: app/features/mec/settings.php:802
1140
  msgid "Event Links"
1141
  msgstr "Odkazy na událost"
1142
 
1143
- #: app/features/events.php:1389 app/features/events.php:1397
1144
- #: app/features/fes/form.php:829 app/features/mec/settings.php:1043
1145
- #: app/libraries/main.php:6651 app/libraries/main.php:6700
1146
  msgid "Event Link"
1147
  msgstr "Odkaz na událost"
1148
 
1149
- #: app/features/events.php:1392 app/features/events.php:1410
1150
  #: app/features/fes/form.php:830 app/features/fes/form.php:835
1151
  msgid "eg. http://yoursite.com/your-event"
1152
  msgstr "např. http://yoursite.com/vase-udalost"
1153
 
1154
- #: app/features/events.php:1398
1155
  #, fuzzy
1156
  #| msgid ""
1157
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1166,34 +1239,34 @@ msgstr ""
1166
  "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
1167
  "URL, můžete také použít zkracovač URL"
1168
 
1169
- #: app/features/events.php:1400
1170
  msgid "URL Shortener"
1171
  msgstr "Zkracovač URL"
1172
 
1173
- #: app/features/events.php:1407 app/features/events.php:1420
1174
- #: app/features/fes/form.php:834 app/libraries/main.php:6652
1175
- #: app/libraries/main.php:6701 app/skins/single.php:1145
1176
- #: app/skins/single/default.php:207 app/skins/single/default.php:444
1177
  #: app/skins/single/m1.php:223 app/skins/single/m2.php:147
1178
- #: app/skins/single/modern.php:177 app/widgets/single.php:109
1179
  msgid "More Info"
1180
  msgstr "Více info"
1181
 
1182
- #: app/features/events.php:1413 app/features/fes/form.php:836
1183
  msgid "More Information"
1184
  msgstr "Více informací"
1185
 
1186
- #: app/features/events.php:1415 app/features/fes/form.php:838
1187
- #: app/features/mec.php:1036 app/features/popup/shortcode.php:477
1188
  msgid "Current Window"
1189
  msgstr "Aktuální okno"
1190
 
1191
- #: app/features/events.php:1416 app/features/fes/form.php:839
1192
- #: app/features/mec.php:1037 app/features/popup/shortcode.php:481
1193
  msgid "New Window"
1194
  msgstr "Nové okno"
1195
 
1196
- #: app/features/events.php:1421 app/features/fes/form.php:841
1197
  msgid ""
1198
  "If you fill it, it will be shown in event details page as an optional link. "
1199
  "Insert full link including http(s)://"
@@ -1201,53 +1274,53 @@ msgstr ""
1201
  "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
1202
  "o události. Vložte celý odkaz včetně http (s): //"
1203
 
1204
- #: app/features/events.php:1444 app/features/mec/settings.php:883
1205
  msgid "Booking Options"
1206
  msgstr "Možnosti rezervace"
1207
 
1208
- #: app/features/events.php:1445 app/features/events.php:1658
1209
- #: app/features/mec/settings.php:920
1210
  #, fuzzy
1211
  #| msgid "Total user booking limits"
1212
  msgid "Total User Booking Limits"
1213
  msgstr "Celkové limity rezervace uživatelů"
1214
 
1215
- #: app/features/events.php:1446 app/features/events.php:1714
1216
- #: app/libraries/book.php:63 app/libraries/main.php:6656
1217
  #: app/modules/booking/steps/tickets.php:159
1218
  #: app/modules/booking/steps/tickets.php:165
1219
  msgid "Tickets"
1220
  msgstr "Vstupenky"
1221
 
1222
- #: app/features/events.php:1448 app/features/events.php:2110
1223
  msgid "Fees"
1224
  msgstr "Poplatky"
1225
 
1226
- #: app/features/events.php:1451 app/features/events.php:2242
1227
- #: app/features/mec/settings.php:950
1228
  msgid "Ticket Variations / Options"
1229
  msgstr "Varianty vstupenky / možnosti"
1230
 
1231
- #: app/features/events.php:1455 app/features/mec/booking.php:926
1232
  #: app/features/mec/support-page.php:118
1233
  msgid "Organizer Payment"
1234
  msgstr "Platba organizátora"
1235
 
1236
- #: app/features/events.php:1522 app/features/events.php:1536
1237
  #, fuzzy
1238
  #| msgid "Total booking limits"
1239
  msgid "Total booking limit"
1240
  msgstr "Celkové limity rezervace"
1241
 
1242
- #: app/features/events.php:1533 app/features/events.php:1832
1243
- #: app/features/events.php:2019 app/modules/booking/default.php:99
1244
  #: app/modules/booking/steps/tickets.php:159
1245
  #: app/modules/booking/steps/tickets.php:165
1246
  #: app/skins/available_spot/tpl.php:131
1247
  msgid "Unlimited"
1248
  msgstr "Neomezené"
1249
 
1250
- #: app/features/events.php:1539
1251
  msgid ""
1252
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1253
  "limitation number."
@@ -1255,59 +1328,59 @@ msgstr ""
1255
  "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1256
  "políčka a zadejte číslo omezení."
1257
 
1258
- #: app/features/events.php:1541
1259
  msgid "Read About A Booking System"
1260
  msgstr "Přečtěte si o rezervačním systému"
1261
 
1262
- #: app/features/events.php:1549
1263
  msgid "100"
1264
  msgstr "100"
1265
 
1266
- #: app/features/events.php:1554
1267
  #, fuzzy
1268
  #| msgid "Discount"
1269
  msgid "Discount per user roles"
1270
  msgstr "Sleva"
1271
 
1272
- #: app/features/events.php:1560
1273
  msgid "5"
1274
  msgstr ""
1275
 
1276
- #: app/features/events.php:1566 app/features/events.php:1580
1277
- #: app/features/mec/settings.php:902
1278
  #, fuzzy
1279
  #| msgid "Next Occurrence"
1280
  msgid "Book All Occurrences"
1281
  msgstr "Další výskyt"
1282
 
1283
- #: app/features/events.php:1577
1284
  msgid "Sell all occurrences by one booking"
1285
  msgstr ""
1286
 
1287
- #: app/features/events.php:1583
1288
  msgid ""
1289
  "If you have a series of events and you want to sell all of them at once, "
1290
  "this option is for you! For example a weekly yoga course or something "
1291
  "similar."
1292
  msgstr ""
1293
 
1294
- #: app/features/events.php:1594 app/features/mec/booking.php:130
1295
- #: app/features/mec/settings.php:908
1296
  #, fuzzy
1297
  #| msgid "General Options"
1298
  msgid "Interval Options"
1299
  msgstr "Obecné možnosti"
1300
 
1301
- #: app/features/events.php:1596 app/features/events.php:1601
1302
  #: app/features/mec/booking.php:132 app/features/mec/booking.php:137
1303
  msgid "Show Booking Form Interval"
1304
  msgstr "Zobrazit Interval rezervačního formuláře"
1305
 
1306
- #: app/features/events.php:1598 app/features/mec/booking.php:134
1307
  msgid "Minutes (e.g 5)"
1308
  msgstr "Minuty (např. 5)"
1309
 
1310
- #: app/features/events.php:1602 app/features/mec/booking.php:138
1311
  #, fuzzy
1312
  #| msgid ""
1313
  #| "You can show booking form only at certain time before event start. If you "
@@ -1322,17 +1395,17 @@ msgstr ""
1322
  "Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
1323
  "minut před zahájením akce!"
1324
 
1325
- #: app/features/events.php:1611 app/features/mec/settings.php:914
1326
  msgid "Automatic Approval"
1327
  msgstr ""
1328
 
1329
- #: app/features/events.php:1613 app/features/notifications.php:169
1330
  #, fuzzy
1331
  #| msgid "Email verification"
1332
  msgid "Email Verification"
1333
  msgstr "Ověřovací email"
1334
 
1335
- #: app/features/events.php:1617 app/features/events.php:1627
1336
  #: app/features/mec/booking.php:177 app/features/mec/booking.php:244
1337
  #: app/features/mec/booking.php:259 app/features/mec/booking.php:863
1338
  #: app/features/mec/booking.php:890
@@ -1411,97 +1484,100 @@ msgstr "Ověřovací email"
1411
  #: app/features/mec/meta_boxes/search_form.php:613
1412
  #: app/features/mec/meta_boxes/search_form.php:621
1413
  #: app/features/mec/meta_boxes/search_form.php:628
1414
- #: app/features/mec/meta_boxes/search_form.php:642
1415
  #: app/features/mec/meta_boxes/search_form.php:650
1416
  #: app/features/mec/meta_boxes/search_form.php:658
1417
- #: app/features/mec/meta_boxes/search_form.php:665
1418
- #: app/features/mec/meta_boxes/search_form.php:672
1419
- #: app/features/mec/meta_boxes/search_form.php:679
1420
- #: app/features/mec/meta_boxes/search_form.php:686
1421
  #: app/features/mec/meta_boxes/search_form.php:694
1422
- #: app/features/mec/meta_boxes/search_form.php:701
1423
- #: app/features/mec/meta_boxes/search_form.php:708
1424
- #: app/features/mec/meta_boxes/search_form.php:715
1425
- #: app/features/mec/meta_boxes/search_form.php:729
1426
  #: app/features/mec/meta_boxes/search_form.php:737
1427
  #: app/features/mec/meta_boxes/search_form.php:745
1428
- #: app/features/mec/meta_boxes/search_form.php:752
1429
- #: app/features/mec/meta_boxes/search_form.php:759
1430
- #: app/features/mec/meta_boxes/search_form.php:766
1431
- #: app/features/mec/meta_boxes/search_form.php:773
1432
  #: app/features/mec/meta_boxes/search_form.php:781
1433
- #: app/features/mec/meta_boxes/search_form.php:788
1434
- #: app/features/mec/meta_boxes/search_form.php:795
1435
- #: app/features/mec/meta_boxes/search_form.php:802
1436
- #: app/features/mec/meta_boxes/search_form.php:816
1437
  #: app/features/mec/meta_boxes/search_form.php:824
1438
  #: app/features/mec/meta_boxes/search_form.php:832
1439
- #: app/features/mec/meta_boxes/search_form.php:839
1440
- #: app/features/mec/meta_boxes/search_form.php:846
1441
- #: app/features/mec/meta_boxes/search_form.php:853
1442
- #: app/features/mec/meta_boxes/search_form.php:860
1443
  #: app/features/mec/meta_boxes/search_form.php:868
1444
- #: app/features/mec/meta_boxes/search_form.php:875
1445
- #: app/features/mec/meta_boxes/search_form.php:882
1446
- #: app/features/mec/meta_boxes/search_form.php:889
1447
- #: app/features/mec/meta_boxes/search_form.php:939
1448
  #: app/features/mec/meta_boxes/search_form.php:947
1449
  #: app/features/mec/meta_boxes/search_form.php:955
1450
- #: app/features/mec/meta_boxes/search_form.php:962
1451
- #: app/features/mec/meta_boxes/search_form.php:969
1452
- #: app/features/mec/meta_boxes/search_form.php:976
1453
- #: app/features/mec/meta_boxes/search_form.php:983
1454
  #: app/features/mec/meta_boxes/search_form.php:991
1455
- #: app/features/mec/meta_boxes/search_form.php:998
1456
- #: app/features/mec/meta_boxes/search_form.php:1005
1457
- #: app/features/mec/meta_boxes/search_form.php:1012
 
1458
  #: app/features/mec/modules.php:115 app/features/mec/settings.php:98
1459
- #: app/features/mec/settings.php:501 app/features/mec/wizard.php:556
 
1460
  msgid "Disabled"
1461
  msgstr "Zakázaný"
1462
 
1463
- #: app/features/events.php:1618 app/features/events.php:1628
1464
  #: app/features/mec/booking.php:176 app/features/mec/booking.php:243
1465
  #: app/features/mec/booking.php:260 app/features/mec/booking.php:862
1466
  #: app/features/mec/booking.php:891 app/features/mec/modules.php:155
1467
- #: app/features/mec/settings.php:99 app/features/mec/wizard.php:555
 
1468
  msgid "Enabled"
1469
  msgstr "Povoleno"
1470
 
1471
- #: app/features/events.php:1623 app/features/mec/booking.php:395
1472
- #: app/features/mec/notifications.php:338 app/features/notifications.php:163
1473
- #: app/libraries/main.php:648
1474
  msgid "Booking Confirmation"
1475
  msgstr "Potvrzení rezervace"
1476
 
1477
- #: app/features/events.php:1636 app/features/mec/booking.php:279
1478
- #: app/features/mec/settings.php:926
1479
  #, fuzzy
1480
  #| msgid "Ticket"
1481
  msgid "Last Few Tickets Percentage"
1482
  msgstr "Vstupenka"
1483
 
1484
- #: app/features/events.php:1649
1485
  msgid "15"
1486
  msgstr ""
1487
 
1488
- #: app/features/events.php:1672
1489
  msgid "12"
1490
  msgstr "12"
1491
 
1492
- #: app/features/events.php:1679
1493
  #, fuzzy
1494
  #| msgid "Payment Gateways"
1495
  msgid "Disabled Gateways"
1496
  msgstr "Platební brány"
1497
 
1498
- #: app/features/events.php:1680
1499
  msgid ""
1500
  "You can disable some of the following payment gateways by checking them "
1501
  "otherwise they will be enabled."
1502
  msgstr ""
1503
 
1504
- #: app/features/events.php:1717
1505
  msgid ""
1506
  "You're translating an event so MEC will use the original event for tickets "
1507
  "and booking. You can only translate the ticket name and description. Please "
@@ -1511,74 +1587,75 @@ msgstr ""
1511
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1512
  "definujte určité vstupenky, které jste definovali v původní události."
1513
 
1514
- #: app/features/events.php:1722
1515
  #, fuzzy
1516
  #| msgid "Ticket"
1517
  msgid "Add Ticket"
1518
  msgstr "Vstupenka"
1519
 
1520
- #: app/features/events.php:1734 app/features/events.php:1934
1521
  #, fuzzy
1522
  #| msgid "Ticket"
1523
  msgid "Ticket ID"
1524
  msgstr "Vstupenka"
1525
 
1526
- #: app/features/events.php:1734 app/features/events.php:1934
1527
- #: app/features/events.php:3728 app/features/fes.php:243
1528
- #: app/features/ix.php:4088 app/features/ix.php:4130
1529
  #: app/features/labels.php:179 app/features/locations.php:262
1530
  #: app/features/organizers.php:203 app/features/speakers.php:281
1531
  msgid "ID"
1532
  msgstr "ID"
1533
 
1534
- #: app/features/events.php:1737 app/features/events.php:1937
1535
  msgid "Ticket Name"
1536
  msgstr "Název vstupenky"
1537
 
1538
- #: app/features/events.php:1742 app/features/events.php:1941
1539
- #: app/features/events.php:3728 app/features/ix.php:4088
1540
- #: app/features/ix.php:4130 app/libraries/skins.php:1323
1541
  msgid "Start Time"
1542
  msgstr "Začátek"
1543
 
1544
- #: app/features/events.php:1755 app/features/events.php:1954
1545
- #: app/features/events.php:3728 app/features/ix.php:4088
1546
- #: app/features/ix.php:4130 app/libraries/skins.php:1324
1547
  msgid "End Time"
1548
  msgstr "Konec"
1549
 
1550
- #: app/features/events.php:1771 app/features/events.php:1969
1551
- #: app/features/events.php:3728 app/libraries/hourlyschedule.php:66
1552
  #: app/libraries/hourlyschedule.php:87 app/libraries/hourlyschedule.php:132
1553
  msgid "Description"
1554
  msgstr "Popis"
1555
 
1556
- #: app/features/events.php:1776 app/features/events.php:1779
1557
- #: app/features/events.php:1973 app/features/events.php:1976
 
1558
  #, fuzzy
1559
  #| msgid "Description"
1560
  msgid "Private Description"
1561
  msgstr "Popis"
1562
 
1563
- #: app/features/events.php:1780 app/features/events.php:1977
1564
  #, php-format
1565
  msgid ""
1566
  "You can show it on the email notifications by placing "
1567
  "%%ticket_private_description%% into the email template."
1568
  msgstr ""
1569
 
1570
- #: app/features/events.php:1788 app/features/events.php:1792
1571
- #: app/features/events.php:1890 app/features/events.php:1917
1572
- #: app/features/events.php:1985 app/features/events.php:1988
1573
- #: app/features/events.php:2070 app/features/events.php:2287
1574
- #: app/features/events.php:2291 app/features/events.php:2333
1575
- #: app/features/events.php:2336 app/features/mec/booking.php:566
1576
  #: app/features/mec/booking.php:569 app/features/mec/booking.php:598
1577
  #: app/features/mec/booking.php:601 app/modules/booking/steps/checkout.php:63
1578
  msgid "Price"
1579
  msgstr "Cena"
1580
 
1581
- #: app/features/events.php:1793 app/features/events.php:1989
1582
  #, fuzzy
1583
  #| msgid "Insert 0 for free ticket. Only numbers please."
1584
  msgid ""
@@ -1586,60 +1663,60 @@ msgid ""
1586
  "any symbols or characters."
1587
  msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1588
 
1589
- #: app/features/events.php:1802 app/features/events.php:1807
1590
- #: app/features/events.php:1998 app/features/events.php:2001
1591
  msgid "Price Label"
1592
  msgstr "Cenový štítek"
1593
 
1594
- #: app/features/events.php:1808 app/features/events.php:2002
1595
  msgid "For showing on website. e.g. $15"
1596
  msgstr "Pro zobrazení na webu. např. 15 $"
1597
 
1598
- #: app/features/events.php:1819 app/features/events.php:2013
1599
  msgid "Available Tickets"
1600
  msgstr "Dostupné vstupenky"
1601
 
1602
- #: app/features/events.php:1838 app/features/events.php:2025
1603
  #, fuzzy
1604
  #| msgid "Maximum Per Ticket"
1605
  msgid "Minimum Ticket e.g. 3"
1606
  msgstr "Maximum na jednu vstupenku"
1607
 
1608
- #: app/features/events.php:1841 app/features/events.php:2028
1609
  #, fuzzy
1610
  #| msgid "Maximum Per Ticket"
1611
  msgid "MinimumTicket"
1612
  msgstr "Maximum na jednu vstupenku"
1613
 
1614
- #: app/features/events.php:1843 app/features/events.php:2030
1615
  msgid "Set a number for the minimum ticket reservation possible"
1616
  msgstr ""
1617
 
1618
- #: app/features/events.php:1852 app/features/events.php:2039
1619
  msgid "e.g. 0"
1620
  msgstr ""
1621
 
1622
- #: app/features/events.php:1854 app/features/events.php:2041
1623
  #, fuzzy
1624
  #| msgid "Days"
1625
  msgid "Day"
1626
  msgstr "Dny"
1627
 
1628
- #: app/features/events.php:1855 app/features/events.php:2042
1629
  msgid "Hour"
1630
  msgstr ""
1631
 
1632
- #: app/features/events.php:1857 app/features/events.php:2044
1633
  #, php-format
1634
  msgid "Stop selling ticket %s before event start."
1635
  msgstr ""
1636
 
1637
- #: app/features/events.php:1864 app/features/events.php:2051
1638
  msgid "Price per Date"
1639
  msgstr "Cena za datum"
1640
 
1641
- #: app/features/events.php:1894 app/features/events.php:1920
1642
- #: app/features/events.php:2072 app/features/labels.php:60
1643
  #: app/features/mec/meta_boxes/display_options.php:1590
1644
  #: app/features/mec/meta_boxes/search_form.php:79
1645
  #: app/features/mec/meta_boxes/search_form.php:167
@@ -1648,50 +1725,50 @@ msgstr "Cena za datum"
1648
  #: app/features/mec/meta_boxes/search_form.php:430
1649
  #: app/features/mec/meta_boxes/search_form.php:517
1650
  #: app/features/mec/meta_boxes/search_form.php:604
1651
- #: app/features/mec/meta_boxes/search_form.php:677
1652
- #: app/features/mec/meta_boxes/search_form.php:764
1653
- #: app/features/mec/meta_boxes/search_form.php:851
1654
- #: app/features/mec/meta_boxes/search_form.php:974
1655
- #: app/features/mec/settings.php:1046 app/features/mec/settings.php:1138
1656
- #: app/features/mec/single.php:403 app/features/mec/single.php:445
1657
  #: app/features/mec/wizard.php:436 app/features/mec/wizard.php:475
1658
  #: app/features/search.php:98 app/libraries/skins.php:1213
1659
  msgid "Label"
1660
  msgstr "Štítek"
1661
 
1662
- #: app/features/events.php:1896 app/features/events.php:1922
1663
- #: app/features/events.php:2074 app/features/events.php:2173
1664
- #: app/features/events.php:2209 app/features/events.php:2316
1665
- #: app/features/events.php:2358 app/features/mec/booking.php:505
1666
  #: app/features/mec/booking.php:534 app/features/mec/booking.php:585
1667
- #: app/features/mec/booking.php:617 app/features/organizers.php:324
1668
- #: app/features/organizers.php:333 app/libraries/hourlyschedule.php:53
1669
  #: app/libraries/hourlyschedule.php:67 app/libraries/hourlyschedule.php:88
1670
  #: app/libraries/hourlyschedule.php:116 app/libraries/hourlyschedule.php:133
1671
- #: app/libraries/main.php:3374 app/libraries/main.php:3404
1672
- #: app/libraries/main.php:3433 app/libraries/main.php:3462
1673
- #: app/libraries/main.php:3492 app/libraries/main.php:3522
1674
- #: app/libraries/main.php:3551 app/libraries/main.php:3581
1675
- #: app/libraries/main.php:3611 app/libraries/main.php:3633
1676
- #: app/libraries/main.php:3664 app/libraries/main.php:3711
1677
- #: app/libraries/main.php:3765 app/libraries/main.php:3815
1678
- #: app/libraries/main.php:3855
1679
  msgid "Remove"
1680
  msgstr "Odstranit"
1681
 
1682
- #: app/features/events.php:2147 app/features/events.php:2185
1683
  #: app/features/mec/booking.php:485 app/features/mec/booking.php:514
1684
  msgid "Fee Title"
1685
  msgstr "Název poplatku"
1686
 
1687
- #: app/features/events.php:2153 app/features/events.php:2157
1688
- #: app/features/events.php:2190 app/features/events.php:2193
1689
  #: app/features/mec/booking.php:489 app/features/mec/booking.php:492
1690
  #: app/features/mec/booking.php:518 app/features/mec/booking.php:521
1691
  msgid "Amount"
1692
  msgstr "Množství"
1693
 
1694
- #: app/features/events.php:2158 app/features/events.php:2194
1695
  #: app/features/mec/booking.php:493 app/features/mec/booking.php:522
1696
  msgid ""
1697
  "Fee amount, considered as fixed amount if you set the type to amount "
@@ -1700,25 +1777,25 @@ msgstr ""
1700
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1701
  "odpovídající procentuální hodnotě"
1702
 
1703
- #: app/features/events.php:2167 app/features/events.php:2203
1704
  #: app/features/mec/booking.php:500 app/features/mec/booking.php:529
1705
  msgid "Percent"
1706
  msgstr "Procent"
1707
 
1708
- #: app/features/events.php:2168 app/features/events.php:2204
1709
  #: app/features/mec/booking.php:501 app/features/mec/booking.php:530
1710
  msgid "Amount (Per Ticket)"
1711
  msgstr "Částka (za vstupenku)"
1712
 
1713
- #: app/features/events.php:2169 app/features/events.php:2205
1714
  #: app/features/mec/booking.php:502 app/features/mec/booking.php:531
1715
  msgid "Amount (Per Booking)"
1716
  msgstr "Částka (za rezervaci)"
1717
 
1718
- #: app/features/events.php:2281 app/features/events.php:2328
1719
- #: app/features/events.php:3521 app/features/events.php:3728
1720
- #: app/features/fes/form.php:260 app/features/ix.php:4088
1721
- #: app/features/ix.php:4130 app/features/mec/booking.php:562
1722
  #: app/features/mec/booking.php:594 app/features/mec/styling.php:134
1723
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1724
  #: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:111
@@ -1726,26 +1803,26 @@ msgstr "Částka (za rezervaci)"
1726
  msgid "Title"
1727
  msgstr "Název"
1728
 
1729
- #: app/features/events.php:2292 app/features/events.php:2337
1730
  #: app/features/mec/booking.php:570 app/features/mec/booking.php:602
1731
  msgid "Option Price"
1732
  msgstr "Možnosti ceny"
1733
 
1734
- #: app/features/events.php:2302 app/features/events.php:2306
1735
- #: app/features/events.php:2346 app/features/events.php:2349
1736
  #: app/features/mec/booking.php:576 app/features/mec/booking.php:579
1737
  #: app/features/mec/booking.php:608 app/features/mec/booking.php:611
1738
  msgid "Maximum Per Ticket"
1739
  msgstr "Maximum na jednu vstupenku"
1740
 
1741
- #: app/features/events.php:2307 app/features/events.php:2350
1742
  #: app/features/mec/booking.php:580 app/features/mec/booking.php:612
1743
  #, fuzzy
1744
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1745
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1746
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1747
 
1748
- #: app/features/events.php:2426
1749
  #, fuzzy
1750
  #| msgid ""
1751
  #| "You're translating an event so MEC will use the original event for "
@@ -1761,50 +1838,50 @@ msgstr ""
1761
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1762
  "definujte určité vstupenky, které jste definovali v původní události."
1763
 
1764
- #: app/features/events.php:2452 app/features/mec/booking.php:628
1765
  #, fuzzy
1766
  #| msgid "Attendees Limit"
1767
  msgid "Per Attendee Fields"
1768
  msgstr "Limit účastníků"
1769
 
1770
- #: app/features/events.php:2482 app/features/mec/booking.php:661
1771
- #: app/libraries/main.php:3395
1772
  msgid "MEC Name"
1773
  msgstr "MEC Jméno"
1774
 
1775
- #: app/features/events.php:2483 app/features/mec/booking.php:662
1776
- #: app/libraries/main.php:3424
1777
  msgid "MEC Email"
1778
  msgstr "MEC Email"
1779
 
1780
- #: app/features/events.php:2484 app/features/events.php:2573
1781
  #: app/features/mec/booking.php:663 app/features/mec/booking.php:759
1782
- #: app/features/mec/single.php:239 app/libraries/main.php:3365
1783
  #: app/libraries/skins.php:1330
1784
  msgid "Text"
1785
  msgstr "Text"
1786
 
1787
- #: app/features/events.php:2487 app/features/events.php:2576
1788
  #: app/features/mec/booking.php:666 app/features/mec/booking.php:762
1789
- #: app/features/mec/single.php:243 app/features/organizers.php:103
1790
  #: app/features/organizers.php:148 app/features/speakers.php:119
1791
  #: app/features/speakers.php:200 app/features/speakers.php:284
1792
- #: app/libraries/main.php:3572
1793
  msgid "Tel"
1794
  msgstr "Tel"
1795
 
1796
- #: app/features/events.php:2488 app/features/mec/booking.php:667
1797
- #: app/libraries/main.php:3513
1798
  msgid "File"
1799
  msgstr "Soubor"
1800
 
1801
- #: app/features/events.php:2489 app/features/events.php:2577
1802
  #: app/features/mec/booking.php:668 app/features/mec/booking.php:763
1803
- #: app/features/mec/single.php:244 app/libraries/main.php:3602
1804
  msgid "Textarea"
1805
  msgstr "Plocha textu"
1806
 
1807
- #: app/features/events.php:2490 app/features/events.php:2578
1808
  #: app/features/mec/booking.php:669 app/features/mec/booking.php:764
1809
  #: app/features/mec/meta_boxes/search_form.php:46
1810
  #: app/features/mec/meta_boxes/search_form.php:134
@@ -1813,21 +1890,21 @@ msgstr "Plocha textu"
1813
  #: app/features/mec/meta_boxes/search_form.php:397
1814
  #: app/features/mec/meta_boxes/search_form.php:484
1815
  #: app/features/mec/meta_boxes/search_form.php:571
1816
- #: app/features/mec/meta_boxes/search_form.php:644
1817
- #: app/features/mec/meta_boxes/search_form.php:731
1818
- #: app/features/mec/meta_boxes/search_form.php:818
1819
- #: app/features/mec/meta_boxes/search_form.php:941
1820
- #: app/features/mec/single.php:246 app/libraries/main.php:3655
1821
  msgid "Checkboxes"
1822
  msgstr "Zatržítko"
1823
 
1824
- #: app/features/events.php:2491 app/features/events.php:2579
1825
  #: app/features/mec/booking.php:670 app/features/mec/booking.php:765
1826
- #: app/features/mec/single.php:247 app/libraries/main.php:3702
1827
  msgid "Radio Buttons"
1828
  msgstr "Přepínače"
1829
 
1830
- #: app/features/events.php:2492 app/features/events.php:2580
1831
  #: app/features/mec/booking.php:125 app/features/mec/booking.php:671
1832
  #: app/features/mec/booking.php:766
1833
  #: app/features/mec/meta_boxes/search_form.php:45
@@ -1875,83 +1952,88 @@ msgstr "Přepínače"
1875
  #: app/features/mec/meta_boxes/search_form.php:593
1876
  #: app/features/mec/meta_boxes/search_form.php:600
1877
  #: app/features/mec/meta_boxes/search_form.php:607
1878
- #: app/features/mec/meta_boxes/search_form.php:643
1879
  #: app/features/mec/meta_boxes/search_form.php:651
1880
  #: app/features/mec/meta_boxes/search_form.php:659
1881
- #: app/features/mec/meta_boxes/search_form.php:666
1882
- #: app/features/mec/meta_boxes/search_form.php:673
1883
- #: app/features/mec/meta_boxes/search_form.php:680
1884
- #: app/features/mec/meta_boxes/search_form.php:702
1885
- #: app/features/mec/meta_boxes/search_form.php:730
1886
  #: app/features/mec/meta_boxes/search_form.php:738
1887
  #: app/features/mec/meta_boxes/search_form.php:746
1888
- #: app/features/mec/meta_boxes/search_form.php:753
1889
- #: app/features/mec/meta_boxes/search_form.php:760
1890
- #: app/features/mec/meta_boxes/search_form.php:767
1891
- #: app/features/mec/meta_boxes/search_form.php:789
1892
- #: app/features/mec/meta_boxes/search_form.php:817
1893
  #: app/features/mec/meta_boxes/search_form.php:825
1894
  #: app/features/mec/meta_boxes/search_form.php:833
1895
- #: app/features/mec/meta_boxes/search_form.php:840
1896
- #: app/features/mec/meta_boxes/search_form.php:847
1897
- #: app/features/mec/meta_boxes/search_form.php:854
1898
- #: app/features/mec/meta_boxes/search_form.php:876
1899
- #: app/features/mec/meta_boxes/search_form.php:940
1900
  #: app/features/mec/meta_boxes/search_form.php:948
1901
  #: app/features/mec/meta_boxes/search_form.php:956
1902
- #: app/features/mec/meta_boxes/search_form.php:963
1903
- #: app/features/mec/meta_boxes/search_form.php:970
1904
- #: app/features/mec/meta_boxes/search_form.php:977
1905
- #: app/features/mec/meta_boxes/search_form.php:999
1906
- #: app/features/mec/single.php:248 app/features/mec/wizard.php:546
1907
- #: app/libraries/main.php:3749
 
1908
  msgid "Dropdown"
1909
  msgstr "Rozbalovací"
1910
 
1911
- #: app/features/events.php:2493 app/features/events.php:2581
1912
  #: app/features/mec/booking.php:672 app/features/mec/booking.php:767
1913
- #: app/libraries/main.php:3806
1914
  msgid "Agreement"
1915
  msgstr "Smlouva"
1916
 
1917
- #: app/features/events.php:2494 app/features/events.php:2582
1918
  #: app/features/mec/booking.php:673 app/features/mec/booking.php:768
1919
- #: app/features/mec/single.php:245 app/libraries/main.php:3632
1920
  msgid "Paragraph"
1921
  msgstr "Paragraf"
1922
 
1923
- #: app/features/events.php:2543 app/features/mec/booking.php:726
1924
  #, fuzzy
1925
  #| msgid "Required Field"
1926
  msgid "Fixed Fields"
1927
  msgstr "Požadovaná pole"
1928
 
1929
- #: app/features/events.php:3424 app/features/events.php:3442
1930
- #: app/features/events.php:3460 app/features/events.php:3478
 
 
 
 
 
1931
  #, php-format
1932
  msgid "Show all %s"
1933
  msgstr "Ukázat všechny %s"
1934
 
1935
- #: app/features/events.php:3424
1936
  msgid "labels"
1937
  msgstr "štítky"
1938
 
1939
- #: app/features/events.php:3442
1940
  msgid "locations"
1941
  msgstr "umístění"
1942
 
1943
- #: app/features/events.php:3460
1944
  msgid "organizers"
1945
  msgstr "organizátoři"
1946
 
1947
- #: app/features/events.php:3494
1948
  #, fuzzy
1949
  #| msgid "Attendees Limit"
1950
  msgid "Attendees List"
1951
  msgstr "Limit účastníků"
1952
 
1953
- #: app/features/events.php:3523 app/features/events.php:3728
1954
- #: app/features/ix.php:4088 app/features/ix.php:4130
1955
  #: app/features/locations.php:58 app/features/locations.php:263
1956
  #: app/features/locations.php:323 app/features/locations.php:325
1957
  #: app/features/locations.php:334
@@ -1963,67 +2045,67 @@ msgstr "Limit účastníků"
1963
  #: app/features/mec/meta_boxes/search_form.php:401
1964
  #: app/features/mec/meta_boxes/search_form.php:488
1965
  #: app/features/mec/meta_boxes/search_form.php:575
1966
- #: app/features/mec/meta_boxes/search_form.php:648
1967
- #: app/features/mec/meta_boxes/search_form.php:735
1968
- #: app/features/mec/meta_boxes/search_form.php:822
1969
- #: app/features/mec/meta_boxes/search_form.php:945
1970
- #: app/features/mec/settings.php:1112 app/features/mec/single.php:393
1971
- #: app/features/mec/single.php:435 app/features/mec/wizard.php:426
1972
  #: app/features/mec/wizard.php:465 app/features/popup/event.php:116
1973
  #: app/features/popup/event.php:125 app/features/search.php:74
1974
- #: app/libraries/main.php:2735 app/libraries/main.php:6621
1975
- #: app/libraries/main.php:6675 app/libraries/skins.php:1097
1976
  #: app/skins/single.php:962 app/skins/single.php:1416
1977
- #: app/skins/single/default.php:244 app/skins/single/default.php:483
1978
  #: app/skins/single/m1.php:174 app/skins/single/m2.php:97
1979
- #: app/skins/single/modern.php:126
1980
  msgid "Location"
1981
  msgstr "Umístění"
1982
 
1983
- #: app/features/events.php:3529
1984
  #, fuzzy
1985
  #| msgid "Tickets"
1986
  msgid "Sold Tickets"
1987
  msgstr "Vstupenky"
1988
 
1989
- #: app/features/events.php:3531
1990
  msgid "Repeat"
1991
  msgstr "Opakovat"
1992
 
1993
- #: app/features/events.php:3665 app/features/events.php:3666
1994
  #, fuzzy
1995
  #| msgid "iCal Export"
1996
  msgid "iCal / Outlook Export"
1997
  msgstr "iCal Export"
1998
 
1999
- #: app/features/events.php:3668 app/features/events.php:3669
2000
  msgid "CSV Export"
2001
  msgstr "CSV Export"
2002
 
2003
- #: app/features/events.php:3671 app/features/events.php:3672
2004
  msgid "MS Excel Export"
2005
  msgstr "MS Excel Export"
2006
 
2007
- #: app/features/events.php:3674 app/features/events.php:3675
2008
  msgid "XML Export"
2009
  msgstr "XML Export"
2010
 
2011
- #: app/features/events.php:3677 app/features/events.php:3678
2012
  msgid "JSON Export"
2013
  msgstr "JSON Export"
2014
 
2015
- #: app/features/events.php:3680 app/features/events.php:3681
2016
- #: app/features/events.php:3837
2017
  msgid "Duplicate"
2018
  msgstr "Duplikát"
2019
 
2020
- #: app/features/events.php:3728 app/features/ix.php:4088
2021
- #: app/features/ix.php:4130
2022
  msgid "Link"
2023
  msgstr "Odkaz"
2024
 
2025
- #: app/features/events.php:3728 app/features/ix.php:4088
2026
- #: app/features/ix.php:4130 app/features/locations.php:110
2027
  #: app/features/locations.php:180 app/features/locations.php:264
2028
  #: app/features/mec/meta_boxes/search_form.php:86
2029
  #: app/features/mec/meta_boxes/search_form.php:174
@@ -2032,56 +2114,56 @@ msgstr "Odkaz"
2032
  #: app/features/mec/meta_boxes/search_form.php:437
2033
  #: app/features/mec/meta_boxes/search_form.php:524
2034
  #: app/features/mec/meta_boxes/search_form.php:611
2035
- #: app/features/mec/meta_boxes/search_form.php:684
2036
- #: app/features/mec/meta_boxes/search_form.php:771
2037
- #: app/features/mec/meta_boxes/search_form.php:858
2038
- #: app/features/mec/meta_boxes/search_form.php:981 app/libraries/skins.php:1344
2039
  msgid "Address"
2040
  msgstr "Adresa"
2041
 
2042
- #: app/features/events.php:3728
2043
  #, php-format
2044
  msgid "%s Tel"
2045
  msgstr "%s Tel"
2046
 
2047
- #: app/features/events.php:3728
2048
  #, php-format
2049
  msgid "%s Email"
2050
  msgstr "%s Email"
2051
 
2052
  # v kontextu
2053
- #: app/features/events.php:3728 app/features/fes/form.php:870
2054
- #: app/features/mec/settings.php:814
2055
  msgid "Featured Image"
2056
  msgstr "Hlavní obrázek"
2057
 
2058
- #: app/features/events.php:4057 app/features/fes.php:243
2059
- #: app/features/profile/profile.php:155 app/libraries/main.php:2819
2060
- #: app/libraries/main.php:6655
2061
  msgid "Ticket"
2062
  msgstr "Vstupenka"
2063
 
2064
- #: app/features/events.php:4060 app/features/profile/profile.php:158
2065
  msgid "Variations"
2066
  msgstr "Variace"
2067
 
2068
- #: app/features/events.php:4075 app/features/fes.php:317
2069
  msgid "Unknown"
2070
  msgstr "Neznámý"
2071
 
2072
- #: app/features/events.php:4101
2073
  msgid ""
2074
  "If you want to send an email, first select your attendees and then click in "
2075
  "the button below, please."
2076
  msgstr ""
2077
 
2078
- #: app/features/events.php:4101 app/features/mec/report.php:58
2079
  #, fuzzy
2080
  #| msgid "Organizer Email"
2081
  msgid "Send Email"
2082
  msgstr "Organizátor Email"
2083
 
2084
- #: app/features/events.php:4105
2085
  #, fuzzy
2086
  #| msgid "Attendees Form"
2087
  msgid "No Attendees Found!"
@@ -2129,8 +2211,8 @@ msgstr "Událost byla odebrána!"
2129
  msgid "Order Time"
2130
  msgstr "Konec"
2131
 
2132
- #: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2767
2133
- #: app/libraries/main.php:2882
2134
  msgid "Transaction ID"
2135
  msgstr "ID transakce"
2136
 
@@ -2138,7 +2220,7 @@ msgstr "ID transakce"
2138
  msgid "Total Price"
2139
  msgstr "Celková cena"
2140
 
2141
- #: app/features/fes.php:243 app/libraries/main.php:2877
2142
  #, fuzzy
2143
  #| msgid "Payment Gateways"
2144
  msgid "Gateway"
@@ -2208,13 +2290,13 @@ msgstr "Zadejte alespoň 3 znaky"
2208
  msgid "Please select at-least one label!"
2209
  msgstr "Vyberte události, které chcete importovat!"
2210
 
2211
- #: app/features/fes.php:1293
2212
  #, fuzzy
2213
  #| msgid "The event submitted. It will publish as soon as possible."
2214
  msgid "Event submitted. It will publish as soon as possible."
2215
  msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
2216
 
2217
- #: app/features/fes.php:1294
2218
  msgid "The event published."
2219
  msgstr "Událost byla publikována."
2220
 
@@ -2222,8 +2304,8 @@ msgstr "Událost byla publikována."
2222
  msgid "Go back to events list"
2223
  msgstr "Přejít zpět na seznam událostí"
2224
 
2225
- #: app/features/fes/form.php:268 app/features/mec/settings.php:965
2226
- #: app/features/mec/settings.php:1041
2227
  msgid "Excerpt"
2228
  msgstr ""
2229
 
@@ -2301,7 +2383,7 @@ msgstr "Údaje uživatele"
2301
  msgid "eg. yourname@gmail.com"
2302
  msgstr "např. vasejmeno@gmail.com"
2303
 
2304
- #: app/features/fes/form.php:813 app/features/organizers.php:281
2305
  #: app/features/popup/event.php:183
2306
  msgid "eg. John Smith"
2307
  msgstr "např. Jan Novák"
@@ -2318,51 +2400,51 @@ msgstr ""
2318
  "Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
2319
  "Vložte celý odkaz včetně http (s): //"
2320
 
2321
- #: app/features/fes/form.php:875
2322
  msgid "Remove Image"
2323
  msgstr "Odebrat obrázek"
2324
 
2325
- #: app/features/fes/form.php:911 app/features/labels.php:61
2326
- #: app/features/labels.php:223 app/features/mec.php:477
2327
  #: app/features/mec/meta_boxes/filter.php:72
2328
- #: app/features/mec/meta_boxes/filter.php:134 app/libraries/main.php:6618
2329
- #: app/libraries/main.php:6672 app/skins/single.php:1175
2330
- #: app/skins/single/default.php:222 app/skins/single/default.php:459
2331
- #: app/skins/single/m1.php:76 app/skins/single/modern.php:267
2332
  msgid "Labels"
2333
  msgstr "Štítky"
2334
 
2335
- #: app/features/fes/form.php:957 app/features/mec.php:475
2336
  #: app/features/mec/meta_boxes/filter.php:73
2337
  #: app/features/mec/meta_boxes/filter.php:152 app/features/tag.php:59
2338
  msgid "Tags"
2339
  msgstr "Tagy"
2340
 
2341
- #: app/features/fes/form.php:959
2342
  msgid "Insert your desired tags, comma separated."
2343
  msgstr "Vložte požadované tagy oddělené čárkami."
2344
 
2345
- #: app/features/fes/form.php:979 app/features/mec.php:484
2346
- #: app/features/mec/modules.php:43 app/features/mec/settings.php:869
2347
  #: app/features/mec/wizard.php:497 app/features/speakers.php:61
2348
  #: app/libraries/hourlyschedule.php:70 app/libraries/hourlyschedule.php:91
2349
- #: app/libraries/hourlyschedule.php:136 app/libraries/main.php:626
2350
- #: app/libraries/main.php:6624 app/libraries/main.php:6678
2351
  #: app/modules/speakers/details.php:18
2352
  msgid "Speakers"
2353
  msgstr "Řečníci"
2354
 
2355
- #: app/features/fes/form.php:981
2356
  msgid "Speakers Names"
2357
  msgstr "Jméno řečníka"
2358
 
2359
- #: app/features/fes/form.php:982
2360
  #, fuzzy
2361
  #| msgid "Separate names with commas Similar Justin, Cris"
2362
  msgid "Separate names with commas: Justin, Chris"
2363
  msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
2364
 
2365
- #: app/features/fes/form.php:1023 app/modules/booking/steps/form.php:352
2366
  msgid "Submit"
2367
  msgstr "Potvrdit"
2368
 
@@ -2400,131 +2482,131 @@ msgid "MEC - Import / Export"
2400
  msgstr "MEC Import / Export"
2401
 
2402
  #: app/features/ix.php:107 app/features/mec/support.php:73
2403
- #: app/libraries/main.php:881
2404
  msgid "Import / Export"
2405
  msgstr "Import / Export"
2406
 
2407
- #: app/features/ix.php:208 app/features/ix.php:212 app/features/ix.php:226
2408
  #, fuzzy
2409
  #| msgid "Please upload the feed file."
2410
  msgid "Please upload a CSV file."
2411
  msgstr "Nahrajte prosím zdrojový soubor."
2412
 
2413
- #: app/features/ix.php:221 app/features/ix.php:443
2414
  msgid "An error occurred during the file upload! Please check permissions!"
2415
  msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
2416
 
2417
- #: app/features/ix.php:277 app/libraries/main.php:6903
2418
- #: app/libraries/main.php:6923
2419
  msgid "Confirmed"
2420
  msgstr "Potvrzeno"
2421
 
2422
- #: app/features/ix.php:278 app/libraries/main.php:6904
2423
- #: app/libraries/main.php:6931
2424
  msgid "Rejected"
2425
  msgstr "Odmítnuto"
2426
 
2427
- #: app/features/ix.php:282 app/features/mec/booking.php:1033
2428
  #: app/features/mec/booking.php:1055 app/features/mec/modules.php:441
2429
- #: app/features/mec/modules.php:463 app/features/mec/notifications.php:1605
2430
- #: app/features/mec/notifications.php:1627 app/features/mec/settings.php:1477
2431
- #: app/features/mec/settings.php:1499 app/features/mec/single.php:509
2432
- #: app/features/mec/single.php:531 app/libraries/main.php:6951
2433
  msgid "Verified"
2434
  msgstr "Ověřeno"
2435
 
2436
- #: app/features/ix.php:283 app/features/labels.php:118
2437
- #: app/features/labels.php:144 app/libraries/main.php:6952
2438
  msgid "Canceled"
2439
  msgstr "Zrušená"
2440
 
2441
- #: app/features/ix.php:418
2442
  #, fuzzy
2443
  #| msgid "The events are imported successfully!"
2444
  msgid "The bookings are imported successfully!"
2445
  msgstr "Události byly úspěšně importovány!"
2446
 
2447
- #: app/features/ix.php:418
2448
  #, fuzzy
2449
  #| msgid "No bookings found!"
2450
  msgid "No bookings found to import!"
2451
  msgstr "Nebyly nalezeny žádné rezervace!"
2452
 
2453
- #: app/features/ix.php:426
2454
  msgid "Please upload the feed file."
2455
  msgstr "Nahrajte prosím zdrojový soubor."
2456
 
2457
- #: app/features/ix.php:431 app/features/ix.php:448
2458
  #, fuzzy
2459
  #| msgid "Please upload the feed file."
2460
  msgid "Please upload an XML or an ICS file."
2461
  msgstr "Nahrajte prosím zdrojový soubor."
2462
 
2463
- #: app/features/ix.php:434
2464
  msgid "The file type should be XML or ICS."
2465
  msgstr "Typ souboru by měl být XML nebo ICS."
2466
 
2467
- #: app/features/ix.php:457
2468
  msgid "The events are imported successfully!"
2469
  msgstr "Události byly úspěšně importovány!"
2470
 
2471
- #: app/features/ix.php:1228
2472
  msgid "Third Party plugin is not installed and activated!"
2473
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
2474
 
2475
- #: app/features/ix.php:1252
2476
  msgid "Third Party plugin is invalid!"
2477
  msgstr "Plugin třetí strany je neplatný!"
2478
 
2479
- #: app/features/ix.php:3227 app/features/ix.php:3288
2480
  #, fuzzy
2481
  #| msgid "Both of API key and Calendar ID are required!"
2482
  msgid "API key and Calendar ID are required!"
2483
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
2484
 
2485
- #: app/features/ix.php:3283 app/features/ix.php:3768 app/features/ix.php:4506
2486
  #, fuzzy
2487
  #| msgid "Please select some events to import!"
2488
  msgid "Please select events to import!"
2489
  msgstr "Vyberte události, které chcete importovat!"
2490
 
2491
- #: app/features/ix.php:3710 app/features/ix.php:3773
2492
  #, fuzzy
2493
  #| msgid "Both of API key and Group URL are required!"
2494
  msgid "API key and Group URL are required!"
2495
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
2496
 
2497
- #: app/features/ix.php:4012
2498
  msgid "Check at Meetup"
2499
  msgstr "Ověřit Meetup"
2500
 
2501
- #: app/features/ix.php:4088 app/features/ix.php:4130
2502
  msgid "Organizer Tel"
2503
  msgstr "Organizátor Tel"
2504
 
2505
- #: app/features/ix.php:4088 app/features/ix.php:4130
2506
  msgid "Organizer Email"
2507
  msgstr "Organizátor Email"
2508
 
2509
  # Client Secret dle kontextu
2510
- #: app/features/ix.php:4206
2511
  #, fuzzy
2512
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2513
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2514
  msgstr ""
2515
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
2516
 
2517
- #: app/features/ix.php:4229
2518
  #, fuzzy, php-format
2519
  #| msgid "All seems good! Please click %s for authenticating your app."
2520
  msgid "All seems good! Please click %s to authenticate your app."
2521
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
2522
 
2523
- #: app/features/ix.php:4229 app/features/mec/settings.php:1364
2524
  msgid "here"
2525
  msgstr ""
2526
 
2527
- #: app/features/ix.php:4283
2528
  #, fuzzy
2529
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2530
  msgid "Client App, Client Secret, and Calendar ID are all required!"
@@ -2532,28 +2614,28 @@ msgstr ""
2532
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
2533
  "povinné!"
2534
 
2535
- #: app/features/ix.php:4428
2536
  #, fuzzy, php-format
2537
  #| msgid "%s events added to Google Calendar successfully."
2538
  msgid "%s events added to Google Calendar with success."
2539
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
2540
 
2541
- #: app/features/ix.php:4429
2542
  #, fuzzy, php-format
2543
  #| msgid "%s previously added events get updated."
2544
  msgid "%s Updated previously added events."
2545
  msgstr "% s dříve přidané události byly aktualizovány."
2546
 
2547
- #: app/features/ix.php:4430
2548
  #, php-format
2549
  msgid "%s events failed to add for following reasons: %s"
2550
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
2551
 
2552
- #: app/features/ix.php:4462
2553
  msgid "Please insert your Facebook page's link."
2554
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
2555
 
2556
- #: app/features/ix.php:4473 app/features/ix.php:4515
2557
  #, fuzzy
2558
  #| msgid ""
2559
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2565,7 +2647,7 @@ msgstr ""
2565
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
2566
  "poskytněte nám platný odkaz na stránku Facebooku."
2567
 
2568
- #: app/features/ix.php:4510
2569
  msgid "Please insert your facebook page's link."
2570
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
2571
 
@@ -2701,8 +2783,8 @@ msgid "Calendar ID"
2701
  msgstr "ID kalendáře"
2702
 
2703
  #: app/features/ix/export_g_calendar.php:48
2704
- #: app/features/ix/export_g_calendar.php:106
2705
- #: app/features/ix/export_g_calendar.php:121
2706
  msgid "Authenticate"
2707
  msgstr "Ověření"
2708
 
@@ -2728,23 +2810,36 @@ msgid "Toggle"
2728
  msgstr "Přepnout"
2729
 
2730
  #: app/features/ix/export_g_calendar.php:72
2731
- #: app/features/ix/export_g_calendar.php:151
2732
- #: app/features/ix/export_g_calendar.php:166
2733
- #: app/features/mec/notifications.php:182
2734
- #: app/features/mec/notifications.php:327
2735
- #: app/features/mec/notifications.php:488
2736
- #: app/features/mec/notifications.php:663
2737
- #: app/features/mec/notifications.php:1284 app/features/notifications.php:141
 
 
 
 
 
 
 
 
 
 
 
 
 
2738
  msgid "Add to Google Calendar"
2739
  msgstr "Přidat do Google kalendáře"
2740
 
2741
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1035
2742
- #: app/features/mec/modules.php:443 app/features/mec/notifications.php:1607
2743
- #: app/features/mec/settings.php:1479 app/features/mec/single.php:511
2744
  msgid "Checking ..."
2745
  msgstr "Ověřování ..."
2746
 
2747
- #: app/features/ix/export_g_calendar.php:138
2748
  msgid "Exporting ..."
2749
  msgstr "Exportování ..."
2750
 
@@ -2886,12 +2981,6 @@ msgstr ""
2886
  msgid "Event Title: %s"
2887
  msgstr "Název události: %s"
2888
 
2889
- #: app/features/ix/import_f_calendar.php:72
2890
- #: app/features/ix/import_g_calendar.php:87
2891
- #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:67
2892
- msgid "Import Options"
2893
- msgstr "Možnosti importu"
2894
-
2895
  #: app/features/ix/import_f_calendar.php:76
2896
  #: app/features/ix/import_g_calendar.php:97
2897
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:84
@@ -3021,9 +3110,9 @@ msgstr "%s je vyžadováno pro použití vlastností synchronizace."
3021
  msgid "Auto Google Import"
3022
  msgstr "Auto Google Import"
3023
 
3024
- #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
3025
- #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
3026
- #: app/features/mec/notifications.php:1141
3027
  msgid "Important Note"
3028
  msgstr "Důležitá poznámka"
3029
 
@@ -3040,7 +3129,7 @@ msgstr ""
3040
  msgid "Auto Google Export"
3041
  msgstr "Auto Google Export"
3042
 
3043
- #: app/features/ix/sync.php:41
3044
  #, php-format
3045
  msgid ""
3046
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
@@ -3049,11 +3138,11 @@ msgstr ""
3049
  "Chcete-li zavolat % s soubor alespoň jednou za den, nastavte odkaz, jinak "
3050
  "nebude proveden export událostí vašich webových stránek do Kalendáře Google."
3051
 
3052
- #: app/features/ix/sync.php:49
3053
  msgid "Auto Facebook Import"
3054
  msgstr "Auto Facebook Import"
3055
 
3056
- #: app/features/ix/sync.php:52
3057
  #, php-format
3058
  msgid ""
3059
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
@@ -3062,11 +3151,11 @@ msgstr ""
3062
  "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
3063
  "nebude importovat události z Facebooku."
3064
 
3065
- #: app/features/ix/sync.php:60
3066
  msgid "Auto Meetup Import"
3067
  msgstr "Auto Meetup Import"
3068
 
3069
- #: app/features/ix/sync.php:63
3070
  #, php-format
3071
  msgid ""
3072
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
@@ -3075,11 +3164,11 @@ msgstr ""
3075
  "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
3076
  "nebude importovat události z Meetup."
3077
 
3078
- #: app/features/ix/sync.php:67
3079
  msgid "Auto set cronjobs (Once Daily)"
3080
  msgstr "Automatické nastavení cronových úloh (jednou denně)"
3081
 
3082
- #: app/features/ix/sync.php:68
3083
  #, fuzzy
3084
  #| msgid ""
3085
  #| "First you need to enable above options for each to be able to use this."
@@ -3088,7 +3177,7 @@ msgid ""
3088
  msgstr ""
3089
  "Nejprve je nutné povolit výše uvedené možnosti, aby bylo možné toto použít."
3090
 
3091
- #: app/features/ix/sync.php:69
3092
  #, fuzzy
3093
  #| msgid ""
3094
  #| "If you cannot set Cron Job on your server, you can use the options below. "
@@ -3103,19 +3192,19 @@ msgstr ""
3103
  "možnosti. Nezapomeňte NEPOUŽÍVAT následující možnosti a nastavit je na "
3104
  "serveru ručně společně."
3105
 
3106
- #: app/features/ix/sync.php:73
3107
  msgid "Google import"
3108
  msgstr "Google import"
3109
 
3110
- #: app/features/ix/sync.php:78
3111
  msgid "Google export"
3112
  msgstr "Google export"
3113
 
3114
- #: app/features/ix/sync.php:83
3115
  msgid "Meetup import"
3116
  msgstr "Meetup Import"
3117
 
3118
- #: app/features/ix/sync.php:90 app/features/mec/wizard.php:735
3119
  msgid "Save"
3120
  msgstr "Uložit"
3121
 
@@ -3238,10 +3327,10 @@ msgstr "Slug"
3238
  msgid "Event %s"
3239
  msgstr "Událost %s"
3240
 
3241
- #: app/features/locations.php:59 app/features/mec.php:478
3242
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
3243
- #: app/features/mec/meta_boxes/filter.php:98 app/libraries/main.php:6620
3244
- #: app/libraries/main.php:6674
3245
  msgid "Locations"
3246
  msgstr "Umístění"
3247
 
@@ -3306,7 +3395,7 @@ msgstr "Název místa"
3306
  msgid "eg. City Hall"
3307
  msgstr "např. Radnice"
3308
 
3309
- #: app/features/locations.php:346 app/features/mec/settings.php:857
3310
  #: app/features/popup/event.php:143 app/widgets/single.php:117
3311
  msgid "Event Location"
3312
  msgstr "Místo události"
@@ -3337,7 +3426,7 @@ msgstr ""
3337
  msgid "Get Latitude and Longitude"
3338
  msgstr "Získejte šířku a délku"
3339
 
3340
- #: app/features/locations.php:386 app/features/organizers.php:299
3341
  #: app/features/popup/event.php:202
3342
  msgid "Choose image"
3343
  msgstr "Vyberte obrázek"
@@ -3346,8 +3435,8 @@ msgstr "Vyberte obrázek"
3346
  msgid "Don't show map in single event page"
3347
  msgstr "Nezobrazovat mapu na jednostránkové události"
3348
 
3349
- #: app/features/locations.php:403 app/libraries/main.php:6658
3350
- #: app/libraries/main.php:6705
3351
  msgid "Other Locations"
3352
  msgstr "Další místa"
3353
 
@@ -3376,7 +3465,7 @@ msgstr ""
3376
  msgid "Forgot Password?"
3377
  msgstr ""
3378
 
3379
- #: app/features/mec.php:212
3380
  #, fuzzy
3381
  #| msgid ""
3382
  #| "Activation faild. Please check your purchase code or license type."
@@ -3389,21 +3478,21 @@ msgstr ""
3389
  "<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
3390
  "</b>"
3391
 
3392
- #: app/features/mec.php:212 app/features/mec/support-page.php:136
3393
  msgid "Troubleshooting"
3394
  msgstr "Odstraňování problémů"
3395
 
3396
- #: app/features/mec.php:300
3397
  #, fuzzy
3398
  #| msgid "Select Type"
3399
  msgid "Select Date"
3400
  msgstr "Vyberte typ"
3401
 
3402
- #: app/features/mec.php:304 app/skins/masonry.php:260
3403
  msgid "All"
3404
  msgstr "Vše"
3405
 
3406
- #: app/features/mec.php:346
3407
  #, fuzzy
3408
  #| msgid ""
3409
  #| "Your options is not in JSON format. Please insert correct options in this "
@@ -3415,211 +3504,221 @@ msgstr ""
3415
  "Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
3416
  "a zkuste to znovu."
3417
 
3418
- #: app/features/mec.php:353
3419
  msgid "Your options field can not be empty!"
3420
  msgstr "Pole možností nemůže být prázdné!"
3421
 
3422
- #: app/features/mec.php:359
3423
  msgid "Your options imported successfuly."
3424
  msgstr "Vaše možnosti byly úspěšně importovány."
3425
 
3426
- #: app/features/mec.php:458
3427
  msgid "MEC - Support"
3428
  msgstr "MEC - podpora"
3429
 
3430
- #: app/features/mec.php:458 app/features/mec/support-page.php:9
3431
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
3432
  msgid "Support"
3433
  msgstr "Podpora"
3434
 
3435
- #: app/features/mec.php:479 app/features/mec/dashboard.php:288
3436
  #: app/features/mec/meta_boxes/filter.php:71
3437
  #: app/features/mec/meta_boxes/filter.php:116 app/features/organizers.php:59
3438
- #: app/libraries/main.php:6622 app/libraries/main.php:6676
3439
  msgid "Organizers"
3440
  msgstr "Organizátoři"
3441
 
3442
- #: app/features/mec.php:487 app/features/mec.php:538
3443
  #: app/features/mec/dashboard.php:274
3444
  msgid "Shortcodes"
3445
  msgstr "Zkrácené kódy"
3446
 
3447
- #: app/features/mec.php:488
3448
  msgid "MEC - Settings"
3449
  msgstr "MEC - Nastavení"
3450
 
3451
- #: app/features/mec.php:489
3452
  msgid "MEC - Addons"
3453
  msgstr "MEC - doplňky"
3454
 
3455
- #: app/features/mec.php:489 app/features/mec/addons.php:11
3456
  msgid "Addons"
3457
  msgstr "Doplňky"
3458
 
3459
- #: app/features/mec.php:494
3460
  #, fuzzy
3461
  #| msgid "MEC - Support"
3462
  msgid "MEC - Report"
3463
  msgstr "MEC - podpora"
3464
 
3465
- #: app/features/mec.php:494
3466
  #, fuzzy
3467
  #| msgid "Export"
3468
  msgid "Report"
3469
  msgstr "Export"
3470
 
3471
- #: app/features/mec.php:497
3472
  #, fuzzy
3473
  #| msgid "MEC - Support"
3474
  msgid "MEC - Go Pro"
3475
  msgstr "MEC - podpora"
3476
 
3477
- #: app/features/mec.php:497 app/features/mec.php:1316
3478
  #: app/features/mec/go-pro.php:9
3479
  msgid "Go Pro"
3480
  msgstr ""
3481
 
3482
- #: app/features/mec.php:540
3483
  msgid "Add Shortcode"
3484
  msgstr "Přidat zkrácený kód"
3485
 
3486
- #: app/features/mec.php:541
3487
  msgid "Add New Shortcode"
3488
  msgstr "Přidat nový zkrácený kód"
3489
 
3490
- #: app/features/mec.php:542
3491
  msgid "No shortcodes found!"
3492
  msgstr "Nebyly nalezeny žádné zkrácené kódy!"
3493
 
3494
- #: app/features/mec.php:543
3495
  msgid "All Shortcodes"
3496
  msgstr "Všechny zkrácené kódy"
3497
 
3498
- #: app/features/mec.php:544
3499
  msgid "Edit shortcodes"
3500
  msgstr "Editace zkrácených kódů"
3501
 
3502
- #: app/features/mec.php:545
3503
  msgid "No shortcodes found in Trash!"
3504
  msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
3505
 
3506
- #: app/features/mec.php:598
3507
  msgid "Display Options"
3508
  msgstr "Zobrazit možnosti"
3509
 
3510
- #: app/features/mec.php:599
3511
  msgid "Filter Options"
3512
  msgstr "Filtrovat možnosti"
3513
 
3514
- #: app/features/mec.php:601
3515
  msgid "Search Form"
3516
  msgstr "Vyhledávací formulář"
3517
 
3518
- #: app/features/mec.php:1017
3519
  msgid "Display content's images as Popup"
3520
  msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
3521
 
3522
- #: app/features/mec.php:1031 app/features/popup/shortcode.php:473
3523
  msgid "Single Event Display Method"
3524
  msgstr "Metoda zobrazení jedné události"
3525
 
3526
- #: app/features/mec.php:1038 app/features/popup/shortcode.php:485
3527
  #, fuzzy
3528
  #| msgid "Modal 1"
3529
  msgid "Modal Popup"
3530
  msgstr "Modal 1"
3531
 
3532
- #: app/features/mec.php:1039
3533
  #, fuzzy
3534
  #| msgid "Disabled"
3535
  msgid "Disable Link"
3536
  msgstr "Zakázaný"
3537
 
3538
- #: app/features/mec.php:1052
3539
  #, fuzzy
3540
  #| msgid "Booking Options"
3541
  msgid "Booking Button / Icon"
3542
  msgstr "Možnosti rezervace"
3543
 
3544
- #: app/features/mec.php:1065
3545
  #, fuzzy
3546
  #| msgid "Organizers"
3547
  msgid "Display Organizers"
3548
  msgstr "Organizátoři"
3549
 
3550
- #: app/features/mec.php:1222 app/features/mec.php:1395
3551
  msgid "Total Bookings"
3552
  msgstr "Celkový počet rezervací"
3553
 
3554
- #: app/features/mec.php:1238 app/features/mec/dashboard.php:65
3555
  msgid "Modern Events Calendar (Lite)"
3556
  msgstr "Modern Events Calendar (Lite)"
3557
 
3558
- #: app/features/mec.php:1247 app/features/mec/dashboard.php:299
3559
  #: app/features/mec/settings.php:483
3560
  msgid "Upcoming Events"
3561
  msgstr "Nadcházející události"
3562
 
3563
- #: app/features/mec.php:1302
3564
  #, fuzzy
3565
  #| msgid "Update %s"
3566
  msgid "News & Updates"
3567
  msgstr "Aktualizovat %s"
3568
 
3569
- #: app/features/mec.php:1315
3570
  msgid "Blog"
3571
  msgstr ""
3572
 
3573
- #: app/features/mec.php:1315
3574
  msgid "Help"
3575
  msgstr ""
3576
 
3577
- #: app/features/mec.php:1370
3578
  #, fuzzy, php-format
3579
  #| msgid "Total Sells (%s)"
3580
  msgid "Total Sales (%s)"
3581
  msgstr "Celkový prodej %s"
3582
 
3583
- #: app/features/mec.php:1404
3584
  msgid "This Month"
3585
  msgstr "Tento měsíc"
3586
 
3587
- #: app/features/mec.php:1410
3588
  msgid "Last Month"
3589
  msgstr "Minulý měsíc"
3590
 
3591
- #: app/features/mec.php:1416
3592
  msgid "This Year"
3593
  msgstr "Tento rok"
3594
 
3595
- #: app/features/mec.php:1422
3596
  msgid "Last Year"
3597
  msgstr "Minulý rok"
3598
 
3599
- #: app/features/mec.php:1442
3600
  msgid "Bar"
3601
  msgstr "Pruh"
3602
 
3603
- #: app/features/mec.php:1443
3604
  msgid "Line"
3605
  msgstr "Čára"
3606
 
3607
- #: app/features/mec.php:1445
3608
  msgid "Filter"
3609
  msgstr "Filtr"
3610
 
3611
- #: app/features/mec.php:1469
3612
  #, fuzzy
3613
  #| msgid "Modern Events Calendar"
3614
  msgid "Print Calendar"
3615
  msgstr "Moderní kalendář událostí"
3616
 
3617
- #: app/features/mec.php:1484
3618
  #, fuzzy
3619
  #| msgid "Display Event Price"
3620
  msgid "Display Events"
3621
  msgstr "Zobrazit cenu události"
3622
 
 
 
 
 
 
 
 
 
 
 
3623
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:63
3624
  #: app/features/mec/dashboard.php:84 app/features/mec/go-pro.php:14
3625
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
@@ -3656,15 +3755,15 @@ msgstr "Vyhledávání ..."
3656
  #: app/features/mec/modules.php:17 app/features/mec/modules.php:399
3657
  #: app/features/mec/modules.php:409 app/features/mec/modules.php:460
3658
  #: app/features/mec/modules.php:474 app/features/mec/notifications.php:14
3659
- #: app/features/mec/notifications.php:1540
3660
- #: app/features/mec/notifications.php:1552
3661
- #: app/features/mec/notifications.php:1624
3662
- #: app/features/mec/notifications.php:1638 app/features/mec/settings.php:35
3663
- #: app/features/mec/settings.php:1428 app/features/mec/settings.php:1438
3664
- #: app/features/mec/settings.php:1496 app/features/mec/settings.php:1510
3665
- #: app/features/mec/single.php:21 app/features/mec/single.php:476
3666
- #: app/features/mec/single.php:486 app/features/mec/single.php:528
3667
- #: app/features/mec/single.php:542 app/features/mec/styles.php:11
3668
  #: app/features/mec/styles.php:32 app/features/mec/styles.php:42
3669
  #: app/features/mec/styles.php:79 app/features/mec/styles.php:88
3670
  #: app/features/mec/styling.php:37 app/features/mec/styling.php:285
@@ -3917,8 +4016,8 @@ msgid ""
3917
  msgstr ""
3918
 
3919
  #: app/features/mec/booking.php:286 app/features/mec/booking.php:288
3920
- #: app/features/mec/booking.php:298 app/features/mec/settings.php:712
3921
- #: app/features/mec/settings.php:722
3922
  msgid "Thank You Page"
3923
  msgstr "Stránka s poděkováním"
3924
 
@@ -3931,15 +4030,15 @@ msgstr ""
3931
  "vypnout, ponechte ji prázdnou."
3932
 
3933
  #: app/features/mec/booking.php:306 app/features/mec/booking.php:311
3934
- #: app/features/mec/settings.php:745 app/features/mec/settings.php:750
3935
  msgid "Thank You Page Time Interval"
3936
  msgstr "Stránka s poděkováním časového intervalu"
3937
 
3938
- #: app/features/mec/booking.php:308 app/features/mec/settings.php:747
3939
  msgid "2000 mean 2 seconds"
3940
  msgstr "2000 znamená 2 vteřiny"
3941
 
3942
- #: app/features/mec/booking.php:312 app/features/mec/settings.php:751
3943
  msgid ""
3944
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3945
  "2000 means 2 seconds."
@@ -4009,7 +4108,7 @@ msgstr "Automatické ověření pro placené rezervace"
4009
  msgid "Send confirmation email in auto confirmation mode"
4010
  msgstr ""
4011
 
4012
- #: app/features/mec/booking.php:432 app/libraries/main.php:616
4013
  #, fuzzy
4014
  #| msgid "Booking Style"
4015
  msgid "Booking Shortcode"
@@ -4049,7 +4148,7 @@ msgstr ""
4049
  "novou nabídku na řídícím panelu > Rezervace"
4050
 
4051
  #: app/features/mec/booking.php:466 app/features/mec/booking.php:854
4052
- #: app/libraries/main.php:618
4053
  msgid "Taxes / Fees"
4054
  msgstr "Daně / poplatky"
4055
 
@@ -4061,7 +4160,7 @@ msgstr "Povolit modul daní / poplatků"
4061
  msgid "Add Fee"
4062
  msgstr "Přidat poplatek"
4063
 
4064
- #: app/features/mec/booking.php:543 app/libraries/main.php:619
4065
  msgid "Ticket Variations & Options"
4066
  msgstr "Varianty a možnosti vstupenek"
4067
 
@@ -4227,22 +4326,22 @@ msgstr ""
4227
  "údaje pro povolené brány pro události a přijímat platby přímo!"
4228
 
4229
  #: app/features/mec/booking.php:1030 app/features/mec/messages.php:78
4230
- #: app/features/mec/modules.php:438 app/features/mec/notifications.php:1602
4231
- #: app/features/mec/settings.php:1474 app/features/mec/single.php:506
4232
  #: app/features/mec/styles.php:62 app/features/mec/styling.php:340
4233
  msgid "Saved"
4234
  msgstr "Uloženo"
4235
 
4236
  #: app/features/mec/booking.php:1031 app/features/mec/messages.php:79
4237
- #: app/features/mec/modules.php:439 app/features/mec/notifications.php:1603
4238
- #: app/features/mec/settings.php:1475 app/features/mec/single.php:507
4239
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:341
4240
  msgid "Settings Saved!"
4241
  msgstr "Nastavení uložena!"
4242
 
4243
  #: app/features/mec/booking.php:1057 app/features/mec/modules.php:465
4244
- #: app/features/mec/notifications.php:1629 app/features/mec/settings.php:1501
4245
- #: app/features/mec/single.php:533
4246
  msgid "Please Refresh Page"
4247
  msgstr "Prosím obnovte stránku"
4248
 
@@ -4371,7 +4470,7 @@ msgid "Download Settings"
4371
  msgstr "Stáhnout nastavení"
4372
 
4373
  #: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
4374
- #: app/features/mec/support.php:66 app/libraries/main.php:874
4375
  msgid "Messages"
4376
  msgstr "Zprávy"
4377
 
@@ -4952,15 +5051,15 @@ msgstr "Výchozí zobrazení"
4952
 
4953
  #: app/features/mec/meta_boxes/display_options.php:700
4954
  #: app/features/mec/meta_boxes/display_options.php:724
4955
- #: app/libraries/main.php:360 app/libraries/main.php:2160
4956
- #: app/libraries/main.php:2185
4957
  msgid "List View"
4958
  msgstr "Zobrazení seznamu"
4959
 
4960
  #: app/features/mec/meta_boxes/display_options.php:701
4961
  #: app/features/mec/meta_boxes/display_options.php:766
4962
- #: app/libraries/main.php:361 app/libraries/main.php:2161
4963
- #: app/libraries/main.php:2186
4964
  msgid "Grid View"
4965
  msgstr "Zobrazení mřížky"
4966
 
@@ -4974,8 +5073,8 @@ msgstr "Zobrazení rozvrhu"
4974
 
4975
  #: app/features/mec/meta_boxes/display_options.php:703
4976
  #: app/features/mec/meta_boxes/display_options.php:808
4977
- #: app/libraries/main.php:364 app/libraries/main.php:2154
4978
- #: app/libraries/main.php:2179
4979
  msgid "Yearly View"
4980
  msgstr "Roční zobrazení"
4981
 
@@ -4986,15 +5085,15 @@ msgstr "Měsíční / kalendářní zobrazení"
4986
 
4987
  #: app/features/mec/meta_boxes/display_options.php:705
4988
  #: app/features/mec/meta_boxes/display_options.php:857
4989
- #: app/libraries/main.php:367 app/libraries/main.php:2156
4990
- #: app/libraries/main.php:2181
4991
  msgid "Weekly View"
4992
  msgstr "Týdenní zobrazení"
4993
 
4994
  #: app/features/mec/meta_boxes/display_options.php:706
4995
  #: app/features/mec/meta_boxes/display_options.php:867
4996
- #: app/libraries/main.php:366 app/libraries/main.php:2157
4997
- #: app/libraries/main.php:2182
4998
  msgid "Daily View"
4999
  msgstr "Denní zobrazení"
5000
 
@@ -5394,8 +5493,9 @@ msgid "Authors"
5394
  msgstr "Autoři"
5395
 
5396
  #: app/features/mec/meta_boxes/filter.php:75
5397
- #: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:982
5398
- #: app/features/occurrences.php:72 app/features/occurrences.php:102
 
5399
  #, fuzzy
5400
  #| msgid "Occurrences times"
5401
  msgid "Occurrences"
@@ -5457,10 +5557,6 @@ msgstr "Vyberte požadované autory pro filtrování událostí."
5457
  msgid "Show only one occurrence of events"
5458
  msgstr "Další výskyt dalších událostí"
5459
 
5460
- #: app/features/mec/meta_boxes/filter.php:198 app/features/mec/settings.php:484
5461
- msgid "Expired Events"
5462
- msgstr "Události vypršely"
5463
-
5464
  #: app/features/mec/meta_boxes/filter.php:202
5465
  #: app/features/popup/shortcode.php:501
5466
  msgid "Include Expired Events"
@@ -5551,15 +5647,15 @@ msgstr "Ukázat všechny %s"
5551
  #: app/features/mec/meta_boxes/search_form.php:416
5552
  #: app/features/mec/meta_boxes/search_form.php:503
5553
  #: app/features/mec/meta_boxes/search_form.php:590
5554
- #: app/features/mec/meta_boxes/search_form.php:663
5555
- #: app/features/mec/meta_boxes/search_form.php:750
5556
- #: app/features/mec/meta_boxes/search_form.php:837
5557
- #: app/features/mec/meta_boxes/search_form.php:960
5558
- #: app/features/mec/settings.php:1125 app/features/mec/single.php:398
5559
- #: app/features/mec/single.php:440 app/features/mec/wizard.php:431
5560
  #: app/features/mec/wizard.php:470 app/features/search.php:86
5561
  #: app/features/speakers.php:60 app/features/speakers.php:282
5562
- #: app/libraries/main.php:6625 app/libraries/main.php:6679
5563
  #: app/libraries/skins.php:1156 app/modules/speakers/details.php:18
5564
  msgid "Speaker"
5565
  msgstr "Řečník"
@@ -5571,12 +5667,12 @@ msgstr "Řečník"
5571
  #: app/features/mec/meta_boxes/search_form.php:423
5572
  #: app/features/mec/meta_boxes/search_form.php:510
5573
  #: app/features/mec/meta_boxes/search_form.php:597
5574
- #: app/features/mec/meta_boxes/search_form.php:670
5575
- #: app/features/mec/meta_boxes/search_form.php:757
5576
- #: app/features/mec/meta_boxes/search_form.php:844
5577
- #: app/features/mec/meta_boxes/search_form.php:967
5578
- #: app/features/mec/settings.php:1132 app/features/mec/single.php:407
5579
- #: app/features/mec/single.php:449 app/features/mec/wizard.php:440
5580
  #: app/features/mec/wizard.php:479 app/features/search.php:92
5581
  #: app/features/tag.php:58 app/libraries/skins.php:1185
5582
  msgid "Tag"
@@ -5589,10 +5685,10 @@ msgstr "Štítek"
5589
  #: app/features/mec/meta_boxes/search_form.php:440
5590
  #: app/features/mec/meta_boxes/search_form.php:527
5591
  #: app/features/mec/meta_boxes/search_form.php:614
5592
- #: app/features/mec/meta_boxes/search_form.php:687
5593
- #: app/features/mec/meta_boxes/search_form.php:774
5594
- #: app/features/mec/meta_boxes/search_form.php:861
5595
- #: app/features/mec/meta_boxes/search_form.php:984
5596
  #, fuzzy
5597
  #| msgid "Address"
5598
  msgid "Address Input"
@@ -5611,15 +5707,15 @@ msgstr "Adresa"
5611
  #: app/features/mec/meta_boxes/search_form.php:529
5612
  #: app/features/mec/meta_boxes/search_form.php:558
5613
  #: app/features/mec/meta_boxes/search_form.php:616
5614
- #: app/features/mec/meta_boxes/search_form.php:631
5615
- #: app/features/mec/meta_boxes/search_form.php:689
5616
- #: app/features/mec/meta_boxes/search_form.php:718
5617
- #: app/features/mec/meta_boxes/search_form.php:776
5618
- #: app/features/mec/meta_boxes/search_form.php:805
5619
- #: app/features/mec/meta_boxes/search_form.php:863
5620
- #: app/features/mec/meta_boxes/search_form.php:892
5621
- #: app/features/mec/meta_boxes/search_form.php:986
5622
- #: app/features/mec/meta_boxes/search_form.php:1015
5623
  msgid "Placeholder Text ..."
5624
  msgstr ""
5625
 
@@ -5630,16 +5726,17 @@ msgstr ""
5630
  #: app/features/mec/meta_boxes/search_form.php:448
5631
  #: app/features/mec/meta_boxes/search_form.php:535
5632
  #: app/features/mec/meta_boxes/search_form.php:622
5633
- #: app/features/mec/meta_boxes/search_form.php:695
5634
- #: app/features/mec/meta_boxes/search_form.php:782
5635
- #: app/features/mec/meta_boxes/search_form.php:869
5636
- #: app/features/mec/meta_boxes/search_form.php:992
5637
  msgid "Min / Max Inputs"
5638
  msgstr ""
5639
 
5640
  #: app/features/mec/meta_boxes/search_form.php:101
5641
  #: app/features/mec/meta_boxes/search_form.php:189
5642
  #: app/features/mec/meta_boxes/search_form.php:277
 
5643
  #, fuzzy
5644
  #| msgid "Filter"
5645
  msgid "Date Filter"
@@ -5648,12 +5745,14 @@ msgstr "Filtr"
5648
  #: app/features/mec/meta_boxes/search_form.php:104
5649
  #: app/features/mec/meta_boxes/search_form.php:192
5650
  #: app/features/mec/meta_boxes/search_form.php:280
 
5651
  msgid "Year & Month Dropdown"
5652
  msgstr ""
5653
 
5654
  #: app/features/mec/meta_boxes/search_form.php:105
5655
  #: app/features/mec/meta_boxes/search_form.php:193
5656
  #: app/features/mec/meta_boxes/search_form.php:281
 
5657
  #, fuzzy
5658
  #| msgid "Date Format"
5659
  msgid "Date Picker"
@@ -5665,10 +5764,10 @@ msgstr "Formát data"
5665
  #: app/features/mec/meta_boxes/search_form.php:372
5666
  #: app/features/mec/meta_boxes/search_form.php:459
5667
  #: app/features/mec/meta_boxes/search_form.php:546
5668
- #: app/features/mec/meta_boxes/search_form.php:706
5669
- #: app/features/mec/meta_boxes/search_form.php:793
5670
- #: app/features/mec/meta_boxes/search_form.php:880
5671
- #: app/features/mec/meta_boxes/search_form.php:1003
5672
  #, fuzzy
5673
  #| msgid "Filter"
5674
  msgid "Time Filter"
@@ -5680,10 +5779,10 @@ msgstr "Filtr"
5680
  #: app/features/mec/meta_boxes/search_form.php:375
5681
  #: app/features/mec/meta_boxes/search_form.php:462
5682
  #: app/features/mec/meta_boxes/search_form.php:549
5683
- #: app/features/mec/meta_boxes/search_form.php:709
5684
- #: app/features/mec/meta_boxes/search_form.php:796
5685
- #: app/features/mec/meta_boxes/search_form.php:883
5686
- #: app/features/mec/meta_boxes/search_form.php:1006
5687
  #, fuzzy
5688
  #| msgid "Local Time"
5689
  msgid "Local Time Picker"
@@ -5695,11 +5794,11 @@ msgstr "Místní čas"
5695
  #: app/features/mec/meta_boxes/search_form.php:379
5696
  #: app/features/mec/meta_boxes/search_form.php:466
5697
  #: app/features/mec/meta_boxes/search_form.php:553
5698
- #: app/features/mec/meta_boxes/search_form.php:626
5699
- #: app/features/mec/meta_boxes/search_form.php:713
5700
- #: app/features/mec/meta_boxes/search_form.php:800
5701
- #: app/features/mec/meta_boxes/search_form.php:887
5702
- #: app/features/mec/meta_boxes/search_form.php:1010
5703
  msgid "Text Search"
5704
  msgstr "Vyhledat text"
5705
 
@@ -5709,30 +5808,30 @@ msgstr "Vyhledat text"
5709
  #: app/features/mec/meta_boxes/search_form.php:382
5710
  #: app/features/mec/meta_boxes/search_form.php:469
5711
  #: app/features/mec/meta_boxes/search_form.php:556
5712
- #: app/features/mec/meta_boxes/search_form.php:629
5713
- #: app/features/mec/meta_boxes/search_form.php:716
5714
- #: app/features/mec/meta_boxes/search_form.php:803
5715
- #: app/features/mec/meta_boxes/search_form.php:890
5716
- #: app/features/mec/meta_boxes/search_form.php:1013
5717
  msgid "Text Input"
5718
  msgstr "Zadávání textu"
5719
 
5720
  #: app/features/mec/meta_boxes/search_form.php:365
5721
  #: app/features/mec/meta_boxes/search_form.php:452
5722
  #: app/features/mec/meta_boxes/search_form.php:539
5723
- #: app/features/mec/meta_boxes/search_form.php:699
5724
- #: app/features/mec/meta_boxes/search_form.php:786
5725
- #: app/features/mec/meta_boxes/search_form.php:873
5726
- #: app/features/mec/meta_boxes/search_form.php:996
5727
  msgid "Month Filter"
5728
  msgstr "Měsíční filtr"
5729
 
5730
- #: app/features/mec/meta_boxes/search_form.php:900
5731
- #: app/features/mec/meta_boxes/search_form.php:906
5732
- #: app/features/mec/meta_boxes/search_form.php:912
5733
- #: app/features/mec/meta_boxes/search_form.php:918
5734
- #: app/features/mec/meta_boxes/search_form.php:924
5735
- #: app/features/mec/meta_boxes/search_form.php:930
5736
  msgid "No Search Options"
5737
  msgstr "Žádné možnosti vyhledávání"
5738
 
@@ -5761,7 +5860,7 @@ msgstr ""
5761
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
5762
  "novou nabídku na řídícím panelu > MEC"
5763
 
5764
- #: app/features/mec/modules.php:58 app/libraries/main.php:627
5765
  #, fuzzy
5766
  #| msgid "Google Maps Options"
5767
  msgid "Map Options"
@@ -5785,8 +5884,8 @@ msgstr "Google Maps API"
5785
  msgid "Google Map Options"
5786
  msgstr "Možnosti Google Maps"
5787
 
5788
- #: app/features/mec/modules.php:76 app/features/mec/settings.php:1167
5789
- #: app/features/mec/settings.php:1180
5790
  msgid "Required!"
5791
  msgstr "Požadované!"
5792
 
@@ -5854,7 +5953,7 @@ msgstr ""
5854
  msgid "Fullscreen Button"
5855
  msgstr ""
5856
 
5857
- #: app/features/mec/modules.php:167 app/libraries/main.php:628
5858
  msgid "Export Options"
5859
  msgstr "Možnosti exportu"
5860
 
@@ -5869,7 +5968,7 @@ msgstr ""
5869
  msgid "Google Calendar"
5870
  msgstr "Kalendář Google"
5871
 
5872
- #: app/features/mec/modules.php:194 app/libraries/main.php:629
5873
  #: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:44
5874
  #: app/widgets/single.php:101
5875
  msgid "Local Time"
@@ -5881,7 +5980,7 @@ msgstr ""
5881
  "Zobrazit čas události na základě místního času návštěvníka na stránce "
5882
  "události"
5883
 
5884
- #: app/features/mec/modules.php:208 app/libraries/main.php:630
5885
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:157
5886
  msgid "QR Code"
5887
  msgstr "QR kód"
@@ -5891,7 +5990,7 @@ msgid "Show QR code of event in details page and booking invoice"
5891
  msgstr ""
5892
  "Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
5893
 
5894
- #: app/features/mec/modules.php:226 app/libraries/main.php:631
5895
  #: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
5896
  msgid "Weather"
5897
  msgstr "Počasí"
@@ -5930,7 +6029,7 @@ msgstr "Zobrazit tlačítko Změna jednotek počasí"
5930
  msgid "Show social network module"
5931
  msgstr "Zobrazit modul sociální sítě"
5932
 
5933
- #: app/features/mec/modules.php:299 app/libraries/main.php:633
5934
  #: app/modules/next-event/details.php:136 app/widgets/single.php:141
5935
  msgid "Next Event"
5936
  msgstr "Další událost"
@@ -5991,7 +6090,7 @@ msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5991
  msgid "Add events menu to user profile"
5992
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
5993
 
5994
- #: app/features/mec/modules.php:376 app/libraries/main.php:635
5995
  #, fuzzy
5996
  #| msgid "Mailchimp Integration"
5997
  msgid "LearnDash Integration"
@@ -6009,7 +6108,7 @@ msgstr "Povolit integraci Mailchimp"
6009
  msgid "LearnDash plugin should be installed and activated."
6010
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
6011
 
6012
- #: app/features/mec/modules.php:386 app/libraries/main.php:636
6013
  #, fuzzy
6014
  #| msgid "Mailchimp Integration"
6015
  msgid "PaidMembership Pro Integration"
@@ -6037,823 +6136,881 @@ msgstr "Povolit upozornění na rezervaci"
6037
  msgid "Sent to attendee after booking to notify them."
6038
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
6039
 
6040
- #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:200
6041
- #: app/features/mec/notifications.php:352
6042
- #: app/features/mec/notifications.php:514
6043
- #: app/features/mec/notifications.php:687
6044
- #: app/features/mec/notifications.php:845
6045
- #: app/features/mec/notifications.php:1000
6046
- #: app/features/mec/notifications.php:1145
6047
- #: app/features/mec/notifications.php:1317
6048
- #: app/features/mec/notifications.php:1429 app/features/mec/report.php:62
6049
  #: app/features/notifications.php:72
6050
  msgid "Email Subject"
6051
  msgstr "Předmět emailové zprávy"
6052
 
6053
  #: app/features/mec/notifications.php:59 app/features/mec/notifications.php:68
6054
- #: app/features/mec/notifications.php:210
6055
- #: app/features/mec/notifications.php:219
6056
- #: app/features/mec/notifications.php:362
6057
- #: app/features/mec/notifications.php:371
6058
- #: app/features/mec/notifications.php:524
6059
- #: app/features/mec/notifications.php:533
6060
- #: app/features/mec/notifications.php:697
6061
- #: app/features/mec/notifications.php:706
6062
- #: app/features/mec/notifications.php:855
6063
- #: app/features/mec/notifications.php:864
6064
- #: app/features/mec/notifications.php:1010
6065
- #: app/features/mec/notifications.php:1019
6066
- #: app/features/mec/notifications.php:1155
6067
- #: app/features/mec/notifications.php:1164
6068
- #: app/features/mec/notifications.php:1327
6069
- #: app/features/mec/notifications.php:1336
6070
- #: app/features/mec/notifications.php:1439
6071
- #: app/features/mec/notifications.php:1448
6072
  msgid "Receiver Users"
6073
  msgstr ""
6074
 
6075
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:220
6076
- #: app/features/mec/notifications.php:372
6077
- #: app/features/mec/notifications.php:534
6078
- #: app/features/mec/notifications.php:707
6079
- #: app/features/mec/notifications.php:865
6080
- #: app/features/mec/notifications.php:1020
6081
- #: app/features/mec/notifications.php:1165
6082
- #: app/features/mec/notifications.php:1337
6083
- #: app/features/mec/notifications.php:1449
6084
  msgid "Select users to send a copy of email to them!"
6085
  msgstr ""
6086
 
6087
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:89
6088
- #: app/features/mec/notifications.php:231
6089
- #: app/features/mec/notifications.php:240
6090
- #: app/features/mec/notifications.php:383
6091
- #: app/features/mec/notifications.php:392
6092
- #: app/features/mec/notifications.php:545
6093
- #: app/features/mec/notifications.php:554
6094
- #: app/features/mec/notifications.php:718
6095
- #: app/features/mec/notifications.php:727
6096
- #: app/features/mec/notifications.php:876
6097
- #: app/features/mec/notifications.php:885
6098
- #: app/features/mec/notifications.php:1031
6099
- #: app/features/mec/notifications.php:1040
6100
- #: app/features/mec/notifications.php:1176
6101
- #: app/features/mec/notifications.php:1185
6102
- #: app/features/mec/notifications.php:1348
6103
- #: app/features/mec/notifications.php:1357
6104
- #: app/features/mec/notifications.php:1460
6105
- #: app/features/mec/notifications.php:1469
6106
  msgid "Receiver Roles"
6107
  msgstr ""
6108
 
6109
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:241
6110
- #: app/features/mec/notifications.php:393
6111
- #: app/features/mec/notifications.php:555
6112
- #: app/features/mec/notifications.php:728
6113
- #: app/features/mec/notifications.php:886
6114
- #: app/features/mec/notifications.php:1041
6115
- #: app/features/mec/notifications.php:1186
6116
- #: app/features/mec/notifications.php:1358
6117
- #: app/features/mec/notifications.php:1470
6118
  msgid "Select users a specific role."
6119
  msgstr ""
6120
 
6121
  #: app/features/mec/notifications.php:100
6122
  #: app/features/mec/notifications.php:106
6123
- #: app/features/mec/notifications.php:251
6124
- #: app/features/mec/notifications.php:257
6125
- #: app/features/mec/notifications.php:403
6126
- #: app/features/mec/notifications.php:409
6127
- #: app/features/mec/notifications.php:565
6128
- #: app/features/mec/notifications.php:571
6129
- #: app/features/mec/notifications.php:738
6130
- #: app/features/mec/notifications.php:744
6131
- #: app/features/mec/notifications.php:896
6132
- #: app/features/mec/notifications.php:902
6133
- #: app/features/mec/notifications.php:1051
6134
- #: app/features/mec/notifications.php:1057
6135
- #: app/features/mec/notifications.php:1196
6136
- #: app/features/mec/notifications.php:1202
6137
- #: app/features/mec/notifications.php:1368
6138
- #: app/features/mec/notifications.php:1374
6139
- #: app/features/mec/notifications.php:1480
6140
- #: app/features/mec/notifications.php:1486
6141
  msgid "Custom Recipients"
6142
  msgstr "Vlastní příjemci"
6143
 
6144
  #: app/features/mec/notifications.php:107
6145
- #: app/features/mec/notifications.php:258
6146
- #: app/features/mec/notifications.php:410
6147
- #: app/features/mec/notifications.php:572
6148
- #: app/features/mec/notifications.php:745
6149
- #: app/features/mec/notifications.php:903
6150
- #: app/features/mec/notifications.php:1058
6151
- #: app/features/mec/notifications.php:1203
6152
- #: app/features/mec/notifications.php:1375
6153
- #: app/features/mec/notifications.php:1487
6154
  msgid "Insert comma separated emails for multiple recipients."
6155
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
6156
 
6157
  #: app/features/mec/notifications.php:116
6158
- #: app/features/mec/notifications.php:588
6159
- #: app/features/mec/notifications.php:761
6160
- #: app/features/mec/notifications.php:919
6161
- #: app/features/mec/notifications.php:1074
6162
  msgid "Send the email to event organizer"
6163
  msgstr "Pošlete e-mail organizátorovi události"
6164
 
6165
  #: app/features/mec/notifications.php:120
6166
- #: app/features/mec/notifications.php:265
6167
- #: app/features/mec/notifications.php:424
6168
- #: app/features/mec/notifications.php:599
6169
- #: app/features/mec/notifications.php:771
6170
- #: app/features/mec/notifications.php:923
6171
- #: app/features/mec/notifications.php:1078
6172
- #: app/features/mec/notifications.php:1225
6173
- #: app/features/mec/notifications.php:1382
6174
- #: app/features/mec/notifications.php:1494 app/features/notifications.php:80
6175
  msgid "Email Content"
6176
  msgstr "Obsah zprávy"
6177
 
6178
  #: app/features/mec/notifications.php:130
6179
- #: app/features/mec/notifications.php:275
6180
- #: app/features/mec/notifications.php:434
6181
- #: app/features/mec/notifications.php:609
6182
- #: app/features/mec/notifications.php:781
6183
- #: app/features/mec/notifications.php:933
6184
- #: app/features/mec/notifications.php:1088
6185
- #: app/features/mec/notifications.php:1236
6186
- #: app/features/mec/notifications.php:1392
6187
- #: app/features/mec/notifications.php:1503 app/features/mec/report.php:66
6188
  #, fuzzy
6189
  #| msgid "You can use following placeholders"
6190
  msgid "You can use the following placeholders"
6191
  msgstr "Můžete použít následující zástupné symboly"
6192
 
6193
  #: app/features/mec/notifications.php:132
6194
- #: app/features/mec/notifications.php:277
6195
- #: app/features/mec/notifications.php:436
6196
- #: app/features/mec/notifications.php:611
6197
- #: app/features/mec/notifications.php:783
6198
- #: app/features/mec/notifications.php:935
6199
- #: app/features/mec/notifications.php:1090
6200
- #: app/features/mec/notifications.php:1238 app/features/notifications.php:97
6201
  msgid "First name of attendee"
6202
  msgstr "První jméno účastníka"
6203
 
6204
  #: app/features/mec/notifications.php:133
6205
- #: app/features/mec/notifications.php:278
6206
- #: app/features/mec/notifications.php:437
6207
- #: app/features/mec/notifications.php:612
6208
- #: app/features/mec/notifications.php:784
6209
- #: app/features/mec/notifications.php:936
6210
- #: app/features/mec/notifications.php:1091
6211
- #: app/features/mec/notifications.php:1239 app/features/notifications.php:98
6212
  msgid "Last name of attendee"
6213
  msgstr "Příjmení účastníka"
6214
 
6215
  #: app/features/mec/notifications.php:134
6216
- #: app/features/mec/notifications.php:279
6217
- #: app/features/mec/notifications.php:438
6218
- #: app/features/mec/notifications.php:613
6219
- #: app/features/mec/notifications.php:785
6220
- #: app/features/mec/notifications.php:937
6221
- #: app/features/mec/notifications.php:1092
6222
- #: app/features/mec/notifications.php:1240 app/features/notifications.php:99
6223
  msgid "Email of attendee"
6224
  msgstr "Email účastníka"
6225
 
6226
  #: app/features/mec/notifications.php:135
6227
- #: app/features/mec/notifications.php:280
6228
- #: app/features/mec/notifications.php:439
6229
- #: app/features/mec/notifications.php:614
6230
- #: app/features/mec/notifications.php:786
6231
- #: app/features/mec/notifications.php:938
6232
- #: app/features/mec/notifications.php:1093
6233
- #: app/features/mec/notifications.php:1241 app/features/notifications.php:100
6234
  msgid "Booked date of event"
6235
  msgstr "Datum rezervace akce"
6236
 
6237
  #: app/features/mec/notifications.php:136
6238
- #: app/features/mec/notifications.php:281
6239
- #: app/features/mec/notifications.php:440
6240
- #: app/features/mec/notifications.php:615
6241
- #: app/features/mec/notifications.php:787
6242
- #: app/features/mec/notifications.php:939
6243
- #: app/features/mec/notifications.php:1094
6244
- #: app/features/mec/notifications.php:1242 app/features/notifications.php:101
6245
  msgid "Booked time of event"
6246
  msgstr "Čas rezervace akce"
6247
 
6248
  #: app/features/mec/notifications.php:137
6249
- #: app/features/mec/notifications.php:282
6250
- #: app/features/mec/notifications.php:441
6251
- #: app/features/mec/notifications.php:616
6252
- #: app/features/mec/notifications.php:788
6253
- #: app/features/mec/notifications.php:940
6254
- #: app/features/mec/notifications.php:1095
6255
- #: app/features/mec/notifications.php:1243 app/features/notifications.php:102
6256
  #, fuzzy
6257
  #| msgid "Booked date of event"
6258
  msgid "Booked date and time of event"
6259
  msgstr "Datum rezervace akce"
6260
 
6261
  #: app/features/mec/notifications.php:138
6262
- #: app/features/mec/notifications.php:283
6263
- #: app/features/mec/notifications.php:442
6264
- #: app/features/mec/notifications.php:617
6265
- #: app/features/mec/notifications.php:789
6266
- #: app/features/mec/notifications.php:941
6267
- #: app/features/mec/notifications.php:1244 app/features/notifications.php:103
6268
  msgid "Date of next 20 occurrences of booked event (including the booked date)"
6269
  msgstr ""
6270
 
6271
  #: app/features/mec/notifications.php:139
6272
- #: app/features/mec/notifications.php:284
6273
- #: app/features/mec/notifications.php:443
6274
- #: app/features/mec/notifications.php:618
6275
- #: app/features/mec/notifications.php:790
6276
- #: app/features/mec/notifications.php:942
6277
- #: app/features/mec/notifications.php:1245 app/features/notifications.php:104
6278
  msgid ""
6279
  "Date and Time of next 20 occurrences of booked event (including the booked "
6280
  "date)"
6281
  msgstr ""
6282
 
6283
  #: app/features/mec/notifications.php:140
6284
- #: app/features/mec/notifications.php:285
6285
- #: app/features/mec/notifications.php:444
6286
- #: app/features/mec/notifications.php:619
6287
- #: app/features/mec/notifications.php:791
6288
- #: app/features/mec/notifications.php:943
6289
- #: app/features/mec/notifications.php:1246 app/features/notifications.php:105
6290
  msgid "Booking Price"
6291
  msgstr "Cena rezervace"
6292
 
6293
  #: app/features/mec/notifications.php:141
6294
- #: app/features/mec/notifications.php:286
6295
- #: app/features/mec/notifications.php:446
6296
- #: app/features/mec/notifications.php:621
6297
- #: app/features/mec/notifications.php:792
6298
- #: app/features/mec/notifications.php:944
6299
- #: app/features/mec/notifications.php:1247 app/features/notifications.php:107
6300
  #, fuzzy
6301
  #| msgid "Cannot find the booking!"
6302
  msgid "Date and time of booking"
6303
  msgstr "Nemohu najít rezervaci!"
6304
 
6305
  #: app/features/mec/notifications.php:142
6306
- #: app/features/mec/notifications.php:287
6307
- #: app/features/mec/notifications.php:447
6308
- #: app/features/mec/notifications.php:622
6309
- #: app/features/mec/notifications.php:793
6310
- #: app/features/mec/notifications.php:945
6311
- #: app/features/mec/notifications.php:1096
6312
- #: app/features/mec/notifications.php:1248
6313
- #: app/features/mec/notifications.php:1401
6314
- #: app/features/mec/notifications.php:1512 app/features/notifications.php:108
6315
  msgid "Your website title"
6316
  msgstr "Název vašeho webu"
6317
 
6318
  #: app/features/mec/notifications.php:143
6319
- #: app/features/mec/notifications.php:288
6320
- #: app/features/mec/notifications.php:448
6321
- #: app/features/mec/notifications.php:623
6322
- #: app/features/mec/notifications.php:794
6323
- #: app/features/mec/notifications.php:946
6324
- #: app/features/mec/notifications.php:1097
6325
- #: app/features/mec/notifications.php:1249
6326
- #: app/features/mec/notifications.php:1402
6327
- #: app/features/mec/notifications.php:1513 app/features/notifications.php:109
6328
  msgid "Your website URL"
6329
  msgstr "URL vašeho webu"
6330
 
6331
  #: app/features/mec/notifications.php:144
6332
- #: app/features/mec/notifications.php:289
6333
- #: app/features/mec/notifications.php:449
6334
- #: app/features/mec/notifications.php:624
6335
- #: app/features/mec/notifications.php:795
6336
- #: app/features/mec/notifications.php:947
6337
- #: app/features/mec/notifications.php:1098
6338
- #: app/features/mec/notifications.php:1250
6339
- #: app/features/mec/notifications.php:1403
6340
- #: app/features/mec/notifications.php:1514 app/features/notifications.php:110
6341
  msgid "Your website description"
6342
  msgstr "Popis vašeho webu"
6343
 
6344
  #: app/features/mec/notifications.php:145
6345
- #: app/features/mec/notifications.php:290
6346
- #: app/features/mec/notifications.php:450
6347
- #: app/features/mec/notifications.php:625
6348
- #: app/features/mec/notifications.php:796
6349
- #: app/features/mec/notifications.php:948
6350
- #: app/features/mec/notifications.php:1099
6351
- #: app/features/mec/notifications.php:1251 app/features/notifications.php:111
6352
  msgid "Event title"
6353
  msgstr "Název události"
6354
 
6355
  #: app/features/mec/notifications.php:146
6356
- #: app/features/mec/notifications.php:291
6357
- #: app/features/mec/notifications.php:451
6358
- #: app/features/mec/notifications.php:626
6359
- #: app/features/mec/notifications.php:797
6360
- #: app/features/mec/notifications.php:949
6361
- #: app/features/mec/notifications.php:1100
6362
- #: app/features/mec/notifications.php:1252 app/features/notifications.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6363
  msgid "Event link"
6364
  msgstr "Odkaz události"
6365
 
6366
- #: app/features/mec/notifications.php:147
6367
- #: app/features/mec/notifications.php:292
6368
- #: app/features/mec/notifications.php:452
6369
- #: app/features/mec/notifications.php:627
6370
- #: app/features/mec/notifications.php:1396
6371
- #: app/features/mec/notifications.php:1507 app/features/notifications.php:143
6372
  #, fuzzy
6373
  #| msgid "Start Date"
6374
  msgid "Event Start Date"
6375
  msgstr "Počátečná den"
6376
 
6377
- #: app/features/mec/notifications.php:148
6378
- #: app/features/mec/notifications.php:293
6379
- #: app/features/mec/notifications.php:453
6380
- #: app/features/mec/notifications.php:628
6381
- #: app/features/mec/notifications.php:1397
6382
- #: app/features/mec/notifications.php:1508 app/features/notifications.php:144
6383
  #, fuzzy
6384
  #| msgid "End Date"
6385
  msgid "Event End Date"
6386
  msgstr "Konečný den"
6387
 
6388
- #: app/features/mec/notifications.php:149
6389
- #: app/features/mec/notifications.php:294
6390
- #: app/features/mec/notifications.php:454
6391
- #: app/features/mec/notifications.php:629 app/features/notifications.php:145
6392
  #, fuzzy
6393
  #| msgid "On Event Start"
6394
  msgid "Event Start Time"
6395
  msgstr "Při spuštění události"
6396
 
6397
- #: app/features/mec/notifications.php:150
6398
- #: app/features/mec/notifications.php:295
6399
- #: app/features/mec/notifications.php:455
6400
- #: app/features/mec/notifications.php:630 app/features/notifications.php:146
6401
  #, fuzzy
6402
  #| msgid "Hide Event End Time"
6403
  msgid "Event End Time"
6404
  msgstr "Skrýt čas ukončení události"
6405
 
6406
- #: app/features/mec/notifications.php:151
6407
- #: app/features/mec/notifications.php:296
6408
- #: app/features/mec/notifications.php:456
6409
- #: app/features/mec/notifications.php:631
6410
- #: app/features/mec/notifications.php:1398
6411
- #: app/features/mec/notifications.php:1509 app/features/notifications.php:147
6412
  #, fuzzy
6413
  #| msgid "Timezone: %s"
6414
  msgid "Event Timezone"
6415
  msgstr "Časové pásmo: %s"
6416
 
6417
- #: app/features/mec/notifications.php:152
6418
- #: app/features/mec/notifications.php:297
6419
- #: app/features/mec/notifications.php:457
6420
- #: app/features/mec/notifications.php:632
6421
- #: app/features/mec/notifications.php:798
6422
- #: app/features/mec/notifications.php:950
6423
- #: app/features/mec/notifications.php:1101
6424
- #: app/features/mec/notifications.php:1253 app/features/notifications.php:113
6425
  msgid "Speaker name of booked event"
6426
  msgstr "Jméno řečníka rezervované události"
6427
 
6428
- #: app/features/mec/notifications.php:153
6429
- #: app/features/mec/notifications.php:298
6430
- #: app/features/mec/notifications.php:458
6431
- #: app/features/mec/notifications.php:633
6432
- #: app/features/mec/notifications.php:799
6433
- #: app/features/mec/notifications.php:951
6434
- #: app/features/mec/notifications.php:1102
6435
- #: app/features/mec/notifications.php:1254 app/features/notifications.php:114
6436
  msgid "Organizer name of booked event"
6437
  msgstr "Jméno organizátora rezervované události"
6438
 
6439
- #: app/features/mec/notifications.php:154
6440
- #: app/features/mec/notifications.php:299
6441
- #: app/features/mec/notifications.php:459
6442
- #: app/features/mec/notifications.php:634
6443
- #: app/features/mec/notifications.php:800
6444
- #: app/features/mec/notifications.php:952
6445
- #: app/features/mec/notifications.php:1103
6446
- #: app/features/mec/notifications.php:1255 app/features/notifications.php:115
6447
  msgid "Organizer tel of booked event"
6448
  msgstr "Telefon organizátora rezervované události"
6449
 
6450
- #: app/features/mec/notifications.php:155
6451
- #: app/features/mec/notifications.php:300
6452
- #: app/features/mec/notifications.php:460
6453
- #: app/features/mec/notifications.php:635
6454
- #: app/features/mec/notifications.php:801
6455
- #: app/features/mec/notifications.php:953
6456
- #: app/features/mec/notifications.php:1104
6457
- #: app/features/mec/notifications.php:1256 app/features/notifications.php:116
6458
  msgid "Organizer email of booked event"
6459
  msgstr "Email organizátora rezervované události"
6460
 
6461
- #: app/features/mec/notifications.php:156
6462
- #: app/features/mec/notifications.php:301
6463
- #: app/features/mec/notifications.php:461
6464
- #: app/features/mec/notifications.php:636
6465
- #: app/features/mec/notifications.php:802
6466
- #: app/features/mec/notifications.php:954
6467
- #: app/features/mec/notifications.php:1105
6468
- #: app/features/mec/notifications.php:1257 app/features/notifications.php:117
6469
  #, fuzzy
6470
  #| msgid "Organizer tel of booked event"
6471
  msgid "Organizer url of booked event"
6472
  msgstr "Telefon organizátora rezervované události"
6473
 
6474
- #: app/features/mec/notifications.php:157
6475
- #: app/features/mec/notifications.php:302
6476
- #: app/features/mec/notifications.php:462
6477
- #: app/features/mec/notifications.php:637
6478
- #: app/features/mec/notifications.php:803
6479
- #: app/features/mec/notifications.php:955
6480
- #: app/features/mec/notifications.php:1106
6481
- #: app/features/mec/notifications.php:1258 app/features/notifications.php:118
6482
  #, fuzzy
6483
  #| msgid "Location name of booked event"
6484
  msgid "Additional organizers name of booked event"
6485
  msgstr "Název místa rezervované události"
6486
 
6487
- #: app/features/mec/notifications.php:158
6488
- #: app/features/mec/notifications.php:303
6489
- #: app/features/mec/notifications.php:463
6490
- #: app/features/mec/notifications.php:638
6491
- #: app/features/mec/notifications.php:804
6492
- #: app/features/mec/notifications.php:956
6493
- #: app/features/mec/notifications.php:1107
6494
- #: app/features/mec/notifications.php:1259 app/features/notifications.php:119
6495
  #, fuzzy
6496
  #| msgid "Location name of booked event"
6497
  msgid "Additional organizers tel of booked event"
6498
  msgstr "Název místa rezervované události"
6499
 
6500
- #: app/features/mec/notifications.php:159
6501
- #: app/features/mec/notifications.php:304
6502
- #: app/features/mec/notifications.php:464
6503
- #: app/features/mec/notifications.php:639
6504
- #: app/features/mec/notifications.php:805
6505
- #: app/features/mec/notifications.php:957
6506
- #: app/features/mec/notifications.php:1108
6507
- #: app/features/mec/notifications.php:1260 app/features/notifications.php:120
6508
  #, fuzzy
6509
  #| msgid "Organizer email of booked event"
6510
  msgid "Additional organizers email of booked event"
6511
  msgstr "Email organizátora rezervované události"
6512
 
6513
- #: app/features/mec/notifications.php:160
6514
- #: app/features/mec/notifications.php:305
6515
- #: app/features/mec/notifications.php:465
6516
- #: app/features/mec/notifications.php:640
6517
- #: app/features/mec/notifications.php:806
6518
- #: app/features/mec/notifications.php:958
6519
- #: app/features/mec/notifications.php:1109
6520
- #: app/features/mec/notifications.php:1261
6521
  #, fuzzy
6522
  #| msgid "Location name of booked event"
6523
  msgid "Additional organizers url of booked event"
6524
  msgstr "Název místa rezervované události"
6525
 
6526
- #: app/features/mec/notifications.php:161
6527
- #: app/features/mec/notifications.php:306
6528
- #: app/features/mec/notifications.php:466
6529
- #: app/features/mec/notifications.php:641
6530
- #: app/features/mec/notifications.php:807
6531
- #: app/features/mec/notifications.php:959
6532
- #: app/features/mec/notifications.php:1110
6533
- #: app/features/mec/notifications.php:1262 app/features/notifications.php:121
6534
  msgid "Location name of booked event"
6535
  msgstr "Název místa rezervované události"
6536
 
6537
- #: app/features/mec/notifications.php:162
6538
- #: app/features/mec/notifications.php:307
6539
- #: app/features/mec/notifications.php:467
6540
- #: app/features/mec/notifications.php:642
6541
- #: app/features/mec/notifications.php:808
6542
- #: app/features/mec/notifications.php:960
6543
- #: app/features/mec/notifications.php:1111
6544
- #: app/features/mec/notifications.php:1263 app/features/notifications.php:122
6545
  msgid "Location address of booked event"
6546
  msgstr "Adresa místa rezervované události"
6547
 
6548
- #: app/features/mec/notifications.php:163
6549
- #: app/features/mec/notifications.php:308
6550
- #: app/features/mec/notifications.php:468
6551
- #: app/features/mec/notifications.php:643
6552
- #: app/features/mec/notifications.php:809
6553
- #: app/features/mec/notifications.php:961
6554
- #: app/features/mec/notifications.php:1112
6555
- #: app/features/mec/notifications.php:1264 app/features/notifications.php:123
6556
  #, fuzzy
6557
  #| msgid "Location name of booked event"
6558
  msgid "Additional locations name of booked event"
6559
  msgstr "Název místa rezervované události"
6560
 
6561
- #: app/features/mec/notifications.php:164
6562
- #: app/features/mec/notifications.php:309
6563
- #: app/features/mec/notifications.php:469
6564
- #: app/features/mec/notifications.php:644
6565
- #: app/features/mec/notifications.php:810
6566
- #: app/features/mec/notifications.php:962
6567
- #: app/features/mec/notifications.php:1113
6568
- #: app/features/mec/notifications.php:1265 app/features/notifications.php:124
6569
  #, fuzzy
6570
  #| msgid "Location address of booked event"
6571
  msgid "Additional locations address of booked event"
6572
  msgstr "Adresa místa rezervované události"
6573
 
6574
- #: app/features/mec/notifications.php:165
6575
- #: app/features/mec/notifications.php:310
6576
- #: app/features/mec/notifications.php:470
6577
- #: app/features/mec/notifications.php:645
6578
- #: app/features/mec/notifications.php:811
6579
- #: app/features/mec/notifications.php:963
6580
- #: app/features/mec/notifications.php:1114
6581
- #: app/features/mec/notifications.php:1266 app/features/notifications.php:125
6582
  #, fuzzy
6583
  #| msgid "Speaker name of booked event"
6584
  msgid "Featured image of booked event"
6585
  msgstr "Jméno řečníka rezervované události"
6586
 
6587
- #: app/features/mec/notifications.php:166
6588
- #: app/features/mec/notifications.php:311
6589
- #: app/features/mec/notifications.php:471
6590
- #: app/features/mec/notifications.php:646
6591
- #: app/features/mec/notifications.php:964
6592
- #: app/features/mec/notifications.php:1115
6593
- #: app/features/mec/notifications.php:1267 app/features/notifications.php:126
6594
  #, fuzzy
6595
  #| msgid "Event link"
6596
  msgid "Event more info link"
6597
- msgstr "Odkaz události"
6598
-
6599
- #: app/features/mec/notifications.php:167
6600
- #: app/features/mec/notifications.php:312
6601
- #: app/features/mec/notifications.php:472
6602
- #: app/features/mec/notifications.php:647
6603
- #: app/features/mec/notifications.php:965
6604
- #: app/features/mec/notifications.php:1116
6605
- #: app/features/mec/notifications.php:1268 app/features/notifications.php:127
6606
  #, fuzzy
6607
  #| msgid "Event link"
6608
  msgid "Event other info link"
6609
  msgstr "Odkaz události"
6610
 
6611
- #: app/features/mec/notifications.php:168
6612
- #: app/features/mec/notifications.php:313
6613
- #: app/features/mec/notifications.php:473
6614
- #: app/features/mec/notifications.php:648
6615
- #: app/features/mec/notifications.php:966
6616
- #: app/features/mec/notifications.php:1117
6617
- #: app/features/mec/notifications.php:1269 app/features/notifications.php:128
6618
  #, fuzzy
6619
  #| msgid "Event link"
6620
  msgid "Event online link"
6621
  msgstr "Odkaz události"
6622
 
6623
- #: app/features/mec/notifications.php:169
6624
- #: app/features/mec/notifications.php:314
6625
- #: app/features/mec/notifications.php:474
6626
- #: app/features/mec/notifications.php:649
6627
- #: app/features/mec/notifications.php:812
6628
- #: app/features/mec/notifications.php:967
6629
- #: app/features/mec/notifications.php:1270 app/features/notifications.php:129
6630
  msgid "Full Attendee info such as booking form data, name, email etc."
6631
  msgstr ""
6632
  "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
6633
  "jméno, e-mail atd."
6634
 
6635
- #: app/features/mec/notifications.php:170
6636
- #: app/features/mec/notifications.php:315
6637
- #: app/features/mec/notifications.php:475
6638
- #: app/features/mec/notifications.php:650
6639
- #: app/features/mec/notifications.php:813
6640
- #: app/features/mec/notifications.php:968
6641
- #: app/features/mec/notifications.php:1271 app/features/notifications.php:130
6642
  #, fuzzy
6643
  #| msgid "Booking"
6644
  msgid "Booking ID"
6645
  msgstr "Rezervace"
6646
 
6647
- #: app/features/mec/notifications.php:171
6648
- #: app/features/mec/notifications.php:316
6649
- #: app/features/mec/notifications.php:476
6650
- #: app/features/mec/notifications.php:651
6651
- #: app/features/mec/notifications.php:814
6652
- #: app/features/mec/notifications.php:969
6653
- #: app/features/mec/notifications.php:1272 app/features/notifications.php:131
6654
  #, fuzzy
6655
  #| msgid "Transaction ID"
6656
  msgid "Transaction ID of Booking"
6657
  msgstr "ID transakce"
6658
 
6659
- #: app/features/mec/notifications.php:172
6660
- #: app/features/mec/notifications.php:478
6661
- #: app/features/mec/notifications.php:653
6662
- #: app/features/mec/notifications.php:1274
6663
  msgid "Invoice Link"
6664
  msgstr "Odkaz na fakturu"
6665
 
6666
- #: app/features/mec/notifications.php:173
6667
- #: app/features/mec/notifications.php:318
6668
- #: app/features/mec/notifications.php:479
6669
- #: app/features/mec/notifications.php:654
6670
- #: app/features/mec/notifications.php:816
6671
- #: app/features/mec/notifications.php:971
6672
- #: app/features/mec/notifications.php:1119
6673
- #: app/features/mec/notifications.php:1275 app/features/notifications.php:133
6674
  #, fuzzy
6675
  #| msgid "There is no skins"
6676
  msgid "Total attendees of current booking"
6677
  msgstr "Neexistuje žádný vzhled"
6678
 
6679
- #: app/features/mec/notifications.php:174
6680
- #: app/features/mec/notifications.php:319
6681
- #: app/features/mec/notifications.php:480
6682
- #: app/features/mec/notifications.php:655
6683
- #: app/features/mec/notifications.php:817
6684
- #: app/features/mec/notifications.php:972
6685
- #: app/features/mec/notifications.php:1120
6686
- #: app/features/mec/notifications.php:1276 app/features/notifications.php:134
6687
  msgid "Amount of Booked Tickets (Total attendees of all bookings)"
6688
  msgstr ""
6689
 
6690
- #: app/features/mec/notifications.php:175
6691
- #: app/features/mec/notifications.php:320
6692
- #: app/features/mec/notifications.php:481
6693
- #: app/features/mec/notifications.php:656
6694
- #: app/features/mec/notifications.php:818
6695
- #: app/features/mec/notifications.php:973
6696
- #: app/features/mec/notifications.php:1277 app/features/notifications.php:135
6697
  msgid "Ticket name"
6698
  msgstr "Název vstupenky"
6699
 
6700
- #: app/features/mec/notifications.php:176
6701
- #: app/features/mec/notifications.php:321
6702
- #: app/features/mec/notifications.php:482
6703
- #: app/features/mec/notifications.php:657
6704
- #: app/features/mec/notifications.php:819
6705
- #: app/features/mec/notifications.php:974
6706
- #: app/features/mec/notifications.php:1278 app/features/notifications.php:136
6707
  msgid "Ticket time"
6708
  msgstr "Čas vstupenky"
6709
 
6710
- #: app/features/mec/notifications.php:177
6711
- #: app/features/mec/notifications.php:322
6712
- #: app/features/mec/notifications.php:483
6713
- #: app/features/mec/notifications.php:658
6714
- #: app/features/mec/notifications.php:820
6715
- #: app/features/mec/notifications.php:975
6716
- #: app/features/mec/notifications.php:1279 app/features/notifications.php:137
6717
  #, fuzzy
6718
  #| msgid "Ticket name"
6719
  msgid "Ticket name & time"
6720
  msgstr "Název vstupenky"
6721
 
6722
- #: app/features/mec/notifications.php:178
6723
- #: app/features/mec/notifications.php:323
6724
- #: app/features/mec/notifications.php:484
6725
- #: app/features/mec/notifications.php:659
6726
- #: app/features/mec/notifications.php:821
6727
- #: app/features/mec/notifications.php:976
6728
- #: app/features/mec/notifications.php:1280 app/features/notifications.php:138
6729
  #, fuzzy
6730
  #| msgid "Ticket Variations / Options"
6731
  msgid "Ticket private description"
6732
  msgstr "Varianty vstupenky / možnosti"
6733
 
6734
- #: app/features/mec/notifications.php:179
6735
- #: app/features/mec/notifications.php:324
6736
- #: app/features/mec/notifications.php:485
6737
- #: app/features/mec/notifications.php:660
6738
- #: app/features/mec/notifications.php:822
6739
- #: app/features/mec/notifications.php:977
6740
- #: app/features/mec/notifications.php:1281 app/features/notifications.php:139
6741
  #, fuzzy
6742
  #| msgid "Payment Gateways"
6743
  msgid "Payment Gateway"
6744
  msgstr "Platební brány"
6745
 
6746
- #: app/features/mec/notifications.php:180
6747
- #: app/features/mec/notifications.php:325
6748
- #: app/features/mec/notifications.php:486
6749
- #: app/features/mec/notifications.php:661
6750
- #: app/features/mec/notifications.php:823
6751
- #: app/features/mec/notifications.php:978
6752
- #: app/features/mec/notifications.php:1282 app/features/notifications.php:140
6753
  msgid "Link to the downloadable file"
6754
  msgstr ""
6755
 
6756
- #: app/features/mec/notifications.php:181
6757
- #: app/features/mec/notifications.php:326
6758
- #: app/features/mec/notifications.php:487
6759
- #: app/features/mec/notifications.php:662
6760
- #: app/features/mec/notifications.php:1283
6761
  msgid "Download ICS file"
6762
  msgstr "Stáhnout ICS soubor"
6763
 
6764
- #: app/features/mec/notifications.php:183
6765
- #: app/features/mec/notifications.php:328
6766
- #: app/features/mec/notifications.php:489
6767
- #: app/features/mec/notifications.php:664
6768
- #: app/features/mec/notifications.php:1285 app/features/notifications.php:142
6769
  msgid "Add to Google Calendar Links for next 20 occurrences"
6770
  msgstr ""
6771
 
6772
- #: app/features/mec/notifications.php:193 app/libraries/main.php:650
6773
  msgid "Booking Verification"
6774
  msgstr "Ověření rezervace"
6775
 
6776
- #: app/features/mec/notifications.php:195
6777
  msgid "It sends to attendee email for verifying their booking/email."
6778
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
6779
 
6780
- #: app/features/mec/notifications.php:317
6781
  msgid "Email/Booking verification link."
6782
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
6783
 
6784
- #: app/features/mec/notifications.php:343
6785
  #, fuzzy
6786
  #| msgid "Enable booking notification"
6787
  msgid "Enable booking confirmation"
6788
  msgstr "Povolit upozornění na rezervaci"
6789
 
6790
- #: app/features/mec/notifications.php:346
6791
  #, fuzzy
6792
  #| msgid "It sends to attendee after confirming the booking by admin."
6793
  msgid "Sent to attendee after confirming the booking by admin."
6794
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
6795
 
6796
- #: app/features/mec/notifications.php:420
6797
  msgid "Send one single email only to first attendee"
6798
  msgstr ""
6799
 
6800
- #: app/features/mec/notifications.php:445
6801
- #: app/features/mec/notifications.php:620
6802
  #, fuzzy
6803
  #| msgid "Speakers Names"
6804
  msgid "Attendee Price"
6805
  msgstr "Jméno řečníka"
6806
 
6807
- #: app/features/mec/notifications.php:477
6808
- #: app/features/mec/notifications.php:652
6809
- #: app/features/mec/notifications.php:1273
6810
  msgid "Booking cancellation link."
6811
  msgstr "Odkaz na zrušení rezervace."
6812
 
6813
- #: app/features/mec/notifications.php:500 app/features/notifications.php:166
6814
- #: app/libraries/main.php:649
6815
  #, fuzzy
6816
  #| msgid "Booking Verification"
6817
  msgid "Booking Rejection"
6818
  msgstr "Ověření rezervace"
6819
 
6820
- #: app/features/mec/notifications.php:505
6821
  #, fuzzy
6822
  #| msgid "Enable booking notification"
6823
  msgid "Enable booking rejection"
6824
  msgstr "Povolit upozornění na rezervaci"
6825
 
6826
- #: app/features/mec/notifications.php:508
6827
  #, fuzzy
6828
  #| msgid "It sends to attendee after booking for notifying him/her."
6829
  msgid "Sent to attendee after booking rejection by admin."
6830
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
6831
 
6832
- #: app/features/mec/notifications.php:582
6833
- #: app/features/mec/notifications.php:755
6834
- #: app/features/mec/notifications.php:913
6835
- #: app/features/mec/notifications.php:1068
6836
- #: app/features/mec/notifications.php:1310
6837
  msgid "Send the email to admin"
6838
  msgstr "Odeslat email administrátorovi"
6839
 
6840
- #: app/features/mec/notifications.php:594
6841
- #: app/features/mec/notifications.php:767
6842
  #, fuzzy
6843
  #| msgid "Send the email to booking user"
6844
  msgid "Send the email to the booked user"
6845
  msgstr "Pošlete rezervační e-mail uživateli"
6846
 
6847
- #: app/features/mec/notifications.php:674 app/features/notifications.php:172
6848
- #: app/libraries/main.php:651
6849
  msgid "Booking Cancellation"
6850
  msgstr "Zrušení rezervace"
6851
 
6852
- #: app/features/mec/notifications.php:679
6853
  msgid "Enable cancellation notification"
6854
  msgstr "Povolit oznámení o zrušení"
6855
 
6856
- #: app/features/mec/notifications.php:681
6857
  #, fuzzy
6858
  #| msgid ""
6859
  #| "It sends to selected recipients after booking cancellation for notifying "
@@ -6861,40 +7018,40 @@ msgstr "Povolit oznámení o zrušení"
6861
  msgid "Sent to selected recipients after booking cancellation to notify them."
6862
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
6863
 
6864
- #: app/features/mec/notifications.php:815
6865
- #: app/features/mec/notifications.php:970
6866
- #: app/features/mec/notifications.php:1118 app/features/notifications.php:132
6867
  msgid "Admin booking management link."
6868
  msgstr "Odkaz administrátora na správu rezervace."
6869
 
6870
- #: app/features/mec/notifications.php:832 app/libraries/main.php:654
6871
  msgid "Admin"
6872
  msgstr "Administrátor"
6873
 
6874
- #: app/features/mec/notifications.php:837
6875
  msgid "Enable admin notification"
6876
  msgstr "Povolit oznámení správce"
6877
 
6878
- #: app/features/mec/notifications.php:840
6879
  #, fuzzy
6880
  #| msgid "It sends to admin to notify him/her that a new booking received."
6881
  msgid "Sent to admin to notify them that a new booking has been received."
6882
  msgstr "Zašle správci informaci o přijetí nové rezervace."
6883
 
6884
- #: app/features/mec/notifications.php:987 app/features/notifications.php:178
6885
- #: app/libraries/main.php:653
6886
  #, fuzzy
6887
  #| msgid "Event Color"
6888
  msgid "Event Soldout"
6889
  msgstr "Barva události"
6890
 
6891
- #: app/features/mec/notifications.php:992
6892
  #, fuzzy
6893
  #| msgid "Enable new event notification"
6894
  msgid "Enable event soldout notification"
6895
  msgstr "Povolit oznámení na novou událost"
6896
 
6897
- #: app/features/mec/notifications.php:994
6898
  #, fuzzy
6899
  #| msgid "It sends to admin to notify him/her that a new booking received."
6900
  msgid ""
@@ -6902,16 +7059,16 @@ msgid ""
6902
  "soldout."
6903
  msgstr "Zašle správci informaci o přijetí nové rezervace."
6904
 
6905
- #: app/features/mec/notifications.php:1129 app/features/notifications.php:175
6906
- #: app/libraries/main.php:652 app/libraries/notifications.php:777
6907
  msgid "Booking Reminder"
6908
  msgstr "Připomenutí rezervace"
6909
 
6910
- #: app/features/mec/notifications.php:1134
6911
  msgid "Enable booking reminder notification"
6912
  msgstr "Povolit upozornění na připomenutí rezervace"
6913
 
6914
- #: app/features/mec/notifications.php:1141
6915
  #, fuzzy, php-format
6916
  #| msgid ""
6917
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -6926,37 +7083,37 @@ msgstr ""
6926
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
6927
  "% s, jinak může zasílat připomenutí několikrát."
6928
 
6929
- #: app/features/mec/notifications.php:1141
6930
  #, fuzzy
6931
  #| msgid "only once per day"
6932
  msgid "only once per hour"
6933
  msgstr "pouze jednou denně"
6934
 
6935
- #: app/features/mec/notifications.php:1211 app/libraries/main.php:7757
6936
- #: app/libraries/main.php:7774
6937
  #, fuzzy
6938
  #| msgid "hours"
6939
  msgid "Hours"
6940
  msgstr "hodiny"
6941
 
6942
- #: app/features/mec/notifications.php:1217
6943
  msgid "Reminder hours"
6944
  msgstr ""
6945
 
6946
- #: app/features/mec/notifications.php:1218
6947
  msgid "Please, insert comma to separate reminder hours."
6948
  msgstr ""
6949
 
6950
- #: app/features/mec/notifications.php:1296 app/features/popup/event.php:253
6951
- #: app/libraries/main.php:640
6952
  msgid "New Event"
6953
  msgstr "Nová událost"
6954
 
6955
- #: app/features/mec/notifications.php:1301
6956
  msgid "Enable new event notification"
6957
  msgstr "Povolit oznámení na novou událost"
6958
 
6959
- #: app/features/mec/notifications.php:1313
6960
  #, fuzzy
6961
  #| msgid ""
6962
  #| "It sends after adding a new event from frontend event submission or from "
@@ -6968,41 +7125,41 @@ msgstr ""
6968
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
6969
  "nebo z administrace webových stránek (backend)."
6970
 
6971
- #: app/features/mec/notifications.php:1394
6972
- #: app/features/mec/notifications.php:1505
6973
  msgid "Title of event"
6974
  msgstr "Název události"
6975
 
6976
- #: app/features/mec/notifications.php:1395
6977
- #: app/features/mec/notifications.php:1506
6978
  msgid "Link of event"
6979
  msgstr "Odkaz události"
6980
 
6981
- #: app/features/mec/notifications.php:1399
6982
- #: app/features/mec/notifications.php:1510 app/features/notifications.php:148
6983
  msgid "Status of event"
6984
  msgstr "Stav události"
6985
 
6986
- #: app/features/mec/notifications.php:1400
6987
- #: app/features/mec/notifications.php:1511 app/features/mec/settings.php:1008
6988
- #: app/features/mec/settings.php:1012 app/features/notifications.php:149
6989
  msgid "Event Note"
6990
  msgstr "Poznámka události"
6991
 
6992
- #: app/features/mec/notifications.php:1404
6993
- #: app/features/mec/notifications.php:1515
6994
  msgid "Admin events management link."
6995
  msgstr "Odkaz administrátora na správu událostí."
6996
 
6997
- #: app/features/mec/notifications.php:1416 app/libraries/main.php:641
6998
  msgid "User Event Publishing"
6999
  msgstr "Publikování uživatelských událostí"
7000
 
7001
- #: app/features/mec/notifications.php:1421
7002
  msgid "Enable user event publishing notification"
7003
  msgstr "Povolit oznámení o zveřejnění události uživatele"
7004
 
7005
- #: app/features/mec/notifications.php:1423
7006
  #, fuzzy
7007
  #| msgid ""
7008
  #| "It sends after published a new event from frontend event submission or "
@@ -7014,13 +7171,13 @@ msgstr ""
7014
  "Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
7015
  "nebo z administrace webových stránek (backend)."
7016
 
7017
- #: app/features/mec/notifications.php:1525 app/libraries/main.php:657
7018
  #, fuzzy
7019
  #| msgid "Notifications"
7020
  msgid "Notifications Per Event"
7021
  msgstr "Upozornění"
7022
 
7023
- #: app/features/mec/notifications.php:1530
7024
  #, fuzzy
7025
  #| msgid "Notifications"
7026
  msgid "Edit Notifications Per Event"
@@ -7206,8 +7363,8 @@ msgid "You can enable/disable Schema scripts"
7206
  msgstr "Můžete povolit nebo zakázat skripty schématu"
7207
 
7208
  #: app/features/mec/settings.php:137 app/features/mec/settings.php:148
7209
- #: app/features/mec/wizard.php:236 app/libraries/main.php:6629
7210
- #: app/libraries/main.php:6683
7211
  msgid "Weekdays"
7212
  msgstr "Pracovní dny"
7213
 
@@ -7363,7 +7520,7 @@ msgid ""
7363
  "you select independent tags, mec would use its own tags."
7364
  msgstr ""
7365
 
7366
- #: app/features/mec/settings.php:280 app/libraries/main.php:592
7367
  #, fuzzy
7368
  #| msgid "Google Maps Options"
7369
  msgid "Email Options"
@@ -7539,140 +7696,111 @@ msgstr ""
7539
  "jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
7540
  "názvem."
7541
 
7542
- #: app/features/mec/settings.php:551
7543
- msgid "Currency"
7544
- msgstr "Měna"
7545
-
7546
- #: app/features/mec/settings.php:561 app/features/mec/settings.php:566
7547
- msgid "Currency Sign"
7548
- msgstr "Symbol měny"
7549
-
7550
- #: app/features/mec/settings.php:567
7551
- msgid "Default value will be \"currency\" if you leave it empty."
7552
- msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
7553
-
7554
- #: app/features/mec/settings.php:574
7555
- msgid "Currency Position"
7556
- msgstr "Pozice měny"
7557
-
7558
- #: app/features/mec/settings.php:577
7559
- #, fuzzy
7560
- #| msgid "Before $10"
7561
- msgid "$10 (Before)"
7562
- msgstr "Před $10"
7563
-
7564
- #: app/features/mec/settings.php:578
7565
- msgid "$ 10 (Before with Space)"
7566
  msgstr ""
7567
 
7568
- #: app/features/mec/settings.php:579
7569
  #, fuzzy
7570
- #| msgid "After"
7571
- msgid "10$ (After)"
7572
- msgstr "Po"
7573
 
7574
- #: app/features/mec/settings.php:580
7575
- msgid "10 $ (After with Space)"
 
 
 
7576
  msgstr ""
7577
 
7578
- #: app/features/mec/settings.php:585
7579
- msgid "Thousand Separator"
7580
- msgstr "Oddělovač tisíců"
7581
-
7582
- #: app/features/mec/settings.php:591
7583
- msgid "Decimal Separator"
7584
- msgstr "Oddělovač desítel"
7585
-
7586
- #: app/features/mec/settings.php:601
7587
- msgid "No decimal"
7588
- msgstr "Bez desetinných míst"
7589
-
7590
- #: app/features/mec/settings.php:612
7591
  msgid "Enable Google Recaptcha"
7592
  msgstr "Povolit Google Recaptcha"
7593
 
7594
- #: app/features/mec/settings.php:621
7595
  msgid "Enable on booking form"
7596
  msgstr "Povolit rezervační formulář"
7597
 
7598
- #: app/features/mec/settings.php:629
7599
  msgid "Enable on \"Frontend Event Submission\" form"
7600
  msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
7601
 
7602
  # místa
7603
- #: app/features/mec/settings.php:633
7604
  msgid "Site Key"
7605
  msgstr "Klíč webu"
7606
 
7607
- #: app/features/mec/settings.php:639
7608
  msgid "Secret Key"
7609
  msgstr "Tajný klíč"
7610
 
7611
- #: app/features/mec/settings.php:651 app/features/mec/settings.php:659
7612
  msgid "Time Format"
7613
  msgstr "Formát času"
7614
 
7615
- #: app/features/mec/settings.php:654
7616
  msgid "12 hours format with AM/PM"
7617
  msgstr "12 hodinový formát s dop./odp."
7618
 
7619
- #: app/features/mec/settings.php:655
7620
  msgid "24 hours format"
7621
  msgstr "24 hodinový fotmát"
7622
 
7623
- #: app/features/mec/settings.php:660
7624
  msgid "This option, affects the selection of Start/End time."
7625
  msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
7626
 
7627
- #: app/features/mec/settings.php:668
7628
  msgid "Events List Page"
7629
  msgstr "Stránka seznamu událostí"
7630
 
7631
- #: app/features/mec/settings.php:676 app/features/mec/settings.php:688
7632
  #, php-format
7633
  msgid "Put %s shortcode into the page."
7634
  msgstr "Vložte %s na stránku zkrácené kódy."
7635
 
7636
- #: app/features/mec/settings.php:680
7637
  msgid "Add/Edit Events Page"
7638
  msgstr "Přidat / Editovat stránku událostí"
7639
 
7640
- #: app/features/mec/settings.php:692
7641
  #, fuzzy
7642
  #| msgid "On Event Start"
7643
  msgid "New Events Status"
7644
  msgstr "Při spuštění události"
7645
 
7646
- #: app/features/mec/settings.php:695
7647
  #, fuzzy
7648
  #| msgid "WordPress"
7649
  msgid "Let WordPress decide"
7650
  msgstr "WordPress"
7651
 
7652
- #: app/features/mec/settings.php:696 app/libraries/main.php:6905
7653
- #: app/libraries/main.php:6927
7654
  msgid "Pending"
7655
  msgstr "Nevyřízený"
7656
 
7657
- #: app/features/mec/settings.php:697
7658
  msgid "Publish"
7659
  msgstr ""
7660
 
7661
- #: app/features/mec/settings.php:702
7662
  #, fuzzy
7663
  #| msgid "Display Event Price"
7664
  msgid "Display Event Date in List"
7665
  msgstr "Zobrazit cenu události"
7666
 
7667
- #: app/features/mec/settings.php:705 app/libraries/notifications.php:1746
 
7668
  msgid "No"
7669
  msgstr "Ne"
7670
 
7671
- #: app/features/mec/settings.php:706 app/libraries/notifications.php:1746
 
7672
  msgid "Yes"
7673
  msgstr "Ano"
7674
 
7675
- #: app/features/mec/settings.php:723
7676
  #, fuzzy
7677
  #| msgid ""
7678
  #| "User redirects to this page after booking. Leave it empty if you want to "
@@ -7684,119 +7812,136 @@ msgstr ""
7684
  "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
7685
  "vypnout, ponechte ji prázdnou."
7686
 
7687
- #: app/features/mec/settings.php:730 app/features/mec/settings.php:735
7688
  #, fuzzy
7689
  #| msgid "Thank You Page"
7690
  msgid "Thank You Page URL"
7691
  msgstr "Stránka s poděkováním"
7692
 
7693
- #: app/features/mec/settings.php:736
7694
  msgid "If filled it will use instead of thank you page set above."
7695
  msgstr ""
7696
 
7697
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:764
7698
  #, fuzzy
7699
  #| msgid "Maximum file size"
7700
  msgid "Maximum File Size"
7701
  msgstr "Maximální velikost souboru"
7702
 
7703
- #: app/features/mec/settings.php:761
7704
  msgid "in KB"
7705
  msgstr ""
7706
 
7707
- #: app/features/mec/settings.php:765
7708
  msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
7709
  msgstr ""
7710
 
7711
- #: app/features/mec/settings.php:774
 
 
 
 
 
 
 
 
 
 
7712
  #, fuzzy
7713
  #| msgid "Enable event submission by guest (Not logged-in) users"
7714
  msgid "Enable event submission by guest (Not logged in) users"
7715
  msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
7716
 
7717
- #: app/features/mec/settings.php:781
7718
  msgid "Enable mandatory email and name for guest user"
7719
  msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
7720
 
7721
- #: app/features/mec/settings.php:787
7722
  msgid ""
7723
  "Automatically create users after event publish and assign event to the "
7724
  "created user"
7725
  msgstr ""
7726
 
7727
- #: app/features/mec/settings.php:792
7728
  msgid "Frontend Event Submission Sections"
7729
  msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
7730
 
7731
- #: app/features/mec/settings.php:796
7732
  #, fuzzy
7733
  #| msgid "Event Details"
7734
  msgid "Event Data Fields"
7735
  msgstr "Podrobnosti události"
7736
 
7737
- #: app/features/mec/settings.php:820 app/widgets/single.php:121
7738
- msgid "Event Categories"
7739
- msgstr "Kategorie události"
7740
-
7741
- #: app/features/mec/settings.php:826
7742
- msgid "Event Labels"
7743
- msgstr "Štítky události"
7744
-
7745
- #: app/features/mec/settings.php:837
7746
  msgid ""
7747
  "This feature adds the ability to hide the current event to all MEC "
7748
  "Shortcodes."
7749
  msgstr ""
7750
 
7751
- #: app/features/mec/settings.php:851
7752
- msgid "Event Tags"
7753
- msgstr "Tagy události"
7754
-
7755
- #: app/features/mec/settings.php:863 app/widgets/single.php:125
7756
  msgid "Event Organizer"
7757
  msgstr "Organizátor události"
7758
 
7759
- #: app/features/mec/settings.php:890 app/features/occurrences.php:389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7760
  #, fuzzy
7761
  #| msgid "Total booking limits"
7762
  msgid "Total Booking Limit"
7763
  msgstr "Celkové limity rezervace"
7764
 
7765
- #: app/features/mec/settings.php:896
7766
  #, fuzzy
7767
  #| msgid "Discount"
7768
  msgid "Discount Per User Roles"
7769
  msgstr "Sleva"
7770
 
7771
- #: app/features/mec/settings.php:932
7772
  #, fuzzy
7773
  #| msgid "Ticket Variations / Options"
7774
  msgid "Ticket Options"
7775
  msgstr "Varianty vstupenky / možnosti"
7776
 
7777
- #: app/features/mec/settings.php:944
7778
  msgid "Fees / Taxes Options"
7779
  msgstr "Možnosti Poplatky / Daně"
7780
 
7781
- #: app/features/mec/settings.php:959 app/features/schema.php:64
7782
  #, fuzzy
7783
  #| msgid "Schema"
7784
  msgid "SEO Schema"
7785
  msgstr "Schéma"
7786
 
7787
- #: app/features/mec/settings.php:991 app/widgets/single.php:165
7788
  #, fuzzy
7789
  #| msgid "Edit Event"
7790
  msgid "Virtual Event"
7791
  msgstr "Editace události"
7792
 
7793
- #: app/features/mec/settings.php:1000
7794
  #, fuzzy
7795
  #| msgid "Book Event"
7796
  msgid "Zoom Event"
7797
  msgstr "Rezervovat událost"
7798
 
7799
- #: app/features/mec/settings.php:1013
7800
  #, php-format
7801
  msgid ""
7802
  "Users can put a note for editors while they're submitting the event. Also "
@@ -7807,48 +7952,42 @@ msgstr ""
7807
  "oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
7808
  "mail s poznámkami uživatelů."
7809
 
7810
- #: app/features/mec/settings.php:1020 app/features/mec/settings.php:1028
7811
  #, fuzzy
7812
  #| msgid "Visibility"
7813
  msgid "Note visibility"
7814
  msgstr "Viditelnost"
7815
 
7816
- #: app/features/mec/settings.php:1023
7817
  msgid "Always"
7818
  msgstr "Vždy"
7819
 
7820
- #: app/features/mec/settings.php:1024
7821
  msgid "While event is not published"
7822
  msgstr "I když událost není zveřejněna"
7823
 
7824
- #: app/features/mec/settings.php:1029
7825
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
7826
  msgstr ""
7827
  "Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
7828
  "(frontend) a Upravit událost v administraci stránek (backend)."
7829
 
7830
- #: app/features/mec/settings.php:1037
7831
  #, fuzzy
7832
  #| msgid "Required Field"
7833
  msgid "Required Fields"
7834
  msgstr "Požadovaná pole"
7835
 
7836
- #: app/features/mec/settings.php:1040
7837
- #, fuzzy
7838
- #| msgid "Description"
7839
- msgid "Event Description"
7840
- msgstr "Popis"
7841
-
7842
- #: app/features/mec/settings.php:1044 app/libraries/main.php:6652
7843
- #: app/libraries/main.php:6701
7844
  msgid "More Info Link"
7845
  msgstr "Odkaz na více informací"
7846
 
7847
- #: app/features/mec/settings.php:1057 app/libraries/main.php:589
7848
  msgid "User Profile"
7849
  msgstr "Uživatelský profil"
7850
 
7851
- #: app/features/mec/settings.php:1059
7852
  #, fuzzy, php-format
7853
  #| msgid ""
7854
  #| "Put %s shortcode into your desired page. Then users are able to see "
@@ -7860,13 +7999,13 @@ msgstr ""
7860
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
7861
  "historii svých rezervací."
7862
 
7863
- #: app/features/mec/settings.php:1064 app/libraries/main.php:590
7864
  #, fuzzy
7865
  #| msgid "Hide Events"
7866
  msgid "User Events"
7867
  msgstr "Skrýt události"
7868
 
7869
- #: app/features/mec/settings.php:1066
7870
  #, fuzzy, php-format
7871
  #| msgid ""
7872
  #| "Put %s shortcode into your desired page. Then users are able to search "
@@ -7878,11 +8017,11 @@ msgstr ""
7878
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
7879
  "události"
7880
 
7881
- #: app/features/mec/settings.php:1078 app/libraries/main.php:591
7882
  msgid "Search Bar"
7883
  msgstr "Vyhledávací panel"
7884
 
7885
- #: app/features/mec/settings.php:1080
7886
  #, php-format
7887
  msgid ""
7888
  "Put %s shortcode into your desired page. Then users are able to search events"
@@ -7890,15 +8029,15 @@ msgstr ""
7890
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
7891
  "události"
7892
 
7893
- #: app/features/mec/settings.php:1085
7894
  msgid "Ajax Live mode"
7895
  msgstr "Ajax Live mód"
7896
 
7897
- #: app/features/mec/settings.php:1089
7898
  msgid "Ajax mode"
7899
  msgstr "Ajax mód"
7900
 
7901
- #: app/features/mec/settings.php:1090
7902
  #, fuzzy
7903
  #| msgid ""
7904
  #| "if you enable this option, search button disappeared and to use this "
@@ -7910,47 +8049,47 @@ msgstr ""
7910
  "pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
7911
  "této funkce musí být povoleno pole pro zadávání textu."
7912
 
7913
- #: app/features/mec/settings.php:1098
7914
  msgid "Modern Type"
7915
  msgstr "Moderní typ"
7916
 
7917
- #: app/features/mec/settings.php:1102
7918
  msgid "Search bar fields"
7919
  msgstr "Pole vyhledávacího panelu"
7920
 
7921
- #: app/features/mec/settings.php:1144
7922
  msgid "Text input"
7923
  msgstr "Zadávání textu"
7924
 
7925
- #: app/features/mec/settings.php:1156
7926
  msgid "Enable Mailchimp Integration"
7927
  msgstr "Povolit integraci Mailchimp"
7928
 
7929
- #: app/features/mec/settings.php:1161 app/features/mec/settings.php:1166
7930
- #: app/features/mec/settings.php:1221 app/features/mec/settings.php:1245
7931
- #: app/features/mec/settings.php:1269 app/features/mec/settings.php:1336
7932
  msgid "API Key"
7933
  msgstr "API Key"
7934
 
7935
- #: app/features/mec/settings.php:1174 app/features/mec/settings.php:1179
7936
- #: app/features/mec/settings.php:1227 app/features/mec/settings.php:1342
7937
- #: app/features/mec/settings.php:1360 app/features/mec/settings.php:1408
7938
  msgid "List ID"
7939
  msgstr "ID seznamu"
7940
 
7941
- #: app/features/mec/settings.php:1187 app/features/mec/settings.php:1195
7942
  msgid "Subscription Status"
7943
  msgstr "Stav odběru"
7944
 
7945
- #: app/features/mec/settings.php:1190
7946
  msgid "Subscribe automatically"
7947
  msgstr "Odebírat automaticky"
7948
 
7949
- #: app/features/mec/settings.php:1191
7950
  msgid "Subscribe by verification"
7951
  msgstr "Přihlaste se k odběru pomocí ověření"
7952
 
7953
- #: app/features/mec/settings.php:1196
7954
  #, fuzzy
7955
  #| msgid ""
7956
  #| "If you choose \"Subscribe by verification\" then an email will send to "
@@ -7962,152 +8101,152 @@ msgstr ""
7962
  "Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
7963
  "uživateli mailchimp k ověření oběru."
7964
 
7965
- #: app/features/mec/settings.php:1205
7966
  msgid "Enable Segment Creation by Event Title and Booking Date"
7967
  msgstr ""
7968
 
7969
- #: app/features/mec/settings.php:1212 app/libraries/main.php:594
7970
  #, fuzzy
7971
  #| msgid "Mailchimp Integration"
7972
  msgid "Campaign Monitor Integration"
7973
  msgstr "Integrace Mailchimp"
7974
 
7975
- #: app/features/mec/settings.php:1216
7976
  #, fuzzy
7977
  #| msgid "Enable Mailchimp Integration"
7978
  msgid "Enable Campaign Monitor Integration"
7979
  msgstr "Povolit integraci Mailchimp"
7980
 
7981
- #: app/features/mec/settings.php:1236 app/libraries/main.php:595
7982
  #, fuzzy
7983
  #| msgid "Mailchimp Integration"
7984
  msgid "MailerLite Integration"
7985
  msgstr "Integrace Mailchimp"
7986
 
7987
- #: app/features/mec/settings.php:1240
7988
  #, fuzzy
7989
  #| msgid "Enable Mailchimp Integration"
7990
  msgid "Enable MailerLite Integration"
7991
  msgstr "Povolit integraci Mailchimp"
7992
 
7993
- #: app/features/mec/settings.php:1251
7994
  #, fuzzy
7995
  #| msgid "Group URL"
7996
  msgid "Group ID"
7997
  msgstr "Group URL"
7998
 
7999
- #: app/features/mec/settings.php:1260 app/libraries/main.php:596
8000
  #, fuzzy
8001
  #| msgid "Enable Mailchimp Integration"
8002
  msgid "Constant Contact Integration"
8003
  msgstr "Povolit integraci Mailchimp"
8004
 
8005
- #: app/features/mec/settings.php:1264
8006
  #, fuzzy
8007
  #| msgid "Enable Mailchimp Integration"
8008
  msgid "Enable constantcontact Integration"
8009
  msgstr "Povolit integraci Mailchimp"
8010
 
8011
- #: app/features/mec/settings.php:1275
8012
  #, fuzzy
8013
  #| msgid "Facebook Page Access Token"
8014
  msgid "Access Token"
8015
  msgstr "Token pro přístup na stránku Facebook"
8016
 
8017
- #: app/features/mec/settings.php:1295 app/features/mec/settings.php:1310
8018
  #, fuzzy
8019
  #| msgid "Select icon"
8020
  msgid "Select List"
8021
  msgstr "Vybrat ikonu"
8022
 
8023
- #: app/features/mec/settings.php:1311
8024
  msgid ""
8025
  "Please fill in the API key and Access Token field and save settings. after "
8026
  "that, please refresh the page and select a list."
8027
  msgstr ""
8028
 
8029
- #: app/features/mec/settings.php:1321 app/libraries/main.php:597
8030
  #, fuzzy
8031
  #| msgid "Mailchimp Integration"
8032
  msgid "Active Campaign Integration"
8033
  msgstr "Integrace Mailchimp"
8034
 
8035
- #: app/features/mec/settings.php:1325
8036
  #, fuzzy
8037
  #| msgid "Enable Mailchimp Integration"
8038
  msgid "Enable Active Campaign Integration"
8039
  msgstr "Povolit integraci Mailchimp"
8040
 
8041
- #: app/features/mec/settings.php:1330
8042
  msgid "API URL"
8043
  msgstr ""
8044
 
8045
- #: app/features/mec/settings.php:1351 app/libraries/main.php:598
8046
  #, fuzzy
8047
  #| msgid "Mailchimp Integration"
8048
  msgid "AWeber Integration"
8049
  msgstr "Integrace Mailchimp"
8050
 
8051
- #: app/features/mec/settings.php:1355
8052
  #, fuzzy
8053
  #| msgid "Enable Mailchimp Integration"
8054
  msgid "Enable AWeber Integration"
8055
  msgstr "Povolit integraci Mailchimp"
8056
 
8057
- #: app/features/mec/settings.php:1363
8058
  #, fuzzy, php-format
8059
  #| msgid "Third Party plugin is not installed and activated!"
8060
  msgid "%s plugin should be installed and connected to your AWeber account."
8061
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
8062
 
8063
- #: app/features/mec/settings.php:1364
8064
  #, php-format
8065
  msgid "More information about the list ID can be found %s."
8066
  msgstr ""
8067
 
8068
- #: app/features/mec/settings.php:1371 app/libraries/main.php:599
8069
  #, fuzzy
8070
  #| msgid "Mailchimp Integration"
8071
  msgid "MailPoet Integration"
8072
  msgstr "Integrace Mailchimp"
8073
 
8074
- #: app/features/mec/settings.php:1375
8075
  #, fuzzy
8076
  #| msgid "Enable Mailchimp Integration"
8077
  msgid "Enable MailPoet Integration"
8078
  msgstr "Povolit integraci Mailchimp"
8079
 
8080
- #: app/features/mec/settings.php:1381
8081
  #: app/skins/default_full_calendar/tpl.php:78
8082
  #: app/skins/full_calendar/tpl.php:126
8083
  msgid "List"
8084
  msgstr "Seznam"
8085
 
8086
- #: app/features/mec/settings.php:1392
8087
  #, fuzzy, php-format
8088
  #| msgid "Third Party plugin is not installed and activated!"
8089
  msgid "%s plugin should be installed and activated."
8090
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
8091
 
8092
- #: app/features/mec/settings.php:1397 app/libraries/main.php:600
8093
  #, fuzzy
8094
  #| msgid "Mailchimp Integration"
8095
  msgid "Sendfox Integration"
8096
  msgstr "Integrace Mailchimp"
8097
 
8098
- #: app/features/mec/settings.php:1401
8099
  #, fuzzy
8100
  #| msgid "Enable Mailchimp Integration"
8101
  msgid "Enable Sendfox Integration"
8102
  msgstr "Povolit integraci Mailchimp"
8103
 
8104
- #: app/features/mec/settings.php:1418
8105
  #, fuzzy, php-format
8106
  #| msgid "Third Party plugin is not installed and activated!"
8107
  msgid "%s plugin should be installed and connected to your Sendfox account."
8108
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
8109
 
8110
- #: app/features/mec/single.php:38 app/libraries/main.php:604
8111
  msgid "Single Event Page"
8112
  msgstr "Stránka jedné události"
8113
 
@@ -8272,57 +8411,63 @@ msgid ""
8272
  "Alphabetic type."
8273
  msgstr ""
8274
 
8275
- #: app/features/mec/single.php:202 app/libraries/main.php:605
 
 
 
 
 
 
8276
  #, fuzzy
8277
  #| msgid "Custom Styles"
8278
  msgid "Custom Fields"
8279
  msgstr "Vlastní styly"
8280
 
8281
- #: app/features/mec/single.php:241 app/libraries/main.php:3483
8282
  msgid "URL"
8283
  msgstr ""
8284
 
8285
- #: app/features/mec/single.php:291
8286
  #, fuzzy
8287
  #| msgid "Don't show map in single event page"
8288
  msgid "Display Event Fields in Single Event Pages"
8289
  msgstr "Nezobrazovat mapu na jednostránkové události"
8290
 
8291
- #: app/features/mec/single.php:302 app/features/mec/wizard.php:393
8292
  msgid "Show countdown module on event page"
8293
  msgstr "Zobrazit modul odpočítávání na stránce události"
8294
 
8295
- #: app/features/mec/single.php:307 app/features/mec/wizard.php:397
8296
  msgid "Countdown Style"
8297
  msgstr "Styl Odpočítávání"
8298
 
8299
- #: app/features/mec/single.php:310 app/features/mec/wizard.php:400
8300
  msgid "Plain Style"
8301
  msgstr "Prostý styl"
8302
 
8303
- #: app/features/mec/single.php:311 app/features/mec/wizard.php:401
8304
  msgid "Flip Style"
8305
  msgstr "Styl překlopení"
8306
 
8307
- #: app/features/mec/single.php:319 app/features/mec/single.php:326
8308
  msgid "Exceptional days (Exclude Dates)"
8309
  msgstr "Výjimečné dny (kromě dat)"
8310
 
8311
- #: app/features/mec/single.php:323
8312
  msgid "Show exceptional days option on Add/Edit events page"
8313
  msgstr "Zobrazit možnost výjimečných dnů na stránce Přidat / Upravit události"
8314
 
8315
- #: app/features/mec/single.php:327
8316
  msgid ""
8317
  "Using this option you can exclude certain days from event occurrence dates."
8318
  msgstr ""
8319
  "Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
8320
 
8321
- #: app/features/mec/single.php:336 app/libraries/main.php:608
8322
  msgid "Additional Organizers"
8323
  msgstr "Další organizátoři"
8324
 
8325
- #: app/features/mec/single.php:340
8326
  msgid ""
8327
  "Show additional organizers option on Add/Edit events page and single event "
8328
  "page."
@@ -8330,15 +8475,15 @@ msgstr ""
8330
  "Zobrazit další možnost organizátorů na stránce Přidat / Upravit události a "
8331
  "na stránce jedné události."
8332
 
8333
- #: app/features/mec/single.php:347
8334
  msgid "Enable Description For Other Organizers."
8335
  msgstr ""
8336
 
8337
- #: app/features/mec/single.php:354 app/libraries/main.php:609
8338
  msgid "Additional Locations"
8339
  msgstr "Další umístění"
8340
 
8341
- #: app/features/mec/single.php:358
8342
  msgid ""
8343
  "Show additional locations option on Add/Edit events page and single event "
8344
  "page."
@@ -8346,33 +8491,33 @@ msgstr ""
8346
  "Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
8347
  "jediné události."
8348
 
8349
- #: app/features/mec/single.php:365
8350
  msgid "Enable Description For Other Locations."
8351
  msgstr ""
8352
 
8353
- #: app/features/mec/single.php:372 app/libraries/main.php:610
8354
  #: app/skins/single.php:181 app/skins/single.php:448
8355
  msgid "Related Events"
8356
  msgstr "Související události"
8357
 
8358
- #: app/features/mec/single.php:376 app/features/mec/wizard.php:411
8359
  msgid "Display related events based on taxonomy in single event page."
8360
  msgstr ""
8361
  "Zobrazte související události na základě taxonomie na stránce s jednou "
8362
  "událostí."
8363
 
8364
- #: app/features/mec/single.php:382 app/features/mec/single.php:424
8365
  #: app/features/mec/wizard.php:415 app/features/mec/wizard.php:454
8366
  msgid "Select Taxonomies:"
8367
  msgstr "Vyberte taxonomie:"
8368
 
8369
- #: app/features/mec/single.php:414 app/libraries/main.php:611
8370
  #, fuzzy
8371
  #| msgid "Next/Previous Buttons"
8372
  msgid "Next / Previous Events"
8373
  msgstr "Tlačítka Další / Předchozí"
8374
 
8375
- #: app/features/mec/single.php:418 app/features/mec/wizard.php:449
8376
  #, fuzzy
8377
  #| msgid "Display related events based on taxonomy in single event page."
8378
  msgid "Display next / previous events based on taxonomy in single event page."
@@ -8380,21 +8525,21 @@ msgstr ""
8380
  "Zobrazte související události na základě taxonomie na stránce s jednou "
8381
  "událostí."
8382
 
8383
- #: app/features/mec/single.php:456 app/libraries/main.php:658
8384
  #, fuzzy
8385
  #| msgid "Next Occurrence"
8386
  msgid "Edit Per Occurrences"
8387
  msgstr "Další výskyt"
8388
 
8389
- #: app/features/mec/single.php:460
8390
  msgid "Ability to edit some event information per occurrence"
8391
  msgstr ""
8392
 
8393
- #: app/features/mec/single.php:466
8394
  msgid "Content only for bookers"
8395
  msgstr ""
8396
 
8397
- #: app/features/mec/single.php:469
8398
  #, php-format
8399
  msgid ""
8400
  "if you need to show a certain content only for booker users, you can enclose "
@@ -8429,7 +8574,7 @@ msgid "Default Font"
8429
  msgstr "Výchozí písmo"
8430
 
8431
  #: app/features/mec/styling.php:54 app/features/mec/support.php:52
8432
- #: app/libraries/main.php:860
8433
  msgid "Styling Options"
8434
  msgstr "Možnosti stylování"
8435
 
@@ -8624,7 +8769,7 @@ msgstr "Vytvářejte události pomocí Tvůrce stránek"
8624
  msgid "MEC Settings"
8625
  msgstr "MEC - Nastavení"
8626
 
8627
- #: app/features/mec/support-page.php:99 app/libraries/main.php:711
8628
  msgid "Single Event"
8629
  msgstr "Jedna událost"
8630
 
@@ -8984,7 +9129,7 @@ msgstr ""
8984
  msgid "Create a support ticket"
8985
  msgstr "Vytvořte lístek podpory"
8986
 
8987
- #: app/features/mec/support.php:59 app/libraries/main.php:867
8988
  msgid "Custom CSS"
8989
  msgstr "Vlastní CSS"
8990
 
@@ -9113,13 +9258,13 @@ msgstr ""
9113
  msgid "Attendee Price (for booking confirmation notification)"
9114
  msgstr "Povolit upozornění na připomenutí rezervace"
9115
 
9116
- #: app/features/notifications.php:160
9117
  #, fuzzy
9118
  #| msgid "Booking Verification"
9119
  msgid "Booking Notification"
9120
  msgstr "Ověření rezervace"
9121
 
9122
- #: app/features/notifications.php:181
9123
  #, fuzzy
9124
  #| msgid "Notifications"
9125
  msgid "Admin Notification"
@@ -9148,73 +9293,79 @@ msgstr "Další výskyt"
9148
  msgid "Delete"
9149
  msgstr ""
9150
 
9151
- #: app/features/occurrences.php:397 app/features/schema.php:70
 
 
 
 
 
 
9152
  #, fuzzy
9153
  #| msgid "Hourly Schedule"
9154
  msgid "Scheduled"
9155
  msgstr "Hodinový rozvrh"
9156
 
9157
- #: app/features/occurrences.php:399 app/features/schema.php:72
9158
  #, fuzzy
9159
  #| msgid "Export certain events"
9160
  msgid "For active events!"
9161
  msgstr "Export určitých událostí"
9162
 
9163
- #: app/features/occurrences.php:404 app/features/schema.php:77
9164
  msgid "Postponed"
9165
  msgstr ""
9166
 
9167
- #: app/features/occurrences.php:406 app/features/schema.php:79
9168
  msgid "If you postponed an event then you can use this status!"
9169
  msgstr ""
9170
 
9171
- #: app/features/occurrences.php:411 app/features/schema.php:84
9172
  #, fuzzy
9173
  #| msgid "Canceled"
9174
  msgid "Cancelled"
9175
  msgstr "Zrušená"
9176
 
9177
- #: app/features/occurrences.php:413 app/features/schema.php:86
9178
  msgid "If you cancelled an event then you should select this status!"
9179
  msgstr ""
9180
 
9181
- #: app/features/occurrences.php:417 app/features/schema.php:90
9182
  #, fuzzy
9183
  #| msgid "Booking Cancellation"
9184
  msgid "Reason for Cancellation"
9185
  msgstr "Zrušení rezervace"
9186
 
9187
- #: app/features/occurrences.php:418 app/features/schema.php:91
9188
  #, fuzzy
9189
  #| msgid "Please paste your options here"
9190
  msgid "Please write your reasons here"
9191
  msgstr "Vložte prosím své možnosti sem"
9192
 
9193
- #: app/features/occurrences.php:421 app/features/schema.php:94
9194
  msgid "This will be displayed in Single Event and Shortcode/Calendar Pages"
9195
  msgstr ""
9196
 
9197
- #: app/features/occurrences.php:426 app/features/schema.php:104
9198
  #, fuzzy
9199
  #| msgid "Don't show map in single event page"
9200
  msgid "Display in single event page"
9201
  msgstr "Nezobrazovat mapu na jednostránkové události"
9202
 
9203
- #: app/features/occurrences.php:432 app/features/schema.php:110
9204
  msgid "Moved Online"
9205
  msgstr ""
9206
 
9207
- #: app/features/occurrences.php:434 app/features/schema.php:112
9208
  msgid "For the events that moved online!"
9209
  msgstr ""
9210
 
9211
- #: app/features/occurrences.php:438 app/features/schema.php:116
9212
  #, fuzzy
9213
  #| msgid "Invoice Link"
9214
  msgid "Online Link"
9215
  msgstr "Odkaz na fakturu"
9216
 
9217
- #: app/features/occurrences.php:442 app/features/schema.php:120
9218
  msgid ""
9219
  "Link to join online event. If you leave it empty event link will be used."
9220
  msgstr ""
@@ -9228,7 +9379,7 @@ msgid "Insert organizer email address."
9228
  msgstr "Vložit email organizátora."
9229
 
9230
  #: app/features/organizers.php:119 app/features/organizers.php:156
9231
- #: app/features/organizers.php:292 app/features/popup/event.php:196
9232
  msgid "Link to organizer page"
9233
  msgstr "Odkaz na stránku organizátora"
9234
 
@@ -9242,63 +9393,63 @@ msgstr ""
9242
  msgid "Contact info"
9243
  msgstr "Kontaktní informace"
9244
 
9245
- #: app/features/organizers.php:261
9246
  #, php-format
9247
  msgid "Event Main %s"
9248
  msgstr "Hlavní událost %s"
9249
 
9250
- #: app/features/organizers.php:264 app/features/popup/event.php:164
9251
  msgid "Hide organizer"
9252
  msgstr "Skrýt organizátora"
9253
 
9254
- #: app/features/organizers.php:265 app/features/popup/event.php:165
9255
  msgid "Insert a new organizer"
9256
  msgstr "Vložit nového organizátora"
9257
 
9258
- #: app/features/organizers.php:273 app/features/popup/event.php:173
9259
  msgid "Choose one of saved organizers or insert new one below."
9260
  msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
9261
 
9262
- #: app/features/organizers.php:284 app/features/popup/event.php:186
9263
  msgid "Phone number."
9264
  msgstr "Telefonní číslo."
9265
 
9266
- #: app/features/organizers.php:285 app/features/popup/event.php:187
9267
  msgid "eg. +1 (234) 5678"
9268
  msgstr "např. + 420 123 456 789"
9269
 
9270
- #: app/features/organizers.php:288 app/features/popup/event.php:191
9271
  msgid "Email address."
9272
  msgstr "Emailová adresa."
9273
 
9274
- #: app/features/organizers.php:289 app/features/popup/event.php:192
9275
  msgid "eg. john@smith.com"
9276
  msgstr "např. info@itreseni.cz"
9277
 
9278
- #: app/features/organizers.php:293 app/features/popup/event.php:197
9279
  msgid "eg. https://webnus.net"
9280
  msgstr "např. https://webnus.net"
9281
 
9282
- #: app/features/organizers.php:313 app/libraries/main.php:6657
9283
- #: app/libraries/main.php:6704 app/skins/single.php:1344
9284
  msgid "Other Organizers"
9285
  msgstr "Další organizátoři"
9286
 
9287
- #: app/features/organizers.php:315
9288
  msgid ""
9289
  "You can select extra organizers in addition to main organizer if you like."
9290
  msgstr ""
9291
  "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
9292
 
9293
- #: app/features/organizers.php:324 app/features/organizers.php:332
9294
- #: app/libraries/main.php:3364 app/libraries/main.php:3394
9295
- #: app/libraries/main.php:3423 app/libraries/main.php:3452
9296
- #: app/libraries/main.php:3482 app/libraries/main.php:3512
9297
- #: app/libraries/main.php:3541 app/libraries/main.php:3571
9298
- #: app/libraries/main.php:3601 app/libraries/main.php:3631
9299
- #: app/libraries/main.php:3654 app/libraries/main.php:3701
9300
- #: app/libraries/main.php:3748 app/libraries/main.php:3805
9301
- #: app/libraries/main.php:3854
9302
  msgid "Sort"
9303
  msgstr "Seřadit"
9304
 
@@ -9482,11 +9633,11 @@ msgstr "Prosím %s/%s za účelem zobrazení vašich rezervací / profilu."
9482
  msgid "#"
9483
  msgstr "#"
9484
 
9485
- #: app/features/profile/profile.php:39 app/libraries/main.php:3829
9486
  msgid "Status"
9487
  msgstr "Stav"
9488
 
9489
- #: app/features/profile/profile.php:42 app/libraries/main.php:2803
9490
  msgid "Attendees"
9491
  msgstr "Účastníci"
9492
 
@@ -9561,11 +9712,11 @@ msgstr "Vložte email řečníka."
9561
 
9562
  #: app/features/speakers.php:135 app/features/speakers.php:208
9563
  #: app/skins/single.php:1314 app/skins/single.php:1377
9564
- #: app/skins/single/default.php:251 app/skins/single/default.php:322
9565
- #: app/skins/single/default.php:490 app/skins/single/default.php:561
9566
  #: app/skins/single/m1.php:126 app/skins/single/m1.php:181
9567
  #: app/skins/single/m2.php:49 app/skins/single/m2.php:104
9568
- #: app/skins/single/modern.php:75 app/skins/single/modern.php:133
9569
  msgid "Website"
9570
  msgstr "Webová stránka"
9571
 
@@ -9635,9 +9786,9 @@ msgstr ""
9635
  msgid "Please %s/%s in order to see your own events."
9636
  msgstr "Prosím %s/%s za účelem odeslání nových událostí."
9637
 
9638
- #: app/features/wc.php:103 app/libraries/notifications.php:1346
9639
- #: app/libraries/notifications.php:1361 app/libraries/notifications.php:1372
9640
- #: app/libraries/notifications.php:1651 app/libraries/notifications.php:1652
9641
  #, php-format
9642
  msgid "%s to %s"
9643
  msgstr ""
@@ -9685,59 +9836,59 @@ msgctxt "plugin link"
9685
  msgid "Upgrade"
9686
  msgstr "Upgrade"
9687
 
9688
- #: app/libraries/factory.php:380
9689
  msgid "day"
9690
  msgstr "den"
9691
 
9692
- #: app/libraries/factory.php:381 app/modules/countdown/details.php:142
9693
  #: app/skins/available_spot/tpl.php:138 app/skins/countdown/tpl.php:120
9694
  #: app/skins/countdown/tpl.php:166 app/skins/countdown/tpl.php:217
9695
  msgid "days"
9696
  msgstr "dny"
9697
 
9698
- #: app/libraries/factory.php:382
9699
  msgid "hour"
9700
  msgstr "hodina"
9701
 
9702
- #: app/libraries/factory.php:383 app/modules/countdown/details.php:149
9703
  #: app/skins/available_spot/tpl.php:142 app/skins/countdown/tpl.php:126
9704
  #: app/skins/countdown/tpl.php:172 app/skins/countdown/tpl.php:223
9705
  msgid "hours"
9706
  msgstr "hodiny"
9707
 
9708
- #: app/libraries/factory.php:384
9709
  msgid "minute"
9710
  msgstr "minuta"
9711
 
9712
- #: app/libraries/factory.php:385 app/modules/countdown/details.php:156
9713
  #: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:132
9714
  #: app/skins/countdown/tpl.php:178 app/skins/countdown/tpl.php:229
9715
  msgid "minutes"
9716
  msgstr "minuty"
9717
 
9718
- #: app/libraries/factory.php:386
9719
  msgid "second"
9720
  msgstr "vteřina"
9721
 
9722
- #: app/libraries/factory.php:387 app/modules/countdown/details.php:163
9723
  #: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:138
9724
  #: app/skins/countdown/tpl.php:184 app/skins/countdown/tpl.php:235
9725
  msgid "seconds"
9726
  msgstr "vteřiny"
9727
 
9728
- #: app/libraries/factory.php:433
9729
  msgid "MEC Single Sidebar"
9730
  msgstr "MEC Postranní panel"
9731
 
9732
- #: app/libraries/factory.php:434
9733
  msgid "Custom sidebar for single and modal page of MEC."
9734
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
9735
 
9736
- #: app/libraries/factory.php:1176
9737
  msgid "Notice:"
9738
  msgstr ""
9739
 
9740
- #: app/libraries/factory.php:1177
9741
  msgid "This update includes only bug fixes."
9742
  msgstr ""
9743
 
@@ -9780,33 +9931,33 @@ msgstr "Do např. 8:45"
9780
  msgid "New Day"
9781
  msgstr "Nový den"
9782
 
9783
- #: app/libraries/main.php:362 app/libraries/main.php:2162
9784
- #: app/libraries/main.php:2187
9785
  msgid "Agenda View"
9786
  msgstr "Zobrazení agendy"
9787
 
9788
- #: app/libraries/main.php:363 app/libraries/main.php:2153
9789
- #: app/libraries/main.php:2178
9790
  msgid "Full Calendar"
9791
  msgstr "Plný kalendář"
9792
 
9793
- #: app/libraries/main.php:365 app/libraries/main.php:2155
9794
- #: app/libraries/main.php:2180
9795
  msgid "Calendar/Monthly View"
9796
  msgstr "Kalendář / zobrazení měsíce"
9797
 
9798
- #: app/libraries/main.php:368 app/libraries/main.php:2158
9799
- #: app/libraries/main.php:2183
9800
  msgid "Timetable View"
9801
  msgstr "Zobrazení rozvrhu"
9802
 
9803
- #: app/libraries/main.php:369 app/libraries/main.php:2159
9804
- #: app/libraries/main.php:2184
9805
  msgid "Masonry View"
9806
  msgstr "Zobrazení zdi"
9807
 
9808
- #: app/libraries/main.php:370 app/libraries/main.php:2163
9809
- #: app/libraries/main.php:2188
9810
  msgid "Map View"
9811
  msgstr "Zobrazení mapy"
9812
 
@@ -9837,58 +9988,58 @@ msgstr "Zobrazení posuvníku"
9837
  msgid "Timeline View"
9838
  msgstr "Zobrazení rozvrhu"
9839
 
9840
- #: app/libraries/main.php:436 app/libraries/main.php:6631
9841
- #: app/libraries/main.php:6685
9842
  msgid "SU"
9843
  msgstr "NE"
9844
 
9845
- #: app/libraries/main.php:437 app/libraries/main.php:6632
9846
- #: app/libraries/main.php:6686
9847
  msgid "MO"
9848
  msgstr "PO"
9849
 
9850
- #: app/libraries/main.php:438 app/libraries/main.php:6633
9851
- #: app/libraries/main.php:6687
9852
  msgid "TU"
9853
  msgstr "ÚT"
9854
 
9855
- #: app/libraries/main.php:439 app/libraries/main.php:6634
9856
- #: app/libraries/main.php:6688
9857
  msgid "WE"
9858
  msgstr "ST"
9859
 
9860
- #: app/libraries/main.php:440 app/libraries/main.php:6635
9861
- #: app/libraries/main.php:6689
9862
  msgid "TH"
9863
  msgstr "ČT"
9864
 
9865
- #: app/libraries/main.php:441 app/libraries/main.php:6636
9866
- #: app/libraries/main.php:6690
9867
  msgid "FR"
9868
  msgstr "PÁ"
9869
 
9870
- #: app/libraries/main.php:442 app/libraries/main.php:6637
9871
- #: app/libraries/main.php:6691
9872
  msgid "SA"
9873
  msgstr "SO"
9874
 
9875
- #: app/libraries/main.php:621
9876
  msgid "Upload Field"
9877
  msgstr "Nahrát pole"
9878
 
9879
- #: app/libraries/main.php:659
9880
  msgid "Only For Bookers"
9881
  msgstr ""
9882
 
9883
- #: app/libraries/main.php:780
9884
  msgid "Modules"
9885
  msgstr "Moduly"
9886
 
9887
- #: app/libraries/main.php:951
9888
  msgid "New Addons For MEC! Now Customize MEC in Elementor"
9889
  msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
9890
 
9891
- #: app/libraries/main.php:958
9892
  msgid ""
9893
  "The time has come at last, and the new practical add-ons for MEC have been "
9894
  "released. This is a revolution in the world of Event Calendars. We have "
@@ -9899,7 +10050,7 @@ msgstr ""
9899
  "revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
9900
  "pouze tím, že máme 4 doplňky, viz níže:"
9901
 
9902
- #: app/libraries/main.php:960
9903
  msgid ""
9904
  "<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
9905
  "products) and Woo products at the same time."
@@ -9907,7 +10058,7 @@ msgstr ""
9907
  "<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
9908
  "produkty) a produkty Woo současně."
9909
 
9910
- #: app/libraries/main.php:961
9911
  msgid ""
9912
  "<strong>Event API:</strong> display your events (shortcodes/single event) on "
9913
  "other websites without MEC. Use JSON output features to make your Apps "
@@ -9917,183 +10068,183 @@ msgstr ""
9917
  "událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
9918
  "aplikace byly kompatibilní s MEC."
9919
 
9920
- #: app/libraries/main.php:962
9921
  msgid ""
9922
  "<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
9923
  "main websites. Changes in the main one will be inherited by the subsites. "
9924
  "you can set these up in the admin panel."
9925
  msgstr ""
9926
 
9927
- #: app/libraries/main.php:963
9928
  msgid ""
9929
  "<strong>User Dashboard:</strong> Create exclusive pages for users. These "
9930
  "pages can contain ticket purchase information, information about registered "
9931
  "events. Users can now log in to purchase tickets."
9932
  msgstr ""
9933
 
9934
- #: app/libraries/main.php:965
9935
  msgid "find out more"
9936
  msgstr ""
9937
 
9938
- #: app/libraries/main.php:1879
9939
  msgid "Events at this location"
9940
  msgstr "Události na tomto místě"
9941
 
9942
- #: app/libraries/main.php:1879
9943
  msgid "Event at this location"
9944
  msgstr "Událost na tomto místě"
9945
 
9946
- #: app/libraries/main.php:1931
9947
  msgid "Facebook"
9948
  msgstr "Facebook"
9949
 
9950
- #: app/libraries/main.php:1932
9951
  msgid "Twitter"
9952
  msgstr "Twitter"
9953
 
9954
- #: app/libraries/main.php:1933 app/libraries/main.php:1990
9955
  msgid "Linkedin"
9956
  msgstr "Linkedin"
9957
 
9958
- #: app/libraries/main.php:1934 app/libraries/main.php:2026
9959
  msgid "VK"
9960
  msgstr "VK"
9961
 
9962
- #: app/libraries/main.php:1935
9963
  msgid "Tumblr"
9964
  msgstr ""
9965
 
9966
- #: app/libraries/main.php:1936
9967
  msgid "Pinterest"
9968
  msgstr ""
9969
 
9970
- #: app/libraries/main.php:1937
9971
  msgid "Flipboard"
9972
  msgstr ""
9973
 
9974
- #: app/libraries/main.php:1938
9975
  #, fuzzy
9976
  #| msgid "Tickets"
9977
  msgid "GetPocket"
9978
  msgstr "Vstupenky"
9979
 
9980
- #: app/libraries/main.php:1939
9981
  msgid "Reddit"
9982
  msgstr ""
9983
 
9984
- #: app/libraries/main.php:1940
9985
  msgid "WhatsApp"
9986
  msgstr ""
9987
 
9988
- #: app/libraries/main.php:1941
9989
  msgid "Telegram"
9990
  msgstr ""
9991
 
9992
- #: app/libraries/main.php:1960
9993
  msgid "Share on Facebook"
9994
  msgstr "Sdílet na Facebooku"
9995
 
9996
- #: app/libraries/main.php:1975
9997
  msgid "Tweet"
9998
  msgstr "Tweet"
9999
 
10000
- #: app/libraries/main.php:2041
10001
  #, fuzzy
10002
  #| msgid "Share on Facebook"
10003
  msgid "Share on Tumblr"
10004
  msgstr "Sdílet na Facebooku"
10005
 
10006
- #: app/libraries/main.php:2057
10007
  msgid "Share on Pinterest"
10008
  msgstr ""
10009
 
10010
- #: app/libraries/main.php:2073
10011
  #, fuzzy
10012
  #| msgid "Share on Facebook"
10013
  msgid "Share on Flipboard"
10014
  msgstr "Sdílet na Facebooku"
10015
 
10016
- #: app/libraries/main.php:2091
10017
  #, fuzzy
10018
  #| msgid "Share on Facebook"
10019
  msgid "Share on GetPocket"
10020
  msgstr "Sdílet na Facebooku"
10021
 
10022
- #: app/libraries/main.php:2107
10023
  #, fuzzy
10024
  #| msgid "Share on Facebook"
10025
  msgid "Share on Reddit"
10026
  msgstr "Sdílet na Facebooku"
10027
 
10028
- #: app/libraries/main.php:2123
10029
  msgid "Share on Telegram"
10030
  msgstr ""
10031
 
10032
- #: app/libraries/main.php:2141
10033
  msgid "Share on WhatsApp"
10034
  msgstr ""
10035
 
10036
- #: app/libraries/main.php:2164 app/libraries/main.php:2189
10037
  msgid "Custom Shortcode"
10038
  msgstr "Uživatelské zkrácené kódy"
10039
 
10040
- #: app/libraries/main.php:2538 app/libraries/main.php:2549
10041
  #, fuzzy
10042
  #| msgid "The events are imported successfully!"
10043
  msgid "Your booking has been verified successfully!"
10044
  msgstr "Události byly úspěšně importovány!"
10045
 
10046
- #: app/libraries/main.php:2543
10047
  msgid "Your booking already verified!"
10048
  msgstr "Vaše rezervace již byla ověřena!"
10049
 
10050
- #: app/libraries/main.php:2550
10051
  msgid "Your booking cannot verify!"
10052
  msgstr "Vaši rezervaci nelze ověřit!"
10053
 
10054
- #: app/libraries/main.php:2572 app/libraries/main.php:2629
10055
  msgid "Your booking successfully canceled."
10056
  msgstr "Vaše rezervace byla úspěšně zrušena."
10057
 
10058
- #: app/libraries/main.php:2577
10059
  msgid "Your booking already canceled!"
10060
  msgstr "Vaše rezervace již byla zrušena!"
10061
 
10062
- #: app/libraries/main.php:2589
10063
  #, fuzzy
10064
  #| msgid "The event is finished."
10065
  msgid "The event is already finished!"
10066
  msgstr "Událost je ukončena."
10067
 
10068
- #: app/libraries/main.php:2610
10069
  msgid "The cancelation window is not started yet."
10070
  msgstr ""
10071
 
10072
- #: app/libraries/main.php:2622
10073
  msgid "The cancelation window is passed."
10074
  msgstr ""
10075
 
10076
- #: app/libraries/main.php:2630
10077
  msgid "Your booking cannot be canceled."
10078
  msgstr "Vaši rezervaci nelze zrušit."
10079
 
10080
- #: app/libraries/main.php:2634
10081
  msgid "You canceled the payment successfully."
10082
  msgstr "Platbu jste úspěšně zrušili."
10083
 
10084
- #: app/libraries/main.php:2638
10085
  msgid "You returned from payment gateway successfully."
10086
  msgstr "Úspěšně jste se vrátili z platební brány."
10087
 
10088
- #: app/libraries/main.php:2657
10089
  msgid "Cannot find the invoice!"
10090
  msgstr "Fakturu nelze najít!"
10091
 
10092
- #: app/libraries/main.php:2657
10093
  msgid "Invoice is invalid."
10094
  msgstr "Faktura je neplatná."
10095
 
10096
- #: app/libraries/main.php:2677
10097
  #, fuzzy
10098
  #| msgid ""
10099
  #| "Your booking still is not confirmed. You able download it after "
@@ -10103,244 +10254,244 @@ msgid ""
10103
  msgstr ""
10104
  "Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
10105
 
10106
- #: app/libraries/main.php:2677
10107
  msgid "Booking Not Confirmed."
10108
  msgstr "Rezervace nebyla potvrzena."
10109
 
10110
- #: app/libraries/main.php:2683
10111
  msgid "Cannot find the booking!"
10112
  msgstr "Nemohu najít rezervaci!"
10113
 
10114
- #: app/libraries/main.php:2683
10115
  msgid "Booking is invalid."
10116
  msgstr "Rezervace není platná."
10117
 
10118
- #: app/libraries/main.php:2691
10119
  #, fuzzy
10120
  #| msgid "Sorry! You don't have access to modify this event."
10121
  msgid "You don't have access to view this invoice!"
10122
  msgstr "Promiňte! Nemáte přístup k úpravě této události."
10123
 
10124
- #: app/libraries/main.php:2691
10125
  #, fuzzy
10126
  #| msgid "Invoice is invalid."
10127
  msgid "Key is invalid."
10128
  msgstr "Faktura je neplatná."
10129
 
10130
- #: app/libraries/main.php:2724
10131
  #, php-format
10132
  msgid "%s Invoice"
10133
  msgstr "%s Faktura"
10134
 
10135
- #: app/libraries/main.php:2760
10136
  #, fuzzy
10137
  #| msgid "Date and Time"
10138
  msgid "Date & Time"
10139
  msgstr "Datum a čas"
10140
 
10141
- #: app/libraries/main.php:2777
10142
  #, fuzzy
10143
  #| msgid "Booking Price"
10144
  msgid "Booking Fields"
10145
  msgstr "Cena rezervace"
10146
 
10147
- #: app/libraries/main.php:2849
10148
  msgid "Billing"
10149
  msgstr "Fakturace"
10150
 
10151
- #: app/libraries/main.php:2861
10152
  #, fuzzy
10153
  #| msgid "Coupons"
10154
  msgid "Coupon Code"
10155
  msgstr "Kupóny"
10156
 
10157
- #: app/libraries/main.php:2866
10158
  msgid "Total"
10159
  msgstr "Celkem"
10160
 
10161
- #: app/libraries/main.php:2873
10162
  #, fuzzy
10163
  #| msgid "Payment Gateways"
10164
  msgid "Payment"
10165
  msgstr "Platební brány"
10166
 
10167
- #: app/libraries/main.php:2890
10168
  #, fuzzy
10169
  #| msgid "Payment Gateways"
10170
  msgid "Payment Time"
10171
  msgstr "Platební brány"
10172
 
10173
- #: app/libraries/main.php:3033
10174
  msgid "Request is not valid."
10175
  msgstr "Požadavek není platný."
10176
 
10177
- #: app/libraries/main.php:3033
10178
  msgid "iCal export stopped!"
10179
  msgstr "iCal export byl zastaven!"
10180
 
10181
- #: app/libraries/main.php:3371 app/libraries/main.php:3401
10182
- #: app/libraries/main.php:3430 app/libraries/main.php:3459
10183
- #: app/libraries/main.php:3489 app/libraries/main.php:3519
10184
- #: app/libraries/main.php:3548 app/libraries/main.php:3578
10185
- #: app/libraries/main.php:3608 app/libraries/main.php:3661
10186
- #: app/libraries/main.php:3708 app/libraries/main.php:3755
10187
- #: app/libraries/main.php:3812
10188
  msgid "Required Field"
10189
  msgstr "Požadovaná pole"
10190
 
10191
- #: app/libraries/main.php:3377 app/libraries/main.php:3407
10192
- #: app/libraries/main.php:3436 app/libraries/main.php:3465
10193
- #: app/libraries/main.php:3495 app/libraries/main.php:3525
10194
- #: app/libraries/main.php:3554 app/libraries/main.php:3584
10195
- #: app/libraries/main.php:3614 app/libraries/main.php:3667
10196
- #: app/libraries/main.php:3714 app/libraries/main.php:3768
10197
- #: app/libraries/main.php:3818
10198
  msgid "Insert a label for this field"
10199
  msgstr "Vložte štítek pro toto pole"
10200
 
10201
- #: app/libraries/main.php:3637
10202
  msgid "HTML and shortcode are allowed."
10203
  msgstr "HTML a zkrácené kódy jsou povoleny."
10204
 
10205
- #: app/libraries/main.php:3681 app/libraries/main.php:3728
10206
- #: app/libraries/main.php:3782
10207
  msgid "Option"
10208
  msgstr "Možnost"
10209
 
10210
- #: app/libraries/main.php:3762
10211
  msgid "Consider the first item as a placeholder"
10212
  msgstr ""
10213
 
10214
- #: app/libraries/main.php:3818
10215
  #, php-format
10216
  msgid "Instead of %s, the page title with a link will be show."
10217
  msgstr "Místo%s se zobrazí název stránky s odkazem."
10218
 
10219
- #: app/libraries/main.php:3820
10220
  msgid "Agreement Page"
10221
  msgstr "Stránka smlouvy"
10222
 
10223
- #: app/libraries/main.php:3831
10224
  msgid "Checked by default"
10225
  msgstr "Ve výchozím nastavení zaškrtnuto"
10226
 
10227
- #: app/libraries/main.php:3832
10228
  msgid "Unchecked by default"
10229
  msgstr "Ve výchozím nastavení není zaškrtnuto"
10230
 
10231
- #: app/libraries/main.php:3856
10232
  msgid "Insert a label for this option"
10233
  msgstr "Vložte štítek pro tuto možnost"
10234
 
10235
- #: app/libraries/main.php:3869
10236
  msgid "Free"
10237
  msgstr "Zdarma"
10238
 
10239
- #: app/libraries/main.php:4536 app/libraries/main.php:6966
10240
  msgid "M.E. Calender"
10241
  msgstr "M.E. Kalendář"
10242
 
10243
- #: app/libraries/main.php:4692
10244
  #, php-format
10245
  msgid "Copy of %s"
10246
  msgstr "Kopie %s"
10247
 
10248
- #: app/libraries/main.php:5626
10249
  msgid "Booked an event."
10250
  msgstr "Událost byla rezervována."
10251
 
10252
- #: app/libraries/main.php:5667
10253
  #, php-format
10254
  msgid "%s booked %s event."
10255
  msgstr "%s zarezervoval %s událost."
10256
 
10257
- #: app/libraries/main.php:6614 app/libraries/main.php:6668
10258
  msgid "Taxonomies"
10259
  msgstr "Taxonomie"
10260
 
10261
  # Mrknout na kontext
10262
- #: app/libraries/main.php:6616 app/libraries/main.php:6670
10263
  msgid "Category Plural Label"
10264
  msgstr "Štítek množné kategorie"
10265
 
10266
  # Mrknout na kontext
10267
- #: app/libraries/main.php:6617 app/libraries/main.php:6671
10268
  msgid "Category Singular Label"
10269
  msgstr "Štítek jednotné kategorie"
10270
 
10271
- #: app/libraries/main.php:6618 app/libraries/main.php:6672
10272
  msgid "Label Plural Label"
10273
  msgstr "Štítek množného štítku"
10274
 
10275
- #: app/libraries/main.php:6619 app/libraries/main.php:6673
10276
  msgid "Label Singular Label"
10277
  msgstr "Štítek jednotného štítku"
10278
 
10279
- #: app/libraries/main.php:6619 app/libraries/main.php:6673
10280
  msgid "label"
10281
  msgstr "štítek"
10282
 
10283
- #: app/libraries/main.php:6620 app/libraries/main.php:6674
10284
  msgid "Location Plural Label"
10285
  msgstr "Štítek množného umístění"
10286
 
10287
- #: app/libraries/main.php:6621 app/libraries/main.php:6675
10288
  msgid "Location Singular Label"
10289
  msgstr "Štítek jednotného umístění"
10290
 
10291
- #: app/libraries/main.php:6622 app/libraries/main.php:6676
10292
  msgid "Organizer Plural Label"
10293
  msgstr "Štítek množného organizátora"
10294
 
10295
- #: app/libraries/main.php:6623 app/libraries/main.php:6677
10296
  msgid "Organizer Singular Label"
10297
  msgstr "Štítek jednotného organizátora"
10298
 
10299
- #: app/libraries/main.php:6624 app/libraries/main.php:6678
10300
  msgid "Speaker Plural Label"
10301
  msgstr "Štítek množného řečníka"
10302
 
10303
- #: app/libraries/main.php:6625 app/libraries/main.php:6679
10304
  msgid "Speaker Singular Label"
10305
  msgstr "Štítek jednotného řečníka"
10306
 
10307
- #: app/libraries/main.php:6631 app/libraries/main.php:6685
10308
  msgid "Sunday abbreviation"
10309
  msgstr "Neděle zkratka"
10310
 
10311
- #: app/libraries/main.php:6632 app/libraries/main.php:6686
10312
  msgid "Monday abbreviation"
10313
  msgstr "Pondělí zkratka"
10314
 
10315
- #: app/libraries/main.php:6633 app/libraries/main.php:6687
10316
  msgid "Tuesday abbreviation"
10317
  msgstr "Úterý zkratka"
10318
 
10319
- #: app/libraries/main.php:6634 app/libraries/main.php:6688
10320
  msgid "Wednesday abbreviation"
10321
  msgstr "Středa zkratka"
10322
 
10323
- #: app/libraries/main.php:6635 app/libraries/main.php:6689
10324
  msgid "Thursday abbreviation"
10325
  msgstr "Čtvrtek zkratka"
10326
 
10327
- #: app/libraries/main.php:6636 app/libraries/main.php:6690
10328
  msgid "Friday abbreviation"
10329
  msgstr "Pátek zkratka"
10330
 
10331
- #: app/libraries/main.php:6637 app/libraries/main.php:6691
10332
  msgid "Saturday abbreviation"
10333
  msgstr "Sobota zkratka"
10334
 
10335
- #: app/libraries/main.php:6641 app/libraries/main.php:6695
10336
  msgid "Others"
10337
  msgstr "Další"
10338
 
10339
- #: app/libraries/main.php:6643
10340
  msgid "Booking Success Message"
10341
  msgstr "Zpráva o úspěchu rezervace"
10342
 
10343
- #: app/libraries/main.php:6643
10344
  #, fuzzy
10345
  #| msgid ""
10346
  #| "Thanks for your booking. Your tickets booked, booking verification might "
@@ -10352,69 +10503,69 @@ msgstr ""
10352
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
10353
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
10354
 
10355
- #: app/libraries/main.php:6644
10356
  #, fuzzy
10357
  #| msgid "Booking Success Message"
10358
  msgid "Booking Restriction Message 1"
10359
  msgstr "Zpráva o úspěchu rezervace"
10360
 
10361
- #: app/libraries/main.php:6644
10362
  #, php-format
10363
  msgid ""
10364
  "You selected %s tickets to book but maximum number of tikets per user is %s "
10365
  "tickets."
10366
  msgstr ""
10367
 
10368
- #: app/libraries/main.php:6645
10369
  #, fuzzy
10370
  #| msgid "Booking Success Message"
10371
  msgid "Booking Restriction Message 2"
10372
  msgstr "Zpráva o úspěchu rezervace"
10373
 
10374
- #: app/libraries/main.php:6645
10375
  #, php-format
10376
  msgid ""
10377
  "You booked %s tickets till now but maximum number of tickets per user is %s "
10378
  "tickets."
10379
  msgstr ""
10380
 
10381
- #: app/libraries/main.php:6646
10382
  #, fuzzy
10383
  #| msgid "Booking Success Message"
10384
  msgid "Booking IP Restriction Message"
10385
  msgstr "Zpráva o úspěchu rezervace"
10386
 
10387
- #: app/libraries/main.php:6646
10388
  #, php-format
10389
  msgid "Maximum allowed number of tickets that you can book is %s."
10390
  msgstr ""
10391
 
10392
- #: app/libraries/main.php:6647
10393
  #, fuzzy
10394
  #| msgid "Booking Options"
10395
  msgid "Booking Button"
10396
  msgstr "Možnosti rezervace"
10397
 
10398
- #: app/libraries/main.php:6647
10399
  #, fuzzy
10400
  #| msgid "Booking Form"
10401
  msgid "Book Now"
10402
  msgstr "Rezervační formulář"
10403
 
10404
- #: app/libraries/main.php:6648 app/libraries/main.php:6697
10405
  #: app/widgets/single.php:133
10406
  msgid "Register Button"
10407
  msgstr "Registrační tlačítko"
10408
 
10409
- #: app/libraries/main.php:6648 app/libraries/main.php:6697
10410
  #: app/skins/available_spot/tpl.php:199 app/skins/carousel/render.php:101
10411
  #: app/skins/carousel/render.php:140 app/skins/grid/render.php:93
10412
  #: app/skins/grid/render.php:152 app/skins/grid/render.php:213
10413
  #: app/skins/grid/render.php:236 app/skins/list/render.php:85
10414
  #: app/skins/list/render.php:211 app/skins/masonry/render.php:142
10415
  #: app/skins/single.php:508 app/skins/single.php:1247 app/skins/single.php:1254
10416
- #: app/skins/single/default.php:341 app/skins/single/default.php:343
10417
- #: app/skins/single/default.php:580 app/skins/single/default.php:582
10418
  #: app/skins/single/m1.php:143 app/skins/single/m1.php:145
10419
  #: app/skins/single/m2.php:66 app/skins/single/m2.php:68
10420
  #: app/skins/single/modern.php:100 app/skins/single/modern.php:102
@@ -10424,11 +10575,11 @@ msgstr "Registrační tlačítko"
10424
  msgid "REGISTER"
10425
  msgstr "REGISTROVAT"
10426
 
10427
- #: app/libraries/main.php:6649 app/libraries/main.php:6698
10428
  msgid "View Detail Button"
10429
  msgstr "Tlačítko Zobrazit detail"
10430
 
10431
- #: app/libraries/main.php:6649 app/libraries/main.php:6698
10432
  #: app/skins/carousel/render.php:101 app/skins/carousel/render.php:140
10433
  #: app/skins/grid/render.php:93 app/skins/grid/render.php:152
10434
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:236
@@ -10440,154 +10591,154 @@ msgstr "Tlačítko Zobrazit detail"
10440
  msgid "View Detail"
10441
  msgstr "Zobrazit detail"
10442
 
10443
- #: app/libraries/main.php:6650 app/libraries/main.php:6699
10444
  msgid "Event Detail Button"
10445
  msgstr "Tlačítko Detail události"
10446
 
10447
- #: app/libraries/main.php:6650 app/libraries/main.php:6699
10448
  msgid "Event Detail"
10449
  msgstr "Zobrazit událost"
10450
 
10451
- #: app/libraries/main.php:6655
10452
  msgid "Ticket (Singular)"
10453
  msgstr "Vstupenka (Jednotné)"
10454
 
10455
- #: app/libraries/main.php:6656
10456
  msgid "Tickets (Plural)"
10457
  msgstr "Vstupenky (Množné)"
10458
 
10459
- #: app/libraries/main.php:6814
10460
  msgid "EventON"
10461
  msgstr "EventON"
10462
 
10463
- #: app/libraries/main.php:6815
10464
  msgid "The Events Calendar"
10465
  msgstr "The Events Calendar"
10466
 
10467
- #: app/libraries/main.php:6816
10468
  msgid "Events Schedule WP Plugin"
10469
  msgstr "Events Schedule WP Plugin"
10470
 
10471
- #: app/libraries/main.php:6817
10472
  msgid "Calendarize It"
10473
  msgstr "Calendarize It"
10474
 
10475
- #: app/libraries/main.php:6818
10476
  #, fuzzy
10477
  #| msgid "Event Speakers"
10478
  msgid "Event Espresso"
10479
  msgstr "Řečník události"
10480
 
10481
- #: app/libraries/main.php:6819
10482
  #, fuzzy
10483
  #| msgid "Event Repeating (Recurring events)"
10484
  msgid "Events Manager (Recurring)"
10485
  msgstr "Opakování události (opakující se události)"
10486
 
10487
- #: app/libraries/main.php:6820
10488
  #, fuzzy
10489
  #| msgid "Modern Events Calendar (Lite)"
10490
  msgid "Events Manager (Single)"
10491
  msgstr "Modern Events Calendar (Lite)"
10492
 
10493
- #: app/libraries/main.php:6821
10494
  #, fuzzy
10495
  #| msgid "Modern Events Calendar (Lite)"
10496
  msgid "WP Event Manager"
10497
  msgstr "Modern Events Calendar (Lite)"
10498
 
10499
- #: app/libraries/main.php:6953
10500
  msgid "Waiting"
10501
  msgstr "Čekající"
10502
 
10503
- #: app/libraries/main.php:6996
10504
  #, fuzzy
10505
  #| msgid "Sunday"
10506
  msgid "Sun"
10507
  msgstr "Neděle"
10508
 
10509
- #: app/libraries/main.php:6996
10510
  #, fuzzy
10511
  #| msgid "Monday"
10512
  msgid "Mon"
10513
  msgstr "Pondělí"
10514
 
10515
- #: app/libraries/main.php:6996
10516
  #, fuzzy
10517
  #| msgid "Tel"
10518
  msgid "Tue"
10519
  msgstr "Tel"
10520
 
10521
- #: app/libraries/main.php:6996
10522
  msgid "Wed"
10523
  msgstr ""
10524
 
10525
- #: app/libraries/main.php:6996
10526
  msgid "Thu"
10527
  msgstr ""
10528
 
10529
- #: app/libraries/main.php:6996
10530
  #, fuzzy
10531
  #| msgid "Friday"
10532
  msgid "Fri"
10533
  msgstr "Pátek"
10534
 
10535
- #: app/libraries/main.php:6996
10536
  #, fuzzy
10537
  #| msgid "Start"
10538
  msgid "Sat"
10539
  msgstr "Začátek"
10540
 
10541
- #: app/libraries/main.php:7189 app/libraries/render.php:82
10542
  #: app/libraries/render.php:444
10543
  msgid "Skin controller does not exist."
10544
  msgstr "Ovladač vzhledu neexistuje."
10545
 
10546
- #: app/libraries/main.php:7407
10547
  msgid "Sold Out"
10548
  msgstr "Vyprodáno"
10549
 
10550
- #: app/libraries/main.php:7427
10551
  #, fuzzy
10552
  #| msgid "Ticket"
10553
  msgid "Last Few Tickets"
10554
  msgstr "Vstupenka"
10555
 
10556
- #: app/libraries/main.php:7697
10557
  #, fuzzy
10558
  #| msgid "Upcoming Events"
10559
  msgid "Ongoing"
10560
  msgstr "Nadcházející události"
10561
 
10562
- #: app/libraries/main.php:7763 app/libraries/main.php:7780
10563
  #, fuzzy
10564
  #| msgid "minutes"
10565
  msgid "Minutes"
10566
  msgstr "minuty"
10567
 
10568
- #: app/libraries/main.php:7785
10569
  msgid "AM / PM"
10570
  msgstr ""
10571
 
10572
- #: app/libraries/main.php:7786
10573
  msgid "AM"
10574
  msgstr "dop."
10575
 
10576
- #: app/libraries/main.php:7787
10577
  msgid "PM"
10578
  msgstr "odp."
10579
 
10580
- #: app/libraries/main.php:7795
10581
  msgid "Ongoing..."
10582
  msgstr ""
10583
 
10584
- #: app/libraries/main.php:7796
10585
  #, fuzzy
10586
  #| msgid "Expired Events"
10587
  msgid "Expired!"
10588
  msgstr "Události vypršely"
10589
 
10590
- #: app/libraries/main.php:8071
10591
  msgid "Mapping with Profile Fields"
10592
  msgstr ""
10593
 
@@ -10621,31 +10772,31 @@ msgstr "Je přijata nová rezervace."
10621
  msgid "A new event is added."
10622
  msgstr "Je přidána se nová událost."
10623
 
10624
- #: app/libraries/notifications.php:1054
10625
  msgid "Your event is published."
10626
  msgstr "Vaše událost je zveřejněna."
10627
 
10628
- #: app/libraries/notifications.php:1218
10629
  #, fuzzy
10630
  #| msgid "Event Color"
10631
  msgid "Event is soldout!"
10632
  msgstr "Barva události"
10633
 
10634
- #: app/libraries/notifications.php:1594
10635
  msgid "to"
10636
  msgstr "do"
10637
 
10638
- #: app/libraries/notifications.php:1616 app/modules/export/details.php:72
10639
  msgid "+ Add to Google Calendar"
10640
  msgstr "+ Přidat do Google kalendáře"
10641
 
10642
- #: app/libraries/notifications.php:1617 app/modules/export/details.php:73
10643
  #, fuzzy
10644
  #| msgid "+ iCal export"
10645
  msgid "+ iCal / Outlook export"
10646
  msgstr "+ iCal export"
10647
 
10648
- #: app/libraries/notifications.php:1666
10649
  #, fuzzy, php-format
10650
  #| msgid "+ Add to Google Calendar"
10651
  msgid "+ %s to Google Calendar"
@@ -10658,9 +10809,9 @@ msgid "Select"
10658
  msgstr "Vybrat vše"
10659
 
10660
  #: app/libraries/skins.php:1315 app/modules/next-event/details.php:148
10661
- #: app/skins/single.php:1219 app/skins/single/default.php:166
10662
- #: app/skins/single/default.php:406 app/skins/single/m1.php:40
10663
- #: app/skins/single/modern.php:231
10664
  msgid "Time"
10665
  msgstr "Čas"
10666
 
@@ -10799,7 +10950,7 @@ msgstr "Čas vstupenky"
10799
  msgid "Available %s: <span>%s</span>"
10800
  msgstr "K dispozici %s: <span>%s</span>"
10801
 
10802
- #: app/modules/booking/steps/tickets.php:170 app/skins/single/default.php:90
10803
  #, php-format
10804
  msgid "The %s ticket sales has ended!"
10805
  msgstr ""
@@ -11020,14 +11171,14 @@ msgstr "Nová událost"
11020
  msgid "Home"
11021
  msgstr "Domů"
11022
 
11023
- #: app/skins/single.php:1013 app/skins/single/default.php:111
11024
  #: app/skins/single/m1.php:284 app/skins/single/m2.php:205
11025
- #: app/skins/single/modern.php:315
11026
  msgid "Sold out!"
11027
  msgstr "Vyprodáno!"
11028
 
11029
  #: app/skins/single.php:1300 app/skins/single.php:1363
11030
- #: app/skins/single/default.php:308 app/skins/single/default.php:547
11031
  #: app/skins/single/m1.php:112 app/skins/single/m2.php:35
11032
  #: app/skins/single/modern.php:61
11033
  msgid "Phone"
@@ -11037,8 +11188,8 @@ msgstr "Telefon"
11037
  msgid "Speakers:"
11038
  msgstr "Řečník:"
11039
 
11040
- #: app/skins/single/default.php:130 app/skins/single/m1.php:301
11041
- #: app/skins/single/m2.php:222 app/skins/single/modern.php:335
11042
  msgid "Tags: "
11043
  msgstr "Značky: "
11044
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2021-04-21 12:48+0430\n"
5
+ "PO-Revision-Date: 2021-04-21 12:50+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
23
 
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
25
  #: app/features/ix/import.php:48 app/features/ix/import.php:77
26
+ #: app/features/ix/thirdparty.php:26 app/features/mec.php:1222
27
+ #: app/features/mec.php:1246 app/features/mec/dashboard.php:65
28
  #: app/widgets/MEC.php:33
29
  msgid "Modern Events Calendar"
30
  msgstr "Moderní kalendář událostí"
35
  msgid "Content"
36
  msgstr "Obsah"
37
 
38
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:547
39
+ #: app/features/mec.php:578 app/features/mec.php:608
40
  msgid "Shortcode"
41
  msgstr "Zkrácený kód"
42
 
93
  msgstr "Přidat nový zkrácený kód"
94
 
95
  #: app/features/booking/calendar_novel.php:136
96
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6721
97
+ #: app/libraries/main.php:6768 app/libraries/notifications.php:1377
98
  #: app/libraries/render.php:531 app/libraries/render.php:723
99
  #: app/libraries/render.php:781 app/libraries/render.php:878
100
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:47
101
  #: app/modules/local-time/type2.php:69 app/modules/local-time/type3.php:47
102
  #: app/modules/next-event/details.php:154
103
  #: app/modules/next-event/multiple.php:64 app/skins/single.php:1225
104
+ #: app/skins/single/default.php:171 app/skins/single/default.php:411
105
+ #: app/skins/single/m1.php:46 app/skins/single/modern.php:239
106
  #, fuzzy
107
  #| msgid "Add Day"
108
  msgid "All Day"
114
  msgid "Chosen Time:"
115
  msgstr "Místní čas"
116
 
117
+ #: app/features/colors.php:50 app/features/fes/form.php:1002
118
+ #: app/features/mec/settings.php:874
119
  msgid "Event Color"
120
  msgstr "Barva události"
121
 
125
  msgid "Recent Colors"
126
  msgstr "Barva události"
127
 
128
+ #: app/features/contextual.php:55 app/features/mec.php:496
129
  #: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
130
  #: app/features/mec/wizard.php:223 app/features/popup/event.php:60
131
+ #: app/features/popup/shortcode.php:37 app/libraries/main.php:671
132
  msgid "Settings"
133
  msgstr "Nastavení"
134
 
135
+ #: app/features/contextual.php:62 app/features/events.php:1520
136
+ #: app/features/events.php:2498 app/features/mec/booking.php:626
137
+ #: app/features/mec/booking.php:895 app/features/mec/settings.php:983
138
+ #: app/features/mec/support.php:29 app/libraries/main.php:621
139
  msgid "Booking Form"
140
  msgstr "Rezervační formulář"
141
 
162
  "www.youtube.com/embed/YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></"
163
  "iframe>"
164
 
165
+ #: app/features/contextual.php:70 app/features/events.php:1528
166
  #: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
167
+ #: app/features/mec/support.php:36 app/libraries/main.php:623
168
  msgid "Payment Gateways"
169
  msgstr "Platební brány"
170
 
178
  "\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder=\"0\" "
179
  "allowfullscreen></iframe>"
180
 
181
+ #: app/features/contextual.php:77 app/features/events.php:402
182
  #: app/features/mec/support-page.php:117 app/features/mec/support.php:45
183
+ #: app/libraries/main.php:822
184
  msgid "Notifications"
185
  msgstr "Upozornění"
186
 
279
  msgid "Event Details/Single Event Page"
280
  msgstr "Podrobnosti o události / Stránka jedné události"
281
 
282
+ #: app/features/contextual.php:166 app/features/events.php:1247
283
+ #: app/features/fes/form.php:869 app/features/mec/settings.php:549
284
  #: app/libraries/main.php:586
285
  msgid "Currency Options"
286
  msgstr "Možnosti Měna"
289
  msgid "Google Maps Options"
290
  msgstr "Možnosti Google Maps"
291
 
292
+ #: app/features/contextual.php:244 app/features/mec/settings.php:621
293
+ #: app/libraries/main.php:588
294
  msgid "Google Recaptcha Options"
295
  msgstr "Možnosti Google Recaptcha"
296
 
297
+ #: app/features/contextual.php:258 app/features/mec/single.php:307
298
+ #: app/libraries/main.php:607
299
  msgid "Countdown Options"
300
  msgstr "Možnosti Odpočítávání"
301
 
302
  #: app/features/contextual.php:268 app/features/mec/modules.php:269
303
+ #: app/libraries/main.php:633
304
  msgid "Social Networks"
305
  msgstr "Sociální sítě"
306
 
308
  msgid "Next Event Module"
309
  msgstr "Modul Další události"
310
 
311
+ #: app/features/contextual.php:286 app/features/mec/settings.php:661
312
+ #: app/features/mec/support-page.php:98 app/libraries/main.php:589
313
  msgid "Frontend Event Submission"
314
  msgstr "Předání události frontendu"
315
 
316
+ #: app/features/contextual.php:298 app/features/events.php:395
317
+ #: app/libraries/main.php:608
318
  msgid "Exceptional Days"
319
  msgstr "Výjimečné dny"
320
 
321
+ #: app/features/contextual.php:308 app/features/events.php:365
322
  #: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
323
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
324
+ #: app/libraries/main.php:616 app/libraries/main.php:648
325
+ #: app/libraries/main.php:736
326
  msgid "Booking"
327
  msgstr "Rezervace"
328
 
329
  #: app/features/contextual.php:318 app/features/mec/booking.php:448
330
+ #: app/features/mec/booking.php:852 app/libraries/main.php:618
331
  msgid "Coupons"
332
  msgstr "Kupóny"
333
 
334
  #: app/features/contextual.php:326 app/features/mec/modules.php:341
335
+ #: app/libraries/main.php:635
336
  msgid "BuddyPress Integration"
337
  msgstr "Integrace BuddyPress"
338
 
339
+ #: app/features/contextual.php:334 app/features/mec/settings.php:1197
340
+ #: app/libraries/main.php:594
341
  msgid "Mailchimp Integration"
342
  msgstr "Integrace Mailchimp"
343
 
345
  msgid "MEC Activation"
346
  msgstr "Aktivace MEC"
347
 
348
+ #: app/features/dlfile.php:121 app/features/events.php:1525
349
+ #: app/features/mec/booking.php:368 app/features/mec/settings.php:1018
350
  #, fuzzy
351
  #| msgid "Download ICS file"
352
  msgid "Downloadable File"
384
  msgid "File uploaded!"
385
  msgstr "Obrázek je nahraný!"
386
 
387
+ #: app/features/events.php:184 app/features/ix/export.php:34
388
+ #: app/features/mec/dashboard.php:267 app/libraries/main.php:5759
389
+ #: app/libraries/main.php:5779 app/skins/daily_view/tpl.php:82
390
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
391
  #: app/skins/yearly_view/tpl.php:71
392
  msgid "Events"
393
  msgstr "Události"
394
 
395
+ #: app/features/events.php:185 app/features/fes.php:243
396
  #: app/features/mec/meta_boxes/display_options.php:1732
397
  #: app/features/mec/meta_boxes/display_options.php:1826
398
  #: app/features/mec/meta_boxes/display_options.php:1899
402
  msgid "Event"
403
  msgstr "Událost"
404
 
405
+ #: app/features/events.php:186 app/features/mec.php:482
406
  msgid "Add Event"
407
  msgstr "Přidat událost"
408
 
409
+ #: app/features/events.php:187 app/features/mec/dashboard.php:142
410
  msgid "Add New Event"
411
  msgstr "Přidat novou událost"
412
 
413
+ #: app/features/events.php:188 app/features/ix.php:4520
414
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
415
  #: app/skins/map/tpl.php:89
416
  msgid "No events found!"
417
  msgstr "Nebyly nalezeny žádné události!"
418
 
419
+ #: app/features/events.php:189
420
  msgid "All Events"
421
  msgstr "Všechny události"
422
 
423
+ #: app/features/events.php:190
424
  msgid "Edit Event"
425
  msgstr "Editace události"
426
 
427
+ #: app/features/events.php:191 app/features/fes/list.php:100
428
  #: app/features/popup/event.php:252
429
  msgid "View Event"
430
  msgstr "Zobrazit událost"
431
 
432
+ #: app/features/events.php:192
433
  msgid "No events found in Trash!"
434
  msgstr "V koši nebyly nalezeny žádné události!"
435
 
436
+ #: app/features/events.php:209 app/features/events.php:3608
437
  #: app/features/mec/meta_boxes/display_options.php:1589
438
  #: app/features/mec/meta_boxes/search_form.php:42
439
  #: app/features/mec/meta_boxes/search_form.php:130
442
  #: app/features/mec/meta_boxes/search_form.php:393
443
  #: app/features/mec/meta_boxes/search_form.php:480
444
  #: app/features/mec/meta_boxes/search_form.php:567
445
+ #: app/features/mec/meta_boxes/search_form.php:648
446
+ #: app/features/mec/meta_boxes/search_form.php:735
447
+ #: app/features/mec/meta_boxes/search_form.php:822
448
+ #: app/features/mec/meta_boxes/search_form.php:945
449
+ #: app/features/mec/settings.php:1090 app/features/mec/settings.php:1151
450
+ #: app/features/mec/single.php:394 app/features/mec/single.php:436
451
  #: app/features/mec/wizard.php:418 app/features/mec/wizard.php:457
452
+ #: app/features/search.php:68 app/libraries/main.php:6679
453
+ #: app/libraries/main.php:6733 app/libraries/skins.php:1041
454
+ #: app/skins/single.php:1035 app/skins/single/default.php:272
455
+ #: app/skins/single/default.php:511 app/skins/single/m1.php:202
456
+ #: app/skins/single/m2.php:125 app/skins/single/modern.php:156
457
  msgid "Category"
458
  msgstr "Kategorie"
459
 
460
+ #: app/features/events.php:210 app/features/events.php:3564
461
+ #: app/features/fes/form.php:952 app/features/mec.php:484
462
  #: app/features/mec/meta_boxes/filter.php:69
463
+ #: app/features/mec/meta_boxes/filter.php:80 app/libraries/main.php:6678
464
+ #: app/libraries/main.php:6732
465
  msgid "Categories"
466
  msgstr "Kategorie"
467
 
468
+ #: app/features/events.php:220 app/features/labels.php:71
469
  #: app/features/locations.php:69 app/features/organizers.php:69
470
  #: app/features/speakers.php:71 app/features/tag.php:69
471
  #, php-format
472
  msgid "All %s"
473
  msgstr "Všechny %s"
474
 
475
+ #: app/features/events.php:221 app/features/labels.php:72
476
  #: app/features/locations.php:70 app/features/organizers.php:70
477
  #: app/features/speakers.php:72 app/features/tag.php:70
478
  #, php-format
479
  msgid "Edit %s"
480
  msgstr "Editovat %s"
481
 
482
+ #: app/features/events.php:222 app/features/labels.php:73
483
  #: app/features/locations.php:71 app/features/organizers.php:71
484
  #: app/features/speakers.php:73 app/features/tag.php:71
485
  #, php-format
486
  msgid "View %s"
487
  msgstr "Zobrazit %s"
488
 
489
+ #: app/features/events.php:223 app/features/labels.php:74
490
  #: app/features/locations.php:72 app/features/organizers.php:72
491
  #: app/features/speakers.php:74 app/features/tag.php:72
492
  #, php-format
493
  msgid "Update %s"
494
  msgstr "Aktualizovat %s"
495
 
496
+ #: app/features/events.php:224 app/features/labels.php:75
497
  #: app/features/locations.php:73 app/features/organizers.php:73
498
  #: app/features/speakers.php:75 app/features/tag.php:73
499
  #, php-format
500
  msgid "Add New %s"
501
  msgstr "Přidat novou %s"
502
 
503
+ #: app/features/events.php:225 app/features/labels.php:76
504
  #: app/features/locations.php:74 app/features/organizers.php:74
505
  #: app/features/speakers.php:76 app/features/tag.php:74
506
  #, php-format
507
  msgid "New %s Name"
508
  msgstr "Nové jméno %s"
509
 
510
+ #: app/features/events.php:226 app/features/labels.php:77
511
  #: app/features/locations.php:75 app/features/organizers.php:75
512
  #: app/features/speakers.php:77 app/features/tag.php:75
513
  #, php-format
514
  msgid "Popular %s"
515
  msgstr "Populární %s"
516
 
517
+ #: app/features/events.php:227 app/features/labels.php:78
518
  #: app/features/locations.php:76 app/features/organizers.php:76
519
  #: app/features/speakers.php:78 app/features/tag.php:76
520
  #, php-format
521
  msgid "Search %s"
522
  msgstr "Vyhledat %s"
523
 
524
+ #: app/features/events.php:254 app/features/events.php:291
525
  msgid "Category Icon"
526
  msgstr "Ikona kategorie"
527
 
528
+ #: app/features/events.php:257 app/features/events.php:296
529
  msgid "Select icon"
530
  msgstr "Vybrat ikonu"
531
 
532
+ #: app/features/events.php:261 app/features/events.php:305
533
  msgid "Fallback Image"
534
  msgstr ""
535
 
536
+ #: app/features/events.php:264 app/features/events.php:310
537
  #: app/features/locations.php:160 app/features/locations.php:212
538
  #: app/features/organizers.php:132 app/features/organizers.php:163
539
  #: app/features/speakers.php:180 app/features/speakers.php:231
540
  msgid "Upload/Add image"
541
  msgstr "Nahrát / přidat obrázek"
542
 
543
+ #: app/features/events.php:265 app/features/events.php:311
544
  #: app/features/locations.php:161 app/features/locations.php:213
545
  #: app/features/locations.php:387 app/features/locations.php:394
546
  #: app/features/organizers.php:133 app/features/organizers.php:164
547
+ #: app/features/organizers.php:307 app/features/organizers.php:314
548
  #: app/features/speakers.php:181 app/features/speakers.php:232
549
  msgid "Remove image"
550
  msgstr "Odebrat obrázek"
551
 
552
+ #: app/features/events.php:360
553
  msgid "Event Details"
554
  msgstr "Podrobnosti události"
555
 
556
+ #: app/features/events.php:391
557
  #, fuzzy
558
  #| msgid "Event Details"
559
  msgid "FES Details"
560
  msgstr "Podrobnosti události"
561
 
562
+ #: app/features/events.php:392
563
  #, fuzzy
564
  #| msgid "Date and Time"
565
  msgid "Date And Time"
566
  msgstr "Datum a čas"
567
 
568
+ #: app/features/events.php:393 app/features/fes/form.php:383
569
  msgid "Event Repeating"
570
  msgstr "Opakování události"
571
 
572
+ #: app/features/events.php:394 app/features/mec/single.php:216
573
  #: app/libraries/eventFields.php:45
574
  #, fuzzy
575
  #| msgid "Event Detail"
576
  msgid "Event Data"
577
  msgstr "Zobrazit událost"
578
 
579
+ #: app/features/events.php:396 app/features/mec/settings.php:920
580
  #: app/libraries/hourlyschedule.php:36 app/skins/single.php:1452
581
  msgid "Hourly Schedule"
582
  msgstr "Hodinový rozvrh"
583
 
584
+ #: app/features/events.php:397
585
  #, fuzzy
586
  #| msgid "Location"
587
  msgid "Location/Venue"
588
  msgstr "Umístění"
589
 
590
+ #: app/features/events.php:398
591
  #, fuzzy
592
  #| msgid "Link"
593
  msgid "Links"
594
  msgstr "Odkaz"
595
 
596
+ #: app/features/events.php:399 app/features/events.php:3610
597
+ #: app/features/events.php:3888 app/features/ix.php:4089
598
+ #: app/features/ix.php:4132
599
  #: app/features/mec/meta_boxes/display_options.php:1592
600
  #: app/features/mec/meta_boxes/search_form.php:58
601
  #: app/features/mec/meta_boxes/search_form.php:146
604
  #: app/features/mec/meta_boxes/search_form.php:409
605
  #: app/features/mec/meta_boxes/search_form.php:496
606
  #: app/features/mec/meta_boxes/search_form.php:583
607
+ #: app/features/mec/meta_boxes/search_form.php:664
608
+ #: app/features/mec/meta_boxes/search_form.php:751
609
+ #: app/features/mec/meta_boxes/search_form.php:838
610
+ #: app/features/mec/meta_boxes/search_form.php:961
611
+ #: app/features/mec/settings.php:1163 app/features/mec/single.php:398
612
+ #: app/features/mec/single.php:440 app/features/mec/wizard.php:422
613
  #: app/features/mec/wizard.php:461 app/features/organizers.php:58
614
+ #: app/features/organizers.php:204 app/features/organizers.php:268
615
+ #: app/features/organizers.php:270 app/features/organizers.php:279
616
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
617
+ #: app/features/search.php:80 app/libraries/main.php:6685
618
+ #: app/libraries/main.php:6739 app/libraries/skins.php:1127
619
+ #: app/skins/single.php:1290 app/skins/single/default.php:297
620
+ #: app/skins/single/default.php:536 app/skins/single/m1.php:102
621
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:51
622
  msgid "Organizer"
623
  msgstr "Organizátor"
624
 
625
+ #: app/features/events.php:400 app/features/events.php:1242
626
+ #: app/features/fes/form.php:864 app/features/mec/settings.php:1087
627
+ #: app/libraries/main.php:6716 app/libraries/main.php:6765
628
  #: app/libraries/skins.php:1358 app/skins/single.php:1061
629
+ #: app/skins/single/default.php:189 app/skins/single/default.php:429
630
+ #: app/skins/single/m1.php:61 app/skins/single/modern.php:254
631
  msgid "Cost"
632
  msgstr "Cena"
633
 
634
+ #: app/features/events.php:401
635
  #, fuzzy
636
  #| msgid "On Event Start"
637
  msgid "SEO Schema / Event Status"
638
  msgstr "Při spuštění události"
639
 
640
+ #: app/features/events.php:562
641
  msgid "Note for reviewer"
642
  msgstr "Poznámka pro recenzenta"
643
 
644
+ #: app/features/events.php:568
645
  msgid "Guest Data"
646
  msgstr "Údaje hosta"
647
 
648
+ #: app/features/events.php:569 app/features/events.php:2484
649
+ #: app/features/events.php:4092 app/features/fes.php:243
650
  #: app/features/fes/form.php:812 app/features/labels.php:180
651
+ #: app/features/mec/booking.php:45 app/features/organizers.php:287
652
  #: app/features/popup/event.php:182 app/features/profile/profile.php:149
653
+ #: app/libraries/notifications.php:1753 app/modules/booking/steps/form.php:62
654
  msgid "Name"
655
  msgstr "Jméno"
656
 
657
+ #: app/features/events.php:570 app/features/events.php:2493
658
+ #: app/features/events.php:2560 app/features/events.php:2649
659
+ #: app/features/events.php:4095 app/features/fes.php:243
660
  #: app/features/fes/form.php:808 app/features/login/login.php:5
661
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:664
662
+ #: app/features/mec/booking.php:760 app/features/mec/single.php:249
663
  #: app/features/organizers.php:111 app/features/organizers.php:152
664
  #: app/features/profile/profile.php:152 app/features/speakers.php:127
665
+ #: app/features/speakers.php:204 app/libraries/main.php:1920
666
+ #: app/libraries/main.php:1989 app/libraries/main.php:3436
667
+ #: app/libraries/notifications.php:1754 app/modules/booking/steps/form.php:71
668
  #: app/modules/booking/steps/form.php:213 app/skins/single.php:1307
669
+ #: app/skins/single.php:1370 app/skins/single/default.php:314
670
+ #: app/skins/single/default.php:553 app/skins/single/m1.php:119
671
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:68
672
  msgid "Email"
673
  msgstr "Email"
674
 
675
+ #: app/features/events.php:579
676
  msgid ""
677
  "This event is imported from Google calendar so if you modify it, it would "
678
  "overwrite in the next import from Google."
679
  msgstr ""
680
 
681
+ #: app/features/events.php:583 app/features/fes/form.php:282
682
  msgid "Date and Time"
683
  msgstr "Datum a čas"
684
 
685
+ #: app/features/events.php:586 app/features/events.php:590
686
+ #: app/features/events.php:3611 app/features/events.php:3888
687
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
688
+ #: app/features/ix.php:4089 app/features/ix.php:4132
689
+ #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1443
690
  #: app/features/mec/meta_boxes/display_options.php:52
691
  #: app/features/mec/meta_boxes/display_options.php:305
692
  #: app/features/mec/meta_boxes/display_options.php:569
706
  msgid "Start Date"
707
  msgstr "Počátečná den"
708
 
709
+ #: app/features/events.php:605 app/features/events.php:609
710
+ #: app/features/events.php:3612 app/features/events.php:3888
711
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
712
+ #: app/features/ix.php:4089 app/features/ix.php:4132
713
+ #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1444
714
  #: app/features/mec/meta_boxes/display_options.php:68
715
  #: app/features/mec/meta_boxes/display_options.php:321
716
  #: app/features/mec/meta_boxes/display_options.php:585
722
  msgid "End Date"
723
  msgstr "Konečný den"
724
 
725
+ #: app/features/events.php:632 app/features/fes/form.php:323
726
  #: app/features/popup/event.php:109
727
  #, fuzzy
728
  #| msgid "All Day Event"
729
  msgid "All-day Event"
730
  msgstr "Celodenní událost"
731
 
732
+ #: app/features/events.php:642 app/features/fes/form.php:326
733
  msgid "Hide Event Time"
734
  msgstr "Skrýt čas události"
735
 
736
+ #: app/features/events.php:652 app/features/fes/form.php:329
737
  msgid "Hide Event End Time"
738
  msgstr "Skrýt čas ukončení události"
739
 
740
+ #: app/features/events.php:657 app/features/events.php:661
741
  #: app/features/fes/form.php:333
742
  #, fuzzy
743
  #| msgid "Note to reviewer"
744
  msgid "Notes on the time"
745
  msgstr "Poznámka pro recenzenta"
746
 
747
+ #: app/features/events.php:662 app/features/fes/form.php:334
748
  #, fuzzy
749
  #| msgid ""
750
  #| "It shows next to event time on single event page. You can insert Timezone "
756
  "Zobrazuje se vedle času události na stránce jedné události. Do tohoto pole "
757
  "můžete vložit časové pásmo atd."
758
 
759
+ #: app/features/events.php:664 app/features/events.php:843
760
+ #: app/features/events.php:1196 app/features/events.php:1265
761
+ #: app/features/events.php:1353 app/features/events.php:1490
762
+ #: app/features/events.php:1607 app/features/events.php:1868
763
+ #: app/features/events.php:1883 app/features/events.php:2066
764
+ #: app/features/events.php:2079 app/features/events.php:2235
765
+ #: app/features/events.php:2271 app/features/events.php:2369
766
+ #: app/features/events.php:2384 app/features/events.php:2414
767
+ #: app/features/events.php:2427 app/features/fes/form.php:456
768
+ #: app/features/fes/form.php:764 app/features/fes/form.php:887
769
  #: app/features/locations.php:335 app/features/mec/booking.php:109
770
  #: app/features/mec/booking.php:201 app/features/mec/booking.php:266
771
  #: app/features/mec/booking.php:299 app/features/mec/booking.php:312
811
  #: app/features/mec/modules.php:93 app/features/mec/modules.php:128
812
  #: app/features/mec/modules.php:144 app/features/mec/modules.php:330
813
  #: app/features/mec/notifications.php:107
814
+ #: app/features/mec/notifications.php:263
815
+ #: app/features/mec/notifications.php:420
816
+ #: app/features/mec/notifications.php:587
817
+ #: app/features/mec/notifications.php:765
818
+ #: app/features/mec/notifications.php:928
819
+ #: app/features/mec/notifications.php:1088
820
+ #: app/features/mec/notifications.php:1238
821
+ #: app/features/mec/notifications.php:1253
822
+ #: app/features/mec/notifications.php:1415
823
+ #: app/features/mec/notifications.php:1532 app/features/mec/settings.php:67
824
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:113
825
  #: app/features/mec/settings.php:149 app/features/mec/settings.php:172
826
  #: app/features/mec/settings.php:218 app/features/mec/settings.php:268
828
  #: app/features/mec/settings.php:472 app/features/mec/settings.php:489
829
  #: app/features/mec/settings.php:506 app/features/mec/settings.php:525
830
  #: app/features/mec/settings.php:539 app/features/mec/settings.php:567
831
+ #: app/features/mec/settings.php:673 app/features/mec/settings.php:794
832
+ #: app/features/mec/settings.php:866 app/features/mec/settings.php:1058
833
+ #: app/features/mec/settings.php:1074 app/features/mec/settings.php:1212
834
+ #: app/features/mec/settings.php:1225 app/features/mec/settings.php:1241
835
+ #: app/features/mec/single.php:46 app/features/mec/single.php:62
836
+ #: app/features/mec/single.php:82 app/features/mec/single.php:100
837
+ #: app/features/mec/single.php:124 app/features/mec/single.php:141
838
+ #: app/features/mec/single.php:192 app/features/mec/single.php:336
839
+ #: app/features/mec/styling.php:123 app/features/mec/styling.php:223
840
+ #: app/features/mec/styling.php:240 app/features/mec/styling.php:254
841
+ #: app/features/mec/wizard.php:276 app/features/mec/wizard.php:359
842
+ #: app/features/mec/wizard.php:380 app/features/mec/wizard.php:498
843
+ #: app/features/organizers.php:280 app/features/popup/event.php:126
844
+ #: app/features/popup/event.php:173 app/skins/single.php:1146
845
+ #: app/skins/single/default.php:207 app/skins/single/default.php:444
846
+ #: app/skins/single/m1.php:224 app/skins/single/m2.php:148
847
+ #: app/skins/single/modern.php:179
848
  msgid "Read More"
849
  msgstr "Číst více"
850
 
851
+ #: app/features/events.php:674 app/features/fes/form.php:341
852
  #, fuzzy
853
  #| msgid "Timezone: %s"
854
  msgid "Timezone"
855
  msgstr "Časové pásmo: %s"
856
 
857
+ #: app/features/events.php:679 app/features/events.php:692
858
+ #: app/features/events.php:1683 app/features/events.php:1693
859
+ #: app/features/events.php:1714 app/features/events.php:1736
860
+ #: app/features/events.php:2197 app/features/events.php:2329
861
+ #: app/features/events.php:2515 app/features/fes/form.php:346
862
  #: app/features/fes/form.php:359
863
  msgid "Inherit from global options"
864
  msgstr "Zdědí z globálních možností"
865
 
866
+ #: app/features/events.php:688 app/features/events.php:691
867
  #: app/features/fes/form.php:355 app/features/fes/form.php:358
868
  #, fuzzy
869
  #| msgid "Countdown View"
870
  msgid "Countdown Method"
871
  msgstr "Zobrazení odpočítávání"
872
 
873
+ #: app/features/events.php:693 app/features/fes/form.php:360
874
  #, fuzzy
875
  #| msgid "On Event Start"
876
  msgid "Count to Event Start"
877
  msgstr "Při spuštění události"
878
 
879
+ #: app/features/events.php:694 app/features/fes/form.php:361
880
  #, fuzzy
881
  #| msgid "On Event End"
882
  msgid "Count to Event End"
883
  msgstr "Na konci události"
884
 
885
+ #: app/features/events.php:700 app/features/fes/form.php:368
886
  #: app/modules/weather/darksky.php:57
887
  msgid "Visibility"
888
  msgstr "Viditelnost"
889
 
890
+ #: app/features/events.php:703 app/features/fes/form.php:371
891
+ #: app/features/mec/settings.php:861 app/features/mec/settings.php:865
892
  #, fuzzy
893
  #| msgid "Visibility"
894
  msgid "Event Visibility"
895
  msgstr "Viditelnost"
896
 
897
+ #: app/features/events.php:704 app/features/fes/form.php:372
898
  #, fuzzy
899
  #| msgid "Booking Style"
900
  msgid "Show on Shortcodes"
901
  msgstr "Styl rezervace"
902
 
903
+ #: app/features/events.php:705 app/features/fes/form.php:373
904
  #, fuzzy
905
  #| msgid "Shortcodes"
906
  msgid "Hide on Shortcodes"
907
  msgstr "Zkrácené kódy"
908
 
909
+ #: app/features/events.php:712 app/features/fes/form.php:381
910
  msgid "Repeating"
911
  msgstr "Opakování"
912
 
913
+ #: app/features/events.php:721
914
  msgid "Event Repeating (Recurring events)"
915
  msgstr "Opakování události (opakující se události)"
916
 
917
+ #: app/features/events.php:725 app/features/fes/form.php:387
918
  msgid "Repeats"
919
  msgstr "Opakování"
920
 
921
+ #: app/features/events.php:733 app/features/fes/form.php:389
922
+ #: app/features/mec.php:1446 app/skins/default_full_calendar/tpl.php:77
923
  #: app/skins/full_calendar/tpl.php:125
924
  msgid "Daily"
925
  msgstr "Děnně"
926
 
927
+ #: app/features/events.php:740 app/features/fes/form.php:390
928
  msgid "Every Weekday"
929
  msgstr "Každý všední den"
930
 
931
+ #: app/features/events.php:747 app/features/fes/form.php:391
932
  msgid "Every Weekend"
933
  msgstr "Každý víkend"
934
 
935
+ #: app/features/events.php:754 app/features/fes/form.php:392
936
  msgid "Certain Weekdays"
937
  msgstr "Určité pracovní dny"
938
 
939
+ #: app/features/events.php:761 app/features/fes/form.php:393
940
  #: app/skins/default_full_calendar/tpl.php:76
941
  #: app/skins/full_calendar/tpl.php:124
942
  msgid "Weekly"
943
  msgstr "Týdně"
944
 
945
+ #: app/features/events.php:768 app/features/fes/form.php:394
946
+ #: app/features/mec.php:1447 app/skins/default_full_calendar/tpl.php:75
947
  #: app/skins/full_calendar/tpl.php:123
948
  msgid "Monthly"
949
  msgstr "Měsíčně"
950
 
951
+ #: app/features/events.php:775 app/features/fes/form.php:395
952
+ #: app/features/mec.php:1448 app/skins/default_full_calendar/tpl.php:74
953
  #: app/skins/full_calendar/tpl.php:122
954
  msgid "Yearly"
955
  msgstr "Ročně"
956
 
957
+ #: app/features/events.php:782 app/features/fes/form.php:396
958
  msgid "Custom Days"
959
  msgstr "Vlastní dny"
960
 
961
+ #: app/features/events.php:789 app/features/fes/form.php:397
962
  msgid "Advanced"
963
  msgstr "Pokročilé"
964
 
965
+ #: app/features/events.php:794 app/features/fes/form.php:401
966
  msgid "Repeat Interval"
967
  msgstr "Interval opakování"
968
 
969
+ #: app/features/events.php:796 app/features/fes/form.php:402
970
  msgid "Repeat interval"
971
  msgstr "Interval opakování"
972
 
973
+ #: app/features/events.php:800 app/features/fes/form.php:405
974
  msgid "Week Days"
975
  msgstr "Dny v týdnu"
976
 
977
+ #: app/features/events.php:817
978
  #, fuzzy
979
  #| msgid "Pro version of Modern Events Calendar"
980
  msgid ""
982
  "Calendar."
983
  msgstr "Pro verze doplňku Modern Events Calendar"
984
 
985
+ #: app/features/events.php:823 app/features/events.php:1955
986
+ #: app/features/events.php:1983 app/features/events.php:2139
987
  #: app/features/fes/form.php:419 app/features/ix/import_f_calendar.php:42
988
  #: app/features/ix/import_g_calendar.php:51
989
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
991
  msgid "Start"
992
  msgstr "Začátek"
993
 
994
+ #: app/features/events.php:836 app/features/events.php:1347
995
+ #: app/features/events.php:1939 app/features/events.php:2128
996
+ #: app/features/events.php:2208 app/features/events.php:2341
997
+ #: app/features/fes/form.php:449 app/features/fes/form.php:1050
998
+ #: app/features/occurrences.php:114 app/features/organizers.php:331
999
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:120
1000
  msgid "Add"
1001
  msgstr "Přidat"
1002
 
1003
+ #: app/features/events.php:839 app/features/fes/form.php:452
1004
  msgid "Custom Days Repeating"
1005
  msgstr "Opakování vlastních dnů"
1006
 
1007
+ #: app/features/events.php:842 app/features/fes/form.php:455
1008
  #, fuzzy
1009
  #| msgid ""
1010
  #| "Add certain days to event occurrence dates. If you have single day event, "
1019
  "datum zahájení a ukončení by mělo být stejné. Pokud máte vícedenní událost, "
1020
  "datum zahájení a ukončení musí odpovídat počátečnímu datu."
1021
 
1022
+ #: app/features/events.php:853 app/features/events.php:1959
1023
+ #: app/features/events.php:1987 app/features/events.php:2143
1024
  #: app/features/fes/form.php:434 app/libraries/skins.php:1309
1025
  msgid "End"
1026
  msgstr "Konec"
1027
 
1028
+ #: app/features/events.php:930 app/features/fes/form.php:528
1029
  msgid "First"
1030
  msgstr "První"
1031
 
1032
+ #: app/features/events.php:972 app/features/fes/form.php:570
1033
  msgid "Second"
1034
  msgstr "Druhá"
1035
 
1036
+ #: app/features/events.php:1014 app/features/fes/form.php:612
1037
  msgid "Third"
1038
  msgstr "Třetí"
1039
 
1040
+ #: app/features/events.php:1056 app/features/fes/form.php:654
1041
  msgid "Fourth"
1042
  msgstr "Čtvrtá"
1043
 
1044
+ #: app/features/events.php:1098 app/features/fes/form.php:696
1045
  msgid "Last"
1046
  msgstr "Poslední"
1047
 
1048
+ #: app/features/events.php:1145 app/features/fes/form.php:742
1049
  msgid "Ends Repeat"
1050
  msgstr "Ukončení opakování"
1051
 
1052
+ #: app/features/events.php:1157 app/features/fes/form.php:746
1053
  msgid "Never"
1054
  msgstr "Nikdy"
1055
 
1056
  # Možná Zapnuto
1057
+ #: app/features/events.php:1169 app/features/fes/form.php:751
1058
  msgid "On"
1059
  msgstr "Na"
1060
 
1061
+ #: app/features/events.php:1185 app/features/fes/form.php:758
1062
  #: app/features/mec/booking.php:157
1063
  msgid "After"
1064
  msgstr "Po"
1065
 
1066
+ #: app/features/events.php:1189 app/features/events.php:1193
1067
  #: app/features/fes/form.php:760 app/features/fes/form.php:763
1068
  msgid "Occurrences times"
1069
  msgstr "Časy výskytu"
1070
 
1071
+ #: app/features/events.php:1194
1072
  #, fuzzy
1073
  #| msgid ""
1074
  #| "The event will finish after certain repeats. For example if you set it to "
1080
  "Událost bude ukončena po určitých opakováních. Pokud například nastavíte "
1081
  "hodnotu 10, událost skončí po 10 opakováních."
1082
 
1083
+ #: app/features/events.php:1210 app/features/fes/form.php:777
1084
  #, fuzzy
1085
  #| msgid "Next Occurrence of Other Events"
1086
  msgid "Show only one occurrence of this event"
1087
  msgstr "Další výskyt dalších událostí"
1088
 
1089
+ #: app/features/events.php:1238 app/features/events.php:3888
1090
+ #: app/features/fes/form.php:861 app/features/ix.php:4089
1091
+ #: app/features/ix.php:4132 app/features/mec/meta_boxes/search_form.php:94
1092
  #: app/features/mec/meta_boxes/search_form.php:182
1093
  #: app/features/mec/meta_boxes/search_form.php:270
1094
  #: app/features/mec/meta_boxes/search_form.php:358
1095
  #: app/features/mec/meta_boxes/search_form.php:445
1096
  #: app/features/mec/meta_boxes/search_form.php:532
1097
  #: app/features/mec/meta_boxes/search_form.php:619
1098
+ #: app/features/mec/meta_boxes/search_form.php:700
1099
+ #: app/features/mec/meta_boxes/search_form.php:787
1100
+ #: app/features/mec/meta_boxes/search_form.php:874
1101
+ #: app/features/mec/meta_boxes/search_form.php:997
1102
+ #: app/features/mec/notifications.php:150
1103
+ #: app/features/mec/notifications.php:300
1104
+ #: app/features/mec/notifications.php:465
1105
+ #: app/features/mec/notifications.php:645
1106
+ #: app/features/mec/notifications.php:821
1107
+ #: app/features/mec/notifications.php:978
1108
+ #: app/features/mec/notifications.php:1134
1109
+ #: app/features/mec/notifications.php:1291
1110
+ #: app/features/mec/notifications.php:1439
1111
+ #: app/features/mec/notifications.php:1555 app/features/mec/settings.php:837
1112
+ #: app/features/notifications.php:116 app/libraries/main.php:6715
1113
+ #: app/libraries/main.php:6764 app/widgets/single.php:105
1114
  msgid "Event Cost"
1115
  msgstr "Cena události"
1116
 
1117
+ #: app/features/events.php:1249 app/features/fes/form.php:871
1118
+ #: app/features/mec/settings.php:551
1119
+ msgid "Currency"
1120
+ msgstr "Měna"
1121
+
1122
+ #: app/features/events.php:1259 app/features/events.php:1264
1123
+ #: app/features/fes/form.php:881 app/features/fes/form.php:886
1124
+ #: app/features/mec/settings.php:561 app/features/mec/settings.php:566
1125
+ msgid "Currency Sign"
1126
+ msgstr "Symbol měny"
1127
+
1128
+ #: app/features/events.php:1265 app/features/fes/form.php:887
1129
+ #: app/features/mec/settings.php:567
1130
+ msgid "Default value will be \"currency\" if you leave it empty."
1131
+ msgstr "Výchozí hodnota bude „měna“, pokud ji necháte prázdnou."
1132
+
1133
+ #: app/features/events.php:1272 app/features/fes/form.php:894
1134
+ #: app/features/mec/settings.php:574
1135
+ msgid "Currency Position"
1136
+ msgstr "Pozice měny"
1137
+
1138
+ #: app/features/events.php:1275 app/features/fes/form.php:897
1139
+ #: app/features/mec/settings.php:577
1140
+ #, fuzzy
1141
+ #| msgid "Before $10"
1142
+ msgid "$10 (Before)"
1143
+ msgstr "Před $10"
1144
+
1145
+ #: app/features/events.php:1276 app/features/fes/form.php:898
1146
+ #: app/features/mec/settings.php:578
1147
+ msgid "$ 10 (Before with Space)"
1148
+ msgstr ""
1149
+
1150
+ #: app/features/events.php:1277 app/features/fes/form.php:899
1151
+ #: app/features/mec/settings.php:579
1152
+ #, fuzzy
1153
+ #| msgid "After"
1154
+ msgid "10$ (After)"
1155
+ msgstr "Po"
1156
+
1157
+ #: app/features/events.php:1278 app/features/fes/form.php:900
1158
+ #: app/features/mec/settings.php:580
1159
+ msgid "10 $ (After with Space)"
1160
+ msgstr ""
1161
+
1162
+ #: app/features/events.php:1283 app/features/fes/form.php:905
1163
+ #: app/features/mec/settings.php:585
1164
+ msgid "Thousand Separator"
1165
+ msgstr "Oddělovač tisíců"
1166
+
1167
+ #: app/features/events.php:1289 app/features/fes/form.php:911
1168
+ #: app/features/mec/settings.php:591
1169
+ msgid "Decimal Separator"
1170
+ msgstr "Oddělovač desítel"
1171
+
1172
+ #: app/features/events.php:1299 app/features/fes/form.php:921
1173
+ #: app/features/mec/settings.php:601
1174
+ msgid "No decimal"
1175
+ msgstr "Bez desetinných míst"
1176
+
1177
+ #: app/features/events.php:1334
1178
  msgid "Exceptional Days (Exclude Dates)"
1179
  msgstr "Výjimečné dny (vyjma dat)"
1180
 
1181
+ #: app/features/events.php:1340 app/features/events.php:1350
1182
  msgid "Exclude certain days"
1183
  msgstr "Vyloučit určité dny"
1184
 
1185
+ #: app/features/events.php:1345 app/features/events.php:2561
1186
+ #: app/features/events.php:2650 app/features/fes.php:243
1187
  #: app/features/mec/booking.php:665 app/features/mec/booking.php:761
1188
+ #: app/features/mec/single.php:251 app/features/profile/profile.php:36
1189
+ #: app/features/wc.php:83 app/libraries/main.php:3525
1190
  #: app/libraries/skins.php:1242 app/modules/booking/steps/tickets.php:127
1191
  #: app/modules/next-event/details.php:143 app/skins/single.php:1119
1192
+ #: app/skins/single/default.php:146 app/skins/single/default.php:386
1193
+ #: app/skins/single/m1.php:21 app/skins/single/modern.php:214
1194
  msgid "Date"
1195
  msgstr "Datum"
1196
 
1197
+ #: app/features/events.php:1351
1198
  msgid ""
1199
  "Exclude certain days from event occurrence dates. Please note that you can "
1200
  "exclude only single day occurrences and you cannot exclude one day from "
1204
  "můžete vyloučit pouze výskyty za jeden den a nelze vyloučit jeden den z "
1205
  "vícedenních výskytů."
1206
 
1207
+ #: app/features/events.php:1409 app/libraries/render.php:559
1208
  msgid "Day 1"
1209
  msgstr "Den 1"
1210
 
1211
+ #: app/features/events.php:1453 app/features/fes/form.php:827
1212
+ #: app/features/mec/settings.php:831
1213
  msgid "Event Links"
1214
  msgstr "Odkazy na událost"
1215
 
1216
+ #: app/features/events.php:1456 app/features/events.php:1464
1217
+ #: app/features/fes/form.php:829 app/features/mec/settings.php:1088
1218
+ #: app/libraries/main.php:6713 app/libraries/main.php:6762
1219
  msgid "Event Link"
1220
  msgstr "Odkaz na událost"
1221
 
1222
+ #: app/features/events.php:1459 app/features/events.php:1477
1223
  #: app/features/fes/form.php:830 app/features/fes/form.php:835
1224
  msgid "eg. http://yoursite.com/your-event"
1225
  msgstr "např. http://yoursite.com/vase-udalost"
1226
 
1227
+ #: app/features/events.php:1465
1228
  #, fuzzy
1229
  #| msgid ""
1230
  #| "If you fill it, it will be replaced instead of default event page link. "
1239
  "Vložte úplný odkaz včetně http (s): // - Pokud používáte reklamní adresu "
1240
  "URL, můžete také použít zkracovač URL"
1241
 
1242
+ #: app/features/events.php:1467
1243
  msgid "URL Shortener"
1244
  msgstr "Zkracovač URL"
1245
 
1246
+ #: app/features/events.php:1474 app/features/events.php:1487
1247
+ #: app/features/fes/form.php:834 app/libraries/main.php:6714
1248
+ #: app/libraries/main.php:6763 app/skins/single.php:1145
1249
+ #: app/skins/single/default.php:206 app/skins/single/default.php:443
1250
  #: app/skins/single/m1.php:223 app/skins/single/m2.php:147
1251
+ #: app/skins/single/modern.php:178 app/widgets/single.php:109
1252
  msgid "More Info"
1253
  msgstr "Více info"
1254
 
1255
+ #: app/features/events.php:1480 app/features/fes/form.php:836
1256
  msgid "More Information"
1257
  msgstr "Více informací"
1258
 
1259
+ #: app/features/events.php:1482 app/features/fes/form.php:838
1260
+ #: app/features/mec.php:1044 app/features/popup/shortcode.php:477
1261
  msgid "Current Window"
1262
  msgstr "Aktuální okno"
1263
 
1264
+ #: app/features/events.php:1483 app/features/fes/form.php:839
1265
+ #: app/features/mec.php:1045 app/features/popup/shortcode.php:481
1266
  msgid "New Window"
1267
  msgstr "Nové okno"
1268
 
1269
+ #: app/features/events.php:1488 app/features/fes/form.php:841
1270
  msgid ""
1271
  "If you fill it, it will be shown in event details page as an optional link. "
1272
  "Insert full link including http(s)://"
1274
  "Pokud ji vyplníte, zobrazí se jako volitelný odkaz na stránce s podrobnostmi "
1275
  "o události. Vložte celý odkaz včetně http (s): //"
1276
 
1277
+ #: app/features/events.php:1511 app/features/mec/settings.php:928
1278
  msgid "Booking Options"
1279
  msgstr "Možnosti rezervace"
1280
 
1281
+ #: app/features/events.php:1512 app/features/events.php:1725
1282
+ #: app/features/mec/settings.php:965
1283
  #, fuzzy
1284
  #| msgid "Total user booking limits"
1285
  msgid "Total User Booking Limits"
1286
  msgstr "Celkové limity rezervace uživatelů"
1287
 
1288
+ #: app/features/events.php:1513 app/features/events.php:1785
1289
+ #: app/libraries/book.php:63 app/libraries/main.php:6718
1290
  #: app/modules/booking/steps/tickets.php:159
1291
  #: app/modules/booking/steps/tickets.php:165
1292
  msgid "Tickets"
1293
  msgstr "Vstupenky"
1294
 
1295
+ #: app/features/events.php:1515 app/features/events.php:2185
1296
  msgid "Fees"
1297
  msgstr "Poplatky"
1298
 
1299
+ #: app/features/events.php:1518 app/features/events.php:2317
1300
+ #: app/features/mec/settings.php:995
1301
  msgid "Ticket Variations / Options"
1302
  msgstr "Varianty vstupenky / možnosti"
1303
 
1304
+ #: app/features/events.php:1522 app/features/mec/booking.php:926
1305
  #: app/features/mec/support-page.php:118
1306
  msgid "Organizer Payment"
1307
  msgstr "Platba organizátora"
1308
 
1309
+ #: app/features/events.php:1589 app/features/events.php:1603
1310
  #, fuzzy
1311
  #| msgid "Total booking limits"
1312
  msgid "Total booking limit"
1313
  msgstr "Celkové limity rezervace"
1314
 
1315
+ #: app/features/events.php:1600 app/features/events.php:1905
1316
+ #: app/features/events.php:2094 app/modules/booking/default.php:99
1317
  #: app/modules/booking/steps/tickets.php:159
1318
  #: app/modules/booking/steps/tickets.php:165
1319
  #: app/skins/available_spot/tpl.php:131
1320
  msgid "Unlimited"
1321
  msgstr "Neomezené"
1322
 
1323
+ #: app/features/events.php:1606
1324
  msgid ""
1325
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1326
  "limitation number."
1328
  "Pokud chcete nastavit limit na všechny lístky, zrušte zaškrtnutí tohoto "
1329
  "políčka a zadejte číslo omezení."
1330
 
1331
+ #: app/features/events.php:1608
1332
  msgid "Read About A Booking System"
1333
  msgstr "Přečtěte si o rezervačním systému"
1334
 
1335
+ #: app/features/events.php:1616
1336
  msgid "100"
1337
  msgstr "100"
1338
 
1339
+ #: app/features/events.php:1621
1340
  #, fuzzy
1341
  #| msgid "Discount"
1342
  msgid "Discount per user roles"
1343
  msgstr "Sleva"
1344
 
1345
+ #: app/features/events.php:1627
1346
  msgid "5"
1347
  msgstr ""
1348
 
1349
+ #: app/features/events.php:1633 app/features/events.php:1647
1350
+ #: app/features/mec/settings.php:947
1351
  #, fuzzy
1352
  #| msgid "Next Occurrence"
1353
  msgid "Book All Occurrences"
1354
  msgstr "Další výskyt"
1355
 
1356
+ #: app/features/events.php:1644
1357
  msgid "Sell all occurrences by one booking"
1358
  msgstr ""
1359
 
1360
+ #: app/features/events.php:1650
1361
  msgid ""
1362
  "If you have a series of events and you want to sell all of them at once, "
1363
  "this option is for you! For example a weekly yoga course or something "
1364
  "similar."
1365
  msgstr ""
1366
 
1367
+ #: app/features/events.php:1661 app/features/mec/booking.php:130
1368
+ #: app/features/mec/settings.php:953
1369
  #, fuzzy
1370
  #| msgid "General Options"
1371
  msgid "Interval Options"
1372
  msgstr "Obecné možnosti"
1373
 
1374
+ #: app/features/events.php:1663 app/features/events.php:1668
1375
  #: app/features/mec/booking.php:132 app/features/mec/booking.php:137
1376
  msgid "Show Booking Form Interval"
1377
  msgstr "Zobrazit Interval rezervačního formuláře"
1378
 
1379
+ #: app/features/events.php:1665 app/features/mec/booking.php:134
1380
  msgid "Minutes (e.g 5)"
1381
  msgstr "Minuty (např. 5)"
1382
 
1383
+ #: app/features/events.php:1669 app/features/mec/booking.php:138
1384
  #, fuzzy
1385
  #| msgid ""
1386
  #| "You can show booking form only at certain time before event start. If you "
1395
  "Pokud nastavíte tuto možnost na 30, rezervační formulář se otevře pouze 30 "
1396
  "minut před zahájením akce!"
1397
 
1398
+ #: app/features/events.php:1678 app/features/mec/settings.php:959
1399
  msgid "Automatic Approval"
1400
  msgstr ""
1401
 
1402
+ #: app/features/events.php:1680 app/features/notifications.php:174
1403
  #, fuzzy
1404
  #| msgid "Email verification"
1405
  msgid "Email Verification"
1406
  msgstr "Ověřovací email"
1407
 
1408
+ #: app/features/events.php:1684 app/features/events.php:1694
1409
  #: app/features/mec/booking.php:177 app/features/mec/booking.php:244
1410
  #: app/features/mec/booking.php:259 app/features/mec/booking.php:863
1411
  #: app/features/mec/booking.php:890
1484
  #: app/features/mec/meta_boxes/search_form.php:613
1485
  #: app/features/mec/meta_boxes/search_form.php:621
1486
  #: app/features/mec/meta_boxes/search_form.php:628
1487
+ #: app/features/mec/meta_boxes/search_form.php:636
1488
  #: app/features/mec/meta_boxes/search_form.php:650
1489
  #: app/features/mec/meta_boxes/search_form.php:658
1490
+ #: app/features/mec/meta_boxes/search_form.php:666
1491
+ #: app/features/mec/meta_boxes/search_form.php:673
1492
+ #: app/features/mec/meta_boxes/search_form.php:680
1493
+ #: app/features/mec/meta_boxes/search_form.php:687
1494
  #: app/features/mec/meta_boxes/search_form.php:694
1495
+ #: app/features/mec/meta_boxes/search_form.php:702
1496
+ #: app/features/mec/meta_boxes/search_form.php:709
1497
+ #: app/features/mec/meta_boxes/search_form.php:716
1498
+ #: app/features/mec/meta_boxes/search_form.php:723
1499
  #: app/features/mec/meta_boxes/search_form.php:737
1500
  #: app/features/mec/meta_boxes/search_form.php:745
1501
+ #: app/features/mec/meta_boxes/search_form.php:753
1502
+ #: app/features/mec/meta_boxes/search_form.php:760
1503
+ #: app/features/mec/meta_boxes/search_form.php:767
1504
+ #: app/features/mec/meta_boxes/search_form.php:774
1505
  #: app/features/mec/meta_boxes/search_form.php:781
1506
+ #: app/features/mec/meta_boxes/search_form.php:789
1507
+ #: app/features/mec/meta_boxes/search_form.php:796
1508
+ #: app/features/mec/meta_boxes/search_form.php:803
1509
+ #: app/features/mec/meta_boxes/search_form.php:810
1510
  #: app/features/mec/meta_boxes/search_form.php:824
1511
  #: app/features/mec/meta_boxes/search_form.php:832
1512
+ #: app/features/mec/meta_boxes/search_form.php:840
1513
+ #: app/features/mec/meta_boxes/search_form.php:847
1514
+ #: app/features/mec/meta_boxes/search_form.php:854
1515
+ #: app/features/mec/meta_boxes/search_form.php:861
1516
  #: app/features/mec/meta_boxes/search_form.php:868
1517
+ #: app/features/mec/meta_boxes/search_form.php:876
1518
+ #: app/features/mec/meta_boxes/search_form.php:883
1519
+ #: app/features/mec/meta_boxes/search_form.php:890
1520
+ #: app/features/mec/meta_boxes/search_form.php:897
1521
  #: app/features/mec/meta_boxes/search_form.php:947
1522
  #: app/features/mec/meta_boxes/search_form.php:955
1523
+ #: app/features/mec/meta_boxes/search_form.php:963
1524
+ #: app/features/mec/meta_boxes/search_form.php:970
1525
+ #: app/features/mec/meta_boxes/search_form.php:977
1526
+ #: app/features/mec/meta_boxes/search_form.php:984
1527
  #: app/features/mec/meta_boxes/search_form.php:991
1528
+ #: app/features/mec/meta_boxes/search_form.php:999
1529
+ #: app/features/mec/meta_boxes/search_form.php:1006
1530
+ #: app/features/mec/meta_boxes/search_form.php:1013
1531
+ #: app/features/mec/meta_boxes/search_form.php:1020
1532
  #: app/features/mec/modules.php:115 app/features/mec/settings.php:98
1533
+ #: app/features/mec/settings.php:501 app/features/mec/settings.php:789
1534
+ #: app/features/mec/wizard.php:556
1535
  msgid "Disabled"
1536
  msgstr "Zakázaný"
1537
 
1538
+ #: app/features/events.php:1685 app/features/events.php:1695
1539
  #: app/features/mec/booking.php:176 app/features/mec/booking.php:243
1540
  #: app/features/mec/booking.php:260 app/features/mec/booking.php:862
1541
  #: app/features/mec/booking.php:891 app/features/mec/modules.php:155
1542
+ #: app/features/mec/settings.php:99 app/features/mec/settings.php:788
1543
+ #: app/features/mec/wizard.php:555
1544
  msgid "Enabled"
1545
  msgstr "Povoleno"
1546
 
1547
+ #: app/features/events.php:1690 app/features/mec/booking.php:395
1548
+ #: app/features/mec/notifications.php:348 app/features/notifications.php:168
1549
+ #: app/libraries/main.php:649
1550
  msgid "Booking Confirmation"
1551
  msgstr "Potvrzení rezervace"
1552
 
1553
+ #: app/features/events.php:1703 app/features/mec/booking.php:279
1554
+ #: app/features/mec/settings.php:971
1555
  #, fuzzy
1556
  #| msgid "Ticket"
1557
  msgid "Last Few Tickets Percentage"
1558
  msgstr "Vstupenka"
1559
 
1560
+ #: app/features/events.php:1716
1561
  msgid "15"
1562
  msgstr ""
1563
 
1564
+ #: app/features/events.php:1739
1565
  msgid "12"
1566
  msgstr "12"
1567
 
1568
+ #: app/features/events.php:1746
1569
  #, fuzzy
1570
  #| msgid "Payment Gateways"
1571
  msgid "Disabled Gateways"
1572
  msgstr "Platební brány"
1573
 
1574
+ #: app/features/events.php:1747
1575
  msgid ""
1576
  "You can disable some of the following payment gateways by checking them "
1577
  "otherwise they will be enabled."
1578
  msgstr ""
1579
 
1580
+ #: app/features/events.php:1788
1581
  msgid ""
1582
  "You're translating an event so MEC will use the original event for tickets "
1583
  "and booking. You can only translate the ticket name and description. Please "
1587
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1588
  "definujte určité vstupenky, které jste definovali v původní události."
1589
 
1590
+ #: app/features/events.php:1793
1591
  #, fuzzy
1592
  #| msgid "Ticket"
1593
  msgid "Add Ticket"
1594
  msgstr "Vstupenka"
1595
 
1596
+ #: app/features/events.php:1805 app/features/events.php:2007
1597
  #, fuzzy
1598
  #| msgid "Ticket"
1599
  msgid "Ticket ID"
1600
  msgstr "Vstupenka"
1601
 
1602
+ #: app/features/events.php:1805 app/features/events.php:2007
1603
+ #: app/features/events.php:3888 app/features/fes.php:243
1604
+ #: app/features/ix.php:4089 app/features/ix.php:4132
1605
  #: app/features/labels.php:179 app/features/locations.php:262
1606
  #: app/features/organizers.php:203 app/features/speakers.php:281
1607
  msgid "ID"
1608
  msgstr "ID"
1609
 
1610
+ #: app/features/events.php:1808 app/features/events.php:2010
1611
  msgid "Ticket Name"
1612
  msgstr "Název vstupenky"
1613
 
1614
+ #: app/features/events.php:1813 app/features/events.php:2014
1615
+ #: app/features/events.php:3888 app/features/ix.php:4089
1616
+ #: app/features/ix.php:4132 app/libraries/skins.php:1323
1617
  msgid "Start Time"
1618
  msgstr "Začátek"
1619
 
1620
+ #: app/features/events.php:1826 app/features/events.php:2027
1621
+ #: app/features/events.php:3888 app/features/ix.php:4089
1622
+ #: app/features/ix.php:4132 app/libraries/skins.php:1324
1623
  msgid "End Time"
1624
  msgstr "Konec"
1625
 
1626
+ #: app/features/events.php:1842 app/features/events.php:2042
1627
+ #: app/features/events.php:3888 app/libraries/hourlyschedule.php:66
1628
  #: app/libraries/hourlyschedule.php:87 app/libraries/hourlyschedule.php:132
1629
  msgid "Description"
1630
  msgstr "Popis"
1631
 
1632
+ #: app/features/events.php:1848 app/features/events.php:1851
1633
+ #: app/features/events.php:2047 app/features/events.php:2050
1634
+ #: app/features/mec/settings.php:785
1635
  #, fuzzy
1636
  #| msgid "Description"
1637
  msgid "Private Description"
1638
  msgstr "Popis"
1639
 
1640
+ #: app/features/events.php:1852 app/features/events.php:2051
1641
  #, php-format
1642
  msgid ""
1643
  "You can show it on the email notifications by placing "
1644
  "%%ticket_private_description%% into the email template."
1645
  msgstr ""
1646
 
1647
+ #: app/features/events.php:1861 app/features/events.php:1865
1648
+ #: app/features/events.php:1963 app/features/events.php:1990
1649
+ #: app/features/events.php:2060 app/features/events.php:2063
1650
+ #: app/features/events.php:2145 app/features/events.php:2362
1651
+ #: app/features/events.php:2366 app/features/events.php:2408
1652
+ #: app/features/events.php:2411 app/features/mec/booking.php:566
1653
  #: app/features/mec/booking.php:569 app/features/mec/booking.php:598
1654
  #: app/features/mec/booking.php:601 app/modules/booking/steps/checkout.php:63
1655
  msgid "Price"
1656
  msgstr "Cena"
1657
 
1658
+ #: app/features/events.php:1866 app/features/events.php:2064
1659
  #, fuzzy
1660
  #| msgid "Insert 0 for free ticket. Only numbers please."
1661
  msgid ""
1663
  "any symbols or characters."
1664
  msgstr "Vložte 0 pro vstupenku zdarma. Prosím pouze čísla."
1665
 
1666
+ #: app/features/events.php:1875 app/features/events.php:1880
1667
+ #: app/features/events.php:2073 app/features/events.php:2076
1668
  msgid "Price Label"
1669
  msgstr "Cenový štítek"
1670
 
1671
+ #: app/features/events.php:1881 app/features/events.php:2077
1672
  msgid "For showing on website. e.g. $15"
1673
  msgstr "Pro zobrazení na webu. např. 15 $"
1674
 
1675
+ #: app/features/events.php:1892 app/features/events.php:2088
1676
  msgid "Available Tickets"
1677
  msgstr "Dostupné vstupenky"
1678
 
1679
+ #: app/features/events.php:1911 app/features/events.php:2100
1680
  #, fuzzy
1681
  #| msgid "Maximum Per Ticket"
1682
  msgid "Minimum Ticket e.g. 3"
1683
  msgstr "Maximum na jednu vstupenku"
1684
 
1685
+ #: app/features/events.php:1914 app/features/events.php:2103
1686
  #, fuzzy
1687
  #| msgid "Maximum Per Ticket"
1688
  msgid "MinimumTicket"
1689
  msgstr "Maximum na jednu vstupenku"
1690
 
1691
+ #: app/features/events.php:1916 app/features/events.php:2105
1692
  msgid "Set a number for the minimum ticket reservation possible"
1693
  msgstr ""
1694
 
1695
+ #: app/features/events.php:1925 app/features/events.php:2114
1696
  msgid "e.g. 0"
1697
  msgstr ""
1698
 
1699
+ #: app/features/events.php:1927 app/features/events.php:2116
1700
  #, fuzzy
1701
  #| msgid "Days"
1702
  msgid "Day"
1703
  msgstr "Dny"
1704
 
1705
+ #: app/features/events.php:1928 app/features/events.php:2117
1706
  msgid "Hour"
1707
  msgstr ""
1708
 
1709
+ #: app/features/events.php:1930 app/features/events.php:2119
1710
  #, php-format
1711
  msgid "Stop selling ticket %s before event start."
1712
  msgstr ""
1713
 
1714
+ #: app/features/events.php:1937 app/features/events.php:2126
1715
  msgid "Price per Date"
1716
  msgstr "Cena za datum"
1717
 
1718
+ #: app/features/events.php:1967 app/features/events.php:1993
1719
+ #: app/features/events.php:2147 app/features/labels.php:60
1720
  #: app/features/mec/meta_boxes/display_options.php:1590
1721
  #: app/features/mec/meta_boxes/search_form.php:79
1722
  #: app/features/mec/meta_boxes/search_form.php:167
1725
  #: app/features/mec/meta_boxes/search_form.php:430
1726
  #: app/features/mec/meta_boxes/search_form.php:517
1727
  #: app/features/mec/meta_boxes/search_form.php:604
1728
+ #: app/features/mec/meta_boxes/search_form.php:685
1729
+ #: app/features/mec/meta_boxes/search_form.php:772
1730
+ #: app/features/mec/meta_boxes/search_form.php:859
1731
+ #: app/features/mec/meta_boxes/search_form.php:982
1732
+ #: app/features/mec/settings.php:1091 app/features/mec/settings.php:1183
1733
+ #: app/features/mec/single.php:412 app/features/mec/single.php:454
1734
  #: app/features/mec/wizard.php:436 app/features/mec/wizard.php:475
1735
  #: app/features/search.php:98 app/libraries/skins.php:1213
1736
  msgid "Label"
1737
  msgstr "Štítek"
1738
 
1739
+ #: app/features/events.php:1969 app/features/events.php:1995
1740
+ #: app/features/events.php:2149 app/features/events.php:2248
1741
+ #: app/features/events.php:2284 app/features/events.php:2391
1742
+ #: app/features/events.php:2433 app/features/mec/booking.php:505
1743
  #: app/features/mec/booking.php:534 app/features/mec/booking.php:585
1744
+ #: app/features/mec/booking.php:617 app/features/organizers.php:331
1745
+ #: app/features/organizers.php:340 app/libraries/hourlyschedule.php:53
1746
  #: app/libraries/hourlyschedule.php:67 app/libraries/hourlyschedule.php:88
1747
  #: app/libraries/hourlyschedule.php:116 app/libraries/hourlyschedule.php:133
1748
+ #: app/libraries/main.php:3357 app/libraries/main.php:3387
1749
+ #: app/libraries/main.php:3416 app/libraries/main.php:3445
1750
+ #: app/libraries/main.php:3475 app/libraries/main.php:3505
1751
+ #: app/libraries/main.php:3534 app/libraries/main.php:3564
1752
+ #: app/libraries/main.php:3594 app/libraries/main.php:3616
1753
+ #: app/libraries/main.php:3647 app/libraries/main.php:3694
1754
+ #: app/libraries/main.php:3748 app/libraries/main.php:3798
1755
+ #: app/libraries/main.php:3838
1756
  msgid "Remove"
1757
  msgstr "Odstranit"
1758
 
1759
+ #: app/features/events.php:2222 app/features/events.php:2260
1760
  #: app/features/mec/booking.php:485 app/features/mec/booking.php:514
1761
  msgid "Fee Title"
1762
  msgstr "Název poplatku"
1763
 
1764
+ #: app/features/events.php:2228 app/features/events.php:2232
1765
+ #: app/features/events.php:2265 app/features/events.php:2268
1766
  #: app/features/mec/booking.php:489 app/features/mec/booking.php:492
1767
  #: app/features/mec/booking.php:518 app/features/mec/booking.php:521
1768
  msgid "Amount"
1769
  msgstr "Množství"
1770
 
1771
+ #: app/features/events.php:2233 app/features/events.php:2269
1772
  #: app/features/mec/booking.php:493 app/features/mec/booking.php:522
1773
  msgid ""
1774
  "Fee amount, considered as fixed amount if you set the type to amount "
1777
  "Výše poplatku, je považovaná za pevnou částku, pokud nastavíte typ na částku "
1778
  "odpovídající procentuální hodnotě"
1779
 
1780
+ #: app/features/events.php:2242 app/features/events.php:2278
1781
  #: app/features/mec/booking.php:500 app/features/mec/booking.php:529
1782
  msgid "Percent"
1783
  msgstr "Procent"
1784
 
1785
+ #: app/features/events.php:2243 app/features/events.php:2279
1786
  #: app/features/mec/booking.php:501 app/features/mec/booking.php:530
1787
  msgid "Amount (Per Ticket)"
1788
  msgstr "Částka (za vstupenku)"
1789
 
1790
+ #: app/features/events.php:2244 app/features/events.php:2280
1791
  #: app/features/mec/booking.php:502 app/features/mec/booking.php:531
1792
  msgid "Amount (Per Booking)"
1793
  msgstr "Částka (za rezervaci)"
1794
 
1795
+ #: app/features/events.php:2356 app/features/events.php:2403
1796
+ #: app/features/events.php:3607 app/features/events.php:3888
1797
+ #: app/features/fes/form.php:260 app/features/ix.php:4089
1798
+ #: app/features/ix.php:4132 app/features/mec/booking.php:562
1799
  #: app/features/mec/booking.php:594 app/features/mec/styling.php:134
1800
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1801
  #: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:111
1803
  msgid "Title"
1804
  msgstr "Název"
1805
 
1806
+ #: app/features/events.php:2367 app/features/events.php:2412
1807
  #: app/features/mec/booking.php:570 app/features/mec/booking.php:602
1808
  msgid "Option Price"
1809
  msgstr "Možnosti ceny"
1810
 
1811
+ #: app/features/events.php:2377 app/features/events.php:2381
1812
+ #: app/features/events.php:2421 app/features/events.php:2424
1813
  #: app/features/mec/booking.php:576 app/features/mec/booking.php:579
1814
  #: app/features/mec/booking.php:608 app/features/mec/booking.php:611
1815
  msgid "Maximum Per Ticket"
1816
  msgstr "Maximum na jednu vstupenku"
1817
 
1818
+ #: app/features/events.php:2382 app/features/events.php:2425
1819
  #: app/features/mec/booking.php:580 app/features/mec/booking.php:612
1820
  #, fuzzy
1821
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1822
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1823
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1824
 
1825
+ #: app/features/events.php:2501
1826
  #, fuzzy
1827
  #| msgid ""
1828
  #| "You're translating an event so MEC will use the original event for "
1838
  "vstupenek a rezervace. Můžete přeložit pouze název a popis vstupenky. Prosím "
1839
  "definujte určité vstupenky, které jste definovali v původní události."
1840
 
1841
+ #: app/features/events.php:2527 app/features/mec/booking.php:628
1842
  #, fuzzy
1843
  #| msgid "Attendees Limit"
1844
  msgid "Per Attendee Fields"
1845
  msgstr "Limit účastníků"
1846
 
1847
+ #: app/features/events.php:2557 app/features/mec/booking.php:661
1848
+ #: app/libraries/main.php:3378
1849
  msgid "MEC Name"
1850
  msgstr "MEC Jméno"
1851
 
1852
+ #: app/features/events.php:2558 app/features/mec/booking.php:662
1853
+ #: app/libraries/main.php:3407
1854
  msgid "MEC Email"
1855
  msgstr "MEC Email"
1856
 
1857
+ #: app/features/events.php:2559 app/features/events.php:2648
1858
  #: app/features/mec/booking.php:663 app/features/mec/booking.php:759
1859
+ #: app/features/mec/single.php:248 app/libraries/main.php:3348
1860
  #: app/libraries/skins.php:1330
1861
  msgid "Text"
1862
  msgstr "Text"
1863
 
1864
+ #: app/features/events.php:2562 app/features/events.php:2651
1865
  #: app/features/mec/booking.php:666 app/features/mec/booking.php:762
1866
+ #: app/features/mec/single.php:252 app/features/organizers.php:103
1867
  #: app/features/organizers.php:148 app/features/speakers.php:119
1868
  #: app/features/speakers.php:200 app/features/speakers.php:284
1869
+ #: app/libraries/main.php:3555
1870
  msgid "Tel"
1871
  msgstr "Tel"
1872
 
1873
+ #: app/features/events.php:2563 app/features/mec/booking.php:667
1874
+ #: app/libraries/main.php:3496
1875
  msgid "File"
1876
  msgstr "Soubor"
1877
 
1878
+ #: app/features/events.php:2564 app/features/events.php:2652
1879
  #: app/features/mec/booking.php:668 app/features/mec/booking.php:763
1880
+ #: app/features/mec/single.php:253 app/libraries/main.php:3585
1881
  msgid "Textarea"
1882
  msgstr "Plocha textu"
1883
 
1884
+ #: app/features/events.php:2565 app/features/events.php:2653
1885
  #: app/features/mec/booking.php:669 app/features/mec/booking.php:764
1886
  #: app/features/mec/meta_boxes/search_form.php:46
1887
  #: app/features/mec/meta_boxes/search_form.php:134
1890
  #: app/features/mec/meta_boxes/search_form.php:397
1891
  #: app/features/mec/meta_boxes/search_form.php:484
1892
  #: app/features/mec/meta_boxes/search_form.php:571
1893
+ #: app/features/mec/meta_boxes/search_form.php:652
1894
+ #: app/features/mec/meta_boxes/search_form.php:739
1895
+ #: app/features/mec/meta_boxes/search_form.php:826
1896
+ #: app/features/mec/meta_boxes/search_form.php:949
1897
+ #: app/features/mec/single.php:255 app/libraries/main.php:3638
1898
  msgid "Checkboxes"
1899
  msgstr "Zatržítko"
1900
 
1901
+ #: app/features/events.php:2566 app/features/events.php:2654
1902
  #: app/features/mec/booking.php:670 app/features/mec/booking.php:765
1903
+ #: app/features/mec/single.php:256 app/libraries/main.php:3685
1904
  msgid "Radio Buttons"
1905
  msgstr "Přepínače"
1906
 
1907
+ #: app/features/events.php:2567 app/features/events.php:2655
1908
  #: app/features/mec/booking.php:125 app/features/mec/booking.php:671
1909
  #: app/features/mec/booking.php:766
1910
  #: app/features/mec/meta_boxes/search_form.php:45
1952
  #: app/features/mec/meta_boxes/search_form.php:593
1953
  #: app/features/mec/meta_boxes/search_form.php:600
1954
  #: app/features/mec/meta_boxes/search_form.php:607
 
1955
  #: app/features/mec/meta_boxes/search_form.php:651
1956
  #: app/features/mec/meta_boxes/search_form.php:659
1957
+ #: app/features/mec/meta_boxes/search_form.php:667
1958
+ #: app/features/mec/meta_boxes/search_form.php:674
1959
+ #: app/features/mec/meta_boxes/search_form.php:681
1960
+ #: app/features/mec/meta_boxes/search_form.php:688
1961
+ #: app/features/mec/meta_boxes/search_form.php:710
1962
  #: app/features/mec/meta_boxes/search_form.php:738
1963
  #: app/features/mec/meta_boxes/search_form.php:746
1964
+ #: app/features/mec/meta_boxes/search_form.php:754
1965
+ #: app/features/mec/meta_boxes/search_form.php:761
1966
+ #: app/features/mec/meta_boxes/search_form.php:768
1967
+ #: app/features/mec/meta_boxes/search_form.php:775
1968
+ #: app/features/mec/meta_boxes/search_form.php:797
1969
  #: app/features/mec/meta_boxes/search_form.php:825
1970
  #: app/features/mec/meta_boxes/search_form.php:833
1971
+ #: app/features/mec/meta_boxes/search_form.php:841
1972
+ #: app/features/mec/meta_boxes/search_form.php:848
1973
+ #: app/features/mec/meta_boxes/search_form.php:855
1974
+ #: app/features/mec/meta_boxes/search_form.php:862
1975
+ #: app/features/mec/meta_boxes/search_form.php:884
1976
  #: app/features/mec/meta_boxes/search_form.php:948
1977
  #: app/features/mec/meta_boxes/search_form.php:956
1978
+ #: app/features/mec/meta_boxes/search_form.php:964
1979
+ #: app/features/mec/meta_boxes/search_form.php:971
1980
+ #: app/features/mec/meta_boxes/search_form.php:978
1981
+ #: app/features/mec/meta_boxes/search_form.php:985
1982
+ #: app/features/mec/meta_boxes/search_form.php:1007
1983
+ #: app/features/mec/single.php:257 app/features/mec/wizard.php:546
1984
+ #: app/libraries/main.php:3732
1985
  msgid "Dropdown"
1986
  msgstr "Rozbalovací"
1987
 
1988
+ #: app/features/events.php:2568 app/features/events.php:2656
1989
  #: app/features/mec/booking.php:672 app/features/mec/booking.php:767
1990
+ #: app/libraries/main.php:3789
1991
  msgid "Agreement"
1992
  msgstr "Smlouva"
1993
 
1994
+ #: app/features/events.php:2569 app/features/events.php:2657
1995
  #: app/features/mec/booking.php:673 app/features/mec/booking.php:768
1996
+ #: app/features/mec/single.php:254 app/libraries/main.php:3615
1997
  msgid "Paragraph"
1998
  msgstr "Paragraf"
1999
 
2000
+ #: app/features/events.php:2618 app/features/mec/booking.php:726
2001
  #, fuzzy
2002
  #| msgid "Required Field"
2003
  msgid "Fixed Fields"
2004
  msgstr "Požadovaná pole"
2005
 
2006
+ #: app/features/events.php:3490 app/features/mec/meta_boxes/filter.php:198
2007
+ #: app/features/mec/settings.php:484
2008
+ msgid "Expired Events"
2009
+ msgstr "Události vypršely"
2010
+
2011
+ #: app/features/events.php:3510 app/features/events.php:3528
2012
+ #: app/features/events.php:3546 app/features/events.php:3564
2013
  #, php-format
2014
  msgid "Show all %s"
2015
  msgstr "Ukázat všechny %s"
2016
 
2017
+ #: app/features/events.php:3510
2018
  msgid "labels"
2019
  msgstr "štítky"
2020
 
2021
+ #: app/features/events.php:3528
2022
  msgid "locations"
2023
  msgstr "umístění"
2024
 
2025
+ #: app/features/events.php:3546
2026
  msgid "organizers"
2027
  msgstr "organizátoři"
2028
 
2029
+ #: app/features/events.php:3580
2030
  #, fuzzy
2031
  #| msgid "Attendees Limit"
2032
  msgid "Attendees List"
2033
  msgstr "Limit účastníků"
2034
 
2035
+ #: app/features/events.php:3609 app/features/events.php:3888
2036
+ #: app/features/ix.php:4089 app/features/ix.php:4132
2037
  #: app/features/locations.php:58 app/features/locations.php:263
2038
  #: app/features/locations.php:323 app/features/locations.php:325
2039
  #: app/features/locations.php:334
2045
  #: app/features/mec/meta_boxes/search_form.php:401
2046
  #: app/features/mec/meta_boxes/search_form.php:488
2047
  #: app/features/mec/meta_boxes/search_form.php:575
2048
+ #: app/features/mec/meta_boxes/search_form.php:656
2049
+ #: app/features/mec/meta_boxes/search_form.php:743
2050
+ #: app/features/mec/meta_boxes/search_form.php:830
2051
+ #: app/features/mec/meta_boxes/search_form.php:953
2052
+ #: app/features/mec/settings.php:1157 app/features/mec/single.php:402
2053
+ #: app/features/mec/single.php:444 app/features/mec/wizard.php:426
2054
  #: app/features/mec/wizard.php:465 app/features/popup/event.php:116
2055
  #: app/features/popup/event.php:125 app/features/search.php:74
2056
+ #: app/libraries/main.php:2713 app/libraries/main.php:6683
2057
+ #: app/libraries/main.php:6737 app/libraries/skins.php:1097
2058
  #: app/skins/single.php:962 app/skins/single.php:1416
2059
+ #: app/skins/single/default.php:243 app/skins/single/default.php:482
2060
  #: app/skins/single/m1.php:174 app/skins/single/m2.php:97
2061
+ #: app/skins/single/modern.php:127
2062
  msgid "Location"
2063
  msgstr "Umístění"
2064
 
2065
+ #: app/features/events.php:3615
2066
  #, fuzzy
2067
  #| msgid "Tickets"
2068
  msgid "Sold Tickets"
2069
  msgstr "Vstupenky"
2070
 
2071
+ #: app/features/events.php:3617
2072
  msgid "Repeat"
2073
  msgstr "Opakovat"
2074
 
2075
+ #: app/features/events.php:3762 app/features/events.php:3763
2076
  #, fuzzy
2077
  #| msgid "iCal Export"
2078
  msgid "iCal / Outlook Export"
2079
  msgstr "iCal Export"
2080
 
2081
+ #: app/features/events.php:3765 app/features/events.php:3766
2082
  msgid "CSV Export"
2083
  msgstr "CSV Export"
2084
 
2085
+ #: app/features/events.php:3768 app/features/events.php:3769
2086
  msgid "MS Excel Export"
2087
  msgstr "MS Excel Export"
2088
 
2089
+ #: app/features/events.php:3771 app/features/events.php:3772
2090
  msgid "XML Export"
2091
  msgstr "XML Export"
2092
 
2093
+ #: app/features/events.php:3774 app/features/events.php:3775
2094
  msgid "JSON Export"
2095
  msgstr "JSON Export"
2096
 
2097
+ #: app/features/events.php:3777 app/features/events.php:3778
2098
+ #: app/features/events.php:3947
2099
  msgid "Duplicate"
2100
  msgstr "Duplikát"
2101
 
2102
+ #: app/features/events.php:3888 app/features/ix.php:4089
2103
+ #: app/features/ix.php:4132
2104
  msgid "Link"
2105
  msgstr "Odkaz"
2106
 
2107
+ #: app/features/events.php:3888 app/features/ix.php:4089
2108
+ #: app/features/ix.php:4132 app/features/locations.php:110
2109
  #: app/features/locations.php:180 app/features/locations.php:264
2110
  #: app/features/mec/meta_boxes/search_form.php:86
2111
  #: app/features/mec/meta_boxes/search_form.php:174
2114
  #: app/features/mec/meta_boxes/search_form.php:437
2115
  #: app/features/mec/meta_boxes/search_form.php:524
2116
  #: app/features/mec/meta_boxes/search_form.php:611
2117
+ #: app/features/mec/meta_boxes/search_form.php:692
2118
+ #: app/features/mec/meta_boxes/search_form.php:779
2119
+ #: app/features/mec/meta_boxes/search_form.php:866
2120
+ #: app/features/mec/meta_boxes/search_form.php:989 app/libraries/skins.php:1344
2121
  msgid "Address"
2122
  msgstr "Adresa"
2123
 
2124
+ #: app/features/events.php:3888
2125
  #, php-format
2126
  msgid "%s Tel"
2127
  msgstr "%s Tel"
2128
 
2129
+ #: app/features/events.php:3888
2130
  #, php-format
2131
  msgid "%s Email"
2132
  msgstr "%s Email"
2133
 
2134
  # v kontextu
2135
+ #: app/features/events.php:3888 app/features/fes/form.php:937
2136
+ #: app/features/mec/settings.php:843
2137
  msgid "Featured Image"
2138
  msgstr "Hlavní obrázek"
2139
 
2140
+ #: app/features/events.php:4098 app/features/fes.php:243
2141
+ #: app/features/profile/profile.php:155 app/libraries/main.php:2797
2142
+ #: app/libraries/main.php:6717
2143
  msgid "Ticket"
2144
  msgstr "Vstupenka"
2145
 
2146
+ #: app/features/events.php:4101 app/features/profile/profile.php:158
2147
  msgid "Variations"
2148
  msgstr "Variace"
2149
 
2150
+ #: app/features/events.php:4116 app/features/fes.php:317
2151
  msgid "Unknown"
2152
  msgstr "Neznámý"
2153
 
2154
+ #: app/features/events.php:4142
2155
  msgid ""
2156
  "If you want to send an email, first select your attendees and then click in "
2157
  "the button below, please."
2158
  msgstr ""
2159
 
2160
+ #: app/features/events.php:4142 app/features/mec/report.php:58
2161
  #, fuzzy
2162
  #| msgid "Organizer Email"
2163
  msgid "Send Email"
2164
  msgstr "Organizátor Email"
2165
 
2166
+ #: app/features/events.php:4146
2167
  #, fuzzy
2168
  #| msgid "Attendees Form"
2169
  msgid "No Attendees Found!"
2211
  msgid "Order Time"
2212
  msgstr "Konec"
2213
 
2214
+ #: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2745
2215
+ #: app/libraries/main.php:2860
2216
  msgid "Transaction ID"
2217
  msgstr "ID transakce"
2218
 
2220
  msgid "Total Price"
2221
  msgstr "Celková cena"
2222
 
2223
+ #: app/features/fes.php:243 app/libraries/main.php:2855
2224
  #, fuzzy
2225
  #| msgid "Payment Gateways"
2226
  msgid "Gateway"
2290
  msgid "Please select at-least one label!"
2291
  msgstr "Vyberte události, které chcete importovat!"
2292
 
2293
+ #: app/features/fes.php:1295
2294
  #, fuzzy
2295
  #| msgid "The event submitted. It will publish as soon as possible."
2296
  msgid "Event submitted. It will publish as soon as possible."
2297
  msgstr "Událost byla odeslána. Zveřejní se co nejdříve."
2298
 
2299
+ #: app/features/fes.php:1296
2300
  msgid "The event published."
2301
  msgstr "Událost byla publikována."
2302
 
2304
  msgid "Go back to events list"
2305
  msgstr "Přejít zpět na seznam událostí"
2306
 
2307
+ #: app/features/fes/form.php:268 app/features/mec/settings.php:1010
2308
+ #: app/features/mec/settings.php:1086
2309
  msgid "Excerpt"
2310
  msgstr ""
2311
 
2383
  msgid "eg. yourname@gmail.com"
2384
  msgstr "např. vasejmeno@gmail.com"
2385
 
2386
+ #: app/features/fes/form.php:813 app/features/organizers.php:288
2387
  #: app/features/popup/event.php:183
2388
  msgid "eg. John Smith"
2389
  msgstr "např. Jan Novák"
2400
  "Pokud toto vyplníte, nahradí se místo výchozího odkazu na stránku události. "
2401
  "Vložte celý odkaz včetně http (s): //"
2402
 
2403
+ #: app/features/fes/form.php:942
2404
  msgid "Remove Image"
2405
  msgstr "Odebrat obrázek"
2406
 
2407
+ #: app/features/fes/form.php:978 app/features/labels.php:61
2408
+ #: app/features/labels.php:223 app/features/mec.php:485
2409
  #: app/features/mec/meta_boxes/filter.php:72
2410
+ #: app/features/mec/meta_boxes/filter.php:134 app/libraries/main.php:6680
2411
+ #: app/libraries/main.php:6734 app/skins/single.php:1175
2412
+ #: app/skins/single/default.php:221 app/skins/single/default.php:458
2413
+ #: app/skins/single/m1.php:76 app/skins/single/modern.php:269
2414
  msgid "Labels"
2415
  msgstr "Štítky"
2416
 
2417
+ #: app/features/fes/form.php:1024 app/features/mec.php:483
2418
  #: app/features/mec/meta_boxes/filter.php:73
2419
  #: app/features/mec/meta_boxes/filter.php:152 app/features/tag.php:59
2420
  msgid "Tags"
2421
  msgstr "Tagy"
2422
 
2423
+ #: app/features/fes/form.php:1026
2424
  msgid "Insert your desired tags, comma separated."
2425
  msgstr "Vložte požadované tagy oddělené čárkami."
2426
 
2427
+ #: app/features/fes/form.php:1046 app/features/mec.php:492
2428
+ #: app/features/mec/modules.php:43 app/features/mec/settings.php:914
2429
  #: app/features/mec/wizard.php:497 app/features/speakers.php:61
2430
  #: app/libraries/hourlyschedule.php:70 app/libraries/hourlyschedule.php:91
2431
+ #: app/libraries/hourlyschedule.php:136 app/libraries/main.php:627
2432
+ #: app/libraries/main.php:6686 app/libraries/main.php:6740
2433
  #: app/modules/speakers/details.php:18
2434
  msgid "Speakers"
2435
  msgstr "Řečníci"
2436
 
2437
+ #: app/features/fes/form.php:1048
2438
  msgid "Speakers Names"
2439
  msgstr "Jméno řečníka"
2440
 
2441
+ #: app/features/fes/form.php:1049
2442
  #, fuzzy
2443
  #| msgid "Separate names with commas Similar Justin, Cris"
2444
  msgid "Separate names with commas: Justin, Chris"
2445
  msgstr "Oddělte jména čárkami - Novák Petr, Pavel"
2446
 
2447
+ #: app/features/fes/form.php:1090 app/modules/booking/steps/form.php:352
2448
  msgid "Submit"
2449
  msgstr "Potvrdit"
2450
 
2482
  msgstr "MEC Import / Export"
2483
 
2484
  #: app/features/ix.php:107 app/features/mec/support.php:73
2485
+ #: app/libraries/main.php:882
2486
  msgid "Import / Export"
2487
  msgstr "Import / Export"
2488
 
2489
+ #: app/features/ix.php:209 app/features/ix.php:213 app/features/ix.php:227
2490
  #, fuzzy
2491
  #| msgid "Please upload the feed file."
2492
  msgid "Please upload a CSV file."
2493
  msgstr "Nahrajte prosím zdrojový soubor."
2494
 
2495
+ #: app/features/ix.php:222 app/features/ix.php:444
2496
  msgid "An error occurred during the file upload! Please check permissions!"
2497
  msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
2498
 
2499
+ #: app/features/ix.php:278 app/libraries/main.php:6965
2500
+ #: app/libraries/main.php:6985
2501
  msgid "Confirmed"
2502
  msgstr "Potvrzeno"
2503
 
2504
+ #: app/features/ix.php:279 app/libraries/main.php:6966
2505
+ #: app/libraries/main.php:6993
2506
  msgid "Rejected"
2507
  msgstr "Odmítnuto"
2508
 
2509
+ #: app/features/ix.php:283 app/features/mec/booking.php:1033
2510
  #: app/features/mec/booking.php:1055 app/features/mec/modules.php:441
2511
+ #: app/features/mec/modules.php:463 app/features/mec/notifications.php:1655
2512
+ #: app/features/mec/notifications.php:1677 app/features/mec/settings.php:1522
2513
+ #: app/features/mec/settings.php:1544 app/features/mec/single.php:518
2514
+ #: app/features/mec/single.php:540 app/libraries/main.php:7013
2515
  msgid "Verified"
2516
  msgstr "Ověřeno"
2517
 
2518
+ #: app/features/ix.php:284 app/features/labels.php:118
2519
+ #: app/features/labels.php:144 app/libraries/main.php:7014
2520
  msgid "Canceled"
2521
  msgstr "Zrušená"
2522
 
2523
+ #: app/features/ix.php:419
2524
  #, fuzzy
2525
  #| msgid "The events are imported successfully!"
2526
  msgid "The bookings are imported successfully!"
2527
  msgstr "Události byly úspěšně importovány!"
2528
 
2529
+ #: app/features/ix.php:419
2530
  #, fuzzy
2531
  #| msgid "No bookings found!"
2532
  msgid "No bookings found to import!"
2533
  msgstr "Nebyly nalezeny žádné rezervace!"
2534
 
2535
+ #: app/features/ix.php:427
2536
  msgid "Please upload the feed file."
2537
  msgstr "Nahrajte prosím zdrojový soubor."
2538
 
2539
+ #: app/features/ix.php:432 app/features/ix.php:449
2540
  #, fuzzy
2541
  #| msgid "Please upload the feed file."
2542
  msgid "Please upload an XML or an ICS file."
2543
  msgstr "Nahrajte prosím zdrojový soubor."
2544
 
2545
+ #: app/features/ix.php:435
2546
  msgid "The file type should be XML or ICS."
2547
  msgstr "Typ souboru by měl být XML nebo ICS."
2548
 
2549
+ #: app/features/ix.php:458
2550
  msgid "The events are imported successfully!"
2551
  msgstr "Události byly úspěšně importovány!"
2552
 
2553
+ #: app/features/ix.php:1229
2554
  msgid "Third Party plugin is not installed and activated!"
2555
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
2556
 
2557
+ #: app/features/ix.php:1253
2558
  msgid "Third Party plugin is invalid!"
2559
  msgstr "Plugin třetí strany je neplatný!"
2560
 
2561
+ #: app/features/ix.php:3228 app/features/ix.php:3289
2562
  #, fuzzy
2563
  #| msgid "Both of API key and Calendar ID are required!"
2564
  msgid "API key and Calendar ID are required!"
2565
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
2566
 
2567
+ #: app/features/ix.php:3284 app/features/ix.php:3769 app/features/ix.php:4527
2568
  #, fuzzy
2569
  #| msgid "Please select some events to import!"
2570
  msgid "Please select events to import!"
2571
  msgstr "Vyberte události, které chcete importovat!"
2572
 
2573
+ #: app/features/ix.php:3711 app/features/ix.php:3774
2574
  #, fuzzy
2575
  #| msgid "Both of API key and Group URL are required!"
2576
  msgid "API key and Group URL are required!"
2577
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
2578
 
2579
+ #: app/features/ix.php:4013
2580
  msgid "Check at Meetup"
2581
  msgstr "Ověřit Meetup"
2582
 
2583
+ #: app/features/ix.php:4089 app/features/ix.php:4132
2584
  msgid "Organizer Tel"
2585
  msgstr "Organizátor Tel"
2586
 
2587
+ #: app/features/ix.php:4089 app/features/ix.php:4132
2588
  msgid "Organizer Email"
2589
  msgstr "Organizátor Email"
2590
 
2591
  # Client Secret dle kontextu
2592
+ #: app/features/ix.php:4209
2593
  #, fuzzy
2594
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2595
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2596
  msgstr ""
2597
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
2598
 
2599
+ #: app/features/ix.php:4232
2600
  #, fuzzy, php-format
2601
  #| msgid "All seems good! Please click %s for authenticating your app."
2602
  msgid "All seems good! Please click %s to authenticate your app."
2603
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
2604
 
2605
+ #: app/features/ix.php:4232 app/features/mec/settings.php:1409
2606
  msgid "here"
2607
  msgstr ""
2608
 
2609
+ #: app/features/ix.php:4287
2610
  #, fuzzy
2611
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2612
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2614
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
2615
  "povinné!"
2616
 
2617
+ #: app/features/ix.php:4449
2618
  #, fuzzy, php-format
2619
  #| msgid "%s events added to Google Calendar successfully."
2620
  msgid "%s events added to Google Calendar with success."
2621
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
2622
 
2623
+ #: app/features/ix.php:4450
2624
  #, fuzzy, php-format
2625
  #| msgid "%s previously added events get updated."
2626
  msgid "%s Updated previously added events."
2627
  msgstr "% s dříve přidané události byly aktualizovány."
2628
 
2629
+ #: app/features/ix.php:4451
2630
  #, php-format
2631
  msgid "%s events failed to add for following reasons: %s"
2632
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
2633
 
2634
+ #: app/features/ix.php:4483
2635
  msgid "Please insert your Facebook page's link."
2636
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
2637
 
2638
+ #: app/features/ix.php:4494 app/features/ix.php:4536
2639
  #, fuzzy
2640
  #| msgid ""
2641
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2647
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
2648
  "poskytněte nám platný odkaz na stránku Facebooku."
2649
 
2650
+ #: app/features/ix.php:4531
2651
  msgid "Please insert your facebook page's link."
2652
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
2653
 
2783
  msgstr "ID kalendáře"
2784
 
2785
  #: app/features/ix/export_g_calendar.php:48
2786
+ #: app/features/ix/export_g_calendar.php:113
2787
+ #: app/features/ix/export_g_calendar.php:128
2788
  msgid "Authenticate"
2789
  msgstr "Ověření"
2790
 
2810
  msgstr "Přepnout"
2811
 
2812
  #: app/features/ix/export_g_calendar.php:72
2813
+ #: app/features/ix/import_f_calendar.php:72
2814
+ #: app/features/ix/import_g_calendar.php:87
2815
+ #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:67
2816
+ msgid "Import Options"
2817
+ msgstr "Možnosti importu"
2818
+
2819
+ #: app/features/ix/export_g_calendar.php:76 app/features/ix/sync.php:46
2820
+ #, fuzzy
2821
+ #| msgid "Event Attendees"
2822
+ msgid "Export Attendees"
2823
+ msgstr "Účastníci akce"
2824
+
2825
+ #: app/features/ix/export_g_calendar.php:79
2826
+ #: app/features/ix/export_g_calendar.php:158
2827
+ #: app/features/ix/export_g_calendar.php:173
2828
+ #: app/features/mec/notifications.php:187
2829
+ #: app/features/mec/notifications.php:337
2830
+ #: app/features/mec/notifications.php:503
2831
+ #: app/features/mec/notifications.php:683
2832
+ #: app/features/mec/notifications.php:1324 app/features/notifications.php:146
2833
  msgid "Add to Google Calendar"
2834
  msgstr "Přidat do Google kalendáře"
2835
 
2836
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1035
2837
+ #: app/features/mec/modules.php:443 app/features/mec/notifications.php:1657
2838
+ #: app/features/mec/settings.php:1524 app/features/mec/single.php:520
2839
  msgid "Checking ..."
2840
  msgstr "Ověřování ..."
2841
 
2842
+ #: app/features/ix/export_g_calendar.php:145
2843
  msgid "Exporting ..."
2844
  msgstr "Exportování ..."
2845
 
2981
  msgid "Event Title: %s"
2982
  msgstr "Název události: %s"
2983
 
 
 
 
 
 
 
2984
  #: app/features/ix/import_f_calendar.php:76
2985
  #: app/features/ix/import_g_calendar.php:97
2986
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:84
3110
  msgid "Auto Google Import"
3111
  msgstr "Auto Google Import"
3112
 
3113
+ #: app/features/ix/sync.php:32 app/features/ix/sync.php:50
3114
+ #: app/features/ix/sync.php:63 app/features/ix/sync.php:74
3115
+ #: app/features/mec/notifications.php:1176
3116
  msgid "Important Note"
3117
  msgstr "Důležitá poznámka"
3118
 
3129
  msgid "Auto Google Export"
3130
  msgstr "Auto Google Export"
3131
 
3132
+ #: app/features/ix/sync.php:50
3133
  #, php-format
3134
  msgid ""
3135
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
3138
  "Chcete-li zavolat % s soubor alespoň jednou za den, nastavte odkaz, jinak "
3139
  "nebude proveden export událostí vašich webových stránek do Kalendáře Google."
3140
 
3141
+ #: app/features/ix/sync.php:60
3142
  msgid "Auto Facebook Import"
3143
  msgstr "Auto Facebook Import"
3144
 
3145
+ #: app/features/ix/sync.php:63
3146
  #, php-format
3147
  msgid ""
3148
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
3151
  "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
3152
  "nebude importovat události z Facebooku."
3153
 
3154
+ #: app/features/ix/sync.php:71
3155
  msgid "Auto Meetup Import"
3156
  msgstr "Auto Meetup Import"
3157
 
3158
+ #: app/features/ix/sync.php:74
3159
  #, php-format
3160
  msgid ""
3161
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
3164
  "Chcete-li zavolat %s soubor alespoň jednou denně, nastavte odkaz, jinak "
3165
  "nebude importovat události z Meetup."
3166
 
3167
+ #: app/features/ix/sync.php:78
3168
  msgid "Auto set cronjobs (Once Daily)"
3169
  msgstr "Automatické nastavení cronových úloh (jednou denně)"
3170
 
3171
+ #: app/features/ix/sync.php:79
3172
  #, fuzzy
3173
  #| msgid ""
3174
  #| "First you need to enable above options for each to be able to use this."
3177
  msgstr ""
3178
  "Nejprve je nutné povolit výše uvedené možnosti, aby bylo možné toto použít."
3179
 
3180
+ #: app/features/ix/sync.php:80
3181
  #, fuzzy
3182
  #| msgid ""
3183
  #| "If you cannot set Cron Job on your server, you can use the options below. "
3192
  "možnosti. Nezapomeňte NEPOUŽÍVAT následující možnosti a nastavit je na "
3193
  "serveru ručně společně."
3194
 
3195
+ #: app/features/ix/sync.php:84
3196
  msgid "Google import"
3197
  msgstr "Google import"
3198
 
3199
+ #: app/features/ix/sync.php:89
3200
  msgid "Google export"
3201
  msgstr "Google export"
3202
 
3203
+ #: app/features/ix/sync.php:94
3204
  msgid "Meetup import"
3205
  msgstr "Meetup Import"
3206
 
3207
+ #: app/features/ix/sync.php:101 app/features/mec/wizard.php:735
3208
  msgid "Save"
3209
  msgstr "Uložit"
3210
 
3327
  msgid "Event %s"
3328
  msgstr "Událost %s"
3329
 
3330
+ #: app/features/locations.php:59 app/features/mec.php:486
3331
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
3332
+ #: app/features/mec/meta_boxes/filter.php:98 app/libraries/main.php:6682
3333
+ #: app/libraries/main.php:6736
3334
  msgid "Locations"
3335
  msgstr "Umístění"
3336
 
3395
  msgid "eg. City Hall"
3396
  msgstr "např. Radnice"
3397
 
3398
+ #: app/features/locations.php:346 app/features/mec/settings.php:886
3399
  #: app/features/popup/event.php:143 app/widgets/single.php:117
3400
  msgid "Event Location"
3401
  msgstr "Místo události"
3426
  msgid "Get Latitude and Longitude"
3427
  msgstr "Získejte šířku a délku"
3428
 
3429
+ #: app/features/locations.php:386 app/features/organizers.php:306
3430
  #: app/features/popup/event.php:202
3431
  msgid "Choose image"
3432
  msgstr "Vyberte obrázek"
3435
  msgid "Don't show map in single event page"
3436
  msgstr "Nezobrazovat mapu na jednostránkové události"
3437
 
3438
+ #: app/features/locations.php:403 app/libraries/main.php:6720
3439
+ #: app/libraries/main.php:6767
3440
  msgid "Other Locations"
3441
  msgstr "Další místa"
3442
 
3465
  msgid "Forgot Password?"
3466
  msgstr ""
3467
 
3468
+ #: app/features/mec.php:220
3469
  #, fuzzy
3470
  #| msgid ""
3471
  #| "Activation faild. Please check your purchase code or license type."
3478
  "<br> <b> Poznámka: Váš nákupní kód by se měl shodovat s vaším typem licence. "
3479
  "</b>"
3480
 
3481
+ #: app/features/mec.php:220 app/features/mec/support-page.php:136
3482
  msgid "Troubleshooting"
3483
  msgstr "Odstraňování problémů"
3484
 
3485
+ #: app/features/mec.php:308
3486
  #, fuzzy
3487
  #| msgid "Select Type"
3488
  msgid "Select Date"
3489
  msgstr "Vyberte typ"
3490
 
3491
+ #: app/features/mec.php:312 app/skins/masonry.php:260
3492
  msgid "All"
3493
  msgstr "Vše"
3494
 
3495
+ #: app/features/mec.php:354
3496
  #, fuzzy
3497
  #| msgid ""
3498
  #| "Your options is not in JSON format. Please insert correct options in this "
3504
  "Vaše možnosti nejsou ve formátu JSON. Do tohoto pole vložte správné možnosti "
3505
  "a zkuste to znovu."
3506
 
3507
+ #: app/features/mec.php:361
3508
  msgid "Your options field can not be empty!"
3509
  msgstr "Pole možností nemůže být prázdné!"
3510
 
3511
+ #: app/features/mec.php:367
3512
  msgid "Your options imported successfuly."
3513
  msgstr "Vaše možnosti byly úspěšně importovány."
3514
 
3515
+ #: app/features/mec.php:466
3516
  msgid "MEC - Support"
3517
  msgstr "MEC - podpora"
3518
 
3519
+ #: app/features/mec.php:466 app/features/mec/support-page.php:9
3520
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
3521
  msgid "Support"
3522
  msgstr "Podpora"
3523
 
3524
+ #: app/features/mec.php:487 app/features/mec/dashboard.php:288
3525
  #: app/features/mec/meta_boxes/filter.php:71
3526
  #: app/features/mec/meta_boxes/filter.php:116 app/features/organizers.php:59
3527
+ #: app/libraries/main.php:6684 app/libraries/main.php:6738
3528
  msgid "Organizers"
3529
  msgstr "Organizátoři"
3530
 
3531
+ #: app/features/mec.php:495 app/features/mec.php:546
3532
  #: app/features/mec/dashboard.php:274
3533
  msgid "Shortcodes"
3534
  msgstr "Zkrácené kódy"
3535
 
3536
+ #: app/features/mec.php:496
3537
  msgid "MEC - Settings"
3538
  msgstr "MEC - Nastavení"
3539
 
3540
+ #: app/features/mec.php:497
3541
  msgid "MEC - Addons"
3542
  msgstr "MEC - doplňky"
3543
 
3544
+ #: app/features/mec.php:497 app/features/mec/addons.php:11
3545
  msgid "Addons"
3546
  msgstr "Doplňky"
3547
 
3548
+ #: app/features/mec.php:502
3549
  #, fuzzy
3550
  #| msgid "MEC - Support"
3551
  msgid "MEC - Report"
3552
  msgstr "MEC - podpora"
3553
 
3554
+ #: app/features/mec.php:502
3555
  #, fuzzy
3556
  #| msgid "Export"
3557
  msgid "Report"
3558
  msgstr "Export"
3559
 
3560
+ #: app/features/mec.php:505
3561
  #, fuzzy
3562
  #| msgid "MEC - Support"
3563
  msgid "MEC - Go Pro"
3564
  msgstr "MEC - podpora"
3565
 
3566
+ #: app/features/mec.php:505 app/features/mec.php:1324
3567
  #: app/features/mec/go-pro.php:9
3568
  msgid "Go Pro"
3569
  msgstr ""
3570
 
3571
+ #: app/features/mec.php:548
3572
  msgid "Add Shortcode"
3573
  msgstr "Přidat zkrácený kód"
3574
 
3575
+ #: app/features/mec.php:549
3576
  msgid "Add New Shortcode"
3577
  msgstr "Přidat nový zkrácený kód"
3578
 
3579
+ #: app/features/mec.php:550
3580
  msgid "No shortcodes found!"
3581
  msgstr "Nebyly nalezeny žádné zkrácené kódy!"
3582
 
3583
+ #: app/features/mec.php:551
3584
  msgid "All Shortcodes"
3585
  msgstr "Všechny zkrácené kódy"
3586
 
3587
+ #: app/features/mec.php:552
3588
  msgid "Edit shortcodes"
3589
  msgstr "Editace zkrácených kódů"
3590
 
3591
+ #: app/features/mec.php:553
3592
  msgid "No shortcodes found in Trash!"
3593
  msgstr "V koši nebyly nalezeny žádné zkrácené kódy!"
3594
 
3595
+ #: app/features/mec.php:606
3596
  msgid "Display Options"
3597
  msgstr "Zobrazit možnosti"
3598
 
3599
+ #: app/features/mec.php:607
3600
  msgid "Filter Options"
3601
  msgstr "Filtrovat možnosti"
3602
 
3603
+ #: app/features/mec.php:609
3604
  msgid "Search Form"
3605
  msgstr "Vyhledávací formulář"
3606
 
3607
+ #: app/features/mec.php:1025
3608
  msgid "Display content's images as Popup"
3609
  msgstr "Zobrazit obrázky obsahu jako vyskakovací okno"
3610
 
3611
+ #: app/features/mec.php:1039 app/features/popup/shortcode.php:473
3612
  msgid "Single Event Display Method"
3613
  msgstr "Metoda zobrazení jedné události"
3614
 
3615
+ #: app/features/mec.php:1046 app/features/popup/shortcode.php:485
3616
  #, fuzzy
3617
  #| msgid "Modal 1"
3618
  msgid "Modal Popup"
3619
  msgstr "Modal 1"
3620
 
3621
+ #: app/features/mec.php:1047
3622
  #, fuzzy
3623
  #| msgid "Disabled"
3624
  msgid "Disable Link"
3625
  msgstr "Zakázaný"
3626
 
3627
+ #: app/features/mec.php:1060
3628
  #, fuzzy
3629
  #| msgid "Booking Options"
3630
  msgid "Booking Button / Icon"
3631
  msgstr "Možnosti rezervace"
3632
 
3633
+ #: app/features/mec.php:1073
3634
  #, fuzzy
3635
  #| msgid "Organizers"
3636
  msgid "Display Organizers"
3637
  msgstr "Organizátoři"
3638
 
3639
+ #: app/features/mec.php:1230 app/features/mec.php:1404
3640
  msgid "Total Bookings"
3641
  msgstr "Celkový počet rezervací"
3642
 
3643
+ #: app/features/mec.php:1246 app/features/mec/dashboard.php:65
3644
  msgid "Modern Events Calendar (Lite)"
3645
  msgstr "Modern Events Calendar (Lite)"
3646
 
3647
+ #: app/features/mec.php:1255 app/features/mec/dashboard.php:299
3648
  #: app/features/mec/settings.php:483
3649
  msgid "Upcoming Events"
3650
  msgstr "Nadcházející události"
3651
 
3652
+ #: app/features/mec.php:1310
3653
  #, fuzzy
3654
  #| msgid "Update %s"
3655
  msgid "News & Updates"
3656
  msgstr "Aktualizovat %s"
3657
 
3658
+ #: app/features/mec.php:1323
3659
  msgid "Blog"
3660
  msgstr ""
3661
 
3662
+ #: app/features/mec.php:1323
3663
  msgid "Help"
3664
  msgstr ""
3665
 
3666
+ #: app/features/mec.php:1379
3667
  #, fuzzy, php-format
3668
  #| msgid "Total Sells (%s)"
3669
  msgid "Total Sales (%s)"
3670
  msgstr "Celkový prodej %s"
3671
 
3672
+ #: app/features/mec.php:1413
3673
  msgid "This Month"
3674
  msgstr "Tento měsíc"
3675
 
3676
+ #: app/features/mec.php:1419
3677
  msgid "Last Month"
3678
  msgstr "Minulý měsíc"
3679
 
3680
+ #: app/features/mec.php:1425
3681
  msgid "This Year"
3682
  msgstr "Tento rok"
3683
 
3684
+ #: app/features/mec.php:1431
3685
  msgid "Last Year"
3686
  msgstr "Minulý rok"
3687
 
3688
+ #: app/features/mec.php:1451
3689
  msgid "Bar"
3690
  msgstr "Pruh"
3691
 
3692
+ #: app/features/mec.php:1452
3693
  msgid "Line"
3694
  msgstr "Čára"
3695
 
3696
+ #: app/features/mec.php:1454
3697
  msgid "Filter"
3698
  msgstr "Filtr"
3699
 
3700
+ #: app/features/mec.php:1478
3701
  #, fuzzy
3702
  #| msgid "Modern Events Calendar"
3703
  msgid "Print Calendar"
3704
  msgstr "Moderní kalendář událostí"
3705
 
3706
+ #: app/features/mec.php:1493
3707
  #, fuzzy
3708
  #| msgid "Display Event Price"
3709
  msgid "Display Events"
3710
  msgstr "Zobrazit cenu události"
3711
 
3712
+ #: app/features/mec.php:1539
3713
+ #, fuzzy
3714
+ #| msgid "Include Expired Events"
3715
+ msgid "Include MEC Assets"
3716
+ msgstr "Zahrnout uplynulé události"
3717
+
3718
+ #: app/features/mec.php:1550
3719
+ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
3720
+ msgstr ""
3721
+
3722
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:63
3723
  #: app/features/mec/dashboard.php:84 app/features/mec/go-pro.php:14
3724
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
3755
  #: app/features/mec/modules.php:17 app/features/mec/modules.php:399
3756
  #: app/features/mec/modules.php:409 app/features/mec/modules.php:460
3757
  #: app/features/mec/modules.php:474 app/features/mec/notifications.php:14
3758
+ #: app/features/mec/notifications.php:1590
3759
+ #: app/features/mec/notifications.php:1602
3760
+ #: app/features/mec/notifications.php:1674
3761
+ #: app/features/mec/notifications.php:1688 app/features/mec/settings.php:35
3762
+ #: app/features/mec/settings.php:1473 app/features/mec/settings.php:1483
3763
+ #: app/features/mec/settings.php:1541 app/features/mec/settings.php:1555
3764
+ #: app/features/mec/single.php:21 app/features/mec/single.php:485
3765
+ #: app/features/mec/single.php:495 app/features/mec/single.php:537
3766
+ #: app/features/mec/single.php:551 app/features/mec/styles.php:11
3767
  #: app/features/mec/styles.php:32 app/features/mec/styles.php:42
3768
  #: app/features/mec/styles.php:79 app/features/mec/styles.php:88
3769
  #: app/features/mec/styling.php:37 app/features/mec/styling.php:285
4016
  msgstr ""
4017
 
4018
  #: app/features/mec/booking.php:286 app/features/mec/booking.php:288
4019
+ #: app/features/mec/booking.php:298 app/features/mec/settings.php:725
4020
+ #: app/features/mec/settings.php:735
4021
  msgid "Thank You Page"
4022
  msgstr "Stránka s poděkováním"
4023
 
4030
  "vypnout, ponechte ji prázdnou."
4031
 
4032
  #: app/features/mec/booking.php:306 app/features/mec/booking.php:311
4033
+ #: app/features/mec/settings.php:758 app/features/mec/settings.php:763
4034
  msgid "Thank You Page Time Interval"
4035
  msgstr "Stránka s poděkováním časového intervalu"
4036
 
4037
+ #: app/features/mec/booking.php:308 app/features/mec/settings.php:760
4038
  msgid "2000 mean 2 seconds"
4039
  msgstr "2000 znamená 2 vteřiny"
4040
 
4041
+ #: app/features/mec/booking.php:312 app/features/mec/settings.php:764
4042
  msgid ""
4043
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
4044
  "2000 means 2 seconds."
4108
  msgid "Send confirmation email in auto confirmation mode"
4109
  msgstr ""
4110
 
4111
+ #: app/features/mec/booking.php:432 app/libraries/main.php:617
4112
  #, fuzzy
4113
  #| msgid "Booking Style"
4114
  msgid "Booking Shortcode"
4148
  "novou nabídku na řídícím panelu > Rezervace"
4149
 
4150
  #: app/features/mec/booking.php:466 app/features/mec/booking.php:854
4151
+ #: app/libraries/main.php:619
4152
  msgid "Taxes / Fees"
4153
  msgstr "Daně / poplatky"
4154
 
4160
  msgid "Add Fee"
4161
  msgstr "Přidat poplatek"
4162
 
4163
+ #: app/features/mec/booking.php:543 app/libraries/main.php:620
4164
  msgid "Ticket Variations & Options"
4165
  msgstr "Varianty a možnosti vstupenek"
4166
 
4326
  "údaje pro povolené brány pro události a přijímat platby přímo!"
4327
 
4328
  #: app/features/mec/booking.php:1030 app/features/mec/messages.php:78
4329
+ #: app/features/mec/modules.php:438 app/features/mec/notifications.php:1652
4330
+ #: app/features/mec/settings.php:1519 app/features/mec/single.php:515
4331
  #: app/features/mec/styles.php:62 app/features/mec/styling.php:340
4332
  msgid "Saved"
4333
  msgstr "Uloženo"
4334
 
4335
  #: app/features/mec/booking.php:1031 app/features/mec/messages.php:79
4336
+ #: app/features/mec/modules.php:439 app/features/mec/notifications.php:1653
4337
+ #: app/features/mec/settings.php:1520 app/features/mec/single.php:516
4338
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:341
4339
  msgid "Settings Saved!"
4340
  msgstr "Nastavení uložena!"
4341
 
4342
  #: app/features/mec/booking.php:1057 app/features/mec/modules.php:465
4343
+ #: app/features/mec/notifications.php:1679 app/features/mec/settings.php:1546
4344
+ #: app/features/mec/single.php:542
4345
  msgid "Please Refresh Page"
4346
  msgstr "Prosím obnovte stránku"
4347
 
4470
  msgstr "Stáhnout nastavení"
4471
 
4472
  #: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
4473
+ #: app/features/mec/support.php:66 app/libraries/main.php:875
4474
  msgid "Messages"
4475
  msgstr "Zprávy"
4476
 
5051
 
5052
  #: app/features/mec/meta_boxes/display_options.php:700
5053
  #: app/features/mec/meta_boxes/display_options.php:724
5054
+ #: app/libraries/main.php:360 app/libraries/main.php:2138
5055
+ #: app/libraries/main.php:2163
5056
  msgid "List View"
5057
  msgstr "Zobrazení seznamu"
5058
 
5059
  #: app/features/mec/meta_boxes/display_options.php:701
5060
  #: app/features/mec/meta_boxes/display_options.php:766
5061
+ #: app/libraries/main.php:361 app/libraries/main.php:2139
5062
+ #: app/libraries/main.php:2164
5063
  msgid "Grid View"
5064
  msgstr "Zobrazení mřížky"
5065
 
5073
 
5074
  #: app/features/mec/meta_boxes/display_options.php:703
5075
  #: app/features/mec/meta_boxes/display_options.php:808
5076
+ #: app/libraries/main.php:364 app/libraries/main.php:2132
5077
+ #: app/libraries/main.php:2157
5078
  msgid "Yearly View"
5079
  msgstr "Roční zobrazení"
5080
 
5085
 
5086
  #: app/features/mec/meta_boxes/display_options.php:705
5087
  #: app/features/mec/meta_boxes/display_options.php:857
5088
+ #: app/libraries/main.php:367 app/libraries/main.php:2134
5089
+ #: app/libraries/main.php:2159
5090
  msgid "Weekly View"
5091
  msgstr "Týdenní zobrazení"
5092
 
5093
  #: app/features/mec/meta_boxes/display_options.php:706
5094
  #: app/features/mec/meta_boxes/display_options.php:867
5095
+ #: app/libraries/main.php:366 app/libraries/main.php:2135
5096
+ #: app/libraries/main.php:2160
5097
  msgid "Daily View"
5098
  msgstr "Denní zobrazení"
5099
 
5493
  msgstr "Autoři"
5494
 
5495
  #: app/features/mec/meta_boxes/filter.php:75
5496
+ #: app/features/mec/meta_boxes/filter.php:183
5497
+ #: app/features/mec/settings.php:1027 app/features/occurrences.php:72
5498
+ #: app/features/occurrences.php:102
5499
  #, fuzzy
5500
  #| msgid "Occurrences times"
5501
  msgid "Occurrences"
5557
  msgid "Show only one occurrence of events"
5558
  msgstr "Další výskyt dalších událostí"
5559
 
 
 
 
 
5560
  #: app/features/mec/meta_boxes/filter.php:202
5561
  #: app/features/popup/shortcode.php:501
5562
  msgid "Include Expired Events"
5647
  #: app/features/mec/meta_boxes/search_form.php:416
5648
  #: app/features/mec/meta_boxes/search_form.php:503
5649
  #: app/features/mec/meta_boxes/search_form.php:590
5650
+ #: app/features/mec/meta_boxes/search_form.php:671
5651
+ #: app/features/mec/meta_boxes/search_form.php:758
5652
+ #: app/features/mec/meta_boxes/search_form.php:845
5653
+ #: app/features/mec/meta_boxes/search_form.php:968
5654
+ #: app/features/mec/settings.php:1170 app/features/mec/single.php:407
5655
+ #: app/features/mec/single.php:449 app/features/mec/wizard.php:431
5656
  #: app/features/mec/wizard.php:470 app/features/search.php:86
5657
  #: app/features/speakers.php:60 app/features/speakers.php:282
5658
+ #: app/libraries/main.php:6687 app/libraries/main.php:6741
5659
  #: app/libraries/skins.php:1156 app/modules/speakers/details.php:18
5660
  msgid "Speaker"
5661
  msgstr "Řečník"
5667
  #: app/features/mec/meta_boxes/search_form.php:423
5668
  #: app/features/mec/meta_boxes/search_form.php:510
5669
  #: app/features/mec/meta_boxes/search_form.php:597
5670
+ #: app/features/mec/meta_boxes/search_form.php:678
5671
+ #: app/features/mec/meta_boxes/search_form.php:765
5672
+ #: app/features/mec/meta_boxes/search_form.php:852
5673
+ #: app/features/mec/meta_boxes/search_form.php:975
5674
+ #: app/features/mec/settings.php:1177 app/features/mec/single.php:416
5675
+ #: app/features/mec/single.php:458 app/features/mec/wizard.php:440
5676
  #: app/features/mec/wizard.php:479 app/features/search.php:92
5677
  #: app/features/tag.php:58 app/libraries/skins.php:1185
5678
  msgid "Tag"
5685
  #: app/features/mec/meta_boxes/search_form.php:440
5686
  #: app/features/mec/meta_boxes/search_form.php:527
5687
  #: app/features/mec/meta_boxes/search_form.php:614
5688
+ #: app/features/mec/meta_boxes/search_form.php:695
5689
+ #: app/features/mec/meta_boxes/search_form.php:782
5690
+ #: app/features/mec/meta_boxes/search_form.php:869
5691
+ #: app/features/mec/meta_boxes/search_form.php:992
5692
  #, fuzzy
5693
  #| msgid "Address"
5694
  msgid "Address Input"
5707
  #: app/features/mec/meta_boxes/search_form.php:529
5708
  #: app/features/mec/meta_boxes/search_form.php:558
5709
  #: app/features/mec/meta_boxes/search_form.php:616
5710
+ #: app/features/mec/meta_boxes/search_form.php:639
5711
+ #: app/features/mec/meta_boxes/search_form.php:697
5712
+ #: app/features/mec/meta_boxes/search_form.php:726
5713
+ #: app/features/mec/meta_boxes/search_form.php:784
5714
+ #: app/features/mec/meta_boxes/search_form.php:813
5715
+ #: app/features/mec/meta_boxes/search_form.php:871
5716
+ #: app/features/mec/meta_boxes/search_form.php:900
5717
+ #: app/features/mec/meta_boxes/search_form.php:994
5718
+ #: app/features/mec/meta_boxes/search_form.php:1023
5719
  msgid "Placeholder Text ..."
5720
  msgstr ""
5721
 
5726
  #: app/features/mec/meta_boxes/search_form.php:448
5727
  #: app/features/mec/meta_boxes/search_form.php:535
5728
  #: app/features/mec/meta_boxes/search_form.php:622
5729
+ #: app/features/mec/meta_boxes/search_form.php:703
5730
+ #: app/features/mec/meta_boxes/search_form.php:790
5731
+ #: app/features/mec/meta_boxes/search_form.php:877
5732
+ #: app/features/mec/meta_boxes/search_form.php:1000
5733
  msgid "Min / Max Inputs"
5734
  msgstr ""
5735
 
5736
  #: app/features/mec/meta_boxes/search_form.php:101
5737
  #: app/features/mec/meta_boxes/search_form.php:189
5738
  #: app/features/mec/meta_boxes/search_form.php:277
5739
+ #: app/features/mec/meta_boxes/search_form.php:626
5740
  #, fuzzy
5741
  #| msgid "Filter"
5742
  msgid "Date Filter"
5745
  #: app/features/mec/meta_boxes/search_form.php:104
5746
  #: app/features/mec/meta_boxes/search_form.php:192
5747
  #: app/features/mec/meta_boxes/search_form.php:280
5748
+ #: app/features/mec/meta_boxes/search_form.php:629
5749
  msgid "Year & Month Dropdown"
5750
  msgstr ""
5751
 
5752
  #: app/features/mec/meta_boxes/search_form.php:105
5753
  #: app/features/mec/meta_boxes/search_form.php:193
5754
  #: app/features/mec/meta_boxes/search_form.php:281
5755
+ #: app/features/mec/meta_boxes/search_form.php:630
5756
  #, fuzzy
5757
  #| msgid "Date Format"
5758
  msgid "Date Picker"
5764
  #: app/features/mec/meta_boxes/search_form.php:372
5765
  #: app/features/mec/meta_boxes/search_form.php:459
5766
  #: app/features/mec/meta_boxes/search_form.php:546
5767
+ #: app/features/mec/meta_boxes/search_form.php:714
5768
+ #: app/features/mec/meta_boxes/search_form.php:801
5769
+ #: app/features/mec/meta_boxes/search_form.php:888
5770
+ #: app/features/mec/meta_boxes/search_form.php:1011
5771
  #, fuzzy
5772
  #| msgid "Filter"
5773
  msgid "Time Filter"
5779
  #: app/features/mec/meta_boxes/search_form.php:375
5780
  #: app/features/mec/meta_boxes/search_form.php:462
5781
  #: app/features/mec/meta_boxes/search_form.php:549
5782
+ #: app/features/mec/meta_boxes/search_form.php:717
5783
+ #: app/features/mec/meta_boxes/search_form.php:804
5784
+ #: app/features/mec/meta_boxes/search_form.php:891
5785
+ #: app/features/mec/meta_boxes/search_form.php:1014
5786
  #, fuzzy
5787
  #| msgid "Local Time"
5788
  msgid "Local Time Picker"
5794
  #: app/features/mec/meta_boxes/search_form.php:379
5795
  #: app/features/mec/meta_boxes/search_form.php:466
5796
  #: app/features/mec/meta_boxes/search_form.php:553
5797
+ #: app/features/mec/meta_boxes/search_form.php:634
5798
+ #: app/features/mec/meta_boxes/search_form.php:721
5799
+ #: app/features/mec/meta_boxes/search_form.php:808
5800
+ #: app/features/mec/meta_boxes/search_form.php:895
5801
+ #: app/features/mec/meta_boxes/search_form.php:1018
5802
  msgid "Text Search"
5803
  msgstr "Vyhledat text"
5804
 
5808
  #: app/features/mec/meta_boxes/search_form.php:382
5809
  #: app/features/mec/meta_boxes/search_form.php:469
5810
  #: app/features/mec/meta_boxes/search_form.php:556
5811
+ #: app/features/mec/meta_boxes/search_form.php:637
5812
+ #: app/features/mec/meta_boxes/search_form.php:724
5813
+ #: app/features/mec/meta_boxes/search_form.php:811
5814
+ #: app/features/mec/meta_boxes/search_form.php:898
5815
+ #: app/features/mec/meta_boxes/search_form.php:1021
5816
  msgid "Text Input"
5817
  msgstr "Zadávání textu"
5818
 
5819
  #: app/features/mec/meta_boxes/search_form.php:365
5820
  #: app/features/mec/meta_boxes/search_form.php:452
5821
  #: app/features/mec/meta_boxes/search_form.php:539
5822
+ #: app/features/mec/meta_boxes/search_form.php:707
5823
+ #: app/features/mec/meta_boxes/search_form.php:794
5824
+ #: app/features/mec/meta_boxes/search_form.php:881
5825
+ #: app/features/mec/meta_boxes/search_form.php:1004
5826
  msgid "Month Filter"
5827
  msgstr "Měsíční filtr"
5828
 
5829
+ #: app/features/mec/meta_boxes/search_form.php:908
5830
+ #: app/features/mec/meta_boxes/search_form.php:914
5831
+ #: app/features/mec/meta_boxes/search_form.php:920
5832
+ #: app/features/mec/meta_boxes/search_form.php:926
5833
+ #: app/features/mec/meta_boxes/search_form.php:932
5834
+ #: app/features/mec/meta_boxes/search_form.php:938
5835
  msgid "No Search Options"
5836
  msgstr "Žádné možnosti vyhledávání"
5837
 
5860
  "Po povolení a uložení nastavení byste měli stránku znovu načíst a zobrazit "
5861
  "novou nabídku na řídícím panelu > MEC"
5862
 
5863
+ #: app/features/mec/modules.php:58 app/libraries/main.php:628
5864
  #, fuzzy
5865
  #| msgid "Google Maps Options"
5866
  msgid "Map Options"
5884
  msgid "Google Map Options"
5885
  msgstr "Možnosti Google Maps"
5886
 
5887
+ #: app/features/mec/modules.php:76 app/features/mec/settings.php:1212
5888
+ #: app/features/mec/settings.php:1225
5889
  msgid "Required!"
5890
  msgstr "Požadované!"
5891
 
5953
  msgid "Fullscreen Button"
5954
  msgstr ""
5955
 
5956
+ #: app/features/mec/modules.php:167 app/libraries/main.php:629
5957
  msgid "Export Options"
5958
  msgstr "Možnosti exportu"
5959
 
5968
  msgid "Google Calendar"
5969
  msgstr "Kalendář Google"
5970
 
5971
+ #: app/features/mec/modules.php:194 app/libraries/main.php:630
5972
  #: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:44
5973
  #: app/widgets/single.php:101
5974
  msgid "Local Time"
5980
  "Zobrazit čas události na základě místního času návštěvníka na stránce "
5981
  "události"
5982
 
5983
+ #: app/features/mec/modules.php:208 app/libraries/main.php:631
5984
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:157
5985
  msgid "QR Code"
5986
  msgstr "QR kód"
5990
  msgstr ""
5991
  "Zobrazte QR kód události na stránce s podrobnostmi a fakturaci za rezervaci"
5992
 
5993
+ #: app/features/mec/modules.php:226 app/libraries/main.php:632
5994
  #: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
5995
  msgid "Weather"
5996
  msgstr "Počasí"
6029
  msgid "Show social network module"
6030
  msgstr "Zobrazit modul sociální sítě"
6031
 
6032
+ #: app/features/mec/modules.php:299 app/libraries/main.php:634
6033
  #: app/modules/next-event/details.php:136 app/widgets/single.php:141
6034
  msgid "Next Event"
6035
  msgstr "Další událost"
6090
  msgid "Add events menu to user profile"
6091
  msgstr "Přidejte do uživatelského profilu rezervační aktivitu"
6092
 
6093
+ #: app/features/mec/modules.php:376 app/libraries/main.php:636
6094
  #, fuzzy
6095
  #| msgid "Mailchimp Integration"
6096
  msgid "LearnDash Integration"
6108
  msgid "LearnDash plugin should be installed and activated."
6109
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
6110
 
6111
+ #: app/features/mec/modules.php:386 app/libraries/main.php:637
6112
  #, fuzzy
6113
  #| msgid "Mailchimp Integration"
6114
  msgid "PaidMembership Pro Integration"
6136
  msgid "Sent to attendee after booking to notify them."
6137
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
6138
 
6139
+ #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:205
6140
+ #: app/features/mec/notifications.php:362
6141
+ #: app/features/mec/notifications.php:529
6142
+ #: app/features/mec/notifications.php:707
6143
+ #: app/features/mec/notifications.php:870
6144
+ #: app/features/mec/notifications.php:1030
6145
+ #: app/features/mec/notifications.php:1180
6146
+ #: app/features/mec/notifications.php:1357
6147
+ #: app/features/mec/notifications.php:1474 app/features/mec/report.php:62
6148
  #: app/features/notifications.php:72
6149
  msgid "Email Subject"
6150
  msgstr "Předmět emailové zprávy"
6151
 
6152
  #: app/features/mec/notifications.php:59 app/features/mec/notifications.php:68
6153
+ #: app/features/mec/notifications.php:215
6154
+ #: app/features/mec/notifications.php:224
6155
+ #: app/features/mec/notifications.php:372
6156
+ #: app/features/mec/notifications.php:381
6157
+ #: app/features/mec/notifications.php:539
6158
+ #: app/features/mec/notifications.php:548
6159
+ #: app/features/mec/notifications.php:717
6160
+ #: app/features/mec/notifications.php:726
6161
+ #: app/features/mec/notifications.php:880
6162
+ #: app/features/mec/notifications.php:889
6163
+ #: app/features/mec/notifications.php:1040
6164
+ #: app/features/mec/notifications.php:1049
6165
+ #: app/features/mec/notifications.php:1190
6166
+ #: app/features/mec/notifications.php:1199
6167
+ #: app/features/mec/notifications.php:1367
6168
+ #: app/features/mec/notifications.php:1376
6169
+ #: app/features/mec/notifications.php:1484
6170
+ #: app/features/mec/notifications.php:1493
6171
  msgid "Receiver Users"
6172
  msgstr ""
6173
 
6174
+ #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:225
6175
+ #: app/features/mec/notifications.php:382
6176
+ #: app/features/mec/notifications.php:549
6177
+ #: app/features/mec/notifications.php:727
6178
+ #: app/features/mec/notifications.php:890
6179
+ #: app/features/mec/notifications.php:1050
6180
+ #: app/features/mec/notifications.php:1200
6181
+ #: app/features/mec/notifications.php:1377
6182
+ #: app/features/mec/notifications.php:1494
6183
  msgid "Select users to send a copy of email to them!"
6184
  msgstr ""
6185
 
6186
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:89
6187
+ #: app/features/mec/notifications.php:236
6188
+ #: app/features/mec/notifications.php:245
6189
+ #: app/features/mec/notifications.php:393
6190
+ #: app/features/mec/notifications.php:402
6191
+ #: app/features/mec/notifications.php:560
6192
+ #: app/features/mec/notifications.php:569
6193
+ #: app/features/mec/notifications.php:738
6194
+ #: app/features/mec/notifications.php:747
6195
+ #: app/features/mec/notifications.php:901
6196
+ #: app/features/mec/notifications.php:910
6197
+ #: app/features/mec/notifications.php:1061
6198
+ #: app/features/mec/notifications.php:1070
6199
+ #: app/features/mec/notifications.php:1211
6200
+ #: app/features/mec/notifications.php:1220
6201
+ #: app/features/mec/notifications.php:1388
6202
+ #: app/features/mec/notifications.php:1397
6203
+ #: app/features/mec/notifications.php:1505
6204
+ #: app/features/mec/notifications.php:1514
6205
  msgid "Receiver Roles"
6206
  msgstr ""
6207
 
6208
+ #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:246
6209
+ #: app/features/mec/notifications.php:403
6210
+ #: app/features/mec/notifications.php:570
6211
+ #: app/features/mec/notifications.php:748
6212
+ #: app/features/mec/notifications.php:911
6213
+ #: app/features/mec/notifications.php:1071
6214
+ #: app/features/mec/notifications.php:1221
6215
+ #: app/features/mec/notifications.php:1398
6216
+ #: app/features/mec/notifications.php:1515
6217
  msgid "Select users a specific role."
6218
  msgstr ""
6219
 
6220
  #: app/features/mec/notifications.php:100
6221
  #: app/features/mec/notifications.php:106
6222
+ #: app/features/mec/notifications.php:256
6223
+ #: app/features/mec/notifications.php:262
6224
+ #: app/features/mec/notifications.php:413
6225
+ #: app/features/mec/notifications.php:419
6226
+ #: app/features/mec/notifications.php:580
6227
+ #: app/features/mec/notifications.php:586
6228
+ #: app/features/mec/notifications.php:758
6229
+ #: app/features/mec/notifications.php:764
6230
+ #: app/features/mec/notifications.php:921
6231
+ #: app/features/mec/notifications.php:927
6232
+ #: app/features/mec/notifications.php:1081
6233
+ #: app/features/mec/notifications.php:1087
6234
+ #: app/features/mec/notifications.php:1231
6235
+ #: app/features/mec/notifications.php:1237
6236
+ #: app/features/mec/notifications.php:1408
6237
+ #: app/features/mec/notifications.php:1414
6238
+ #: app/features/mec/notifications.php:1525
6239
+ #: app/features/mec/notifications.php:1531
6240
  msgid "Custom Recipients"
6241
  msgstr "Vlastní příjemci"
6242
 
6243
  #: app/features/mec/notifications.php:107
6244
+ #: app/features/mec/notifications.php:263
6245
+ #: app/features/mec/notifications.php:420
6246
+ #: app/features/mec/notifications.php:587
6247
+ #: app/features/mec/notifications.php:765
6248
+ #: app/features/mec/notifications.php:928
6249
+ #: app/features/mec/notifications.php:1088
6250
+ #: app/features/mec/notifications.php:1238
6251
+ #: app/features/mec/notifications.php:1415
6252
+ #: app/features/mec/notifications.php:1532
6253
  msgid "Insert comma separated emails for multiple recipients."
6254
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
6255
 
6256
  #: app/features/mec/notifications.php:116
6257
+ #: app/features/mec/notifications.php:603
6258
+ #: app/features/mec/notifications.php:781
6259
+ #: app/features/mec/notifications.php:944
6260
+ #: app/features/mec/notifications.php:1104
6261
  msgid "Send the email to event organizer"
6262
  msgstr "Pošlete e-mail organizátorovi události"
6263
 
6264
  #: app/features/mec/notifications.php:120
6265
+ #: app/features/mec/notifications.php:270
6266
+ #: app/features/mec/notifications.php:434
6267
+ #: app/features/mec/notifications.php:614
6268
+ #: app/features/mec/notifications.php:791
6269
+ #: app/features/mec/notifications.php:948
6270
+ #: app/features/mec/notifications.php:1108
6271
+ #: app/features/mec/notifications.php:1260
6272
+ #: app/features/mec/notifications.php:1422
6273
+ #: app/features/mec/notifications.php:1539 app/features/notifications.php:80
6274
  msgid "Email Content"
6275
  msgstr "Obsah zprávy"
6276
 
6277
  #: app/features/mec/notifications.php:130
6278
+ #: app/features/mec/notifications.php:280
6279
+ #: app/features/mec/notifications.php:444
6280
+ #: app/features/mec/notifications.php:624
6281
+ #: app/features/mec/notifications.php:801
6282
+ #: app/features/mec/notifications.php:958
6283
+ #: app/features/mec/notifications.php:1118
6284
+ #: app/features/mec/notifications.php:1271
6285
+ #: app/features/mec/notifications.php:1432
6286
+ #: app/features/mec/notifications.php:1548 app/features/mec/report.php:66
6287
  #, fuzzy
6288
  #| msgid "You can use following placeholders"
6289
  msgid "You can use the following placeholders"
6290
  msgstr "Můžete použít následující zástupné symboly"
6291
 
6292
  #: app/features/mec/notifications.php:132
6293
+ #: app/features/mec/notifications.php:282
6294
+ #: app/features/mec/notifications.php:446
6295
+ #: app/features/mec/notifications.php:626
6296
+ #: app/features/mec/notifications.php:803
6297
+ #: app/features/mec/notifications.php:960
6298
+ #: app/features/mec/notifications.php:1120
6299
+ #: app/features/mec/notifications.php:1273 app/features/notifications.php:97
6300
  msgid "First name of attendee"
6301
  msgstr "První jméno účastníka"
6302
 
6303
  #: app/features/mec/notifications.php:133
6304
+ #: app/features/mec/notifications.php:283
6305
+ #: app/features/mec/notifications.php:447
6306
+ #: app/features/mec/notifications.php:627
6307
+ #: app/features/mec/notifications.php:804
6308
+ #: app/features/mec/notifications.php:961
6309
+ #: app/features/mec/notifications.php:1121
6310
+ #: app/features/mec/notifications.php:1274 app/features/notifications.php:98
6311
  msgid "Last name of attendee"
6312
  msgstr "Příjmení účastníka"
6313
 
6314
  #: app/features/mec/notifications.php:134
6315
+ #: app/features/mec/notifications.php:284
6316
+ #: app/features/mec/notifications.php:448
6317
+ #: app/features/mec/notifications.php:628
6318
+ #: app/features/mec/notifications.php:805
6319
+ #: app/features/mec/notifications.php:962
6320
+ #: app/features/mec/notifications.php:1122
6321
+ #: app/features/mec/notifications.php:1275 app/features/notifications.php:99
6322
  msgid "Email of attendee"
6323
  msgstr "Email účastníka"
6324
 
6325
  #: app/features/mec/notifications.php:135
6326
+ #: app/features/mec/notifications.php:285
6327
+ #: app/features/mec/notifications.php:449
6328
+ #: app/features/mec/notifications.php:629
6329
+ #: app/features/mec/notifications.php:806
6330
+ #: app/features/mec/notifications.php:963
6331
+ #: app/features/mec/notifications.php:1123
6332
+ #: app/features/mec/notifications.php:1276 app/features/notifications.php:100
6333
  msgid "Booked date of event"
6334
  msgstr "Datum rezervace akce"
6335
 
6336
  #: app/features/mec/notifications.php:136
6337
+ #: app/features/mec/notifications.php:286
6338
+ #: app/features/mec/notifications.php:450
6339
+ #: app/features/mec/notifications.php:630
6340
+ #: app/features/mec/notifications.php:807
6341
+ #: app/features/mec/notifications.php:964
6342
+ #: app/features/mec/notifications.php:1124
6343
+ #: app/features/mec/notifications.php:1277 app/features/notifications.php:101
6344
  msgid "Booked time of event"
6345
  msgstr "Čas rezervace akce"
6346
 
6347
  #: app/features/mec/notifications.php:137
6348
+ #: app/features/mec/notifications.php:287
6349
+ #: app/features/mec/notifications.php:451
6350
+ #: app/features/mec/notifications.php:631
6351
+ #: app/features/mec/notifications.php:808
6352
+ #: app/features/mec/notifications.php:965
6353
+ #: app/features/mec/notifications.php:1125
6354
+ #: app/features/mec/notifications.php:1278 app/features/notifications.php:102
6355
  #, fuzzy
6356
  #| msgid "Booked date of event"
6357
  msgid "Booked date and time of event"
6358
  msgstr "Datum rezervace akce"
6359
 
6360
  #: app/features/mec/notifications.php:138
6361
+ #: app/features/mec/notifications.php:288
6362
+ #: app/features/mec/notifications.php:452
6363
+ #: app/features/mec/notifications.php:632
6364
+ #: app/features/mec/notifications.php:809
6365
+ #: app/features/mec/notifications.php:966
6366
+ #: app/features/mec/notifications.php:1279 app/features/notifications.php:103
6367
  msgid "Date of next 20 occurrences of booked event (including the booked date)"
6368
  msgstr ""
6369
 
6370
  #: app/features/mec/notifications.php:139
6371
+ #: app/features/mec/notifications.php:289
6372
+ #: app/features/mec/notifications.php:453
6373
+ #: app/features/mec/notifications.php:633
6374
+ #: app/features/mec/notifications.php:810
6375
+ #: app/features/mec/notifications.php:967
6376
+ #: app/features/mec/notifications.php:1280 app/features/notifications.php:104
6377
  msgid ""
6378
  "Date and Time of next 20 occurrences of booked event (including the booked "
6379
  "date)"
6380
  msgstr ""
6381
 
6382
  #: app/features/mec/notifications.php:140
6383
+ #: app/features/mec/notifications.php:290
6384
+ #: app/features/mec/notifications.php:454
6385
+ #: app/features/mec/notifications.php:634
6386
+ #: app/features/mec/notifications.php:811
6387
+ #: app/features/mec/notifications.php:968
6388
+ #: app/features/mec/notifications.php:1281 app/features/notifications.php:105
6389
  msgid "Booking Price"
6390
  msgstr "Cena rezervace"
6391
 
6392
  #: app/features/mec/notifications.php:141
6393
+ #: app/features/mec/notifications.php:291
6394
+ #: app/features/mec/notifications.php:456
6395
+ #: app/features/mec/notifications.php:636
6396
+ #: app/features/mec/notifications.php:812
6397
+ #: app/features/mec/notifications.php:969
6398
+ #: app/features/mec/notifications.php:1282 app/features/notifications.php:107
6399
  #, fuzzy
6400
  #| msgid "Cannot find the booking!"
6401
  msgid "Date and time of booking"
6402
  msgstr "Nemohu najít rezervaci!"
6403
 
6404
  #: app/features/mec/notifications.php:142
6405
+ #: app/features/mec/notifications.php:292
6406
+ #: app/features/mec/notifications.php:457
6407
+ #: app/features/mec/notifications.php:637
6408
+ #: app/features/mec/notifications.php:813
6409
+ #: app/features/mec/notifications.php:970
6410
+ #: app/features/mec/notifications.php:1126
6411
+ #: app/features/mec/notifications.php:1283
6412
+ #: app/features/mec/notifications.php:1446
6413
+ #: app/features/mec/notifications.php:1562 app/features/notifications.php:108
6414
  msgid "Your website title"
6415
  msgstr "Název vašeho webu"
6416
 
6417
  #: app/features/mec/notifications.php:143
6418
+ #: app/features/mec/notifications.php:293
6419
+ #: app/features/mec/notifications.php:458
6420
+ #: app/features/mec/notifications.php:638
6421
+ #: app/features/mec/notifications.php:814
6422
+ #: app/features/mec/notifications.php:971
6423
+ #: app/features/mec/notifications.php:1127
6424
+ #: app/features/mec/notifications.php:1284
6425
+ #: app/features/mec/notifications.php:1447
6426
+ #: app/features/mec/notifications.php:1563 app/features/notifications.php:109
6427
  msgid "Your website URL"
6428
  msgstr "URL vašeho webu"
6429
 
6430
  #: app/features/mec/notifications.php:144
6431
+ #: app/features/mec/notifications.php:294
6432
+ #: app/features/mec/notifications.php:459
6433
+ #: app/features/mec/notifications.php:639
6434
+ #: app/features/mec/notifications.php:815
6435
+ #: app/features/mec/notifications.php:972
6436
+ #: app/features/mec/notifications.php:1128
6437
+ #: app/features/mec/notifications.php:1285
6438
+ #: app/features/mec/notifications.php:1448
6439
+ #: app/features/mec/notifications.php:1564 app/features/notifications.php:110
6440
  msgid "Your website description"
6441
  msgstr "Popis vašeho webu"
6442
 
6443
  #: app/features/mec/notifications.php:145
6444
+ #: app/features/mec/notifications.php:295
6445
+ #: app/features/mec/notifications.php:460
6446
+ #: app/features/mec/notifications.php:640
6447
+ #: app/features/mec/notifications.php:816
6448
+ #: app/features/mec/notifications.php:973
6449
+ #: app/features/mec/notifications.php:1129
6450
+ #: app/features/mec/notifications.php:1286 app/features/notifications.php:111
6451
  msgid "Event title"
6452
  msgstr "Název události"
6453
 
6454
  #: app/features/mec/notifications.php:146
6455
+ #: app/features/mec/notifications.php:296
6456
+ #: app/features/mec/notifications.php:461
6457
+ #: app/features/mec/notifications.php:641
6458
+ #: app/features/mec/notifications.php:817
6459
+ #: app/features/mec/notifications.php:974
6460
+ #: app/features/mec/notifications.php:1130
6461
+ #: app/features/mec/notifications.php:1287
6462
+ #: app/features/mec/notifications.php:1435
6463
+ #: app/features/mec/notifications.php:1551 app/features/mec/settings.php:1085
6464
+ #: app/features/notifications.php:112
6465
+ #, fuzzy
6466
+ #| msgid "Description"
6467
+ msgid "Event Description"
6468
+ msgstr "Popis"
6469
+
6470
+ #: app/features/mec/notifications.php:147
6471
+ #: app/features/mec/notifications.php:297
6472
+ #: app/features/mec/notifications.php:462
6473
+ #: app/features/mec/notifications.php:642
6474
+ #: app/features/mec/notifications.php:818
6475
+ #: app/features/mec/notifications.php:975
6476
+ #: app/features/mec/notifications.php:1131
6477
+ #: app/features/mec/notifications.php:1288
6478
+ #: app/features/mec/notifications.php:1436
6479
+ #: app/features/mec/notifications.php:1552 app/features/mec/settings.php:880
6480
+ #: app/features/notifications.php:113
6481
+ msgid "Event Tags"
6482
+ msgstr "Tagy události"
6483
+
6484
+ #: app/features/mec/notifications.php:148
6485
+ #: app/features/mec/notifications.php:298
6486
+ #: app/features/mec/notifications.php:463
6487
+ #: app/features/mec/notifications.php:643
6488
+ #: app/features/mec/notifications.php:819
6489
+ #: app/features/mec/notifications.php:976
6490
+ #: app/features/mec/notifications.php:1132
6491
+ #: app/features/mec/notifications.php:1289
6492
+ #: app/features/mec/notifications.php:1437
6493
+ #: app/features/mec/notifications.php:1553 app/features/mec/settings.php:855
6494
+ #: app/features/notifications.php:114
6495
+ msgid "Event Labels"
6496
+ msgstr "Štítky události"
6497
+
6498
+ #: app/features/mec/notifications.php:149
6499
+ #: app/features/mec/notifications.php:299
6500
+ #: app/features/mec/notifications.php:464
6501
+ #: app/features/mec/notifications.php:644
6502
+ #: app/features/mec/notifications.php:820
6503
+ #: app/features/mec/notifications.php:977
6504
+ #: app/features/mec/notifications.php:1133
6505
+ #: app/features/mec/notifications.php:1290
6506
+ #: app/features/mec/notifications.php:1438
6507
+ #: app/features/mec/notifications.php:1554 app/features/mec/settings.php:849
6508
+ #: app/features/notifications.php:115 app/widgets/single.php:121
6509
+ msgid "Event Categories"
6510
+ msgstr "Kategorie události"
6511
+
6512
+ #: app/features/mec/notifications.php:151
6513
+ #: app/features/mec/notifications.php:301
6514
+ #: app/features/mec/notifications.php:466
6515
+ #: app/features/mec/notifications.php:646
6516
+ #: app/features/mec/notifications.php:822
6517
+ #: app/features/mec/notifications.php:979
6518
+ #: app/features/mec/notifications.php:1135
6519
+ #: app/features/mec/notifications.php:1292 app/features/notifications.php:117
6520
  msgid "Event link"
6521
  msgstr "Odkaz události"
6522
 
6523
+ #: app/features/mec/notifications.php:152
6524
+ #: app/features/mec/notifications.php:302
6525
+ #: app/features/mec/notifications.php:467
6526
+ #: app/features/mec/notifications.php:647
6527
+ #: app/features/mec/notifications.php:1441
6528
+ #: app/features/mec/notifications.php:1557 app/features/notifications.php:148
6529
  #, fuzzy
6530
  #| msgid "Start Date"
6531
  msgid "Event Start Date"
6532
  msgstr "Počátečná den"
6533
 
6534
+ #: app/features/mec/notifications.php:153
6535
+ #: app/features/mec/notifications.php:303
6536
+ #: app/features/mec/notifications.php:468
6537
+ #: app/features/mec/notifications.php:648
6538
+ #: app/features/mec/notifications.php:1442
6539
+ #: app/features/mec/notifications.php:1558 app/features/notifications.php:149
6540
  #, fuzzy
6541
  #| msgid "End Date"
6542
  msgid "Event End Date"
6543
  msgstr "Konečný den"
6544
 
6545
+ #: app/features/mec/notifications.php:154
6546
+ #: app/features/mec/notifications.php:304
6547
+ #: app/features/mec/notifications.php:469
6548
+ #: app/features/mec/notifications.php:649 app/features/notifications.php:150
6549
  #, fuzzy
6550
  #| msgid "On Event Start"
6551
  msgid "Event Start Time"
6552
  msgstr "Při spuštění události"
6553
 
6554
+ #: app/features/mec/notifications.php:155
6555
+ #: app/features/mec/notifications.php:305
6556
+ #: app/features/mec/notifications.php:470
6557
+ #: app/features/mec/notifications.php:650 app/features/notifications.php:151
6558
  #, fuzzy
6559
  #| msgid "Hide Event End Time"
6560
  msgid "Event End Time"
6561
  msgstr "Skrýt čas ukončení události"
6562
 
6563
+ #: app/features/mec/notifications.php:156
6564
+ #: app/features/mec/notifications.php:306
6565
+ #: app/features/mec/notifications.php:471
6566
+ #: app/features/mec/notifications.php:651
6567
+ #: app/features/mec/notifications.php:1443
6568
+ #: app/features/mec/notifications.php:1559 app/features/notifications.php:152
6569
  #, fuzzy
6570
  #| msgid "Timezone: %s"
6571
  msgid "Event Timezone"
6572
  msgstr "Časové pásmo: %s"
6573
 
6574
+ #: app/features/mec/notifications.php:157
6575
+ #: app/features/mec/notifications.php:307
6576
+ #: app/features/mec/notifications.php:472
6577
+ #: app/features/mec/notifications.php:652
6578
+ #: app/features/mec/notifications.php:823
6579
+ #: app/features/mec/notifications.php:980
6580
+ #: app/features/mec/notifications.php:1136
6581
+ #: app/features/mec/notifications.php:1293 app/features/notifications.php:118
6582
  msgid "Speaker name of booked event"
6583
  msgstr "Jméno řečníka rezervované události"
6584
 
6585
+ #: app/features/mec/notifications.php:158
6586
+ #: app/features/mec/notifications.php:308
6587
+ #: app/features/mec/notifications.php:473
6588
+ #: app/features/mec/notifications.php:653
6589
+ #: app/features/mec/notifications.php:824
6590
+ #: app/features/mec/notifications.php:981
6591
+ #: app/features/mec/notifications.php:1137
6592
+ #: app/features/mec/notifications.php:1294 app/features/notifications.php:119
6593
  msgid "Organizer name of booked event"
6594
  msgstr "Jméno organizátora rezervované události"
6595
 
6596
+ #: app/features/mec/notifications.php:159
6597
+ #: app/features/mec/notifications.php:309
6598
+ #: app/features/mec/notifications.php:474
6599
+ #: app/features/mec/notifications.php:654
6600
+ #: app/features/mec/notifications.php:825
6601
+ #: app/features/mec/notifications.php:982
6602
+ #: app/features/mec/notifications.php:1138
6603
+ #: app/features/mec/notifications.php:1295 app/features/notifications.php:120
6604
  msgid "Organizer tel of booked event"
6605
  msgstr "Telefon organizátora rezervované události"
6606
 
6607
+ #: app/features/mec/notifications.php:160
6608
+ #: app/features/mec/notifications.php:310
6609
+ #: app/features/mec/notifications.php:475
6610
+ #: app/features/mec/notifications.php:655
6611
+ #: app/features/mec/notifications.php:826
6612
+ #: app/features/mec/notifications.php:983
6613
+ #: app/features/mec/notifications.php:1139
6614
+ #: app/features/mec/notifications.php:1296 app/features/notifications.php:121
6615
  msgid "Organizer email of booked event"
6616
  msgstr "Email organizátora rezervované události"
6617
 
6618
+ #: app/features/mec/notifications.php:161
6619
+ #: app/features/mec/notifications.php:311
6620
+ #: app/features/mec/notifications.php:476
6621
+ #: app/features/mec/notifications.php:656
6622
+ #: app/features/mec/notifications.php:827
6623
+ #: app/features/mec/notifications.php:984
6624
+ #: app/features/mec/notifications.php:1140
6625
+ #: app/features/mec/notifications.php:1297 app/features/notifications.php:122
6626
  #, fuzzy
6627
  #| msgid "Organizer tel of booked event"
6628
  msgid "Organizer url of booked event"
6629
  msgstr "Telefon organizátora rezervované události"
6630
 
6631
+ #: app/features/mec/notifications.php:162
6632
+ #: app/features/mec/notifications.php:312
6633
+ #: app/features/mec/notifications.php:477
6634
+ #: app/features/mec/notifications.php:657
6635
+ #: app/features/mec/notifications.php:828
6636
+ #: app/features/mec/notifications.php:985
6637
+ #: app/features/mec/notifications.php:1141
6638
+ #: app/features/mec/notifications.php:1298 app/features/notifications.php:123
6639
  #, fuzzy
6640
  #| msgid "Location name of booked event"
6641
  msgid "Additional organizers name of booked event"
6642
  msgstr "Název místa rezervované události"
6643
 
6644
+ #: app/features/mec/notifications.php:163
6645
+ #: app/features/mec/notifications.php:313
6646
+ #: app/features/mec/notifications.php:478
6647
+ #: app/features/mec/notifications.php:658
6648
+ #: app/features/mec/notifications.php:829
6649
+ #: app/features/mec/notifications.php:986
6650
+ #: app/features/mec/notifications.php:1142
6651
+ #: app/features/mec/notifications.php:1299 app/features/notifications.php:124
6652
  #, fuzzy
6653
  #| msgid "Location name of booked event"
6654
  msgid "Additional organizers tel of booked event"
6655
  msgstr "Název místa rezervované události"
6656
 
6657
+ #: app/features/mec/notifications.php:164
6658
+ #: app/features/mec/notifications.php:314
6659
+ #: app/features/mec/notifications.php:479
6660
+ #: app/features/mec/notifications.php:659
6661
+ #: app/features/mec/notifications.php:830
6662
+ #: app/features/mec/notifications.php:987
6663
+ #: app/features/mec/notifications.php:1143
6664
+ #: app/features/mec/notifications.php:1300 app/features/notifications.php:125
6665
  #, fuzzy
6666
  #| msgid "Organizer email of booked event"
6667
  msgid "Additional organizers email of booked event"
6668
  msgstr "Email organizátora rezervované události"
6669
 
6670
+ #: app/features/mec/notifications.php:165
6671
+ #: app/features/mec/notifications.php:315
6672
+ #: app/features/mec/notifications.php:480
6673
+ #: app/features/mec/notifications.php:660
6674
+ #: app/features/mec/notifications.php:831
6675
+ #: app/features/mec/notifications.php:988
6676
+ #: app/features/mec/notifications.php:1144
6677
+ #: app/features/mec/notifications.php:1301
6678
  #, fuzzy
6679
  #| msgid "Location name of booked event"
6680
  msgid "Additional organizers url of booked event"
6681
  msgstr "Název místa rezervované události"
6682
 
6683
+ #: app/features/mec/notifications.php:166
6684
+ #: app/features/mec/notifications.php:316
6685
+ #: app/features/mec/notifications.php:481
6686
+ #: app/features/mec/notifications.php:661
6687
+ #: app/features/mec/notifications.php:832
6688
+ #: app/features/mec/notifications.php:989
6689
+ #: app/features/mec/notifications.php:1145
6690
+ #: app/features/mec/notifications.php:1302 app/features/notifications.php:126
6691
  msgid "Location name of booked event"
6692
  msgstr "Název místa rezervované události"
6693
 
6694
+ #: app/features/mec/notifications.php:167
6695
+ #: app/features/mec/notifications.php:317
6696
+ #: app/features/mec/notifications.php:482
6697
+ #: app/features/mec/notifications.php:662
6698
+ #: app/features/mec/notifications.php:833
6699
+ #: app/features/mec/notifications.php:990
6700
+ #: app/features/mec/notifications.php:1146
6701
+ #: app/features/mec/notifications.php:1303 app/features/notifications.php:127
6702
  msgid "Location address of booked event"
6703
  msgstr "Adresa místa rezervované události"
6704
 
6705
+ #: app/features/mec/notifications.php:168
6706
+ #: app/features/mec/notifications.php:318
6707
+ #: app/features/mec/notifications.php:483
6708
+ #: app/features/mec/notifications.php:663
6709
+ #: app/features/mec/notifications.php:834
6710
+ #: app/features/mec/notifications.php:991
6711
+ #: app/features/mec/notifications.php:1147
6712
+ #: app/features/mec/notifications.php:1304 app/features/notifications.php:128
6713
  #, fuzzy
6714
  #| msgid "Location name of booked event"
6715
  msgid "Additional locations name of booked event"
6716
  msgstr "Název místa rezervované události"
6717
 
6718
+ #: app/features/mec/notifications.php:169
6719
+ #: app/features/mec/notifications.php:319
6720
+ #: app/features/mec/notifications.php:484
6721
+ #: app/features/mec/notifications.php:664
6722
+ #: app/features/mec/notifications.php:835
6723
+ #: app/features/mec/notifications.php:992
6724
+ #: app/features/mec/notifications.php:1148
6725
+ #: app/features/mec/notifications.php:1305 app/features/notifications.php:129
6726
  #, fuzzy
6727
  #| msgid "Location address of booked event"
6728
  msgid "Additional locations address of booked event"
6729
  msgstr "Adresa místa rezervované události"
6730
 
6731
+ #: app/features/mec/notifications.php:170
6732
+ #: app/features/mec/notifications.php:320
6733
+ #: app/features/mec/notifications.php:485
6734
+ #: app/features/mec/notifications.php:665
6735
+ #: app/features/mec/notifications.php:836
6736
+ #: app/features/mec/notifications.php:993
6737
+ #: app/features/mec/notifications.php:1149
6738
+ #: app/features/mec/notifications.php:1306 app/features/notifications.php:130
6739
  #, fuzzy
6740
  #| msgid "Speaker name of booked event"
6741
  msgid "Featured image of booked event"
6742
  msgstr "Jméno řečníka rezervované události"
6743
 
6744
+ #: app/features/mec/notifications.php:171
6745
+ #: app/features/mec/notifications.php:321
6746
+ #: app/features/mec/notifications.php:486
6747
+ #: app/features/mec/notifications.php:666
6748
+ #: app/features/mec/notifications.php:994
6749
+ #: app/features/mec/notifications.php:1150
6750
+ #: app/features/mec/notifications.php:1307 app/features/notifications.php:131
6751
  #, fuzzy
6752
  #| msgid "Event link"
6753
  msgid "Event more info link"
6754
+ msgstr "Odkaz události"
6755
+
6756
+ #: app/features/mec/notifications.php:172
6757
+ #: app/features/mec/notifications.php:322
6758
+ #: app/features/mec/notifications.php:487
6759
+ #: app/features/mec/notifications.php:667
6760
+ #: app/features/mec/notifications.php:995
6761
+ #: app/features/mec/notifications.php:1151
6762
+ #: app/features/mec/notifications.php:1308 app/features/notifications.php:132
6763
  #, fuzzy
6764
  #| msgid "Event link"
6765
  msgid "Event other info link"
6766
  msgstr "Odkaz události"
6767
 
6768
+ #: app/features/mec/notifications.php:173
6769
+ #: app/features/mec/notifications.php:323
6770
+ #: app/features/mec/notifications.php:488
6771
+ #: app/features/mec/notifications.php:668
6772
+ #: app/features/mec/notifications.php:996
6773
+ #: app/features/mec/notifications.php:1152
6774
+ #: app/features/mec/notifications.php:1309 app/features/notifications.php:133
6775
  #, fuzzy
6776
  #| msgid "Event link"
6777
  msgid "Event online link"
6778
  msgstr "Odkaz události"
6779
 
6780
+ #: app/features/mec/notifications.php:174
6781
+ #: app/features/mec/notifications.php:324
6782
+ #: app/features/mec/notifications.php:489
6783
+ #: app/features/mec/notifications.php:669
6784
+ #: app/features/mec/notifications.php:837
6785
+ #: app/features/mec/notifications.php:997
6786
+ #: app/features/mec/notifications.php:1310 app/features/notifications.php:134
6787
  msgid "Full Attendee info such as booking form data, name, email etc."
6788
  msgstr ""
6789
  "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
6790
  "jméno, e-mail atd."
6791
 
6792
+ #: app/features/mec/notifications.php:175
6793
+ #: app/features/mec/notifications.php:325
6794
+ #: app/features/mec/notifications.php:490
6795
+ #: app/features/mec/notifications.php:670
6796
+ #: app/features/mec/notifications.php:838
6797
+ #: app/features/mec/notifications.php:998
6798
+ #: app/features/mec/notifications.php:1311 app/features/notifications.php:135
6799
  #, fuzzy
6800
  #| msgid "Booking"
6801
  msgid "Booking ID"
6802
  msgstr "Rezervace"
6803
 
6804
+ #: app/features/mec/notifications.php:176
6805
+ #: app/features/mec/notifications.php:326
6806
+ #: app/features/mec/notifications.php:491
6807
+ #: app/features/mec/notifications.php:671
6808
+ #: app/features/mec/notifications.php:839
6809
+ #: app/features/mec/notifications.php:999
6810
+ #: app/features/mec/notifications.php:1312 app/features/notifications.php:136
6811
  #, fuzzy
6812
  #| msgid "Transaction ID"
6813
  msgid "Transaction ID of Booking"
6814
  msgstr "ID transakce"
6815
 
6816
+ #: app/features/mec/notifications.php:177
6817
+ #: app/features/mec/notifications.php:493
6818
+ #: app/features/mec/notifications.php:673
6819
+ #: app/features/mec/notifications.php:1314
6820
  msgid "Invoice Link"
6821
  msgstr "Odkaz na fakturu"
6822
 
6823
+ #: app/features/mec/notifications.php:178
6824
+ #: app/features/mec/notifications.php:328
6825
+ #: app/features/mec/notifications.php:494
6826
+ #: app/features/mec/notifications.php:674
6827
+ #: app/features/mec/notifications.php:841
6828
+ #: app/features/mec/notifications.php:1001
6829
+ #: app/features/mec/notifications.php:1154
6830
+ #: app/features/mec/notifications.php:1315 app/features/notifications.php:138
6831
  #, fuzzy
6832
  #| msgid "There is no skins"
6833
  msgid "Total attendees of current booking"
6834
  msgstr "Neexistuje žádný vzhled"
6835
 
6836
+ #: app/features/mec/notifications.php:179
6837
+ #: app/features/mec/notifications.php:329
6838
+ #: app/features/mec/notifications.php:495
6839
+ #: app/features/mec/notifications.php:675
6840
+ #: app/features/mec/notifications.php:842
6841
+ #: app/features/mec/notifications.php:1002
6842
+ #: app/features/mec/notifications.php:1155
6843
+ #: app/features/mec/notifications.php:1316 app/features/notifications.php:139
6844
  msgid "Amount of Booked Tickets (Total attendees of all bookings)"
6845
  msgstr ""
6846
 
6847
+ #: app/features/mec/notifications.php:180
6848
+ #: app/features/mec/notifications.php:330
6849
+ #: app/features/mec/notifications.php:496
6850
+ #: app/features/mec/notifications.php:676
6851
+ #: app/features/mec/notifications.php:843
6852
+ #: app/features/mec/notifications.php:1003
6853
+ #: app/features/mec/notifications.php:1317 app/features/notifications.php:140
6854
  msgid "Ticket name"
6855
  msgstr "Název vstupenky"
6856
 
6857
+ #: app/features/mec/notifications.php:181
6858
+ #: app/features/mec/notifications.php:331
6859
+ #: app/features/mec/notifications.php:497
6860
+ #: app/features/mec/notifications.php:677
6861
+ #: app/features/mec/notifications.php:844
6862
+ #: app/features/mec/notifications.php:1004
6863
+ #: app/features/mec/notifications.php:1318 app/features/notifications.php:141
6864
  msgid "Ticket time"
6865
  msgstr "Čas vstupenky"
6866
 
6867
+ #: app/features/mec/notifications.php:182
6868
+ #: app/features/mec/notifications.php:332
6869
+ #: app/features/mec/notifications.php:498
6870
+ #: app/features/mec/notifications.php:678
6871
+ #: app/features/mec/notifications.php:845
6872
+ #: app/features/mec/notifications.php:1005
6873
+ #: app/features/mec/notifications.php:1319 app/features/notifications.php:142
6874
  #, fuzzy
6875
  #| msgid "Ticket name"
6876
  msgid "Ticket name & time"
6877
  msgstr "Název vstupenky"
6878
 
6879
+ #: app/features/mec/notifications.php:183
6880
+ #: app/features/mec/notifications.php:333
6881
+ #: app/features/mec/notifications.php:499
6882
+ #: app/features/mec/notifications.php:679
6883
+ #: app/features/mec/notifications.php:846
6884
+ #: app/features/mec/notifications.php:1006
6885
+ #: app/features/mec/notifications.php:1320 app/features/notifications.php:143
6886
  #, fuzzy
6887
  #| msgid "Ticket Variations / Options"
6888
  msgid "Ticket private description"
6889
  msgstr "Varianty vstupenky / možnosti"
6890
 
6891
+ #: app/features/mec/notifications.php:184
6892
+ #: app/features/mec/notifications.php:334
6893
+ #: app/features/mec/notifications.php:500
6894
+ #: app/features/mec/notifications.php:680
6895
+ #: app/features/mec/notifications.php:847
6896
+ #: app/features/mec/notifications.php:1007
6897
+ #: app/features/mec/notifications.php:1321 app/features/notifications.php:144
6898
  #, fuzzy
6899
  #| msgid "Payment Gateways"
6900
  msgid "Payment Gateway"
6901
  msgstr "Platební brány"
6902
 
6903
+ #: app/features/mec/notifications.php:185
6904
+ #: app/features/mec/notifications.php:335
6905
+ #: app/features/mec/notifications.php:501
6906
+ #: app/features/mec/notifications.php:681
6907
+ #: app/features/mec/notifications.php:848
6908
+ #: app/features/mec/notifications.php:1008
6909
+ #: app/features/mec/notifications.php:1322 app/features/notifications.php:145
6910
  msgid "Link to the downloadable file"
6911
  msgstr ""
6912
 
6913
+ #: app/features/mec/notifications.php:186
6914
+ #: app/features/mec/notifications.php:336
6915
+ #: app/features/mec/notifications.php:502
6916
+ #: app/features/mec/notifications.php:682
6917
+ #: app/features/mec/notifications.php:1323
6918
  msgid "Download ICS file"
6919
  msgstr "Stáhnout ICS soubor"
6920
 
6921
+ #: app/features/mec/notifications.php:188
6922
+ #: app/features/mec/notifications.php:338
6923
+ #: app/features/mec/notifications.php:504
6924
+ #: app/features/mec/notifications.php:684
6925
+ #: app/features/mec/notifications.php:1325 app/features/notifications.php:147
6926
  msgid "Add to Google Calendar Links for next 20 occurrences"
6927
  msgstr ""
6928
 
6929
+ #: app/features/mec/notifications.php:198 app/libraries/main.php:651
6930
  msgid "Booking Verification"
6931
  msgstr "Ověření rezervace"
6932
 
6933
+ #: app/features/mec/notifications.php:200
6934
  msgid "It sends to attendee email for verifying their booking/email."
6935
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
6936
 
6937
+ #: app/features/mec/notifications.php:327
6938
  msgid "Email/Booking verification link."
6939
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
6940
 
6941
+ #: app/features/mec/notifications.php:353
6942
  #, fuzzy
6943
  #| msgid "Enable booking notification"
6944
  msgid "Enable booking confirmation"
6945
  msgstr "Povolit upozornění na rezervaci"
6946
 
6947
+ #: app/features/mec/notifications.php:356
6948
  #, fuzzy
6949
  #| msgid "It sends to attendee after confirming the booking by admin."
6950
  msgid "Sent to attendee after confirming the booking by admin."
6951
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
6952
 
6953
+ #: app/features/mec/notifications.php:430
6954
  msgid "Send one single email only to first attendee"
6955
  msgstr ""
6956
 
6957
+ #: app/features/mec/notifications.php:455
6958
+ #: app/features/mec/notifications.php:635
6959
  #, fuzzy
6960
  #| msgid "Speakers Names"
6961
  msgid "Attendee Price"
6962
  msgstr "Jméno řečníka"
6963
 
6964
+ #: app/features/mec/notifications.php:492
6965
+ #: app/features/mec/notifications.php:672
6966
+ #: app/features/mec/notifications.php:1313
6967
  msgid "Booking cancellation link."
6968
  msgstr "Odkaz na zrušení rezervace."
6969
 
6970
+ #: app/features/mec/notifications.php:515 app/features/notifications.php:171
6971
+ #: app/libraries/main.php:650
6972
  #, fuzzy
6973
  #| msgid "Booking Verification"
6974
  msgid "Booking Rejection"
6975
  msgstr "Ověření rezervace"
6976
 
6977
+ #: app/features/mec/notifications.php:520
6978
  #, fuzzy
6979
  #| msgid "Enable booking notification"
6980
  msgid "Enable booking rejection"
6981
  msgstr "Povolit upozornění na rezervaci"
6982
 
6983
+ #: app/features/mec/notifications.php:523
6984
  #, fuzzy
6985
  #| msgid "It sends to attendee after booking for notifying him/her."
6986
  msgid "Sent to attendee after booking rejection by admin."
6987
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
6988
 
6989
+ #: app/features/mec/notifications.php:597
6990
+ #: app/features/mec/notifications.php:775
6991
+ #: app/features/mec/notifications.php:938
6992
+ #: app/features/mec/notifications.php:1098
6993
+ #: app/features/mec/notifications.php:1350
6994
  msgid "Send the email to admin"
6995
  msgstr "Odeslat email administrátorovi"
6996
 
6997
+ #: app/features/mec/notifications.php:609
6998
+ #: app/features/mec/notifications.php:787
6999
  #, fuzzy
7000
  #| msgid "Send the email to booking user"
7001
  msgid "Send the email to the booked user"
7002
  msgstr "Pošlete rezervační e-mail uživateli"
7003
 
7004
+ #: app/features/mec/notifications.php:694 app/features/notifications.php:177
7005
+ #: app/libraries/main.php:652
7006
  msgid "Booking Cancellation"
7007
  msgstr "Zrušení rezervace"
7008
 
7009
+ #: app/features/mec/notifications.php:699
7010
  msgid "Enable cancellation notification"
7011
  msgstr "Povolit oznámení o zrušení"
7012
 
7013
+ #: app/features/mec/notifications.php:701
7014
  #, fuzzy
7015
  #| msgid ""
7016
  #| "It sends to selected recipients after booking cancellation for notifying "
7018
  msgid "Sent to selected recipients after booking cancellation to notify them."
7019
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
7020
 
7021
+ #: app/features/mec/notifications.php:840
7022
+ #: app/features/mec/notifications.php:1000
7023
+ #: app/features/mec/notifications.php:1153 app/features/notifications.php:137
7024
  msgid "Admin booking management link."
7025
  msgstr "Odkaz administrátora na správu rezervace."
7026
 
7027
+ #: app/features/mec/notifications.php:857 app/libraries/main.php:655
7028
  msgid "Admin"
7029
  msgstr "Administrátor"
7030
 
7031
+ #: app/features/mec/notifications.php:862
7032
  msgid "Enable admin notification"
7033
  msgstr "Povolit oznámení správce"
7034
 
7035
+ #: app/features/mec/notifications.php:865
7036
  #, fuzzy
7037
  #| msgid "It sends to admin to notify him/her that a new booking received."
7038
  msgid "Sent to admin to notify them that a new booking has been received."
7039
  msgstr "Zašle správci informaci o přijetí nové rezervace."
7040
 
7041
+ #: app/features/mec/notifications.php:1017 app/features/notifications.php:183
7042
+ #: app/libraries/main.php:654
7043
  #, fuzzy
7044
  #| msgid "Event Color"
7045
  msgid "Event Soldout"
7046
  msgstr "Barva události"
7047
 
7048
+ #: app/features/mec/notifications.php:1022
7049
  #, fuzzy
7050
  #| msgid "Enable new event notification"
7051
  msgid "Enable event soldout notification"
7052
  msgstr "Povolit oznámení na novou událost"
7053
 
7054
+ #: app/features/mec/notifications.php:1024
7055
  #, fuzzy
7056
  #| msgid "It sends to admin to notify him/her that a new booking received."
7057
  msgid ""
7059
  "soldout."
7060
  msgstr "Zašle správci informaci o přijetí nové rezervace."
7061
 
7062
+ #: app/features/mec/notifications.php:1164 app/features/notifications.php:180
7063
+ #: app/libraries/main.php:653 app/libraries/notifications.php:777
7064
  msgid "Booking Reminder"
7065
  msgstr "Připomenutí rezervace"
7066
 
7067
+ #: app/features/mec/notifications.php:1169
7068
  msgid "Enable booking reminder notification"
7069
  msgstr "Povolit upozornění na připomenutí rezervace"
7070
 
7071
+ #: app/features/mec/notifications.php:1176
7072
  #, fuzzy, php-format
7073
  #| msgid ""
7074
  #| "Set a cronjob to call %s file once per day otherwise it won't send the "
7083
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
7084
  "% s, jinak může zasílat připomenutí několikrát."
7085
 
7086
+ #: app/features/mec/notifications.php:1176
7087
  #, fuzzy
7088
  #| msgid "only once per day"
7089
  msgid "only once per hour"
7090
  msgstr "pouze jednou denně"
7091
 
7092
+ #: app/features/mec/notifications.php:1246 app/libraries/main.php:7826
7093
+ #: app/libraries/main.php:7843
7094
  #, fuzzy
7095
  #| msgid "hours"
7096
  msgid "Hours"
7097
  msgstr "hodiny"
7098
 
7099
+ #: app/features/mec/notifications.php:1252
7100
  msgid "Reminder hours"
7101
  msgstr ""
7102
 
7103
+ #: app/features/mec/notifications.php:1253
7104
  msgid "Please, insert comma to separate reminder hours."
7105
  msgstr ""
7106
 
7107
+ #: app/features/mec/notifications.php:1336 app/features/popup/event.php:253
7108
+ #: app/libraries/main.php:641
7109
  msgid "New Event"
7110
  msgstr "Nová událost"
7111
 
7112
+ #: app/features/mec/notifications.php:1341
7113
  msgid "Enable new event notification"
7114
  msgstr "Povolit oznámení na novou událost"
7115
 
7116
+ #: app/features/mec/notifications.php:1353
7117
  #, fuzzy
7118
  #| msgid ""
7119
  #| "It sends after adding a new event from frontend event submission or from "
7125
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
7126
  "nebo z administrace webových stránek (backend)."
7127
 
7128
+ #: app/features/mec/notifications.php:1434
7129
+ #: app/features/mec/notifications.php:1550
7130
  msgid "Title of event"
7131
  msgstr "Název události"
7132
 
7133
+ #: app/features/mec/notifications.php:1440
7134
+ #: app/features/mec/notifications.php:1556
7135
  msgid "Link of event"
7136
  msgstr "Odkaz události"
7137
 
7138
+ #: app/features/mec/notifications.php:1444
7139
+ #: app/features/mec/notifications.php:1560 app/features/notifications.php:153
7140
  msgid "Status of event"
7141
  msgstr "Stav události"
7142
 
7143
+ #: app/features/mec/notifications.php:1445
7144
+ #: app/features/mec/notifications.php:1561 app/features/mec/settings.php:1053
7145
+ #: app/features/mec/settings.php:1057 app/features/notifications.php:154
7146
  msgid "Event Note"
7147
  msgstr "Poznámka události"
7148
 
7149
+ #: app/features/mec/notifications.php:1449
7150
+ #: app/features/mec/notifications.php:1565
7151
  msgid "Admin events management link."
7152
  msgstr "Odkaz administrátora na správu událostí."
7153
 
7154
+ #: app/features/mec/notifications.php:1461 app/libraries/main.php:642
7155
  msgid "User Event Publishing"
7156
  msgstr "Publikování uživatelských událostí"
7157
 
7158
+ #: app/features/mec/notifications.php:1466
7159
  msgid "Enable user event publishing notification"
7160
  msgstr "Povolit oznámení o zveřejnění události uživatele"
7161
 
7162
+ #: app/features/mec/notifications.php:1468
7163
  #, fuzzy
7164
  #| msgid ""
7165
  #| "It sends after published a new event from frontend event submission or "
7171
  "Odešle po zveřejnění nové události ze zadání z webových stránek (frontend) "
7172
  "nebo z administrace webových stránek (backend)."
7173
 
7174
+ #: app/features/mec/notifications.php:1575 app/libraries/main.php:658
7175
  #, fuzzy
7176
  #| msgid "Notifications"
7177
  msgid "Notifications Per Event"
7178
  msgstr "Upozornění"
7179
 
7180
+ #: app/features/mec/notifications.php:1580
7181
  #, fuzzy
7182
  #| msgid "Notifications"
7183
  msgid "Edit Notifications Per Event"
7363
  msgstr "Můžete povolit nebo zakázat skripty schématu"
7364
 
7365
  #: app/features/mec/settings.php:137 app/features/mec/settings.php:148
7366
+ #: app/features/mec/wizard.php:236 app/libraries/main.php:6691
7367
+ #: app/libraries/main.php:6745
7368
  msgid "Weekdays"
7369
  msgstr "Pracovní dny"
7370
 
7520
  "you select independent tags, mec would use its own tags."
7521
  msgstr ""
7522
 
7523
+ #: app/features/mec/settings.php:280 app/libraries/main.php:593
7524
  #, fuzzy
7525
  #| msgid "Google Maps Options"
7526
  msgid "Email Options"
7696
  "jiného. Výchozí hodnota je mec-kategorie. Nemůžete mít stránku s tímto "
7697
  "názvem."
7698
 
7699
+ #: app/features/mec/settings.php:608 app/libraries/main.php:587
7700
+ msgid "Assets Per Page"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7701
  msgstr ""
7702
 
7703
+ #: app/features/mec/settings.php:612
7704
  #, fuzzy
7705
+ #| msgid "Enable speakers feature"
7706
+ msgid "Enable Assets Per Page"
7707
+ msgstr "Povolit vlastnosti řečníků"
7708
 
7709
+ #: app/features/mec/settings.php:616
7710
+ msgid ""
7711
+ "By enabling this option MEC won't include any JavaScript or CSS files in "
7712
+ "frontend of your website unless you enable the assets inclusion in page "
7713
+ "options."
7714
  msgstr ""
7715
 
7716
+ #: app/features/mec/settings.php:625
 
 
 
 
 
 
 
 
 
 
 
 
7717
  msgid "Enable Google Recaptcha"
7718
  msgstr "Povolit Google Recaptcha"
7719
 
7720
+ #: app/features/mec/settings.php:634
7721
  msgid "Enable on booking form"
7722
  msgstr "Povolit rezervační formulář"
7723
 
7724
+ #: app/features/mec/settings.php:642
7725
  msgid "Enable on \"Frontend Event Submission\" form"
7726
  msgstr "Povolit ve formuláři „Odesílání událostí z frontendu“"
7727
 
7728
  # místa
7729
+ #: app/features/mec/settings.php:646
7730
  msgid "Site Key"
7731
  msgstr "Klíč webu"
7732
 
7733
+ #: app/features/mec/settings.php:652
7734
  msgid "Secret Key"
7735
  msgstr "Tajný klíč"
7736
 
7737
+ #: app/features/mec/settings.php:664 app/features/mec/settings.php:672
7738
  msgid "Time Format"
7739
  msgstr "Formát času"
7740
 
7741
+ #: app/features/mec/settings.php:667
7742
  msgid "12 hours format with AM/PM"
7743
  msgstr "12 hodinový formát s dop./odp."
7744
 
7745
+ #: app/features/mec/settings.php:668
7746
  msgid "24 hours format"
7747
  msgstr "24 hodinový fotmát"
7748
 
7749
+ #: app/features/mec/settings.php:673
7750
  msgid "This option, affects the selection of Start/End time."
7751
  msgstr "Tato možnost ovlivňuje výběr času zahájení / ukončení."
7752
 
7753
+ #: app/features/mec/settings.php:681
7754
  msgid "Events List Page"
7755
  msgstr "Stránka seznamu událostí"
7756
 
7757
+ #: app/features/mec/settings.php:689 app/features/mec/settings.php:701
7758
  #, php-format
7759
  msgid "Put %s shortcode into the page."
7760
  msgstr "Vložte %s na stránku zkrácené kódy."
7761
 
7762
+ #: app/features/mec/settings.php:693
7763
  msgid "Add/Edit Events Page"
7764
  msgstr "Přidat / Editovat stránku událostí"
7765
 
7766
+ #: app/features/mec/settings.php:705
7767
  #, fuzzy
7768
  #| msgid "On Event Start"
7769
  msgid "New Events Status"
7770
  msgstr "Při spuštění události"
7771
 
7772
+ #: app/features/mec/settings.php:708
7773
  #, fuzzy
7774
  #| msgid "WordPress"
7775
  msgid "Let WordPress decide"
7776
  msgstr "WordPress"
7777
 
7778
+ #: app/features/mec/settings.php:709 app/libraries/main.php:6967
7779
+ #: app/libraries/main.php:6989
7780
  msgid "Pending"
7781
  msgstr "Nevyřízený"
7782
 
7783
+ #: app/features/mec/settings.php:710
7784
  msgid "Publish"
7785
  msgstr ""
7786
 
7787
+ #: app/features/mec/settings.php:715
7788
  #, fuzzy
7789
  #| msgid "Display Event Price"
7790
  msgid "Display Event Date in List"
7791
  msgstr "Zobrazit cenu události"
7792
 
7793
+ #: app/features/mec/settings.php:718 app/features/mec/settings.php:900
7794
+ #: app/libraries/notifications.php:1773
7795
  msgid "No"
7796
  msgstr "Ne"
7797
 
7798
+ #: app/features/mec/settings.php:719 app/features/mec/settings.php:899
7799
+ #: app/libraries/notifications.php:1773
7800
  msgid "Yes"
7801
  msgstr "Ano"
7802
 
7803
+ #: app/features/mec/settings.php:736
7804
  #, fuzzy
7805
  #| msgid ""
7806
  #| "User redirects to this page after booking. Leave it empty if you want to "
7812
  "Uživatel bude přesměrován na tuto stránku po rezervaci. Pokud ji chcete "
7813
  "vypnout, ponechte ji prázdnou."
7814
 
7815
+ #: app/features/mec/settings.php:743 app/features/mec/settings.php:748
7816
  #, fuzzy
7817
  #| msgid "Thank You Page"
7818
  msgid "Thank You Page URL"
7819
  msgstr "Stránka s poděkováním"
7820
 
7821
+ #: app/features/mec/settings.php:749
7822
  msgid "If filled it will use instead of thank you page set above."
7823
  msgstr ""
7824
 
7825
+ #: app/features/mec/settings.php:772 app/features/mec/settings.php:777
7826
  #, fuzzy
7827
  #| msgid "Maximum file size"
7828
  msgid "Maximum File Size"
7829
  msgstr "Maximální velikost souboru"
7830
 
7831
+ #: app/features/mec/settings.php:774
7832
  msgid "in KB"
7833
  msgstr ""
7834
 
7835
+ #: app/features/mec/settings.php:778
7836
  msgid "In Kilo Bytes so 5000 means 5MB (Approximately)"
7837
  msgstr ""
7838
 
7839
+ #: app/features/mec/settings.php:793
7840
+ #, fuzzy
7841
+ #| msgid "Description"
7842
+ msgid "Private Description of Ticket"
7843
+ msgstr "Popis"
7844
+
7845
+ #: app/features/mec/settings.php:794
7846
+ msgid "You can disable the private description if you like."
7847
+ msgstr ""
7848
+
7849
+ #: app/features/mec/settings.php:803
7850
  #, fuzzy
7851
  #| msgid "Enable event submission by guest (Not logged-in) users"
7852
  msgid "Enable event submission by guest (Not logged in) users"
7853
  msgstr "Povolit odesílání události hosty (nepřihlášenými uživateli)"
7854
 
7855
+ #: app/features/mec/settings.php:810
7856
  msgid "Enable mandatory email and name for guest user"
7857
  msgstr "Povolit povinný e-mail a jméno pro hostujícího uživatele"
7858
 
7859
+ #: app/features/mec/settings.php:816
7860
  msgid ""
7861
  "Automatically create users after event publish and assign event to the "
7862
  "created user"
7863
  msgstr ""
7864
 
7865
+ #: app/features/mec/settings.php:821
7866
  msgid "Frontend Event Submission Sections"
7867
  msgstr "Sekce pro zasílání událostí z webových stránek (frontend)"
7868
 
7869
+ #: app/features/mec/settings.php:825
7870
  #, fuzzy
7871
  #| msgid "Event Details"
7872
  msgid "Event Data Fields"
7873
  msgstr "Podrobnosti události"
7874
 
7875
+ #: app/features/mec/settings.php:866
 
 
 
 
 
 
 
 
7876
  msgid ""
7877
  "This feature adds the ability to hide the current event to all MEC "
7878
  "Shortcodes."
7879
  msgstr ""
7880
 
7881
+ #: app/features/mec/settings.php:892 app/widgets/single.php:125
 
 
 
 
7882
  msgid "Event Organizer"
7883
  msgstr "Organizátor události"
7884
 
7885
+ #: app/features/mec/settings.php:896
7886
+ #, fuzzy
7887
+ #| msgid "Additional Organizers"
7888
+ msgid "Ability to Use All Organizers"
7889
+ msgstr "Další organizátoři"
7890
+
7891
+ #: app/features/mec/settings.php:904
7892
+ #, fuzzy
7893
+ #| msgid "Organizers"
7894
+ msgid "Use All Organizers"
7895
+ msgstr "Organizátoři"
7896
+
7897
+ #: app/features/mec/settings.php:905
7898
+ msgid ""
7899
+ "Users are able to see list of ogranizers and use them for their event. Set "
7900
+ "it to \"No\" if you want to disable this functionality and \"Other Organizers"
7901
+ "\" feature."
7902
+ msgstr ""
7903
+
7904
+ #: app/features/mec/settings.php:935 app/features/occurrences.php:389
7905
  #, fuzzy
7906
  #| msgid "Total booking limits"
7907
  msgid "Total Booking Limit"
7908
  msgstr "Celkové limity rezervace"
7909
 
7910
+ #: app/features/mec/settings.php:941
7911
  #, fuzzy
7912
  #| msgid "Discount"
7913
  msgid "Discount Per User Roles"
7914
  msgstr "Sleva"
7915
 
7916
+ #: app/features/mec/settings.php:977
7917
  #, fuzzy
7918
  #| msgid "Ticket Variations / Options"
7919
  msgid "Ticket Options"
7920
  msgstr "Varianty vstupenky / možnosti"
7921
 
7922
+ #: app/features/mec/settings.php:989
7923
  msgid "Fees / Taxes Options"
7924
  msgstr "Možnosti Poplatky / Daně"
7925
 
7926
+ #: app/features/mec/settings.php:1004 app/features/schema.php:64
7927
  #, fuzzy
7928
  #| msgid "Schema"
7929
  msgid "SEO Schema"
7930
  msgstr "Schéma"
7931
 
7932
+ #: app/features/mec/settings.php:1036 app/widgets/single.php:165
7933
  #, fuzzy
7934
  #| msgid "Edit Event"
7935
  msgid "Virtual Event"
7936
  msgstr "Editace události"
7937
 
7938
+ #: app/features/mec/settings.php:1045
7939
  #, fuzzy
7940
  #| msgid "Book Event"
7941
  msgid "Zoom Event"
7942
  msgstr "Rezervovat událost"
7943
 
7944
+ #: app/features/mec/settings.php:1058
7945
  #, php-format
7946
  msgid ""
7947
  "Users can put a note for editors while they're submitting the event. Also "
7952
  "oznámení o nové události můžete také vložit %%event_note%%, abyste dostali e-"
7953
  "mail s poznámkami uživatelů."
7954
 
7955
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1073
7956
  #, fuzzy
7957
  #| msgid "Visibility"
7958
  msgid "Note visibility"
7959
  msgstr "Viditelnost"
7960
 
7961
+ #: app/features/mec/settings.php:1068
7962
  msgid "Always"
7963
  msgstr "Vždy"
7964
 
7965
+ #: app/features/mec/settings.php:1069
7966
  msgid "While event is not published"
7967
  msgstr "I když událost není zveřejněna"
7968
 
7969
+ #: app/features/mec/settings.php:1074
7970
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
7971
  msgstr ""
7972
  "Poznámka k události se zobrazí ve formuláři pro zasílání z webových stránek "
7973
  "(frontend) a Upravit událost v administraci stránek (backend)."
7974
 
7975
+ #: app/features/mec/settings.php:1082
7976
  #, fuzzy
7977
  #| msgid "Required Field"
7978
  msgid "Required Fields"
7979
  msgstr "Požadovaná pole"
7980
 
7981
+ #: app/features/mec/settings.php:1089 app/libraries/main.php:6714
7982
+ #: app/libraries/main.php:6763
 
 
 
 
 
 
7983
  msgid "More Info Link"
7984
  msgstr "Odkaz na více informací"
7985
 
7986
+ #: app/features/mec/settings.php:1102 app/libraries/main.php:590
7987
  msgid "User Profile"
7988
  msgstr "Uživatelský profil"
7989
 
7990
+ #: app/features/mec/settings.php:1104
7991
  #, fuzzy, php-format
7992
  #| msgid ""
7993
  #| "Put %s shortcode into your desired page. Then users are able to see "
7999
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vidět "
8000
  "historii svých rezervací."
8001
 
8002
+ #: app/features/mec/settings.php:1109 app/libraries/main.php:591
8003
  #, fuzzy
8004
  #| msgid "Hide Events"
8005
  msgid "User Events"
8006
  msgstr "Skrýt události"
8007
 
8008
+ #: app/features/mec/settings.php:1111
8009
  #, fuzzy, php-format
8010
  #| msgid ""
8011
  #| "Put %s shortcode into your desired page. Then users are able to search "
8017
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
8018
  "události"
8019
 
8020
+ #: app/features/mec/settings.php:1123 app/libraries/main.php:592
8021
  msgid "Search Bar"
8022
  msgstr "Vyhledávací panel"
8023
 
8024
+ #: app/features/mec/settings.php:1125
8025
  #, php-format
8026
  msgid ""
8027
  "Put %s shortcode into your desired page. Then users are able to search events"
8029
  "Vložte %s krátký kód na požadovanou stránku. Uživatelé pak mohou vyhledávat "
8030
  "události"
8031
 
8032
+ #: app/features/mec/settings.php:1130
8033
  msgid "Ajax Live mode"
8034
  msgstr "Ajax Live mód"
8035
 
8036
+ #: app/features/mec/settings.php:1134
8037
  msgid "Ajax mode"
8038
  msgstr "Ajax mód"
8039
 
8040
+ #: app/features/mec/settings.php:1135
8041
  #, fuzzy
8042
  #| msgid ""
8043
  #| "if you enable this option, search button disappeared and to use this "
8049
  "pokud tuto možnost povolíte, tlačítko pro vyhledávání zmizelo a pro použití "
8050
  "této funkce musí být povoleno pole pro zadávání textu."
8051
 
8052
+ #: app/features/mec/settings.php:1143
8053
  msgid "Modern Type"
8054
  msgstr "Moderní typ"
8055
 
8056
+ #: app/features/mec/settings.php:1147
8057
  msgid "Search bar fields"
8058
  msgstr "Pole vyhledávacího panelu"
8059
 
8060
+ #: app/features/mec/settings.php:1189
8061
  msgid "Text input"
8062
  msgstr "Zadávání textu"
8063
 
8064
+ #: app/features/mec/settings.php:1201
8065
  msgid "Enable Mailchimp Integration"
8066
  msgstr "Povolit integraci Mailchimp"
8067
 
8068
+ #: app/features/mec/settings.php:1206 app/features/mec/settings.php:1211
8069
+ #: app/features/mec/settings.php:1266 app/features/mec/settings.php:1290
8070
+ #: app/features/mec/settings.php:1314 app/features/mec/settings.php:1381
8071
  msgid "API Key"
8072
  msgstr "API Key"
8073
 
8074
+ #: app/features/mec/settings.php:1219 app/features/mec/settings.php:1224
8075
+ #: app/features/mec/settings.php:1272 app/features/mec/settings.php:1387
8076
+ #: app/features/mec/settings.php:1405 app/features/mec/settings.php:1453
8077
  msgid "List ID"
8078
  msgstr "ID seznamu"
8079
 
8080
+ #: app/features/mec/settings.php:1232 app/features/mec/settings.php:1240
8081
  msgid "Subscription Status"
8082
  msgstr "Stav odběru"
8083
 
8084
+ #: app/features/mec/settings.php:1235
8085
  msgid "Subscribe automatically"
8086
  msgstr "Odebírat automaticky"
8087
 
8088
+ #: app/features/mec/settings.php:1236
8089
  msgid "Subscribe by verification"
8090
  msgstr "Přihlaste se k odběru pomocí ověření"
8091
 
8092
+ #: app/features/mec/settings.php:1241
8093
  #, fuzzy
8094
  #| msgid ""
8095
  #| "If you choose \"Subscribe by verification\" then an email will send to "
8101
  "Pokud zvolíte možnost „Přihlásit se k odběru pomocí ověření“, odešle e-mail "
8102
  "uživateli mailchimp k ověření oběru."
8103
 
8104
+ #: app/features/mec/settings.php:1250
8105
  msgid "Enable Segment Creation by Event Title and Booking Date"
8106
  msgstr ""
8107
 
8108
+ #: app/features/mec/settings.php:1257 app/libraries/main.php:595
8109
  #, fuzzy
8110
  #| msgid "Mailchimp Integration"
8111
  msgid "Campaign Monitor Integration"
8112
  msgstr "Integrace Mailchimp"
8113
 
8114
+ #: app/features/mec/settings.php:1261
8115
  #, fuzzy
8116
  #| msgid "Enable Mailchimp Integration"
8117
  msgid "Enable Campaign Monitor Integration"
8118
  msgstr "Povolit integraci Mailchimp"
8119
 
8120
+ #: app/features/mec/settings.php:1281 app/libraries/main.php:596
8121
  #, fuzzy
8122
  #| msgid "Mailchimp Integration"
8123
  msgid "MailerLite Integration"
8124
  msgstr "Integrace Mailchimp"
8125
 
8126
+ #: app/features/mec/settings.php:1285
8127
  #, fuzzy
8128
  #| msgid "Enable Mailchimp Integration"
8129
  msgid "Enable MailerLite Integration"
8130
  msgstr "Povolit integraci Mailchimp"
8131
 
8132
+ #: app/features/mec/settings.php:1296
8133
  #, fuzzy
8134
  #| msgid "Group URL"
8135
  msgid "Group ID"
8136
  msgstr "Group URL"
8137
 
8138
+ #: app/features/mec/settings.php:1305 app/libraries/main.php:597
8139
  #, fuzzy
8140
  #| msgid "Enable Mailchimp Integration"
8141
  msgid "Constant Contact Integration"
8142
  msgstr "Povolit integraci Mailchimp"
8143
 
8144
+ #: app/features/mec/settings.php:1309
8145
  #, fuzzy
8146
  #| msgid "Enable Mailchimp Integration"
8147
  msgid "Enable constantcontact Integration"
8148
  msgstr "Povolit integraci Mailchimp"
8149
 
8150
+ #: app/features/mec/settings.php:1320
8151
  #, fuzzy
8152
  #| msgid "Facebook Page Access Token"
8153
  msgid "Access Token"
8154
  msgstr "Token pro přístup na stránku Facebook"
8155
 
8156
+ #: app/features/mec/settings.php:1340 app/features/mec/settings.php:1355
8157
  #, fuzzy
8158
  #| msgid "Select icon"
8159
  msgid "Select List"
8160
  msgstr "Vybrat ikonu"
8161
 
8162
+ #: app/features/mec/settings.php:1356
8163
  msgid ""
8164
  "Please fill in the API key and Access Token field and save settings. after "
8165
  "that, please refresh the page and select a list."
8166
  msgstr ""
8167
 
8168
+ #: app/features/mec/settings.php:1366 app/libraries/main.php:598
8169
  #, fuzzy
8170
  #| msgid "Mailchimp Integration"
8171
  msgid "Active Campaign Integration"
8172
  msgstr "Integrace Mailchimp"
8173
 
8174
+ #: app/features/mec/settings.php:1370
8175
  #, fuzzy
8176
  #| msgid "Enable Mailchimp Integration"
8177
  msgid "Enable Active Campaign Integration"
8178
  msgstr "Povolit integraci Mailchimp"
8179
 
8180
+ #: app/features/mec/settings.php:1375
8181
  msgid "API URL"
8182
  msgstr ""
8183
 
8184
+ #: app/features/mec/settings.php:1396 app/libraries/main.php:599
8185
  #, fuzzy
8186
  #| msgid "Mailchimp Integration"
8187
  msgid "AWeber Integration"
8188
  msgstr "Integrace Mailchimp"
8189
 
8190
+ #: app/features/mec/settings.php:1400
8191
  #, fuzzy
8192
  #| msgid "Enable Mailchimp Integration"
8193
  msgid "Enable AWeber Integration"
8194
  msgstr "Povolit integraci Mailchimp"
8195
 
8196
+ #: app/features/mec/settings.php:1408
8197
  #, fuzzy, php-format
8198
  #| msgid "Third Party plugin is not installed and activated!"
8199
  msgid "%s plugin should be installed and connected to your AWeber account."
8200
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
8201
 
8202
+ #: app/features/mec/settings.php:1409
8203
  #, php-format
8204
  msgid "More information about the list ID can be found %s."
8205
  msgstr ""
8206
 
8207
+ #: app/features/mec/settings.php:1416 app/libraries/main.php:600
8208
  #, fuzzy
8209
  #| msgid "Mailchimp Integration"
8210
  msgid "MailPoet Integration"
8211
  msgstr "Integrace Mailchimp"
8212
 
8213
+ #: app/features/mec/settings.php:1420
8214
  #, fuzzy
8215
  #| msgid "Enable Mailchimp Integration"
8216
  msgid "Enable MailPoet Integration"
8217
  msgstr "Povolit integraci Mailchimp"
8218
 
8219
+ #: app/features/mec/settings.php:1426
8220
  #: app/skins/default_full_calendar/tpl.php:78
8221
  #: app/skins/full_calendar/tpl.php:126
8222
  msgid "List"
8223
  msgstr "Seznam"
8224
 
8225
+ #: app/features/mec/settings.php:1437
8226
  #, fuzzy, php-format
8227
  #| msgid "Third Party plugin is not installed and activated!"
8228
  msgid "%s plugin should be installed and activated."
8229
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
8230
 
8231
+ #: app/features/mec/settings.php:1442 app/libraries/main.php:601
8232
  #, fuzzy
8233
  #| msgid "Mailchimp Integration"
8234
  msgid "Sendfox Integration"
8235
  msgstr "Integrace Mailchimp"
8236
 
8237
+ #: app/features/mec/settings.php:1446
8238
  #, fuzzy
8239
  #| msgid "Enable Mailchimp Integration"
8240
  msgid "Enable Sendfox Integration"
8241
  msgstr "Povolit integraci Mailchimp"
8242
 
8243
+ #: app/features/mec/settings.php:1463
8244
  #, fuzzy, php-format
8245
  #| msgid "Third Party plugin is not installed and activated!"
8246
  msgid "%s plugin should be installed and connected to your Sendfox account."
8247
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
8248
 
8249
+ #: app/features/mec/single.php:38 app/libraries/main.php:605
8250
  msgid "Single Event Page"
8251
  msgstr "Stránka jedné události"
8252
 
8411
  "Alphabetic type."
8412
  msgstr ""
8413
 
8414
+ #: app/features/mec/single.php:203
8415
+ #, fuzzy
8416
+ #| msgid "Next Occurrence of Other Events"
8417
+ msgid "Change Currency Per Event"
8418
+ msgstr "Další výskyt dalších událostí"
8419
+
8420
+ #: app/features/mec/single.php:211 app/libraries/main.php:606
8421
  #, fuzzy
8422
  #| msgid "Custom Styles"
8423
  msgid "Custom Fields"
8424
  msgstr "Vlastní styly"
8425
 
8426
+ #: app/features/mec/single.php:250 app/libraries/main.php:3466
8427
  msgid "URL"
8428
  msgstr ""
8429
 
8430
+ #: app/features/mec/single.php:300
8431
  #, fuzzy
8432
  #| msgid "Don't show map in single event page"
8433
  msgid "Display Event Fields in Single Event Pages"
8434
  msgstr "Nezobrazovat mapu na jednostránkové události"
8435
 
8436
+ #: app/features/mec/single.php:311 app/features/mec/wizard.php:393
8437
  msgid "Show countdown module on event page"
8438
  msgstr "Zobrazit modul odpočítávání na stránce události"
8439
 
8440
+ #: app/features/mec/single.php:316 app/features/mec/wizard.php:397
8441
  msgid "Countdown Style"
8442
  msgstr "Styl Odpočítávání"
8443
 
8444
+ #: app/features/mec/single.php:319 app/features/mec/wizard.php:400
8445
  msgid "Plain Style"
8446
  msgstr "Prostý styl"
8447
 
8448
+ #: app/features/mec/single.php:320 app/features/mec/wizard.php:401
8449
  msgid "Flip Style"
8450
  msgstr "Styl překlopení"
8451
 
8452
+ #: app/features/mec/single.php:328 app/features/mec/single.php:335
8453
  msgid "Exceptional days (Exclude Dates)"
8454
  msgstr "Výjimečné dny (kromě dat)"
8455
 
8456
+ #: app/features/mec/single.php:332
8457
  msgid "Show exceptional days option on Add/Edit events page"
8458
  msgstr "Zobrazit možnost výjimečných dnů na stránce Přidat / Upravit události"
8459
 
8460
+ #: app/features/mec/single.php:336
8461
  msgid ""
8462
  "Using this option you can exclude certain days from event occurrence dates."
8463
  msgstr ""
8464
  "Pomocí této možnosti můžete vyloučit určité dny z dat výskytu událostí."
8465
 
8466
+ #: app/features/mec/single.php:345 app/libraries/main.php:609
8467
  msgid "Additional Organizers"
8468
  msgstr "Další organizátoři"
8469
 
8470
+ #: app/features/mec/single.php:349
8471
  msgid ""
8472
  "Show additional organizers option on Add/Edit events page and single event "
8473
  "page."
8475
  "Zobrazit další možnost organizátorů na stránce Přidat / Upravit události a "
8476
  "na stránce jedné události."
8477
 
8478
+ #: app/features/mec/single.php:356
8479
  msgid "Enable Description For Other Organizers."
8480
  msgstr ""
8481
 
8482
+ #: app/features/mec/single.php:363 app/libraries/main.php:610
8483
  msgid "Additional Locations"
8484
  msgstr "Další umístění"
8485
 
8486
+ #: app/features/mec/single.php:367
8487
  msgid ""
8488
  "Show additional locations option on Add/Edit events page and single event "
8489
  "page."
8491
  "Zobrazit další umístění na stránce Přidat / Upravit události a na stránce "
8492
  "jediné události."
8493
 
8494
+ #: app/features/mec/single.php:374
8495
  msgid "Enable Description For Other Locations."
8496
  msgstr ""
8497
 
8498
+ #: app/features/mec/single.php:381 app/libraries/main.php:611
8499
  #: app/skins/single.php:181 app/skins/single.php:448
8500
  msgid "Related Events"
8501
  msgstr "Související události"
8502
 
8503
+ #: app/features/mec/single.php:385 app/features/mec/wizard.php:411
8504
  msgid "Display related events based on taxonomy in single event page."
8505
  msgstr ""
8506
  "Zobrazte související události na základě taxonomie na stránce s jednou "
8507
  "událostí."
8508
 
8509
+ #: app/features/mec/single.php:391 app/features/mec/single.php:433
8510
  #: app/features/mec/wizard.php:415 app/features/mec/wizard.php:454
8511
  msgid "Select Taxonomies:"
8512
  msgstr "Vyberte taxonomie:"
8513
 
8514
+ #: app/features/mec/single.php:423 app/libraries/main.php:612
8515
  #, fuzzy
8516
  #| msgid "Next/Previous Buttons"
8517
  msgid "Next / Previous Events"
8518
  msgstr "Tlačítka Další / Předchozí"
8519
 
8520
+ #: app/features/mec/single.php:427 app/features/mec/wizard.php:449
8521
  #, fuzzy
8522
  #| msgid "Display related events based on taxonomy in single event page."
8523
  msgid "Display next / previous events based on taxonomy in single event page."
8525
  "Zobrazte související události na základě taxonomie na stránce s jednou "
8526
  "událostí."
8527
 
8528
+ #: app/features/mec/single.php:465 app/libraries/main.php:659
8529
  #, fuzzy
8530
  #| msgid "Next Occurrence"
8531
  msgid "Edit Per Occurrences"
8532
  msgstr "Další výskyt"
8533
 
8534
+ #: app/features/mec/single.php:469
8535
  msgid "Ability to edit some event information per occurrence"
8536
  msgstr ""
8537
 
8538
+ #: app/features/mec/single.php:475
8539
  msgid "Content only for bookers"
8540
  msgstr ""
8541
 
8542
+ #: app/features/mec/single.php:478
8543
  #, php-format
8544
  msgid ""
8545
  "if you need to show a certain content only for booker users, you can enclose "
8574
  msgstr "Výchozí písmo"
8575
 
8576
  #: app/features/mec/styling.php:54 app/features/mec/support.php:52
8577
+ #: app/libraries/main.php:861
8578
  msgid "Styling Options"
8579
  msgstr "Možnosti stylování"
8580
 
8769
  msgid "MEC Settings"
8770
  msgstr "MEC - Nastavení"
8771
 
8772
+ #: app/features/mec/support-page.php:99 app/libraries/main.php:712
8773
  msgid "Single Event"
8774
  msgstr "Jedna událost"
8775
 
9129
  msgid "Create a support ticket"
9130
  msgstr "Vytvořte lístek podpory"
9131
 
9132
+ #: app/features/mec/support.php:59 app/libraries/main.php:868
9133
  msgid "Custom CSS"
9134
  msgstr "Vlastní CSS"
9135
 
9258
  msgid "Attendee Price (for booking confirmation notification)"
9259
  msgstr "Povolit upozornění na připomenutí rezervace"
9260
 
9261
+ #: app/features/notifications.php:165
9262
  #, fuzzy
9263
  #| msgid "Booking Verification"
9264
  msgid "Booking Notification"
9265
  msgstr "Ověření rezervace"
9266
 
9267
+ #: app/features/notifications.php:186
9268
  #, fuzzy
9269
  #| msgid "Notifications"
9270
  msgid "Admin Notification"
9293
  msgid "Delete"
9294
  msgstr ""
9295
 
9296
+ #: app/features/occurrences.php:393
9297
+ #, fuzzy
9298
+ #| msgid "Fee Title"
9299
+ msgid "Page Title"
9300
+ msgstr "Název poplatku"
9301
+
9302
+ #: app/features/occurrences.php:401 app/features/schema.php:70
9303
  #, fuzzy
9304
  #| msgid "Hourly Schedule"
9305
  msgid "Scheduled"
9306
  msgstr "Hodinový rozvrh"
9307
 
9308
+ #: app/features/occurrences.php:403 app/features/schema.php:72
9309
  #, fuzzy
9310
  #| msgid "Export certain events"
9311
  msgid "For active events!"
9312
  msgstr "Export určitých událostí"
9313
 
9314
+ #: app/features/occurrences.php:408 app/features/schema.php:77
9315
  msgid "Postponed"
9316
  msgstr ""
9317
 
9318
+ #: app/features/occurrences.php:410 app/features/schema.php:79
9319
  msgid "If you postponed an event then you can use this status!"
9320
  msgstr ""
9321
 
9322
+ #: app/features/occurrences.php:415 app/features/schema.php:84
9323
  #, fuzzy
9324
  #| msgid "Canceled"
9325
  msgid "Cancelled"
9326
  msgstr "Zrušená"
9327
 
9328
+ #: app/features/occurrences.php:417 app/features/schema.php:86
9329
  msgid "If you cancelled an event then you should select this status!"
9330
  msgstr ""
9331
 
9332
+ #: app/features/occurrences.php:421 app/features/schema.php:90
9333
  #, fuzzy
9334
  #| msgid "Booking Cancellation"
9335
  msgid "Reason for Cancellation"
9336
  msgstr "Zrušení rezervace"
9337
 
9338
+ #: app/features/occurrences.php:422 app/features/schema.php:91
9339
  #, fuzzy
9340
  #| msgid "Please paste your options here"
9341
  msgid "Please write your reasons here"
9342
  msgstr "Vložte prosím své možnosti sem"
9343
 
9344
+ #: app/features/occurrences.php:425 app/features/schema.php:94
9345
  msgid "This will be displayed in Single Event and Shortcode/Calendar Pages"
9346
  msgstr ""
9347
 
9348
+ #: app/features/occurrences.php:430 app/features/schema.php:104
9349
  #, fuzzy
9350
  #| msgid "Don't show map in single event page"
9351
  msgid "Display in single event page"
9352
  msgstr "Nezobrazovat mapu na jednostránkové události"
9353
 
9354
+ #: app/features/occurrences.php:436 app/features/schema.php:110
9355
  msgid "Moved Online"
9356
  msgstr ""
9357
 
9358
+ #: app/features/occurrences.php:438 app/features/schema.php:112
9359
  msgid "For the events that moved online!"
9360
  msgstr ""
9361
 
9362
+ #: app/features/occurrences.php:442 app/features/schema.php:116
9363
  #, fuzzy
9364
  #| msgid "Invoice Link"
9365
  msgid "Online Link"
9366
  msgstr "Odkaz na fakturu"
9367
 
9368
+ #: app/features/occurrences.php:446 app/features/schema.php:120
9369
  msgid ""
9370
  "Link to join online event. If you leave it empty event link will be used."
9371
  msgstr ""
9379
  msgstr "Vložit email organizátora."
9380
 
9381
  #: app/features/organizers.php:119 app/features/organizers.php:156
9382
+ #: app/features/organizers.php:299 app/features/popup/event.php:196
9383
  msgid "Link to organizer page"
9384
  msgstr "Odkaz na stránku organizátora"
9385
 
9393
  msgid "Contact info"
9394
  msgstr "Kontaktní informace"
9395
 
9396
+ #: app/features/organizers.php:268
9397
  #, php-format
9398
  msgid "Event Main %s"
9399
  msgstr "Hlavní událost %s"
9400
 
9401
+ #: app/features/organizers.php:271 app/features/popup/event.php:164
9402
  msgid "Hide organizer"
9403
  msgstr "Skrýt organizátora"
9404
 
9405
+ #: app/features/organizers.php:272 app/features/popup/event.php:165
9406
  msgid "Insert a new organizer"
9407
  msgstr "Vložit nového organizátora"
9408
 
9409
+ #: app/features/organizers.php:280 app/features/popup/event.php:173
9410
  msgid "Choose one of saved organizers or insert new one below."
9411
  msgstr "Vyberte některého z uložených organizátorů nebo vložte nového."
9412
 
9413
+ #: app/features/organizers.php:291 app/features/popup/event.php:186
9414
  msgid "Phone number."
9415
  msgstr "Telefonní číslo."
9416
 
9417
+ #: app/features/organizers.php:292 app/features/popup/event.php:187
9418
  msgid "eg. +1 (234) 5678"
9419
  msgstr "např. + 420 123 456 789"
9420
 
9421
+ #: app/features/organizers.php:295 app/features/popup/event.php:191
9422
  msgid "Email address."
9423
  msgstr "Emailová adresa."
9424
 
9425
+ #: app/features/organizers.php:296 app/features/popup/event.php:192
9426
  msgid "eg. john@smith.com"
9427
  msgstr "např. info@itreseni.cz"
9428
 
9429
+ #: app/features/organizers.php:300 app/features/popup/event.php:197
9430
  msgid "eg. https://webnus.net"
9431
  msgstr "např. https://webnus.net"
9432
 
9433
+ #: app/features/organizers.php:320 app/libraries/main.php:6719
9434
+ #: app/libraries/main.php:6766 app/skins/single.php:1344
9435
  msgid "Other Organizers"
9436
  msgstr "Další organizátoři"
9437
 
9438
+ #: app/features/organizers.php:322
9439
  msgid ""
9440
  "You can select extra organizers in addition to main organizer if you like."
9441
  msgstr ""
9442
  "Pokud chcete, můžete kromě hlavního organizátora vybrat další organizátory."
9443
 
9444
+ #: app/features/organizers.php:331 app/features/organizers.php:339
9445
+ #: app/libraries/main.php:3347 app/libraries/main.php:3377
9446
+ #: app/libraries/main.php:3406 app/libraries/main.php:3435
9447
+ #: app/libraries/main.php:3465 app/libraries/main.php:3495
9448
+ #: app/libraries/main.php:3524 app/libraries/main.php:3554
9449
+ #: app/libraries/main.php:3584 app/libraries/main.php:3614
9450
+ #: app/libraries/main.php:3637 app/libraries/main.php:3684
9451
+ #: app/libraries/main.php:3731 app/libraries/main.php:3788
9452
+ #: app/libraries/main.php:3837
9453
  msgid "Sort"
9454
  msgstr "Seřadit"
9455
 
9633
  msgid "#"
9634
  msgstr "#"
9635
 
9636
+ #: app/features/profile/profile.php:39 app/libraries/main.php:3812
9637
  msgid "Status"
9638
  msgstr "Stav"
9639
 
9640
+ #: app/features/profile/profile.php:42 app/libraries/main.php:2781
9641
  msgid "Attendees"
9642
  msgstr "Účastníci"
9643
 
9712
 
9713
  #: app/features/speakers.php:135 app/features/speakers.php:208
9714
  #: app/skins/single.php:1314 app/skins/single.php:1377
9715
+ #: app/skins/single/default.php:250 app/skins/single/default.php:321
9716
+ #: app/skins/single/default.php:489 app/skins/single/default.php:560
9717
  #: app/skins/single/m1.php:126 app/skins/single/m1.php:181
9718
  #: app/skins/single/m2.php:49 app/skins/single/m2.php:104
9719
+ #: app/skins/single/modern.php:75 app/skins/single/modern.php:134
9720
  msgid "Website"
9721
  msgstr "Webová stránka"
9722
 
9786
  msgid "Please %s/%s in order to see your own events."
9787
  msgstr "Prosím %s/%s za účelem odeslání nových událostí."
9788
 
9789
+ #: app/features/wc.php:103 app/libraries/notifications.php:1362
9790
+ #: app/libraries/notifications.php:1377 app/libraries/notifications.php:1388
9791
+ #: app/libraries/notifications.php:1678 app/libraries/notifications.php:1679
9792
  #, php-format
9793
  msgid "%s to %s"
9794
  msgstr ""
9836
  msgid "Upgrade"
9837
  msgstr "Upgrade"
9838
 
9839
+ #: app/libraries/factory.php:382
9840
  msgid "day"
9841
  msgstr "den"
9842
 
9843
+ #: app/libraries/factory.php:383 app/modules/countdown/details.php:142
9844
  #: app/skins/available_spot/tpl.php:138 app/skins/countdown/tpl.php:120
9845
  #: app/skins/countdown/tpl.php:166 app/skins/countdown/tpl.php:217
9846
  msgid "days"
9847
  msgstr "dny"
9848
 
9849
+ #: app/libraries/factory.php:384
9850
  msgid "hour"
9851
  msgstr "hodina"
9852
 
9853
+ #: app/libraries/factory.php:385 app/modules/countdown/details.php:149
9854
  #: app/skins/available_spot/tpl.php:142 app/skins/countdown/tpl.php:126
9855
  #: app/skins/countdown/tpl.php:172 app/skins/countdown/tpl.php:223
9856
  msgid "hours"
9857
  msgstr "hodiny"
9858
 
9859
+ #: app/libraries/factory.php:386
9860
  msgid "minute"
9861
  msgstr "minuta"
9862
 
9863
+ #: app/libraries/factory.php:387 app/modules/countdown/details.php:156
9864
  #: app/skins/available_spot/tpl.php:146 app/skins/countdown/tpl.php:132
9865
  #: app/skins/countdown/tpl.php:178 app/skins/countdown/tpl.php:229
9866
  msgid "minutes"
9867
  msgstr "minuty"
9868
 
9869
+ #: app/libraries/factory.php:388
9870
  msgid "second"
9871
  msgstr "vteřina"
9872
 
9873
+ #: app/libraries/factory.php:389 app/modules/countdown/details.php:163
9874
  #: app/skins/available_spot/tpl.php:150 app/skins/countdown/tpl.php:138
9875
  #: app/skins/countdown/tpl.php:184 app/skins/countdown/tpl.php:235
9876
  msgid "seconds"
9877
  msgstr "vteřiny"
9878
 
9879
+ #: app/libraries/factory.php:462
9880
  msgid "MEC Single Sidebar"
9881
  msgstr "MEC Postranní panel"
9882
 
9883
+ #: app/libraries/factory.php:463
9884
  msgid "Custom sidebar for single and modal page of MEC."
9885
  msgstr "Vlastní postranní panel pro jednu a modální stránku MEC."
9886
 
9887
+ #: app/libraries/factory.php:1205
9888
  msgid "Notice:"
9889
  msgstr ""
9890
 
9891
+ #: app/libraries/factory.php:1206
9892
  msgid "This update includes only bug fixes."
9893
  msgstr ""
9894
 
9931
  msgid "New Day"
9932
  msgstr "Nový den"
9933
 
9934
+ #: app/libraries/main.php:362 app/libraries/main.php:2140
9935
+ #: app/libraries/main.php:2165
9936
  msgid "Agenda View"
9937
  msgstr "Zobrazení agendy"
9938
 
9939
+ #: app/libraries/main.php:363 app/libraries/main.php:2131
9940
+ #: app/libraries/main.php:2156
9941
  msgid "Full Calendar"
9942
  msgstr "Plný kalendář"
9943
 
9944
+ #: app/libraries/main.php:365 app/libraries/main.php:2133
9945
+ #: app/libraries/main.php:2158
9946
  msgid "Calendar/Monthly View"
9947
  msgstr "Kalendář / zobrazení měsíce"
9948
 
9949
+ #: app/libraries/main.php:368 app/libraries/main.php:2136
9950
+ #: app/libraries/main.php:2161
9951
  msgid "Timetable View"
9952
  msgstr "Zobrazení rozvrhu"
9953
 
9954
+ #: app/libraries/main.php:369 app/libraries/main.php:2137
9955
+ #: app/libraries/main.php:2162
9956
  msgid "Masonry View"
9957
  msgstr "Zobrazení zdi"
9958
 
9959
+ #: app/libraries/main.php:370 app/libraries/main.php:2141
9960
+ #: app/libraries/main.php:2166
9961
  msgid "Map View"
9962
  msgstr "Zobrazení mapy"
9963
 
9988
  msgid "Timeline View"
9989
  msgstr "Zobrazení rozvrhu"
9990
 
9991
+ #: app/libraries/main.php:436 app/libraries/main.php:6693
9992
+ #: app/libraries/main.php:6747
9993
  msgid "SU"
9994
  msgstr "NE"
9995
 
9996
+ #: app/libraries/main.php:437 app/libraries/main.php:6694
9997
+ #: app/libraries/main.php:6748
9998
  msgid "MO"
9999
  msgstr "PO"
10000
 
10001
+ #: app/libraries/main.php:438 app/libraries/main.php:6695
10002
+ #: app/libraries/main.php:6749
10003
  msgid "TU"
10004
  msgstr "ÚT"
10005
 
10006
+ #: app/libraries/main.php:439 app/libraries/main.php:6696
10007
+ #: app/libraries/main.php:6750
10008
  msgid "WE"
10009
  msgstr "ST"
10010
 
10011
+ #: app/libraries/main.php:440 app/libraries/main.php:6697
10012
+ #: app/libraries/main.php:6751
10013
  msgid "TH"
10014
  msgstr "ČT"
10015
 
10016
+ #: app/libraries/main.php:441 app/libraries/main.php:6698
10017
+ #: app/libraries/main.php:6752
10018
  msgid "FR"
10019
  msgstr "PÁ"
10020
 
10021
+ #: app/libraries/main.php:442 app/libraries/main.php:6699
10022
+ #: app/libraries/main.php:6753
10023
  msgid "SA"
10024
  msgstr "SO"
10025
 
10026
+ #: app/libraries/main.php:622
10027
  msgid "Upload Field"
10028
  msgstr "Nahrát pole"
10029
 
10030
+ #: app/libraries/main.php:660
10031
  msgid "Only For Bookers"
10032
  msgstr ""
10033
 
10034
+ #: app/libraries/main.php:781
10035
  msgid "Modules"
10036
  msgstr "Moduly"
10037
 
10038
+ #: app/libraries/main.php:952
10039
  msgid "New Addons For MEC! Now Customize MEC in Elementor"
10040
  msgstr "Nové doplňky pro MEC! Nyní přizpůsobte MEC v Elementoru"
10041
 
10042
+ #: app/libraries/main.php:959
10043
  msgid ""
10044
  "The time has come at last, and the new practical add-ons for MEC have been "
10045
  "released. This is a revolution in the world of Event Calendars. We have "
10050
  "revoluce ve světě kalendářů událostí. Poskytli jsme vám širokou škálu funkcí "
10051
  "pouze tím, že máme 4 doplňky, viz níže:"
10052
 
10053
+ #: app/libraries/main.php:961
10054
  msgid ""
10055
  "<strong>WooCommerce Integration:</strong> You can now purchase ticket (as "
10056
  "products) and Woo products at the same time."
10058
  "<strong>Integrace WooCommerce:</strong> Nyní si můžete zakoupit lístek (jako "
10059
  "produkty) a produkty Woo současně."
10060
 
10061
+ #: app/libraries/main.php:962
10062
  msgid ""
10063
  "<strong>Event API:</strong> display your events (shortcodes/single event) on "
10064
  "other websites without MEC. Use JSON output features to make your Apps "
10068
  "událost) na jiných webech bez MEC. Použijte výstupní funkce JSON, aby vaše "
10069
  "aplikace byly kompatibilní s MEC."
10070
 
10071
+ #: app/libraries/main.php:963
10072
  msgid ""
10073
  "<strong>Multisite Event Sync:</strong> Sync events between your subsites and "
10074
  "main websites. Changes in the main one will be inherited by the subsites. "
10075
  "you can set these up in the admin panel."
10076
  msgstr ""
10077
 
10078
+ #: app/libraries/main.php:964
10079
  msgid ""
10080
  "<strong>User Dashboard:</strong> Create exclusive pages for users. These "
10081
  "pages can contain ticket purchase information, information about registered "
10082
  "events. Users can now log in to purchase tickets."
10083
  msgstr ""
10084
 
10085
+ #: app/libraries/main.php:966
10086
  msgid "find out more"
10087
  msgstr ""
10088
 
10089
+ #: app/libraries/main.php:1857
10090
  msgid "Events at this location"
10091
  msgstr "Události na tomto místě"
10092
 
10093
+ #: app/libraries/main.php:1857
10094
  msgid "Event at this location"
10095
  msgstr "Událost na tomto místě"
10096
 
10097
+ #: app/libraries/main.php:1909
10098
  msgid "Facebook"
10099
  msgstr "Facebook"
10100
 
10101
+ #: app/libraries/main.php:1910
10102
  msgid "Twitter"
10103
  msgstr "Twitter"
10104
 
10105
+ #: app/libraries/main.php:1911 app/libraries/main.php:1968
10106
  msgid "Linkedin"
10107
  msgstr "Linkedin"
10108
 
10109
+ #: app/libraries/main.php:1912 app/libraries/main.php:2004
10110
  msgid "VK"
10111
  msgstr "VK"
10112
 
10113
+ #: app/libraries/main.php:1913
10114
  msgid "Tumblr"
10115
  msgstr ""
10116
 
10117
+ #: app/libraries/main.php:1914
10118
  msgid "Pinterest"
10119
  msgstr ""
10120
 
10121
+ #: app/libraries/main.php:1915
10122
  msgid "Flipboard"
10123
  msgstr ""
10124
 
10125
+ #: app/libraries/main.php:1916
10126
  #, fuzzy
10127
  #| msgid "Tickets"
10128
  msgid "GetPocket"
10129
  msgstr "Vstupenky"
10130
 
10131
+ #: app/libraries/main.php:1917
10132
  msgid "Reddit"
10133
  msgstr ""
10134
 
10135
+ #: app/libraries/main.php:1918
10136
  msgid "WhatsApp"
10137
  msgstr ""
10138
 
10139
+ #: app/libraries/main.php:1919
10140
  msgid "Telegram"
10141
  msgstr ""
10142
 
10143
+ #: app/libraries/main.php:1938
10144
  msgid "Share on Facebook"
10145
  msgstr "Sdílet na Facebooku"
10146
 
10147
+ #: app/libraries/main.php:1953
10148
  msgid "Tweet"
10149
  msgstr "Tweet"
10150
 
10151
+ #: app/libraries/main.php:2019
10152
  #, fuzzy
10153
  #| msgid "Share on Facebook"
10154
  msgid "Share on Tumblr"
10155
  msgstr "Sdílet na Facebooku"
10156
 
10157
+ #: app/libraries/main.php:2035
10158
  msgid "Share on Pinterest"
10159
  msgstr ""
10160
 
10161
+ #: app/libraries/main.php:2051
10162
  #, fuzzy
10163
  #| msgid "Share on Facebook"
10164
  msgid "Share on Flipboard"
10165
  msgstr "Sdílet na Facebooku"
10166
 
10167
+ #: app/libraries/main.php:2069
10168
  #, fuzzy
10169
  #| msgid "Share on Facebook"
10170
  msgid "Share on GetPocket"
10171
  msgstr "Sdílet na Facebooku"
10172
 
10173
+ #: app/libraries/main.php:2085
10174
  #, fuzzy
10175
  #| msgid "Share on Facebook"
10176
  msgid "Share on Reddit"
10177
  msgstr "Sdílet na Facebooku"
10178
 
10179
+ #: app/libraries/main.php:2101
10180
  msgid "Share on Telegram"
10181
  msgstr ""
10182
 
10183
+ #: app/libraries/main.php:2119
10184
  msgid "Share on WhatsApp"
10185
  msgstr ""
10186
 
10187
+ #: app/libraries/main.php:2142 app/libraries/main.php:2167
10188
  msgid "Custom Shortcode"
10189
  msgstr "Uživatelské zkrácené kódy"
10190
 
10191
+ #: app/libraries/main.php:2516 app/libraries/main.php:2527
10192
  #, fuzzy
10193
  #| msgid "The events are imported successfully!"
10194
  msgid "Your booking has been verified successfully!"
10195
  msgstr "Události byly úspěšně importovány!"
10196
 
10197
+ #: app/libraries/main.php:2521
10198
  msgid "Your booking already verified!"
10199
  msgstr "Vaše rezervace již byla ověřena!"
10200
 
10201
+ #: app/libraries/main.php:2528
10202
  msgid "Your booking cannot verify!"
10203
  msgstr "Vaši rezervaci nelze ověřit!"
10204
 
10205
+ #: app/libraries/main.php:2550 app/libraries/main.php:2607
10206
  msgid "Your booking successfully canceled."
10207
  msgstr "Vaše rezervace byla úspěšně zrušena."
10208
 
10209
+ #: app/libraries/main.php:2555
10210
  msgid "Your booking already canceled!"
10211
  msgstr "Vaše rezervace již byla zrušena!"
10212
 
10213
+ #: app/libraries/main.php:2567
10214
  #, fuzzy
10215
  #| msgid "The event is finished."
10216
  msgid "The event is already finished!"
10217
  msgstr "Událost je ukončena."
10218
 
10219
+ #: app/libraries/main.php:2588
10220
  msgid "The cancelation window is not started yet."
10221
  msgstr ""
10222
 
10223
+ #: app/libraries/main.php:2600
10224
  msgid "The cancelation window is passed."
10225
  msgstr ""
10226
 
10227
+ #: app/libraries/main.php:2608
10228
  msgid "Your booking cannot be canceled."
10229
  msgstr "Vaši rezervaci nelze zrušit."
10230
 
10231
+ #: app/libraries/main.php:2612
10232
  msgid "You canceled the payment successfully."
10233
  msgstr "Platbu jste úspěšně zrušili."
10234
 
10235
+ #: app/libraries/main.php:2616
10236
  msgid "You returned from payment gateway successfully."
10237
  msgstr "Úspěšně jste se vrátili z platební brány."
10238
 
10239
+ #: app/libraries/main.php:2635
10240
  msgid "Cannot find the invoice!"
10241
  msgstr "Fakturu nelze najít!"
10242
 
10243
+ #: app/libraries/main.php:2635
10244
  msgid "Invoice is invalid."
10245
  msgstr "Faktura je neplatná."
10246
 
10247
+ #: app/libraries/main.php:2655
10248
  #, fuzzy
10249
  #| msgid ""
10250
  #| "Your booking still is not confirmed. You able download it after "
10254
  msgstr ""
10255
  "Vaše rezervace stále není potvrzena. Můžete si ji stáhnout po potvrzení!"
10256
 
10257
+ #: app/libraries/main.php:2655
10258
  msgid "Booking Not Confirmed."
10259
  msgstr "Rezervace nebyla potvrzena."
10260
 
10261
+ #: app/libraries/main.php:2661
10262
  msgid "Cannot find the booking!"
10263
  msgstr "Nemohu najít rezervaci!"
10264
 
10265
+ #: app/libraries/main.php:2661
10266
  msgid "Booking is invalid."
10267
  msgstr "Rezervace není platná."
10268
 
10269
+ #: app/libraries/main.php:2669
10270
  #, fuzzy
10271
  #| msgid "Sorry! You don't have access to modify this event."
10272
  msgid "You don't have access to view this invoice!"
10273
  msgstr "Promiňte! Nemáte přístup k úpravě této události."
10274
 
10275
+ #: app/libraries/main.php:2669
10276
  #, fuzzy
10277
  #| msgid "Invoice is invalid."
10278
  msgid "Key is invalid."
10279
  msgstr "Faktura je neplatná."
10280
 
10281
+ #: app/libraries/main.php:2702
10282
  #, php-format
10283
  msgid "%s Invoice"
10284
  msgstr "%s Faktura"
10285
 
10286
+ #: app/libraries/main.php:2738
10287
  #, fuzzy
10288
  #| msgid "Date and Time"
10289
  msgid "Date & Time"
10290
  msgstr "Datum a čas"
10291
 
10292
+ #: app/libraries/main.php:2755
10293
  #, fuzzy
10294
  #| msgid "Booking Price"
10295
  msgid "Booking Fields"
10296
  msgstr "Cena rezervace"
10297
 
10298
+ #: app/libraries/main.php:2827
10299
  msgid "Billing"
10300
  msgstr "Fakturace"
10301
 
10302
+ #: app/libraries/main.php:2839
10303
  #, fuzzy
10304
  #| msgid "Coupons"
10305
  msgid "Coupon Code"
10306
  msgstr "Kupóny"
10307
 
10308
+ #: app/libraries/main.php:2844
10309
  msgid "Total"
10310
  msgstr "Celkem"
10311
 
10312
+ #: app/libraries/main.php:2851
10313
  #, fuzzy
10314
  #| msgid "Payment Gateways"
10315
  msgid "Payment"
10316
  msgstr "Platební brány"
10317
 
10318
+ #: app/libraries/main.php:2868
10319
  #, fuzzy
10320
  #| msgid "Payment Gateways"
10321
  msgid "Payment Time"
10322
  msgstr "Platební brány"
10323
 
10324
+ #: app/libraries/main.php:3011
10325
  msgid "Request is not valid."
10326
  msgstr "Požadavek není platný."
10327
 
10328
+ #: app/libraries/main.php:3011
10329
  msgid "iCal export stopped!"
10330
  msgstr "iCal export byl zastaven!"
10331
 
10332
+ #: app/libraries/main.php:3354 app/libraries/main.php:3384
10333
+ #: app/libraries/main.php:3413 app/libraries/main.php:3442
10334
+ #: app/libraries/main.php:3472 app/libraries/main.php:3502
10335
+ #: app/libraries/main.php:3531 app/libraries/main.php:3561
10336
+ #: app/libraries/main.php:3591 app/libraries/main.php:3644
10337
+ #: app/libraries/main.php:3691 app/libraries/main.php:3738
10338
+ #: app/libraries/main.php:3795
10339
  msgid "Required Field"
10340
  msgstr "Požadovaná pole"
10341
 
10342
+ #: app/libraries/main.php:3360 app/libraries/main.php:3390
10343
+ #: app/libraries/main.php:3419 app/libraries/main.php:3448
10344
+ #: app/libraries/main.php:3478 app/libraries/main.php:3508
10345
+ #: app/libraries/main.php:3537 app/libraries/main.php:3567
10346
+ #: app/libraries/main.php:3597 app/libraries/main.php:3650
10347
+ #: app/libraries/main.php:3697 app/libraries/main.php:3751
10348
+ #: app/libraries/main.php:3801
10349
  msgid "Insert a label for this field"
10350
  msgstr "Vložte štítek pro toto pole"
10351
 
10352
+ #: app/libraries/main.php:3620
10353
  msgid "HTML and shortcode are allowed."
10354
  msgstr "HTML a zkrácené kódy jsou povoleny."
10355
 
10356
+ #: app/libraries/main.php:3664 app/libraries/main.php:3711
10357
+ #: app/libraries/main.php:3765
10358
  msgid "Option"
10359
  msgstr "Možnost"
10360
 
10361
+ #: app/libraries/main.php:3745
10362
  msgid "Consider the first item as a placeholder"
10363
  msgstr ""
10364
 
10365
+ #: app/libraries/main.php:3801
10366
  #, php-format
10367
  msgid "Instead of %s, the page title with a link will be show."
10368
  msgstr "Místo%s se zobrazí název stránky s odkazem."
10369
 
10370
+ #: app/libraries/main.php:3803
10371
  msgid "Agreement Page"
10372
  msgstr "Stránka smlouvy"
10373
 
10374
+ #: app/libraries/main.php:3814
10375
  msgid "Checked by default"
10376
  msgstr "Ve výchozím nastavení zaškrtnuto"
10377
 
10378
+ #: app/libraries/main.php:3815
10379
  msgid "Unchecked by default"
10380
  msgstr "Ve výchozím nastavení není zaškrtnuto"
10381
 
10382
+ #: app/libraries/main.php:3839
10383
  msgid "Insert a label for this option"
10384
  msgstr "Vložte štítek pro tuto možnost"
10385
 
10386
+ #: app/libraries/main.php:3853
10387
  msgid "Free"
10388
  msgstr "Zdarma"
10389
 
10390
+ #: app/libraries/main.php:4593 app/libraries/main.php:7028
10391
  msgid "M.E. Calender"
10392
  msgstr "M.E. Kalendář"
10393
 
10394
+ #: app/libraries/main.php:4749
10395
  #, php-format
10396
  msgid "Copy of %s"
10397
  msgstr "Kopie %s"
10398
 
10399
+ #: app/libraries/main.php:5683
10400
  msgid "Booked an event."
10401
  msgstr "Událost byla rezervována."
10402
 
10403
+ #: app/libraries/main.php:5724
10404
  #, php-format
10405
  msgid "%s booked %s event."
10406
  msgstr "%s zarezervoval %s událost."
10407
 
10408
+ #: app/libraries/main.php:6676 app/libraries/main.php:6730
10409
  msgid "Taxonomies"
10410
  msgstr "Taxonomie"
10411
 
10412
  # Mrknout na kontext
10413
+ #: app/libraries/main.php:6678 app/libraries/main.php:6732
10414
  msgid "Category Plural Label"
10415
  msgstr "Štítek množné kategorie"
10416
 
10417
  # Mrknout na kontext
10418
+ #: app/libraries/main.php:6679 app/libraries/main.php:6733
10419
  msgid "Category Singular Label"
10420
  msgstr "Štítek jednotné kategorie"
10421
 
10422
+ #: app/libraries/main.php:6680 app/libraries/main.php:6734
10423
  msgid "Label Plural Label"
10424
  msgstr "Štítek množného štítku"
10425
 
10426
+ #: app/libraries/main.php:6681 app/libraries/main.php:6735
10427
  msgid "Label Singular Label"
10428
  msgstr "Štítek jednotného štítku"
10429
 
10430
+ #: app/libraries/main.php:6681 app/libraries/main.php:6735
10431
  msgid "label"
10432
  msgstr "štítek"
10433
 
10434
+ #: app/libraries/main.php:6682 app/libraries/main.php:6736
10435
  msgid "Location Plural Label"
10436
  msgstr "Štítek množného umístění"
10437
 
10438
+ #: app/libraries/main.php:6683 app/libraries/main.php:6737
10439
  msgid "Location Singular Label"
10440
  msgstr "Štítek jednotného umístění"
10441
 
10442
+ #: app/libraries/main.php:6684 app/libraries/main.php:6738
10443
  msgid "Organizer Plural Label"
10444
  msgstr "Štítek množného organizátora"
10445
 
10446
+ #: app/libraries/main.php:6685 app/libraries/main.php:6739
10447
  msgid "Organizer Singular Label"
10448
  msgstr "Štítek jednotného organizátora"
10449
 
10450
+ #: app/libraries/main.php:6686 app/libraries/main.php:6740
10451
  msgid "Speaker Plural Label"
10452
  msgstr "Štítek množného řečníka"
10453
 
10454
+ #: app/libraries/main.php:6687 app/libraries/main.php:6741
10455
  msgid "Speaker Singular Label"
10456
  msgstr "Štítek jednotného řečníka"
10457
 
10458
+ #: app/libraries/main.php:6693 app/libraries/main.php:6747
10459
  msgid "Sunday abbreviation"
10460
  msgstr "Neděle zkratka"
10461
 
10462
+ #: app/libraries/main.php:6694 app/libraries/main.php:6748
10463
  msgid "Monday abbreviation"
10464
  msgstr "Pondělí zkratka"
10465
 
10466
+ #: app/libraries/main.php:6695 app/libraries/main.php:6749
10467
  msgid "Tuesday abbreviation"
10468
  msgstr "Úterý zkratka"
10469
 
10470
+ #: app/libraries/main.php:6696 app/libraries/main.php:6750
10471
  msgid "Wednesday abbreviation"
10472
  msgstr "Středa zkratka"
10473
 
10474
+ #: app/libraries/main.php:6697 app/libraries/main.php:6751
10475
  msgid "Thursday abbreviation"
10476
  msgstr "Čtvrtek zkratka"
10477
 
10478
+ #: app/libraries/main.php:6698 app/libraries/main.php:6752
10479
  msgid "Friday abbreviation"
10480
  msgstr "Pátek zkratka"
10481
 
10482
+ #: app/libraries/main.php:6699 app/libraries/main.php:6753
10483
  msgid "Saturday abbreviation"
10484
  msgstr "Sobota zkratka"
10485
 
10486
+ #: app/libraries/main.php:6703 app/libraries/main.php:6757
10487
  msgid "Others"
10488
  msgstr "Další"
10489
 
10490
+ #: app/libraries/main.php:6705
10491
  msgid "Booking Success Message"
10492
  msgstr "Zpráva o úspěchu rezervace"
10493
 
10494
+ #: app/libraries/main.php:6705
10495
  #, fuzzy
10496
  #| msgid ""
10497
  #| "Thanks for your booking. Your tickets booked, booking verification might "
10503
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
10504
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
10505
 
10506
+ #: app/libraries/main.php:6706
10507
  #, fuzzy
10508
  #| msgid "Booking Success Message"
10509
  msgid "Booking Restriction Message 1"
10510
  msgstr "Zpráva o úspěchu rezervace"
10511
 
10512
+ #: app/libraries/main.php:6706
10513
  #, php-format
10514
  msgid ""
10515
  "You selected %s tickets to book but maximum number of tikets per user is %s "
10516
  "tickets."
10517
  msgstr ""
10518
 
10519
+ #: app/libraries/main.php:6707
10520
  #, fuzzy
10521
  #| msgid "Booking Success Message"
10522
  msgid "Booking Restriction Message 2"
10523
  msgstr "Zpráva o úspěchu rezervace"
10524
 
10525
+ #: app/libraries/main.php:6707
10526
  #, php-format
10527
  msgid ""
10528
  "You booked %s tickets till now but maximum number of tickets per user is %s "
10529
  "tickets."
10530
  msgstr ""
10531
 
10532
+ #: app/libraries/main.php:6708
10533
  #, fuzzy
10534
  #| msgid "Booking Success Message"
10535
  msgid "Booking IP Restriction Message"
10536
  msgstr "Zpráva o úspěchu rezervace"
10537
 
10538
+ #: app/libraries/main.php:6708
10539
  #, php-format
10540
  msgid "Maximum allowed number of tickets that you can book is %s."
10541
  msgstr ""
10542
 
10543
+ #: app/libraries/main.php:6709
10544
  #, fuzzy
10545
  #| msgid "Booking Options"
10546
  msgid "Booking Button"
10547
  msgstr "Možnosti rezervace"
10548
 
10549
+ #: app/libraries/main.php:6709
10550
  #, fuzzy
10551
  #| msgid "Booking Form"
10552
  msgid "Book Now"
10553
  msgstr "Rezervační formulář"
10554
 
10555
+ #: app/libraries/main.php:6710 app/libraries/main.php:6759
10556
  #: app/widgets/single.php:133
10557
  msgid "Register Button"
10558
  msgstr "Registrační tlačítko"
10559
 
10560
+ #: app/libraries/main.php:6710 app/libraries/main.php:6759
10561
  #: app/skins/available_spot/tpl.php:199 app/skins/carousel/render.php:101
10562
  #: app/skins/carousel/render.php:140 app/skins/grid/render.php:93
10563
  #: app/skins/grid/render.php:152 app/skins/grid/render.php:213
10564
  #: app/skins/grid/render.php:236 app/skins/list/render.php:85
10565
  #: app/skins/list/render.php:211 app/skins/masonry/render.php:142
10566
  #: app/skins/single.php:508 app/skins/single.php:1247 app/skins/single.php:1254
10567
+ #: app/skins/single/default.php:340 app/skins/single/default.php:342
10568
+ #: app/skins/single/default.php:579 app/skins/single/default.php:581
10569
  #: app/skins/single/m1.php:143 app/skins/single/m1.php:145
10570
  #: app/skins/single/m2.php:66 app/skins/single/m2.php:68
10571
  #: app/skins/single/modern.php:100 app/skins/single/modern.php:102
10575
  msgid "REGISTER"
10576
  msgstr "REGISTROVAT"
10577
 
10578
+ #: app/libraries/main.php:6711 app/libraries/main.php:6760
10579
  msgid "View Detail Button"
10580
  msgstr "Tlačítko Zobrazit detail"
10581
 
10582
+ #: app/libraries/main.php:6711 app/libraries/main.php:6760
10583
  #: app/skins/carousel/render.php:101 app/skins/carousel/render.php:140
10584
  #: app/skins/grid/render.php:93 app/skins/grid/render.php:152
10585
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:236
10591
  msgid "View Detail"
10592
  msgstr "Zobrazit detail"
10593
 
10594
+ #: app/libraries/main.php:6712 app/libraries/main.php:6761
10595
  msgid "Event Detail Button"
10596
  msgstr "Tlačítko Detail události"
10597
 
10598
+ #: app/libraries/main.php:6712 app/libraries/main.php:6761
10599
  msgid "Event Detail"
10600
  msgstr "Zobrazit událost"
10601
 
10602
+ #: app/libraries/main.php:6717
10603
  msgid "Ticket (Singular)"
10604
  msgstr "Vstupenka (Jednotné)"
10605
 
10606
+ #: app/libraries/main.php:6718
10607
  msgid "Tickets (Plural)"
10608
  msgstr "Vstupenky (Množné)"
10609
 
10610
+ #: app/libraries/main.php:6876
10611
  msgid "EventON"
10612
  msgstr "EventON"
10613
 
10614
+ #: app/libraries/main.php:6877
10615
  msgid "The Events Calendar"
10616
  msgstr "The Events Calendar"
10617
 
10618
+ #: app/libraries/main.php:6878
10619
  msgid "Events Schedule WP Plugin"
10620
  msgstr "Events Schedule WP Plugin"
10621
 
10622
+ #: app/libraries/main.php:6879
10623
  msgid "Calendarize It"
10624
  msgstr "Calendarize It"
10625
 
10626
+ #: app/libraries/main.php:6880
10627
  #, fuzzy
10628
  #| msgid "Event Speakers"
10629
  msgid "Event Espresso"
10630
  msgstr "Řečník události"
10631
 
10632
+ #: app/libraries/main.php:6881
10633
  #, fuzzy
10634
  #| msgid "Event Repeating (Recurring events)"
10635
  msgid "Events Manager (Recurring)"
10636
  msgstr "Opakování události (opakující se události)"
10637
 
10638
+ #: app/libraries/main.php:6882
10639
  #, fuzzy
10640
  #| msgid "Modern Events Calendar (Lite)"
10641
  msgid "Events Manager (Single)"
10642
  msgstr "Modern Events Calendar (Lite)"
10643
 
10644
+ #: app/libraries/main.php:6883
10645
  #, fuzzy
10646
  #| msgid "Modern Events Calendar (Lite)"
10647
  msgid "WP Event Manager"
10648
  msgstr "Modern Events Calendar (Lite)"
10649
 
10650
+ #: app/libraries/main.php:7015
10651
  msgid "Waiting"
10652
  msgstr "Čekající"
10653
 
10654
+ #: app/libraries/main.php:7058
10655
  #, fuzzy
10656
  #| msgid "Sunday"
10657
  msgid "Sun"
10658
  msgstr "Neděle"
10659
 
10660
+ #: app/libraries/main.php:7058
10661
  #, fuzzy
10662
  #| msgid "Monday"
10663
  msgid "Mon"
10664
  msgstr "Pondělí"
10665
 
10666
+ #: app/libraries/main.php:7058
10667
  #, fuzzy
10668
  #| msgid "Tel"
10669
  msgid "Tue"
10670
  msgstr "Tel"
10671
 
10672
+ #: app/libraries/main.php:7058
10673
  msgid "Wed"
10674
  msgstr ""
10675
 
10676
+ #: app/libraries/main.php:7058
10677
  msgid "Thu"
10678
  msgstr ""
10679
 
10680
+ #: app/libraries/main.php:7058
10681
  #, fuzzy
10682
  #| msgid "Friday"
10683
  msgid "Fri"
10684
  msgstr "Pátek"
10685
 
10686
+ #: app/libraries/main.php:7058
10687
  #, fuzzy
10688
  #| msgid "Start"
10689
  msgid "Sat"
10690
  msgstr "Začátek"
10691
 
10692
+ #: app/libraries/main.php:7251 app/libraries/render.php:82
10693
  #: app/libraries/render.php:444
10694
  msgid "Skin controller does not exist."
10695
  msgstr "Ovladač vzhledu neexistuje."
10696
 
10697
+ #: app/libraries/main.php:7476
10698
  msgid "Sold Out"
10699
  msgstr "Vyprodáno"
10700
 
10701
+ #: app/libraries/main.php:7496
10702
  #, fuzzy
10703
  #| msgid "Ticket"
10704
  msgid "Last Few Tickets"
10705
  msgstr "Vstupenka"
10706
 
10707
+ #: app/libraries/main.php:7766
10708
  #, fuzzy
10709
  #| msgid "Upcoming Events"
10710
  msgid "Ongoing"
10711
  msgstr "Nadcházející události"
10712
 
10713
+ #: app/libraries/main.php:7832 app/libraries/main.php:7849
10714
  #, fuzzy
10715
  #| msgid "minutes"
10716
  msgid "Minutes"
10717
  msgstr "minuty"
10718
 
10719
+ #: app/libraries/main.php:7854
10720
  msgid "AM / PM"
10721
  msgstr ""
10722
 
10723
+ #: app/libraries/main.php:7855
10724
  msgid "AM"
10725
  msgstr "dop."
10726
 
10727
+ #: app/libraries/main.php:7856
10728
  msgid "PM"
10729
  msgstr "odp."
10730
 
10731
+ #: app/libraries/main.php:7864
10732
  msgid "Ongoing..."
10733
  msgstr ""
10734
 
10735
+ #: app/libraries/main.php:7865
10736
  #, fuzzy
10737
  #| msgid "Expired Events"
10738
  msgid "Expired!"
10739
  msgstr "Události vypršely"
10740
 
10741
+ #: app/libraries/main.php:8140
10742
  msgid "Mapping with Profile Fields"
10743
  msgstr ""
10744
 
10772
  msgid "A new event is added."
10773
  msgstr "Je přidána se nová událost."
10774
 
10775
+ #: app/libraries/notifications.php:1062
10776
  msgid "Your event is published."
10777
  msgstr "Vaše událost je zveřejněna."
10778
 
10779
+ #: app/libraries/notifications.php:1234
10780
  #, fuzzy
10781
  #| msgid "Event Color"
10782
  msgid "Event is soldout!"
10783
  msgstr "Barva události"
10784
 
10785
+ #: app/libraries/notifications.php:1617
10786
  msgid "to"
10787
  msgstr "do"
10788
 
10789
+ #: app/libraries/notifications.php:1643 app/modules/export/details.php:73
10790
  msgid "+ Add to Google Calendar"
10791
  msgstr "+ Přidat do Google kalendáře"
10792
 
10793
+ #: app/libraries/notifications.php:1644 app/modules/export/details.php:74
10794
  #, fuzzy
10795
  #| msgid "+ iCal export"
10796
  msgid "+ iCal / Outlook export"
10797
  msgstr "+ iCal export"
10798
 
10799
+ #: app/libraries/notifications.php:1693
10800
  #, fuzzy, php-format
10801
  #| msgid "+ Add to Google Calendar"
10802
  msgid "+ %s to Google Calendar"
10809
  msgstr "Vybrat vše"
10810
 
10811
  #: app/libraries/skins.php:1315 app/modules/next-event/details.php:148
10812
+ #: app/skins/single.php:1219 app/skins/single/default.php:165
10813
+ #: app/skins/single/default.php:405 app/skins/single/m1.php:40
10814
+ #: app/skins/single/modern.php:233
10815
  msgid "Time"
10816
  msgstr "Čas"
10817
 
10950
  msgid "Available %s: <span>%s</span>"
10951
  msgstr "K dispozici %s: <span>%s</span>"
10952
 
10953
+ #: app/modules/booking/steps/tickets.php:170 app/skins/single/default.php:89
10954
  #, php-format
10955
  msgid "The %s ticket sales has ended!"
10956
  msgstr ""
11171
  msgid "Home"
11172
  msgstr "Domů"
11173
 
11174
+ #: app/skins/single.php:1013 app/skins/single/default.php:110
11175
  #: app/skins/single/m1.php:284 app/skins/single/m2.php:205
11176
+ #: app/skins/single/modern.php:317
11177
  msgid "Sold out!"
11178
  msgstr "Vyprodáno!"
11179
 
11180
  #: app/skins/single.php:1300 app/skins/single.php:1363
11181
+ #: app/skins/single/default.php:307 app/skins/single/default.php:546
11182
  #: app/skins/single/m1.php:112 app/skins/single/m2.php:35
11183
  #: app/skins/single/modern.php:61
11184
  msgid "Phone"
11188
  msgid "Speakers:"
11189
  msgstr "Řečník:"
11190
 
11191
+ #: app/skins/single/default.php:129 app/skins/single/m1.php:301
11192
+ #: app/skins/single/m2.php:222 app/skins/single/modern.php:337
11193
  msgid "Tags: "
11194
  msgstr "Značky: "
11195
 
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: 2021-04-07 12:41+0430\n"
6
- "PO-Revision-Date: 2021-04-07 12:43+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -19,8 +19,8 @@ msgstr ""
19
 
20
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
21
  #: app/features/ix/import.php:48 app/features/ix/import.php:77
22
- #: app/features/ix/thirdparty.php:26 app/features/mec.php:1214
23
- #: app/features/mec.php:1238 app/features/mec/dashboard.php:65
24
  #: app/widgets/MEC.php:33
25
  msgid "Modern Events Calendar"
26
  msgstr "Moderner Event Kalender "
@@ -31,8 +31,8 @@ msgstr "Moderner Event Kalender "
31
  msgid "Content"
32
  msgstr "Inhalt"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:539
35
- #: app/features/mec.php:570 app/features/mec.php:600
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
@@ -95,16 +95,16 @@ msgid "Select Shortcode"
95
  msgstr "Neuen Shortcode hinzufügen"
96
 
97
  #: app/features/booking/calendar_novel.php:136
98
- #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6659
99
- #: app/libraries/main.php:6706 app/libraries/notifications.php:1361
100
  #: app/libraries/render.php:531 app/libraries/render.php:723
101
  #: app/libraries/render.php:781 app/libraries/render.php:878
102
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:47
103
  #: app/modules/local-time/type2.php:69 app/modules/local-time/type3.php:47
104
  #: app/modules/next-event/details.php:154
105
  #: app/modules/next-event/multiple.php:64 app/skins/single.php:1225
106
- #: app/skins/single/default.php:172 app/skins/single/default.php:412
107
- #: app/skins/single/m1.php:46 app/skins/single/modern.php:237
108
  #, fuzzy
109
  #| msgid "Add Day"
110
  msgid "All Day"
@@ -116,8 +116,8 @@ msgstr "Tag hinzufügen"
116
  msgid "Chosen Time:"
117
  msgstr "Lokale Zeit"
118
 
119
- #: app/features/colors.php:50 app/features/fes/form.php:935
120
- #: app/features/mec/settings.php:845
121
  msgid "Event Color"
122
  msgstr "Farbe der Veranstaltung"
123
 
@@ -127,17 +127,17 @@ msgstr "Farbe der Veranstaltung"
127
  msgid "Recent Colors"
128
  msgstr "Farbe der Veranstaltung"
129
 
130
- #: app/features/contextual.php:55 app/features/mec.php:488
131
  #: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
132
  #: app/features/mec/wizard.php:223 app/features/popup/event.php:60
133
- #: app/features/popup/shortcode.php:37 app/libraries/main.php:670
134
  msgid "Settings"
135
  msgstr "Einstellungen"
136
 
137
- #: app/features/contextual.php:62 app/features/events.php:1453
138
- #: app/features/events.php:2423 app/features/mec/booking.php:626
139
- #: app/features/mec/booking.php:895 app/features/mec/settings.php:938
140
- #: app/features/mec/support.php:29 app/libraries/main.php:620
141
  msgid "Booking Form"
142
  msgstr "Buchungsformular"
143
 
@@ -163,9 +163,9 @@ msgstr ""
163
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
164
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
165
 
166
- #: app/features/contextual.php:70 app/features/events.php:1461
167
  #: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
168
- #: app/features/mec/support.php:36 app/libraries/main.php:622
169
  msgid "Payment Gateways"
170
  msgstr "Zahlungs-Gateways"
171
 
@@ -179,9 +179,9 @@ msgstr ""
179
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
180
  "\"0\" allowfullscreen></iframe>"
181
 
182
- #: app/features/contextual.php:77 app/features/events.php:401
183
  #: app/features/mec/support-page.php:117 app/features/mec/support.php:45
184
- #: app/libraries/main.php:821
185
  msgid "Notifications"
186
  msgstr "Benachrichtigungen"
187
 
@@ -280,7 +280,8 @@ msgstr "Slug/Permalinks"
280
  msgid "Event Details/Single Event Page"
281
  msgstr "Event Details / Einzelveranstaltungsseite"
282
 
283
- #: app/features/contextual.php:166 app/features/mec/settings.php:549
 
284
  #: app/libraries/main.php:586
285
  msgid "Currency Options"
286
  msgstr "Währungseinstellungen"
@@ -289,18 +290,18 @@ msgstr "Währungseinstellungen"
289
  msgid "Google Maps Options"
290
  msgstr "Google Maps Einstellungen"
291
 
292
- #: app/features/contextual.php:244 app/features/mec/settings.php:608
293
- #: app/libraries/main.php:587
294
  msgid "Google Recaptcha Options"
295
  msgstr "Google Recaptcha Einstellungen"
296
 
297
- #: app/features/contextual.php:258 app/features/mec/single.php:298
298
- #: app/libraries/main.php:606
299
  msgid "Countdown Options"
300
  msgstr "Countdown Einstellungsoptionen"
301
 
302
  #: app/features/contextual.php:268 app/features/mec/modules.php:269
303
- #: app/libraries/main.php:632
304
  msgid "Social Networks"
305
  msgstr "Soziale Netzwerke"
306
 
@@ -308,36 +309,36 @@ msgstr "Soziale Netzwerke"
308
  msgid "Next Event Module"
309
  msgstr "Nächstes Veranstaltung Modul"
310
 
311
- #: app/features/contextual.php:286 app/features/mec/settings.php:648
312
- #: app/features/mec/support-page.php:98 app/libraries/main.php:588
313
  msgid "Frontend Event Submission"
314
  msgstr "Erstellung von Veranstaltungen im Frontend"
315
 
316
- #: app/features/contextual.php:298 app/features/events.php:394
317
- #: app/libraries/main.php:607
318
  msgid "Exceptional Days"
319
  msgstr "Herausgenommene Tage "
320
 
321
- #: app/features/contextual.php:308 app/features/events.php:364
322
  #: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
323
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
324
- #: app/libraries/main.php:615 app/libraries/main.php:647
325
- #: app/libraries/main.php:735
326
  msgid "Booking"
327
  msgstr "Buchung / Reservierung"
328
 
329
  #: app/features/contextual.php:318 app/features/mec/booking.php:448
330
- #: app/features/mec/booking.php:852 app/libraries/main.php:617
331
  msgid "Coupons"
332
  msgstr "Gutscheine"
333
 
334
  #: app/features/contextual.php:326 app/features/mec/modules.php:341
335
- #: app/libraries/main.php:634
336
  msgid "BuddyPress Integration"
337
  msgstr "Buddy Press Integration"
338
 
339
- #: app/features/contextual.php:334 app/features/mec/settings.php:1152
340
- #: app/libraries/main.php:593
341
  msgid "Mailchimp Integration"
342
  msgstr "Mailchimp Integration"
343
 
@@ -345,8 +346,8 @@ msgstr "Mailchimp Integration"
345
  msgid "MEC Activation"
346
  msgstr "MEC Aktivierung"
347
 
348
- #: app/features/dlfile.php:121 app/features/events.php:1458
349
- #: app/features/mec/booking.php:368 app/features/mec/settings.php:973
350
  #, fuzzy
351
  #| msgid "Download ICS file"
352
  msgid "Downloadable File"
@@ -382,15 +383,15 @@ msgstr ""
382
  msgid "File uploaded!"
383
  msgstr "Das Bild ist hochgeladen"
384
 
385
- #: app/features/events.php:183 app/features/ix/export.php:34
386
- #: app/features/mec/dashboard.php:267 app/libraries/main.php:5702
387
- #: app/libraries/main.php:5722 app/skins/daily_view/tpl.php:82
388
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
389
  #: app/skins/yearly_view/tpl.php:71
390
  msgid "Events"
391
  msgstr "Veranstaltungen"
392
 
393
- #: app/features/events.php:184 app/features/fes.php:243
394
  #: app/features/mec/meta_boxes/display_options.php:1732
395
  #: app/features/mec/meta_boxes/display_options.php:1826
396
  #: app/features/mec/meta_boxes/display_options.php:1899
@@ -400,38 +401,38 @@ msgstr "Veranstaltungen"
400
  msgid "Event"
401
  msgstr "Veranstaltung"
402
 
403
- #: app/features/events.php:185 app/features/mec.php:474
404
  msgid "Add Event"
405
  msgstr "Veranstaltung hinzufügen"
406
 
407
- #: app/features/events.php:186 app/features/mec/dashboard.php:142
408
  msgid "Add New Event"
409
  msgstr "Neue Veranstaltung hinzufügen"
410
 
411
- #: app/features/events.php:187 app/features/ix.php:4499
412
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
413
  #: app/skins/map/tpl.php:89
414
  msgid "No events found!"
415
  msgstr "Keine Veranstaltungen gefunden!"
416
 
417
- #: app/features/events.php:188
418
  msgid "All Events"
419
  msgstr "Alle Veranstaltungen"
420
 
421
- #: app/features/events.php:189
422
  msgid "Edit Event"
423
  msgstr "Event Bearbeiten"
424
 
425
- #: app/features/events.php:190 app/features/fes/list.php:100
426
  #: app/features/popup/event.php:252
427
  msgid "View Event"
428
  msgstr "Veranstaltung ansehen"
429
 
430
- #: app/features/events.php:191
431
  msgid "No events found in Trash!"
432
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
433
 
434
- #: app/features/events.php:208 app/features/events.php:3522
435
  #: app/features/mec/meta_boxes/display_options.php:1589
436
  #: app/features/mec/meta_boxes/search_form.php:42
437
  #: app/features/mec/meta_boxes/search_form.php:130
@@ -440,154 +441,154 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
440
  #: app/features/mec/meta_boxes/search_form.php:393
441
  #: app/features/mec/meta_boxes/search_form.php:480
442
  #: app/features/mec/meta_boxes/search_form.php:567
443
- #: app/features/mec/meta_boxes/search_form.php:640
444
- #: app/features/mec/meta_boxes/search_form.php:727
445
- #: app/features/mec/meta_boxes/search_form.php:814
446
- #: app/features/mec/meta_boxes/search_form.php:937
447
- #: app/features/mec/settings.php:1045 app/features/mec/settings.php:1106
448
- #: app/features/mec/single.php:385 app/features/mec/single.php:427
449
  #: app/features/mec/wizard.php:418 app/features/mec/wizard.php:457
450
- #: app/features/search.php:68 app/libraries/main.php:6617
451
- #: app/libraries/main.php:6671 app/libraries/skins.php:1041
452
- #: app/skins/single.php:1035 app/skins/single/default.php:273
453
- #: app/skins/single/default.php:512 app/skins/single/m1.php:202
454
- #: app/skins/single/m2.php:125 app/skins/single/modern.php:155
455
  msgid "Category"
456
  msgstr "Kategorie"
457
 
458
- #: app/features/events.php:209 app/features/events.php:3478
459
- #: app/features/fes/form.php:885 app/features/mec.php:476
460
  #: app/features/mec/meta_boxes/filter.php:69
461
- #: app/features/mec/meta_boxes/filter.php:80 app/libraries/main.php:6616
462
- #: app/libraries/main.php:6670
463
  msgid "Categories"
464
  msgstr "Kategorien"
465
 
466
- #: app/features/events.php:219 app/features/labels.php:71
467
  #: app/features/locations.php:69 app/features/organizers.php:69
468
  #: app/features/speakers.php:71 app/features/tag.php:69
469
  #, php-format
470
  msgid "All %s"
471
  msgstr "Alle %s"
472
 
473
- #: app/features/events.php:220 app/features/labels.php:72
474
  #: app/features/locations.php:70 app/features/organizers.php:70
475
  #: app/features/speakers.php:72 app/features/tag.php:70
476
  #, php-format
477
  msgid "Edit %s"
478
  msgstr "Bearbeiten %s"
479
 
480
- #: app/features/events.php:221 app/features/labels.php:73
481
  #: app/features/locations.php:71 app/features/organizers.php:71
482
  #: app/features/speakers.php:73 app/features/tag.php:71
483
  #, php-format
484
  msgid "View %s"
485
  msgstr "Ansicht %s"
486
 
487
- #: app/features/events.php:222 app/features/labels.php:74
488
  #: app/features/locations.php:72 app/features/organizers.php:72
489
  #: app/features/speakers.php:74 app/features/tag.php:72
490
  #, php-format
491
  msgid "Update %s"
492
  msgstr "Update %s"
493
 
494
- #: app/features/events.php:223 app/features/labels.php:75
495
  #: app/features/locations.php:73 app/features/organizers.php:73
496
  #: app/features/speakers.php:75 app/features/tag.php:73
497
  #, php-format
498
  msgid "Add New %s"
499
  msgstr "Neu hinzufügen%s"
500
 
501
- #: app/features/events.php:224 app/features/labels.php:76
502
  #: app/features/locations.php:74 app/features/organizers.php:74
503
  #: app/features/speakers.php:76 app/features/tag.php:74
504
  #, php-format
505
  msgid "New %s Name"
506
  msgstr "Neuer %s Name"
507
 
508
- #: app/features/events.php:225 app/features/labels.php:77
509
  #: app/features/locations.php:75 app/features/organizers.php:75
510
  #: app/features/speakers.php:77 app/features/tag.php:75
511
  #, php-format
512
  msgid "Popular %s"
513
  msgstr "Beliebt %s"
514
 
515
- #: app/features/events.php:226 app/features/labels.php:78
516
  #: app/features/locations.php:76 app/features/organizers.php:76
517
  #: app/features/speakers.php:78 app/features/tag.php:76
518
  #, php-format
519
  msgid "Search %s"
520
  msgstr "Suche %s"
521
 
522
- #: app/features/events.php:253 app/features/events.php:290
523
  msgid "Category Icon"
524
  msgstr "Kategoriesymbol"
525
 
526
- #: app/features/events.php:256 app/features/events.php:295
527
  msgid "Select icon"
528
  msgstr "Wählen Sie ein Symbol"
529
 
530
- #: app/features/events.php:260 app/features/events.php:304
531
  msgid "Fallback Image"
532
  msgstr ""
533
 
534
- #: app/features/events.php:263 app/features/events.php:309
535
  #: app/features/locations.php:160 app/features/locations.php:212
536
  #: app/features/organizers.php:132 app/features/organizers.php:163
537
  #: app/features/speakers.php:180 app/features/speakers.php:231
538
  msgid "Upload/Add image"
539
  msgstr "Bild hochladen/hinzufügen"
540
 
541
- #: app/features/events.php:264 app/features/events.php:310
542
  #: app/features/locations.php:161 app/features/locations.php:213
543
  #: app/features/locations.php:387 app/features/locations.php:394
544
  #: app/features/organizers.php:133 app/features/organizers.php:164
545
- #: app/features/organizers.php:300 app/features/organizers.php:307
546
  #: app/features/speakers.php:181 app/features/speakers.php:232
547
  msgid "Remove image"
548
  msgstr "Bild entfernen"
549
 
550
- #: app/features/events.php:359
551
  msgid "Event Details"
552
  msgstr "Veranstaltungsdetails"
553
 
554
- #: app/features/events.php:390
555
  #, fuzzy
556
  #| msgid "Event Details"
557
  msgid "FES Details"
558
  msgstr "Veranstaltungsdetails"
559
 
560
- #: app/features/events.php:391
561
  msgid "Date And Time"
562
  msgstr "Datum und Uhrzeit"
563
 
564
- #: app/features/events.php:392 app/features/fes/form.php:383
565
  msgid "Event Repeating"
566
  msgstr "Wiederholende Veranstaltung"
567
 
568
- #: app/features/events.php:393 app/features/mec/single.php:207
569
  #: app/libraries/eventFields.php:45
570
  #, fuzzy
571
  #| msgid "Event Detail"
572
  msgid "Event Data"
573
  msgstr "Veranstaltungsdetails"
574
 
575
- #: app/features/events.php:395 app/features/mec/settings.php:875
576
  #: app/libraries/hourlyschedule.php:36 app/skins/single.php:1452
577
  msgid "Hourly Schedule"
578
  msgstr "Stundenplan"
579
 
580
- #: app/features/events.php:396
581
  msgid "Location/Venue"
582
  msgstr "Ort"
583
 
584
- #: app/features/events.php:397
585
  msgid "Links"
586
  msgstr "Links"
587
 
588
- #: app/features/events.php:398 app/features/events.php:3524
589
- #: app/features/events.php:3728 app/features/ix.php:4088
590
- #: app/features/ix.php:4130
591
  #: app/features/mec/meta_boxes/display_options.php:1592
592
  #: app/features/mec/meta_boxes/search_form.php:58
593
  #: app/features/mec/meta_boxes/search_form.php:146
@@ -596,89 +597,89 @@ msgstr "Links"
596
  #: app/features/mec/meta_boxes/search_form.php:409
597
  #: app/features/mec/meta_boxes/search_form.php:496
598
  #: app/features/mec/meta_boxes/search_form.php:583
599
- #: app/features/mec/meta_boxes/search_form.php:656
600
- #: app/features/mec/meta_boxes/search_form.php:743
601
- #: app/features/mec/meta_boxes/search_form.php:830
602
- #: app/features/mec/meta_boxes/search_form.php:953
603
- #: app/features/mec/settings.php:1118 app/features/mec/single.php:389
604
- #: app/features/mec/single.php:431 app/features/mec/wizard.php:422
605
  #: app/features/mec/wizard.php:461 app/features/organizers.php:58
606
- #: app/features/organizers.php:204 app/features/organizers.php:261
607
- #: app/features/organizers.php:263 app/features/organizers.php:272
608
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
609
- #: app/features/search.php:80 app/libraries/main.php:6623
610
- #: app/libraries/main.php:6677 app/libraries/skins.php:1127
611
- #: app/skins/single.php:1290 app/skins/single/default.php:298
612
- #: app/skins/single/default.php:537 app/skins/single/m1.php:102
613
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:51
614
  msgid "Organizer"
615
  msgstr "Veranstalter"
616
 
617
- #: app/features/events.php:399 app/features/events.php:1234
618
- #: app/features/fes/form.php:856 app/features/mec/settings.php:1042
619
- #: app/libraries/main.php:6654 app/libraries/main.php:6703
620
  #: app/libraries/skins.php:1358 app/skins/single.php:1061
621
- #: app/skins/single/default.php:190 app/skins/single/default.php:430
622
- #: app/skins/single/m1.php:61 app/skins/single/modern.php:252
623
  msgid "Cost"
624
  msgstr " Preis"
625
 
626
- #: app/features/events.php:400
627
  #, fuzzy
628
  #| msgid "On Event Start"
629
  msgid "SEO Schema / Event Status"
630
  msgstr "Am Event Start"
631
 
632
- #: app/features/events.php:561
633
  msgid "Note for reviewer"
634
  msgstr "Zusätzliche Anmerkungen zum Event "
635
 
636
- #: app/features/events.php:567
637
  msgid "Guest Data"
638
  msgstr "Gäste Daten"
639
 
640
- #: app/features/events.php:568 app/features/events.php:2409
641
- #: app/features/events.php:4051 app/features/fes.php:243
642
  #: app/features/fes/form.php:812 app/features/labels.php:180
643
- #: app/features/mec/booking.php:45 app/features/organizers.php:280
644
  #: app/features/popup/event.php:182 app/features/profile/profile.php:149
645
- #: app/libraries/notifications.php:1726 app/modules/booking/steps/form.php:62
646
  msgid "Name"
647
  msgstr "Name"
648
 
649
- #: app/features/events.php:569 app/features/events.php:2418
650
- #: app/features/events.php:2485 app/features/events.php:2574
651
- #: app/features/events.php:4054 app/features/fes.php:243
652
  #: app/features/fes/form.php:808 app/features/login/login.php:5
653
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:664
654
- #: app/features/mec/booking.php:760 app/features/mec/single.php:240
655
  #: app/features/organizers.php:111 app/features/organizers.php:152
656
  #: app/features/profile/profile.php:152 app/features/speakers.php:127
657
- #: app/features/speakers.php:204 app/libraries/main.php:1942
658
- #: app/libraries/main.php:2011 app/libraries/main.php:3453
659
- #: app/libraries/notifications.php:1727 app/modules/booking/steps/form.php:71
660
  #: app/modules/booking/steps/form.php:213 app/skins/single.php:1307
661
- #: app/skins/single.php:1370 app/skins/single/default.php:315
662
- #: app/skins/single/default.php:554 app/skins/single/m1.php:119
663
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:68
664
  msgid "Email"
665
  msgstr "E-Mail"
666
 
667
- #: app/features/events.php:578
668
  msgid ""
669
  "This event is imported from Google calendar so if you modify it, it would "
670
  "overwrite in the next import from Google."
671
  msgstr ""
672
 
673
- #: app/features/events.php:582 app/features/fes/form.php:282
674
  msgid "Date and Time"
675
  msgstr "Datum und Uhrzeit"
676
 
677
- #: app/features/events.php:585 app/features/events.php:589
678
- #: app/features/events.php:3525 app/features/events.php:3728
679
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
680
- #: app/features/ix.php:4088 app/features/ix.php:4130
681
- #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1434
682
  #: app/features/mec/meta_boxes/display_options.php:52
683
  #: app/features/mec/meta_boxes/display_options.php:305
684
  #: app/features/mec/meta_boxes/display_options.php:569
@@ -698,11 +699,11 @@ msgstr "Datum und Uhrzeit"
698
  msgid "Start Date"
699
  msgstr "Start Datum"
700
 
701
- #: app/features/events.php:604 app/features/events.php:608
702
- #: app/features/events.php:3526 app/features/events.php:3728
703
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
704
- #: app/features/ix.php:4088 app/features/ix.php:4130
705
- #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1435
706
  #: app/features/mec/meta_boxes/display_options.php:68
707
  #: app/features/mec/meta_boxes/display_options.php:321
708
  #: app/features/mec/meta_boxes/display_options.php:585
@@ -714,29 +715,29 @@ msgstr "Start Datum"
714
  msgid "End Date"
715
  msgstr "Ende Datum"
716
 
717
- #: app/features/events.php:631 app/features/fes/form.php:323
718
  #: app/features/popup/event.php:109
719
  #, fuzzy
720
  #| msgid "All Day Event"
721
  msgid "All-day Event"
722
  msgstr "Ganztägige Veranstaltung"
723
 
724
- #: app/features/events.php:641 app/features/fes/form.php:326
725
  msgid "Hide Event Time"
726
  msgstr "Event / Veranstaltungszeit verbergen"
727
 
728
- #: app/features/events.php:651 app/features/fes/form.php:329
729
  msgid "Hide Event End Time"
730
  msgstr "Ende-Zeit der Veranstaltung verbergen"
731
 
732
- #: app/features/events.php:656 app/features/events.php:660
733
  #: app/features/fes/form.php:333
734
  #, fuzzy
735
  #| msgid "Note to reviewer"
736
  msgid "Notes on the time"
737
  msgstr "Zusätzliche Anmerkungen zum Event "
738
 
739
- #: app/features/events.php:661 app/features/fes/form.php:334
740
  #, fuzzy
741
  #| msgid ""
742
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
@@ -748,15 +749,16 @@ msgstr ""
748
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
749
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
750
 
751
- #: app/features/events.php:663 app/features/events.php:842
752
- #: app/features/events.php:1195 app/features/events.php:1286
753
- #: app/features/events.php:1423 app/features/events.php:1540
754
- #: app/features/events.php:1795 app/features/events.php:1810
755
- #: app/features/events.php:1991 app/features/events.php:2004
756
- #: app/features/events.php:2160 app/features/events.php:2196
757
- #: app/features/events.php:2294 app/features/events.php:2309
758
- #: app/features/events.php:2339 app/features/events.php:2352
759
- #: app/features/fes/form.php:456 app/features/fes/form.php:764
 
760
  #: app/features/locations.php:335 app/features/mec/booking.php:109
761
  #: app/features/mec/booking.php:201 app/features/mec/booking.php:266
762
  #: app/features/mec/booking.php:299 app/features/mec/booking.php:312
@@ -802,16 +804,16 @@ msgstr ""
802
  #: app/features/mec/modules.php:93 app/features/mec/modules.php:128
803
  #: app/features/mec/modules.php:144 app/features/mec/modules.php:330
804
  #: app/features/mec/notifications.php:107
805
- #: app/features/mec/notifications.php:258
806
- #: app/features/mec/notifications.php:410
807
- #: app/features/mec/notifications.php:572
808
- #: app/features/mec/notifications.php:745
809
- #: app/features/mec/notifications.php:903
810
- #: app/features/mec/notifications.php:1058
811
- #: app/features/mec/notifications.php:1203
812
- #: app/features/mec/notifications.php:1218
813
- #: app/features/mec/notifications.php:1375
814
- #: app/features/mec/notifications.php:1487 app/features/mec/settings.php:67
815
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:113
816
  #: app/features/mec/settings.php:149 app/features/mec/settings.php:172
817
  #: app/features/mec/settings.php:218 app/features/mec/settings.php:268
@@ -819,152 +821,153 @@ msgstr ""
819
  #: app/features/mec/settings.php:472 app/features/mec/settings.php:489
820
  #: app/features/mec/settings.php:506 app/features/mec/settings.php:525
821
  #: app/features/mec/settings.php:539 app/features/mec/settings.php:567
822
- #: app/features/mec/settings.php:660 app/features/mec/settings.php:837
823
- #: app/features/mec/settings.php:1013 app/features/mec/settings.php:1029
824
- #: app/features/mec/settings.php:1167 app/features/mec/settings.php:1180
825
- #: app/features/mec/settings.php:1196 app/features/mec/single.php:46
826
- #: app/features/mec/single.php:62 app/features/mec/single.php:82
827
- #: app/features/mec/single.php:100 app/features/mec/single.php:124
828
- #: app/features/mec/single.php:141 app/features/mec/single.php:192
829
- #: app/features/mec/single.php:327 app/features/mec/styling.php:123
830
- #: app/features/mec/styling.php:223 app/features/mec/styling.php:240
831
- #: app/features/mec/styling.php:254 app/features/mec/wizard.php:276
832
- #: app/features/mec/wizard.php:359 app/features/mec/wizard.php:380
833
- #: app/features/mec/wizard.php:498 app/features/organizers.php:273
834
- #: app/features/popup/event.php:126 app/features/popup/event.php:173
835
- #: app/skins/single.php:1146 app/skins/single/default.php:208
836
- #: app/skins/single/default.php:445 app/skins/single/m1.php:224
837
- #: app/skins/single/m2.php:148 app/skins/single/modern.php:178
 
838
  msgid "Read More"
839
  msgstr "Mehr lesen"
840
 
841
- #: app/features/events.php:673 app/features/fes/form.php:341
842
  #, fuzzy
843
  #| msgid "Timezone: %s"
844
  msgid "Timezone"
845
  msgstr "Zeitzone: %s"
846
 
847
- #: app/features/events.php:678 app/features/events.php:691
848
- #: app/features/events.php:1616 app/features/events.php:1626
849
- #: app/features/events.php:1647 app/features/events.php:1669
850
- #: app/features/events.php:2122 app/features/events.php:2254
851
- #: app/features/events.php:2440 app/features/fes/form.php:346
852
  #: app/features/fes/form.php:359
853
  msgid "Inherit from global options"
854
  msgstr "Aus den globalen Einstellungen übernehmen"
855
 
856
- #: app/features/events.php:687 app/features/events.php:690
857
  #: app/features/fes/form.php:355 app/features/fes/form.php:358
858
  #, fuzzy
859
  #| msgid "Countdown View"
860
  msgid "Countdown Method"
861
  msgstr "Countdownansicht"
862
 
863
- #: app/features/events.php:692 app/features/fes/form.php:360
864
  #, fuzzy
865
  #| msgid "On Event Start"
866
  msgid "Count to Event Start"
867
  msgstr "Am Event Start"
868
 
869
- #: app/features/events.php:693 app/features/fes/form.php:361
870
  #, fuzzy
871
  #| msgid "On Event End"
872
  msgid "Count to Event End"
873
  msgstr "Am Event Ende"
874
 
875
- #: app/features/events.php:699 app/features/fes/form.php:368
876
  #: app/modules/weather/darksky.php:57
877
  msgid "Visibility"
878
  msgstr "Sichtbarkeit"
879
 
880
- #: app/features/events.php:702 app/features/fes/form.php:371
881
- #: app/features/mec/settings.php:832 app/features/mec/settings.php:836
882
  #, fuzzy
883
  #| msgid "Visibility"
884
  msgid "Event Visibility"
885
  msgstr "Sichtbarkeit"
886
 
887
- #: app/features/events.php:703 app/features/fes/form.php:372
888
  #, fuzzy
889
  #| msgid "Booking"
890
  msgid "Show on Shortcodes"
891
  msgstr "Buchung / Reservierung"
892
 
893
- #: app/features/events.php:704 app/features/fes/form.php:373
894
  #, fuzzy
895
  #| msgid "Shortcodes"
896
  msgid "Hide on Shortcodes"
897
  msgstr "Shortcodes"
898
 
899
- #: app/features/events.php:711 app/features/fes/form.php:381
900
  msgid "Repeating"
901
  msgstr "Wiederholen"
902
 
903
- #: app/features/events.php:720
904
  msgid "Event Repeating (Recurring events)"
905
  msgstr "Wiederholende Veranstaltung"
906
 
907
- #: app/features/events.php:724 app/features/fes/form.php:387
908
  msgid "Repeats"
909
  msgstr "Wiederholend"
910
 
911
- #: app/features/events.php:732 app/features/fes/form.php:389
912
- #: app/features/mec.php:1437 app/skins/default_full_calendar/tpl.php:77
913
  #: app/skins/full_calendar/tpl.php:125
914
  msgid "Daily"
915
  msgstr "Täglich"
916
 
917
- #: app/features/events.php:739 app/features/fes/form.php:390
918
  msgid "Every Weekday"
919
  msgstr "An jedem Wochentag"
920
 
921
- #: app/features/events.php:746 app/features/fes/form.php:391
922
  msgid "Every Weekend"
923
  msgstr "An jedem Wochenende"
924
 
925
- #: app/features/events.php:753 app/features/fes/form.php:392
926
  msgid "Certain Weekdays"
927
  msgstr "Bestimmte Wochentage"
928
 
929
- #: app/features/events.php:760 app/features/fes/form.php:393
930
  #: app/skins/default_full_calendar/tpl.php:76
931
  #: app/skins/full_calendar/tpl.php:124
932
  msgid "Weekly"
933
  msgstr "Wöchentlich"
934
 
935
- #: app/features/events.php:767 app/features/fes/form.php:394
936
- #: app/features/mec.php:1438 app/skins/default_full_calendar/tpl.php:75
937
  #: app/skins/full_calendar/tpl.php:123
938
  msgid "Monthly"
939
  msgstr "Monatlich"
940
 
941
- #: app/features/events.php:774 app/features/fes/form.php:395
942
- #: app/features/mec.php:1439 app/skins/default_full_calendar/tpl.php:74
943
  #: app/skins/full_calendar/tpl.php:122
944
  msgid "Yearly"
945
  msgstr "Jährlich"
946
 
947
- #: app/features/events.php:781 app/features/fes/form.php:396
948
  msgid "Custom Days"
949
  msgstr "Benutzerdefinierte Tage"
950
 
951
- #: app/features/events.php:788 app/features/fes/form.php:397
952
  msgid "Advanced"
953
  msgstr "Fortgeschritten"
954
 
955
- #: app/features/events.php:793 app/features/fes/form.php:401
956
  msgid "Repeat Interval"
957
  msgstr "Wiederholungsintervall"
958
 
959
- #: app/features/events.php:795 app/features/fes/form.php:402
960
  msgid "Repeat interval"
961
  msgstr "Wiederholungsintervall"
962
 
963
- #: app/features/events.php:799 app/features/fes/form.php:405
964
  msgid "Week Days"
965
  msgstr "Wochentage"
966
 
967
- #: app/features/events.php:816
968
  #, fuzzy
969
  #| msgid "Pro version of Modern Events Calendar"
970
  msgid ""
@@ -972,8 +975,8 @@ msgid ""
972
  "Calendar."
973
  msgstr "Pro Version vom Modernen Event Calendar"
974
 
975
- #: app/features/events.php:822 app/features/events.php:1882
976
- #: app/features/events.php:1910 app/features/events.php:2064
977
  #: app/features/fes/form.php:419 app/features/ix/import_f_calendar.php:42
978
  #: app/features/ix/import_g_calendar.php:51
979
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
@@ -981,75 +984,75 @@ msgstr "Pro Version vom Modernen Event Calendar"
981
  msgid "Start"
982
  msgstr "Start"
983
 
984
- #: app/features/events.php:835 app/features/events.php:1280
985
- #: app/features/events.php:1866 app/features/events.php:2053
986
- #: app/features/events.php:2133 app/features/events.php:2266
987
- #: app/features/fes/form.php:449 app/features/fes/form.php:983
988
- #: app/features/occurrences.php:114 app/features/organizers.php:324
989
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:120
990
  msgid "Add"
991
  msgstr "Hinzufügen"
992
 
993
- #: app/features/events.php:838 app/features/fes/form.php:452
994
  msgid "Custom Days Repeating"
995
  msgstr "Benutzerdefinierte Wiederholende Tage"
996
 
997
- #: app/features/events.php:841 app/features/fes/form.php:455
998
  msgid ""
999
  "Add certain days to event occurrence dates. If you have a single day event, "
1000
  "start and end dates should be the same, If you have a multiple day event, "
1001
  "the start and end dates must be commensurate with the initial date."
1002
  msgstr ""
1003
 
1004
- #: app/features/events.php:852 app/features/events.php:1886
1005
- #: app/features/events.php:1914 app/features/events.php:2068
1006
  #: app/features/fes/form.php:434 app/libraries/skins.php:1309
1007
  msgid "End"
1008
  msgstr "Ende"
1009
 
1010
- #: app/features/events.php:929 app/features/fes/form.php:528
1011
  msgid "First"
1012
  msgstr "Erster"
1013
 
1014
- #: app/features/events.php:971 app/features/fes/form.php:570
1015
  msgid "Second"
1016
  msgstr "Zweiter"
1017
 
1018
- #: app/features/events.php:1013 app/features/fes/form.php:612
1019
  msgid "Third"
1020
  msgstr "Dritter"
1021
 
1022
- #: app/features/events.php:1055 app/features/fes/form.php:654
1023
  msgid "Fourth"
1024
  msgstr "Vierte"
1025
 
1026
- #: app/features/events.php:1097 app/features/fes/form.php:696
1027
  msgid "Last"
1028
  msgstr "Letzter"
1029
 
1030
- #: app/features/events.php:1144 app/features/fes/form.php:742
1031
  msgid "Ends Repeat"
1032
  msgstr "Wiederholung endet"
1033
 
1034
- #: app/features/events.php:1156 app/features/fes/form.php:746
1035
  msgid "Never"
1036
  msgstr "Niemals"
1037
 
1038
- #: app/features/events.php:1168 app/features/fes/form.php:751
1039
  msgid "On"
1040
  msgstr "Am"
1041
 
1042
- #: app/features/events.php:1184 app/features/fes/form.php:758
1043
  #: app/features/mec/booking.php:157
1044
  msgid "After"
1045
  msgstr "Nach"
1046
 
1047
- #: app/features/events.php:1188 app/features/events.php:1192
1048
  #: app/features/fes/form.php:760 app/features/fes/form.php:763
1049
  msgid "Occurrences times"
1050
  msgstr " mal vorkommen"
1051
 
1052
- #: app/features/events.php:1193
1053
  #, fuzzy
1054
  #| msgid ""
1055
  #| "The event will finish after certain repeats. For example if you set it to "
@@ -1061,81 +1064,151 @@ msgstr ""
1061
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
1062
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
1063
 
1064
- #: app/features/events.php:1209 app/features/fes/form.php:777
1065
  #, fuzzy
1066
  #| msgid "Next Occurrence of Other Events"
1067
  msgid "Show only one occurrence of this event"
1068
  msgstr "Nächstes Auftreten von anderen Events."
1069
 
1070
- #: app/features/events.php:1230 app/features/events.php:3728
1071
- #: app/features/fes/form.php:853 app/features/ix.php:4088
1072
- #: app/features/ix.php:4130 app/features/mec/meta_boxes/search_form.php:94
1073
  #: app/features/mec/meta_boxes/search_form.php:182
1074
  #: app/features/mec/meta_boxes/search_form.php:270
1075
  #: app/features/mec/meta_boxes/search_form.php:358
1076
  #: app/features/mec/meta_boxes/search_form.php:445
1077
  #: app/features/mec/meta_boxes/search_form.php:532
1078
  #: app/features/mec/meta_boxes/search_form.php:619
1079
- #: app/features/mec/meta_boxes/search_form.php:692
1080
- #: app/features/mec/meta_boxes/search_form.php:779
1081
- #: app/features/mec/meta_boxes/search_form.php:866
1082
- #: app/features/mec/meta_boxes/search_form.php:989
1083
- #: app/features/mec/settings.php:808 app/libraries/main.php:6653
1084
- #: app/libraries/main.php:6702 app/widgets/single.php:105
 
 
 
 
 
 
 
 
 
 
1085
  msgid "Event Cost"
1086
  msgstr ""
1087
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
1088
 
1089
- #: app/features/events.php:1267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1090
  #, fuzzy
1091
  #| msgid "Exceptional Days"
1092
  msgid "Exceptional Days (Exclude Dates)"
1093
  msgstr "Herausgenommene Tage "
1094
 
1095
- #: app/features/events.php:1273 app/features/events.php:1283
1096
  msgid "Exclude certain days"
1097
  msgstr "Ausschluss bestimmter Tage"
1098
 
1099
- #: app/features/events.php:1278 app/features/events.php:2486
1100
- #: app/features/events.php:2575 app/features/fes.php:243
1101
  #: app/features/mec/booking.php:665 app/features/mec/booking.php:761
1102
- #: app/features/mec/single.php:242 app/features/profile/profile.php:36
1103
- #: app/features/wc.php:83 app/libraries/main.php:3542
1104
  #: app/libraries/skins.php:1242 app/modules/booking/steps/tickets.php:127
1105
  #: app/modules/next-event/details.php:143 app/skins/single.php:1119
1106
- #: app/skins/single/default.php:147 app/skins/single/default.php:387
1107
- #: app/skins/single/m1.php:21 app/skins/single/modern.php:212
1108
  msgid "Date"
1109
  msgstr "Datum"
1110
 
1111
- #: app/features/events.php:1284
1112
  msgid ""
1113
  "Exclude certain days from event occurrence dates. Please note that you can "
1114
  "exclude only single day occurrences and you cannot exclude one day from "
1115
  "multiple day occurrences."
1116
  msgstr ""
1117
 
1118
- #: app/features/events.php:1342 app/libraries/render.php:559
1119
  msgid "Day 1"
1120
  msgstr "Tag 1"
1121
 
1122
- #: app/features/events.php:1386 app/features/fes/form.php:827
1123
- #: app/features/mec/settings.php:802
1124
  msgid "Event Links"
1125
  msgstr "Veranstaltungslinks"
1126
 
1127
- #: app/features/events.php:1389 app/features/events.php:1397
1128
- #: app/features/fes/form.php:829 app/features/mec/settings.php:1043
1129
- #: app/libraries/main.php:6651 app/libraries/main.php:6700
1130
  msgid "Event Link"
1131
  msgstr "Veranstaltungslink"
1132
 
1133
- #: app/features/events.php:1392 app/features/events.php:1410
1134
  #: app/features/fes/form.php:830 app/features/fes/form.php:835
1135
  msgid "eg. http://yoursite.com/your-event"
1136
  msgstr "z.B. http://yoursite.com/your-event"
1137
 
1138
- #: app/features/events.php:1398
1139
  #, fuzzy
1140
  #| msgid ""
1141
  #| "If you fill it, it will be replaced instead of default event page link. "
@@ -1149,34 +1222,34 @@ msgstr ""
1149
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1150
  "einschließlich http(s)://"
1151
 
1152
- #: app/features/events.php:1400
1153
  msgid "URL Shortener"
1154
  msgstr ""
1155
 
1156
- #: app/features/events.php:1407 app/features/events.php:1420
1157
- #: app/features/fes/form.php:834 app/libraries/main.php:6652
1158
- #: app/libraries/main.php:6701 app/skins/single.php:1145
1159
- #: app/skins/single/default.php:207 app/skins/single/default.php:444
1160
  #: app/skins/single/m1.php:223 app/skins/single/m2.php:147
1161
- #: app/skins/single/modern.php:177 app/widgets/single.php:109
1162
  msgid "More Info"
1163
  msgstr "Mehr Informationen"
1164
 
1165
- #: app/features/events.php:1413 app/features/fes/form.php:836
1166
  msgid "More Information"
1167
  msgstr "z.B. Noch mehr Informationen "
1168
 
1169
- #: app/features/events.php:1415 app/features/fes/form.php:838
1170
- #: app/features/mec.php:1036 app/features/popup/shortcode.php:477
1171
  msgid "Current Window"
1172
  msgstr "Aktuelles Fenster"
1173
 
1174
- #: app/features/events.php:1416 app/features/fes/form.php:839
1175
- #: app/features/mec.php:1037 app/features/popup/shortcode.php:481
1176
  msgid "New Window"
1177
  msgstr "Neues Fenster"
1178
 
1179
- #: app/features/events.php:1421 app/features/fes/form.php:841
1180
  msgid ""
1181
  "If you fill it, it will be shown in event details page as an optional link. "
1182
  "Insert full link including http(s)://"
@@ -1187,134 +1260,134 @@ msgstr ""
1187
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1188
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1189
 
1190
- #: app/features/events.php:1444 app/features/mec/settings.php:883
1191
  msgid "Booking Options"
1192
  msgstr "Buchungsoptionen"
1193
 
1194
- #: app/features/events.php:1445 app/features/events.php:1658
1195
- #: app/features/mec/settings.php:920
1196
  #, fuzzy
1197
  #| msgid "Total booking limits"
1198
  msgid "Total User Booking Limits"
1199
  msgstr "Gesamt Verfügbare Plätze"
1200
 
1201
- #: app/features/events.php:1446 app/features/events.php:1714
1202
- #: app/libraries/book.php:63 app/libraries/main.php:6656
1203
  #: app/modules/booking/steps/tickets.php:159
1204
  #: app/modules/booking/steps/tickets.php:165
1205
  msgid "Tickets"
1206
  msgstr "Tickets"
1207
 
1208
- #: app/features/events.php:1448 app/features/events.php:2110
1209
  msgid "Fees"
1210
  msgstr "Gebühren"
1211
 
1212
- #: app/features/events.php:1451 app/features/events.php:2242
1213
- #: app/features/mec/settings.php:950
1214
  msgid "Ticket Variations / Options"
1215
  msgstr ""
1216
 
1217
- #: app/features/events.php:1455 app/features/mec/booking.php:926
1218
  #: app/features/mec/support-page.php:118
1219
  #, fuzzy
1220
  #| msgid "Organizer Tel"
1221
  msgid "Organizer Payment"
1222
  msgstr "Organisator Telefon"
1223
 
1224
- #: app/features/events.php:1522 app/features/events.php:1536
1225
  #, fuzzy
1226
  #| msgid "Total booking limits"
1227
  msgid "Total booking limit"
1228
  msgstr "Gesamt Verfügbare Plätze"
1229
 
1230
- #: app/features/events.php:1533 app/features/events.php:1832
1231
- #: app/features/events.php:2019 app/modules/booking/default.php:99
1232
  #: app/modules/booking/steps/tickets.php:159
1233
  #: app/modules/booking/steps/tickets.php:165
1234
  #: app/skins/available_spot/tpl.php:131
1235
  msgid "Unlimited"
1236
  msgstr "Unlimitiert"
1237
 
1238
- #: app/features/events.php:1539
1239
  msgid ""
1240
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1241
  "limitation number."
1242
  msgstr ""
1243
 
1244
- #: app/features/events.php:1541
1245
  #, fuzzy
1246
  #| msgid "Choose your single event style."
1247
  msgid "Read About A Booking System"
1248
  msgstr "Wählen Sie Ihren Single Event Stil"
1249
 
1250
- #: app/features/events.php:1549
1251
  msgid "100"
1252
  msgstr "z.B. 100"
1253
 
1254
- #: app/features/events.php:1554
1255
  #, fuzzy
1256
  #| msgid "Discount Type"
1257
  msgid "Discount per user roles"
1258
  msgstr "Rabatt-Art"
1259
 
1260
- #: app/features/events.php:1560
1261
  msgid "5"
1262
  msgstr ""
1263
 
1264
- #: app/features/events.php:1566 app/features/events.php:1580
1265
- #: app/features/mec/settings.php:902
1266
  #, fuzzy
1267
  #| msgid "Next Occurrence"
1268
  msgid "Book All Occurrences"
1269
  msgstr "Nächstes Event"
1270
 
1271
- #: app/features/events.php:1577
1272
  msgid "Sell all occurrences by one booking"
1273
  msgstr ""
1274
 
1275
- #: app/features/events.php:1583
1276
  msgid ""
1277
  "If you have a series of events and you want to sell all of them at once, "
1278
  "this option is for you! For example a weekly yoga course or something "
1279
  "similar."
1280
  msgstr ""
1281
 
1282
- #: app/features/events.php:1594 app/features/mec/booking.php:130
1283
- #: app/features/mec/settings.php:908
1284
  #, fuzzy
1285
  #| msgid "General Options"
1286
  msgid "Interval Options"
1287
  msgstr "Allgemeine Einstellungen"
1288
 
1289
- #: app/features/events.php:1596 app/features/events.php:1601
1290
  #: app/features/mec/booking.php:132 app/features/mec/booking.php:137
1291
  #, fuzzy
1292
  #| msgid "Booking Form"
1293
  msgid "Show Booking Form Interval"
1294
  msgstr "Buchungsformular"
1295
 
1296
- #: app/features/events.php:1598 app/features/mec/booking.php:134
1297
  msgid "Minutes (e.g 5)"
1298
  msgstr "Minuten (z.B. 5)"
1299
 
1300
- #: app/features/events.php:1602 app/features/mec/booking.php:138
1301
  msgid ""
1302
  "You can show booking form only at certain times before event start. If you "
1303
  "set this option to 30 then booking form will open only 30 minutes before "
1304
  "starting the event! One day is 1440 minutes."
1305
  msgstr ""
1306
 
1307
- #: app/features/events.php:1611 app/features/mec/settings.php:914
1308
  msgid "Automatic Approval"
1309
  msgstr ""
1310
 
1311
- #: app/features/events.php:1613 app/features/notifications.php:169
1312
  #, fuzzy
1313
  #| msgid "Email verification"
1314
  msgid "Email Verification"
1315
  msgstr "Email-Verifizierung"
1316
 
1317
- #: app/features/events.php:1617 app/features/events.php:1627
1318
  #: app/features/mec/booking.php:177 app/features/mec/booking.php:244
1319
  #: app/features/mec/booking.php:259 app/features/mec/booking.php:863
1320
  #: app/features/mec/booking.php:890
@@ -1393,169 +1466,173 @@ msgstr "Email-Verifizierung"
1393
  #: app/features/mec/meta_boxes/search_form.php:613
1394
  #: app/features/mec/meta_boxes/search_form.php:621
1395
  #: app/features/mec/meta_boxes/search_form.php:628
1396
- #: app/features/mec/meta_boxes/search_form.php:642
1397
  #: app/features/mec/meta_boxes/search_form.php:650
1398
  #: app/features/mec/meta_boxes/search_form.php:658
1399
- #: app/features/mec/meta_boxes/search_form.php:665
1400
- #: app/features/mec/meta_boxes/search_form.php:672
1401
- #: app/features/mec/meta_boxes/search_form.php:679
1402
- #: app/features/mec/meta_boxes/search_form.php:686
1403
  #: app/features/mec/meta_boxes/search_form.php:694
1404
- #: app/features/mec/meta_boxes/search_form.php:701
1405
- #: app/features/mec/meta_boxes/search_form.php:708
1406
- #: app/features/mec/meta_boxes/search_form.php:715
1407
- #: app/features/mec/meta_boxes/search_form.php:729
1408
  #: app/features/mec/meta_boxes/search_form.php:737
1409
  #: app/features/mec/meta_boxes/search_form.php:745
1410
- #: app/features/mec/meta_boxes/search_form.php:752
1411
- #: app/features/mec/meta_boxes/search_form.php:759
1412
- #: app/features/mec/meta_boxes/search_form.php:766
1413
- #: app/features/mec/meta_boxes/search_form.php:773
1414
  #: app/features/mec/meta_boxes/search_form.php:781
1415
- #: app/features/mec/meta_boxes/search_form.php:788
1416
- #: app/features/mec/meta_boxes/search_form.php:795
1417
- #: app/features/mec/meta_boxes/search_form.php:802
1418
- #: app/features/mec/meta_boxes/search_form.php:816
1419
  #: app/features/mec/meta_boxes/search_form.php:824
1420
  #: app/features/mec/meta_boxes/search_form.php:832
1421
- #: app/features/mec/meta_boxes/search_form.php:839
1422
- #: app/features/mec/meta_boxes/search_form.php:846
1423
- #: app/features/mec/meta_boxes/search_form.php:853
1424
- #: app/features/mec/meta_boxes/search_form.php:860
1425
  #: app/features/mec/meta_boxes/search_form.php:868
1426
- #: app/features/mec/meta_boxes/search_form.php:875
1427
- #: app/features/mec/meta_boxes/search_form.php:882
1428
- #: app/features/mec/meta_boxes/search_form.php:889
1429
- #: app/features/mec/meta_boxes/search_form.php:939
1430
  #: app/features/mec/meta_boxes/search_form.php:947
1431
  #: app/features/mec/meta_boxes/search_form.php:955
1432
- #: app/features/mec/meta_boxes/search_form.php:962
1433
- #: app/features/mec/meta_boxes/search_form.php:969
1434
- #: app/features/mec/meta_boxes/search_form.php:976
1435
- #: app/features/mec/meta_boxes/search_form.php:983
1436
  #: app/features/mec/meta_boxes/search_form.php:991
1437
- #: app/features/mec/meta_boxes/search_form.php:998
1438
- #: app/features/mec/meta_boxes/search_form.php:1005
1439
- #: app/features/mec/meta_boxes/search_form.php:1012
 
1440
  #: app/features/mec/modules.php:115 app/features/mec/settings.php:98
1441
- #: app/features/mec/settings.php:501 app/features/mec/wizard.php:556
 
1442
  msgid "Disabled"
1443
  msgstr "Deaktiviert"
1444
 
1445
- #: app/features/events.php:1618 app/features/events.php:1628
1446
  #: app/features/mec/booking.php:176 app/features/mec/booking.php:243
1447
  #: app/features/mec/booking.php:260 app/features/mec/booking.php:862
1448
  #: app/features/mec/booking.php:891 app/features/mec/modules.php:155
1449
- #: app/features/mec/settings.php:99 app/features/mec/wizard.php:555
 
1450
  msgid "Enabled"
1451
  msgstr "Aktiviert"
1452
 
1453
- #: app/features/events.php:1623 app/features/mec/booking.php:395
1454
- #: app/features/mec/notifications.php:338 app/features/notifications.php:163
1455
- #: app/libraries/main.php:648
1456
  msgid "Booking Confirmation"
1457
  msgstr "Buchungsbestätigung"
1458
 
1459
- #: app/features/events.php:1636 app/features/mec/booking.php:279
1460
- #: app/features/mec/settings.php:926
1461
  #, fuzzy
1462
  #| msgid "Last Few Tickets"
1463
  msgid "Last Few Tickets Percentage"
1464
  msgstr "Nur noch wenige Tickets verfügbar."
1465
 
1466
- #: app/features/events.php:1649
1467
  msgid "15"
1468
  msgstr ""
1469
 
1470
- #: app/features/events.php:1672
1471
  msgid "12"
1472
  msgstr "12"
1473
 
1474
- #: app/features/events.php:1679
1475
  #, fuzzy
1476
  #| msgid "Payment Gateways"
1477
  msgid "Disabled Gateways"
1478
  msgstr "Zahlungs-Gateways"
1479
 
1480
- #: app/features/events.php:1680
1481
  msgid ""
1482
  "You can disable some of the following payment gateways by checking them "
1483
  "otherwise they will be enabled."
1484
  msgstr ""
1485
 
1486
- #: app/features/events.php:1717
1487
  msgid ""
1488
  "You're translating an event so MEC will use the original event for tickets "
1489
  "and booking. You can only translate the ticket name and description. Please "
1490
  "define exact tickets that you defined in the original event here."
1491
  msgstr ""
1492
 
1493
- #: app/features/events.php:1722
1494
  msgid "Add Ticket"
1495
  msgstr "Ticket hinzufügen"
1496
 
1497
- #: app/features/events.php:1734 app/features/events.php:1934
1498
  #, fuzzy
1499
  #| msgid "Ticket"
1500
  msgid "Ticket ID"
1501
  msgstr "Ticket"
1502
 
1503
- #: app/features/events.php:1734 app/features/events.php:1934
1504
- #: app/features/events.php:3728 app/features/fes.php:243
1505
- #: app/features/ix.php:4088 app/features/ix.php:4130
1506
  #: app/features/labels.php:179 app/features/locations.php:262
1507
  #: app/features/organizers.php:203 app/features/speakers.php:281
1508
  msgid "ID"
1509
  msgstr "ID"
1510
 
1511
- #: app/features/events.php:1737 app/features/events.php:1937
1512
  msgid "Ticket Name"
1513
  msgstr "Ticket Name"
1514
 
1515
- #: app/features/events.php:1742 app/features/events.php:1941
1516
- #: app/features/events.php:3728 app/features/ix.php:4088
1517
- #: app/features/ix.php:4130 app/libraries/skins.php:1323
1518
  msgid "Start Time"
1519
  msgstr "Uhrzeit des Beginns"
1520
 
1521
- #: app/features/events.php:1755 app/features/events.php:1954
1522
- #: app/features/events.php:3728 app/features/ix.php:4088
1523
- #: app/features/ix.php:4130 app/libraries/skins.php:1324
1524
  msgid "End Time"
1525
  msgstr "Uhrzeit Ende"
1526
 
1527
- #: app/features/events.php:1771 app/features/events.php:1969
1528
- #: app/features/events.php:3728 app/libraries/hourlyschedule.php:66
1529
  #: app/libraries/hourlyschedule.php:87 app/libraries/hourlyschedule.php:132
1530
  msgid "Description"
1531
  msgstr "Beschreibung"
1532
 
1533
- #: app/features/events.php:1776 app/features/events.php:1779
1534
- #: app/features/events.php:1973 app/features/events.php:1976
 
1535
  #, fuzzy
1536
  #| msgid "Description"
1537
  msgid "Private Description"
1538
  msgstr "Beschreibung"
1539
 
1540
- #: app/features/events.php:1780 app/features/events.php:1977
1541
  #, php-format
1542
  msgid ""
1543
  "You can show it on the email notifications by placing "
1544
  "%%ticket_private_description%% into the email template."
1545
  msgstr ""
1546
 
1547
- #: app/features/events.php:1788 app/features/events.php:1792
1548
- #: app/features/events.php:1890 app/features/events.php:1917
1549
- #: app/features/events.php:1985 app/features/events.php:1988
1550
- #: app/features/events.php:2070 app/features/events.php:2287
1551
- #: app/features/events.php:2291 app/features/events.php:2333
1552
- #: app/features/events.php:2336 app/features/mec/booking.php:566
1553
  #: app/features/mec/booking.php:569 app/features/mec/booking.php:598
1554
  #: app/features/mec/booking.php:601 app/modules/booking/steps/checkout.php:63
1555
  msgid "Price"
1556
  msgstr "Preis"
1557
 
1558
- #: app/features/events.php:1793 app/features/events.php:1989
1559
  #, fuzzy
1560
  #| msgid "Insert 0 for free ticket. Only numbers please."
1561
  msgid ""
@@ -1563,54 +1640,54 @@ msgid ""
1563
  "any symbols or characters."
1564
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1565
 
1566
- #: app/features/events.php:1802 app/features/events.php:1807
1567
- #: app/features/events.php:1998 app/features/events.php:2001
1568
  msgid "Price Label"
1569
  msgstr "Preisschild"
1570
 
1571
- #: app/features/events.php:1808 app/features/events.php:2002
1572
  msgid "For showing on website. e.g. $15"
1573
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1574
 
1575
- #: app/features/events.php:1819 app/features/events.php:2013
1576
  msgid "Available Tickets"
1577
  msgstr "Verfügbare Tickets: %s "
1578
 
1579
- #: app/features/events.php:1838 app/features/events.php:2025
1580
  msgid "Minimum Ticket e.g. 3"
1581
  msgstr "Ticket minimum z.B. 3"
1582
 
1583
- #: app/features/events.php:1841 app/features/events.php:2028
1584
  msgid "MinimumTicket"
1585
  msgstr "Ticket minimum"
1586
 
1587
- #: app/features/events.php:1843 app/features/events.php:2030
1588
  msgid "Set a number for the minimum ticket reservation possible"
1589
  msgstr ""
1590
 
1591
- #: app/features/events.php:1852 app/features/events.php:2039
1592
  msgid "e.g. 0"
1593
  msgstr "z.B. 0"
1594
 
1595
- #: app/features/events.php:1854 app/features/events.php:2041
1596
  msgid "Day"
1597
  msgstr "Tag"
1598
 
1599
- #: app/features/events.php:1855 app/features/events.php:2042
1600
  msgid "Hour"
1601
  msgstr "Stunde"
1602
 
1603
- #: app/features/events.php:1857 app/features/events.php:2044
1604
  #, php-format
1605
  msgid "Stop selling ticket %s before event start."
1606
  msgstr ""
1607
 
1608
- #: app/features/events.php:1864 app/features/events.php:2051
1609
  msgid "Price per Date"
1610
  msgstr "Preis pro Datum"
1611
 
1612
- #: app/features/events.php:1894 app/features/events.php:1920
1613
- #: app/features/events.php:2072 app/features/labels.php:60
1614
  #: app/features/mec/meta_boxes/display_options.php:1590
1615
  #: app/features/mec/meta_boxes/search_form.php:79
1616
  #: app/features/mec/meta_boxes/search_form.php:167
@@ -1619,50 +1696,50 @@ msgstr "Preis pro Datum"
1619
  #: app/features/mec/meta_boxes/search_form.php:430
1620
  #: app/features/mec/meta_boxes/search_form.php:517
1621
  #: app/features/mec/meta_boxes/search_form.php:604
1622
- #: app/features/mec/meta_boxes/search_form.php:677
1623
- #: app/features/mec/meta_boxes/search_form.php:764
1624
- #: app/features/mec/meta_boxes/search_form.php:851
1625
- #: app/features/mec/meta_boxes/search_form.php:974
1626
- #: app/features/mec/settings.php:1046 app/features/mec/settings.php:1138
1627
- #: app/features/mec/single.php:403 app/features/mec/single.php:445
1628
  #: app/features/mec/wizard.php:436 app/features/mec/wizard.php:475
1629
  #: app/features/search.php:98 app/libraries/skins.php:1213
1630
  msgid "Label"
1631
  msgstr "Label"
1632
 
1633
- #: app/features/events.php:1896 app/features/events.php:1922
1634
- #: app/features/events.php:2074 app/features/events.php:2173
1635
- #: app/features/events.php:2209 app/features/events.php:2316
1636
- #: app/features/events.php:2358 app/features/mec/booking.php:505
1637
  #: app/features/mec/booking.php:534 app/features/mec/booking.php:585
1638
- #: app/features/mec/booking.php:617 app/features/organizers.php:324
1639
- #: app/features/organizers.php:333 app/libraries/hourlyschedule.php:53
1640
  #: app/libraries/hourlyschedule.php:67 app/libraries/hourlyschedule.php:88
1641
  #: app/libraries/hourlyschedule.php:116 app/libraries/hourlyschedule.php:133
1642
- #: app/libraries/main.php:3374 app/libraries/main.php:3404
1643
- #: app/libraries/main.php:3433 app/libraries/main.php:3462
1644
- #: app/libraries/main.php:3492 app/libraries/main.php:3522
1645
- #: app/libraries/main.php:3551 app/libraries/main.php:3581
1646
- #: app/libraries/main.php:3611 app/libraries/main.php:3633
1647
- #: app/libraries/main.php:3664 app/libraries/main.php:3711
1648
- #: app/libraries/main.php:3765 app/libraries/main.php:3815
1649
- #: app/libraries/main.php:3855
1650
  msgid "Remove"
1651
  msgstr "Entfernen"
1652
 
1653
- #: app/features/events.php:2147 app/features/events.php:2185
1654
  #: app/features/mec/booking.php:485 app/features/mec/booking.php:514
1655
  msgid "Fee Title"
1656
  msgstr "Gebühren Name"
1657
 
1658
- #: app/features/events.php:2153 app/features/events.php:2157
1659
- #: app/features/events.php:2190 app/features/events.php:2193
1660
  #: app/features/mec/booking.php:489 app/features/mec/booking.php:492
1661
  #: app/features/mec/booking.php:518 app/features/mec/booking.php:521
1662
  msgid "Amount"
1663
  msgstr "Betrag"
1664
 
1665
- #: app/features/events.php:2158 app/features/events.php:2194
1666
  #: app/features/mec/booking.php:493 app/features/mec/booking.php:522
1667
  msgid ""
1668
  "Fee amount, considered as fixed amount if you set the type to amount "
@@ -1671,25 +1748,25 @@ msgstr ""
1671
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1672
  "sonst als Prozentsatz"
1673
 
1674
- #: app/features/events.php:2167 app/features/events.php:2203
1675
  #: app/features/mec/booking.php:500 app/features/mec/booking.php:529
1676
  msgid "Percent"
1677
  msgstr "Prozent"
1678
 
1679
- #: app/features/events.php:2168 app/features/events.php:2204
1680
  #: app/features/mec/booking.php:501 app/features/mec/booking.php:530
1681
  msgid "Amount (Per Ticket)"
1682
  msgstr "Betrag (pro Ticket)"
1683
 
1684
- #: app/features/events.php:2169 app/features/events.php:2205
1685
  #: app/features/mec/booking.php:502 app/features/mec/booking.php:531
1686
  msgid "Amount (Per Booking)"
1687
  msgstr "Betrag (pro Buchung)"
1688
 
1689
- #: app/features/events.php:2281 app/features/events.php:2328
1690
- #: app/features/events.php:3521 app/features/events.php:3728
1691
- #: app/features/fes/form.php:260 app/features/ix.php:4088
1692
- #: app/features/ix.php:4130 app/features/mec/booking.php:562
1693
  #: app/features/mec/booking.php:594 app/features/mec/styling.php:134
1694
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1695
  #: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:111
@@ -1697,76 +1774,76 @@ msgstr "Betrag (pro Buchung)"
1697
  msgid "Title"
1698
  msgstr "Titel"
1699
 
1700
- #: app/features/events.php:2292 app/features/events.php:2337
1701
  #: app/features/mec/booking.php:570 app/features/mec/booking.php:602
1702
  msgid "Option Price"
1703
  msgstr "Preis Optionen"
1704
 
1705
- #: app/features/events.php:2302 app/features/events.php:2306
1706
- #: app/features/events.php:2346 app/features/events.php:2349
1707
  #: app/features/mec/booking.php:576 app/features/mec/booking.php:579
1708
  #: app/features/mec/booking.php:608 app/features/mec/booking.php:611
1709
  msgid "Maximum Per Ticket"
1710
  msgstr "Maximum pro Ticket"
1711
 
1712
- #: app/features/events.php:2307 app/features/events.php:2350
1713
  #: app/features/mec/booking.php:580 app/features/mec/booking.php:612
1714
  #, fuzzy
1715
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1716
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1717
  msgstr "Maximum pro Ticket. Leerlassen für unendlich."
1718
 
1719
- #: app/features/events.php:2426
1720
  msgid ""
1721
  "You're translating an event so MEC will use the original event for booking "
1722
  "form. You can only translate the field name and options. Please define exact "
1723
  "fields that you defined in the original event here."
1724
  msgstr ""
1725
 
1726
- #: app/features/events.php:2452 app/features/mec/booking.php:628
1727
  #, fuzzy
1728
  #| msgid "Attendees List"
1729
  msgid "Per Attendee Fields"
1730
  msgstr "Teilnehmer Liste"
1731
 
1732
- #: app/features/events.php:2482 app/features/mec/booking.php:661
1733
- #: app/libraries/main.php:3395
1734
  msgid "MEC Name"
1735
  msgstr "MEC Name"
1736
 
1737
- #: app/features/events.php:2483 app/features/mec/booking.php:662
1738
- #: app/libraries/main.php:3424
1739
  msgid "MEC Email"
1740
  msgstr "MEC Email"
1741
 
1742
- #: app/features/events.php:2484 app/features/events.php:2573
1743
  #: app/features/mec/booking.php:663 app/features/mec/booking.php:759
1744
- #: app/features/mec/single.php:239 app/libraries/main.php:3365
1745
  #: app/libraries/skins.php:1330
1746
  msgid "Text"
1747
  msgstr "Text"
1748
 
1749
- #: app/features/events.php:2487 app/features/events.php:2576
1750
  #: app/features/mec/booking.php:666 app/features/mec/booking.php:762
1751
- #: app/features/mec/single.php:243 app/features/organizers.php:103
1752
  #: app/features/organizers.php:148 app/features/speakers.php:119
1753
  #: app/features/speakers.php:200 app/features/speakers.php:284
1754
- #: app/libraries/main.php:3572
1755
  msgid "Tel"
1756
  msgstr "Tel"
1757
 
1758
- #: app/features/events.php:2488 app/features/mec/booking.php:667
1759
- #: app/libraries/main.php:3513
1760
  msgid "File"
1761
  msgstr "Datei"
1762
 
1763
- #: app/features/events.php:2489 app/features/events.php:2577
1764
  #: app/features/mec/booking.php:668 app/features/mec/booking.php:763
1765
- #: app/features/mec/single.php:244 app/libraries/main.php:3602
1766
  msgid "Textarea"
1767
  msgstr "Textbereich"
1768
 
1769
- #: app/features/events.php:2490 app/features/events.php:2578
1770
  #: app/features/mec/booking.php:669 app/features/mec/booking.php:764
1771
  #: app/features/mec/meta_boxes/search_form.php:46
1772
  #: app/features/mec/meta_boxes/search_form.php:134
@@ -1775,21 +1852,21 @@ msgstr "Textbereich"
1775
  #: app/features/mec/meta_boxes/search_form.php:397
1776
  #: app/features/mec/meta_boxes/search_form.php:484
1777
  #: app/features/mec/meta_boxes/search_form.php:571
1778
- #: app/features/mec/meta_boxes/search_form.php:644
1779
- #: app/features/mec/meta_boxes/search_form.php:731
1780
- #: app/features/mec/meta_boxes/search_form.php:818
1781
- #: app/features/mec/meta_boxes/search_form.php:941
1782
- #: app/features/mec/single.php:246 app/libraries/main.php:3655
1783
  msgid "Checkboxes"
1784
  msgstr "Checkboxes"
1785
 
1786
- #: app/features/events.php:2491 app/features/events.php:2579
1787
  #: app/features/mec/booking.php:670 app/features/mec/booking.php:765
1788
- #: app/features/mec/single.php:247 app/libraries/main.php:3702
1789
  msgid "Radio Buttons"
1790
  msgstr "Radio Buttons"
1791
 
1792
- #: app/features/events.php:2492 app/features/events.php:2580
1793
  #: app/features/mec/booking.php:125 app/features/mec/booking.php:671
1794
  #: app/features/mec/booking.php:766
1795
  #: app/features/mec/meta_boxes/search_form.php:45
@@ -1837,81 +1914,86 @@ msgstr "Radio Buttons"
1837
  #: app/features/mec/meta_boxes/search_form.php:593
1838
  #: app/features/mec/meta_boxes/search_form.php:600
1839
  #: app/features/mec/meta_boxes/search_form.php:607
1840
- #: app/features/mec/meta_boxes/search_form.php:643
1841
  #: app/features/mec/meta_boxes/search_form.php:651
1842
  #: app/features/mec/meta_boxes/search_form.php:659
1843
- #: app/features/mec/meta_boxes/search_form.php:666
1844
- #: app/features/mec/meta_boxes/search_form.php:673
1845
- #: app/features/mec/meta_boxes/search_form.php:680
1846
- #: app/features/mec/meta_boxes/search_form.php:702
1847
- #: app/features/mec/meta_boxes/search_form.php:730
1848
  #: app/features/mec/meta_boxes/search_form.php:738
1849
  #: app/features/mec/meta_boxes/search_form.php:746
1850
- #: app/features/mec/meta_boxes/search_form.php:753
1851
- #: app/features/mec/meta_boxes/search_form.php:760
1852
- #: app/features/mec/meta_boxes/search_form.php:767
1853
- #: app/features/mec/meta_boxes/search_form.php:789
1854
- #: app/features/mec/meta_boxes/search_form.php:817
1855
  #: app/features/mec/meta_boxes/search_form.php:825
1856
  #: app/features/mec/meta_boxes/search_form.php:833
1857
- #: app/features/mec/meta_boxes/search_form.php:840
1858
- #: app/features/mec/meta_boxes/search_form.php:847
1859
- #: app/features/mec/meta_boxes/search_form.php:854
1860
- #: app/features/mec/meta_boxes/search_form.php:876
1861
- #: app/features/mec/meta_boxes/search_form.php:940
1862
  #: app/features/mec/meta_boxes/search_form.php:948
1863
  #: app/features/mec/meta_boxes/search_form.php:956
1864
- #: app/features/mec/meta_boxes/search_form.php:963
1865
- #: app/features/mec/meta_boxes/search_form.php:970
1866
- #: app/features/mec/meta_boxes/search_form.php:977
1867
- #: app/features/mec/meta_boxes/search_form.php:999
1868
- #: app/features/mec/single.php:248 app/features/mec/wizard.php:546
1869
- #: app/libraries/main.php:3749
 
1870
  msgid "Dropdown"
1871
  msgstr "Dropdown"
1872
 
1873
- #: app/features/events.php:2493 app/features/events.php:2581
1874
  #: app/features/mec/booking.php:672 app/features/mec/booking.php:767
1875
- #: app/libraries/main.php:3806
1876
  msgid "Agreement"
1877
  msgstr "Zustimmung"
1878
 
1879
- #: app/features/events.php:2494 app/features/events.php:2582
1880
  #: app/features/mec/booking.php:673 app/features/mec/booking.php:768
1881
- #: app/features/mec/single.php:245 app/libraries/main.php:3632
1882
  msgid "Paragraph"
1883
  msgstr "Absatz"
1884
 
1885
- #: app/features/events.php:2543 app/features/mec/booking.php:726
1886
  #, fuzzy
1887
  #| msgid "Required Field"
1888
  msgid "Fixed Fields"
1889
  msgstr "Pflichtfeld"
1890
 
1891
- #: app/features/events.php:3424 app/features/events.php:3442
1892
- #: app/features/events.php:3460 app/features/events.php:3478
 
 
 
 
 
1893
  #, php-format
1894
  msgid "Show all %s"
1895
  msgstr "Zeige alle %s"
1896
 
1897
- #: app/features/events.php:3424
1898
  msgid "labels"
1899
  msgstr "Labels + Eventstatus"
1900
 
1901
- #: app/features/events.php:3442
1902
  msgid "locations"
1903
  msgstr "Orte"
1904
 
1905
- #: app/features/events.php:3460
1906
  msgid "organizers"
1907
  msgstr "Veranstalter"
1908
 
1909
- #: app/features/events.php:3494
1910
  msgid "Attendees List"
1911
  msgstr "Teilnehmer Liste"
1912
 
1913
- #: app/features/events.php:3523 app/features/events.php:3728
1914
- #: app/features/ix.php:4088 app/features/ix.php:4130
1915
  #: app/features/locations.php:58 app/features/locations.php:263
1916
  #: app/features/locations.php:323 app/features/locations.php:325
1917
  #: app/features/locations.php:334
@@ -1923,67 +2005,67 @@ msgstr "Teilnehmer Liste"
1923
  #: app/features/mec/meta_boxes/search_form.php:401
1924
  #: app/features/mec/meta_boxes/search_form.php:488
1925
  #: app/features/mec/meta_boxes/search_form.php:575
1926
- #: app/features/mec/meta_boxes/search_form.php:648
1927
- #: app/features/mec/meta_boxes/search_form.php:735
1928
- #: app/features/mec/meta_boxes/search_form.php:822
1929
- #: app/features/mec/meta_boxes/search_form.php:945
1930
- #: app/features/mec/settings.php:1112 app/features/mec/single.php:393
1931
- #: app/features/mec/single.php:435 app/features/mec/wizard.php:426
1932
  #: app/features/mec/wizard.php:465 app/features/popup/event.php:116
1933
  #: app/features/popup/event.php:125 app/features/search.php:74
1934
- #: app/libraries/main.php:2735 app/libraries/main.php:6621
1935
- #: app/libraries/main.php:6675 app/libraries/skins.php:1097
1936
  #: app/skins/single.php:962 app/skins/single.php:1416
1937
- #: app/skins/single/default.php:244 app/skins/single/default.php:483
1938
  #: app/skins/single/m1.php:174 app/skins/single/m2.php:97
1939
- #: app/skins/single/modern.php:126
1940
  msgid "Location"
1941
  msgstr "Ort"
1942
 
1943
- #: app/features/events.php:3529
1944
  #, fuzzy
1945
  #| msgid "Tickets"
1946
  msgid "Sold Tickets"
1947
  msgstr "Tickets"
1948
 
1949
- #: app/features/events.php:3531
1950
  msgid "Repeat"
1951
  msgstr "Wiederholen"
1952
 
1953
- #: app/features/events.php:3665 app/features/events.php:3666
1954
  #, fuzzy
1955
  #| msgid "iCal Export"
1956
  msgid "iCal / Outlook Export"
1957
  msgstr "ical Export"
1958
 
1959
- #: app/features/events.php:3668 app/features/events.php:3669
1960
  msgid "CSV Export"
1961
  msgstr "CSV Export"
1962
 
1963
- #: app/features/events.php:3671 app/features/events.php:3672
1964
  msgid "MS Excel Export"
1965
  msgstr "MS Excel Export"
1966
 
1967
- #: app/features/events.php:3674 app/features/events.php:3675
1968
  msgid "XML Export"
1969
  msgstr "XML Export"
1970
 
1971
- #: app/features/events.php:3677 app/features/events.php:3678
1972
  msgid "JSON Export"
1973
  msgstr "JSON Export"
1974
 
1975
- #: app/features/events.php:3680 app/features/events.php:3681
1976
- #: app/features/events.php:3837
1977
  msgid "Duplicate"
1978
  msgstr "Kopie"
1979
 
1980
- #: app/features/events.php:3728 app/features/ix.php:4088
1981
- #: app/features/ix.php:4130
1982
  msgid "Link"
1983
  msgstr "Link"
1984
 
1985
- #: app/features/events.php:3728 app/features/ix.php:4088
1986
- #: app/features/ix.php:4130 app/features/locations.php:110
1987
  #: app/features/locations.php:180 app/features/locations.php:264
1988
  #: app/features/mec/meta_boxes/search_form.php:86
1989
  #: app/features/mec/meta_boxes/search_form.php:174
@@ -1992,53 +2074,53 @@ msgstr "Link"
1992
  #: app/features/mec/meta_boxes/search_form.php:437
1993
  #: app/features/mec/meta_boxes/search_form.php:524
1994
  #: app/features/mec/meta_boxes/search_form.php:611
1995
- #: app/features/mec/meta_boxes/search_form.php:684
1996
- #: app/features/mec/meta_boxes/search_form.php:771
1997
- #: app/features/mec/meta_boxes/search_form.php:858
1998
- #: app/features/mec/meta_boxes/search_form.php:981 app/libraries/skins.php:1344
1999
  msgid "Address"
2000
  msgstr "Adresse"
2001
 
2002
- #: app/features/events.php:3728
2003
  #, php-format
2004
  msgid "%s Tel"
2005
  msgstr "%s Tel"
2006
 
2007
- #: app/features/events.php:3728
2008
  #, php-format
2009
  msgid "%s Email"
2010
  msgstr "%s Email"
2011
 
2012
- #: app/features/events.php:3728 app/features/fes/form.php:870
2013
- #: app/features/mec/settings.php:814
2014
  msgid "Featured Image"
2015
  msgstr "Ausgewähltes Bild"
2016
 
2017
- #: app/features/events.php:4057 app/features/fes.php:243
2018
- #: app/features/profile/profile.php:155 app/libraries/main.php:2819
2019
- #: app/libraries/main.php:6655
2020
  msgid "Ticket"
2021
  msgstr "Ticket"
2022
 
2023
- #: app/features/events.php:4060 app/features/profile/profile.php:158
2024
  msgid "Variations"
2025
  msgstr "Variationen"
2026
 
2027
- #: app/features/events.php:4075 app/features/fes.php:317
2028
  msgid "Unknown"
2029
  msgstr "Unbekannt"
2030
 
2031
- #: app/features/events.php:4101
2032
  msgid ""
2033
  "If you want to send an email, first select your attendees and then click in "
2034
  "the button below, please."
2035
  msgstr ""
2036
 
2037
- #: app/features/events.php:4101 app/features/mec/report.php:58
2038
  msgid "Send Email"
2039
  msgstr "E-Mail senden"
2040
 
2041
- #: app/features/events.php:4105
2042
  msgid "No Attendees Found!"
2043
  msgstr "Keine Teilnehmer gefunden!"
2044
 
@@ -2084,8 +2166,8 @@ msgstr "Die Veranstaltung wurde entfernt."
2084
  msgid "Order Time"
2085
  msgstr "Uhrzeit Bestellung"
2086
 
2087
- #: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2767
2088
- #: app/libraries/main.php:2882
2089
  msgid "Transaction ID"
2090
  msgstr "Transaktions-ID"
2091
 
@@ -2093,7 +2175,7 @@ msgstr "Transaktions-ID"
2093
  msgid "Total Price"
2094
  msgstr "Gesamt Preis"
2095
 
2096
- #: app/features/fes.php:243 app/libraries/main.php:2877
2097
  msgid "Gateway"
2098
  msgstr "Gateway"
2099
 
@@ -2157,7 +2239,7 @@ msgstr "Mindestens 3 Zeichen eingeben"
2157
  msgid "Please select at-least one label!"
2158
  msgstr "Bitte Tickets auswählen!"
2159
 
2160
- #: app/features/fes.php:1293
2161
  #, fuzzy
2162
  #| msgid "The event submitted. It will publish as soon as possible."
2163
  msgid "Event submitted. It will publish as soon as possible."
@@ -2165,7 +2247,7 @@ msgstr ""
2165
  "Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
2166
  "veröffentlicht werden."
2167
 
2168
- #: app/features/fes.php:1294
2169
  msgid "The event published."
2170
  msgstr "Die Veranstaltung wurde veröffentlicht."
2171
 
@@ -2173,8 +2255,8 @@ msgstr "Die Veranstaltung wurde veröffentlicht."
2173
  msgid "Go back to events list"
2174
  msgstr "Zurück zur Liste der Veranstaltungen"
2175
 
2176
- #: app/features/fes/form.php:268 app/features/mec/settings.php:965
2177
- #: app/features/mec/settings.php:1041
2178
  msgid "Excerpt"
2179
  msgstr ""
2180
 
@@ -2252,7 +2334,7 @@ msgstr "Benutzerdaten"
2252
  msgid "eg. yourname@gmail.com"
2253
  msgstr "z.B. IhrName@ihrewebseite.de"
2254
 
2255
- #: app/features/fes/form.php:813 app/features/organizers.php:281
2256
  #: app/features/popup/event.php:183
2257
  msgid "eg. John Smith"
2258
  msgstr "z.B. Max Mustermann"
@@ -2270,52 +2352,52 @@ msgstr ""
2270
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
2271
  "einschließlich http(s)://"
2272
 
2273
- #: app/features/fes/form.php:875
2274
  msgid "Remove Image"
2275
  msgstr "Bild entfernen"
2276
 
2277
- #: app/features/fes/form.php:911 app/features/labels.php:61
2278
- #: app/features/labels.php:223 app/features/mec.php:477
2279
  #: app/features/mec/meta_boxes/filter.php:72
2280
- #: app/features/mec/meta_boxes/filter.php:134 app/libraries/main.php:6618
2281
- #: app/libraries/main.php:6672 app/skins/single.php:1175
2282
- #: app/skins/single/default.php:222 app/skins/single/default.php:459
2283
- #: app/skins/single/m1.php:76 app/skins/single/modern.php:267
2284
  msgid "Labels"
2285
  msgstr "Labels"
2286
 
2287
- #: app/features/fes/form.php:957 app/features/mec.php:475
2288
  #: app/features/mec/meta_boxes/filter.php:73
2289
  #: app/features/mec/meta_boxes/filter.php:152 app/features/tag.php:59
2290
  msgid "Tags"
2291
  msgstr "Schlagworte"
2292
 
2293
- #: app/features/fes/form.php:959
2294
  msgid "Insert your desired tags, comma separated."
2295
  msgstr ""
2296
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
2297
 
2298
- #: app/features/fes/form.php:979 app/features/mec.php:484
2299
- #: app/features/mec/modules.php:43 app/features/mec/settings.php:869
2300
  #: app/features/mec/wizard.php:497 app/features/speakers.php:61
2301
  #: app/libraries/hourlyschedule.php:70 app/libraries/hourlyschedule.php:91
2302
- #: app/libraries/hourlyschedule.php:136 app/libraries/main.php:626
2303
- #: app/libraries/main.php:6624 app/libraries/main.php:6678
2304
  #: app/modules/speakers/details.php:18
2305
  msgid "Speakers"
2306
  msgstr "Sprecher"
2307
 
2308
- #: app/features/fes/form.php:981
2309
  msgid "Speakers Names"
2310
  msgstr "Sprecher Namen"
2311
 
2312
- #: app/features/fes/form.php:982
2313
  #, fuzzy
2314
  #| msgid "Separate names with commas Similar Justin, Cris"
2315
  msgid "Separate names with commas: Justin, Chris"
2316
  msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
2317
 
2318
- #: app/features/fes/form.php:1023 app/modules/booking/steps/form.php:352
2319
  msgid "Submit"
2320
  msgstr "Buchung abschließen"
2321
 
@@ -2353,155 +2435,155 @@ msgid "MEC - Import / Export"
2353
  msgstr "MEC - Import / Export"
2354
 
2355
  #: app/features/ix.php:107 app/features/mec/support.php:73
2356
- #: app/libraries/main.php:881
2357
  msgid "Import / Export"
2358
  msgstr "Import / Export"
2359
 
2360
- #: app/features/ix.php:208 app/features/ix.php:212 app/features/ix.php:226
2361
  msgid "Please upload a CSV file."
2362
  msgstr ""
2363
 
2364
- #: app/features/ix.php:221 app/features/ix.php:443
2365
  msgid "An error occurred during the file upload! Please check permissions!"
2366
  msgstr ""
2367
 
2368
- #: app/features/ix.php:277 app/libraries/main.php:6903
2369
- #: app/libraries/main.php:6923
2370
  msgid "Confirmed"
2371
  msgstr "Bestätigt"
2372
 
2373
- #: app/features/ix.php:278 app/libraries/main.php:6904
2374
- #: app/libraries/main.php:6931
2375
  msgid "Rejected"
2376
  msgstr "Abgelehnt"
2377
 
2378
- #: app/features/ix.php:282 app/features/mec/booking.php:1033
2379
  #: app/features/mec/booking.php:1055 app/features/mec/modules.php:441
2380
- #: app/features/mec/modules.php:463 app/features/mec/notifications.php:1605
2381
- #: app/features/mec/notifications.php:1627 app/features/mec/settings.php:1477
2382
- #: app/features/mec/settings.php:1499 app/features/mec/single.php:509
2383
- #: app/features/mec/single.php:531 app/libraries/main.php:6951
2384
  msgid "Verified"
2385
  msgstr "Verifiziert"
2386
 
2387
- #: app/features/ix.php:283 app/features/labels.php:118
2388
- #: app/features/labels.php:144 app/libraries/main.php:6952
2389
  msgid "Canceled"
2390
  msgstr "Abgesagt"
2391
 
2392
- #: app/features/ix.php:418
2393
  #, fuzzy
2394
  #| msgid "The events are imported successfully!"
2395
  msgid "The bookings are imported successfully!"
2396
  msgstr "Die Events wurden erfolgreich importiert!"
2397
 
2398
- #: app/features/ix.php:418
2399
  #, fuzzy
2400
  #| msgid "No bookings found!"
2401
  msgid "No bookings found to import!"
2402
  msgstr "Keine Buchungen gefunden"
2403
 
2404
- #: app/features/ix.php:426
2405
  msgid "Please upload the feed file."
2406
  msgstr ""
2407
 
2408
- #: app/features/ix.php:431 app/features/ix.php:448
2409
  msgid "Please upload an XML or an ICS file."
2410
  msgstr ""
2411
 
2412
- #: app/features/ix.php:434
2413
  msgid "The file type should be XML or ICS."
2414
  msgstr "Der Datei Typ muss XML oder ICS sein."
2415
 
2416
- #: app/features/ix.php:457
2417
  msgid "The events are imported successfully!"
2418
  msgstr "Die Events wurden erfolgreich importiert!"
2419
 
2420
- #: app/features/ix.php:1228
2421
  msgid "Third Party plugin is not installed and activated!"
2422
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
2423
 
2424
- #: app/features/ix.php:1252
2425
  msgid "Third Party plugin is invalid!"
2426
  msgstr "Drittanbieter-Plugin ist ungültig!"
2427
 
2428
- #: app/features/ix.php:3227 app/features/ix.php:3288
2429
  #, fuzzy
2430
  #| msgid "Both of API key and Calendar ID are required!"
2431
  msgid "API key and Calendar ID are required!"
2432
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2433
 
2434
- #: app/features/ix.php:3283 app/features/ix.php:3768 app/features/ix.php:4506
2435
  #, fuzzy
2436
  #| msgid "Please select some events to import!"
2437
  msgid "Please select events to import!"
2438
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
2439
 
2440
- #: app/features/ix.php:3710 app/features/ix.php:3773
2441
  #, fuzzy
2442
  #| msgid "Both of API key and Calendar ID are required!"
2443
  msgid "API key and Group URL are required!"
2444
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2445
 
2446
- #: app/features/ix.php:4012
2447
  msgid "Check at Meetup"
2448
  msgstr ""
2449
 
2450
- #: app/features/ix.php:4088 app/features/ix.php:4130
2451
  msgid "Organizer Tel"
2452
  msgstr "Organisator Telefon"
2453
 
2454
- #: app/features/ix.php:4088 app/features/ix.php:4130
2455
  msgid "Organizer Email"
2456
  msgstr "Organisator Email"
2457
 
2458
- #: app/features/ix.php:4206
2459
  #, fuzzy
2460
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2461
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2462
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2463
 
2464
- #: app/features/ix.php:4229
2465
  #, fuzzy, php-format
2466
  #| msgid "All seems good! Please click %s for authenticating your app."
2467
  msgid "All seems good! Please click %s to authenticate your app."
2468
  msgstr ""
2469
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
2470
 
2471
- #: app/features/ix.php:4229 app/features/mec/settings.php:1364
2472
  msgid "here"
2473
  msgstr ""
2474
 
2475
- #: app/features/ix.php:4283
2476
  #, fuzzy
2477
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2478
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2479
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2480
 
2481
- #: app/features/ix.php:4428
2482
  #, fuzzy, php-format
2483
  #| msgid "%s events added to Google Calendar successfully."
2484
  msgid "%s events added to Google Calendar with success."
2485
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
2486
 
2487
- #: app/features/ix.php:4429
2488
  #, fuzzy, php-format
2489
  #| msgid "%s previously added events get updated."
2490
  msgid "%s Updated previously added events."
2491
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
2492
 
2493
- #: app/features/ix.php:4430
2494
  #, php-format
2495
  msgid "%s events failed to add for following reasons: %s"
2496
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
2497
 
2498
- #: app/features/ix.php:4462
2499
  #, fuzzy
2500
  #| msgid "Please insert your facebook page's link."
2501
  msgid "Please insert your Facebook page's link."
2502
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2503
 
2504
- #: app/features/ix.php:4473 app/features/ix.php:4515
2505
  #, fuzzy
2506
  #| msgid ""
2507
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -2513,7 +2595,7 @@ msgstr ""
2513
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
2514
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
2515
 
2516
- #: app/features/ix.php:4510
2517
  msgid "Please insert your facebook page's link."
2518
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2519
 
@@ -2652,8 +2734,8 @@ msgid "Calendar ID"
2652
  msgstr "Kalender ID"
2653
 
2654
  #: app/features/ix/export_g_calendar.php:48
2655
- #: app/features/ix/export_g_calendar.php:106
2656
- #: app/features/ix/export_g_calendar.php:121
2657
  msgid "Authenticate"
2658
  msgstr "Authentifizierung"
2659
 
@@ -2679,23 +2761,36 @@ msgid "Toggle"
2679
  msgstr "Umschalten"
2680
 
2681
  #: app/features/ix/export_g_calendar.php:72
2682
- #: app/features/ix/export_g_calendar.php:151
2683
- #: app/features/ix/export_g_calendar.php:166
2684
- #: app/features/mec/notifications.php:182
2685
- #: app/features/mec/notifications.php:327
2686
- #: app/features/mec/notifications.php:488
2687
- #: app/features/mec/notifications.php:663
2688
- #: app/features/mec/notifications.php:1284 app/features/notifications.php:141
 
 
 
 
 
 
 
 
 
 
 
 
 
2689
  msgid "Add to Google Calendar"
2690
  msgstr "Zum Google Kalender hinzufügen"
2691
 
2692
- #: app/features/ix/export_g_calendar.php:93 app/features/mec/booking.php:1035
2693
- #: app/features/mec/modules.php:443 app/features/mec/notifications.php:1607
2694
- #: app/features/mec/settings.php:1479 app/features/mec/single.php:511
2695
  msgid "Checking ..."
2696
  msgstr "Überprüfung"
2697
 
2698
- #: app/features/ix/export_g_calendar.php:138
2699
  msgid "Exporting ..."
2700
  msgstr "Exportieren…"
2701
 
@@ -2836,12 +2931,6 @@ msgstr ""
2836
  msgid "Event Title: %s"
2837
  msgstr "Event Titel: %s"
2838
 
2839
- #: app/features/ix/import_f_calendar.php:72
2840
- #: app/features/ix/import_g_calendar.php:87
2841
- #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:67
2842
- msgid "Import Options"
2843
- msgstr "Import Optionen"
2844
-
2845
  #: app/features/ix/import_f_calendar.php:76
2846
  #: app/features/ix/import_g_calendar.php:97
2847
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:84
@@ -2986,9 +3075,9 @@ msgstr ""
2986
  msgid "Auto Google Import"
2987
  msgstr "Automatischer Google Calender Import"
2988
 
2989
- #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2990
- #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2991
- #: app/features/mec/notifications.php:1141
2992
  msgid "Important Note"
2993
  msgstr "Important Note"
2994
 
@@ -3005,7 +3094,7 @@ msgstr ""
3005
  msgid "Auto Google Export"
3006
  msgstr "Auto Google Export"
3007
 
3008
- #: app/features/ix/sync.php:41
3009
  #, php-format
3010
  msgid ""
3011
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
@@ -3014,11 +3103,11 @@ msgstr ""
3014
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
3015
  "ansonsten würden Ihre Webseiten Events nicht zum Google Kalender exportiert. "
3016
 
3017
- #: app/features/ix/sync.php:49
3018
  msgid "Auto Facebook Import"
3019
  msgstr "Auto Facebook Kalender Import"
3020
 
3021
- #: app/features/ix/sync.php:52
3022
  #, php-format
3023
  msgid ""
3024
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
@@ -3027,13 +3116,13 @@ msgstr ""
3027
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
3028
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
3029
 
3030
- #: app/features/ix/sync.php:60
3031
  #, fuzzy
3032
  #| msgid "Auto Google Import"
3033
  msgid "Auto Meetup Import"
3034
  msgstr "Automatischer Google Calender Import"
3035
 
3036
- #: app/features/ix/sync.php:63
3037
  #, fuzzy, php-format
3038
  #| msgid ""
3039
  #| "Set a cronjob to call %s file atleast once per day otherwise it won't "
@@ -3045,41 +3134,41 @@ msgstr ""
3045
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
3046
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
3047
 
3048
- #: app/features/ix/sync.php:67
3049
  msgid "Auto set cronjobs (Once Daily)"
3050
  msgstr ""
3051
 
3052
- #: app/features/ix/sync.php:68
3053
  msgid ""
3054
  "First you need to enable the above options for each to be able to use this."
3055
  msgstr ""
3056
 
3057
- #: app/features/ix/sync.php:69
3058
  msgid ""
3059
  "If you cannot set CronJob on your server, you can use the options below. "
3060
  "Please make sure to NOT use the following options and setting up the server "
3061
  "manually together."
3062
  msgstr ""
3063
 
3064
- #: app/features/ix/sync.php:73
3065
  #, fuzzy
3066
  #| msgid "Google Cal. Import"
3067
  msgid "Google import"
3068
  msgstr "Google Calender Import"
3069
 
3070
- #: app/features/ix/sync.php:78
3071
  #, fuzzy
3072
  #| msgid "Google Cal. Export"
3073
  msgid "Google export"
3074
  msgstr "Google Kalender Export"
3075
 
3076
- #: app/features/ix/sync.php:83
3077
  #, fuzzy
3078
  #| msgid "Import"
3079
  msgid "Meetup import"
3080
  msgstr "Import"
3081
 
3082
- #: app/features/ix/sync.php:90 app/features/mec/wizard.php:735
3083
  msgid "Save"
3084
  msgstr "Sichern"
3085
 
@@ -3207,10 +3296,10 @@ msgstr "Slug"
3207
  msgid "Event %s"
3208
  msgstr "Event %s"
3209
 
3210
- #: app/features/locations.php:59 app/features/mec.php:478
3211
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
3212
- #: app/features/mec/meta_boxes/filter.php:98 app/libraries/main.php:6620
3213
- #: app/libraries/main.php:6674
3214
  msgid "Locations"
3215
  msgstr "Orte"
3216
 
@@ -3278,7 +3367,7 @@ msgstr ""
3278
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
3279
  "Westfalenhalle"
3280
 
3281
- #: app/features/locations.php:346 app/features/mec/settings.php:857
3282
  #: app/features/popup/event.php:143 app/widgets/single.php:117
3283
  msgid "Event Location"
3284
  msgstr "Veranstaltungsort"
@@ -3308,7 +3397,7 @@ msgstr ""
3308
  msgid "Get Latitude and Longitude"
3309
  msgstr ""
3310
 
3311
- #: app/features/locations.php:386 app/features/organizers.php:299
3312
  #: app/features/popup/event.php:202
3313
  msgid "Choose image"
3314
  msgstr "Bild wählen"
@@ -3317,8 +3406,8 @@ msgstr "Bild wählen"
3317
  msgid "Don't show map in single event page"
3318
  msgstr "Karte in Einzelansicht nicht anzeigen"
3319
 
3320
- #: app/features/locations.php:403 app/libraries/main.php:6658
3321
- #: app/libraries/main.php:6705
3322
  msgid "Other Locations"
3323
  msgstr "Andere Orte"
3324
 
@@ -3356,237 +3445,247 @@ msgstr "API Passwort"
3356
  msgid "Forgot Password?"
3357
  msgstr "API Passwort"
3358
 
3359
- #: app/features/mec.php:212
3360
  msgid ""
3361
  "Activation failed. Please check your purchase code or license type."
3362
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
3363
  msgstr ""
3364
 
3365
- #: app/features/mec.php:212 app/features/mec/support-page.php:136
3366
  msgid "Troubleshooting"
3367
  msgstr "Problembehebung"
3368
 
3369
- #: app/features/mec.php:300
3370
  #, fuzzy
3371
  #| msgid "Select All"
3372
  msgid "Select Date"
3373
  msgstr "Alles Auswählen"
3374
 
3375
- #: app/features/mec.php:304 app/skins/masonry.php:260
3376
  msgid "All"
3377
  msgstr "Alle"
3378
 
3379
- #: app/features/mec.php:346
3380
  msgid ""
3381
  "Your option is not in JSON format. Please insert correct options in this "
3382
  "field and try again."
3383
  msgstr ""
3384
 
3385
- #: app/features/mec.php:353
3386
  msgid "Your options field can not be empty!"
3387
  msgstr "Ihr Optionen Feld darf nicht leer sein!"
3388
 
3389
- #: app/features/mec.php:359
3390
  msgid "Your options imported successfuly."
3391
  msgstr "Ihre Einstellungen wurden erfolgreich importiert."
3392
 
3393
- #: app/features/mec.php:458
3394
  msgid "MEC - Support"
3395
  msgstr "MEC - Support"
3396
 
3397
- #: app/features/mec.php:458 app/features/mec/support-page.php:9
3398
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
3399
  msgid "Support"
3400
  msgstr "Support"
3401
 
3402
- #: app/features/mec.php:479 app/features/mec/dashboard.php:288
3403
  #: app/features/mec/meta_boxes/filter.php:71
3404
  #: app/features/mec/meta_boxes/filter.php:116 app/features/organizers.php:59
3405
- #: app/libraries/main.php:6622 app/libraries/main.php:6676
3406
  msgid "Organizers"
3407
  msgstr "Veranstalter"
3408
 
3409
- #: app/features/mec.php:487 app/features/mec.php:538
3410
  #: app/features/mec/dashboard.php:274
3411
  msgid "Shortcodes"
3412
  msgstr "Shortcodes"
3413
 
3414
- #: app/features/mec.php:488
3415
  msgid "MEC - Settings"
3416
  msgstr "MEC - Einstellungen"
3417
 
3418
- #: app/features/mec.php:489
3419
  msgid "MEC - Addons"
3420
  msgstr "MEC - Erweiterungen"
3421
 
3422
- #: app/features/mec.php:489 app/features/mec/addons.php:11
3423
  msgid "Addons"
3424
  msgstr "Erweiterungen"
3425
 
3426
- #: app/features/mec.php:494
3427
  #, fuzzy
3428
  #| msgid "Support"
3429
  msgid "MEC - Report"
3430
  msgstr "Support"
3431
 
3432
- #: app/features/mec.php:494
3433
  #, fuzzy
3434
  #| msgid "Export"
3435
  msgid "Report"
3436
  msgstr "Export"
3437
 
3438
- #: app/features/mec.php:497
3439
  #, fuzzy
3440
  #| msgid "Support"
3441
  msgid "MEC - Go Pro"
3442
  msgstr "Support"
3443
 
3444
- #: app/features/mec.php:497 app/features/mec.php:1316
3445
  #: app/features/mec/go-pro.php:9
3446
  msgid "Go Pro"
3447
  msgstr ""
3448
 
3449
- #: app/features/mec.php:540
3450
  msgid "Add Shortcode"
3451
  msgstr "Shortcode hinzufügen"
3452
 
3453
- #: app/features/mec.php:541
3454
  msgid "Add New Shortcode"
3455
  msgstr "Neuen Shortcode hinzufügen"
3456
 
3457
- #: app/features/mec.php:542
3458
  msgid "No shortcodes found!"
3459
  msgstr "Keine Shortcodes gefunden!"
3460
 
3461
- #: app/features/mec.php:543
3462
  msgid "All Shortcodes"
3463
  msgstr "Alle Shortcodes"
3464
 
3465
- #: app/features/mec.php:544
3466
  msgid "Edit shortcodes"
3467
  msgstr "Shortcode ändern"
3468
 
3469
- #: app/features/mec.php:545
3470
  msgid "No shortcodes found in Trash!"
3471
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
3472
 
3473
- #: app/features/mec.php:598
3474
  msgid "Display Options"
3475
  msgstr "Darstellungsoptionen"
3476
 
3477
- #: app/features/mec.php:599
3478
  msgid "Filter Options"
3479
  msgstr "Filteroptionen"
3480
 
3481
- #: app/features/mec.php:601
3482
  msgid "Search Form"
3483
  msgstr "Suche Formular"
3484
 
3485
- #: app/features/mec.php:1017
3486
  msgid "Display content's images as Popup"
3487
  msgstr ""
3488
 
3489
- #: app/features/mec.php:1031 app/features/popup/shortcode.php:473
3490
  msgid "Single Event Display Method"
3491
  msgstr "Single Event Anzeigemethode"
3492
 
3493
- #: app/features/mec.php:1038 app/features/popup/shortcode.php:485
3494
  #, fuzzy
3495
  #| msgid "Modal 1"
3496
  msgid "Modal Popup"
3497
  msgstr "Modal 1"
3498
 
3499
- #: app/features/mec.php:1039
3500
  #, fuzzy
3501
  #| msgid "Disabled"
3502
  msgid "Disable Link"
3503
  msgstr "Deaktiviert"
3504
 
3505
- #: app/features/mec.php:1052
3506
  #, fuzzy
3507
  #| msgid "Booking Options"
3508
  msgid "Booking Button / Icon"
3509
  msgstr "Buchungsoptionen"
3510
 
3511
- #: app/features/mec.php:1065
3512
  #, fuzzy
3513
  #| msgid "Organizers"
3514
  msgid "Display Organizers"
3515
  msgstr "Veranstalter"
3516
 
3517
- #: app/features/mec.php:1222 app/features/mec.php:1395
3518
  msgid "Total Bookings"
3519
  msgstr "Gesamte Buchungen"
3520
 
3521
- #: app/features/mec.php:1238 app/features/mec/dashboard.php:65
3522
  msgid "Modern Events Calendar (Lite)"
3523
  msgstr "Moderner Event Kalender (Lite)"
3524
 
3525
- #: app/features/mec.php:1247 app/features/mec/dashboard.php:299
3526
  #: app/features/mec/settings.php:483
3527
  msgid "Upcoming Events"
3528
  msgstr "Bevorstehende Events"
3529
 
3530
- #: app/features/mec.php:1302
3531
  #, fuzzy
3532
  #| msgid "Update %s"
3533
  msgid "News & Updates"
3534
  msgstr "Update %s"
3535
 
3536
- #: app/features/mec.php:1315
3537
  msgid "Blog"
3538
  msgstr ""
3539
 
3540
- #: app/features/mec.php:1315
3541
  msgid "Help"
3542
  msgstr ""
3543
 
3544
- #: app/features/mec.php:1370
3545
  #, fuzzy, php-format
3546
  #| msgid "Total Sells (%s)"
3547
  msgid "Total Sales (%s)"
3548
  msgstr "Alle Verkäufe (%s)"
3549
 
3550
- #: app/features/mec.php:1404
3551
  msgid "This Month"
3552
  msgstr "Diesen Monat"
3553
 
3554
- #: app/features/mec.php:1410
3555
  msgid "Last Month"
3556
  msgstr "Letzten Monat"
3557
 
3558
- #: app/features/mec.php:1416
3559
  msgid "This Year"
3560
  msgstr "Diese Jahr"
3561
 
3562
- #: app/features/mec.php:1422
3563
  msgid "Last Year"
3564
  msgstr "Letztes Jahr"
3565
 
3566
- #: app/features/mec.php:1442
3567
  msgid "Bar"
3568
  msgstr "Bar"
3569
 
3570
- #: app/features/mec.php:1443
3571
  msgid "Line"
3572
  msgstr "Linie"
3573
 
3574
- #: app/features/mec.php:1445
3575
  msgid "Filter"
3576
  msgstr "Filter"
3577
 
3578
- #: app/features/mec.php:1469
3579
  #, fuzzy
3580
  #| msgid "Modern Events Calendar"
3581
  msgid "Print Calendar"
3582
  msgstr "Moderner Event Kalender "
3583
 
3584
- #: app/features/mec.php:1484
3585
  #, fuzzy
3586
  #| msgid "Multiple Day Events"
3587
  msgid "Display Events"
3588
  msgstr "Mehrtagesveranstaltung"
3589
 
 
 
 
 
 
 
 
 
 
 
3590
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:63
3591
  #: app/features/mec/dashboard.php:84 app/features/mec/go-pro.php:14
3592
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
@@ -3620,15 +3719,15 @@ msgstr "Suche…"
3620
  #: app/features/mec/modules.php:17 app/features/mec/modules.php:399
3621
  #: app/features/mec/modules.php:409 app/features/mec/modules.php:460
3622
  #: app/features/mec/modules.php:474 app/features/mec/notifications.php:14
3623
- #: app/features/mec/notifications.php:1540
3624
- #: app/features/mec/notifications.php:1552
3625
- #: app/features/mec/notifications.php:1624
3626
- #: app/features/mec/notifications.php:1638 app/features/mec/settings.php:35
3627
- #: app/features/mec/settings.php:1428 app/features/mec/settings.php:1438
3628
- #: app/features/mec/settings.php:1496 app/features/mec/settings.php:1510
3629
- #: app/features/mec/single.php:21 app/features/mec/single.php:476
3630
- #: app/features/mec/single.php:486 app/features/mec/single.php:528
3631
- #: app/features/mec/single.php:542 app/features/mec/styles.php:11
3632
  #: app/features/mec/styles.php:32 app/features/mec/styles.php:42
3633
  #: app/features/mec/styles.php:79 app/features/mec/styles.php:88
3634
  #: app/features/mec/styling.php:37 app/features/mec/styling.php:285
@@ -3876,8 +3975,8 @@ msgid ""
3876
  msgstr ""
3877
 
3878
  #: app/features/mec/booking.php:286 app/features/mec/booking.php:288
3879
- #: app/features/mec/booking.php:298 app/features/mec/settings.php:712
3880
- #: app/features/mec/settings.php:722
3881
  msgid "Thank You Page"
3882
  msgstr "Danke Seite"
3883
 
@@ -3890,15 +3989,15 @@ msgstr ""
3890
  "es leer, wenn Sie es deaktivieren möchten."
3891
 
3892
  #: app/features/mec/booking.php:306 app/features/mec/booking.php:311
3893
- #: app/features/mec/settings.php:745 app/features/mec/settings.php:750
3894
  msgid "Thank You Page Time Interval"
3895
  msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
3896
 
3897
- #: app/features/mec/booking.php:308 app/features/mec/settings.php:747
3898
  msgid "2000 mean 2 seconds"
3899
  msgstr "2000 bedeutet 2 Sekunden"
3900
 
3901
- #: app/features/mec/booking.php:312 app/features/mec/settings.php:751
3902
  msgid ""
3903
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
3904
  "2000 means 2 seconds."
@@ -3966,7 +4065,7 @@ msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3966
  msgid "Send confirmation email in auto confirmation mode"
3967
  msgstr ""
3968
 
3969
- #: app/features/mec/booking.php:432 app/libraries/main.php:616
3970
  #, fuzzy
3971
  #| msgid "Booking"
3972
  msgid "Booking Shortcode"
@@ -4000,7 +4099,7 @@ msgid ""
4000
  msgstr ""
4001
 
4002
  #: app/features/mec/booking.php:466 app/features/mec/booking.php:854
4003
- #: app/libraries/main.php:618
4004
  msgid "Taxes / Fees"
4005
  msgstr "Steuern/Gebühren"
4006
 
@@ -4012,7 +4111,7 @@ msgstr "Modul für Gebühren/Steuern aktivieren"
4012
  msgid "Add Fee"
4013
  msgstr "Gebühr hinzufügen"
4014
 
4015
- #: app/features/mec/booking.php:543 app/libraries/main.php:619
4016
  msgid "Ticket Variations & Options"
4017
  msgstr ""
4018
 
@@ -4177,22 +4276,22 @@ msgid ""
4177
  msgstr ""
4178
 
4179
  #: app/features/mec/booking.php:1030 app/features/mec/messages.php:78
4180
- #: app/features/mec/modules.php:438 app/features/mec/notifications.php:1602
4181
- #: app/features/mec/settings.php:1474 app/features/mec/single.php:506
4182
  #: app/features/mec/styles.php:62 app/features/mec/styling.php:340
4183
  msgid "Saved"
4184
  msgstr "Gesichert"
4185
 
4186
  #: app/features/mec/booking.php:1031 app/features/mec/messages.php:79
4187
- #: app/features/mec/modules.php:439 app/features/mec/notifications.php:1603
4188
- #: app/features/mec/settings.php:1475 app/features/mec/single.php:507
4189
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:341
4190
  msgid "Settings Saved!"
4191
  msgstr "Einstellungen gespeichert!"
4192
 
4193
  #: app/features/mec/booking.php:1057 app/features/mec/modules.php:465
4194
- #: app/features/mec/notifications.php:1629 app/features/mec/settings.php:1501
4195
- #: app/features/mec/single.php:533
4196
  msgid "Please Refresh Page"
4197
  msgstr "Bitte Seiten Refresh vornehmen"
4198
 
@@ -4308,7 +4407,7 @@ msgid "Download Settings"
4308
  msgstr "Einstellungen Herunterladen"
4309
 
4310
  #: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
4311
- #: app/features/mec/support.php:66 app/libraries/main.php:874
4312
  msgid "Messages"
4313
  msgstr "Nachrichten"
4314
 
@@ -4893,15 +4992,15 @@ msgstr "Standardansicht"
4893
 
4894
  #: app/features/mec/meta_boxes/display_options.php:700
4895
  #: app/features/mec/meta_boxes/display_options.php:724
4896
- #: app/libraries/main.php:360 app/libraries/main.php:2160
4897
- #: app/libraries/main.php:2185
4898
  msgid "List View"
4899
  msgstr "Listenansicht"
4900
 
4901
  #: app/features/mec/meta_boxes/display_options.php:701
4902
  #: app/features/mec/meta_boxes/display_options.php:766
4903
- #: app/libraries/main.php:361 app/libraries/main.php:2161
4904
- #: app/libraries/main.php:2186
4905
  msgid "Grid View"
4906
  msgstr "Rasterdarstellung"
4907
 
@@ -4915,8 +5014,8 @@ msgstr "Stundenplan"
4915
 
4916
  #: app/features/mec/meta_boxes/display_options.php:703
4917
  #: app/features/mec/meta_boxes/display_options.php:808
4918
- #: app/libraries/main.php:364 app/libraries/main.php:2154
4919
- #: app/libraries/main.php:2179
4920
  msgid "Yearly View"
4921
  msgstr "Jahresansicht"
4922
 
@@ -4927,15 +5026,15 @@ msgstr "Monatliche Kalenderansicht"
4927
 
4928
  #: app/features/mec/meta_boxes/display_options.php:705
4929
  #: app/features/mec/meta_boxes/display_options.php:857
4930
- #: app/libraries/main.php:367 app/libraries/main.php:2156
4931
- #: app/libraries/main.php:2181
4932
  msgid "Weekly View"
4933
  msgstr "Wochenansicht"
4934
 
4935
  #: app/features/mec/meta_boxes/display_options.php:706
4936
  #: app/features/mec/meta_boxes/display_options.php:867
4937
- #: app/libraries/main.php:366 app/libraries/main.php:2157
4938
- #: app/libraries/main.php:2182
4939
  msgid "Daily View"
4940
  msgstr "Tagesansicht"
4941
 
@@ -5344,8 +5443,9 @@ msgid "Authors"
5344
  msgstr "Autoren"
5345
 
5346
  #: app/features/mec/meta_boxes/filter.php:75
5347
- #: app/features/mec/meta_boxes/filter.php:183 app/features/mec/settings.php:982
5348
- #: app/features/occurrences.php:72 app/features/occurrences.php:102
 
5349
  #, fuzzy
5350
  #| msgid "Occurrences times"
5351
  msgid "Occurrences"
@@ -5407,10 +5507,6 @@ msgstr "Wählen Sie die gewünschten Autoren zum Filtern aus"
5407
  msgid "Show only one occurrence of events"
5408
  msgstr "Nächstes Auftreten von anderen Events."
5409
 
5410
- #: app/features/mec/meta_boxes/filter.php:198 app/features/mec/settings.php:484
5411
- msgid "Expired Events"
5412
- msgstr "Abgelaufene Events"
5413
-
5414
  #: app/features/mec/meta_boxes/filter.php:202
5415
  #: app/features/popup/shortcode.php:501
5416
  msgid "Include Expired Events"
@@ -5496,15 +5592,15 @@ msgstr "Zeige alle %s"
5496
  #: app/features/mec/meta_boxes/search_form.php:416
5497
  #: app/features/mec/meta_boxes/search_form.php:503
5498
  #: app/features/mec/meta_boxes/search_form.php:590
5499
- #: app/features/mec/meta_boxes/search_form.php:663
5500
- #: app/features/mec/meta_boxes/search_form.php:750
5501
- #: app/features/mec/meta_boxes/search_form.php:837
5502
- #: app/features/mec/meta_boxes/search_form.php:960
5503
- #: app/features/mec/settings.php:1125 app/features/mec/single.php:398
5504
- #: app/features/mec/single.php:440 app/features/mec/wizard.php:431
5505
  #: app/features/mec/wizard.php:470 app/features/search.php:86
5506
  #: app/features/speakers.php:60 app/features/speakers.php:282
5507
- #: app/libraries/main.php:6625 app/libraries/main.php:6679
5508
  #: app/libraries/skins.php:1156 app/modules/speakers/details.php:18
5509
  msgid "Speaker"
5510
  msgstr "Sprecher"
@@ -5516,12 +5612,12 @@ msgstr "Sprecher"
5516
  #: app/features/mec/meta_boxes/search_form.php:423
5517
  #: app/features/mec/meta_boxes/search_form.php:510
5518
  #: app/features/mec/meta_boxes/search_form.php:597
5519
- #: app/features/mec/meta_boxes/search_form.php:670
5520
- #: app/features/mec/meta_boxes/search_form.php:757
5521
- #: app/features/mec/meta_boxes/search_form.php:844
5522
- #: app/features/mec/meta_boxes/search_form.php:967
5523
- #: app/features/mec/settings.php:1132 app/features/mec/single.php:407
5524
- #: app/features/mec/single.php:449 app/features/mec/wizard.php:440
5525
  #: app/features/mec/wizard.php:479 app/features/search.php:92
5526
  #: app/features/tag.php:58 app/libraries/skins.php:1185
5527
  msgid "Tag"
@@ -5534,10 +5630,10 @@ msgstr "Schlagwort"
5534
  #: app/features/mec/meta_boxes/search_form.php:440
5535
  #: app/features/mec/meta_boxes/search_form.php:527
5536
  #: app/features/mec/meta_boxes/search_form.php:614
5537
- #: app/features/mec/meta_boxes/search_form.php:687
5538
- #: app/features/mec/meta_boxes/search_form.php:774
5539
- #: app/features/mec/meta_boxes/search_form.php:861
5540
- #: app/features/mec/meta_boxes/search_form.php:984
5541
  #, fuzzy
5542
  #| msgid "Address"
5543
  msgid "Address Input"
@@ -5556,15 +5652,15 @@ msgstr "Adresse"
5556
  #: app/features/mec/meta_boxes/search_form.php:529
5557
  #: app/features/mec/meta_boxes/search_form.php:558
5558
  #: app/features/mec/meta_boxes/search_form.php:616
5559
- #: app/features/mec/meta_boxes/search_form.php:631
5560
- #: app/features/mec/meta_boxes/search_form.php:689
5561
- #: app/features/mec/meta_boxes/search_form.php:718
5562
- #: app/features/mec/meta_boxes/search_form.php:776
5563
- #: app/features/mec/meta_boxes/search_form.php:805
5564
- #: app/features/mec/meta_boxes/search_form.php:863
5565
- #: app/features/mec/meta_boxes/search_form.php:892
5566
- #: app/features/mec/meta_boxes/search_form.php:986
5567
- #: app/features/mec/meta_boxes/search_form.php:1015
5568
  msgid "Placeholder Text ..."
5569
  msgstr ""
5570
 
@@ -5575,16 +5671,17 @@ msgstr ""
5575
  #: app/features/mec/meta_boxes/search_form.php:448
5576
  #: app/features/mec/meta_boxes/search_form.php:535
5577
  #: app/features/mec/meta_boxes/search_form.php:622
5578
- #: app/features/mec/meta_boxes/search_form.php:695
5579
- #: app/features/mec/meta_boxes/search_form.php:782
5580
- #: app/features/mec/meta_boxes/search_form.php:869
5581
- #: app/features/mec/meta_boxes/search_form.php:992
5582
  msgid "Min / Max Inputs"
5583
  msgstr ""
5584
 
5585
  #: app/features/mec/meta_boxes/search_form.php:101
5586
  #: app/features/mec/meta_boxes/search_form.php:189
5587
  #: app/features/mec/meta_boxes/search_form.php:277
 
5588
  #, fuzzy
5589
  #| msgid "Filter"
5590
  msgid "Date Filter"
@@ -5593,12 +5690,14 @@ msgstr "Filter"
5593
  #: app/features/mec/meta_boxes/search_form.php:104
5594
  #: app/features/mec/meta_boxes/search_form.php:192
5595
  #: app/features/mec/meta_boxes/search_form.php:280
 
5596
  msgid "Year & Month Dropdown"
5597
  msgstr ""
5598
 
5599
  #: app/features/mec/meta_boxes/search_form.php:105
5600
  #: app/features/mec/meta_boxes/search_form.php:193
5601
  #: app/features/mec/meta_boxes/search_form.php:281
 
5602
  #, fuzzy
5603
  #| msgid "Date Format"
5604
  msgid "Date Picker"
@@ -5610,10 +5709,10 @@ msgstr "Datumsformat"
5610
  #: app/features/mec/meta_boxes/search_form.php:372
5611
  #: app/features/mec/meta_boxes/search_form.php:459
5612
  #: app/features/mec/meta_boxes/search_form.php:546
5613
- #: app/features/mec/meta_boxes/search_form.php:706
5614
- #: app/features/mec/meta_boxes/search_form.php:793
5615
- #: app/features/mec/meta_boxes/search_form.php:880
5616
- #: app/features/mec/meta_boxes/search_form.php:1003
5617
  #, fuzzy
5618
  #| msgid "Filter"
5619
  msgid "Time Filter"
@@ -5625,10 +5724,10 @@ msgstr "Filter"
5625
  #: app/features/mec/meta_boxes/search_form.php:375
5626
  #: app/features/mec/meta_boxes/search_form.php:462
5627
  #: app/features/mec/meta_boxes/search_form.php:549
5628
- #: app/features/mec/meta_boxes/search_form.php:709
5629
- #: app/features/mec/meta_boxes/search_form.php:796
5630
- #: app/features/mec/meta_boxes/search_form.php:883
5631
- #: app/features/mec/meta_boxes/search_form.php:1006
5632
  #, fuzzy
5633
  #| msgid "Local Time"
5634
  msgid "Local Time Picker"
@@ -5640,11 +5739,11 @@ msgstr "Lokale Zeit"
5640
  #: app/features/mec/meta_boxes/search_form.php:379
5641
  #: app/features/mec/meta_boxes/search_form.php:466
5642
  #: app/features/mec/meta_boxes/search_form.php:553
5643
- #: app/features/mec/meta_boxes/search_form.php:626
5644
- #: app/features/mec/meta_boxes/search_form.php:713
5645
- #: app/features/mec/meta_boxes/search_form.php:800
5646
- #: app/features/mec/meta_boxes/search_form.php:887
5647
- #: app/features/mec/meta_boxes/search_form.php:1010
5648
  msgid "Text Search"
5649
  msgstr "Textsuche"
5650
 
@@ -5654,30 +5753,30 @@ msgstr "Textsuche"
5654
  #: app/features/mec/meta_boxes/search_form.php:382
5655
  #: app/features/mec/meta_boxes/search_form.php:469
5656
  #: app/features/mec/meta_boxes/search_form.php:556
5657
- #: app/features/mec/meta_boxes/search_form.php:629
5658
- #: app/features/mec/meta_boxes/search_form.php:716
5659
- #: app/features/mec/meta_boxes/search_form.php:803
5660
- #: app/features/mec/meta_boxes/search_form.php:890
5661
- #: app/features/mec/meta_boxes/search_form.php:1013
5662
  msgid "Text Input"
5663
  msgstr "Text eingeben"
5664
 
5665
  #: app/features/mec/meta_boxes/search_form.php:365
5666
  #: app/features/mec/meta_boxes/search_form.php:452
5667
  #: app/features/mec/meta_boxes/search_form.php:539
5668
- #: app/features/mec/meta_boxes/search_form.php:699
5669
- #: app/features/mec/meta_boxes/search_form.php:786
5670
- #: app/features/mec/meta_boxes/search_form.php:873
5671
- #: app/features/mec/meta_boxes/search_form.php:996
5672
  msgid "Month Filter"
5673
  msgstr "Monatsfilter"
5674
 
5675
- #: app/features/mec/meta_boxes/search_form.php:900
5676
- #: app/features/mec/meta_boxes/search_form.php:906
5677
- #: app/features/mec/meta_boxes/search_form.php:912
5678
- #: app/features/mec/meta_boxes/search_form.php:918
5679
- #: app/features/mec/meta_boxes/search_form.php:924
5680
- #: app/features/mec/meta_boxes/search_form.php:930
5681
  msgid "No Search Options"
5682
  msgstr "Keine Suchoptionen"
5683
 
@@ -5703,7 +5802,7 @@ msgid ""
5703
  "new menu on the Dashboard > MEC"
5704
  msgstr ""
5705
 
5706
- #: app/features/mec/modules.php:58 app/libraries/main.php:627
5707
  #, fuzzy
5708
  #| msgid "Google Maps Options"
5709
  msgid "Map Options"
@@ -5727,8 +5826,8 @@ msgstr "Google Maps API"
5727
  msgid "Google Map Options"
5728
  msgstr "Google Maps Einstellungen"
5729
 
5730
- #: app/features/mec/modules.php:76 app/features/mec/settings.php:1167
5731
- #: app/features/mec/settings.php:1180
5732
  msgid "Required!"
5733
  msgstr "Erforderlich (Pflichtfeld)"
5734
 
@@ -5796,7 +5895,7 @@ msgstr ""
5796
  msgid "Fullscreen Button"
5797
  msgstr ""
5798
 
5799
- #: app/features/mec/modules.php:167 app/libraries/main.php:628
5800
  msgid "Export Options"
5801
  msgstr "Export Optionen"
5802
 
@@ -5811,7 +5910,7 @@ msgstr ""
5811
  msgid "Google Calendar"
5812
  msgstr "Google Calendar"
5813
 
5814
- #: app/features/mec/modules.php:194 app/libraries/main.php:629
5815
  #: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:44
5816
  #: app/widgets/single.php:101
5817
  msgid "Local Time"
@@ -5823,7 +5922,7 @@ msgstr ""
5823
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
5824
  "Eventseite"
5825
 
5826
- #: app/features/mec/modules.php:208 app/libraries/main.php:630
5827
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:157
5828
  msgid "QR Code"
5829
  msgstr "QR Code"
@@ -5834,7 +5933,7 @@ msgstr ""
5834
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
5835
  "an"
5836
 
5837
- #: app/features/mec/modules.php:226 app/libraries/main.php:631
5838
  #: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
5839
  msgid "Weather"
5840
  msgstr "Wetter"
@@ -5875,7 +5974,7 @@ msgstr ""
5875
  msgid "Show social network module"
5876
  msgstr "Modul für Soziale Netzwerke anzeigen"
5877
 
5878
- #: app/features/mec/modules.php:299 app/libraries/main.php:633
5879
  #: app/modules/next-event/details.php:136 app/widgets/single.php:141
5880
  msgid "Next Event"
5881
  msgstr "Nächstes Event"
@@ -5936,7 +6035,7 @@ msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5936
  msgid "Add events menu to user profile"
5937
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
5938
 
5939
- #: app/features/mec/modules.php:376 app/libraries/main.php:635
5940
  #, fuzzy
5941
  #| msgid "Mailchimp Integration"
5942
  msgid "LearnDash Integration"
@@ -5954,7 +6053,7 @@ msgstr "Mailchimp Integration deaktivieren"
5954
  msgid "LearnDash plugin should be installed and activated."
5955
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
5956
 
5957
- #: app/features/mec/modules.php:386 app/libraries/main.php:636
5958
  #, fuzzy
5959
  #| msgid "Mailchimp Integration"
5960
  msgid "PaidMembership Pro Integration"
@@ -5984,794 +6083,852 @@ msgstr ""
5984
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
5985
  "benachrichtigen."
5986
 
5987
- #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:200
5988
- #: app/features/mec/notifications.php:352
5989
- #: app/features/mec/notifications.php:514
5990
- #: app/features/mec/notifications.php:687
5991
- #: app/features/mec/notifications.php:845
5992
- #: app/features/mec/notifications.php:1000
5993
- #: app/features/mec/notifications.php:1145
5994
- #: app/features/mec/notifications.php:1317
5995
- #: app/features/mec/notifications.php:1429 app/features/mec/report.php:62
5996
  #: app/features/notifications.php:72
5997
  msgid "Email Subject"
5998
  msgstr "Email Betreff"
5999
 
6000
  #: app/features/mec/notifications.php:59 app/features/mec/notifications.php:68
6001
- #: app/features/mec/notifications.php:210
6002
- #: app/features/mec/notifications.php:219
6003
- #: app/features/mec/notifications.php:362
6004
- #: app/features/mec/notifications.php:371
6005
- #: app/features/mec/notifications.php:524
6006
- #: app/features/mec/notifications.php:533
6007
- #: app/features/mec/notifications.php:697
6008
- #: app/features/mec/notifications.php:706
6009
- #: app/features/mec/notifications.php:855
6010
- #: app/features/mec/notifications.php:864
6011
- #: app/features/mec/notifications.php:1010
6012
- #: app/features/mec/notifications.php:1019
6013
- #: app/features/mec/notifications.php:1155
6014
- #: app/features/mec/notifications.php:1164
6015
- #: app/features/mec/notifications.php:1327
6016
- #: app/features/mec/notifications.php:1336
6017
- #: app/features/mec/notifications.php:1439
6018
- #: app/features/mec/notifications.php:1448
6019
  msgid "Receiver Users"
6020
  msgstr ""
6021
 
6022
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:220
6023
- #: app/features/mec/notifications.php:372
6024
- #: app/features/mec/notifications.php:534
6025
- #: app/features/mec/notifications.php:707
6026
- #: app/features/mec/notifications.php:865
6027
- #: app/features/mec/notifications.php:1020
6028
- #: app/features/mec/notifications.php:1165
6029
- #: app/features/mec/notifications.php:1337
6030
- #: app/features/mec/notifications.php:1449
6031
  msgid "Select users to send a copy of email to them!"
6032
  msgstr ""
6033
 
6034
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:89
6035
- #: app/features/mec/notifications.php:231
6036
- #: app/features/mec/notifications.php:240
6037
- #: app/features/mec/notifications.php:383
6038
- #: app/features/mec/notifications.php:392
6039
- #: app/features/mec/notifications.php:545
6040
- #: app/features/mec/notifications.php:554
6041
- #: app/features/mec/notifications.php:718
6042
- #: app/features/mec/notifications.php:727
6043
- #: app/features/mec/notifications.php:876
6044
- #: app/features/mec/notifications.php:885
6045
- #: app/features/mec/notifications.php:1031
6046
- #: app/features/mec/notifications.php:1040
6047
- #: app/features/mec/notifications.php:1176
6048
- #: app/features/mec/notifications.php:1185
6049
- #: app/features/mec/notifications.php:1348
6050
- #: app/features/mec/notifications.php:1357
6051
- #: app/features/mec/notifications.php:1460
6052
- #: app/features/mec/notifications.php:1469
6053
  msgid "Receiver Roles"
6054
  msgstr ""
6055
 
6056
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:241
6057
- #: app/features/mec/notifications.php:393
6058
- #: app/features/mec/notifications.php:555
6059
- #: app/features/mec/notifications.php:728
6060
- #: app/features/mec/notifications.php:886
6061
- #: app/features/mec/notifications.php:1041
6062
- #: app/features/mec/notifications.php:1186
6063
- #: app/features/mec/notifications.php:1358
6064
- #: app/features/mec/notifications.php:1470
6065
  msgid "Select users a specific role."
6066
  msgstr ""
6067
 
6068
  #: app/features/mec/notifications.php:100
6069
  #: app/features/mec/notifications.php:106
6070
- #: app/features/mec/notifications.php:251
6071
- #: app/features/mec/notifications.php:257
6072
- #: app/features/mec/notifications.php:403
6073
- #: app/features/mec/notifications.php:409
6074
- #: app/features/mec/notifications.php:565
6075
- #: app/features/mec/notifications.php:571
6076
- #: app/features/mec/notifications.php:738
6077
- #: app/features/mec/notifications.php:744
6078
- #: app/features/mec/notifications.php:896
6079
- #: app/features/mec/notifications.php:902
6080
- #: app/features/mec/notifications.php:1051
6081
- #: app/features/mec/notifications.php:1057
6082
- #: app/features/mec/notifications.php:1196
6083
- #: app/features/mec/notifications.php:1202
6084
- #: app/features/mec/notifications.php:1368
6085
- #: app/f
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-21 12:48+0430\n"
6
+ "PO-Revision-Date: 2021-04-21 12:50+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
19
 
20
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:24
21
  #: app/features/ix/import.php:48 app/features/ix/import.php:77
22
+ #: app/features/ix/thirdparty.php:26 app/features/mec.php:1222
23
+ #: app/features/mec.php:1246 app/features/mec/dashboard.php:65
24
  #: app/widgets/MEC.php:33
25
  msgid "Modern Events Calendar"
26
  msgstr "Moderner Event Kalender "
31
  msgid "Content"
32
  msgstr "Inhalt"
33
 
34
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:547
35
+ #: app/features/mec.php:578 app/features/mec.php:608
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
95
  msgstr "Neuen Shortcode hinzufügen"
96
 
97
  #: app/features/booking/calendar_novel.php:136
98
+ #: app/features/search_bar/search_result.php:12 app/libraries/main.php:6721
99
+ #: app/libraries/main.php:6768 app/libraries/notifications.php:1377
100
  #: app/libraries/render.php:531 app/libraries/render.php:723
101
  #: app/libraries/render.php:781 app/libraries/render.php:878
102
  #: app/modules/local-time/details.php:50 app/modules/local-time/type1.php:47
103
  #: app/modules/local-time/type2.php:69 app/modules/local-time/type3.php:47
104
  #: app/modules/next-event/details.php:154
105
  #: app/modules/next-event/multiple.php:64 app/skins/single.php:1225
106
+ #: app/skins/single/default.php:171 app/skins/single/default.php:411
107
+ #: app/skins/single/m1.php:46 app/skins/single/modern.php:239
108
  #, fuzzy
109
  #| msgid "Add Day"
110
  msgid "All Day"
116
  msgid "Chosen Time:"
117
  msgstr "Lokale Zeit"
118
 
119
+ #: app/features/colors.php:50 app/features/fes/form.php:1002
120
+ #: app/features/mec/settings.php:874
121
  msgid "Event Color"
122
  msgstr "Farbe der Veranstaltung"
123
 
127
  msgid "Recent Colors"
128
  msgstr "Farbe der Veranstaltung"
129
 
130
+ #: app/features/contextual.php:55 app/features/mec.php:496
131
  #: app/features/mec/dashboard.php:143 app/features/mec/support.php:20
132
  #: app/features/mec/wizard.php:223 app/features/popup/event.php:60
133
+ #: app/features/popup/shortcode.php:37 app/libraries/main.php:671
134
  msgid "Settings"
135
  msgstr "Einstellungen"
136
 
137
+ #: app/features/contextual.php:62 app/features/events.php:1520
138
+ #: app/features/events.php:2498 app/features/mec/booking.php:626
139
+ #: app/features/mec/booking.php:895 app/features/mec/settings.php:983
140
+ #: app/features/mec/support.php:29 app/libraries/main.php:621
141
  msgid "Booking Form"
142
  msgstr "Buchungsformular"
143
 
163
  "<iframe width=\"600\" height=\"300\" src=\"https://www.youtube.com/embed/"
164
  "YM8cCOvgpk0\" frameborder=\"0\" allowfullscreen></iframe>"
165
 
166
+ #: app/features/contextual.php:70 app/features/events.php:1528
167
  #: app/features/mec/booking.php:836 app/features/mec/support-page.php:115
168
+ #: app/features/mec/support.php:36 app/libraries/main.php:623
169
  msgid "Payment Gateways"
170
  msgstr "Zahlungs-Gateways"
171
 
179
  "height=\"300\" src=\"https://www.youtube.com/embed/Hpg4chWlxoQ\" frameborder="
180
  "\"0\" allowfullscreen></iframe>"
181
 
182
+ #: app/features/contextual.php:77 app/features/events.php:402
183
  #: app/features/mec/support-page.php:117 app/features/mec/support.php:45
184
+ #: app/libraries/main.php:822
185
  msgid "Notifications"
186
  msgstr "Benachrichtigungen"
187
 
280
  msgid "Event Details/Single Event Page"
281
  msgstr "Event Details / Einzelveranstaltungsseite"
282
 
283
+ #: app/features/contextual.php:166 app/features/events.php:1247
284
+ #: app/features/fes/form.php:869 app/features/mec/settings.php:549
285
  #: app/libraries/main.php:586
286
  msgid "Currency Options"
287
  msgstr "Währungseinstellungen"
290
  msgid "Google Maps Options"
291
  msgstr "Google Maps Einstellungen"
292
 
293
+ #: app/features/contextual.php:244 app/features/mec/settings.php:621
294
+ #: app/libraries/main.php:588
295
  msgid "Google Recaptcha Options"
296
  msgstr "Google Recaptcha Einstellungen"
297
 
298
+ #: app/features/contextual.php:258 app/features/mec/single.php:307
299
+ #: app/libraries/main.php:607
300
  msgid "Countdown Options"
301
  msgstr "Countdown Einstellungsoptionen"
302
 
303
  #: app/features/contextual.php:268 app/features/mec/modules.php:269
304
+ #: app/libraries/main.php:633
305
  msgid "Social Networks"
306
  msgstr "Soziale Netzwerke"
307
 
309
  msgid "Next Event Module"
310
  msgstr "Nächstes Veranstaltung Modul"
311
 
312
+ #: app/features/contextual.php:286 app/features/mec/settings.php:661
313
+ #: app/features/mec/support-page.php:98 app/libraries/main.php:589
314
  msgid "Frontend Event Submission"
315
  msgstr "Erstellung von Veranstaltungen im Frontend"
316
 
317
+ #: app/features/contextual.php:298 app/features/events.php:395
318
+ #: app/libraries/main.php:608
319
  msgid "Exceptional Days"
320
  msgstr "Herausgenommene Tage "
321
 
322
+ #: app/features/contextual.php:308 app/features/events.php:365
323
  #: app/features/mec/booking.php:88 app/features/mec/notifications.php:36
324
  #: app/features/mec/support-page.php:110 app/features/mec/support-page.php:114
325
+ #: app/libraries/main.php:616 app/libraries/main.php:648
326
+ #: app/libraries/main.php:736
327
  msgid "Booking"
328
  msgstr "Buchung / Reservierung"
329
 
330
  #: app/features/contextual.php:318 app/features/mec/booking.php:448
331
+ #: app/features/mec/booking.php:852 app/libraries/main.php:618
332
  msgid "Coupons"
333
  msgstr "Gutscheine"
334
 
335
  #: app/features/contextual.php:326 app/features/mec/modules.php:341
336
+ #: app/libraries/main.php:635
337
  msgid "BuddyPress Integration"
338
  msgstr "Buddy Press Integration"
339
 
340
+ #: app/features/contextual.php:334 app/features/mec/settings.php:1197
341
+ #: app/libraries/main.php:594
342
  msgid "Mailchimp Integration"
343
  msgstr "Mailchimp Integration"
344
 
346
  msgid "MEC Activation"
347
  msgstr "MEC Aktivierung"
348
 
349
+ #: app/features/dlfile.php:121 app/features/events.php:1525
350
+ #: app/features/mec/booking.php:368 app/features/mec/settings.php:1018
351
  #, fuzzy
352
  #| msgid "Download ICS file"
353
  msgid "Downloadable File"
383
  msgid "File uploaded!"
384
  msgstr "Das Bild ist hochgeladen"
385
 
386
+ #: app/features/events.php:184 app/features/ix/export.php:34
387
+ #: app/features/mec/dashboard.php:267 app/libraries/main.php:5759
388
+ #: app/libraries/main.php:5779 app/skins/daily_view/tpl.php:82
389
  #: app/skins/monthly_view/tpl.php:73 app/skins/tile/tpl.php:83
390
  #: app/skins/yearly_view/tpl.php:71
391
  msgid "Events"
392
  msgstr "Veranstaltungen"
393
 
394
+ #: app/features/events.php:185 app/features/fes.php:243
395
  #: app/features/mec/meta_boxes/display_options.php:1732
396
  #: app/features/mec/meta_boxes/display_options.php:1826
397
  #: app/features/mec/meta_boxes/display_options.php:1899
401
  msgid "Event"
402
  msgstr "Veranstaltung"
403
 
404
+ #: app/features/events.php:186 app/features/mec.php:482
405
  msgid "Add Event"
406
  msgstr "Veranstaltung hinzufügen"
407
 
408
+ #: app/features/events.php:187 app/features/mec/dashboard.php:142
409
  msgid "Add New Event"
410
  msgstr "Neue Veranstaltung hinzufügen"
411
 
412
+ #: app/features/events.php:188 app/features/ix.php:4520
413
  #: app/features/ix/thirdparty.php:44 app/skins/map/tpl.php:69
414
  #: app/skins/map/tpl.php:89
415
  msgid "No events found!"
416
  msgstr "Keine Veranstaltungen gefunden!"
417
 
418
+ #: app/features/events.php:189
419
  msgid "All Events"
420
  msgstr "Alle Veranstaltungen"
421
 
422
+ #: app/features/events.php:190
423
  msgid "Edit Event"
424
  msgstr "Event Bearbeiten"
425
 
426
+ #: app/features/events.php:191 app/features/fes/list.php:100
427
  #: app/features/popup/event.php:252
428
  msgid "View Event"
429
  msgstr "Veranstaltung ansehen"
430
 
431
+ #: app/features/events.php:192
432
  msgid "No events found in Trash!"
433
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
434
 
435
+ #: app/features/events.php:209 app/features/events.php:3608
436
  #: app/features/mec/meta_boxes/display_options.php:1589
437
  #: app/features/mec/meta_boxes/search_form.php:42
438
  #: app/features/mec/meta_boxes/search_form.php:130
441
  #: app/features/mec/meta_boxes/search_form.php:393
442
  #: app/features/mec/meta_boxes/search_form.php:480
443
  #: app/features/mec/meta_boxes/search_form.php:567
444
+ #: app/features/mec/meta_boxes/search_form.php:648
445
+ #: app/features/mec/meta_boxes/search_form.php:735
446
+ #: app/features/mec/meta_boxes/search_form.php:822
447
+ #: app/features/mec/meta_boxes/search_form.php:945
448
+ #: app/features/mec/settings.php:1090 app/features/mec/settings.php:1151
449
+ #: app/features/mec/single.php:394 app/features/mec/single.php:436
450
  #: app/features/mec/wizard.php:418 app/features/mec/wizard.php:457
451
+ #: app/features/search.php:68 app/libraries/main.php:6679
452
+ #: app/libraries/main.php:6733 app/libraries/skins.php:1041
453
+ #: app/skins/single.php:1035 app/skins/single/default.php:272
454
+ #: app/skins/single/default.php:511 app/skins/single/m1.php:202
455
+ #: app/skins/single/m2.php:125 app/skins/single/modern.php:156
456
  msgid "Category"
457
  msgstr "Kategorie"
458
 
459
+ #: app/features/events.php:210 app/features/events.php:3564
460
+ #: app/features/fes/form.php:952 app/features/mec.php:484
461
  #: app/features/mec/meta_boxes/filter.php:69
462
+ #: app/features/mec/meta_boxes/filter.php:80 app/libraries/main.php:6678
463
+ #: app/libraries/main.php:6732
464
  msgid "Categories"
465
  msgstr "Kategorien"
466
 
467
+ #: app/features/events.php:220 app/features/labels.php:71
468
  #: app/features/locations.php:69 app/features/organizers.php:69
469
  #: app/features/speakers.php:71 app/features/tag.php:69
470
  #, php-format
471
  msgid "All %s"
472
  msgstr "Alle %s"
473
 
474
+ #: app/features/events.php:221 app/features/labels.php:72
475
  #: app/features/locations.php:70 app/features/organizers.php:70
476
  #: app/features/speakers.php:72 app/features/tag.php:70
477
  #, php-format
478
  msgid "Edit %s"
479
  msgstr "Bearbeiten %s"
480
 
481
+ #: app/features/events.php:222 app/features/labels.php:73
482
  #: app/features/locations.php:71 app/features/organizers.php:71
483
  #: app/features/speakers.php:73 app/features/tag.php:71
484
  #, php-format
485
  msgid "View %s"
486
  msgstr "Ansicht %s"
487
 
488
+ #: app/features/events.php:223 app/features/labels.php:74
489
  #: app/features/locations.php:72 app/features/organizers.php:72
490
  #: app/features/speakers.php:74 app/features/tag.php:72
491
  #, php-format
492
  msgid "Update %s"
493
  msgstr "Update %s"
494
 
495
+ #: app/features/events.php:224 app/features/labels.php:75
496
  #: app/features/locations.php:73 app/features/organizers.php:73
497
  #: app/features/speakers.php:75 app/features/tag.php:73
498
  #, php-format
499
  msgid "Add New %s"
500
  msgstr "Neu hinzufügen%s"
501
 
502
+ #: app/features/events.php:225 app/features/labels.php:76
503
  #: app/features/locations.php:74 app/features/organizers.php:74
504
  #: app/features/speakers.php:76 app/features/tag.php:74
505
  #, php-format
506
  msgid "New %s Name"
507
  msgstr "Neuer %s Name"
508
 
509
+ #: app/features/events.php:226 app/features/labels.php:77
510
  #: app/features/locations.php:75 app/features/organizers.php:75
511
  #: app/features/speakers.php:77 app/features/tag.php:75
512
  #, php-format
513
  msgid "Popular %s"
514
  msgstr "Beliebt %s"
515
 
516
+ #: app/features/events.php:227 app/features/labels.php:78
517
  #: app/features/locations.php:76 app/features/organizers.php:76
518
  #: app/features/speakers.php:78 app/features/tag.php:76
519
  #, php-format
520
  msgid "Search %s"
521
  msgstr "Suche %s"
522
 
523
+ #: app/features/events.php:254 app/features/events.php:291
524
  msgid "Category Icon"
525
  msgstr "Kategoriesymbol"
526
 
527
+ #: app/features/events.php:257 app/features/events.php:296
528
  msgid "Select icon"
529
  msgstr "Wählen Sie ein Symbol"
530
 
531
+ #: app/features/events.php:261 app/features/events.php:305
532
  msgid "Fallback Image"
533
  msgstr ""
534
 
535
+ #: app/features/events.php:264 app/features/events.php:310
536
  #: app/features/locations.php:160 app/features/locations.php:212
537
  #: app/features/organizers.php:132 app/features/organizers.php:163
538
  #: app/features/speakers.php:180 app/features/speakers.php:231
539
  msgid "Upload/Add image"
540
  msgstr "Bild hochladen/hinzufügen"
541
 
542
+ #: app/features/events.php:265 app/features/events.php:311
543
  #: app/features/locations.php:161 app/features/locations.php:213
544
  #: app/features/locations.php:387 app/features/locations.php:394
545
  #: app/features/organizers.php:133 app/features/organizers.php:164
546
+ #: app/features/organizers.php:307 app/features/organizers.php:314
547
  #: app/features/speakers.php:181 app/features/speakers.php:232
548
  msgid "Remove image"
549
  msgstr "Bild entfernen"
550
 
551
+ #: app/features/events.php:360
552
  msgid "Event Details"
553
  msgstr "Veranstaltungsdetails"
554
 
555
+ #: app/features/events.php:391
556
  #, fuzzy
557
  #| msgid "Event Details"
558
  msgid "FES Details"
559
  msgstr "Veranstaltungsdetails"
560
 
561
+ #: app/features/events.php:392
562
  msgid "Date And Time"
563
  msgstr "Datum und Uhrzeit"
564
 
565
+ #: app/features/events.php:393 app/features/fes/form.php:383
566
  msgid "Event Repeating"
567
  msgstr "Wiederholende Veranstaltung"
568
 
569
+ #: app/features/events.php:394 app/features/mec/single.php:216
570
  #: app/libraries/eventFields.php:45
571
  #, fuzzy
572
  #| msgid "Event Detail"
573
  msgid "Event Data"
574
  msgstr "Veranstaltungsdetails"
575
 
576
+ #: app/features/events.php:396 app/features/mec/settings.php:920
577
  #: app/libraries/hourlyschedule.php:36 app/skins/single.php:1452
578
  msgid "Hourly Schedule"
579
  msgstr "Stundenplan"
580
 
581
+ #: app/features/events.php:397
582
  msgid "Location/Venue"
583
  msgstr "Ort"
584
 
585
+ #: app/features/events.php:398
586
  msgid "Links"
587
  msgstr "Links"
588
 
589
+ #: app/features/events.php:399 app/features/events.php:3610
590
+ #: app/features/events.php:3888 app/features/ix.php:4089
591
+ #: app/features/ix.php:4132
592
  #: app/features/mec/meta_boxes/display_options.php:1592
593
  #: app/features/mec/meta_boxes/search_form.php:58
594
  #: app/features/mec/meta_boxes/search_form.php:146
597
  #: app/features/mec/meta_boxes/search_form.php:409
598
  #: app/features/mec/meta_boxes/search_form.php:496
599
  #: app/features/mec/meta_boxes/search_form.php:583
600
+ #: app/features/mec/meta_boxes/search_form.php:664
601
+ #: app/features/mec/meta_boxes/search_form.php:751
602
+ #: app/features/mec/meta_boxes/search_form.php:838
603
+ #: app/features/mec/meta_boxes/search_form.php:961
604
+ #: app/features/mec/settings.php:1163 app/features/mec/single.php:398
605
+ #: app/features/mec/single.php:440 app/features/mec/wizard.php:422
606
  #: app/features/mec/wizard.php:461 app/features/organizers.php:58
607
+ #: app/features/organizers.php:204 app/features/organizers.php:268
608
+ #: app/features/organizers.php:270 app/features/organizers.php:279
609
  #: app/features/popup/event.php:163 app/features/popup/event.php:172
610
+ #: app/features/search.php:80 app/libraries/main.php:6685
611
+ #: app/libraries/main.php:6739 app/libraries/skins.php:1127
612
+ #: app/skins/single.php:1290 app/skins/single/default.php:297
613
+ #: app/skins/single/default.php:536 app/skins/single/m1.php:102
614
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:51
615
  msgid "Organizer"
616
  msgstr "Veranstalter"
617
 
618
+ #: app/features/events.php:400 app/features/events.php:1242
619
+ #: app/features/fes/form.php:864 app/features/mec/settings.php:1087
620
+ #: app/libraries/main.php:6716 app/libraries/main.php:6765
621
  #: app/libraries/skins.php:1358 app/skins/single.php:1061
622
+ #: app/skins/single/default.php:189 app/skins/single/default.php:429
623
+ #: app/skins/single/m1.php:61 app/skins/single/modern.php:254
624
  msgid "Cost"
625
  msgstr " Preis"
626
 
627
+ #: app/features/events.php:401
628
  #, fuzzy
629
  #| msgid "On Event Start"
630
  msgid "SEO Schema / Event Status"
631
  msgstr "Am Event Start"
632
 
633
+ #: app/features/events.php:562
634
  msgid "Note for reviewer"
635
  msgstr "Zusätzliche Anmerkungen zum Event "
636
 
637
+ #: app/features/events.php:568
638
  msgid "Guest Data"
639
  msgstr "Gäste Daten"
640
 
641
+ #: app/features/events.php:569 app/features/events.php:2484
642
+ #: app/features/events.php:4092 app/features/fes.php:243
643
  #: app/features/fes/form.php:812 app/features/labels.php:180
644
+ #: app/features/mec/booking.php:45 app/features/organizers.php:287
645
  #: app/features/popup/event.php:182 app/features/profile/profile.php:149
646
+ #: app/libraries/notifications.php:1753 app/modules/booking/steps/form.php:62
647
  msgid "Name"
648
  msgstr "Name"
649
 
650
+ #: app/features/events.php:570 app/features/events.php:2493
651
+ #: app/features/events.php:2560 app/features/events.php:2649
652
+ #: app/features/events.php:4095 app/features/fes.php:243
653
  #: app/features/fes/form.php:808 app/features/login/login.php:5
654
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:664
655
+ #: app/features/mec/booking.php:760 app/features/mec/single.php:249
656
  #: app/features/organizers.php:111 app/features/organizers.php:152
657
  #: app/features/profile/profile.php:152 app/features/speakers.php:127
658
+ #: app/features/speakers.php:204 app/libraries/main.php:1920
659
+ #: app/libraries/main.php:1989 app/libraries/main.php:3436
660
+ #: app/libraries/notifications.php:1754 app/modules/booking/steps/form.php:71
661
  #: app/modules/booking/steps/form.php:213 app/skins/single.php:1307
662
+ #: app/skins/single.php:1370 app/skins/single/default.php:314
663
+ #: app/skins/single/default.php:553 app/skins/single/m1.php:119
664
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:68
665
  msgid "Email"
666
  msgstr "E-Mail"
667
 
668
+ #: app/features/events.php:579
669
  msgid ""
670
  "This event is imported from Google calendar so if you modify it, it would "
671
  "overwrite in the next import from Google."
672
  msgstr ""
673
 
674
+ #: app/features/events.php:583 app/features/fes/form.php:282
675
  msgid "Date and Time"
676
  msgstr "Datum und Uhrzeit"
677
 
678
+ #: app/features/events.php:586 app/features/events.php:590
679
+ #: app/features/events.php:3611 app/features/events.php:3888
680
  #: app/features/fes/form.php:286 app/features/fes/form.php:290
681
+ #: app/features/ix.php:4089 app/features/ix.php:4132
682
+ #: app/features/ix/import_g_calendar.php:38 app/features/mec.php:1443
683
  #: app/features/mec/meta_boxes/display_options.php:52
684
  #: app/features/mec/meta_boxes/display_options.php:305
685
  #: app/features/mec/meta_boxes/display_options.php:569
699
  msgid "Start Date"
700
  msgstr "Start Datum"
701
 
702
+ #: app/features/events.php:605 app/features/events.php:609
703
+ #: app/features/events.php:3612 app/features/events.php:3888
704
  #: app/features/fes/form.php:305 app/features/fes/form.php:309
705
+ #: app/features/ix.php:4089 app/features/ix.php:4132
706
+ #: app/features/ix/import_g_calendar.php:44 app/features/mec.php:1444
707
  #: app/features/mec/meta_boxes/display_options.php:68
708
  #: app/features/mec/meta_boxes/display_options.php:321
709
  #: app/features/mec/meta_boxes/display_options.php:585
715
  msgid "End Date"
716
  msgstr "Ende Datum"
717
 
718
+ #: app/features/events.php:632 app/features/fes/form.php:323
719
  #: app/features/popup/event.php:109
720
  #, fuzzy
721
  #| msgid "All Day Event"
722
  msgid "All-day Event"
723
  msgstr "Ganztägige Veranstaltung"
724
 
725
+ #: app/features/events.php:642 app/features/fes/form.php:326
726
  msgid "Hide Event Time"
727
  msgstr "Event / Veranstaltungszeit verbergen"
728
 
729
+ #: app/features/events.php:652 app/features/fes/form.php:329
730
  msgid "Hide Event End Time"
731
  msgstr "Ende-Zeit der Veranstaltung verbergen"
732
 
733
+ #: app/features/events.php:657 app/features/events.php:661
734
  #: app/features/fes/form.php:333
735
  #, fuzzy
736
  #| msgid "Note to reviewer"
737
  msgid "Notes on the time"
738
  msgstr "Zusätzliche Anmerkungen zum Event "
739
 
740
+ #: app/features/events.php:662 app/features/fes/form.php:334
741
  #, fuzzy
742
  #| msgid ""
743
  #| "It shows next to event time on calendar. You can insert Timezone etc. in "
749
  "Neben der Zeit im Kalender wird diese Angabe angezeigt. In diesem Feld "
750
  "können Sie z.B. eine Zeitzone wie z.B. \"MEZ\" usw. einfügen. "
751
 
752
+ #: app/features/events.php:664 app/features/events.php:843
753
+ #: app/features/events.php:1196 app/features/events.php:1265
754
+ #: app/features/events.php:1353 app/features/events.php:1490
755
+ #: app/features/events.php:1607 app/features/events.php:1868
756
+ #: app/features/events.php:1883 app/features/events.php:2066
757
+ #: app/features/events.php:2079 app/features/events.php:2235
758
+ #: app/features/events.php:2271 app/features/events.php:2369
759
+ #: app/features/events.php:2384 app/features/events.php:2414
760
+ #: app/features/events.php:2427 app/features/fes/form.php:456
761
+ #: app/features/fes/form.php:764 app/features/fes/form.php:887
762
  #: app/features/locations.php:335 app/features/mec/booking.php:109
763
  #: app/features/mec/booking.php:201 app/features/mec/booking.php:266
764
  #: app/features/mec/booking.php:299 app/features/mec/booking.php:312
804
  #: app/features/mec/modules.php:93 app/features/mec/modules.php:128
805
  #: app/features/mec/modules.php:144 app/features/mec/modules.php:330
806
  #: app/features/mec/notifications.php:107
807
+ #: app/features/mec/notifications.php:263
808
+ #: app/features/mec/notifications.php:420
809
+ #: app/features/mec/notifications.php:587
810
+ #: app/features/mec/notifications.php:765
811
+ #: app/features/mec/notifications.php:928
812
+ #: app/features/mec/notifications.php:1088
813
+ #: app/features/mec/notifications.php:1238
814
+ #: app/features/mec/notifications.php:1253
815
+ #: app/features/mec/notifications.php:1415
816
+ #: app/features/mec/notifications.php:1532 app/features/mec/settings.php:67
817
  #: app/features/mec/settings.php:86 app/features/mec/settings.php:113
818
  #: app/features/mec/settings.php:149 app/features/mec/settings.php:172
819
  #: app/features/mec/settings.php:218 app/features/mec/settings.php:268
821
  #: app/features/mec/settings.php:472 app/features/mec/settings.php:489
822
  #: app/features/mec/settings.php:506 app/features/mec/settings.php:525
823
  #: app/features/mec/settings.php:539 app/features/mec/settings.php:567
824
+ #: app/features/mec/settings.php:673 app/features/mec/settings.php:794
825
+ #: app/features/mec/settings.php:866 app/features/mec/settings.php:1058
826
+ #: app/features/mec/settings.php:1074 app/features/mec/settings.php:1212
827
+ #: app/features/mec/settings.php:1225 app/features/mec/settings.php:1241
828
+ #: app/features/mec/single.php:46 app/features/mec/single.php:62
829
+ #: app/features/mec/single.php:82 app/features/mec/single.php:100
830
+ #: app/features/mec/single.php:124 app/features/mec/single.php:141
831
+ #: app/features/mec/single.php:192 app/features/mec/single.php:336
832
+ #: app/features/mec/styling.php:123 app/features/mec/styling.php:223
833
+ #: app/features/mec/styling.php:240 app/features/mec/styling.php:254
834
+ #: app/features/mec/wizard.php:276 app/features/mec/wizard.php:359
835
+ #: app/features/mec/wizard.php:380 app/features/mec/wizard.php:498
836
+ #: app/features/organizers.php:280 app/features/popup/event.php:126
837
+ #: app/features/popup/event.php:173 app/skins/single.php:1146
838
+ #: app/skins/single/default.php:207 app/skins/single/default.php:444
839
+ #: app/skins/single/m1.php:224 app/skins/single/m2.php:148
840
+ #: app/skins/single/modern.php:179
841
  msgid "Read More"
842
  msgstr "Mehr lesen"
843
 
844
+ #: app/features/events.php:674 app/features/fes/form.php:341
845
  #, fuzzy
846
  #| msgid "Timezone: %s"
847
  msgid "Timezone"
848
  msgstr "Zeitzone: %s"
849
 
850
+ #: app/features/events.php:679 app/features/events.php:692
851
+ #: app/features/events.php:1683 app/features/events.php:1693
852
+ #: app/features/events.php:1714 app/features/events.php:1736
853
+ #: app/features/events.php:2197 app/features/events.php:2329
854
+ #: app/features/events.php:2515 app/features/fes/form.php:346
855
  #: app/features/fes/form.php:359
856
  msgid "Inherit from global options"
857
  msgstr "Aus den globalen Einstellungen übernehmen"
858
 
859
+ #: app/features/events.php:688 app/features/events.php:691
860
  #: app/features/fes/form.php:355 app/features/fes/form.php:358
861
  #, fuzzy
862
  #| msgid "Countdown View"
863
  msgid "Countdown Method"
864
  msgstr "Countdownansicht"
865
 
866
+ #: app/features/events.php:693 app/features/fes/form.php:360
867
  #, fuzzy
868
  #| msgid "On Event Start"
869
  msgid "Count to Event Start"
870
  msgstr "Am Event Start"
871
 
872
+ #: app/features/events.php:694 app/features/fes/form.php:361
873
  #, fuzzy
874
  #| msgid "On Event End"
875
  msgid "Count to Event End"
876
  msgstr "Am Event Ende"
877
 
878
+ #: app/features/events.php:700 app/features/fes/form.php:368
879
  #: app/modules/weather/darksky.php:57
880
  msgid "Visibility"
881
  msgstr "Sichtbarkeit"
882
 
883
+ #: app/features/events.php:703 app/features/fes/form.php:371
884
+ #: app/features/mec/settings.php:861 app/features/mec/settings.php:865
885
  #, fuzzy
886
  #| msgid "Visibility"
887
  msgid "Event Visibility"
888
  msgstr "Sichtbarkeit"
889
 
890
+ #: app/features/events.php:704 app/features/fes/form.php:372
891
  #, fuzzy
892
  #| msgid "Booking"
893
  msgid "Show on Shortcodes"
894
  msgstr "Buchung / Reservierung"
895
 
896
+ #: app/features/events.php:705 app/features/fes/form.php:373
897
  #, fuzzy
898
  #| msgid "Shortcodes"
899
  msgid "Hide on Shortcodes"
900
  msgstr "Shortcodes"
901
 
902
+ #: app/features/events.php:712 app/features/fes/form.php:381
903
  msgid "Repeating"
904
  msgstr "Wiederholen"
905
 
906
+ #: app/features/events.php:721
907
  msgid "Event Repeating (Recurring events)"
908
  msgstr "Wiederholende Veranstaltung"
909
 
910
+ #: app/features/events.php:725 app/features/fes/form.php:387
911
  msgid "Repeats"
912
  msgstr "Wiederholend"
913
 
914
+ #: app/features/events.php:733 app/features/fes/form.php:389
915
+ #: app/features/mec.php:1446 app/skins/default_full_calendar/tpl.php:77
916
  #: app/skins/full_calendar/tpl.php:125
917
  msgid "Daily"
918
  msgstr "Täglich"
919
 
920
+ #: app/features/events.php:740 app/features/fes/form.php:390
921
  msgid "Every Weekday"
922
  msgstr "An jedem Wochentag"
923
 
924
+ #: app/features/events.php:747 app/features/fes/form.php:391
925
  msgid "Every Weekend"
926
  msgstr "An jedem Wochenende"
927
 
928
+ #: app/features/events.php:754 app/features/fes/form.php:392
929
  msgid "Certain Weekdays"
930
  msgstr "Bestimmte Wochentage"
931
 
932
+ #: app/features/events.php:761 app/features/fes/form.php:393
933
  #: app/skins/default_full_calendar/tpl.php:76
934
  #: app/skins/full_calendar/tpl.php:124
935
  msgid "Weekly"
936
  msgstr "Wöchentlich"
937
 
938
+ #: app/features/events.php:768 app/features/fes/form.php:394
939
+ #: app/features/mec.php:1447 app/skins/default_full_calendar/tpl.php:75
940
  #: app/skins/full_calendar/tpl.php:123
941
  msgid "Monthly"
942
  msgstr "Monatlich"
943
 
944
+ #: app/features/events.php:775 app/features/fes/form.php:395
945
+ #: app/features/mec.php:1448 app/skins/default_full_calendar/tpl.php:74
946
  #: app/skins/full_calendar/tpl.php:122
947
  msgid "Yearly"
948
  msgstr "Jährlich"
949
 
950
+ #: app/features/events.php:782 app/features/fes/form.php:396
951
  msgid "Custom Days"
952
  msgstr "Benutzerdefinierte Tage"
953
 
954
+ #: app/features/events.php:789 app/features/fes/form.php:397
955
  msgid "Advanced"
956
  msgstr "Fortgeschritten"
957
 
958
+ #: app/features/events.php:794 app/features/fes/form.php:401
959
  msgid "Repeat Interval"
960
  msgstr "Wiederholungsintervall"
961
 
962
+ #: app/features/events.php:796 app/features/fes/form.php:402
963
  msgid "Repeat interval"
964
  msgstr "Wiederholungsintervall"
965
 
966
+ #: app/features/events.php:800 app/features/fes/form.php:405
967
  msgid "Week Days"
968
  msgstr "Wochentage"
969
 
970
+ #: app/features/events.php:817
971
  #, fuzzy
972
  #| msgid "Pro version of Modern Events Calendar"
973
  msgid ""
975
  "Calendar."
976
  msgstr "Pro Version vom Modernen Event Calendar"
977
 
978
+ #: app/features/events.php:823 app/features/events.php:1955
979
+ #: app/features/events.php:1983 app/features/events.php:2139
980
  #: app/features/fes/form.php:419 app/features/ix/import_f_calendar.php:42
981
  #: app/features/ix/import_g_calendar.php:51
982
  #: app/features/ix/import_meetup.php:40 app/features/ix/thirdparty.php:35
984
  msgid "Start"
985
  msgstr "Start"
986
 
987
+ #: app/features/events.php:836 app/features/events.php:1347
988
+ #: app/features/events.php:1939 app/features/events.php:2128
989
+ #: app/features/events.php:2208 app/features/events.php:2341
990
+ #: app/features/fes/form.php:449 app/features/fes/form.php:1050
991
+ #: app/features/occurrences.php:114 app/features/organizers.php:331
992
  #: app/libraries/hourlyschedule.php:57 app/libraries/hourlyschedule.php:120
993
  msgid "Add"
994
  msgstr "Hinzufügen"
995
 
996
+ #: app/features/events.php:839 app/features/fes/form.php:452
997
  msgid "Custom Days Repeating"
998
  msgstr "Benutzerdefinierte Wiederholende Tage"
999
 
1000
+ #: app/features/events.php:842 app/features/fes/form.php:455
1001
  msgid ""
1002
  "Add certain days to event occurrence dates. If you have a single day event, "
1003
  "start and end dates should be the same, If you have a multiple day event, "
1004
  "the start and end dates must be commensurate with the initial date."
1005
  msgstr ""
1006
 
1007
+ #: app/features/events.php:853 app/features/events.php:1959
1008
+ #: app/features/events.php:1987 app/features/events.php:2143
1009
  #: app/features/fes/form.php:434 app/libraries/skins.php:1309
1010
  msgid "End"
1011
  msgstr "Ende"
1012
 
1013
+ #: app/features/events.php:930 app/features/fes/form.php:528
1014
  msgid "First"
1015
  msgstr "Erster"
1016
 
1017
+ #: app/features/events.php:972 app/features/fes/form.php:570
1018
  msgid "Second"
1019
  msgstr "Zweiter"
1020
 
1021
+ #: app/features/events.php:1014 app/features/fes/form.php:612
1022
  msgid "Third"
1023
  msgstr "Dritter"
1024
 
1025
+ #: app/features/events.php:1056 app/features/fes/form.php:654
1026
  msgid "Fourth"
1027
  msgstr "Vierte"
1028
 
1029
+ #: app/features/events.php:1098 app/features/fes/form.php:696
1030
  msgid "Last"
1031
  msgstr "Letzter"
1032
 
1033
+ #: app/features/events.php:1145 app/features/fes/form.php:742
1034
  msgid "Ends Repeat"
1035
  msgstr "Wiederholung endet"
1036
 
1037
+ #: app/features/events.php:1157 app/features/fes/form.php:746
1038
  msgid "Never"
1039
  msgstr "Niemals"
1040
 
1041
+ #: app/features/events.php:1169 app/features/fes/form.php:751
1042
  msgid "On"
1043
  msgstr "Am"
1044
 
1045
+ #: app/features/events.php:1185 app/features/fes/form.php:758
1046
  #: app/features/mec/booking.php:157
1047
  msgid "After"
1048
  msgstr "Nach"
1049
 
1050
+ #: app/features/events.php:1189 app/features/events.php:1193
1051
  #: app/features/fes/form.php:760 app/features/fes/form.php:763
1052
  msgid "Occurrences times"
1053
  msgstr " mal vorkommen"
1054
 
1055
+ #: app/features/events.php:1194
1056
  #, fuzzy
1057
  #| msgid ""
1058
  #| "The event will finish after certain repeats. For example if you set it to "
1064
  "Das Event ist nach einer bestimmten Anzahl von Wiederholungen zu Ende. Zum "
1065
  "Beispiel: Bei Eingabe von 10 wird das Event nach 10 Wiederholungen beendet"
1066
 
1067
+ #: app/features/events.php:1210 app/features/fes/form.php:777
1068
  #, fuzzy
1069
  #| msgid "Next Occurrence of Other Events"
1070
  msgid "Show only one occurrence of this event"
1071
  msgstr "Nächstes Auftreten von anderen Events."
1072
 
1073
+ #: app/features/events.php:1238 app/features/events.php:3888
1074
+ #: app/features/fes/form.php:861 app/features/ix.php:4089
1075
+ #: app/features/ix.php:4132 app/features/mec/meta_boxes/search_form.php:94
1076
  #: app/features/mec/meta_boxes/search_form.php:182
1077
  #: app/features/mec/meta_boxes/search_form.php:270
1078
  #: app/features/mec/meta_boxes/search_form.php:358
1079
  #: app/features/mec/meta_boxes/search_form.php:445
1080
  #: app/features/mec/meta_boxes/search_form.php:532
1081
  #: app/features/mec/meta_boxes/search_form.php:619
1082
+ #: app/features/mec/meta_boxes/search_form.php:700
1083
+ #: app/features/mec/meta_boxes/search_form.php:787
1084
+ #: app/features/mec/meta_boxes/search_form.php:874
1085
+ #: app/features/mec/meta_boxes/search_form.php:997
1086
+ #: app/features/mec/notifications.php:150
1087
+ #: app/features/mec/notifications.php:300
1088
+ #: app/features/mec/notifications.php:465
1089
+ #: app/features/mec/notifications.php:645
1090
+ #: app/features/mec/notifications.php:821
1091
+ #: app/features/mec/notifications.php:978
1092
+ #: app/features/mec/notifications.php:1134
1093
+ #: app/features/mec/notifications.php:1291
1094
+ #: app/features/mec/notifications.php:1439
1095
+ #: app/features/mec/notifications.php:1555 app/features/mec/settings.php:837
1096
+ #: app/features/notifications.php:116 app/libraries/main.php:6715
1097
+ #: app/libraries/main.php:6764 app/widgets/single.php:105
1098
  msgid "Event Cost"
1099
  msgstr ""
1100
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
1101
 
1102
+ #: app/features/events.php:1249 app/features/fes/form.php:871
1103
+ #: app/features/mec/settings.php:551
1104
+ msgid "Currency"
1105
+ msgstr "Währung"
1106
+
1107
+ #: app/features/events.php:1259 app/features/events.php:1264
1108
+ #: app/features/fes/form.php:881 app/features/fes/form.php:886
1109
+ #: app/features/mec/settings.php:561 app/features/mec/settings.php:566
1110
+ msgid "Currency Sign"
1111
+ msgstr "Währungssymbol"
1112
+
1113
+ #: app/features/events.php:1265 app/features/fes/form.php:887
1114
+ #: app/features/mec/settings.php:567
1115
+ msgid "Default value will be \"currency\" if you leave it empty."
1116
+ msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
1117
+
1118
+ #: app/features/events.php:1272 app/features/fes/form.php:894
1119
+ #: app/features/mec/settings.php:574
1120
+ msgid "Currency Position"
1121
+ msgstr "Position des Währungssymbols"
1122
+
1123
+ #: app/features/events.php:1275 app/features/fes/form.php:897
1124
+ #: app/features/mec/settings.php:577
1125
+ #, fuzzy
1126
+ #| msgid "Before $10"
1127
+ msgid "$10 (Before)"
1128
+ msgstr "Vor €10"
1129
+
1130
+ #: app/features/events.php:1276 app/features/fes/form.php:898
1131
+ #: app/features/mec/settings.php:578
1132
+ msgid "$ 10 (Before with Space)"
1133
+ msgstr ""
1134
+
1135
+ #: app/features/events.php:1277 app/features/fes/form.php:899
1136
+ #: app/features/mec/settings.php:579
1137
+ #, fuzzy
1138
+ #| msgid "After"
1139
+ msgid "10$ (After)"
1140
+ msgstr "Nach"
1141
+
1142
+ #: app/features/events.php:1278 app/features/fes/form.php:900
1143
+ #: app/features/mec/settings.php:580
1144
+ msgid "10 $ (After with Space)"
1145
+ msgstr ""
1146
+
1147
+ #: app/features/events.php:1283 app/features/fes/form.php:905
1148
+ #: app/features/mec/settings.php:585
1149
+ msgid "Thousand Separator"
1150
+ msgstr "Tausendertrennzeichen"
1151
+
1152
+ #: app/features/events.php:1289 app/features/fes/form.php:911
1153
+ #: app/features/mec/settings.php:591
1154
+ msgid "Decimal Separator"
1155
+ msgstr "Dezimaltrennzeichen"
1156
+
1157
+ #: app/features/events.php:1299 app/features/fes/form.php:921
1158
+ #: app/features/mec/settings.php:601
1159
+ msgid "No decimal"
1160
+ msgstr "Keine Dezimale"
1161
+
1162
+ #: app/features/events.php:1334
1163
  #, fuzzy
1164
  #| msgid "Exceptional Days"
1165
  msgid "Exceptional Days (Exclude Dates)"
1166
  msgstr "Herausgenommene Tage "
1167
 
1168
+ #: app/features/events.php:1340 app/features/events.php:1350
1169
  msgid "Exclude certain days"
1170
  msgstr "Ausschluss bestimmter Tage"
1171
 
1172
+ #: app/features/events.php:1345 app/features/events.php:2561
1173
+ #: app/features/events.php:2650 app/features/fes.php:243
1174
  #: app/features/mec/booking.php:665 app/features/mec/booking.php:761
1175
+ #: app/features/mec/single.php:251 app/features/profile/profile.php:36
1176
+ #: app/features/wc.php:83 app/libraries/main.php:3525
1177
  #: app/libraries/skins.php:1242 app/modules/booking/steps/tickets.php:127
1178
  #: app/modules/next-event/details.php:143 app/skins/single.php:1119
1179
+ #: app/skins/single/default.php:146 app/skins/single/default.php:386
1180
+ #: app/skins/single/m1.php:21 app/skins/single/modern.php:214
1181
  msgid "Date"
1182
  msgstr "Datum"
1183
 
1184
+ #: app/features/events.php:1351
1185
  msgid ""
1186
  "Exclude certain days from event occurrence dates. Please note that you can "
1187
  "exclude only single day occurrences and you cannot exclude one day from "
1188
  "multiple day occurrences."
1189
  msgstr ""
1190
 
1191
+ #: app/features/events.php:1409 app/libraries/render.php:559
1192
  msgid "Day 1"
1193
  msgstr "Tag 1"
1194
 
1195
+ #: app/features/events.php:1453 app/features/fes/form.php:827
1196
+ #: app/features/mec/settings.php:831
1197
  msgid "Event Links"
1198
  msgstr "Veranstaltungslinks"
1199
 
1200
+ #: app/features/events.php:1456 app/features/events.php:1464
1201
+ #: app/features/fes/form.php:829 app/features/mec/settings.php:1088
1202
+ #: app/libraries/main.php:6713 app/libraries/main.php:6762
1203
  msgid "Event Link"
1204
  msgstr "Veranstaltungslink"
1205
 
1206
+ #: app/features/events.php:1459 app/features/events.php:1477
1207
  #: app/features/fes/form.php:830 app/features/fes/form.php:835
1208
  msgid "eg. http://yoursite.com/your-event"
1209
  msgstr "z.B. http://yoursite.com/your-event"
1210
 
1211
+ #: app/features/events.php:1465
1212
  #, fuzzy
1213
  #| msgid ""
1214
  #| "If you fill it, it will be replaced instead of default event page link. "
1222
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
1223
  "einschließlich http(s)://"
1224
 
1225
+ #: app/features/events.php:1467
1226
  msgid "URL Shortener"
1227
  msgstr ""
1228
 
1229
+ #: app/features/events.php:1474 app/features/events.php:1487
1230
+ #: app/features/fes/form.php:834 app/libraries/main.php:6714
1231
+ #: app/libraries/main.php:6763 app/skins/single.php:1145
1232
+ #: app/skins/single/default.php:206 app/skins/single/default.php:443
1233
  #: app/skins/single/m1.php:223 app/skins/single/m2.php:147
1234
+ #: app/skins/single/modern.php:178 app/widgets/single.php:109
1235
  msgid "More Info"
1236
  msgstr "Mehr Informationen"
1237
 
1238
+ #: app/features/events.php:1480 app/features/fes/form.php:836
1239
  msgid "More Information"
1240
  msgstr "z.B. Noch mehr Informationen "
1241
 
1242
+ #: app/features/events.php:1482 app/features/fes/form.php:838
1243
+ #: app/features/mec.php:1044 app/features/popup/shortcode.php:477
1244
  msgid "Current Window"
1245
  msgstr "Aktuelles Fenster"
1246
 
1247
+ #: app/features/events.php:1483 app/features/fes/form.php:839
1248
+ #: app/features/mec.php:1045 app/features/popup/shortcode.php:481
1249
  msgid "New Window"
1250
  msgstr "Neues Fenster"
1251
 
1252
+ #: app/features/events.php:1488 app/features/fes/form.php:841
1253
  msgid ""
1254
  "If you fill it, it will be shown in event details page as an optional link. "
1255
  "Insert full link including http(s)://"
1260
  "Text angezeigt werden soll: zum Beispiel: Noch mehr Informationen oder Hier "
1261
  "zur Anmeldung (z.B. bei Webinaren sinnvoll) "
1262
 
1263
+ #: app/features/events.php:1511 app/features/mec/settings.php:928
1264
  msgid "Booking Options"
1265
  msgstr "Buchungsoptionen"
1266
 
1267
+ #: app/features/events.php:1512 app/features/events.php:1725
1268
+ #: app/features/mec/settings.php:965
1269
  #, fuzzy
1270
  #| msgid "Total booking limits"
1271
  msgid "Total User Booking Limits"
1272
  msgstr "Gesamt Verfügbare Plätze"
1273
 
1274
+ #: app/features/events.php:1513 app/features/events.php:1785
1275
+ #: app/libraries/book.php:63 app/libraries/main.php:6718
1276
  #: app/modules/booking/steps/tickets.php:159
1277
  #: app/modules/booking/steps/tickets.php:165
1278
  msgid "Tickets"
1279
  msgstr "Tickets"
1280
 
1281
+ #: app/features/events.php:1515 app/features/events.php:2185
1282
  msgid "Fees"
1283
  msgstr "Gebühren"
1284
 
1285
+ #: app/features/events.php:1518 app/features/events.php:2317
1286
+ #: app/features/mec/settings.php:995
1287
  msgid "Ticket Variations / Options"
1288
  msgstr ""
1289
 
1290
+ #: app/features/events.php:1522 app/features/mec/booking.php:926
1291
  #: app/features/mec/support-page.php:118
1292
  #, fuzzy
1293
  #| msgid "Organizer Tel"
1294
  msgid "Organizer Payment"
1295
  msgstr "Organisator Telefon"
1296
 
1297
+ #: app/features/events.php:1589 app/features/events.php:1603
1298
  #, fuzzy
1299
  #| msgid "Total booking limits"
1300
  msgid "Total booking limit"
1301
  msgstr "Gesamt Verfügbare Plätze"
1302
 
1303
+ #: app/features/events.php:1600 app/features/events.php:1905
1304
+ #: app/features/events.php:2094 app/modules/booking/default.php:99
1305
  #: app/modules/booking/steps/tickets.php:159
1306
  #: app/modules/booking/steps/tickets.php:165
1307
  #: app/skins/available_spot/tpl.php:131
1308
  msgid "Unlimited"
1309
  msgstr "Unlimitiert"
1310
 
1311
+ #: app/features/events.php:1606
1312
  msgid ""
1313
  "If you want to set a limit to all tickets, uncheck this checkbox and put a "
1314
  "limitation number."
1315
  msgstr ""
1316
 
1317
+ #: app/features/events.php:1608
1318
  #, fuzzy
1319
  #| msgid "Choose your single event style."
1320
  msgid "Read About A Booking System"
1321
  msgstr "Wählen Sie Ihren Single Event Stil"
1322
 
1323
+ #: app/features/events.php:1616
1324
  msgid "100"
1325
  msgstr "z.B. 100"
1326
 
1327
+ #: app/features/events.php:1621
1328
  #, fuzzy
1329
  #| msgid "Discount Type"
1330
  msgid "Discount per user roles"
1331
  msgstr "Rabatt-Art"
1332
 
1333
+ #: app/features/events.php:1627
1334
  msgid "5"
1335
  msgstr ""
1336
 
1337
+ #: app/features/events.php:1633 app/features/events.php:1647
1338
+ #: app/features/mec/settings.php:947
1339
  #, fuzzy
1340
  #| msgid "Next Occurrence"
1341
  msgid "Book All Occurrences"
1342
  msgstr "Nächstes Event"
1343
 
1344
+ #: app/features/events.php:1644
1345
  msgid "Sell all occurrences by one booking"
1346
  msgstr ""
1347
 
1348
+ #: app/features/events.php:1650
1349
  msgid ""
1350
  "If you have a series of events and you want to sell all of them at once, "
1351
  "this option is for you! For example a weekly yoga course or something "
1352
  "similar."
1353
  msgstr ""
1354
 
1355
+ #: app/features/events.php:1661 app/features/mec/booking.php:130
1356
+ #: app/features/mec/settings.php:953
1357
  #, fuzzy
1358
  #| msgid "General Options"
1359
  msgid "Interval Options"
1360
  msgstr "Allgemeine Einstellungen"
1361
 
1362
+ #: app/features/events.php:1663 app/features/events.php:1668
1363
  #: app/features/mec/booking.php:132 app/features/mec/booking.php:137
1364
  #, fuzzy
1365
  #| msgid "Booking Form"
1366
  msgid "Show Booking Form Interval"
1367
  msgstr "Buchungsformular"
1368
 
1369
+ #: app/features/events.php:1665 app/features/mec/booking.php:134
1370
  msgid "Minutes (e.g 5)"
1371
  msgstr "Minuten (z.B. 5)"
1372
 
1373
+ #: app/features/events.php:1669 app/features/mec/booking.php:138
1374
  msgid ""
1375
  "You can show booking form only at certain times before event start. If you "
1376
  "set this option to 30 then booking form will open only 30 minutes before "
1377
  "starting the event! One day is 1440 minutes."
1378
  msgstr ""
1379
 
1380
+ #: app/features/events.php:1678 app/features/mec/settings.php:959
1381
  msgid "Automatic Approval"
1382
  msgstr ""
1383
 
1384
+ #: app/features/events.php:1680 app/features/notifications.php:174
1385
  #, fuzzy
1386
  #| msgid "Email verification"
1387
  msgid "Email Verification"
1388
  msgstr "Email-Verifizierung"
1389
 
1390
+ #: app/features/events.php:1684 app/features/events.php:1694
1391
  #: app/features/mec/booking.php:177 app/features/mec/booking.php:244
1392
  #: app/features/mec/booking.php:259 app/features/mec/booking.php:863
1393
  #: app/features/mec/booking.php:890
1466
  #: app/features/mec/meta_boxes/search_form.php:613
1467
  #: app/features/mec/meta_boxes/search_form.php:621
1468
  #: app/features/mec/meta_boxes/search_form.php:628
1469
+ #: app/features/mec/meta_boxes/search_form.php:636
1470
  #: app/features/mec/meta_boxes/search_form.php:650
1471
  #: app/features/mec/meta_boxes/search_form.php:658
1472
+ #: app/features/mec/meta_boxes/search_form.php:666
1473
+ #: app/features/mec/meta_boxes/search_form.php:673
1474
+ #: app/features/mec/meta_boxes/search_form.php:680
1475
+ #: app/features/mec/meta_boxes/search_form.php:687
1476
  #: app/features/mec/meta_boxes/search_form.php:694
1477
+ #: app/features/mec/meta_boxes/search_form.php:702
1478
+ #: app/features/mec/meta_boxes/search_form.php:709
1479
+ #: app/features/mec/meta_boxes/search_form.php:716
1480
+ #: app/features/mec/meta_boxes/search_form.php:723
1481
  #: app/features/mec/meta_boxes/search_form.php:737
1482
  #: app/features/mec/meta_boxes/search_form.php:745
1483
+ #: app/features/mec/meta_boxes/search_form.php:753
1484
+ #: app/features/mec/meta_boxes/search_form.php:760
1485
+ #: app/features/mec/meta_boxes/search_form.php:767
1486
+ #: app/features/mec/meta_boxes/search_form.php:774
1487
  #: app/features/mec/meta_boxes/search_form.php:781
1488
+ #: app/features/mec/meta_boxes/search_form.php:789
1489
+ #: app/features/mec/meta_boxes/search_form.php:796
1490
+ #: app/features/mec/meta_boxes/search_form.php:803
1491
+ #: app/features/mec/meta_boxes/search_form.php:810
1492
  #: app/features/mec/meta_boxes/search_form.php:824
1493
  #: app/features/mec/meta_boxes/search_form.php:832
1494
+ #: app/features/mec/meta_boxes/search_form.php:840
1495
+ #: app/features/mec/meta_boxes/search_form.php:847
1496
+ #: app/features/mec/meta_boxes/search_form.php:854
1497
+ #: app/features/mec/meta_boxes/search_form.php:861
1498
  #: app/features/mec/meta_boxes/search_form.php:868
1499
+ #: app/features/mec/meta_boxes/search_form.php:876
1500
+ #: app/features/mec/meta_boxes/search_form.php:883
1501
+ #: app/features/mec/meta_boxes/search_form.php:890
1502
+ #: app/features/mec/meta_boxes/search_form.php:897
1503
  #: app/features/mec/meta_boxes/search_form.php:947
1504
  #: app/features/mec/meta_boxes/search_form.php:955
1505
+ #: app/features/mec/meta_boxes/search_form.php:963
1506
+ #: app/features/mec/meta_boxes/search_form.php:970
1507
+ #: app/features/mec/meta_boxes/search_form.php:977
1508
+ #: app/features/mec/meta_boxes/search_form.php:984
1509
  #: app/features/mec/meta_boxes/search_form.php:991
1510
+ #: app/features/mec/meta_boxes/search_form.php:999
1511
+ #: app/features/mec/meta_boxes/search_form.php:1006
1512
+ #: app/features/mec/meta_boxes/search_form.php:1013
1513
+ #: app/features/mec/meta_boxes/search_form.php:1020
1514
  #: app/features/mec/modules.php:115 app/features/mec/settings.php:98
1515
+ #: app/features/mec/settings.php:501 app/features/mec/settings.php:789
1516
+ #: app/features/mec/wizard.php:556
1517
  msgid "Disabled"
1518
  msgstr "Deaktiviert"
1519
 
1520
+ #: app/features/events.php:1685 app/features/events.php:1695
1521
  #: app/features/mec/booking.php:176 app/features/mec/booking.php:243
1522
  #: app/features/mec/booking.php:260 app/features/mec/booking.php:862
1523
  #: app/features/mec/booking.php:891 app/features/mec/modules.php:155
1524
+ #: app/features/mec/settings.php:99 app/features/mec/settings.php:788
1525
+ #: app/features/mec/wizard.php:555
1526
  msgid "Enabled"
1527
  msgstr "Aktiviert"
1528
 
1529
+ #: app/features/events.php:1690 app/features/mec/booking.php:395
1530
+ #: app/features/mec/notifications.php:348 app/features/notifications.php:168
1531
+ #: app/libraries/main.php:649
1532
  msgid "Booking Confirmation"
1533
  msgstr "Buchungsbestätigung"
1534
 
1535
+ #: app/features/events.php:1703 app/features/mec/booking.php:279
1536
+ #: app/features/mec/settings.php:971
1537
  #, fuzzy
1538
  #| msgid "Last Few Tickets"
1539
  msgid "Last Few Tickets Percentage"
1540
  msgstr "Nur noch wenige Tickets verfügbar."
1541
 
1542
+ #: app/features/events.php:1716
1543
  msgid "15"
1544
  msgstr ""
1545
 
1546
+ #: app/features/events.php:1739
1547
  msgid "12"
1548
  msgstr "12"
1549
 
1550
+ #: app/features/events.php:1746
1551
  #, fuzzy
1552
  #| msgid "Payment Gateways"
1553
  msgid "Disabled Gateways"
1554
  msgstr "Zahlungs-Gateways"
1555
 
1556
+ #: app/features/events.php:1747
1557
  msgid ""
1558
  "You can disable some of the following payment gateways by checking them "
1559
  "otherwise they will be enabled."
1560
  msgstr ""
1561
 
1562
+ #: app/features/events.php:1788
1563
  msgid ""
1564
  "You're translating an event so MEC will use the original event for tickets "
1565
  "and booking. You can only translate the ticket name and description. Please "
1566
  "define exact tickets that you defined in the original event here."
1567
  msgstr ""
1568
 
1569
+ #: app/features/events.php:1793
1570
  msgid "Add Ticket"
1571
  msgstr "Ticket hinzufügen"
1572
 
1573
+ #: app/features/events.php:1805 app/features/events.php:2007
1574
  #, fuzzy
1575
  #| msgid "Ticket"
1576
  msgid "Ticket ID"
1577
  msgstr "Ticket"
1578
 
1579
+ #: app/features/events.php:1805 app/features/events.php:2007
1580
+ #: app/features/events.php:3888 app/features/fes.php:243
1581
+ #: app/features/ix.php:4089 app/features/ix.php:4132
1582
  #: app/features/labels.php:179 app/features/locations.php:262
1583
  #: app/features/organizers.php:203 app/features/speakers.php:281
1584
  msgid "ID"
1585
  msgstr "ID"
1586
 
1587
+ #: app/features/events.php:1808 app/features/events.php:2010
1588
  msgid "Ticket Name"
1589
  msgstr "Ticket Name"
1590
 
1591
+ #: app/features/events.php:1813 app/features/events.php:2014
1592
+ #: app/features/events.php:3888 app/features/ix.php:4089
1593
+ #: app/features/ix.php:4132 app/libraries/skins.php:1323
1594
  msgid "Start Time"
1595
  msgstr "Uhrzeit des Beginns"
1596
 
1597
+ #: app/features/events.php:1826 app/features/events.php:2027
1598
+ #: app/features/events.php:3888 app/features/ix.php:4089
1599
+ #: app/features/ix.php:4132 app/libraries/skins.php:1324
1600
  msgid "End Time"
1601
  msgstr "Uhrzeit Ende"
1602
 
1603
+ #: app/features/events.php:1842 app/features/events.php:2042
1604
+ #: app/features/events.php:3888 app/libraries/hourlyschedule.php:66
1605
  #: app/libraries/hourlyschedule.php:87 app/libraries/hourlyschedule.php:132
1606
  msgid "Description"
1607
  msgstr "Beschreibung"
1608
 
1609
+ #: app/features/events.php:1848 app/features/events.php:1851
1610
+ #: app/features/events.php:2047 app/features/events.php:2050
1611
+ #: app/features/mec/settings.php:785
1612
  #, fuzzy
1613
  #| msgid "Description"
1614
  msgid "Private Description"
1615
  msgstr "Beschreibung"
1616
 
1617
+ #: app/features/events.php:1852 app/features/events.php:2051
1618
  #, php-format
1619
  msgid ""
1620
  "You can show it on the email notifications by placing "
1621
  "%%ticket_private_description%% into the email template."
1622
  msgstr ""
1623
 
1624
+ #: app/features/events.php:1861 app/features/events.php:1865
1625
+ #: app/features/events.php:1963 app/features/events.php:1990
1626
+ #: app/features/events.php:2060 app/features/events.php:2063
1627
+ #: app/features/events.php:2145 app/features/events.php:2362
1628
+ #: app/features/events.php:2366 app/features/events.php:2408
1629
+ #: app/features/events.php:2411 app/features/mec/booking.php:566
1630
  #: app/features/mec/booking.php:569 app/features/mec/booking.php:598
1631
  #: app/features/mec/booking.php:601 app/modules/booking/steps/checkout.php:63
1632
  msgid "Price"
1633
  msgstr "Preis"
1634
 
1635
+ #: app/features/events.php:1866 app/features/events.php:2064
1636
  #, fuzzy
1637
  #| msgid "Insert 0 for free ticket. Only numbers please."
1638
  msgid ""
1640
  "any symbols or characters."
1641
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
1642
 
1643
+ #: app/features/events.php:1875 app/features/events.php:1880
1644
+ #: app/features/events.php:2073 app/features/events.php:2076
1645
  msgid "Price Label"
1646
  msgstr "Preisschild"
1647
 
1648
+ #: app/features/events.php:1881 app/features/events.php:2077
1649
  msgid "For showing on website. e.g. $15"
1650
  msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1651
 
1652
+ #: app/features/events.php:1892 app/features/events.php:2088
1653
  msgid "Available Tickets"
1654
  msgstr "Verfügbare Tickets: %s "
1655
 
1656
+ #: app/features/events.php:1911 app/features/events.php:2100
1657
  msgid "Minimum Ticket e.g. 3"
1658
  msgstr "Ticket minimum z.B. 3"
1659
 
1660
+ #: app/features/events.php:1914 app/features/events.php:2103
1661
  msgid "MinimumTicket"
1662
  msgstr "Ticket minimum"
1663
 
1664
+ #: app/features/events.php:1916 app/features/events.php:2105
1665
  msgid "Set a number for the minimum ticket reservation possible"
1666
  msgstr ""
1667
 
1668
+ #: app/features/events.php:1925 app/features/events.php:2114
1669
  msgid "e.g. 0"
1670
  msgstr "z.B. 0"
1671
 
1672
+ #: app/features/events.php:1927 app/features/events.php:2116
1673
  msgid "Day"
1674
  msgstr "Tag"
1675
 
1676
+ #: app/features/events.php:1928 app/features/events.php:2117
1677
  msgid "Hour"
1678
  msgstr "Stunde"
1679
 
1680
+ #: app/features/events.php:1930 app/features/events.php:2119
1681
  #, php-format
1682
  msgid "Stop selling ticket %s before event start."
1683
  msgstr ""
1684
 
1685
+ #: app/features/events.php:1937 app/features/events.php:2126
1686
  msgid "Price per Date"
1687
  msgstr "Preis pro Datum"
1688
 
1689
+ #: app/features/events.php:1967 app/features/events.php:1993
1690
+ #: app/features/events.php:2147 app/features/labels.php:60
1691
  #: app/features/mec/meta_boxes/display_options.php:1590
1692
  #: app/features/mec/meta_boxes/search_form.php:79
1693
  #: app/features/mec/meta_boxes/search_form.php:167
1696
  #: app/features/mec/meta_boxes/search_form.php:430
1697
  #: app/features/mec/meta_boxes/search_form.php:517
1698
  #: app/features/mec/meta_boxes/search_form.php:604
1699
+ #: app/features/mec/meta_boxes/search_form.php:685
1700
+ #: app/features/mec/meta_boxes/search_form.php:772
1701
+ #: app/features/mec/meta_boxes/search_form.php:859
1702
+ #: app/features/mec/meta_boxes/search_form.php:982
1703
+ #: app/features/mec/settings.php:1091 app/features/mec/settings.php:1183
1704
+ #: app/features/mec/single.php:412 app/features/mec/single.php:454
1705
  #: app/features/mec/wizard.php:436 app/features/mec/wizard.php:475
1706
  #: app/features/search.php:98 app/libraries/skins.php:1213
1707
  msgid "Label"
1708
  msgstr "Label"
1709
 
1710
+ #: app/features/events.php:1969 app/features/events.php:1995
1711
+ #: app/features/events.php:2149 app/features/events.php:2248
1712
+ #: app/features/events.php:2284 app/features/events.php:2391
1713
+ #: app/features/events.php:2433 app/features/mec/booking.php:505
1714
  #: app/features/mec/booking.php:534 app/features/mec/booking.php:585
1715
+ #: app/features/mec/booking.php:617 app/features/organizers.php:331
1716
+ #: app/features/organizers.php:340 app/libraries/hourlyschedule.php:53
1717
  #: app/libraries/hourlyschedule.php:67 app/libraries/hourlyschedule.php:88
1718
  #: app/libraries/hourlyschedule.php:116 app/libraries/hourlyschedule.php:133
1719
+ #: app/libraries/main.php:3357 app/libraries/main.php:3387
1720
+ #: app/libraries/main.php:3416 app/libraries/main.php:3445
1721
+ #: app/libraries/main.php:3475 app/libraries/main.php:3505
1722
+ #: app/libraries/main.php:3534 app/libraries/main.php:3564
1723
+ #: app/libraries/main.php:3594 app/libraries/main.php:3616
1724
+ #: app/libraries/main.php:3647 app/libraries/main.php:3694
1725
+ #: app/libraries/main.php:3748 app/libraries/main.php:3798
1726
+ #: app/libraries/main.php:3838
1727
  msgid "Remove"
1728
  msgstr "Entfernen"
1729
 
1730
+ #: app/features/events.php:2222 app/features/events.php:2260
1731
  #: app/features/mec/booking.php:485 app/features/mec/booking.php:514
1732
  msgid "Fee Title"
1733
  msgstr "Gebühren Name"
1734
 
1735
+ #: app/features/events.php:2228 app/features/events.php:2232
1736
+ #: app/features/events.php:2265 app/features/events.php:2268
1737
  #: app/features/mec/booking.php:489 app/features/mec/booking.php:492
1738
  #: app/features/mec/booking.php:518 app/features/mec/booking.php:521
1739
  msgid "Amount"
1740
  msgstr "Betrag"
1741
 
1742
+ #: app/features/events.php:2233 app/features/events.php:2269
1743
  #: app/features/mec/booking.php:493 app/features/mec/booking.php:522
1744
  msgid ""
1745
  "Fee amount, considered as fixed amount if you set the type to amount "
1748
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1749
  "sonst als Prozentsatz"
1750
 
1751
+ #: app/features/events.php:2242 app/features/events.php:2278
1752
  #: app/features/mec/booking.php:500 app/features/mec/booking.php:529
1753
  msgid "Percent"
1754
  msgstr "Prozent"
1755
 
1756
+ #: app/features/events.php:2243 app/features/events.php:2279
1757
  #: app/features/mec/booking.php:501 app/features/mec/booking.php:530
1758
  msgid "Amount (Per Ticket)"
1759
  msgstr "Betrag (pro Ticket)"
1760
 
1761
+ #: app/features/events.php:2244 app/features/events.php:2280
1762
  #: app/features/mec/booking.php:502 app/features/mec/booking.php:531
1763
  msgid "Amount (Per Booking)"
1764
  msgstr "Betrag (pro Buchung)"
1765
 
1766
+ #: app/features/events.php:2356 app/features/events.php:2403
1767
+ #: app/features/events.php:3607 app/features/events.php:3888
1768
+ #: app/features/fes/form.php:260 app/features/ix.php:4089
1769
+ #: app/features/ix.php:4132 app/features/mec/booking.php:562
1770
  #: app/features/mec/booking.php:594 app/features/mec/styling.php:134
1771
  #: app/libraries/hourlyschedule.php:49 app/libraries/hourlyschedule.php:65
1772
  #: app/libraries/hourlyschedule.php:86 app/libraries/hourlyschedule.php:111
1774
  msgid "Title"
1775
  msgstr "Titel"
1776
 
1777
+ #: app/features/events.php:2367 app/features/events.php:2412
1778
  #: app/features/mec/booking.php:570 app/features/mec/booking.php:602
1779
  msgid "Option Price"
1780
  msgstr "Preis Optionen"
1781
 
1782
+ #: app/features/events.php:2377 app/features/events.php:2381
1783
+ #: app/features/events.php:2421 app/features/events.php:2424
1784
  #: app/features/mec/booking.php:576 app/features/mec/booking.php:579
1785
  #: app/features/mec/booking.php:608 app/features/mec/booking.php:611
1786
  msgid "Maximum Per Ticket"
1787
  msgstr "Maximum pro Ticket"
1788
 
1789
+ #: app/features/events.php:2382 app/features/events.php:2425
1790
  #: app/features/mec/booking.php:580 app/features/mec/booking.php:612
1791
  #, fuzzy
1792
  #| msgid "Maximum Per Ticket. Leave it blank for unlimited."
1793
  msgid "Maximum Per Ticket. Leave blank for unlimited."
1794
  msgstr "Maximum pro Ticket. Leerlassen für unendlich."
1795
 
1796
+ #: app/features/events.php:2501
1797
  msgid ""
1798
  "You're translating an event so MEC will use the original event for booking "
1799
  "form. You can only translate the field name and options. Please define exact "
1800
  "fields that you defined in the original event here."
1801
  msgstr ""
1802
 
1803
+ #: app/features/events.php:2527 app/features/mec/booking.php:628
1804
  #, fuzzy
1805
  #| msgid "Attendees List"
1806
  msgid "Per Attendee Fields"
1807
  msgstr "Teilnehmer Liste"
1808
 
1809
+ #: app/features/events.php:2557 app/features/mec/booking.php:661
1810
+ #: app/libraries/main.php:3378
1811
  msgid "MEC Name"
1812
  msgstr "MEC Name"
1813
 
1814
+ #: app/features/events.php:2558 app/features/mec/booking.php:662
1815
+ #: app/libraries/main.php:3407
1816
  msgid "MEC Email"
1817
  msgstr "MEC Email"
1818
 
1819
+ #: app/features/events.php:2559 app/features/events.php:2648
1820
  #: app/features/mec/booking.php:663 app/features/mec/booking.php:759
1821
+ #: app/features/mec/single.php:248 app/libraries/main.php:3348
1822
  #: app/libraries/skins.php:1330
1823
  msgid "Text"
1824
  msgstr "Text"
1825
 
1826
+ #: app/features/events.php:2562 app/features/events.php:2651
1827
  #: app/features/mec/booking.php:666 app/features/mec/booking.php:762
1828
+ #: app/features/mec/single.php:252 app/features/organizers.php:103
1829
  #: app/features/organizers.php:148 app/features/speakers.php:119
1830
  #: app/features/speakers.php:200 app/features/speakers.php:284
1831
+ #: app/libraries/main.php:3555
1832
  msgid "Tel"
1833
  msgstr "Tel"
1834
 
1835
+ #: app/features/events.php:2563 app/features/mec/booking.php:667
1836
+ #: app/libraries/main.php:3496
1837
  msgid "File"
1838
  msgstr "Datei"
1839
 
1840
+ #: app/features/events.php:2564 app/features/events.php:2652
1841
  #: app/features/mec/booking.php:668 app/features/mec/booking.php:763
1842
+ #: app/features/mec/single.php:253 app/libraries/main.php:3585
1843
  msgid "Textarea"
1844
  msgstr "Textbereich"
1845
 
1846
+ #: app/features/events.php:2565 app/features/events.php:2653
1847
  #: app/features/mec/booking.php:669 app/features/mec/booking.php:764
1848
  #: app/features/mec/meta_boxes/search_form.php:46
1849
  #: app/features/mec/meta_boxes/search_form.php:134
1852
  #: app/features/mec/meta_boxes/search_form.php:397
1853
  #: app/features/mec/meta_boxes/search_form.php:484
1854
  #: app/features/mec/meta_boxes/search_form.php:571
1855
+ #: app/features/mec/meta_boxes/search_form.php:652
1856
+ #: app/features/mec/meta_boxes/search_form.php:739
1857
+ #: app/features/mec/meta_boxes/search_form.php:826
1858
+ #: app/features/mec/meta_boxes/search_form.php:949
1859
+ #: app/features/mec/single.php:255 app/libraries/main.php:3638
1860
  msgid "Checkboxes"
1861
  msgstr "Checkboxes"
1862
 
1863
+ #: app/features/events.php:2566 app/features/events.php:2654
1864
  #: app/features/mec/booking.php:670 app/features/mec/booking.php:765
1865
+ #: app/features/mec/single.php:256 app/libraries/main.php:3685
1866
  msgid "Radio Buttons"
1867
  msgstr "Radio Buttons"
1868
 
1869
+ #: app/features/events.php:2567 app/features/events.php:2655
1870
  #: app/features/mec/booking.php:125 app/features/mec/booking.php:671
1871
  #: app/features/mec/booking.php:766
1872
  #: app/features/mec/meta_boxes/search_form.php:45
1914
  #: app/features/mec/meta_boxes/search_form.php:593
1915
  #: app/features/mec/meta_boxes/search_form.php:600
1916
  #: app/features/mec/meta_boxes/search_form.php:607
 
1917
  #: app/features/mec/meta_boxes/search_form.php:651
1918
  #: app/features/mec/meta_boxes/search_form.php:659
1919
+ #: app/features/mec/meta_boxes/search_form.php:667
1920
+ #: app/features/mec/meta_boxes/search_form.php:674
1921
+ #: app/features/mec/meta_boxes/search_form.php:681
1922
+ #: app/features/mec/meta_boxes/search_form.php:688
1923
+ #: app/features/mec/meta_boxes/search_form.php:710
1924
  #: app/features/mec/meta_boxes/search_form.php:738
1925
  #: app/features/mec/meta_boxes/search_form.php:746
1926
+ #: app/features/mec/meta_boxes/search_form.php:754
1927
+ #: app/features/mec/meta_boxes/search_form.php:761
1928
+ #: app/features/mec/meta_boxes/search_form.php:768
1929
+ #: app/features/mec/meta_boxes/search_form.php:775
1930
+ #: app/features/mec/meta_boxes/search_form.php:797
1931
  #: app/features/mec/meta_boxes/search_form.php:825
1932
  #: app/features/mec/meta_boxes/search_form.php:833
1933
+ #: app/features/mec/meta_boxes/search_form.php:841
1934
+ #: app/features/mec/meta_boxes/search_form.php:848
1935
+ #: app/features/mec/meta_boxes/search_form.php:855
1936
+ #: app/features/mec/meta_boxes/search_form.php:862
1937
+ #: app/features/mec/meta_boxes/search_form.php:884
1938
  #: app/features/mec/meta_boxes/search_form.php:948
1939
  #: app/features/mec/meta_boxes/search_form.php:956
1940
+ #: app/features/mec/meta_boxes/search_form.php:964
1941
+ #: app/features/mec/meta_boxes/search_form.php:971
1942
+ #: app/features/mec/meta_boxes/search_form.php:978
1943
+ #: app/features/mec/meta_boxes/search_form.php:985
1944
+ #: app/features/mec/meta_boxes/search_form.php:1007
1945
+ #: app/features/mec/single.php:257 app/features/mec/wizard.php:546
1946
+ #: app/libraries/main.php:3732
1947
  msgid "Dropdown"
1948
  msgstr "Dropdown"
1949
 
1950
+ #: app/features/events.php:2568 app/features/events.php:2656
1951
  #: app/features/mec/booking.php:672 app/features/mec/booking.php:767
1952
+ #: app/libraries/main.php:3789
1953
  msgid "Agreement"
1954
  msgstr "Zustimmung"
1955
 
1956
+ #: app/features/events.php:2569 app/features/events.php:2657
1957
  #: app/features/mec/booking.php:673 app/features/mec/booking.php:768
1958
+ #: app/features/mec/single.php:254 app/libraries/main.php:3615
1959
  msgid "Paragraph"
1960
  msgstr "Absatz"
1961
 
1962
+ #: app/features/events.php:2618 app/features/mec/booking.php:726
1963
  #, fuzzy
1964
  #| msgid "Required Field"
1965
  msgid "Fixed Fields"
1966
  msgstr "Pflichtfeld"
1967
 
1968
+ #: app/features/events.php:3490 app/features/mec/meta_boxes/filter.php:198
1969
+ #: app/features/mec/settings.php:484
1970
+ msgid "Expired Events"
1971
+ msgstr "Abgelaufene Events"
1972
+
1973
+ #: app/features/events.php:3510 app/features/events.php:3528
1974
+ #: app/features/events.php:3546 app/features/events.php:3564
1975
  #, php-format
1976
  msgid "Show all %s"
1977
  msgstr "Zeige alle %s"
1978
 
1979
+ #: app/features/events.php:3510
1980
  msgid "labels"
1981
  msgstr "Labels + Eventstatus"
1982
 
1983
+ #: app/features/events.php:3528
1984
  msgid "locations"
1985
  msgstr "Orte"
1986
 
1987
+ #: app/features/events.php:3546
1988
  msgid "organizers"
1989
  msgstr "Veranstalter"
1990
 
1991
+ #: app/features/events.php:3580
1992
  msgid "Attendees List"
1993
  msgstr "Teilnehmer Liste"
1994
 
1995
+ #: app/features/events.php:3609 app/features/events.php:3888
1996
+ #: app/features/ix.php:4089 app/features/ix.php:4132
1997
  #: app/features/locations.php:58 app/features/locations.php:263
1998
  #: app/features/locations.php:323 app/features/locations.php:325
1999
  #: app/features/locations.php:334
2005
  #: app/features/mec/meta_boxes/search_form.php:401
2006
  #: app/features/mec/meta_boxes/search_form.php:488
2007
  #: app/features/mec/meta_boxes/search_form.php:575
2008
+ #: app/features/mec/meta_boxes/search_form.php:656
2009
+ #: app/features/mec/meta_boxes/search_form.php:743
2010
+ #: app/features/mec/meta_boxes/search_form.php:830
2011
+ #: app/features/mec/meta_boxes/search_form.php:953
2012
+ #: app/features/mec/settings.php:1157 app/features/mec/single.php:402
2013
+ #: app/features/mec/single.php:444 app/features/mec/wizard.php:426
2014
  #: app/features/mec/wizard.php:465 app/features/popup/event.php:116
2015
  #: app/features/popup/event.php:125 app/features/search.php:74
2016
+ #: app/libraries/main.php:2713 app/libraries/main.php:6683
2017
+ #: app/libraries/main.php:6737 app/libraries/skins.php:1097
2018
  #: app/skins/single.php:962 app/skins/single.php:1416
2019
+ #: app/skins/single/default.php:243 app/skins/single/default.php:482
2020
  #: app/skins/single/m1.php:174 app/skins/single/m2.php:97
2021
+ #: app/skins/single/modern.php:127
2022
  msgid "Location"
2023
  msgstr "Ort"
2024
 
2025
+ #: app/features/events.php:3615
2026
  #, fuzzy
2027
  #| msgid "Tickets"
2028
  msgid "Sold Tickets"
2029
  msgstr "Tickets"
2030
 
2031
+ #: app/features/events.php:3617
2032
  msgid "Repeat"
2033
  msgstr "Wiederholen"
2034
 
2035
+ #: app/features/events.php:3762 app/features/events.php:3763
2036
  #, fuzzy
2037
  #| msgid "iCal Export"
2038
  msgid "iCal / Outlook Export"
2039
  msgstr "ical Export"
2040
 
2041
+ #: app/features/events.php:3765 app/features/events.php:3766
2042
  msgid "CSV Export"
2043
  msgstr "CSV Export"
2044
 
2045
+ #: app/features/events.php:3768 app/features/events.php:3769
2046
  msgid "MS Excel Export"
2047
  msgstr "MS Excel Export"
2048
 
2049
+ #: app/features/events.php:3771 app/features/events.php:3772
2050
  msgid "XML Export"
2051
  msgstr "XML Export"
2052
 
2053
+ #: app/features/events.php:3774 app/features/events.php:3775
2054
  msgid "JSON Export"
2055
  msgstr "JSON Export"
2056
 
2057
+ #: app/features/events.php:3777 app/features/events.php:3778
2058
+ #: app/features/events.php:3947
2059
  msgid "Duplicate"
2060
  msgstr "Kopie"
2061
 
2062
+ #: app/features/events.php:3888 app/features/ix.php:4089
2063
+ #: app/features/ix.php:4132
2064
  msgid "Link"
2065
  msgstr "Link"
2066
 
2067
+ #: app/features/events.php:3888 app/features/ix.php:4089
2068
+ #: app/features/ix.php:4132 app/features/locations.php:110
2069
  #: app/features/locations.php:180 app/features/locations.php:264
2070
  #: app/features/mec/meta_boxes/search_form.php:86
2071
  #: app/features/mec/meta_boxes/search_form.php:174
2074
  #: app/features/mec/meta_boxes/search_form.php:437
2075
  #: app/features/mec/meta_boxes/search_form.php:524
2076
  #: app/features/mec/meta_boxes/search_form.php:611
2077
+ #: app/features/mec/meta_boxes/search_form.php:692
2078
+ #: app/features/mec/meta_boxes/search_form.php:779
2079
+ #: app/features/mec/meta_boxes/search_form.php:866
2080
+ #: app/features/mec/meta_boxes/search_form.php:989 app/libraries/skins.php:1344
2081
  msgid "Address"
2082
  msgstr "Adresse"
2083
 
2084
+ #: app/features/events.php:3888
2085
  #, php-format
2086
  msgid "%s Tel"
2087
  msgstr "%s Tel"
2088
 
2089
+ #: app/features/events.php:3888
2090
  #, php-format
2091
  msgid "%s Email"
2092
  msgstr "%s Email"
2093
 
2094
+ #: app/features/events.php:3888 app/features/fes/form.php:937
2095
+ #: app/features/mec/settings.php:843
2096
  msgid "Featured Image"
2097
  msgstr "Ausgewähltes Bild"
2098
 
2099
+ #: app/features/events.php:4098 app/features/fes.php:243
2100
+ #: app/features/profile/profile.php:155 app/libraries/main.php:2797
2101
+ #: app/libraries/main.php:6717
2102
  msgid "Ticket"
2103
  msgstr "Ticket"
2104
 
2105
+ #: app/features/events.php:4101 app/features/profile/profile.php:158
2106
  msgid "Variations"
2107
  msgstr "Variationen"
2108
 
2109
+ #: app/features/events.php:4116 app/features/fes.php:317
2110
  msgid "Unknown"
2111
  msgstr "Unbekannt"
2112
 
2113
+ #: app/features/events.php:4142
2114
  msgid ""
2115
  "If you want to send an email, first select your attendees and then click in "
2116
  "the button below, please."
2117
  msgstr ""
2118
 
2119
+ #: app/features/events.php:4142 app/features/mec/report.php:58
2120
  msgid "Send Email"
2121
  msgstr "E-Mail senden"
2122
 
2123
+ #: app/features/events.php:4146
2124
  msgid "No Attendees Found!"
2125
  msgstr "Keine Teilnehmer gefunden!"
2126
 
2166
  msgid "Order Time"
2167
  msgstr "Uhrzeit Bestellung"
2168
 
2169
+ #: app/features/fes.php:243 app/features/wc.php:84 app/libraries/main.php:2745
2170
+ #: app/libraries/main.php:2860
2171
  msgid "Transaction ID"
2172
  msgstr "Transaktions-ID"
2173
 
2175
  msgid "Total Price"
2176
  msgstr "Gesamt Preis"
2177
 
2178
+ #: app/features/fes.php:243 app/libraries/main.php:2855
2179
  msgid "Gateway"
2180
  msgstr "Gateway"
2181
 
2239
  msgid "Please select at-least one label!"
2240
  msgstr "Bitte Tickets auswählen!"
2241
 
2242
+ #: app/features/fes.php:1295
2243
  #, fuzzy
2244
  #| msgid "The event submitted. It will publish as soon as possible."
2245
  msgid "Event submitted. It will publish as soon as possible."
2247
  "Die Veranstaltung wurde übermittelt. Sie wird sobald wie möglich "
2248
  "veröffentlicht werden."
2249
 
2250
+ #: app/features/fes.php:1296
2251
  msgid "The event published."
2252
  msgstr "Die Veranstaltung wurde veröffentlicht."
2253
 
2255
  msgid "Go back to events list"
2256
  msgstr "Zurück zur Liste der Veranstaltungen"
2257
 
2258
+ #: app/features/fes/form.php:268 app/features/mec/settings.php:1010
2259
+ #: app/features/mec/settings.php:1086
2260
  msgid "Excerpt"
2261
  msgstr ""
2262
 
2334
  msgid "eg. yourname@gmail.com"
2335
  msgstr "z.B. IhrName@ihrewebseite.de"
2336
 
2337
+ #: app/features/fes/form.php:813 app/features/organizers.php:288
2338
  #: app/features/popup/event.php:183
2339
  msgid "eg. John Smith"
2340
  msgstr "z.B. Max Mustermann"
2352
  "dieser durch einen neuen link ersetzt werden. Vollständigen Link einfügen, "
2353
  "einschließlich http(s)://"
2354
 
2355
+ #: app/features/fes/form.php:942
2356
  msgid "Remove Image"
2357
  msgstr "Bild entfernen"
2358
 
2359
+ #: app/features/fes/form.php:978 app/features/labels.php:61
2360
+ #: app/features/labels.php:223 app/features/mec.php:485
2361
  #: app/features/mec/meta_boxes/filter.php:72
2362
+ #: app/features/mec/meta_boxes/filter.php:134 app/libraries/main.php:6680
2363
+ #: app/libraries/main.php:6734 app/skins/single.php:1175
2364
+ #: app/skins/single/default.php:221 app/skins/single/default.php:458
2365
+ #: app/skins/single/m1.php:76 app/skins/single/modern.php:269
2366
  msgid "Labels"
2367
  msgstr "Labels"
2368
 
2369
+ #: app/features/fes/form.php:1024 app/features/mec.php:483
2370
  #: app/features/mec/meta_boxes/filter.php:73
2371
  #: app/features/mec/meta_boxes/filter.php:152 app/features/tag.php:59
2372
  msgid "Tags"
2373
  msgstr "Schlagworte"
2374
 
2375
+ #: app/features/fes/form.php:1026
2376
  msgid "Insert your desired tags, comma separated."
2377
  msgstr ""
2378
  "Geben Sie die gewünschten Tags (Schlagworte) durch ein Komma separiert ein"
2379
 
2380
+ #: app/features/fes/form.php:1046 app/features/mec.php:492
2381
+ #: app/features/mec/modules.php:43 app/features/mec/settings.php:914
2382
  #: app/features/mec/wizard.php:497 app/features/speakers.php:61
2383
  #: app/libraries/hourlyschedule.php:70 app/libraries/hourlyschedule.php:91
2384
+ #: app/libraries/hourlyschedule.php:136 app/libraries/main.php:627
2385
+ #: app/libraries/main.php:6686 app/libraries/main.php:6740
2386
  #: app/modules/speakers/details.php:18
2387
  msgid "Speakers"
2388
  msgstr "Sprecher"
2389
 
2390
+ #: app/features/fes/form.php:1048
2391
  msgid "Speakers Names"
2392
  msgstr "Sprecher Namen"
2393
 
2394
+ #: app/features/fes/form.php:1049
2395
  #, fuzzy
2396
  #| msgid "Separate names with commas Similar Justin, Cris"
2397
  msgid "Separate names with commas: Justin, Chris"
2398
  msgstr "Unterteile Namen mit Kommas. z.B. Hans, Maier"
2399
 
2400
+ #: app/features/fes/form.php:1090 app/modules/booking/steps/form.php:352
2401
  msgid "Submit"
2402
  msgstr "Buchung abschließen"
2403
 
2435
  msgstr "MEC - Import / Export"
2436
 
2437
  #: app/features/ix.php:107 app/features/mec/support.php:73
2438
+ #: app/libraries/main.php:882
2439
  msgid "Import / Export"
2440
  msgstr "Import / Export"
2441
 
2442
+ #: app/features/ix.php:209 app/features/ix.php:213 app/features/ix.php:227
2443
  msgid "Please upload a CSV file."
2444
  msgstr ""
2445
 
2446
+ #: app/features/ix.php:222 app/features/ix.php:444
2447
  msgid "An error occurred during the file upload! Please check permissions!"
2448
  msgstr ""
2449
 
2450
+ #: app/features/ix.php:278 app/libraries/main.php:6965
2451
+ #: app/libraries/main.php:6985
2452
  msgid "Confirmed"
2453
  msgstr "Bestätigt"
2454
 
2455
+ #: app/features/ix.php:279 app/libraries/main.php:6966
2456
+ #: app/libraries/main.php:6993
2457
  msgid "Rejected"
2458
  msgstr "Abgelehnt"
2459
 
2460
+ #: app/features/ix.php:283 app/features/mec/booking.php:1033
2461
  #: app/features/mec/booking.php:1055 app/features/mec/modules.php:441
2462
+ #: app/features/mec/modules.php:463 app/features/mec/notifications.php:1655
2463
+ #: app/features/mec/notifications.php:1677 app/features/mec/settings.php:1522
2464
+ #: app/features/mec/settings.php:1544 app/features/mec/single.php:518
2465
+ #: app/features/mec/single.php:540 app/libraries/main.php:7013
2466
  msgid "Verified"
2467
  msgstr "Verifiziert"
2468
 
2469
+ #: app/features/ix.php:284 app/features/labels.php:118
2470
+ #: app/features/labels.php:144 app/libraries/main.php:7014
2471
  msgid "Canceled"
2472
  msgstr "Abgesagt"
2473
 
2474
+ #: app/features/ix.php:419
2475
  #, fuzzy
2476
  #| msgid "The events are imported successfully!"
2477
  msgid "The bookings are imported successfully!"
2478
  msgstr "Die Events wurden erfolgreich importiert!"
2479
 
2480
+ #: app/features/ix.php:419
2481
  #, fuzzy
2482
  #| msgid "No bookings found!"
2483
  msgid "No bookings found to import!"
2484
  msgstr "Keine Buchungen gefunden"
2485
 
2486
+ #: app/features/ix.php:427
2487
  msgid "Please upload the feed file."
2488
  msgstr ""
2489
 
2490
+ #: app/features/ix.php:432 app/features/ix.php:449
2491
  msgid "Please upload an XML or an ICS file."
2492
  msgstr ""
2493
 
2494
+ #: app/features/ix.php:435
2495
  msgid "The file type should be XML or ICS."
2496
  msgstr "Der Datei Typ muss XML oder ICS sein."
2497
 
2498
+ #: app/features/ix.php:458
2499
  msgid "The events are imported successfully!"
2500
  msgstr "Die Events wurden erfolgreich importiert!"
2501
 
2502
+ #: app/features/ix.php:1229
2503
  msgid "Third Party plugin is not installed and activated!"
2504
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
2505
 
2506
+ #: app/features/ix.php:1253
2507
  msgid "Third Party plugin is invalid!"
2508
  msgstr "Drittanbieter-Plugin ist ungültig!"
2509
 
2510
+ #: app/features/ix.php:3228 app/features/ix.php:3289
2511
  #, fuzzy
2512
  #| msgid "Both of API key and Calendar ID are required!"
2513
  msgid "API key and Calendar ID are required!"
2514
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2515
 
2516
+ #: app/features/ix.php:3284 app/features/ix.php:3769 app/features/ix.php:4527
2517
  #, fuzzy
2518
  #| msgid "Please select some events to import!"
2519
  msgid "Please select events to import!"
2520
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
2521
 
2522
+ #: app/features/ix.php:3711 app/features/ix.php:3774
2523
  #, fuzzy
2524
  #| msgid "Both of API key and Calendar ID are required!"
2525
  msgid "API key and Group URL are required!"
2526
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
2527
 
2528
+ #: app/features/ix.php:4013
2529
  msgid "Check at Meetup"
2530
  msgstr ""
2531
 
2532
+ #: app/features/ix.php:4089 app/features/ix.php:4132
2533
  msgid "Organizer Tel"
2534
  msgstr "Organisator Telefon"
2535
 
2536
+ #: app/features/ix.php:4089 app/features/ix.php:4132
2537
  msgid "Organizer Email"
2538
  msgstr "Organisator Email"
2539
 
2540
+ #: app/features/ix.php:4209
2541
  #, fuzzy
2542
  #| msgid "All of Client ID, Client Secret and Calendar ID are required!"
2543
  msgid "All of Client ID, Client Secret, and Calendar ID are required!"
2544
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2545
 
2546
+ #: app/features/ix.php:4232
2547
  #, fuzzy, php-format
2548
  #| msgid "All seems good! Please click %s for authenticating your app."
2549
  msgid "All seems good! Please click %s to authenticate your app."
2550
  msgstr ""
2551
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
2552
 
2553
+ #: app/features/ix.php:4232 app/features/mec/settings.php:1409
2554
  msgid "here"
2555
  msgstr ""
2556
 
2557
+ #: app/features/ix.php:4287
2558
  #, fuzzy
2559
  #| msgid "All of Client App, Client Secret and Calendar ID are required!"
2560
  msgid "Client App, Client Secret, and Calendar ID are all required!"
2561
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
2562
 
2563
+ #: app/features/ix.php:4449
2564
  #, fuzzy, php-format
2565
  #| msgid "%s events added to Google Calendar successfully."
2566
  msgid "%s events added to Google Calendar with success."
2567
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
2568
 
2569
+ #: app/features/ix.php:4450
2570
  #, fuzzy, php-format
2571
  #| msgid "%s previously added events get updated."
2572
  msgid "%s Updated previously added events."
2573
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
2574
 
2575
+ #: app/features/ix.php:4451
2576
  #, php-format
2577
  msgid "%s events failed to add for following reasons: %s"
2578
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
2579
 
2580
+ #: app/features/ix.php:4483
2581
  #, fuzzy
2582
  #| msgid "Please insert your facebook page's link."
2583
  msgid "Please insert your Facebook page's link."
2584
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2585
 
2586
+ #: app/features/ix.php:4494 app/features/ix.php:4536
2587
  #, fuzzy
2588
  #| msgid ""
2589
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
2595
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
2596
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
2597
 
2598
+ #: app/features/ix.php:4531
2599
  msgid "Please insert your facebook page's link."
2600
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
2601
 
2734
  msgstr "Kalender ID"
2735
 
2736
  #: app/features/ix/export_g_calendar.php:48
2737
+ #: app/features/ix/export_g_calendar.php:113
2738
+ #: app/features/ix/export_g_calendar.php:128
2739
  msgid "Authenticate"
2740
  msgstr "Authentifizierung"
2741
 
2761
  msgstr "Umschalten"
2762
 
2763
  #: app/features/ix/export_g_calendar.php:72
2764
+ #: app/features/ix/import_f_calendar.php:72
2765
+ #: app/features/ix/import_g_calendar.php:87
2766
+ #: app/features/ix/import_meetup.php:69 app/features/ix/thirdparty.php:67
2767
+ msgid "Import Options"
2768
+ msgstr "Import Optionen"
2769
+
2770
+ #: app/features/ix/export_g_calendar.php:76 app/features/ix/sync.php:46
2771
+ #, fuzzy
2772
+ #| msgid "Event Attendees"
2773
+ msgid "Export Attendees"
2774
+ msgstr "Event Teilnehmer"
2775
+
2776
+ #: app/features/ix/export_g_calendar.php:79
2777
+ #: app/features/ix/export_g_calendar.php:158
2778
+ #: app/features/ix/export_g_calendar.php:173
2779
+ #: app/features/mec/notifications.php:187
2780
+ #: app/features/mec/notifications.php:337
2781
+ #: app/features/mec/notifications.php:503
2782
+ #: app/features/mec/notifications.php:683
2783
+ #: app/features/mec/notifications.php:1324 app/features/notifications.php:146
2784
  msgid "Add to Google Calendar"
2785
  msgstr "Zum Google Kalender hinzufügen"
2786
 
2787
+ #: app/features/ix/export_g_calendar.php:100 app/features/mec/booking.php:1035
2788
+ #: app/features/mec/modules.php:443 app/features/mec/notifications.php:1657
2789
+ #: app/features/mec/settings.php:1524 app/features/mec/single.php:520
2790
  msgid "Checking ..."
2791
  msgstr "Überprüfung"
2792
 
2793
+ #: app/features/ix/export_g_calendar.php:145
2794
  msgid "Exporting ..."
2795
  msgstr "Exportieren…"
2796
 
2931
  msgid "Event Title: %s"
2932
  msgstr "Event Titel: %s"
2933
 
 
 
 
 
 
 
2934
  #: app/features/ix/import_f_calendar.php:76
2935
  #: app/features/ix/import_g_calendar.php:97
2936
  #: app/features/ix/import_meetup.php:79 app/features/ix/thirdparty.php:84
3075
  msgid "Auto Google Import"
3076
  msgstr "Automatischer Google Calender Import"
3077
 
3078
+ #: app/features/ix/sync.php:32 app/features/ix/sync.php:50
3079
+ #: app/features/ix/sync.php:63 app/features/ix/sync.php:74
3080
+ #: app/features/mec/notifications.php:1176
3081
  msgid "Important Note"
3082
  msgstr "Important Note"
3083
 
3094
  msgid "Auto Google Export"
3095
  msgstr "Auto Google Export"
3096
 
3097
+ #: app/features/ix/sync.php:50
3098
  #, php-format
3099
  msgid ""
3100
  "Set a cronjob to call %s file atleast once per day otherwise it won't export "
3103
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
3104
  "ansonsten würden Ihre Webseiten Events nicht zum Google Kalender exportiert. "
3105
 
3106
+ #: app/features/ix/sync.php:60
3107
  msgid "Auto Facebook Import"
3108
  msgstr "Auto Facebook Kalender Import"
3109
 
3110
+ #: app/features/ix/sync.php:63
3111
  #, php-format
3112
  msgid ""
3113
  "Set a cronjob to call %s file atleast once per day otherwise it won't import "
3116
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
3117
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
3118
 
3119
+ #: app/features/ix/sync.php:71
3120
  #, fuzzy
3121
  #| msgid "Auto Google Import"
3122
  msgid "Auto Meetup Import"
3123
  msgstr "Automatischer Google Calender Import"
3124
 
3125
+ #: app/features/ix/sync.php:74
3126
  #, fuzzy, php-format
3127
  #| msgid ""
3128
  #| "Set a cronjob to call %s file atleast once per day otherwise it won't "
3134
  "Setzen Sie einen Cronjob, um % s Datei mindestens einmal pro Tag anzurufen, "
3135
  "ansonsten würden keine Veranstaltungen von Facebook importiert. "
3136
 
3137
+ #: app/features/ix/sync.php:78
3138
  msgid "Auto set cronjobs (Once Daily)"
3139
  msgstr ""
3140
 
3141
+ #: app/features/ix/sync.php:79
3142
  msgid ""
3143
  "First you need to enable the above options for each to be able to use this."
3144
  msgstr ""
3145
 
3146
+ #: app/features/ix/sync.php:80
3147
  msgid ""
3148
  "If you cannot set CronJob on your server, you can use the options below. "
3149
  "Please make sure to NOT use the following options and setting up the server "
3150
  "manually together."
3151
  msgstr ""
3152
 
3153
+ #: app/features/ix/sync.php:84
3154
  #, fuzzy
3155
  #| msgid "Google Cal. Import"
3156
  msgid "Google import"
3157
  msgstr "Google Calender Import"
3158
 
3159
+ #: app/features/ix/sync.php:89
3160
  #, fuzzy
3161
  #| msgid "Google Cal. Export"
3162
  msgid "Google export"
3163
  msgstr "Google Kalender Export"
3164
 
3165
+ #: app/features/ix/sync.php:94
3166
  #, fuzzy
3167
  #| msgid "Import"
3168
  msgid "Meetup import"
3169
  msgstr "Import"
3170
 
3171
+ #: app/features/ix/sync.php:101 app/features/mec/wizard.php:735
3172
  msgid "Save"
3173
  msgstr "Sichern"
3174
 
3296
  msgid "Event %s"
3297
  msgstr "Event %s"
3298
 
3299
+ #: app/features/locations.php:59 app/features/mec.php:486
3300
  #: app/features/mec/dashboard.php:281 app/features/mec/meta_boxes/filter.php:70
3301
+ #: app/features/mec/meta_boxes/filter.php:98 app/libraries/main.php:6682
3302
+ #: app/libraries/main.php:6736
3303
  msgid "Locations"
3304
  msgstr "Orte"
3305
 
3367
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
3368
  "Westfalenhalle"
3369
 
3370
+ #: app/features/locations.php:346 app/features/mec/settings.php:886
3371
  #: app/features/popup/event.php:143 app/widgets/single.php:117
3372
  msgid "Event Location"
3373
  msgstr "Veranstaltungsort"
3397
  msgid "Get Latitude and Longitude"
3398
  msgstr ""
3399
 
3400
+ #: app/features/locations.php:386 app/features/organizers.php:306
3401
  #: app/features/popup/event.php:202
3402
  msgid "Choose image"
3403
  msgstr "Bild wählen"
3406
  msgid "Don't show map in single event page"
3407
  msgstr "Karte in Einzelansicht nicht anzeigen"
3408
 
3409
+ #: app/features/locations.php:403 app/libraries/main.php:6720
3410
+ #: app/libraries/main.php:6767
3411
  msgid "Other Locations"
3412
  msgstr "Andere Orte"
3413
 
3445
  msgid "Forgot Password?"
3446
  msgstr "API Passwort"
3447
 
3448
+ #: app/features/mec.php:220
3449
  msgid ""
3450
  "Activation failed. Please check your purchase code or license type."
3451
  "<br><b>Note: Your purchase code should match your licesne type.</b>"
3452
  msgstr ""
3453
 
3454
+ #: app/features/mec.php:220 app/features/mec/support-page.php:136
3455
  msgid "Troubleshooting"
3456
  msgstr "Problembehebung"
3457
 
3458
+ #: app/features/mec.php:308
3459
  #, fuzzy
3460
  #| msgid "Select All"
3461
  msgid "Select Date"
3462
  msgstr "Alles Auswählen"
3463
 
3464
+ #: app/features/mec.php:312 app/skins/masonry.php:260
3465
  msgid "All"
3466
  msgstr "Alle"
3467
 
3468
+ #: app/features/mec.php:354
3469
  msgid ""
3470
  "Your option is not in JSON format. Please insert correct options in this "
3471
  "field and try again."
3472
  msgstr ""
3473
 
3474
+ #: app/features/mec.php:361
3475
  msgid "Your options field can not be empty!"
3476
  msgstr "Ihr Optionen Feld darf nicht leer sein!"
3477
 
3478
+ #: app/features/mec.php:367
3479
  msgid "Your options imported successfuly."
3480
  msgstr "Ihre Einstellungen wurden erfolgreich importiert."
3481
 
3482
+ #: app/features/mec.php:466
3483
  msgid "MEC - Support"
3484
  msgstr "MEC - Support"
3485
 
3486
+ #: app/features/mec.php:466 app/features/mec/support-page.php:9
3487
  #: app/features/mec/support.php:80 app/features/mec/support.php:93
3488
  msgid "Support"
3489
  msgstr "Support"
3490
 
3491
+ #: app/features/mec.php:487 app/features/mec/dashboard.php:288
3492
  #: app/features/mec/meta_boxes/filter.php:71
3493
  #: app/features/mec/meta_boxes/filter.php:116 app/features/organizers.php:59
3494
+ #: app/libraries/main.php:6684 app/libraries/main.php:6738
3495
  msgid "Organizers"
3496
  msgstr "Veranstalter"
3497
 
3498
+ #: app/features/mec.php:495 app/features/mec.php:546
3499
  #: app/features/mec/dashboard.php:274
3500
  msgid "Shortcodes"
3501
  msgstr "Shortcodes"
3502
 
3503
+ #: app/features/mec.php:496
3504
  msgid "MEC - Settings"
3505
  msgstr "MEC - Einstellungen"
3506
 
3507
+ #: app/features/mec.php:497
3508
  msgid "MEC - Addons"
3509
  msgstr "MEC - Erweiterungen"
3510
 
3511
+ #: app/features/mec.php:497 app/features/mec/addons.php:11
3512
  msgid "Addons"
3513
  msgstr "Erweiterungen"
3514
 
3515
+ #: app/features/mec.php:502
3516
  #, fuzzy
3517
  #| msgid "Support"
3518
  msgid "MEC - Report"
3519
  msgstr "Support"
3520
 
3521
+ #: app/features/mec.php:502
3522
  #, fuzzy
3523
  #| msgid "Export"
3524
  msgid "Report"
3525
  msgstr "Export"
3526
 
3527
+ #: app/features/mec.php:505
3528
  #, fuzzy
3529
  #| msgid "Support"
3530
  msgid "MEC - Go Pro"
3531
  msgstr "Support"
3532
 
3533
+ #: app/features/mec.php:505 app/features/mec.php:1324
3534
  #: app/features/mec/go-pro.php:9
3535
  msgid "Go Pro"
3536
  msgstr ""
3537
 
3538
+ #: app/features/mec.php:548
3539
  msgid "Add Shortcode"
3540
  msgstr "Shortcode hinzufügen"
3541
 
3542
+ #: app/features/mec.php:549
3543
  msgid "Add New Shortcode"
3544
  msgstr "Neuen Shortcode hinzufügen"
3545
 
3546
+ #: app/features/mec.php:550
3547
  msgid "No shortcodes found!"
3548
  msgstr "Keine Shortcodes gefunden!"
3549
 
3550
+ #: app/features/mec.php:551
3551
  msgid "All Shortcodes"
3552
  msgstr "Alle Shortcodes"
3553
 
3554
+ #: app/features/mec.php:552
3555
  msgid "Edit shortcodes"
3556
  msgstr "Shortcode ändern"
3557
 
3558
+ #: app/features/mec.php:553
3559
  msgid "No shortcodes found in Trash!"
3560
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
3561
 
3562
+ #: app/features/mec.php:606
3563
  msgid "Display Options"
3564
  msgstr "Darstellungsoptionen"
3565
 
3566
+ #: app/features/mec.php:607
3567
  msgid "Filter Options"
3568
  msgstr "Filteroptionen"
3569
 
3570
+ #: app/features/mec.php:609
3571
  msgid "Search Form"
3572
  msgstr "Suche Formular"
3573
 
3574
+ #: app/features/mec.php:1025
3575
  msgid "Display content's images as Popup"
3576
  msgstr ""
3577
 
3578
+ #: app/features/mec.php:1039 app/features/popup/shortcode.php:473
3579
  msgid "Single Event Display Method"
3580
  msgstr "Single Event Anzeigemethode"
3581
 
3582
+ #: app/features/mec.php:1046 app/features/popup/shortcode.php:485
3583
  #, fuzzy
3584
  #| msgid "Modal 1"
3585
  msgid "Modal Popup"
3586
  msgstr "Modal 1"
3587
 
3588
+ #: app/features/mec.php:1047
3589
  #, fuzzy
3590
  #| msgid "Disabled"
3591
  msgid "Disable Link"
3592
  msgstr "Deaktiviert"
3593
 
3594
+ #: app/features/mec.php:1060
3595
  #, fuzzy
3596
  #| msgid "Booking Options"
3597
  msgid "Booking Button / Icon"
3598
  msgstr "Buchungsoptionen"
3599
 
3600
+ #: app/features/mec.php:1073
3601
  #, fuzzy
3602
  #| msgid "Organizers"
3603
  msgid "Display Organizers"
3604
  msgstr "Veranstalter"
3605
 
3606
+ #: app/features/mec.php:1230 app/features/mec.php:1404
3607
  msgid "Total Bookings"
3608
  msgstr "Gesamte Buchungen"
3609
 
3610
+ #: app/features/mec.php:1246 app/features/mec/dashboard.php:65
3611
  msgid "Modern Events Calendar (Lite)"
3612
  msgstr "Moderner Event Kalender (Lite)"
3613
 
3614
+ #: app/features/mec.php:1255 app/features/mec/dashboard.php:299
3615
  #: app/features/mec/settings.php:483
3616
  msgid "Upcoming Events"
3617
  msgstr "Bevorstehende Events"
3618
 
3619
+ #: app/features/mec.php:1310
3620
  #, fuzzy
3621
  #| msgid "Update %s"
3622
  msgid "News & Updates"
3623
  msgstr "Update %s"
3624
 
3625
+ #: app/features/mec.php:1323
3626
  msgid "Blog"
3627
  msgstr ""
3628
 
3629
+ #: app/features/mec.php:1323
3630
  msgid "Help"
3631
  msgstr ""
3632
 
3633
+ #: app/features/mec.php:1379
3634
  #, fuzzy, php-format
3635
  #| msgid "Total Sells (%s)"
3636
  msgid "Total Sales (%s)"
3637
  msgstr "Alle Verkäufe (%s)"
3638
 
3639
+ #: app/features/mec.php:1413
3640
  msgid "This Month"
3641
  msgstr "Diesen Monat"
3642
 
3643
+ #: app/features/mec.php:1419
3644
  msgid "Last Month"
3645
  msgstr "Letzten Monat"
3646
 
3647
+ #: app/features/mec.php:1425
3648
  msgid "This Year"
3649
  msgstr "Diese Jahr"
3650
 
3651
+ #: app/features/mec.php:1431
3652
  msgid "Last Year"
3653
  msgstr "Letztes Jahr"
3654
 
3655
+ #: app/features/mec.php:1451
3656
  msgid "Bar"
3657
  msgstr "Bar"
3658
 
3659
+ #: app/features/mec.php:1452
3660
  msgid "Line"
3661
  msgstr "Linie"
3662
 
3663
+ #: app/features/mec.php:1454
3664
  msgid "Filter"
3665
  msgstr "Filter"
3666
 
3667
+ #: app/features/mec.php:1478
3668
  #, fuzzy
3669
  #| msgid "Modern Events Calendar"
3670
  msgid "Print Calendar"
3671
  msgstr "Moderner Event Kalender "
3672
 
3673
+ #: app/features/mec.php:1493
3674
  #, fuzzy
3675
  #| msgid "Multiple Day Events"
3676
  msgid "Display Events"
3677
  msgstr "Mehrtagesveranstaltung"
3678
 
3679
+ #: app/features/mec.php:1539
3680
+ #, fuzzy
3681
+ #| msgid "Include Expired Events"
3682
+ msgid "Include MEC Assets"
3683
+ msgstr "Inklusive abgelaufene Events"
3684
+
3685
+ #: app/features/mec.php:1550
3686
+ msgid "Include Modern Events Calendar Assets (CSS, JavaScript, etc files.)"
3687
+ msgstr ""
3688
+
3689
  #: app/features/mec/addons.php:16 app/features/mec/addons.php:63
3690
  #: app/features/mec/dashboard.php:84 app/features/mec/go-pro.php:14
3691
  #: app/features/mec/report.php:21 app/features/mec/support-page.php:21
3719
  #: app/features/mec/modules.php:17 app/features/mec/modules.php:399
3720
  #: app/features/mec/modules.php:409 app/features/mec/modules.php:460
3721
  #: app/features/mec/modules.php:474 app/features/mec/notifications.php:14
3722
+ #: app/features/mec/notifications.php:1590
3723
+ #: app/features/mec/notifications.php:1602
3724
+ #: app/features/mec/notifications.php:1674
3725
+ #: app/features/mec/notifications.php:1688 app/features/mec/settings.php:35
3726
+ #: app/features/mec/settings.php:1473 app/features/mec/settings.php:1483
3727
+ #: app/features/mec/settings.php:1541 app/features/mec/settings.php:1555
3728
+ #: app/features/mec/single.php:21 app/features/mec/single.php:485
3729
+ #: app/features/mec/single.php:495 app/features/mec/single.php:537
3730
+ #: app/features/mec/single.php:551 app/features/mec/styles.php:11
3731
  #: app/features/mec/styles.php:32 app/features/mec/styles.php:42
3732
  #: app/features/mec/styles.php:79 app/features/mec/styles.php:88
3733
  #: app/features/mec/styling.php:37 app/features/mec/styling.php:285
3975
  msgstr ""
3976
 
3977
  #: app/features/mec/booking.php:286 app/features/mec/booking.php:288
3978
+ #: app/features/mec/booking.php:298 app/features/mec/settings.php:725
3979
+ #: app/features/mec/settings.php:735
3980
  msgid "Thank You Page"
3981
  msgstr "Danke Seite"
3982
 
3989
  "es leer, wenn Sie es deaktivieren möchten."
3990
 
3991
  #: app/features/mec/booking.php:306 app/features/mec/booking.php:311
3992
+ #: app/features/mec/settings.php:758 app/features/mec/settings.php:763
3993
  msgid "Thank You Page Time Interval"
3994
  msgstr "Dauer bis zur Weiterleitung auf die Danke Seite"
3995
 
3996
+ #: app/features/mec/booking.php:308 app/features/mec/settings.php:760
3997
  msgid "2000 mean 2 seconds"
3998
  msgstr "2000 bedeutet 2 Sekunden"
3999
 
4000
+ #: app/features/mec/booking.php:312 app/features/mec/settings.php:764
4001
  msgid ""
4002
  "Waiting time before redirecting to thank you page. It's in miliseconds so "
4003
  "2000 means 2 seconds."
4065
  msgid "Send confirmation email in auto confirmation mode"
4066
  msgstr ""
4067
 
4068
+ #: app/features/mec/booking.php:432 app/libraries/main.php:617
4069
  #, fuzzy
4070
  #| msgid "Booking"
4071
  msgid "Booking Shortcode"
4099
  msgstr ""
4100
 
4101
  #: app/features/mec/booking.php:466 app/features/mec/booking.php:854
4102
+ #: app/libraries/main.php:619
4103
  msgid "Taxes / Fees"
4104
  msgstr "Steuern/Gebühren"
4105
 
4111
  msgid "Add Fee"
4112
  msgstr "Gebühr hinzufügen"
4113
 
4114
+ #: app/features/mec/booking.php:543 app/libraries/main.php:620
4115
  msgid "Ticket Variations & Options"
4116
  msgstr ""
4117
 
4276
  msgstr ""
4277
 
4278
  #: app/features/mec/booking.php:1030 app/features/mec/messages.php:78
4279
+ #: app/features/mec/modules.php:438 app/features/mec/notifications.php:1652
4280
+ #: app/features/mec/settings.php:1519 app/features/mec/single.php:515
4281
  #: app/features/mec/styles.php:62 app/features/mec/styling.php:340
4282
  msgid "Saved"
4283
  msgstr "Gesichert"
4284
 
4285
  #: app/features/mec/booking.php:1031 app/features/mec/messages.php:79
4286
+ #: app/features/mec/modules.php:439 app/features/mec/notifications.php:1653
4287
+ #: app/features/mec/settings.php:1520 app/features/mec/single.php:516
4288
  #: app/features/mec/styles.php:63 app/features/mec/styling.php:341
4289
  msgid "Settings Saved!"
4290
  msgstr "Einstellungen gespeichert!"
4291
 
4292
  #: app/features/mec/booking.php:1057 app/features/mec/modules.php:465
4293
+ #: app/features/mec/notifications.php:1679 app/features/mec/settings.php:1546
4294
+ #: app/features/mec/single.php:542
4295
  msgid "Please Refresh Page"
4296
  msgstr "Bitte Seiten Refresh vornehmen"
4297
 
4407
  msgstr "Einstellungen Herunterladen"
4408
 
4409
  #: app/features/mec/messages.php:28 app/features/mec/support-page.php:102
4410
+ #: app/features/mec/support.php:66 app/libraries/main.php:875
4411
  msgid "Messages"
4412
  msgstr "Nachrichten"
4413
 
4992
 
4993
  #: app/features/mec/meta_boxes/display_options.php:700
4994
  #: app/features/mec/meta_boxes/display_options.php:724
4995
+ #: app/libraries/main.php:360 app/libraries/main.php:2138
4996
+ #: app/libraries/main.php:2163
4997
  msgid "List View"
4998
  msgstr "Listenansicht"
4999
 
5000
  #: app/features/mec/meta_boxes/display_options.php:701
5001
  #: app/features/mec/meta_boxes/display_options.php:766
5002
+ #: app/libraries/main.php:361 app/libraries/main.php:2139
5003
+ #: app/libraries/main.php:2164
5004
  msgid "Grid View"
5005
  msgstr "Rasterdarstellung"
5006
 
5014
 
5015
  #: app/features/mec/meta_boxes/display_options.php:703
5016
  #: app/features/mec/meta_boxes/display_options.php:808
5017
+ #: app/libraries/main.php:364 app/libraries/main.php:2132
5018
+ #: app/libraries/main.php:2157
5019
  msgid "Yearly View"
5020
  msgstr "Jahresansicht"
5021
 
5026
 
5027
  #: app/features/mec/meta_boxes/display_options.php:705
5028
  #: app/features/mec/meta_boxes/display_options.php:857
5029
+ #: app/libraries/main.php:367 app/libraries/main.php:2134
5030
+ #: app/libraries/main.php:2159
5031
  msgid "Weekly View"
5032
  msgstr "Wochenansicht"
5033
 
5034
  #: app/features/mec/meta_boxes/display_options.php:706
5035
  #: app/features/mec/meta_boxes/display_options.php:867
5036
+ #: app/libraries/main.php:366 app/libraries/main.php:2135
5037
+ #: app/libraries/main.php:2160
5038
  msgid "Daily View"
5039
  msgstr "Tagesansicht"
5040
 
5443
  msgstr "Autoren"
5444
 
5445
  #: app/features/mec/meta_boxes/filter.php:75
5446
+ #: app/features/mec/meta_boxes/filter.php:183
5447
+ #: app/features/mec/settings.php:1027 app/features/occurrences.php:72
5448
+ #: app/features/occurrences.php:102
5449
  #, fuzzy
5450
  #| msgid "Occurrences times"
5451
  msgid "Occurrences"
5507
  msgid "Show only one occurrence of events"
5508
  msgstr "Nächstes Auftreten von anderen Events."
5509
 
 
 
 
 
5510
  #: app/features/mec/meta_boxes/filter.php:202
5511
  #: app/features/popup/shortcode.php:501
5512
  msgid "Include Expired Events"
5592
  #: app/features/mec/meta_boxes/search_form.php:416
5593
  #: app/features/mec/meta_boxes/search_form.php:503
5594
  #: app/features/mec/meta_boxes/search_form.php:590
5595
+ #: app/features/mec/meta_boxes/search_form.php:671
5596
+ #: app/features/mec/meta_boxes/search_form.php:758
5597
+ #: app/features/mec/meta_boxes/search_form.php:845
5598
+ #: app/features/mec/meta_boxes/search_form.php:968
5599
+ #: app/features/mec/settings.php:1170 app/features/mec/single.php:407
5600
+ #: app/features/mec/single.php:449 app/features/mec/wizard.php:431
5601
  #: app/features/mec/wizard.php:470 app/features/search.php:86
5602
  #: app/features/speakers.php:60 app/features/speakers.php:282
5603
+ #: app/libraries/main.php:6687 app/libraries/main.php:6741
5604
  #: app/libraries/skins.php:1156 app/modules/speakers/details.php:18
5605
  msgid "Speaker"
5606
  msgstr "Sprecher"
5612
  #: app/features/mec/meta_boxes/search_form.php:423
5613
  #: app/features/mec/meta_boxes/search_form.php:510
5614
  #: app/features/mec/meta_boxes/search_form.php:597
5615
+ #: app/features/mec/meta_boxes/search_form.php:678
5616
+ #: app/features/mec/meta_boxes/search_form.php:765
5617
+ #: app/features/mec/meta_boxes/search_form.php:852
5618
+ #: app/features/mec/meta_boxes/search_form.php:975
5619
+ #: app/features/mec/settings.php:1177 app/features/mec/single.php:416
5620
+ #: app/features/mec/single.php:458 app/features/mec/wizard.php:440
5621
  #: app/features/mec/wizard.php:479 app/features/search.php:92
5622
  #: app/features/tag.php:58 app/libraries/skins.php:1185
5623
  msgid "Tag"
5630
  #: app/features/mec/meta_boxes/search_form.php:440
5631
  #: app/features/mec/meta_boxes/search_form.php:527
5632
  #: app/features/mec/meta_boxes/search_form.php:614
5633
+ #: app/features/mec/meta_boxes/search_form.php:695
5634
+ #: app/features/mec/meta_boxes/search_form.php:782
5635
+ #: app/features/mec/meta_boxes/search_form.php:869
5636
+ #: app/features/mec/meta_boxes/search_form.php:992
5637
  #, fuzzy
5638
  #| msgid "Address"
5639
  msgid "Address Input"
5652
  #: app/features/mec/meta_boxes/search_form.php:529
5653
  #: app/features/mec/meta_boxes/search_form.php:558
5654
  #: app/features/mec/meta_boxes/search_form.php:616
5655
+ #: app/features/mec/meta_boxes/search_form.php:639
5656
+ #: app/features/mec/meta_boxes/search_form.php:697
5657
+ #: app/features/mec/meta_boxes/search_form.php:726
5658
+ #: app/features/mec/meta_boxes/search_form.php:784
5659
+ #: app/features/mec/meta_boxes/search_form.php:813
5660
+ #: app/features/mec/meta_boxes/search_form.php:871
5661
+ #: app/features/mec/meta_boxes/search_form.php:900
5662
+ #: app/features/mec/meta_boxes/search_form.php:994
5663
+ #: app/features/mec/meta_boxes/search_form.php:1023
5664
  msgid "Placeholder Text ..."
5665
  msgstr ""
5666
 
5671
  #: app/features/mec/meta_boxes/search_form.php:448
5672
  #: app/features/mec/meta_boxes/search_form.php:535
5673
  #: app/features/mec/meta_boxes/search_form.php:622
5674
+ #: app/features/mec/meta_boxes/search_form.php:703
5675
+ #: app/features/mec/meta_boxes/search_form.php:790
5676
+ #: app/features/mec/meta_boxes/search_form.php:877
5677
+ #: app/features/mec/meta_boxes/search_form.php:1000
5678
  msgid "Min / Max Inputs"
5679
  msgstr ""
5680
 
5681
  #: app/features/mec/meta_boxes/search_form.php:101
5682
  #: app/features/mec/meta_boxes/search_form.php:189
5683
  #: app/features/mec/meta_boxes/search_form.php:277
5684
+ #: app/features/mec/meta_boxes/search_form.php:626
5685
  #, fuzzy
5686
  #| msgid "Filter"
5687
  msgid "Date Filter"
5690
  #: app/features/mec/meta_boxes/search_form.php:104
5691
  #: app/features/mec/meta_boxes/search_form.php:192
5692
  #: app/features/mec/meta_boxes/search_form.php:280
5693
+ #: app/features/mec/meta_boxes/search_form.php:629
5694
  msgid "Year & Month Dropdown"
5695
  msgstr ""
5696
 
5697
  #: app/features/mec/meta_boxes/search_form.php:105
5698
  #: app/features/mec/meta_boxes/search_form.php:193
5699
  #: app/features/mec/meta_boxes/search_form.php:281
5700
+ #: app/features/mec/meta_boxes/search_form.php:630
5701
  #, fuzzy
5702
  #| msgid "Date Format"
5703
  msgid "Date Picker"
5709
  #: app/features/mec/meta_boxes/search_form.php:372
5710
  #: app/features/mec/meta_boxes/search_form.php:459
5711
  #: app/features/mec/meta_boxes/search_form.php:546
5712
+ #: app/features/mec/meta_boxes/search_form.php:714
5713
+ #: app/features/mec/meta_boxes/search_form.php:801
5714
+ #: app/features/mec/meta_boxes/search_form.php:888
5715
+ #: app/features/mec/meta_boxes/search_form.php:1011
5716
  #, fuzzy
5717
  #| msgid "Filter"
5718
  msgid "Time Filter"
5724
  #: app/features/mec/meta_boxes/search_form.php:375
5725
  #: app/features/mec/meta_boxes/search_form.php:462
5726
  #: app/features/mec/meta_boxes/search_form.php:549
5727
+ #: app/features/mec/meta_boxes/search_form.php:717
5728
+ #: app/features/mec/meta_boxes/search_form.php:804
5729
+ #: app/features/mec/meta_boxes/search_form.php:891
5730
+ #: app/features/mec/meta_boxes/search_form.php:1014
5731
  #, fuzzy
5732
  #| msgid "Local Time"
5733
  msgid "Local Time Picker"
5739
  #: app/features/mec/meta_boxes/search_form.php:379
5740
  #: app/features/mec/meta_boxes/search_form.php:466
5741
  #: app/features/mec/meta_boxes/search_form.php:553
5742
+ #: app/features/mec/meta_boxes/search_form.php:634
5743
+ #: app/features/mec/meta_boxes/search_form.php:721
5744
+ #: app/features/mec/meta_boxes/search_form.php:808
5745
+ #: app/features/mec/meta_boxes/search_form.php:895
5746
+ #: app/features/mec/meta_boxes/search_form.php:1018
5747
  msgid "Text Search"
5748
  msgstr "Textsuche"
5749
 
5753
  #: app/features/mec/meta_boxes/search_form.php:382
5754
  #: app/features/mec/meta_boxes/search_form.php:469
5755
  #: app/features/mec/meta_boxes/search_form.php:556
5756
+ #: app/features/mec/meta_boxes/search_form.php:637
5757
+ #: app/features/mec/meta_boxes/search_form.php:724
5758
+ #: app/features/mec/meta_boxes/search_form.php:811
5759
+ #: app/features/mec/meta_boxes/search_form.php:898
5760
+ #: app/features/mec/meta_boxes/search_form.php:1021
5761
  msgid "Text Input"
5762
  msgstr "Text eingeben"
5763
 
5764
  #: app/features/mec/meta_boxes/search_form.php:365
5765
  #: app/features/mec/meta_boxes/search_form.php:452
5766
  #: app/features/mec/meta_boxes/search_form.php:539
5767
+ #: app/features/mec/meta_boxes/search_form.php:707
5768
+ #: app/features/mec/meta_boxes/search_form.php:794
5769
+ #: app/features/mec/meta_boxes/search_form.php:881
5770
+ #: app/features/mec/meta_boxes/search_form.php:1004
5771
  msgid "Month Filter"
5772
  msgstr "Monatsfilter"
5773
 
5774
+ #: app/features/mec/meta_boxes/search_form.php:908
5775
+ #: app/features/mec/meta_boxes/search_form.php:914
5776
+ #: app/features/mec/meta_boxes/search_form.php:920
5777
+ #: app/features/mec/meta_boxes/search_form.php:926
5778
+ #: app/features/mec/meta_boxes/search_form.php:932
5779
+ #: app/features/mec/meta_boxes/search_form.php:938
5780
  msgid "No Search Options"
5781
  msgstr "Keine Suchoptionen"
5782
 
5802
  "new menu on the Dashboard > MEC"
5803
  msgstr ""
5804
 
5805
+ #: app/features/mec/modules.php:58 app/libraries/main.php:628
5806
  #, fuzzy
5807
  #| msgid "Google Maps Options"
5808
  msgid "Map Options"
5826
  msgid "Google Map Options"
5827
  msgstr "Google Maps Einstellungen"
5828
 
5829
+ #: app/features/mec/modules.php:76 app/features/mec/settings.php:1212
5830
+ #: app/features/mec/settings.php:1225
5831
  msgid "Required!"
5832
  msgstr "Erforderlich (Pflichtfeld)"
5833
 
5895
  msgid "Fullscreen Button"
5896
  msgstr ""
5897
 
5898
+ #: app/features/mec/modules.php:167 app/libraries/main.php:629
5899
  msgid "Export Options"
5900
  msgstr "Export Optionen"
5901
 
5910
  msgid "Google Calendar"
5911
  msgstr "Google Calendar"
5912
 
5913
+ #: app/features/mec/modules.php:194 app/libraries/main.php:630
5914
  #: app/modules/local-time/details.php:45 app/modules/local-time/type1.php:44
5915
  #: app/widgets/single.php:101
5916
  msgid "Local Time"
5922
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
5923
  "Eventseite"
5924
 
5925
+ #: app/features/mec/modules.php:208 app/libraries/main.php:631
5926
  #: app/modules/qrcode/details.php:38 app/widgets/single.php:157
5927
  msgid "QR Code"
5928
  msgstr "QR Code"
5933
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
5934
  "an"
5935
 
5936
+ #: app/features/mec/modules.php:226 app/libraries/main.php:632
5937
  #: app/modules/weather/darksky.php:15 app/modules/weather/weatherapi.php:16
5938
  msgid "Weather"
5939
  msgstr "Wetter"
5974
  msgid "Show social network module"
5975
  msgstr "Modul für Soziale Netzwerke anzeigen"
5976
 
5977
+ #: app/features/mec/modules.php:299 app/libraries/main.php:634
5978
  #: app/modules/next-event/details.php:136 app/widgets/single.php:141
5979
  msgid "Next Event"
5980
  msgstr "Nächstes Event"
6035
  msgid "Add events menu to user profile"
6036
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
6037
 
6038
+ #: app/features/mec/modules.php:376 app/libraries/main.php:636
6039
  #, fuzzy
6040
  #| msgid "Mailchimp Integration"
6041
  msgid "LearnDash Integration"
6053
  msgid "LearnDash plugin should be installed and activated."
6054
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
6055
 
6056
+ #: app/features/mec/modules.php:386 app/libraries/main.php:637
6057
  #, fuzzy
6058
  #| msgid "Mailchimp Integration"
6059
  msgid "PaidMembership Pro Integration"
6083
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
6084
  "benachrichtigen."
6085
 
6086
+ #: app/features/mec/notifications.php:49 app/features/mec/notifications.php:205
6087
+ #: app/features/mec/notifications.php:362
6088
+ #: app/features/mec/notifications.php:529
6089
+ #: app/features/mec/notifications.php:707
6090
+ #: app/features/mec/notifications.php:870
6091
+ #: app/features/mec/notifications.php:1030
6092
+ #: app/features/mec/notifications.php:1180
6093
+ #: app/features/mec/notifications.php:1357
6094
+ #: app/features/mec/notifications.php:1474 app/features/mec/report.php:62
6095
  #: app/features/notifications.php:72
6096
  msgid "Email Subject"
6097
  msgstr "Email Betreff"
6098
 
6099
  #: app/features/mec/notifications.php:59 app/features/mec/notifications.php:68
6100
+ #: app/features/mec/notifications.php:215
6101
+ #: app/features/mec/notifications.php:224
6102
+ #: app/features/mec/notifications.php:372
6103
+ #: app/features/mec/notifications.php:381
6104
+ #: app/features/mec/notifications.php:539
6105
+ #: app/features/mec/notifications.php:548
6106
+ #: app/features/mec/notifications.php:717
6107
+ #: app/features/mec/notifications.php:726
6108
+ #: app/features/mec/notifications.php:880
6109
+ #: app/features/mec/notifications.php:889
6110
+ #: app/features/mec/notifications.php:1040
6111
+ #: app/features/mec/notifications.php:1049
6112
+ #: app/features/mec/notifications.php:1190
6113
+ #: app/features/mec/notifications.php:1199
6114
+ #: app/features/mec/notifications.php:1367
6115
+ #: app/features/mec/notifications.php:1376
6116
+ #: app/features/mec/notifications.php:1484
6117
+ #: app/features/mec/notifications.php:1493
6118
  msgid "Receiver Users"
6119
  msgstr ""
6120
 
6121
+ #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:225
6122
+ #: app/features/mec/notifications.php:382
6123
+ #: app/features/mec/notifications.php:549
6124
+ #: app/features/mec/notifications.php:727
6125
+ #: app/features/mec/notifications.php:890
6126
+ #: app/features/mec/notifications.php:1050
6127
+ #: app/features/mec/notifications.php:1200
6128
+ #: app/features/mec/notifications.php:1377
6129
+ #: app/features/mec/notifications.php:1494
6130
  msgid "Select users to send a copy of email to them!"
6131
  msgstr ""
6132
 
6133
  #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:89
6134
+ #: app/features/mec/notifications.php:236
6135
+ #: app/features/mec/notifications.php:245
6136
+ #: app/features/mec/notifications.php:393
6137
+ #: app/features/mec/notifications.php:402
6138
+ #: app/features/mec/notifications.php:560
6139
+ #: app/features/mec/notifications.php:569
6140
+ #: app/features/mec/notifications.php:738
6141
+ #: app/features/mec/notifications.php:747
6142
+ #: app/features/mec/notifications.php:901
6143
+ #: app/features/mec/notifications.php:910
6144
+ #: app/features/mec/notifications.php:1061
6145
+ #: app/features/mec/notifications.php:1070
6146
+ #: app/features/mec/notifications.php:1211
6147
+ #: app/features/mec/notifications.php:1220
6148
+ #: app/features/mec/notifications.php:1388
6149
+ #: app/features/mec/notifications.php:1397
6150
+ #: app/features/mec/notifications.php:1505
6151
+ #: app/features/mec/notifications.php:1514
6152
  msgid "Receiver Roles"
6153
  msgstr ""
6154
 
6155
+ #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:246
6156
+ #: app/features/mec/notifications.php:403
6157
+ #: app/features/mec/notifications.php:570
6158
+ #: app/features/mec/notifications.php:748
6159
+ #: app/features/mec/notifications.php:911
6160
+ #: app/features/mec/notifications.php:1071
6161
+ #: app/features/mec/notifications.php:1221
6162
+ #: app/features/mec/notifications.php:1398
6163
+ #: app/features/mec/notifications.php:1515
6164
  msgid "Select users a specific role."
6165
  msgstr ""
6166
 
6167
  #: app/features/mec/notifications.php:100
6168
  #: app/features/mec/notifications.php:106